From owner-svn-ports-head@freebsd.org Sun Sep 11 00:11:49 2016 Return-Path: Delivered-To: svn-ports-head@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 E25C6BD67DA; Sun, 11 Sep 2016 00:11:49 +0000 (UTC) (envelope-from marino@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 B541ADAD; Sun, 11 Sep 2016 00:11:49 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0BmvL092558; Sun, 11 Sep 2016 00:11:48 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0BmDK092557; Sun, 11 Sep 2016 00:11:48 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110011.u8B0BmDK092557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:11:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421759 - head/net-p2p/mktorrent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:11:50 -0000 Author: marino Date: Sun Sep 11 00:11:48 2016 New Revision: 421759 URL: https://svnweb.freebsd.org/changeset/ports/421759 Log: net-p2p/mktorrent: Add SSL flags Approved by: SSL blanket Modified: head/net-p2p/mktorrent/Makefile Modified: head/net-p2p/mktorrent/Makefile ============================================================================== --- head/net-p2p/mktorrent/Makefile Sat Sep 10 23:36:04 2016 (r421758) +++ head/net-p2p/mktorrent/Makefile Sun Sep 11 00:11:48 2016 (r421759) @@ -24,6 +24,10 @@ THREADS_DESC= Enable support for pthread OPENSSL_DESC= Use OpenSSL for hashing HASHCHECK_DESC= Verify file hashes +OPENSSL_USES= ssl +OPENSSL_CFLAGS= -I${OPENSSLINC} +OPENSSL_LDFLAGS= -L${OPENSSLLIB} + .include .if ${PORT_OPTIONS:MTHREADS} @@ -32,7 +36,6 @@ MAKE_FLAGS+= USE_PTHREADS=1 .if ${PORT_OPTIONS:MOPENSSL} MAKE_FLAGS+= USE_OPENSSL=1 -USE_OPENSSL= yes .endif .if ! ${PORT_OPTIONS:MHASHCHECK} From owner-svn-ports-head@freebsd.org Sun Sep 11 00:15:03 2016 Return-Path: Delivered-To: svn-ports-head@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 EA632BD694A; Sun, 11 Sep 2016 00:15:03 +0000 (UTC) (envelope-from marino@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 BCF02F41; Sun, 11 Sep 2016 00:15:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0F32M093427; Sun, 11 Sep 2016 00:15:03 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0F3OG093426; Sun, 11 Sep 2016 00:15:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110015.u8B0F3OG093426@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:15:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421760 - head/net-p2p/squall X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:15:04 -0000 Author: marino Date: Sun Sep 11 00:15:02 2016 New Revision: 421760 URL: https://svnweb.freebsd.org/changeset/ports/421760 Log: net-p2p/squall: Document SSL requirement Approved by: SSL blanket Modified: head/net-p2p/squall/Makefile Modified: head/net-p2p/squall/Makefile ============================================================================== --- head/net-p2p/squall/Makefile Sun Sep 11 00:11:48 2016 (r421759) +++ head/net-p2p/squall/Makefile Sun Sep 11 00:15:02 2016 (r421760) @@ -9,6 +9,7 @@ DISTNAME= ${PORTNAME}-20040808 MAINTAINER= kuriyama@FreeBSD.org COMMENT= Server for the Peer Distributed Transfer Protocol (PDTP) +USES= ssl HAS_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME} STRIP= # Keep empty for debugging. From owner-svn-ports-head@freebsd.org Sun Sep 11 00:19:20 2016 Return-Path: Delivered-To: svn-ports-head@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 5A996BD69AE; Sun, 11 Sep 2016 00:19:20 +0000 (UTC) (envelope-from marino@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 2D4D6D0; Sun, 11 Sep 2016 00:19:20 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0JJCn093667; Sun, 11 Sep 2016 00:19:19 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0JJli093666; Sun, 11 Sep 2016 00:19:19 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110019.u8B0JJli093666@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:19:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421761 - head/net/bsdec2-image-upload X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:19:20 -0000 Author: marino Date: Sun Sep 11 00:19:19 2016 New Revision: 421761 URL: https://svnweb.freebsd.org/changeset/ports/421761 Log: net/bsdec2-image-upload: Add SSL flags Approved by: SSL blanket Modified: head/net/bsdec2-image-upload/Makefile Modified: head/net/bsdec2-image-upload/Makefile ============================================================================== --- head/net/bsdec2-image-upload/Makefile Sun Sep 11 00:15:02 2016 (r421760) +++ head/net/bsdec2-image-upload/Makefile Sun Sep 11 00:19:19 2016 (r421761) @@ -13,8 +13,9 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss -USES= tar:tgz uidfix -USE_OPENSSL= yes +USES= ssl tar:tgz uidfix +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} # Install into ${STAGEDIR}${PREFIX}; but the build respects ${DESTDIR} so # all we need to give is the ${PREFIX}/bin part. From owner-svn-ports-head@freebsd.org Sun Sep 11 00:23:14 2016 Return-Path: Delivered-To: svn-ports-head@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 ABE94BD6B11; Sun, 11 Sep 2016 00:23:14 +0000 (UTC) (envelope-from marino@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 795A06CA; Sun, 11 Sep 2016 00:23:14 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0NDLV097571; Sun, 11 Sep 2016 00:23:13 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0NDjx097570; Sun, 11 Sep 2016 00:23:13 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110023.u8B0NDjx097570@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:23:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421762 - head/net/dtcpclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:23:14 -0000 Author: marino Date: Sun Sep 11 00:23:13 2016 New Revision: 421762 URL: https://svnweb.freebsd.org/changeset/ports/421762 Log: net/dtcpclient: document SSL requirement and add SSL flags Approved by: SSL blanket Modified: head/net/dtcpclient/Makefile Modified: head/net/dtcpclient/Makefile ============================================================================== --- head/net/dtcpclient/Makefile Sun Sep 11 00:19:19 2016 (r421761) +++ head/net/dtcpclient/Makefile Sun Sep 11 00:23:13 2016 (r421762) @@ -2,7 +2,6 @@ PORTNAME= dtcpclient PORTVERSION= 20151002 -#PORTREVISION= 0 CATEGORIES= net ipv6 MASTER_SITES= http://www.mahoroba.org/~ume/ipv6/ @@ -11,8 +10,10 @@ COMMENT= Dynamic Tunnel Configuration Pr LICENSE= BSD2CLAUSE -USES= uidfix +USES= ssl uidfix USE_RC_SUBR= dtcpclient +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} PLIST_FILES= man/man8/dtcpclient.8.gz \ sbin/dtcpclient \ From owner-svn-ports-head@freebsd.org Sun Sep 11 00:24:09 2016 Return-Path: Delivered-To: svn-ports-head@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 4DF91BD6B53; Sun, 11 Sep 2016 00:24:09 +0000 (UTC) (envelope-from bapt@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 06C79816; Sun, 11 Sep 2016 00:24:08 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0O84C097695; Sun, 11 Sep 2016 00:24:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0O87j097694; Sun, 11 Sep 2016 00:24:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609110024.u8B0O87j097694@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 11 Sep 2016 00:24:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421763 - head/misc/compat5x X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:24:09 -0000 Author: bapt Date: Sun Sep 11 00:24:08 2016 New Revision: 421763 URL: https://svnweb.freebsd.org/changeset/ports/421763 Log: Use @preunexec to ensure the removal of the flags is done in the pre deinstall phase Modified: head/misc/compat5x/pkg-plist Modified: head/misc/compat5x/pkg-plist ============================================================================== --- head/misc/compat5x/pkg-plist Sun Sep 11 00:23:13 2016 (r421762) +++ head/misc/compat5x/pkg-plist Sun Sep 11 00:24:08 2016 (r421763) @@ -7,14 +7,14 @@ lib/compat/libbluetooth.so.1 lib/compat/libbsdxml.so.1 lib/compat/libbsnmp.so.2 lib/compat/libbz2.so.1 -@unexec chflags noschg %D/lib/compat/libc.so.5 +@preunexec chflags noschg %D/lib/compat/libc.so.5 lib/compat/libc.so.5 -@unexec chflags noschg %D/lib/compat/libc_r.so.5 +@preunexec chflags noschg %D/lib/compat/libc_r.so.5 lib/compat/libc_r.so.5 lib/compat/libcalendar.so.2 lib/compat/libcam.so.2 lib/compat/libcom_err.so.2 -@unexec chflags noschg %D/lib/compat/libcrypt.so.2 +@preunexec chflags noschg %D/lib/compat/libcrypt.so.2 lib/compat/libcrypt.so.2 lib/compat/libcrypto.so.3 lib/compat/libdevinfo.so.2 @@ -38,7 +38,7 @@ lib/compat/libkadm5srv.so.7 lib/compat/libkafs5.so.7 lib/compat/libkiconv.so.1 lib/compat/libkrb5.so.7 -%%SPARC64%%@unexec chflags noschg %D/lib/compat/libkse.so.1 +%%SPARC64%%@preunexec chflags noschg %D/lib/compat/libkse.so.1 %%SPARC64%%lib/compat/libkse.so.1 lib/compat/libkvm.so.2 lib/compat/libm.so.3 @@ -57,11 +57,11 @@ lib/compat/libopie.so.3 lib/compat/libpam.so.2 lib/compat/libpanel.so.2 lib/compat/libpcap.so.3 -%%AMD64%%@unexec chflags noschg %D/lib/compat/libpthread.so.1 +%%AMD64%%@preunexec chflags noschg %D/lib/compat/libpthread.so.1 %%AMD64%%lib/compat/libpthread.so.1 -%%I386%%@unexec chflags noschg %D/lib/compat/libpthread.so.1 +%%I386%%@preunexec chflags noschg %D/lib/compat/libpthread.so.1 %%I386%%lib/compat/libpthread.so.1 -%%SPARC64%%@unexec chflags noschg %D/lib/compat/libpthread.so.1 +%%SPARC64%%@preunexec chflags noschg %D/lib/compat/libpthread.so.1 %%SPARC64%%lib/compat/libpthread.so.1 lib/compat/libradius.so.1 lib/compat/libreadline.so.5 @@ -75,7 +75,7 @@ lib/compat/libssh.so.2 lib/compat/libssl.so.3 lib/compat/libstdc++.so.4 lib/compat/libtacplus.so.1 -@unexec chflags noschg %D/lib/compat/libthr.so.1 +@preunexec chflags noschg %D/lib/compat/libthr.so.1 lib/compat/libthr.so.1 lib/compat/libthread_db.so.1 lib/compat/libufs.so.2 From owner-svn-ports-head@freebsd.org Sun Sep 11 00:27:08 2016 Return-Path: Delivered-To: svn-ports-head@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 5D0C9BD6BA3; Sun, 11 Sep 2016 00:27:08 +0000 (UTC) (envelope-from marino@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 268008FD; Sun, 11 Sep 2016 00:27:08 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0R7fY097887; Sun, 11 Sep 2016 00:27:07 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0R7QE097886; Sun, 11 Sep 2016 00:27:07 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110027.u8B0R7QE097886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:27:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421764 - head/net/glflow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:27:08 -0000 Author: marino Date: Sun Sep 11 00:27:07 2016 New Revision: 421764 URL: https://svnweb.freebsd.org/changeset/ports/421764 Log: net/glflow: document SSL requirement and add SSL flags While here, convert to USES=tar too. Approved by: SSL blanket Modified: head/net/glflow/Makefile Modified: head/net/glflow/Makefile ============================================================================== --- head/net/glflow/Makefile Sun Sep 11 00:24:08 2016 (r421763) +++ head/net/glflow/Makefile Sun Sep 11 00:27:07 2016 (r421764) @@ -7,11 +7,11 @@ PORTEPOCH= 1 CATEGORIES= net security MASTER_SITES= SF DISTNAME= glFlow-${PORTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= lx@FreeBSD.org COMMENT= NetFlow tool for detecting DoS attacks +USES= ssl tar:tgz PLIST_FILES= bin/glflow PORTDOCS= README WRKSRC= ${WRKDIR}/${PORTNAME}-0.1 @@ -21,6 +21,10 @@ OPTIONS_DEFINE= DOCS GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-debug --with-hash=md4 +CPPFLAGS+= -I${OPENSSLINC} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/glflow ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Sun Sep 11 00:31:44 2016 Return-Path: Delivered-To: svn-ports-head@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 D99D5BD6D39; Sun, 11 Sep 2016 00:31:44 +0000 (UTC) (envelope-from marino@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 AADBABD6; Sun, 11 Sep 2016 00:31:44 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0VhlQ098147; Sun, 11 Sep 2016 00:31:43 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0Vhsg098146; Sun, 11 Sep 2016 00:31:43 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110031.u8B0Vhsg098146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:31:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421765 - head/net/gsk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:31:44 -0000 Author: marino Date: Sun Sep 11 00:31:43 2016 New Revision: 421765 URL: https://svnweb.freebsd.org/changeset/ports/421765 Log: net/gsk: add SSL flags Modified: head/net/gsk/Makefile Modified: head/net/gsk/Makefile ============================================================================== --- head/net/gsk/Makefile Sun Sep 11 00:27:07 2016 (r421764) +++ head/net/gsk/Makefile Sun Sep 11 00:31:43 2016 (r421765) @@ -10,13 +10,14 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= C library for writing servers -USES= pathfix pkgconfig libtool +USES= libtool pathfix pkgconfig ssl USE_GNOME= glib20 -USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-gtk-doc INSTALL_TARGET= install-strip USE_LDCONFIG= yes +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} OPTIONS_DEFINE= DOCS From owner-svn-ports-head@freebsd.org Sun Sep 11 00:37:13 2016 Return-Path: Delivered-To: svn-ports-head@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 CE56BBD6D86; Sun, 11 Sep 2016 00:37:13 +0000 (UTC) (envelope-from marino@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 9F8B3D4B; Sun, 11 Sep 2016 00:37:13 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0bCK6001823; Sun, 11 Sep 2016 00:37:12 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0bC7o001822; Sun, 11 Sep 2016 00:37:12 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110037.u8B0bC7o001822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:37:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421766 - head/net/http_ping X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:37:13 -0000 Author: marino Date: Sun Sep 11 00:37:12 2016 New Revision: 421766 URL: https://svnweb.freebsd.org/changeset/ports/421766 Log: net/http_ping: Add SSL flags Approved by: SSL blanket Modified: head/net/http_ping/Makefile Modified: head/net/http_ping/Makefile ============================================================================== --- head/net/http_ping/Makefile Sun Sep 11 00:31:43 2016 (r421765) +++ head/net/http_ping/Makefile Sun Sep 11 00:37:12 2016 (r421766) @@ -11,8 +11,10 @@ DISTNAME= ${PORTNAME}_29jun2005 MAINTAINER= hrs@FreeBSD.org COMMENT= Measure HTTP Latency -USE_OPENSSL= yes +USES= ssl WRKSRC= ${WRKDIR}/${PORTNAME} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} PLIST_FILES= bin/http_ping man/man1/http_ping.1.gz .include From owner-svn-ports-head@freebsd.org Sun Sep 11 00:41:51 2016 Return-Path: Delivered-To: svn-ports-head@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 12483BD6F23; Sun, 11 Sep 2016 00:41:51 +0000 (UTC) (envelope-from marino@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 D09661000; Sun, 11 Sep 2016 00:41:50 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0fnIu003327; Sun, 11 Sep 2016 00:41:49 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0fne9003326; Sun, 11 Sep 2016 00:41:49 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110041.u8B0fne9003326@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:41:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421767 - head/net/ipdecap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:41:51 -0000 Author: marino Date: Sun Sep 11 00:41:49 2016 New Revision: 421767 URL: https://svnweb.freebsd.org/changeset/ports/421767 Log: net/ipdecap: document SSL requirement and add its flags Approved by: SSL blankte Modified: head/net/ipdecap/Makefile Modified: head/net/ipdecap/Makefile ============================================================================== --- head/net/ipdecap/Makefile Sun Sep 11 00:37:12 2016 (r421766) +++ head/net/ipdecap/Makefile Sun Sep 11 00:41:49 2016 (r421767) @@ -22,7 +22,9 @@ USE_GITHUB= yes GH_ACCOUNT= lpefferkorn GNU_CONFIGURE= yes -USES= autoreconf gmake +USES= autoreconf gmake ssl +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} regression-test: extract cd ${WRKSRC}/unit_tests && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check From owner-svn-ports-head@freebsd.org Sun Sep 11 00:46:34 2016 Return-Path: Delivered-To: svn-ports-head@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 B30CCBD6FAC; Sun, 11 Sep 2016 00:46:34 +0000 (UTC) (envelope-from marino@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 832B0208; Sun, 11 Sep 2016 00:46:34 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0kXjX005594; Sun, 11 Sep 2016 00:46:33 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0kXuf005593; Sun, 11 Sep 2016 00:46:33 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110046.u8B0kXuf005593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:46:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421768 - head/net/miniupnpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:46:34 -0000 Author: marino Date: Sun Sep 11 00:46:33 2016 New Revision: 421768 URL: https://svnweb.freebsd.org/changeset/ports/421768 Log: net/miniupnpd: Honor LDFLAGS (for SSL support) Approved by: SSL blanket Modified: head/net/miniupnpd/Makefile Modified: head/net/miniupnpd/Makefile ============================================================================== --- head/net/miniupnpd/Makefile Sun Sep 11 00:41:49 2016 (r421767) +++ head/net/miniupnpd/Makefile Sun Sep 11 00:46:33 2016 (r421768) @@ -13,12 +13,11 @@ COMMENT= UPnP IGD implementation which u LICENSE= BSD3CLAUSE -USES= cpe +USES= cpe ssl CPE_VENDOR= miniupnp_project PLIST_FILES= etc/miniupnpd.conf.sample sbin/miniupnpd \ man/man8/miniupnpd.8.gz MAKE_JOBS_UNSAFE=yes -USE_OPENSSL= yes USE_RC_SUBR= miniupnpd CFLAGS+= -I${OPENSSLINC} @@ -39,4 +38,8 @@ UPNP_IGDV2_EXTRA_PATCHES= ${PATCHDIR}/en UPNP_STRICT_EXTRA_PATCHES= ${PATCHDIR}/enable_upnp_strict.patch LEASEFILE_EXTRA_PATCHES= ${PATCHDIR}/enable_leasefile.patch +post-patch: + ${REINPLACE_CMD} -e 's|\(-lssl -lcrypto\)|$$(LDFLAGS) \1|g' \ + ${WRKSRC}/Makefile + .include From owner-svn-ports-head@freebsd.org Sun Sep 11 00:49:37 2016 Return-Path: Delivered-To: svn-ports-head@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 2DA55BCF010; Sun, 11 Sep 2016 00:49:37 +0000 (UTC) (envelope-from marino@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 F21FF335; Sun, 11 Sep 2016 00:49:36 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0napL005787; Sun, 11 Sep 2016 00:49:36 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0nanR005786; Sun, 11 Sep 2016 00:49:36 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110049.u8B0nanR005786@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:49:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421769 - head/net/p5-Net-TCLink X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:49:37 -0000 Author: marino Date: Sun Sep 11 00:49:35 2016 New Revision: 421769 URL: https://svnweb.freebsd.org/changeset/ports/421769 Log: net/p5-Net-TCLink: Add SSL flags Approved by: SSL blanket Modified: head/net/p5-Net-TCLink/Makefile Modified: head/net/p5-Net-TCLink/Makefile ============================================================================== --- head/net/p5-Net-TCLink/Makefile Sun Sep 11 00:46:33 2016 (r421768) +++ head/net/p5-Net-TCLink/Makefile Sun Sep 11 00:49:35 2016 (r421769) @@ -14,8 +14,9 @@ COMMENT= Module to for connecting to the LICENSE= LGPL21 -USES= perl5 -USE_OPENSSL= yes +USES= perl5 ssl USE_PERL5= configure +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 00:55:03 2016 Return-Path: Delivered-To: svn-ports-head@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 EFD00BCF141; Sun, 11 Sep 2016 00:55:03 +0000 (UTC) (envelope-from marino@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 BFE5D8C1; Sun, 11 Sep 2016 00:55:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B0t3tP009373; Sun, 11 Sep 2016 00:55:03 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B0t3L3009372; Sun, 11 Sep 2016 00:55:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110055.u8B0t3L3009372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 00:55:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421770 - head/net/shadowsocks-libev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 00:55:04 -0000 Author: marino Date: Sun Sep 11 00:55:02 2016 New Revision: 421770 URL: https://svnweb.freebsd.org/changeset/ports/421770 Log: net/shadowsocks-libev: document SSL requirement, configure SSL accordingly Approved by: SSL blanket Modified: head/net/shadowsocks-libev/Makefile Modified: head/net/shadowsocks-libev/Makefile ============================================================================== --- head/net/shadowsocks-libev/Makefile Sun Sep 11 00:49:35 2016 (r421769) +++ head/net/shadowsocks-libev/Makefile Sun Sep 11 00:55:02 2016 (r421770) @@ -16,7 +16,10 @@ USE_GITHUB= yes GH_ACCOUNT= madeye GNU_CONFIGURE= yes -USES= gmake libtool:keepla +USES= gmake libtool:keepla ssl +CPPFLAGS+= -I${OPENSSLINC} +CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} + # Help solve building error since the integrated libsodium enables this option. CFLAGS+= -fstack-protector From owner-svn-ports-head@freebsd.org Sun Sep 11 01:00:04 2016 Return-Path: Delivered-To: svn-ports-head@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 19987BCF1DE; Sun, 11 Sep 2016 01:00:04 +0000 (UTC) (envelope-from marino@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 DB7619B9; Sun, 11 Sep 2016 01:00:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B1030X009666; Sun, 11 Sep 2016 01:00:03 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B103hh009665; Sun, 11 Sep 2016 01:00:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110100.u8B103hh009665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 01:00:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421771 - head/net/ssltunnel-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 01:00:04 -0000 Author: marino Date: Sun Sep 11 01:00:02 2016 New Revision: 421771 URL: https://svnweb.freebsd.org/changeset/ports/421771 Log: net/ssltunnel-server: Add SSL flags Approved by: SSL blanket Modified: head/net/ssltunnel-server/Makefile Modified: head/net/ssltunnel-server/Makefile ============================================================================== --- head/net/ssltunnel-server/Makefile Sun Sep 11 00:55:02 2016 (r421770) +++ head/net/ssltunnel-server/Makefile Sun Sep 11 01:00:02 2016 (r421771) @@ -19,11 +19,13 @@ TCPWRAPPERS_DESC= libwrap support TCPWRAPPERS_CONFIGURE_ON= --with-libwrap +USES= ssl USE_RC_SUBR= ${PORTNAME} SUB_FILES+= pkg-message GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-client -USE_OPENSSL= yes +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} post-patch: @${REINPLACE_CMD} -e 's^#include ^/*utmp.h not for FreeBSD*/^' \ From owner-svn-ports-head@freebsd.org Sun Sep 11 01:05:19 2016 Return-Path: Delivered-To: svn-ports-head@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 E4DB8BCF325; Sun, 11 Sep 2016 01:05:19 +0000 (UTC) (envelope-from marino@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 A47F1CFE; Sun, 11 Sep 2016 01:05:19 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B15IVs013208; Sun, 11 Sep 2016 01:05:18 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B15Ia8013207; Sun, 11 Sep 2016 01:05:18 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110105.u8B15Ia8013207@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 01:05:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421772 - head/net/xrdp-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 01:05:20 -0000 Author: marino Date: Sun Sep 11 01:05:18 2016 New Revision: 421772 URL: https://svnweb.freebsd.org/changeset/ports/421772 Log: net/xrdp-devel: Document SSL requirement and set its flags Approved by: SSL blanket Modified: head/net/xrdp-devel/Makefile Modified: head/net/xrdp-devel/Makefile ============================================================================== --- head/net/xrdp-devel/Makefile Sun Sep 11 01:00:02 2016 (r421771) +++ head/net/xrdp-devel/Makefile Sun Sep 11 01:05:18 2016 (r421772) @@ -13,7 +13,7 @@ COMMENT= Open source Remote Desktop Prot LICENSE= GPLv2 -USES= autoreconf:build jpeg libtool pkgconfig +USES= autoreconf:build jpeg libtool pkgconfig ssl USE_XORG= x11 xfixes GNU_CONFIGURE= yes USE_RC_SUBR= xrdp @@ -24,8 +24,8 @@ GH_TAGNAME= 64e2291 CONFIGURE_ARGS= --localstatedir=/var \ --enable-jpeg -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} +LIBS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} CONFLICTS= xrdp-[0-9]* # xrdp v0.7 is not compatible with current net/freerdp (1.0.2) #BUILD_DEPENDS+= freerdp>=1.0.2:net/freerdp From owner-svn-ports-head@freebsd.org Sun Sep 11 01:36:14 2016 Return-Path: Delivered-To: svn-ports-head@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 C4553BD201E; Sun, 11 Sep 2016 01:36:14 +0000 (UTC) (envelope-from marino@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 95695DF3; Sun, 11 Sep 2016 01:36:14 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B1aDs2024381; Sun, 11 Sep 2016 01:36:13 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B1aDkc024380; Sun, 11 Sep 2016 01:36:13 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110136.u8B1aDkc024380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 01:36:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421773 - head/security/arirang X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 01:36:14 -0000 Author: marino Date: Sun Sep 11 01:36:13 2016 New Revision: 421773 URL: https://svnweb.freebsd.org/changeset/ports/421773 Log: security/arirang: Add SSL flags Modified: head/security/arirang/Makefile Modified: head/security/arirang/Makefile ============================================================================== --- head/security/arirang/Makefile Sun Sep 11 01:05:18 2016 (r421772) +++ head/security/arirang/Makefile Sun Sep 11 01:36:13 2016 (r421773) @@ -12,14 +12,15 @@ COMMENT= Powerful webserver security sca LICENSE= BSD3CLAUSE +USES= ssl USE_RUBY= yes USE_RUBY_EXTCONF= yes USE_LIBRUBY= yes -USE_OPENSSL= yes - CFLAGS+= -I${LOCALBASE}/include/ruby-${RUBY_VER} -I${LOCALBASE}/include/ruby-${RUBY_VER}/${RUBY_ARCH} CFLAGS+= -DRUBY_19 +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/arirang ${STAGEDIR}${PREFIX}/sbin From owner-svn-ports-head@freebsd.org Sun Sep 11 01:39:35 2016 Return-Path: Delivered-To: svn-ports-head@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 AA3F6BD215B; Sun, 11 Sep 2016 01:39:35 +0000 (UTC) (envelope-from marino@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 79C43F50; Sun, 11 Sep 2016 01:39:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B1dYmj024576; Sun, 11 Sep 2016 01:39:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B1dYFl024575; Sun, 11 Sep 2016 01:39:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110139.u8B1dYFl024575@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 01:39:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421774 - head/security/d0_blind_id X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 01:39:35 -0000 Author: marino Date: Sun Sep 11 01:39:34 2016 New Revision: 421774 URL: https://svnweb.freebsd.org/changeset/ports/421774 Log: security/d0_blind_id: Add SSL flags Approved by: SSL blanket Modified: head/security/d0_blind_id/Makefile Modified: head/security/d0_blind_id/Makefile ============================================================================== --- head/security/d0_blind_id/Makefile Sun Sep 11 01:36:13 2016 (r421773) +++ head/security/d0_blind_id/Makefile Sun Sep 11 01:39:34 2016 (r421774) @@ -15,11 +15,12 @@ USE_GITHUB= yes GH_ACCOUNT= divVerent GH_TAGNAME= ff1ce7e -USES= autoreconf libtool +USES= autoreconf libtool ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-openssl USE_LDCONFIG= yes -USE_OPENSSL= yes +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.0 From owner-svn-ports-head@freebsd.org Sun Sep 11 01:50:26 2016 Return-Path: Delivered-To: svn-ports-head@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 E8D06BD2511; Sun, 11 Sep 2016 01:50:26 +0000 (UTC) (envelope-from marino@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 B556E63A; Sun, 11 Sep 2016 01:50:26 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B1oPbE028324; Sun, 11 Sep 2016 01:50:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B1oPe8028323; Sun, 11 Sep 2016 01:50:25 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110150.u8B1oPe8028323@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 01:50:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421775 - head/security/erlang-p1tls X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 01:50:27 -0000 Author: marino Date: Sun Sep 11 01:50:25 2016 New Revision: 421775 URL: https://svnweb.freebsd.org/changeset/ports/421775 Log: security/erlang-p1tls: Add SSL flags Approved by: SSL blanket Modified: head/security/erlang-p1tls/Makefile Modified: head/security/erlang-p1tls/Makefile ============================================================================== --- head/security/erlang-p1tls/Makefile Sun Sep 11 01:39:34 2016 (r421774) +++ head/security/erlang-p1tls/Makefile Sun Sep 11 01:50:25 2016 (r421775) @@ -11,8 +11,7 @@ COMMENT= TLS / SSL native driver for Erl LICENSE= GPLv2 -USE_OPENSSL= yes -USES= erlang:rebar +USES= erlang:rebar ssl USE_GITHUB= yes GH_ACCOUNT= processone GH_PROJECT= tls @@ -21,6 +20,10 @@ GH_TAGNAME= e56321a USE_LDCONFIG= yes GNU_CONFIGURE= yes +CPPFLAGS+= -I${OPENSSLINC} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME}-${PORTVERSION}/priv/lib/*.so From owner-svn-ports-head@freebsd.org Sun Sep 11 01:58:32 2016 Return-Path: Delivered-To: svn-ports-head@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 2DDB1BD28C4; Sun, 11 Sep 2016 01:58:32 +0000 (UTC) (envelope-from marino@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 F30A0A8A; Sun, 11 Sep 2016 01:58:31 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B1wVjF031968; Sun, 11 Sep 2016 01:58:31 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B1wV5B031967; Sun, 11 Sep 2016 01:58:31 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110158.u8B1wV5B031967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 01:58:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421776 - head/security/gwee X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 01:58:32 -0000 Author: marino Date: Sun Sep 11 01:58:30 2016 New Revision: 421776 URL: https://svnweb.freebsd.org/changeset/ports/421776 Log: security/gwee: Add SSL flags Modified: head/security/gwee/Makefile Modified: head/security/gwee/Makefile ============================================================================== --- head/security/gwee/Makefile Sun Sep 11 01:50:25 2016 (r421775) +++ head/security/gwee/Makefile Sun Sep 11 01:58:30 2016 (r421776) @@ -9,11 +9,10 @@ MASTER_SITES= PACKETSTORM/UNIX/utilities MAINTAINER= ports@FreeBSD.org COMMENT= Tool to exploit command execution vulnerabilities in web scripts -USES= perl5 python -USE_OPENSSL= yes +USES= perl5 python ssl -LDFLAGS+= -lssl -lcrypto -CFLAGS+= -DWITH_SSL +LDFLAGS+= -L${OPENSSLLIB} -lssl -lcrypto +CFLAGS+= -I${OPENSSLINC} -DWITH_SSL PLIST_FILES= bin/gwee man/man1/gwee.1.gz From owner-svn-ports-head@freebsd.org Sun Sep 11 02:02:25 2016 Return-Path: Delivered-To: svn-ports-head@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 1AE11BD2B53; Sun, 11 Sep 2016 02:02:25 +0000 (UTC) (envelope-from marino@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 8FC1BEB4; Sun, 11 Sep 2016 02:02:24 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B22Nfu035701; Sun, 11 Sep 2016 02:02:23 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B22Nnb035700; Sun, 11 Sep 2016 02:02:23 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110202.u8B22Nnb035700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 02:02:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421777 - head/security/ike-scan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 02:02:25 -0000 Author: marino Date: Sun Sep 11 02:02:23 2016 New Revision: 421777 URL: https://svnweb.freebsd.org/changeset/ports/421777 Log: security/ike-scan: Document SSL requirement Modified: head/security/ike-scan/Makefile Modified: head/security/ike-scan/Makefile ============================================================================== --- head/security/ike-scan/Makefile Sun Sep 11 01:58:30 2016 (r421776) +++ head/security/ike-scan/Makefile Sun Sep 11 02:02:23 2016 (r421777) @@ -12,6 +12,7 @@ COMMENT= VPN scanner and identifier LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +USES= ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${PREFIX}/share --with-openssl=${LOCALBASE} From owner-svn-ports-head@freebsd.org Sun Sep 11 02:05:25 2016 Return-Path: Delivered-To: svn-ports-head@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 4EABEBD2C68; Sun, 11 Sep 2016 02:05:25 +0000 (UTC) (envelope-from marino@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 1DC08FF3; Sun, 11 Sep 2016 02:05:25 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B25Oga035899; Sun, 11 Sep 2016 02:05:24 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B25Oku035898; Sun, 11 Sep 2016 02:05:24 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110205.u8B25Oku035898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 02:05:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421778 - head/security/kc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 02:05:25 -0000 Author: marino Date: Sun Sep 11 02:05:24 2016 New Revision: 421778 URL: https://svnweb.freebsd.org/changeset/ports/421778 Log: security/kc: Document SSL requirement Approved by: SSL blanket Modified: head/security/kc/Makefile Modified: head/security/kc/Makefile ============================================================================== --- head/security/kc/Makefile Sun Sep 11 02:02:23 2016 (r421777) +++ head/security/kc/Makefile Sun Sep 11 02:05:24 2016 (r421778) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libxml2.so:textproc/libxml2 \ libpcre.so:devel/pcre -USES= libedit pkgconfig uidfix +USES= libedit pkgconfig ssl uidfix USE_GITHUB= yes GH_ACCOUNT= levaidaniel From owner-svn-ports-head@freebsd.org Sun Sep 11 02:08:46 2016 Return-Path: Delivered-To: svn-ports-head@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 52681BD2D04; Sun, 11 Sep 2016 02:08:46 +0000 (UTC) (envelope-from marino@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 2208E179; Sun, 11 Sep 2016 02:08:46 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B28jQX036094; Sun, 11 Sep 2016 02:08:45 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B28jFQ036093; Sun, 11 Sep 2016 02:08:45 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110208.u8B28jFQ036093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 02:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421779 - head/security/libpwstor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 02:08:46 -0000 Author: marino Date: Sun Sep 11 02:08:45 2016 New Revision: 421779 URL: https://svnweb.freebsd.org/changeset/ports/421779 Log: security/libpwstor: Document SSL requirement Modified: head/security/libpwstor/Makefile Modified: head/security/libpwstor/Makefile ============================================================================== --- head/security/libpwstor/Makefile Sun Sep 11 02:05:24 2016 (r421778) +++ head/security/libpwstor/Makefile Sun Sep 11 02:08:45 2016 (r421779) @@ -10,7 +10,7 @@ MASTER_SITES= SF/kageki/${PORTNAME}/${PO MAINTAINER= ports@FreeBSD.org COMMENT= Password storage library for C programmers -USES= tar:bzip2 +USES= ssl tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes From owner-svn-ports-head@freebsd.org Sun Sep 11 02:22:36 2016 Return-Path: Delivered-To: svn-ports-head@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 C8E2ABCF2AE; Sun, 11 Sep 2016 02:22:36 +0000 (UTC) (envelope-from marino@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 9705EA9D; Sun, 11 Sep 2016 02:22:36 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B2MZm5043463; Sun, 11 Sep 2016 02:22:35 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B2MZOH043460; Sun, 11 Sep 2016 02:22:35 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110222.u8B2MZOH043460@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 02:22:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421780 - in head/security/luasec: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 02:22:36 -0000 Author: marino Date: Sun Sep 11 02:22:35 2016 New Revision: 421780 URL: https://svnweb.freebsd.org/changeset/ports/421780 Log: lang/luasec: Add SLL flags and fix builds on LibreSSL Approved by: SSL blanket Added: head/security/luasec/files/ head/security/luasec/files/patch-src_ssl.c (contents, props changed) Modified: head/security/luasec/Makefile Modified: head/security/luasec/Makefile ============================================================================== --- head/security/luasec/Makefile Sun Sep 11 02:08:45 2016 (r421779) +++ head/security/luasec/Makefile Sun Sep 11 02:22:35 2016 (r421780) @@ -17,9 +17,9 @@ ALL_TARGET= bsd LIBDIR= -L${LUA_LIBDIR} -L${WRKSRC}/src/luasocket MAKE_ENV+= INCDIR="-I${LUA_INCDIR} -I${WRKSRC}/src" LUAPATH=${LUA_MODSHAREDIR} \ CPATH=${LUA_MODLIBDIR} LD=${CC} -USES= lua:51 -USE_OPENSSL= yes -CFLAGS+= -DOPENSSL_NO_SSL3 +USES= lua:51 ssl +CFLAGS+= -I${OPENSSLINC} -DOPENSSL_NO_SSL3 +LDFLAGS+= -L${OPENSSLLIB} post-patch: .SILENT ${REINPLACE_CMD} -Ee '/\(INSTALL\)/s/-D //' \ Added: head/security/luasec/files/patch-src_ssl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/luasec/files/patch-src_ssl.c Sun Sep 11 02:22:35 2016 (r421780) @@ -0,0 +1,10 @@ +--- src/ssl.c.orig 2015-11-20 21:39:32 UTC ++++ src/ssl.c +@@ -15,6 +15,7 @@ + #endif + + #include ++#include + #include + #include + #include From owner-svn-ports-head@freebsd.org Sun Sep 11 02:34:25 2016 Return-Path: Delivered-To: svn-ports-head@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 A098CBCF791; Sun, 11 Sep 2016 02:34:25 +0000 (UTC) (envelope-from marino@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 70D7BFD2; Sun, 11 Sep 2016 02:34:25 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B2YORS047224; Sun, 11 Sep 2016 02:34:24 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B2YOJs047223; Sun, 11 Sep 2016 02:34:24 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110234.u8B2YOJs047223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 02:34:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421781 - head/security/munge X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 02:34:25 -0000 Author: marino Date: Sun Sep 11 02:34:24 2016 New Revision: 421781 URL: https://svnweb.freebsd.org/changeset/ports/421781 Log: security/munge: Document SSL requirement Approved by: SSL blanket Modified: head/security/munge/Makefile Modified: head/security/munge/Makefile ============================================================================== --- head/security/munge/Makefile Sun Sep 11 02:22:35 2016 (r421780) +++ head/security/munge/Makefile Sun Sep 11 02:34:24 2016 (r421781) @@ -15,7 +15,7 @@ LICENSE_COMB= dual GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var -USES= libtool pathfix perl5 tar:bzip2 +USES= libtool pathfix perl5 ssl tar:bzip2 USE_LDCONFIG= yes USE_RC_SUBR= munged INSTALL_TARGET= install-strip From owner-svn-ports-head@freebsd.org Sun Sep 11 02:44:29 2016 Return-Path: Delivered-To: svn-ports-head@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 7464FBCFB3C; Sun, 11 Sep 2016 02:44:29 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from mail.mahoroba.org (ent.mahoroba.org [IPv6:2001:2f0:104:8010::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "asuka.mahoroba.org", Issuer "ca.mahoroba.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 7B8BC676; Sun, 11 Sep 2016 02:44:28 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from vsuiko.mahoroba.org (vsuiko.mahoroba.org [IPv6:2001:2f0:104:8010:a00:27ff:feb0:c2e]) (user=ume mech=DIGEST-MD5 bits=0) by mail.mahoroba.org (8.15.2/8.15.2) with ESMTPSA/inet6 id u8B2iHE5085901 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=NO); Sun, 11 Sep 2016 11:44:22 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sun, 11 Sep 2016 11:44:16 +0900 Message-ID: From: Hajimu UMEMOTO To: John Marino Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r421762 - head/net/dtcpclient In-Reply-To: <201609110023.u8B0NDjx097570@repo.freebsd.org> References: <201609110023.u8B0NDjx097570@repo.freebsd.org> User-Agent: xcite1.60> Wanderlust/2.15.9 (Almost Unreal) Emacs/24.5 Mule/6.0 (HANACHIRUSATO) X-Operating-System: FreeBSD 10.3-STABLE X-PGP-Key: http://www.mahoroba.org/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.6.1 (mail.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sun, 11 Sep 2016 11:44:22 +0900 (JST) X-Virus-Scanned: clamav-milter 0.99.2 at asuka.mahoroba.org X-Virus-Status: Clean X-Spam-Status: No, score=-4.1 required=5.0 tests=ALL_TRUSTED,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RP_MATCHES_RCVD autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on asuka.mahoroba.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 02:44:29 -0000 Hi, >>>>> On Sun, 11 Sep 2016 00:23:13 +0000 (UTC) >>>>> John Marino said: marino> Author: marino marino> Date: Sun Sep 11 00:23:13 2016 marino> New Revision: 421762 marino> URL: https://svnweb.freebsd.org/changeset/ports/421762 marino> Log: marino> net/dtcpclient: document SSL requirement and add SSL flags marino> marino> Approved by: SSL blanket Since FreeBSD has libmd, dtcpclient doesn't use OpenSSL (libcrypto) on FreeBSD. I'm curious why you did such change to dtcpclient. Sincerely, -- Hajimu UMEMOTO ume@mahoroba.org ume@FreeBSD.org http://www.mahoroba.org/~ume/ From owner-svn-ports-head@freebsd.org Sun Sep 11 03:15:12 2016 Return-Path: Delivered-To: svn-ports-head@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 77E90BD55BB; Sun, 11 Sep 2016 03:15:12 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5380515F6; Sun, 11 Sep 2016 03:15:11 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 0104643BE9; Sat, 10 Sep 2016 22:15:02 -0500 (CDT) Subject: Re: svn commit: r421762 - head/net/dtcpclient To: Hajimu UMEMOTO , John Marino References: <201609110023.u8B0NDjx097570@repo.freebsd.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <6f76e66f-7d08-2240-b88f-1b272df594a4@marino.st> Date: Sat, 10 Sep 2016 22:15:01 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160910-0, 09/10/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 03:15:12 -0000 On 9/10/2016 21:44, Hajimu UMEMOTO wrote: > Hi, > >>>>>> On Sun, 11 Sep 2016 00:23:13 +0000 (UTC) >>>>>> John Marino said: > > marino> Author: marino > marino> Date: Sun Sep 11 00:23:13 2016 > marino> New Revision: 421762 > marino> URL: https://svnweb.freebsd.org/changeset/ports/421762 > > marino> Log: > marino> net/dtcpclient: document SSL requirement and add SSL flags > marino> > marino> Approved by: SSL blanket > > Since FreeBSD has libmd, dtcpclient doesn't use OpenSSL (libcrypto) on > FreeBSD. I'm curious why you did such change to dtcpclient. > It turns out that the GNUmakefile tests for FreeBSD and uses -lmd and defaults to lcrypto on DragonFly, so it tricked me basically. I'll update it to modify the GNUmakefile and remove the SSL requirement, thanks. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Sun Sep 11 03:23:14 2016 Return-Path: Delivered-To: svn-ports-head@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 28906BD5741; Sun, 11 Sep 2016 03:23:14 +0000 (UTC) (envelope-from marino@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 D3D3B1956; Sun, 11 Sep 2016 03:23:13 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B3NDHW066517; Sun, 11 Sep 2016 03:23:13 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B3NCks066515; Sun, 11 Sep 2016 03:23:12 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110323.u8B3NCks066515@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 03:23:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421782 - in head/net/dtcpclient: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 03:23:14 -0000 Author: marino Date: Sun Sep 11 03:23:12 2016 New Revision: 421782 URL: https://svnweb.freebsd.org/changeset/ports/421782 Log: net/dtcpclient: Revert SSL, fix DF to use libmd It turns out that dtcpclient's makefile checks the OPSYS and links with either libcrypto or libmd depending on its value. The SSL dependency is incorrect for FreeBSD, but correct for DF. Revert the previous commit and make DragonFly link with libmd as well. Reported by: Hajimu UMEMOTO Added: head/net/dtcpclient/files/patch-Makefile (contents, props changed) Modified: head/net/dtcpclient/Makefile Modified: head/net/dtcpclient/Makefile ============================================================================== --- head/net/dtcpclient/Makefile Sun Sep 11 02:34:24 2016 (r421781) +++ head/net/dtcpclient/Makefile Sun Sep 11 03:23:12 2016 (r421782) @@ -2,6 +2,7 @@ PORTNAME= dtcpclient PORTVERSION= 20151002 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.mahoroba.org/~ume/ipv6/ @@ -10,10 +11,8 @@ COMMENT= Dynamic Tunnel Configuration Pr LICENSE= BSD2CLAUSE -USES= ssl uidfix +USES= uidfix USE_RC_SUBR= dtcpclient -CFLAGS+= -I${OPENSSLINC} -LDFLAGS+= -L${OPENSSLLIB} PLIST_FILES= man/man8/dtcpclient.8.gz \ sbin/dtcpclient \ Added: head/net/dtcpclient/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dtcpclient/files/patch-Makefile Sun Sep 11 03:23:12 2016 (r421782) @@ -0,0 +1,11 @@ +--- Makefile.orig 2015-10-02 08:23:57 UTC ++++ Makefile +@@ -45,7 +45,7 @@ MANDIR= $(PREFIX)/man/man + + CFLAGS+= -Wall -DPREFIX=\"$(PREFIX)\" + +-.if ($(OPSYS) == "FreeBSD") ++.if ($(OPSYS) == "FreeBSD") || ($(OPSYS) == "DragonFly") + CFLAGS+= -DHAVE_MD5 + LDADD= -lmd + .elif ($(OPSYS) == "NetBSD") || ($(OPSYS) == "OpenBSD") From owner-svn-ports-head@freebsd.org Sun Sep 11 03:28:19 2016 Return-Path: Delivered-To: svn-ports-head@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 C4A7ABD5828; Sun, 11 Sep 2016 03:28:19 +0000 (UTC) (envelope-from marino@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 9279C1ABE; Sun, 11 Sep 2016 03:28:19 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B3SIQJ066770; Sun, 11 Sep 2016 03:28:18 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B3SIO6066769; Sun, 11 Sep 2016 03:28:18 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110328.u8B3SIO6066769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 03:28:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421783 - head/security/ncrack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 03:28:19 -0000 Author: marino Date: Sun Sep 11 03:28:18 2016 New Revision: 421783 URL: https://svnweb.freebsd.org/changeset/ports/421783 Log: security/ncrack: Add SSL flags Approved by: SSL blanket Modified: head/security/ncrack/Makefile Modified: head/security/ncrack/Makefile ============================================================================== --- head/security/ncrack/Makefile Sun Sep 11 03:23:12 2016 (r421782) +++ head/security/ncrack/Makefile Sun Sep 11 03:28:18 2016 (r421783) @@ -13,7 +13,8 @@ MAINTAINER= lx@FreeBSD.org COMMENT= High-speed network authentication cracking tool GNU_CONFIGURE= yes -USES= gmake -USE_OPENSSL= yes +USES= gmake ssl +CPPFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 03:54:08 2016 Return-Path: Delivered-To: svn-ports-head@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 6641ABD5E20; Sun, 11 Sep 2016 03:54:08 +0000 (UTC) (envelope-from marino@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 2E1076E7; Sun, 11 Sep 2016 03:54:08 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B3s70Q077921; Sun, 11 Sep 2016 03:54:07 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B3s7mH077920; Sun, 11 Sep 2016 03:54:07 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110354.u8B3s7mH077920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 03:54:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421784 - head/security/netpgp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 03:54:08 -0000 Author: marino Date: Sun Sep 11 03:54:07 2016 New Revision: 421784 URL: https://svnweb.freebsd.org/changeset/ports/421784 Log: security/netpgp: Document SSL requirement and support ports SSL libraries The FreeBSD 10+ check for IDEA was hardcoded against the base library. While all ports SSL library options likely have idea.h, extending the check generically enables the port to build correctly on all platforms when SSL_DEFAULT is set to something other than "base". Approved by: SSL blanket Modified: head/security/netpgp/Makefile Modified: head/security/netpgp/Makefile ============================================================================== --- head/security/netpgp/Makefile Sun Sep 11 03:28:18 2016 (r421783) +++ head/security/netpgp/Makefile Sun Sep 11 03:54:07 2016 (r421784) @@ -8,15 +8,18 @@ MASTER_SITES= ftp://ftp.netbsd.org/pub/p MAINTAINER= johans@FreeBSD.org COMMENT= PGP signing, verification, encryption, and decryption program -USES= libtool -USE_OPENSSL= yes +USES= libtool ssl USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -CFLAGS+= -Wno-error -.if !exists(/usr/include/openssl/idea.h) +.include + +CPPFLAGS+= -I${OPENSSLINC} +CFLAGS+= -I${OPENSSLINC} -Wno-error +LDFLAGS+= -L${OPENSSLLIB} +.if !exists(${OPENSSLINC}/openssl/idea.h) CFLAGS+= -DOPENSSL_NO_IDEA .endif -.include +.include From owner-svn-ports-head@freebsd.org Sun Sep 11 04:04:13 2016 Return-Path: Delivered-To: svn-ports-head@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 C6181BD5F91; Sun, 11 Sep 2016 04:04:13 +0000 (UTC) (envelope-from marino@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 85FD4A5B; Sun, 11 Sep 2016 04:04:13 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B44Cm5081890; Sun, 11 Sep 2016 04:04:12 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B44CMW081889; Sun, 11 Sep 2016 04:04:12 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110404.u8B44CMW081889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:04:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421785 - head/security/ocaml-ssl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:04:13 -0000 Author: marino Date: Sun Sep 11 04:04:12 2016 New Revision: 421785 URL: https://svnweb.freebsd.org/changeset/ports/421785 Log: security/ocaml-ssl: Add SSL flags Approved by: SSL blanket Modified: head/security/ocaml-ssl/Makefile Modified: head/security/ocaml-ssl/Makefile ============================================================================== --- head/security/ocaml-ssl/Makefile Sun Sep 11 03:54:07 2016 (r421784) +++ head/security/ocaml-ssl/Makefile Sun Sep 11 04:04:12 2016 (r421785) @@ -13,13 +13,12 @@ USE_GITHUB= yes GH_ACCOUNT= savonet GH_PROJECT= ocaml-ssl -USES= autoreconf gmake +USES= autoreconf gmake ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --docdir=${DOCSDIR} MAKE_ENV= OCAMLFIND_INSTFLAGS="-ldconf ignore" MAKE_JOBS_UNSAFE= yes -USE_OPENSSL= yes USE_OCAML= yes USE_OCAML_FINDLIB= yes USE_OCAML_LDCONFIG= yes @@ -27,6 +26,10 @@ USE_OCAMLFIND_PLIST= yes ALL_TARGET= all doc +CPPFLAGS+= -I${OPENSSLINC} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= * From owner-svn-ports-head@freebsd.org Sun Sep 11 04:06:30 2016 Return-Path: Delivered-To: svn-ports-head@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 9C276BD4012; Sun, 11 Sep 2016 04:06:30 +0000 (UTC) (envelope-from marino@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 6EA1BB60; Sun, 11 Sep 2016 04:06:30 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B46TQT082060; Sun, 11 Sep 2016 04:06:29 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B46T6Y082059; Sun, 11 Sep 2016 04:06:29 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110406.u8B46T6Y082059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:06:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421786 - head/security/openca-tools-forked X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:06:30 -0000 Author: marino Date: Sun Sep 11 04:06:29 2016 New Revision: 421786 URL: https://svnweb.freebsd.org/changeset/ports/421786 Log: security/openca-tools-forked: Configure SSL base properly Approved by: SSL blanket Modified: head/security/openca-tools-forked/Makefile Modified: head/security/openca-tools-forked/Makefile ============================================================================== --- head/security/openca-tools-forked/Makefile Sun Sep 11 04:04:12 2016 (r421785) +++ head/security/openca-tools-forked/Makefile Sun Sep 11 04:06:29 2016 (r421786) @@ -16,8 +16,9 @@ USE_GITHUB= yes GH_ACCOUNT= openxpki GNU_CONFIGURE= yes -USES= gmake perl5 -USE_OPENSSL= yes +USES= gmake perl5 ssl + +CONFIGURE_ARGS+= --with-openssl-prefix=${OPENSSLBASE} # security/openssl already has a verify.1 manpage. post-stage: From owner-svn-ports-head@freebsd.org Sun Sep 11 04:09:30 2016 Return-Path: Delivered-To: svn-ports-head@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 D788CBD40A1; Sun, 11 Sep 2016 04:09:30 +0000 (UTC) (envelope-from marino@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 A7C81C53; Sun, 11 Sep 2016 04:09:30 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B49TaN082247; Sun, 11 Sep 2016 04:09:29 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B49TUB082246; Sun, 11 Sep 2016 04:09:29 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110409.u8B49TUB082246@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:09:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421787 - head/security/pad X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:09:30 -0000 Author: marino Date: Sun Sep 11 04:09:29 2016 New Revision: 421787 URL: https://svnweb.freebsd.org/changeset/ports/421787 Log: security/pad: Add SSL flags and honor them While here, convert to USES+=tar Approved by: SSL blanket Modified: head/security/pad/Makefile Modified: head/security/pad/Makefile ============================================================================== --- head/security/pad/Makefile Sun Sep 11 04:06:29 2016 (r421786) +++ head/security/pad/Makefile Sun Sep 11 04:09:29 2016 (r421787) @@ -7,17 +7,23 @@ PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= http://keyserver.kjsl.com/~jharris/distfiles/ -EXTRACT_SUFX= .tgz MAINTAINER= jharris@widomaker.com COMMENT= Command-line utility to encrypt files +USES= tar:tgz ssl GNU_CONFIGURE= yes -USE_OPENSSL= yes PLIST_FILES= bin/pad man/man1/pad.1.gz PORTDOCS= COPYING README ChangeLog +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + +post-patch: + ${REINPLACE_CMD} -e "s|\(-lcrypto\)|${LDFLAGS} \1|g" \ + ${WRKSRC}/Makefile.in + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pad ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/pad.1 ${STAGEDIR}${MANPREFIX}/man/man1 From owner-svn-ports-head@freebsd.org Sun Sep 11 04:20:21 2016 Return-Path: Delivered-To: svn-ports-head@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 1AE9EBD446E; Sun, 11 Sep 2016 04:20:21 +0000 (UTC) (envelope-from marino@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 DFF9112C; Sun, 11 Sep 2016 04:20:20 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B4KKFF085993; Sun, 11 Sep 2016 04:20:20 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B4KK96085992; Sun, 11 Sep 2016 04:20:20 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110420.u8B4KK96085992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:20:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421788 - head/security/pam_ocra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:20:21 -0000 Author: marino Date: Sun Sep 11 04:20:19 2016 New Revision: 421788 URL: https://svnweb.freebsd.org/changeset/ports/421788 Log: security/pam_ocra: Fix SSL handling especially wrt FreeBSD 9 The SSL flags were moved to show unconditionally as they are always correct. The WITH_OPENSSL_PORT=yes variable was replaced with an SSL version check so that the port is marked broken if built on FreeBSD 9 with the base OpenSSL libary selected. This fixes other values of SSL_DEFAULT on all platforms. Approved by: SSL blanket Modified: head/security/pam_ocra/Makefile Modified: head/security/pam_ocra/Makefile ============================================================================== --- head/security/pam_ocra/Makefile Sun Sep 11 04:09:29 2016 (r421787) +++ head/security/pam_ocra/Makefile Sun Sep 11 04:20:19 2016 (r421788) @@ -10,25 +10,23 @@ COMMENT= RFC6287 (OCRA) PAM module LICENSE= BSD2CLAUSE -USES= uidfix -USE_OPENSSL= yes - +USES= ssl uidfix USE_GITHUB= yes - GH_ACCOUNT= sg2342 +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + PLIST_FILES= lib/pam_ocra.so \ lib/pam_ocra.so.0 \ sbin/ocra_tool \ man/man8/pam_ocra.8.gz \ man/man8/ocra_tool.8.gz -.include +.include -.if ${OSVERSION} < 1000015 -WITH_OPENSSL_PORT= yes -CFLAGS+= -I${OPENSSLINC} -LDFLAGS+= -L${OPENSSLLIB} +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_9= does not build with 9.x base OpenSSL .endif -.include +.include From owner-svn-ports-head@freebsd.org Sun Sep 11 04:34:49 2016 Return-Path: Delivered-To: svn-ports-head@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 50A26BD47B6; Sun, 11 Sep 2016 04:34:49 +0000 (UTC) (envelope-from marino@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 1E16B977; Sun, 11 Sep 2016 04:34:49 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B4Ymb2093317; Sun, 11 Sep 2016 04:34:48 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B4YmJa093316; Sun, 11 Sep 2016 04:34:48 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110434.u8B4YmJa093316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:34:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421789 - head/security/pam_ssh_agent_auth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:34:49 -0000 Author: marino Date: Sun Sep 11 04:34:48 2016 New Revision: 421789 URL: https://svnweb.freebsd.org/changeset/ports/421789 Log: security/pam_ssh_agent_auth: Document SSL requirement and configure it Modified: head/security/pam_ssh_agent_auth/Makefile Modified: head/security/pam_ssh_agent_auth/Makefile ============================================================================== --- head/security/pam_ssh_agent_auth/Makefile Sun Sep 11 04:20:19 2016 (r421788) +++ head/security/pam_ssh_agent_auth/Makefile Sun Sep 11 04:34:48 2016 (r421789) @@ -10,10 +10,11 @@ MASTER_SITES= SF/pamsshagentauth/${PORTN MAINTAINER= ports@FreeBSD.org COMMENT= PAM module which permits authentication via ssh-agent -USES= perl5 tar:bzip2 +USES= perl5 ssl tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_func_strnvis=no -CONFIGURE_ARGS= --libexecdir=${LOCALBASE}/lib +CONFIGURE_ARGS= --libexecdir=${LOCALBASE}/lib \ + --with-ssl-dir=${OPENSSLBASE} PLIST_FILES= lib/pam_ssh_agent_auth.so \ man/man8/pam_ssh_agent_auth.8.gz From owner-svn-ports-head@freebsd.org Sun Sep 11 04:37:08 2016 Return-Path: Delivered-To: svn-ports-head@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 4700DBD4812; Sun, 11 Sep 2016 04:37:08 +0000 (UTC) (envelope-from marino@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 19BD7A58; Sun, 11 Sep 2016 04:37:08 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B4b7mP093497; Sun, 11 Sep 2016 04:37:07 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B4b7kO093496; Sun, 11 Sep 2016 04:37:07 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110437.u8B4b7kO093496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:37:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421790 - head/security/pecl-crypto X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:37:08 -0000 Author: marino Date: Sun Sep 11 04:37:07 2016 New Revision: 421790 URL: https://svnweb.freebsd.org/changeset/ports/421790 Log: security/pecl-crypto: Add SSL flags Approved by: SSL blanket Modified: head/security/pecl-crypto/Makefile Modified: head/security/pecl-crypto/Makefile ============================================================================== --- head/security/pecl-crypto/Makefile Sun Sep 11 04:34:48 2016 (r421789) +++ head/security/pecl-crypto/Makefile Sun Sep 11 04:37:07 2016 (r421790) @@ -14,8 +14,9 @@ COMMENT= Objective wrapper for OpenSSL C LICENSE= PHP301 -USES= php:ext tar:tgz +USES= php:ext ssl tar:tgz CONFIGURE_ARGS= --with-crypto -USE_OPENSSL= yes +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 04:51:30 2016 Return-Path: Delivered-To: svn-ports-head@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 EF469BD49C2; Sun, 11 Sep 2016 04:51:29 +0000 (UTC) (envelope-from marino@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 ADEB9EF0; Sun, 11 Sep 2016 04:51:29 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B4pS4o097473; Sun, 11 Sep 2016 04:51:28 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B4pSc4097472; Sun, 11 Sep 2016 04:51:28 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110451.u8B4pSc4097472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 04:51:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421791 - head/security/pev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 04:51:30 -0000 Author: marino Date: Sun Sep 11 04:51:28 2016 New Revision: 421791 URL: https://svnweb.freebsd.org/changeset/ports/421791 Log: security/pev: Add SSL flags Approved by: SSL blanket Modified: head/security/pev/Makefile Modified: head/security/pev/Makefile ============================================================================== --- head/security/pev/Makefile Sun Sep 11 04:37:07 2016 (r421790) +++ head/security/pev/Makefile Sun Sep 11 04:51:28 2016 (r421791) @@ -16,11 +16,11 @@ LIB_DEPENDS= libpcre.so:devel/pcre WRKSRC= ${WRKDIR}/${PORTNAME} -USES= gmake +USES= gmake ssl USE_LDCONFIG= yes -USE_OPENSSL= yes MAKE_ARGS= MAKE=${MAKE_CMD} -CFLAGS+= -I${LOCALBASE}/include +CFLAGS+= -I${OPENSSLINC} -I${LOCALBASE}/include +LDFLAGS+= -L${OPENSSLLIB} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 05:00:57 2016 Return-Path: Delivered-To: svn-ports-head@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 C5728BD4CAF; Sun, 11 Sep 2016 05:00:57 +0000 (UTC) (envelope-from marino@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 9562D34E; Sun, 11 Sep 2016 05:00:57 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B50uVK004089; Sun, 11 Sep 2016 05:00:56 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B50u16004088; Sun, 11 Sep 2016 05:00:56 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110500.u8B50u16004088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 05:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421792 - head/security/ratproxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:00:57 -0000 Author: marino Date: Sun Sep 11 05:00:56 2016 New Revision: 421792 URL: https://svnweb.freebsd.org/changeset/ports/421792 Log: security/ratproxy: Add SSL flags and honor them Approved by: SSL blanket Modified: head/security/ratproxy/Makefile Modified: head/security/ratproxy/Makefile ============================================================================== --- head/security/ratproxy/Makefile Sun Sep 11 04:51:28 2016 (r421791) +++ head/security/ratproxy/Makefile Sun Sep 11 05:00:56 2016 (r421792) @@ -9,8 +9,9 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= skreuzer@FreeBSD.org COMMENT= Semi-automated, largely passive web application security audit tool -USES= shebangfix -USE_OPENSSL= YES +USES= shebangfix ssl +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} WRKSRC= ${WRKDIR}/${PORTNAME} @@ -19,7 +20,8 @@ PLIST_FILES= bin/ratproxy \ bin/ratproxy-report.sh post-patch: - @${REINPLACE_CMD} -e 's#-Wno-pointer-sign##g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's#-Wno-pointer-sign##g' \ + -e "s|\(-lcrypto\)|${LDFLAGS} \1|g" ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ratproxy ${STAGEDIR}${PREFIX}/bin From owner-svn-ports-head@freebsd.org Sun Sep 11 05:26:02 2016 Return-Path: Delivered-To: svn-ports-head@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 51E54BD62D4; Sun, 11 Sep 2016 05:26:02 +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 21174DE3; Sun, 11 Sep 2016 05:26:02 +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 u8B5Q122012264; Sun, 11 Sep 2016 05:26:01 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B5Q1sv012262; Sun, 11 Sep 2016 05:26:01 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609110526.u8B5Q1sv012262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 11 Sep 2016 05:26:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421793 - head/biology/p5-Bio-ASN1-EntrezGene X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:26:02 -0000 Author: wen Date: Sun Sep 11 05:26:01 2016 New Revision: 421793 URL: https://svnweb.freebsd.org/changeset/ports/421793 Log: - Update to 1.72 Changes: http://search.cpan.org/~cjfields/Bio-ASN1-EntrezGene-1.72/ Modified: head/biology/p5-Bio-ASN1-EntrezGene/Makefile head/biology/p5-Bio-ASN1-EntrezGene/distinfo Modified: head/biology/p5-Bio-ASN1-EntrezGene/Makefile ============================================================================== --- head/biology/p5-Bio-ASN1-EntrezGene/Makefile Sun Sep 11 05:00:56 2016 (r421792) +++ head/biology/p5-Bio-ASN1-EntrezGene/Makefile Sun Sep 11 05:26:01 2016 (r421793) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Bio-ASN1-EntrezGene -PORTVERSION= 1.70 -PORTREVISION= 1 +PORTVERSION= 1.72 PORTEPOCH= 1 CATEGORIES= biology perl5 MASTER_SITES= CPAN Modified: head/biology/p5-Bio-ASN1-EntrezGene/distinfo ============================================================================== --- head/biology/p5-Bio-ASN1-EntrezGene/distinfo Sun Sep 11 05:00:56 2016 (r421792) +++ head/biology/p5-Bio-ASN1-EntrezGene/distinfo Sun Sep 11 05:26:01 2016 (r421793) @@ -1,2 +1,3 @@ -SHA256 (Bio-ASN1-EntrezGene-1.70.tar.gz) = 342ce97702e101da813e76221e15414be3fd608fc9059fcc36a141d939048dfb -SIZE (Bio-ASN1-EntrezGene-1.70.tar.gz) = 46969 +TIMESTAMP = 1473522428 +SHA256 (Bio-ASN1-EntrezGene-1.72.tar.gz) = 7f55f69cccfab37d976338ed77d245a62a44b03b7b9954484d8976eab14d575b +SIZE (Bio-ASN1-EntrezGene-1.72.tar.gz) = 49080 From owner-svn-ports-head@freebsd.org Sun Sep 11 05:35:43 2016 Return-Path: Delivered-To: svn-ports-head@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 88E23BD65C7; Sun, 11 Sep 2016 05:35:43 +0000 (UTC) (envelope-from marino@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 580DB274; Sun, 11 Sep 2016 05:35:43 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B5ZgbB016171; Sun, 11 Sep 2016 05:35:42 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B5ZgVX016170; Sun, 11 Sep 2016 05:35:42 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110535.u8B5ZgVX016170@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 05:35:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421794 - head/biology/ncbi-blast+ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:35:43 -0000 Author: marino Date: Sun Sep 11 05:35:42 2016 New Revision: 421794 URL: https://svnweb.freebsd.org/changeset/ports/421794 Log: biology/ncbi-blast+: Remove redundant LIB_DEPENDS (bz2 libary) All support platforms have libbz2.so in base, so this port will never pull in archivers/bzip2. Approved by: just-fix-it Modified: head/biology/ncbi-blast+/Makefile Modified: head/biology/ncbi-blast+/Makefile ============================================================================== --- head/biology/ncbi-blast+/Makefile Sun Sep 11 05:26:01 2016 (r421793) +++ head/biology/ncbi-blast+/Makefile Sun Sep 11 05:35:42 2016 (r421794) @@ -3,7 +3,7 @@ PORTNAME= blast+ PORTVERSION= 2.2.30 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= biology MASTER_SITES= http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${PORTVERSION}/ \ http://acadix.biz/Ports/distfiles/ @@ -16,8 +16,7 @@ COMMENT= NCBI implementation of Basic Lo LICENSE= PD LICENSE_FILE= ${WRKSRC}/scripts/projects/blast/LICENSE -LIB_DEPENDS= libpcre.so:devel/pcre \ - libbz2.so:archivers/bzip2 +LIB_DEPENDS= libpcre.so:devel/pcre RUN_DEPENDS= p5-List-MoreUtils>=0:lang/p5-List-MoreUtils WRKSRC= ${WRKDIR}/${DISTNAME}/c++ From owner-svn-ports-head@freebsd.org Sun Sep 11 05:41:54 2016 Return-Path: Delivered-To: svn-ports-head@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 1B79EBD66DF; Sun, 11 Sep 2016 05:41:54 +0000 (UTC) (envelope-from marino@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 DC0037AC; Sun, 11 Sep 2016 05:41:53 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B5fr3f019742; Sun, 11 Sep 2016 05:41:53 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B5frFI019741; Sun, 11 Sep 2016 05:41:53 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110541.u8B5frFI019741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 05:41:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421795 - head/security/signify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:41:54 -0000 Author: marino Date: Sun Sep 11 05:41:52 2016 New Revision: 421795 URL: https://svnweb.freebsd.org/changeset/ports/421795 Log: security/signify: Remove unnecessary -lcrypto linkage THe signify program doesn't require any symbols from libcrypto, so just remove it from LIBS so the linker doesn't go looking for it. Approved by: SSL blanket Modified: head/security/signify/Makefile Modified: head/security/signify/Makefile ============================================================================== --- head/security/signify/Makefile Sun Sep 11 05:35:42 2016 (r421794) +++ head/security/signify/Makefile Sun Sep 11 05:41:52 2016 (r421795) @@ -18,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE # gmake is required on FreeBSD 9.3, on FreeBSD >= 10 we get away with # regular make with tiny changes in the Makefile. -USES= gmake +USES= gmake USE_GITHUB= yes GH_ACCOUNT= chneukirchen GH_PROJECT= outils @@ -34,6 +34,7 @@ post-patch: ${REINPLACE_CMD} 's|/etc/signify/|${ETCDIR}/|g' \ ${WRKSRC}/src/usr.bin/signify/signify.c \ ${WRKSRC}/src/usr.bin/signify/signify.1 + ${REINPLACE_CMD} -e 's|-lcrypto||' ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/usr.bin/signify/signify \ From owner-svn-ports-head@freebsd.org Sun Sep 11 05:45:35 2016 Return-Path: Delivered-To: svn-ports-head@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 6EA8DBD673D; Sun, 11 Sep 2016 05:45:35 +0000 (UTC) (envelope-from marino@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 3C01C93C; Sun, 11 Sep 2016 05:45:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B5jY3M019974; Sun, 11 Sep 2016 05:45:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B5jYJr019973; Sun, 11 Sep 2016 05:45:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110545.u8B5jYJr019973@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 05:45:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421796 - head/security/sslsniffer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:45:35 -0000 Author: marino Date: Sun Sep 11 05:45:34 2016 New Revision: 421796 URL: https://svnweb.freebsd.org/changeset/ports/421796 Log: security/sslsniffer: Add SSL flags Modified: head/security/sslsniffer/Makefile Modified: head/security/sslsniffer/Makefile ============================================================================== --- head/security/sslsniffer/Makefile Sun Sep 11 05:41:52 2016 (r421795) +++ head/security/sslsniffer/Makefile Sun Sep 11 05:45:34 2016 (r421796) @@ -11,10 +11,11 @@ COMMENT= SSLv3/TLS and SSLv2 sniffer LICENSE= GPLv2+ +USES= ssl +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} WRKSRC= ${WRKDIR}/${PORTNAME} -USE_OPENSSL= yes - PORTDOCS= README PLIST_FILES= bin/sslsniffer From owner-svn-ports-head@freebsd.org Sun Sep 11 05:49:30 2016 Return-Path: Delivered-To: svn-ports-head@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 DA454BD67A4; Sun, 11 Sep 2016 05:49:30 +0000 (UTC) (envelope-from marino@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 AAB32A2C; Sun, 11 Sep 2016 05:49:30 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B5nTor020187; Sun, 11 Sep 2016 05:49:29 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B5nTfI020186; Sun, 11 Sep 2016 05:49:29 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110549.u8B5nTfI020186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 05:49:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421797 - head/security/symbion-sslproxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:49:31 -0000 Author: marino Date: Sun Sep 11 05:49:29 2016 New Revision: 421797 URL: https://svnweb.freebsd.org/changeset/ports/421797 Log: security/symbion-sslproxy: Add SSL flags Modified: head/security/symbion-sslproxy/Makefile Modified: head/security/symbion-sslproxy/Makefile ============================================================================== --- head/security/symbion-sslproxy/Makefile Sun Sep 11 05:45:34 2016 (r421796) +++ head/security/symbion-sslproxy/Makefile Sun Sep 11 05:49:29 2016 (r421797) @@ -12,8 +12,9 @@ COMMENT= SSL proxy for securing insecure LICENSE= GPLv2+ -USES= gmake tar:tgz -USE_OPENSSL= yes +USES= gmake ssl tar:tgz +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} SUB_FILES= pkg-message From owner-svn-ports-head@freebsd.org Sun Sep 11 05:56:31 2016 Return-Path: Delivered-To: svn-ports-head@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 AF201BD68D9; Sun, 11 Sep 2016 05:56:31 +0000 (UTC) (envelope-from marino@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 7F7C0D43; Sun, 11 Sep 2016 05:56:31 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B5uUKt023799; Sun, 11 Sep 2016 05:56:30 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B5uUp8023798; Sun, 11 Sep 2016 05:56:30 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110556.u8B5uUp8023798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 05:56:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421798 - head/security/titus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 05:56:31 -0000 Author: marino Date: Sun Sep 11 05:56:30 2016 New Revision: 421798 URL: https://svnweb.freebsd.org/changeset/ports/421798 Log: security/titus; Add SSL flags and fix tab alignment Approved by: SSL blanket Modified: head/security/titus/Makefile Modified: head/security/titus/Makefile ============================================================================== --- head/security/titus/Makefile Sun Sep 11 05:49:29 2016 (r421797) +++ head/security/titus/Makefile Sun Sep 11 05:56:30 2016 (r421798) @@ -10,22 +10,22 @@ COMMENT= TLS/SSL proxy server LICENSE= MIT -USES= compiler:c++11-lang +USES= compiler:c++11-lang ssl USE_RC_SUBR= titus -USE_OPENSSL= yes - USE_GITHUB= yes GH_ACCOUNT= AGWA -USERS= titus titus-keys -GROUPS= nogroup +USERS= titus titus-keys +GROUPS= nogroup MAKE_ENV+= MANDIR=${MANPREFIX}/man +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} .include -.if ${OSVERSION} < 1002000 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000 BROKEN= Requires FreeBSD 10.2 or higher .endif From owner-svn-ports-head@freebsd.org Sun Sep 11 06:01:50 2016 Return-Path: Delivered-To: svn-ports-head@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 A0F01BD6A58; Sun, 11 Sep 2016 06:01:50 +0000 (UTC) (envelope-from marino@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 7122AFE4; Sun, 11 Sep 2016 06:01:50 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B61nb5026107; Sun, 11 Sep 2016 06:01:49 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B61nKj026106; Sun, 11 Sep 2016 06:01:49 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110601.u8B61nKj026106@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 06:01:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421799 - head/security/tlswrap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 06:01:50 -0000 Author: marino Date: Sun Sep 11 06:01:49 2016 New Revision: 421799 URL: https://svnweb.freebsd.org/changeset/ports/421799 Log: security/tlswrap: Add SSL flags and base configuration While here, unsuppress installation commands Approved by: SSL blanket Modified: head/security/tlswrap/Makefile Modified: head/security/tlswrap/Makefile ============================================================================== --- head/security/tlswrap/Makefile Sun Sep 11 05:56:30 2016 (r421798) +++ head/security/tlswrap/Makefile Sun Sep 11 06:01:49 2016 (r421799) @@ -11,8 +11,10 @@ DISTNAME= ${PORTNAME}-1.04 MAINTAINER= johans@FreeBSD.org COMMENT= FTP proxy that wraps data and control with TLS/SSL +USES= ssl GNU_CONFIGURE= yes -USE_OPENSSL= yes +CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} +CFLAGS+= -I${OPENSSLINC} OPTIONS_DEFINE= DOCS @@ -23,8 +25,8 @@ post-patch: ${WRKSRC}/misc.[ch] ${WRKSRC}/network.c ${WRKSRC}/tlswrap.c do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/tlswrap ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/tlswrap ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 06:08:45 2016 Return-Path: Delivered-To: svn-ports-head@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 59D14BD6AC6; Sun, 11 Sep 2016 06:08:45 +0000 (UTC) (envelope-from marino@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 1A5A71EB; Sun, 11 Sep 2016 06:08:45 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B68iOr027980; Sun, 11 Sep 2016 06:08:44 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B68iXX027979; Sun, 11 Sep 2016 06:08:44 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110608.u8B68iXX027979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 06:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421800 - head/security/pks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 06:08:45 -0000 Author: marino Date: Sun Sep 11 06:08:44 2016 New Revision: 421800 URL: https://svnweb.freebsd.org/changeset/ports/421800 Log: security/pks: Document SSL requirement and configure SSL base correctly Approved by: SSL blanket Modified: head/security/pks/Makefile Modified: head/security/pks/Makefile ============================================================================== --- head/security/pks/Makefile Sun Sep 11 06:01:49 2016 (r421799) +++ head/security/pks/Makefile Sun Sep 11 06:08:44 2016 (r421800) @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE WRKSRC= ${WRKDIR}/${PORTNAME} USE_GCC= any -USES= bdb +USES= bdb ssl OPTIONS_DEFINE= DOCS PORTDOCS= pks_help.* README EMAIL @@ -25,10 +25,12 @@ GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf CONFIGURE_ARGS= --datadir=${PREFIX}/share/pks --localstatedir=/var/pks \ --docdir=${PREFIX}/share/doc/pks --sysconfdir=${EXAMPLESDIR} \ - --libdir=${LOCALBASE}/lib --with-libwrap + --libdir=${LOCALBASE}/lib --with-libwrap \ + --with-openssl=${OPENSSLBASE} MAKE_ENV+= SUBDIRS= LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV= DBLIB="-L${BDB_LIB_DIR} -l${BDB_LIB_NAME}" DBINC=-I${BDB_INCLUDE_DIR} DBHDR=db.h +CONFIGURE_ENV= DBLIB="-L${BDB_LIB_DIR} -l${BDB_LIB_NAME}" \ + DBINC=-I${BDB_INCLUDE_DIR} DBHDR=db.h SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message From owner-svn-ports-head@freebsd.org Sun Sep 11 06:16:40 2016 Return-Path: Delivered-To: svn-ports-head@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 D85C4BD6C79; Sun, 11 Sep 2016 06:16:40 +0000 (UTC) (envelope-from marino@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 9DDB4894; Sun, 11 Sep 2016 06:16:40 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B6GdbV031645; Sun, 11 Sep 2016 06:16:39 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B6Gdu0031644; Sun, 11 Sep 2016 06:16:39 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110616.u8B6Gdu0031644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 06:16:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421801 - head/security/pvk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 06:16:41 -0000 Author: marino Date: Sun Sep 11 06:16:39 2016 New Revision: 421801 URL: https://svnweb.freebsd.org/changeset/ports/421801 Log: security/pvk: Document SSL requirement and honor its flags Approved by: SSL blanket Modified: head/security/pvk/Makefile Modified: head/security/pvk/Makefile ============================================================================== --- head/security/pvk/Makefile Sun Sep 11 06:08:44 2016 (r421800) +++ head/security/pvk/Makefile Sun Sep 11 06:16:39 2016 (r421801) @@ -11,7 +11,14 @@ EXTRACT_SUFX= .tgz.bin MAINTAINER= sobomax@FreeBSD.org COMMENT= Tool to convert a RSA key in PEM format into a PVK file and vice versa +USES= ssl WRKSRC= ${WRKDIR} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + +post-patch: + ${REINPLACE_CMD} -e 's|\(-lcrypto\)|$$(LDFLAGS) \1|g' \ + ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pvk ${STAGEDIR}${PREFIX}/bin From owner-svn-ports-head@freebsd.org Sun Sep 11 06:20:39 2016 Return-Path: Delivered-To: svn-ports-head@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 21822BD6CD3; Sun, 11 Sep 2016 06:20:39 +0000 (UTC) (envelope-from marino@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 E5F2C99C; Sun, 11 Sep 2016 06:20:38 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B6Kcgm031880; Sun, 11 Sep 2016 06:20:38 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B6Kc3G031879; Sun, 11 Sep 2016 06:20:38 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609110620.u8B6Kc3G031879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 06:20:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421802 - head/security/py-scrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 06:20:39 -0000 Author: marino Date: Sun Sep 11 06:20:37 2016 New Revision: 421802 URL: https://svnweb.freebsd.org/changeset/ports/421802 Log: security/py-scrypt: Document SSL requirement and define its flags Approved by: SSL blanket Modified: head/security/py-scrypt/Makefile Modified: head/security/py-scrypt/Makefile ============================================================================== --- head/security/py-scrypt/Makefile Sun Sep 11 06:16:39 2016 (r421801) +++ head/security/py-scrypt/Makefile Sun Sep 11 06:20:37 2016 (r421802) @@ -14,8 +14,10 @@ LICENSE= BSD2CLAUSE TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}unittest2>0:devel/py-unittest2 -USES= python +USES= python ssl USE_PYTHON= autoplist distutils +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_scrypt.so From owner-svn-ports-head@freebsd.org Sun Sep 11 06:54:38 2016 Return-Path: Delivered-To: svn-ports-head@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 68E7EBD62A4; Sun, 11 Sep 2016 06:54:38 +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 F3ADD6C1; Sun, 11 Sep 2016 06:54:37 +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 u8B6sb58046639; Sun, 11 Sep 2016 06:54:37 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B6sbSF046636; Sun, 11 Sep 2016 06:54:37 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609110654.u8B6sbSF046636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 11 Sep 2016 06:54:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421803 - head/www/seahub X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 06:54:38 -0000 Author: pi Date: Sun Sep 11 06:54:36 2016 New Revision: 421803 URL: https://svnweb.freebsd.org/changeset/ports/421803 Log: www/seahub: 5.1.11 -> 6.0.0 - Fixed link for avatars - Added custom folder - Add full screen Web UI - Add file comment - Improve zip downloading by adding zip progress - Change of navigation labels - Support Seafile Drive client - [admin] Add group transfer function in admin panel - [admin] Admin can set library permissions in admin panel - Improve checking the user running Seafile must be the owner of seafile-data. If seafile-data is symbolic link, check the destination folder instead of the symbolic link. - [UI] Improve rename operation - Show name/contact email in admin panel and enable search user by name/contact email - Add printing style for markdown and doc/pdf - The Seafile in "Welcome to Seafile" message can be customised by SITE_NAME - Improve sorting of files with numbers - [API] Add admin API to only return LDAP imported user list - Code clean and update Web APIs - Remove number of synced libraries in devices page for simplify the interface and concept - Update help pages - [online preview] The online preview size limit setting FILE_PREVIEW_MAX_SIZE will not affect videos and audio files. So videos and audio with any size can be previewed online. - [online preview] Add printing style for markdown PR: 212560 Submitted by: Ultima1252@gmail.com (maintainer) Modified: head/www/seahub/Makefile head/www/seahub/distinfo head/www/seahub/pkg-plist Modified: head/www/seahub/Makefile ============================================================================== --- head/www/seahub/Makefile Sun Sep 11 06:20:37 2016 (r421802) +++ head/www/seahub/Makefile Sun Sep 11 06:54:36 2016 (r421803) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= seahub -PORTVERSION= 5.1.11 +PORTVERSION= 6.0.0 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= -pro CATEGORIES= www @@ -103,7 +103,8 @@ do-patch: do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${SEAFILE_SERVER}/runtime/ \ - ${STAGEDIR}${PREFIX}/${SEAHUBDIR} ${STAGEDIR}${PREFIX}/${SEAHUB_DATA_DIR} + ${STAGEDIR}${PREFIX}/${SEAHUBDIR} ${STAGEDIR}${PREFIX}/${SEAHUB_DATA_DIR} \ + ${STAGEDIR}${PREFIX}/${SEAHUB_DATA_DIR}/custom ${INSTALL} ${WRKSRC}/runtime/seahub.conf \ ${STAGEDIR}${PREFIX}/${SEAFILE_SERVER}/runtime/ (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${SEAHUBDIR} \ @@ -111,7 +112,7 @@ do-install: ! -name default-non-register.jpg ! -name default.png ! -name groups") (cd ${WRKSRC}/media && ${COPYTREE_SHARE} ./avatars \ ${STAGEDIR}${PREFIX}/${SEAHUB_DATA_DIR}) - ${LN} -fs ../../seafile-server/seahub/media/avatars \ + ${LN} -fs ../../../seahub-data/avatars \ ${STAGEDIR}${PREFIX}/${SEAHUBDIR}/media/avatars .include Modified: head/www/seahub/distinfo ============================================================================== --- head/www/seahub/distinfo Sun Sep 11 06:20:37 2016 (r421802) +++ head/www/seahub/distinfo Sun Sep 11 06:54:36 2016 (r421803) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472668221 -SHA256 (haiwen-seahub-v5.1.11-pro_GH0.tar.gz) = 31ee2aed4b5fd74a2347443fbe978f3f4e717a5212c2ac8fa9bc5dcb10887540 -SIZE (haiwen-seahub-v5.1.11-pro_GH0.tar.gz) = 6834554 +TIMESTAMP = 1473541492 +SHA256 (haiwen-seahub-v6.0.0-pro_GH0.tar.gz) = 16746a142982771d5b45561d9352f30f1cc51308d6692384d08a43cda23f637b +SIZE (haiwen-seahub-v6.0.0-pro_GH0.tar.gz) = 8245599 Modified: head/www/seahub/pkg-plist ============================================================================== --- head/www/seahub/pkg-plist Sun Sep 11 06:20:37 2016 (r421802) +++ head/www/seahub/pkg-plist Sun Sep 11 06:54:36 2016 (r421803) @@ -2,10 +2,12 @@ %%SEAHUBDIR%%/.tx/config %%SEAHUBDIR%%/CONTRIBUTORS %%SEAHUBDIR%%/HACKING +%%SEAHUBDIR%%/LICENSE-thirdparty.txt %%SEAHUBDIR%%/LICENSE.txt %%SEAHUBDIR%%/README.markdown %%SEAHUBDIR%%/code-check.sh %%SEAHUBDIR%%/fabfile/__init__.py +%%SEAHUBDIR%%/fabfile/copyright.py %%SEAHUBDIR%%/fabfile/locale.py %%SEAHUBDIR%%/i18n.sh %%SEAHUBDIR%%/locale/ar/LC_MESSAGES/djangojs.po @@ -77,8 +79,8 @@ %%SEAHUBDIR%%/locale/zh_TW/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/zh_TW/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/manage.py -%%SEAHUBDIR%%/media/assets/css/backbone.css -%%SEAHUBDIR%%/media/assets/css/backbone.e3c60fd65a27.css +%%SEAHUBDIR%%/media/assets/css/bootstrap.min.b00faad199b5.css +%%SEAHUBDIR%%/media/assets/css/bootstrap.min.css %%SEAHUBDIR%%/media/assets/css/magnific-popup.656241b2c8ed.css %%SEAHUBDIR%%/media/assets/css/magnific-popup.css %%SEAHUBDIR%%/media/assets/css/select2-3.5.2.b9d0598b4e1c.css @@ -105,6 +107,8 @@ %%SEAHUBDIR%%/media/assets/scripts/app/collections/group-repos.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/groups.b2bc7f1951b4.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/groups.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/invitations.8a8ca0052bc9.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/invitations.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/pub-repos.56fb5a44d957.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/pub-repos.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/repo-group-folder-perm.4ee72982f503.js @@ -117,13 +121,21 @@ %%SEAHUBDIR%%/media/assets/scripts/app/collections/repo-user-folder-perm.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/repos.92498fbca8dc.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/repos.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-folders.5ca097d8e69f.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-folders.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-repos.51efabf47ad2.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-repos.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-share-links.81193dc9b191.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-share-links.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-upload-links.da0f9d7880a6.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/share-admin-upload-links.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/starred-files.0fd48b6cab65.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/starred-files.js %%SEAHUBDIR%%/media/assets/scripts/app/main.e72a78a72bbe.js %%SEAHUBDIR%%/media/assets/scripts/app/main.js %%SEAHUBDIR%%/media/assets/scripts/app/models/activity.dbdb311e9b4c.js %%SEAHUBDIR%%/media/assets/scripts/app/models/activity.js -%%SEAHUBDIR%%/media/assets/scripts/app/models/device.550278ee3aa2.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/device.205de3de7389.js %%SEAHUBDIR%%/media/assets/scripts/app/models/device.js %%SEAHUBDIR%%/media/assets/scripts/app/models/dirent.c07efc8ecbd5.js %%SEAHUBDIR%%/media/assets/scripts/app/models/dirent.js @@ -133,15 +145,25 @@ %%SEAHUBDIR%%/media/assets/scripts/app/models/group-repo.js %%SEAHUBDIR%%/media/assets/scripts/app/models/group.2004ce3576b3.js %%SEAHUBDIR%%/media/assets/scripts/app/models/group.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/invitation.53327a6ee991.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/invitation.js %%SEAHUBDIR%%/media/assets/scripts/app/models/pub-repo.3f52334f11d8.js %%SEAHUBDIR%%/media/assets/scripts/app/models/pub-repo.js %%SEAHUBDIR%%/media/assets/scripts/app/models/repo.b07bd5e3b6e6.js %%SEAHUBDIR%%/media/assets/scripts/app/models/repo.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-folder.982c3cf07a5b.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-folder.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-repo.71bb90c58e19.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-repo.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-share-link.c3223f5162df.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-share-link.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-upload-link.3666fafff5b8.js +%%SEAHUBDIR%%/media/assets/scripts/app/models/share-admin-upload-link.js %%SEAHUBDIR%%/media/assets/scripts/app/models/starred-file.bd1fd7cfed45.js %%SEAHUBDIR%%/media/assets/scripts/app/models/starred-file.js -%%SEAHUBDIR%%/media/assets/scripts/app/router.9d4338b92a2f.js +%%SEAHUBDIR%%/media/assets/scripts/app/router.e2dcb1c87c80.js %%SEAHUBDIR%%/media/assets/scripts/app/router.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/account.f2c65b1d9682.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/account.85f0cf2e10b8.js %%SEAHUBDIR%%/media/assets/scripts/app/views/account.js %%SEAHUBDIR%%/media/assets/scripts/app/views/activities.6cda1288e4e2.js %%SEAHUBDIR%%/media/assets/scripts/app/views/activities.js @@ -159,13 +181,13 @@ %%SEAHUBDIR%%/media/assets/scripts/app/views/create-pub-repo.js %%SEAHUBDIR%%/media/assets/scripts/app/views/details.98bb9832bb1a.js %%SEAHUBDIR%%/media/assets/scripts/app/views/details.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/device.26991cb363d1.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/device.b487d2c70aaf.js %%SEAHUBDIR%%/media/assets/scripts/app/views/device.js %%SEAHUBDIR%%/media/assets/scripts/app/views/devices.f7a71c76de30.js %%SEAHUBDIR%%/media/assets/scripts/app/views/devices.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-mvcp.c499744db505.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-mvcp.fc89adf7104b.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-mvcp.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-rename.982441df26a2.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-rename.70f40b075170.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-rename.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-change-password.7c8f8db7a529.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-change-password.js @@ -173,25 +195,25 @@ %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-folder-perm-admin.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-history-settings.4803dcbb740a.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-history-settings.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-share-link-admin.0672516d5f06.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-share-link-admin.8637bf1be968.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-share-link-admin.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dir.5c29850b6d29.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dir.c7dd7b5b0f68.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dir.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dirent-grid.651b5500f929.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dirent-grid.065b37e711e7.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dirent-grid.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dirent.71d8232c47a4.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dirent.6995e430662c.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dirent.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/fileupload.3c98d2504541.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/fileupload.5caceb534850.js %%SEAHUBDIR%%/media/assets/scripts/app/views/fileupload.js %%SEAHUBDIR%%/media/assets/scripts/app/views/folder-perm-item.82219b903356.js %%SEAHUBDIR%%/media/assets/scripts/app/views/folder-perm-item.js %%SEAHUBDIR%%/media/assets/scripts/app/views/folder-perm.541d097583c5.js %%SEAHUBDIR%%/media/assets/scripts/app/views/folder-perm.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/folder-share-item.8b76a00d4a15.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/folder-share-item.6bf2bc9696ac.js %%SEAHUBDIR%%/media/assets/scripts/app/views/folder-share-item.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-discussion.f345d622bd34.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-discussion.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group-discussions.26e69a971181.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group-discussions.67ca554060a5.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-discussions.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-item.e0ea3311eec8.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-item.js @@ -201,53 +223,73 @@ %%SEAHUBDIR%%/media/assets/scripts/app/views/group-manage-members.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-member.4ab6f561f5b1.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-member.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group-members.d1aa17751bfc.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group-members.230fc9fb3dbb.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-members.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group-repo.a49039a3a363.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group-repo.4340a46fb87f.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group-settings.c1527a1f4c3c.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group-settings.5a62968bd674.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-settings.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group.bc8663eaa839.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group.e64b7b6ab5f0.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/groups.b7528bcd84af.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/groups.d73e0007af34.js %%SEAHUBDIR%%/media/assets/scripts/app/views/groups.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-repos.ac04ecee2de0.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/invitation.497900fa5cfb.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/invitation.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/invitations.35464fc14b02.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/invitations.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-repos.2b9cd378e7e5.js %%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-repos.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-shared-repos.9dd550d3e931.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-shared-repos.ec2a3de9ee6c.js %%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-shared-repos.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/notifications.014e2094dad3.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/notifications.465782b64984.js %%SEAHUBDIR%%/media/assets/scripts/app/views/notifications.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/organization-repo.34722b466d0c.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/organization-repo.d94ba26c26d1.js %%SEAHUBDIR%%/media/assets/scripts/app/views/organization-repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/organization.0bc2df34fdd3.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/organization.6b0d34bf3e3b.js %%SEAHUBDIR%%/media/assets/scripts/app/views/organization.js %%SEAHUBDIR%%/media/assets/scripts/app/views/repo-folder-perm.d70918b7033c.js %%SEAHUBDIR%%/media/assets/scripts/app/views/repo-folder-perm.js %%SEAHUBDIR%%/media/assets/scripts/app/views/repo-shared-link.b7ec2564223e.js %%SEAHUBDIR%%/media/assets/scripts/app/views/repo-shared-link.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/repo.4d22dfd295a5.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/repo.4eb2c1d402b3.js %%SEAHUBDIR%%/media/assets/scripts/app/views/repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/share.6e66da80c77e.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-folder.b1e05de56a32.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-folder.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-folders.a6ff47989ba5.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-folders.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-repo.e41286de56f7.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-repo.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-repos.e2b964af5a8f.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-repos.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-share-link.5a26a7dc6bb1.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-share-link.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-share-links.9a9a5769f406.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-share-links.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-upload-link.21f4f3d9f76b.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-upload-link.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-upload-links.bb406c0f1843.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-upload-links.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share.ffd59620d422.js %%SEAHUBDIR%%/media/assets/scripts/app/views/share.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/shared-repo.30ca796e613d.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/shared-repo.537274428fc9.js %%SEAHUBDIR%%/media/assets/scripts/app/views/shared-repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/side-nav.3e4649dfdf9f.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/side-nav.7bf4591aae5b.js %%SEAHUBDIR%%/media/assets/scripts/app/views/side-nav.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file-item.599c6b575c74.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file-item.0ba608466736.js %%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file-item.js %%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file.8f88d203900a.js %%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/dropdown.db6556a7a6eb.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/dropdown.30d2a55f70bf.js %%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/dropdown.js %%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/hl-item-view.a562f3b9a3ba.js %%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/hl-item-view.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/popover.be8c9e7df49f.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/popover.a88e1e24402f.js %%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/popover.js %%SEAHUBDIR%%/media/assets/scripts/build.a0552a4ed8dc.js %%SEAHUBDIR%%/media/assets/scripts/build.js -%%SEAHUBDIR%%/media/assets/scripts/common.2b8b77693fe7.js +%%SEAHUBDIR%%/media/assets/scripts/common.26e10ffcfcd8.js %%SEAHUBDIR%%/media/assets/scripts/common.js -%%SEAHUBDIR%%/media/assets/scripts/dist/build.e81023b1ccb6.txt +%%SEAHUBDIR%%/media/assets/scripts/dist/build.912b6d7d2a5f.txt %%SEAHUBDIR%%/media/assets/scripts/dist/build.d9508a510082.js %%SEAHUBDIR%%/media/assets/scripts/dist/build.js %%SEAHUBDIR%%/media/assets/scripts/dist/build.txt @@ -303,57 +345,55 @@ %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-cn/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-tw/djangojs.cabe6dd3f54d.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-tw/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/lib/jquery.ui.widget.1.11.3.ba4bd4e41caf.js -%%SEAHUBDIR%%/media/assets/scripts/dist/lib/jquery.ui.widget.1.11.3.js %%SEAHUBDIR%%/media/assets/scripts/dist/lib/require.75e6d0132deb.js %%SEAHUBDIR%%/media/assets/scripts/dist/lib/require.js -%%SEAHUBDIR%%/media/assets/scripts/dist/main.d43fb2e46e23.js +%%SEAHUBDIR%%/media/assets/scripts/dist/main.e41950b08373.js %%SEAHUBDIR%%/media/assets/scripts/dist/main.js -%%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.0087617342d0.js +%%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.c2af2c8db7ed.js %%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.js %%SEAHUBDIR%%/media/assets/scripts/file-tree.225c1b52bbee.js %%SEAHUBDIR%%/media/assets/scripts/file-tree.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ca/djangojs.0b7bde8db6d7.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ca/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.3d559e4657a2.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.71d859f82fc8.js %%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/en/djangojs.4fef8f9a3076.js %%SEAHUBDIR%%/media/assets/scripts/i18n/en/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.67d20b9a10bf.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.b63b6946956f.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.5037e19b30f0.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.6f7d4c37412d.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.724f1a942157.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.210aa31910ac.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.54253d6a3a87.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.f66480b3d021.js %%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/he/djangojs.f701701595f1.js %%SEAHUBDIR%%/media/assets/scripts/i18n/he/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.7a8ffdbd8e1f.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.9eaf3c9337cf.js %%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.95e6773d924f.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.1e5efefee431.js %%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/it/djangojs.433355eca56a.js %%SEAHUBDIR%%/media/assets/scripts/i18n/it/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ja/djangojs.f1c2cf8fa83f.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ja/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.3d570893c4ff.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.7d265c33d601.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/lv/djangojs.378231a600de.js %%SEAHUBDIR%%/media/assets/scripts/i18n/lv/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.5cb669631d87.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.9abe7982c380.js %%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.95167ba6553e.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.561c92db67f8.js %%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.66918dcf7798.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.19ac4750ab7c.js %%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.5f67e916a7d2.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.cdff3c2b0890.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sk/djangojs.78fad6240039.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sk/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sl/djangojs.b4d2169424f0.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.4853d2006a00.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.791641bcf8f0.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/th/djangojs.f53496bdd5ff.js %%SEAHUBDIR%%/media/assets/scripts/i18n/th/djangojs.js @@ -361,7 +401,7 @@ %%SEAHUBDIR%%/media/assets/scripts/i18n/tr/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/uk/djangojs.6e7dad71790d.js %%SEAHUBDIR%%/media/assets/scripts/i18n/uk/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.f476bcb718e9.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.0331b327a1c1.js %%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/zh-tw/djangojs.7a3f17ce6df0.js %%SEAHUBDIR%%/media/assets/scripts/i18n/zh-tw/djangojs.js @@ -393,8 +433,6 @@ %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.ui.tabs.js %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.ui.widget.1.11.1.5bae5494c8e9.js %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.ui.widget.1.11.1.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.ui.widget.1.11.3.e7ca91e0a8c2.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.ui.widget.1.11.3.js %%SEAHUBDIR%%/media/assets/scripts/lib/js.cookie.4267ca2ad477.js %%SEAHUBDIR%%/media/assets/scripts/lib/js.cookie.js %%SEAHUBDIR%%/media/assets/scripts/lib/jstree.1.0.2561f0294340.js @@ -419,34 +457,86 @@ %%SEAHUBDIR%%/media/assets/scripts/pinyin-by-unicode.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/device-errors.de63a040c8f3.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/device-errors.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/devices.8d5db2a23814.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/devices.c3d27133cafe.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/devices.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/dirents.7597b05d5ae1.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/dirents.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/groups.58c03af01bab.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/groups.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/repos.da8363c28bdf.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/repos.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/search-repos.fdd17029d706.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/search-repos.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/search-trash-repos.c40a5fb36795.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/search-trash-repos.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/trash-repos.136cdf5c3247.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/trash-repos.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/main.f7e9051f92b1.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/main.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/device-error.8f106faa372b.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/device-error.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/device.f19a3afd8107.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/device.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/dirent.3e11739a7edd.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/dirent.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/group.730f1455b174.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/group.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/repo.17195e6a9338.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/repo.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/sysinfo.b8f278d86fba.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/sysinfo.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/router.2766c70bce4b.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/system-repo.358ab9b5a52c.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/system-repo.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/trash-repo.9d15a76965d4.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/trash-repo.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/router.ff2edafab191.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/router.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dashboard.51a7a29b6678.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dashboard.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/desktop-devices.ee988b50467e.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/desktop-devices.ccdb031a3a7f.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/desktop-devices.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-error.a936d0df1029.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-error.4e2a1ee6c209.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-error.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-errors.2b8290ddd2d3.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-errors.8f1fae7d1ef5.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-errors.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device.b98906c08588.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device.b123ead950e9.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/mobile-devices.e6100fd15170.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dir.70a4340126e2.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dir.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dirent.46ace69d5584.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dirent.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/folder-share-item.da4cf4aec01f.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/folder-share-item.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/group.ad24c3aafb56.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/group.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/groups.e15129394597.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/groups.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/mobile-devices.b265409fc479.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/mobile-devices.js -%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/side-nav.10fcdd741b89.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/repo.7f3906dad98f.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/repo.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/repos.a46fb75254ba.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/repos.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/search-repos.c79bb4de37d0.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/search-repos.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/search-trash-repos.0e629c870320.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/search-trash-repos.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/share.a4bf27bf31d9.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/share.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/side-nav.5b0e7e7ca529.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/side-nav.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/system-repo.712a63b5453b.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/system-repo.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/trash-repo.368c77638f20.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/trash-repo.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/trash-repos.8ad8a6bf4e4c.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/trash-repos.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-main.e14c688752f6.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-main.js +%%SEAHUBDIR%%/media/assets/termsandconditions/css/modal.5229f1ce020c.css +%%SEAHUBDIR%%/media/assets/termsandconditions/css/modal.css +%%SEAHUBDIR%%/media/assets/termsandconditions/js/modal.eaf68c44efed.js +%%SEAHUBDIR%%/media/assets/termsandconditions/js/modal.js %%SEAHUBDIR%%/media/codemirror/codemirror-2.36.js %%SEAHUBDIR%%/media/codemirror/codemirror.css %%SEAHUBDIR%%/media/codemirror/monokai.css @@ -466,7 +556,7 @@ %%SEAHUBDIR%%/media/css/jquery-ui.datepicker.min.css %%SEAHUBDIR%%/media/css/loading.gif %%SEAHUBDIR%%/media/css/mediaelementplayer.css -%%SEAHUBDIR%%/media/css/mobile.css +%%SEAHUBDIR%%/media/css/print_for_file_view.css %%SEAHUBDIR%%/media/css/seacloud.css %%SEAHUBDIR%%/media/css/seahub.css %%SEAHUBDIR%%/media/css/seahub.min.css @@ -531,11 +621,18 @@ %%SEAHUBDIR%%/media/img/grid-white.png %%SEAHUBDIR%%/media/img/grid.png %%SEAHUBDIR%%/media/img/grp_public.png -%%SEAHUBDIR%%/media/img/help/help-client/%%USERS%%-add-account.png -%%SEAHUBDIR%%/media/img/help/help-client/%%USERS%%-create-library-02.png -%%SEAHUBDIR%%/media/img/help/help-client/%%USERS%%-create-library.png -%%SEAHUBDIR%%/media/img/help/help-client/%%USERS%%-init-choose-folder.png -%%SEAHUBDIR%%/media/img/help/help-client/%%USERS%%-sync-library.png +%%SEAHUBDIR%%/media/img/help/resync-a-library.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-add-account.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-cloud-file-browser.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-cloud.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-create-library-02.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-create-library.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-init-choose-folder.png +%%SEAHUBDIR%%/media/img/help/%%USERS%%-sync-library.png +%%SEAHUBDIR%%/media/img/help/set-sync-interval.png +%%SEAHUBDIR%%/media/img/help/sync-a-sub-folder.png +%%SEAHUBDIR%%/media/img/help/sync-with-an-existing-01.png +%%SEAHUBDIR%%/media/img/help/sync-with-an-existing-02.png %%SEAHUBDIR%%/media/img/lib-16.png %%SEAHUBDIR%%/media/img/lib/24/lib-encrypted.png %%SEAHUBDIR%%/media/img/lib/24/lib-readonly.png @@ -604,7 +701,6 @@ %%SEAHUBDIR%%/media/js/repo_crypto.js %%SEAHUBDIR%%/media/js/select2.min.js %%SEAHUBDIR%%/media/js/silverlightmediaelement.xap -%%SEAHUBDIR%%/media/js/sort_lib.js %%SEAHUBDIR%%/media/js/themes/classic/d.gif %%SEAHUBDIR%%/media/js/themes/classic/d.png %%SEAHUBDIR%%/media/js/themes/classic/dot_for_ie.gif @@ -639,6 +735,7 @@ %%SEAHUBDIR%%/seahub/__init__.py %%SEAHUBDIR%%/seahub/api2/__init__.py %%SEAHUBDIR%%/seahub/api2/authentication.py +%%SEAHUBDIR%%/seahub/api2/base.py %%SEAHUBDIR%%/seahub/api2/endpoints/__init__.py %%SEAHUBDIR%%/seahub/api2/endpoints/account.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/__init__.py @@ -646,38 +743,48 @@ %%SEAHUBDIR%%/seahub/api2/endpoints/admin/devices.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/file_audit.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/file_update.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/groups.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/libraries.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/library_dirents.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/login.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/perm_audit.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/shares.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/sysinfo.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/system_library.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/trash_libraries.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/utils.py %%SEAHUBDIR%%/seahub/api2/endpoints/be_shared_repo.py %%SEAHUBDIR%%/seahub/api2/endpoints/dir.py %%SEAHUBDIR%%/seahub/api2/endpoints/dir_shared_items.py %%SEAHUBDIR%%/seahub/api2/endpoints/dirents_download_link.py %%SEAHUBDIR%%/seahub/api2/endpoints/file.py +%%SEAHUBDIR%%/seahub/api2/endpoints/file_comment.py +%%SEAHUBDIR%%/seahub/api2/endpoints/file_comments.py +%%SEAHUBDIR%%/seahub/api2/endpoints/file_comments_counts.py %%SEAHUBDIR%%/seahub/api2/endpoints/group_discussion.py %%SEAHUBDIR%%/seahub/api2/endpoints/group_discussions.py %%SEAHUBDIR%%/seahub/api2/endpoints/group_members.py %%SEAHUBDIR%%/seahub/api2/endpoints/groups.py +%%SEAHUBDIR%%/seahub/api2/endpoints/invitation.py +%%SEAHUBDIR%%/seahub/api2/endpoints/invitations.py +%%SEAHUBDIR%%/seahub/api2/endpoints/query_zip_progress.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_set_password.py +%%SEAHUBDIR%%/seahub/api2/endpoints/search_group.py %%SEAHUBDIR%%/seahub/api2/endpoints/search_user.py %%SEAHUBDIR%%/seahub/api2/endpoints/send_share_link_email.py %%SEAHUBDIR%%/seahub/api2/endpoints/send_upload_link_email.py +%%SEAHUBDIR%%/seahub/api2/endpoints/share_link_zip_task.py %%SEAHUBDIR%%/seahub/api2/endpoints/share_links.py +%%SEAHUBDIR%%/seahub/api2/endpoints/shared_folders.py +%%SEAHUBDIR%%/seahub/api2/endpoints/shared_repos.py %%SEAHUBDIR%%/seahub/api2/endpoints/shared_upload_links.py %%SEAHUBDIR%%/seahub/api2/endpoints/upload_links.py %%SEAHUBDIR%%/seahub/api2/endpoints/utils.py +%%SEAHUBDIR%%/seahub/api2/endpoints/zip_task.py %%SEAHUBDIR%%/seahub/api2/models.py %%SEAHUBDIR%%/seahub/api2/permissions.py %%SEAHUBDIR%%/seahub/api2/serializers.py %%SEAHUBDIR%%/seahub/api2/status.py -%%SEAHUBDIR%%/seahub/api2/templates/api2/base.html -%%SEAHUBDIR%%/seahub/api2/templates/api2/event_details.html -%%SEAHUBDIR%%/seahub/api2/templates/api2/events.html -%%SEAHUBDIR%%/seahub/api2/templates/api2/events_body.html -%%SEAHUBDIR%%/seahub/api2/templates/api2/events_js.html -%%SEAHUBDIR%%/seahub/api2/templates/api2/user_msg.html -%%SEAHUBDIR%%/seahub/api2/templates/api2/user_msg_body.html %%SEAHUBDIR%%/seahub/api2/tests.py %%SEAHUBDIR%%/seahub/api2/throttling.py %%SEAHUBDIR%%/seahub/api2/urls.py @@ -685,6 +792,7 @@ %%SEAHUBDIR%%/seahub/api2/views.py %%SEAHUBDIR%%/seahub/api2/views_auth.py %%SEAHUBDIR%%/seahub/api2/views_misc.py +%%SEAHUBDIR%%/seahub/auth/LICENSE %%SEAHUBDIR%%/seahub/auth/__init__.py %%SEAHUBDIR%%/seahub/auth/admin.py %%SEAHUBDIR%%/seahub/auth/decorators.py @@ -697,25 +805,10 @@ %%SEAHUBDIR%%/seahub/auth/middleware.py %%SEAHUBDIR%%/seahub/auth/models.py %%SEAHUBDIR%%/seahub/auth/signals.py -%%SEAHUBDIR%%/seahub/auth/tests/__init__.py -%%SEAHUBDIR%%/seahub/auth/tests/auth_backends.py -%%SEAHUBDIR%%/seahub/auth/tests/basic.py -%%SEAHUBDIR%%/seahub/auth/tests/decorators.py -%%SEAHUBDIR%%/seahub/auth/tests/forms.py -%%SEAHUBDIR%%/seahub/auth/tests/models.py -%%SEAHUBDIR%%/seahub/auth/tests/remote_user.py -%%SEAHUBDIR%%/seahub/auth/tests/templates/registration/login.html -%%SEAHUBDIR%%/seahub/auth/tests/templates/registration/password_reset_complete.html -%%SEAHUBDIR%%/seahub/auth/tests/templates/registration/password_reset_confirm.html -%%SEAHUBDIR%%/seahub/auth/tests/templates/registration/password_reset_done.html -%%SEAHUBDIR%%/seahub/auth/tests/templates/registration/password_reset_email.html -%%SEAHUBDIR%%/seahub/auth/tests/templates/registration/password_reset_form.html -%%SEAHUBDIR%%/seahub/auth/tests/tokens.py -%%SEAHUBDIR%%/seahub/auth/tests/urls.py -%%SEAHUBDIR%%/seahub/auth/tests/views.py %%SEAHUBDIR%%/seahub/auth/tokens.py %%SEAHUBDIR%%/seahub/auth/urls.py %%SEAHUBDIR%%/seahub/auth/views.py +%%SEAHUBDIR%%/seahub/avatar/LICENSE.txt %%SEAHUBDIR%%/seahub/avatar/__init__.py %%SEAHUBDIR%%/seahub/avatar/admin.py %%SEAHUBDIR%%/seahub/avatar/forms.py @@ -732,7 +825,6 @@ %%SEAHUBDIR%%/seahub/avatar/templates/avatar/base.html %%SEAHUBDIR%%/seahub/avatar/templates/avatar/change.html %%SEAHUBDIR%%/seahub/avatar/templates/avatar/confirm_delete.html -%%SEAHUBDIR%%/seahub/avatar/templates/avatar/set_avatar.html %%SEAHUBDIR%%/seahub/avatar/templates/notification/avatar_friend_updated/full.txt %%SEAHUBDIR%%/seahub/avatar/templates/notification/avatar_friend_updated/notice.html %%SEAHUBDIR%%/seahub/avatar/templates/notification/avatar_updated/full.txt @@ -817,14 +909,16 @@ %%SEAHUBDIR%%/seahub/handlers.py %%SEAHUBDIR%%/seahub/help/__init__.py %%SEAHUBDIR%%/seahub/help/models.py -%%SEAHUBDIR%%/seahub/help/templates/help/help_base.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_colab.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_delete.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_group_share.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_ignore.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_install_v2.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_security.html -%%SEAHUBDIR%%/seahub/help/templates/help/help_view_encrypted.html +%%SEAHUBDIR%%/seahub/help/templates/help/base.html +%%SEAHUBDIR%%/seahub/help/templates/help/conflicts.html +%%SEAHUBDIR%%/seahub/help/templates/help/desktop_proxy.html +%%SEAHUBDIR%%/seahub/help/templates/help/encrypted_libraries.html +%%SEAHUBDIR%%/seahub/help/templates/help/ignore.html +%%SEAHUBDIR%%/seahub/help/templates/help/install.html +%%SEAHUBDIR%%/seahub/help/templates/help/selective_sync.html +%%SEAHUBDIR%%/seahub/help/templates/help/sync_existing.html +%%SEAHUBDIR%%/seahub/help/templates/help/sync_interval.html +%%SEAHUBDIR%%/seahub/help/templates/help/unsync_resync.html %%SEAHUBDIR%%/seahub/help/tests.py %%SEAHUBDIR%%/seahub/help/urls.py %%SEAHUBDIR%%/seahub/help/views.py @@ -839,9 +933,25 @@ %%SEAHUBDIR%%/seahub/institutions/templates/institutions/info.html %%SEAHUBDIR%%/seahub/institutions/templates/institutions/user_info.html %%SEAHUBDIR%%/seahub/institutions/templates/institutions/useradmin.html +%%SEAHUBDIR%%/seahub/institutions/templates/institutions/useradmin_search.html %%SEAHUBDIR%%/seahub/institutions/tests.py %%SEAHUBDIR%%/seahub/institutions/urls.py %%SEAHUBDIR%%/seahub/institutions/views.py +%%SEAHUBDIR%%/seahub/invitations/__init__.py +%%SEAHUBDIR%%/seahub/invitations/admin.py +%%SEAHUBDIR%%/seahub/invitations/migrations/0001_initial.py +%%SEAHUBDIR%%/seahub/invitations/migrations/0002_invitation_invite_type.py +%%SEAHUBDIR%%/seahub/invitations/migrations/0003_auto_20160510_1703.py +%%SEAHUBDIR%%/seahub/invitations/migrations/0004_auto_20160629_1610.py +%%SEAHUBDIR%%/seahub/invitations/migrations/0005_auto_20160629_1614.py +%%SEAHUBDIR%%/seahub/invitations/migrations/__init__.py +%%SEAHUBDIR%%/seahub/invitations/models.py +%%SEAHUBDIR%%/seahub/invitations/settings.py +%%SEAHUBDIR%%/seahub/invitations/templates/invitations/invitation_email.html +%%SEAHUBDIR%%/seahub/invitations/templates/invitations/invitation_email_subject.txt +%%SEAHUBDIR%%/seahub/invitations/templates/invitations/token_view.html +%%SEAHUBDIR%%/seahub/invitations/urls.py +%%SEAHUBDIR%%/seahub/invitations/views.py %%SEAHUBDIR%%/seahub/message/__init__.py %%SEAHUBDIR%%/seahub/message/forms.py %%SEAHUBDIR%%/seahub/message/management/__init__.py @@ -879,14 +989,10 @@ %%SEAHUBDIR%%/seahub/options/tests.py %%SEAHUBDIR%%/seahub/options/urls.py %%SEAHUBDIR%%/seahub/options/views.py +%%SEAHUBDIR%%/seahub/password_session/LICENSE %%SEAHUBDIR%%/seahub/password_session/__init__.py %%SEAHUBDIR%%/seahub/password_session/handlers.py %%SEAHUBDIR%%/seahub/password_session/middleware.py -%%SEAHUBDIR%%/seahub/password_session/models.py -%%SEAHUBDIR%%/seahub/password_session/tests/__init__.py -%%SEAHUBDIR%%/seahub/password_session/tests/test_urls.py -%%SEAHUBDIR%%/seahub/password_session/tests/test_views.py -%%SEAHUBDIR%%/seahub/password_session/tests/tests.py %%SEAHUBDIR%%/seahub/po.py %%SEAHUBDIR%%/seahub/profile/__init__.py %%SEAHUBDIR%%/seahub/profile/admin.py @@ -895,13 +1001,19 @@ %%SEAHUBDIR%%/seahub/profile/models.py %%SEAHUBDIR%%/seahub/profile/settings.py %%SEAHUBDIR%%/seahub/profile/templates/profile/profile_base.html -%%SEAHUBDIR%%/seahub/profile/templates/profile/set_ccnet_conf.html %%SEAHUBDIR%%/seahub/profile/templates/profile/set_profile.html %%SEAHUBDIR%%/seahub/profile/templates/profile/user_profile.html %%SEAHUBDIR%%/seahub/profile/tests.py %%SEAHUBDIR%%/seahub/profile/urls.py %%SEAHUBDIR%%/seahub/profile/utils.py %%SEAHUBDIR%%/seahub/profile/views.py +%%SEAHUBDIR%%/seahub/role_permissions/__init__.py +%%SEAHUBDIR%%/seahub/role_permissions/admin.py +%%SEAHUBDIR%%/seahub/role_permissions/migrations/__init__.py +%%SEAHUBDIR%%/seahub/role_permissions/models.py +%%SEAHUBDIR%%/seahub/role_permissions/settings.py +%%SEAHUBDIR%%/seahub/role_permissions/utils.py +%%SEAHUBDIR%%/seahub/role_permissions/views.py %%SEAHUBDIR%%/seahub/share/__init__.py %%SEAHUBDIR%%/seahub/share/decorators.py %%SEAHUBDIR%%/seahub/share/forms.py @@ -909,9 +1021,6 @@ %%SEAHUBDIR%%/seahub/share/models.py %%SEAHUBDIR%%/seahub/share/signals.py %%SEAHUBDIR%%/seahub/share/templates/share/audit_code_email.html -%%SEAHUBDIR%%/seahub/share/templates/share/links.html -%%SEAHUBDIR%%/seahub/share/templates/share/list_priv_shared_folders.html -%%SEAHUBDIR%%/seahub/share/templates/share/repos.html %%SEAHUBDIR%%/seahub/share/templates/share/share_link_audit.html %%SEAHUBDIR%%/seahub/share/tests.py %%SEAHUBDIR%%/seahub/share/urls.py @@ -920,10 +1029,9 @@ %%SEAHUBDIR%%/seahub/signals.py %%SEAHUBDIR%%/seahub/templates/404.html %%SEAHUBDIR%%/seahub/templates/500.html -%%SEAHUBDIR%%/seahub/templates/accounts.html -%%SEAHUBDIR%%/seahub/templates/admin_base.html %%SEAHUBDIR%%/seahub/templates/base.html %%SEAHUBDIR%%/seahub/templates/base_for_backbone.html +%%SEAHUBDIR%%/seahub/templates/base_wide_page.html %%SEAHUBDIR%%/seahub/templates/choose_register.html %%SEAHUBDIR%%/seahub/templates/decrypt_repo_form.html %%SEAHUBDIR%%/seahub/templates/download.html @@ -935,7 +1043,6 @@ %%SEAHUBDIR%%/seahub/templates/file_revisions.html %%SEAHUBDIR%%/seahub/templates/file_upload_progress_page.html %%SEAHUBDIR%%/seahub/templates/finish_payment.html -%%SEAHUBDIR%%/seahub/templates/footer.html %%SEAHUBDIR%%/seahub/templates/home_base.html %%SEAHUBDIR%%/seahub/templates/i18n.html %%SEAHUBDIR%%/seahub/templates/js/dir-view.html @@ -943,9 +1050,7 @@ %%SEAHUBDIR%%/seahub/templates/js/sysadmin-templates.html %%SEAHUBDIR%%/seahub/templates/js/templates.html %%SEAHUBDIR%%/seahub/templates/libraries.html -%%SEAHUBDIR%%/seahub/templates/myhome_base.html -%%SEAHUBDIR%%/seahub/templates/permission_error.html -%%SEAHUBDIR%%/seahub/templates/pub_base.html +%%SEAHUBDIR%%/seahub/templates/nav_footer.html %%SEAHUBDIR%%/seahub/templates/registration/activate.html %%SEAHUBDIR%%/seahub/templates/registration/activate_request_email.txt %%SEAHUBDIR%%/seahub/templates/registration/activate_request_email_subject.txt @@ -994,34 +1099,28 @@ %%SEAHUBDIR%%/seahub/templates/snippets/office_convert_style.html %%SEAHUBDIR%%/seahub/templates/snippets/password_strength_js.html %%SEAHUBDIR%%/seahub/templates/snippets/repo_create_js.html -%%SEAHUBDIR%%/seahub/templates/snippets/repo_del_js.html -%%SEAHUBDIR%%/seahub/templates/snippets/repo_del_popup.html %%SEAHUBDIR%%/seahub/templates/snippets/repo_dir_trash_tr.html -%%SEAHUBDIR%%/seahub/templates/snippets/repo_share_form.html %%SEAHUBDIR%%/seahub/templates/snippets/search_form.html %%SEAHUBDIR%%/seahub/templates/snippets/search_js.html %%SEAHUBDIR%%/seahub/templates/snippets/shared_link_js.html -%%SEAHUBDIR%%/seahub/templates/snippets/sort_lib_js.html %%SEAHUBDIR%%/seahub/templates/snippets/space_and_traffic.html %%SEAHUBDIR%%/seahub/templates/snippets/spreadsheet_convert_html.html %%SEAHUBDIR%%/seahub/templates/snippets/spreadsheet_convert_js.html %%SEAHUBDIR%%/seahub/templates/snippets/spreadsheet_convert_style.html %%SEAHUBDIR%%/seahub/templates/snippets/web_settings_form.html -%%SEAHUBDIR%%/seahub/templates/starred.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/admin_repo_view.html %%SEAHUBDIR%%/seahub/templates/sysadmin/base.html %%SEAHUBDIR%%/seahub/templates/sysadmin/org_admin_table.html %%SEAHUBDIR%%/seahub/templates/sysadmin/repo_transfer_form.html %%SEAHUBDIR%%/seahub/templates/sysadmin/repoadmin_js.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/repoadmin_table.html %%SEAHUBDIR%%/seahub/templates/sysadmin/settings.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sudo_mode.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_admin_group_info.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_group_admin.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_admin.html +%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_info_admins.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_info_base.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_info_user.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_list_system.html +%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_search_user.html +%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_invitations_admin.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_org_admin.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_org_info_base.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_org_info_group.html @@ -1031,9 +1130,7 @@ %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_org_search.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_org_set_quota_js.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_publink_admin.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_repo_admin.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_repo_search.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_repo_trash.html +%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_terms_admin.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_trafficadmin.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_user_admin_ldap_imported.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_useradmin.html @@ -1052,9 +1149,8 @@ %%SEAHUBDIR%%/seahub/templates/sysadmin/useradmin_paginator.html %%SEAHUBDIR%%/seahub/templates/sysadmin/useradmin_table.html %%SEAHUBDIR%%/seahub/templates/sysadmin/userinfo.html +%%SEAHUBDIR%%/seahub/templates/termsandconditions/tc_accept_terms.html %%SEAHUBDIR%%/seahub/templates/text_diff.html -%%SEAHUBDIR%%/seahub/templates/update_file_error.html -%%SEAHUBDIR%%/seahub/templates/upload_file_error.html %%SEAHUBDIR%%/seahub/templates/user_404.html %%SEAHUBDIR%%/seahub/templates/view_file_3d.html %%SEAHUBDIR%%/seahub/templates/view_file_audio.html @@ -1109,6 +1205,8 @@ %%SEAHUBDIR%%/seahub/utils/star.py %%SEAHUBDIR%%/seahub/utils/sysinfo.py %%SEAHUBDIR%%/seahub/utils/timeutils.py +%%SEAHUBDIR%%/seahub/utils/two_factor_auth.py +%%SEAHUBDIR%%/seahub/utils/user_permissions.py %%SEAHUBDIR%%/seahub/views/__init__.py %%SEAHUBDIR%%/seahub/views/ajax.py %%SEAHUBDIR%%/seahub/views/file.py @@ -1128,7 +1226,7 @@ %%SEAHUBDIR%%/sql/README.md %%SEAHUBDIR%%/sql/mysql.sql %%SEAHUBDIR%%/sql/sqlite3.sql -%%SEAHUBDIR%%/static/css/backbone.css +%%SEAHUBDIR%%/static/css/bootstrap.min.css %%SEAHUBDIR%%/static/css/magnific-popup.css %%SEAHUBDIR%%/static/css/select2-3.5.2.css %%SEAHUBDIR%%/static/css/select2-spinner.gif @@ -1142,12 +1240,17 @@ %%SEAHUBDIR%%/static/scripts/app/collections/group-members.js %%SEAHUBDIR%%/static/scripts/app/collections/group-repos.js %%SEAHUBDIR%%/static/scripts/app/collections/groups.js +%%SEAHUBDIR%%/static/scripts/app/collections/invitations.js %%SEAHUBDIR%%/static/scripts/app/collections/pub-repos.js %%SEAHUBDIR%%/static/scripts/app/collections/repo-group-folder-perm.js %%SEAHUBDIR%%/static/scripts/app/collections/repo-shared-download-links.js %%SEAHUBDIR%%/static/scripts/app/collections/repo-shared-upload-links.js %%SEAHUBDIR%%/static/scripts/app/collections/repo-user-folder-perm.js %%SEAHUBDIR%%/static/scripts/app/collections/repos.js +%%SEAHUBDIR%%/static/scripts/app/collections/share-admin-folders.js +%%SEAHUBDIR%%/static/scripts/app/collections/share-admin-repos.js +%%SEAHUBDIR%%/static/scripts/app/collections/share-admin-share-links.js +%%SEAHUBDIR%%/static/scripts/app/collections/share-admin-upload-links.js %%SEAHUBDIR%%/static/scripts/app/collections/starred-files.js %%SEAHUBDIR%%/static/scripts/app/main.js %%SEAHUBDIR%%/static/scripts/app/models/activity.js @@ -1156,8 +1259,13 @@ %%SEAHUBDIR%%/static/scripts/app/models/group-discussion.js %%SEAHUBDIR%%/static/scripts/app/models/group-repo.js %%SEAHUBDIR%%/static/scripts/app/models/group.js +%%SEAHUBDIR%%/static/scripts/app/models/invitation.js %%SEAHUBDIR%%/static/scripts/app/models/pub-repo.js %%SEAHUBDIR%%/static/scripts/app/models/repo.js +%%SEAHUBDIR%%/static/scripts/app/models/share-admin-folder.js +%%SEAHUBDIR%%/static/scripts/app/models/share-admin-repo.js +%%SEAHUBDIR%%/static/scripts/app/models/share-admin-share-link.js +%%SEAHUBDIR%%/static/scripts/app/models/share-admin-upload-link.js %%SEAHUBDIR%%/static/scripts/app/models/starred-file.js %%SEAHUBDIR%%/static/scripts/app/router.js %%SEAHUBDIR%%/static/scripts/app/views/account.js @@ -1195,6 +1303,8 @@ %%SEAHUBDIR%%/static/scripts/app/views/group-settings.js %%SEAHUBDIR%%/static/scripts/app/views/group.js %%SEAHUBDIR%%/static/scripts/app/views/groups.js +%%SEAHUBDIR%%/static/scripts/app/views/invitation.js +%%SEAHUBDIR%%/static/scripts/app/views/invitations.js %%SEAHUBDIR%%/static/scripts/app/views/myhome-repos.js %%SEAHUBDIR%%/static/scripts/app/views/myhome-shared-repos.js %%SEAHUBDIR%%/static/scripts/app/views/notifications.js @@ -1203,6 +1313,14 @@ %%SEAHUBDIR%%/static/scripts/app/views/repo-folder-perm.js %%SEAHUBDIR%%/static/scripts/app/views/repo-shared-link.js %%SEAHUBDIR%%/static/scripts/app/views/repo.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-folder.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-folders.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-repo.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-repos.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-share-link.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-share-links.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-upload-link.js +%%SEAHUBDIR%%/static/scripts/app/views/share-admin-upload-links.js %%SEAHUBDIR%%/static/scripts/app/views/share.js %%SEAHUBDIR%%/static/scripts/app/views/shared-repo.js %%SEAHUBDIR%%/static/scripts/app/views/side-nav.js @@ -1254,7 +1372,6 @@ %%SEAHUBDIR%%/static/scripts/lib/jquery.ui.progressbar.js %%SEAHUBDIR%%/static/scripts/lib/jquery.ui.tabs.js %%SEAHUBDIR%%/static/scripts/lib/jquery.ui.widget.1.11.1.js -%%SEAHUBDIR%%/static/scripts/lib/jquery.ui.widget.1.11.3.js %%SEAHUBDIR%%/static/scripts/lib/js.cookie.js %%SEAHUBDIR%%/static/scripts/lib/jstree.1.0.js %%SEAHUBDIR%%/static/scripts/lib/marked.min.js @@ -1268,45 +1385,88 @@ %%SEAHUBDIR%%/static/scripts/pinyin-by-unicode.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/device-errors.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/devices.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/dirents.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/groups.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/repos.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/search-repos.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/search-trash-repos.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/trash-repos.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/main.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/models/device-error.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/models/device.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/models/dirent.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/models/group.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/models/repo.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/models/sysinfo.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/models/system-repo.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/models/trash-repo.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/router.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/dashboard.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/desktop-devices.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/device-error.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/device-errors.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/device.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/dir.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/dirent.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/folder-share-item.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/group.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/groups.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/mobile-devices.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/repo.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/repos.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/search-repos.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/search-trash-repos.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/share.js %%SEAHUBDIR%%/static/scripts/sysadmin-app/views/side-nav.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/system-repo.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/trash-repo.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/trash-repos.js %%SEAHUBDIR%%/static/scripts/sysadmin-main.js %%SEAHUBDIR%%/test-requirements.txt %%SEAHUBDIR%%/tests/__init__.py %%SEAHUBDIR%%/tests/api/__init__.py %%SEAHUBDIR%%/tests/api/apitestbase.py +%%SEAHUBDIR%%/tests/api/endpoints/__init__.py +%%SEAHUBDIR%%/tests/api/endpoints/admin/__init__.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_device_errors.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_devices.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_file_audit_log.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_file_update_log.py +%%SEAHUBDIR%%/tests/api/endpoints/admin/test_groups.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_login_log.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_perm_audit_log.py +%%SEAHUBDIR%%/tests/api/endpoints/admin/test_shares.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_sysinfo.py %%SEAHUBDIR%%/tests/api/endpoints/test_account.py -%%SEAHUBDIR%%/tests/api/endpoints/test_be_shared_repos.py +%%SEAHUBDIR%%/tests/api/endpoints/test_be_shared_repo.py %%SEAHUBDIR%%/tests/api/endpoints/test_dir_shared_items.py %%SEAHUBDIR%%/tests/api/endpoints/test_dir_view.py %%SEAHUBDIR%%/tests/api/endpoints/test_dirents_download_link.py +%%SEAHUBDIR%%/tests/api/endpoints/test_file_comment.py +%%SEAHUBDIR%%/tests/api/endpoints/test_file_comments.py +%%SEAHUBDIR%%/tests/api/endpoints/test_file_comments_counts.py %%SEAHUBDIR%%/tests/api/endpoints/test_file_view.py %%SEAHUBDIR%%/tests/api/endpoints/test_group_discussion.py %%SEAHUBDIR%%/tests/api/endpoints/test_group_discussions.py +%%SEAHUBDIR%%/tests/api/endpoints/test_group_members.py %%SEAHUBDIR%%/tests/api/endpoints/test_groups.py +%%SEAHUBDIR%%/tests/api/endpoints/test_invitation.py +%%SEAHUBDIR%%/tests/api/endpoints/test_invitations.py +%%SEAHUBDIR%%/tests/api/endpoints/test_query_zip_progress.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_set_password.py +%%SEAHUBDIR%%/tests/api/endpoints/test_search_group.py +%%SEAHUBDIR%%/tests/api/endpoints/test_search_user.py %%SEAHUBDIR%%/tests/api/endpoints/test_send_share_link.py %%SEAHUBDIR%%/tests/api/endpoints/test_send_upload_link.py +%%SEAHUBDIR%%/tests/api/endpoints/test_share_link_zip_task.py %%SEAHUBDIR%%/tests/api/endpoints/test_share_links.py +%%SEAHUBDIR%%/tests/api/endpoints/test_shared_folders.py +%%SEAHUBDIR%%/tests/api/endpoints/test_shared_repos.py %%SEAHUBDIR%%/tests/api/endpoints/test_shared_upload_links.py %%SEAHUBDIR%%/tests/api/endpoints/test_upload_links.py +%%SEAHUBDIR%%/tests/api/endpoints/test_zip_task.py +%%SEAHUBDIR%%/tests/api/models/__init__.py +%%SEAHUBDIR%%/tests/api/models/test_token_v2.py %%SEAHUBDIR%%/tests/api/test_accounts.py %%SEAHUBDIR%%/tests/api/test_auth.py %%SEAHUBDIR%%/tests/api/test_avatar.py @@ -1316,6 +1476,7 @@ %%SEAHUBDIR%%/tests/api/test_dir.py %%SEAHUBDIR%%/tests/api/test_dir_download.py %%SEAHUBDIR%%/tests/api/test_dir_revert.py +%%SEAHUBDIR%%/tests/api/test_dir_sub_repo.py %%SEAHUBDIR%%/tests/api/test_file_revert.py %%SEAHUBDIR%%/tests/api/test_files.py %%SEAHUBDIR%%/tests/api/test_group_repos.py @@ -1332,32 +1493,31 @@ %%SEAHUBDIR%%/tests/api/test_repo_tokens.py %%SEAHUBDIR%%/tests/api/test_repo_user_folder_perm.py %%SEAHUBDIR%%/tests/api/test_repos.py +%%SEAHUBDIR%%/tests/api/test_serializers.py %%SEAHUBDIR%%/tests/api/test_shared_repo.py %%SEAHUBDIR%%/tests/api/test_shares.py %%SEAHUBDIR%%/tests/api/test_starredfiles.py %%SEAHUBDIR%%/tests/api/urls.py -%%SEAHUBDIR%%/tests/api/test_dir_sub_repo.py %%SEAHUBDIR%%/tests/common/__init__.py %%SEAHUBDIR%%/tests/common/common.py %%SEAHUBDIR%%/tests/common/utils.py %%SEAHUBDIR%%/tests/install-deps.sh -%%SEAHUBDIR%%/seahub/institutions/templates/institutions/useradmin_search.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_info_admins.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_search_user.html -%%SEAHUBDIR%%/tests/api/endpoints/test_group_members.py -%%SEAHUBDIR%%/tests/seahub/institutions/test_views.py -%%SEAHUBDIR%%/tests/seahub/views/sysadmin/test_sys_inst_info_admins.py -%%SEAHUBDIR%%/tests/seahub/views/sysadmin/test_sys_inst_info_user.py -%%SEAHUBDIR%%/tests/seahub/views/sysadmin/test_sys_inst_search_user.py -%%SEAHUBDIR%%/tests/seahub/views/sysadmin/test_sys_inst_toggle_admin.py %%SEAHUBDIR%%/tests/seahub/__init__.py %%SEAHUBDIR%%/tests/seahub/auth/views/test_login.py %%SEAHUBDIR%%/tests/seahub/auth/views/test_password_change.py +%%SEAHUBDIR%%/tests/seahub/base/__init__.py %%SEAHUBDIR%%/tests/seahub/base/database_storage/test_database_storage.py %%SEAHUBDIR%%/tests/seahub/base/templatetags/test_seahub_tags.py *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sun Sep 11 07:14:11 2016 Return-Path: Delivered-To: svn-ports-head@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 DA83BBD65F5; Sun, 11 Sep 2016 07:14:11 +0000 (UTC) (envelope-from antoine@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 AAE9BCC2; Sun, 11 Sep 2016 07:14:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B7EAAl054084; Sun, 11 Sep 2016 07:14:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B7EAjU054083; Sun, 11 Sep 2016 07:14:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609110714.u8B7EAjU054083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 11 Sep 2016 07:14:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421804 - head/textproc/py-cloud_sptheme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 07:14:12 -0000 Author: antoine Date: Sun Sep 11 07:14:10 2016 New Revision: 421804 URL: https://svnweb.freebsd.org/changeset/ports/421804 Log: Make usable as a regular user Modified: head/textproc/py-cloud_sptheme/Makefile Modified: head/textproc/py-cloud_sptheme/Makefile ============================================================================== --- head/textproc/py-cloud_sptheme/Makefile Sun Sep 11 06:54:36 2016 (r421803) +++ head/textproc/py-cloud_sptheme/Makefile Sun Sep 11 07:14:10 2016 (r421804) @@ -3,6 +3,7 @@ PORTNAME= cloud_sptheme PORTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -42,7 +43,7 @@ DOC_FILES4= *.css *.gif *.js *.png *.svg OPTIONS_DEFINE= DOCS post-extract: - @${CHMOD} 644 ${WRKSRC}/cloud_sptheme/themes/greencloud/theme.conf + @${CHMOD} -R a+rX ${WRKSRC} post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${DOCSDIR2} From owner-svn-ports-head@freebsd.org Sun Sep 11 07:52:28 2016 Return-Path: Delivered-To: svn-ports-head@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 8EA54BD6D4D; Sun, 11 Sep 2016 07:52:28 +0000 (UTC) (envelope-from brnrd@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 52666D46; Sun, 11 Sep 2016 07:52:28 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B7qR2D069121; Sun, 11 Sep 2016 07:52:27 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B7qRRl069116; Sun, 11 Sep 2016 07:52:27 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609110752.u8B7qRRl069116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 11 Sep 2016 07:52:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421805 - in head/www/nghttp2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 07:52:28 -0000 Author: brnrd Date: Sun Sep 11 07:52:26 2016 New Revision: 421805 URL: https://svnweb.freebsd.org/changeset/ports/421805 Log: www/nghttp2: Update to 1.14.0 - Update to 1.14.0 - Switch USE_OPENSSL to USES= ssl - Add options for APPS and SPDY - Default no change (i.e. APPS and SPDY on) - Add rc-script for nghttpx - Add sample config for nghttpx PR: 211336, 211494, 211774 Submitted by: brnrd (211336, version update) Submitted by: peter (211494, rc-script and sample config) Submitted by: Robert Schulze (211774, APPS and SPDY options) Approved by: Maintainer timeout Added: head/www/nghttp2/files/ head/www/nghttp2/files/nghttpx.conf.sample (contents, props changed) head/www/nghttp2/files/nghttpx.in (contents, props changed) Modified: head/www/nghttp2/Makefile head/www/nghttp2/distinfo head/www/nghttp2/pkg-plist Modified: head/www/nghttp2/Makefile ============================================================================== --- head/www/nghttp2/Makefile Sun Sep 11 07:14:10 2016 (r421804) +++ head/www/nghttp2/Makefile Sun Sep 11 07:52:26 2016 (r421805) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 1.11.1 +PORTVERSION= 1.14.0 DISTVERSIONPREFIX= v CATEGORIES= www net @@ -12,23 +12,16 @@ COMMENT= HTTP/2.0 C Library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= libev>=4.15:devel/libev \ - libevent2>=2.0.8:devel/libevent2 \ - spdylay>=1.3.0:www/spdylay -LIB_DEPENDS= libev.so:devel/libev \ - libevent_openssl.so:devel/libevent2 \ - libspdylay.so:www/spdylay - -OPTIONS_DEFINE= ASIO DOCS HPACK -OPTIONS_DEFAULT=HPACK +OPTIONS_DEFINE= APP SPDY ASIO DOCS HPACK +OPTIONS_DEFAULT=APP HPACK SPDY OPTIONS_SUB= yes +USE_RC_SUBR= nghttpx + USE_GITHUB= yes CONFIGURE_ARGS= --disable-python-bindings \ - --enable-app \ - --enable-examples \ - --with-spdylay + --disable-examples CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" \ ZLIB_CFLAGS="-I${INCLUDEDIR}" \ @@ -37,22 +30,34 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip PATHFIX_MAKEFILEIN= Makefile.am USE_CXXSTD= c++11 -USE_GNOME= libxml2 USE_LDCONFIG= yes -USE_OPENSSL= yes -USES= autoreconf compiler:c++11-lib gmake libtool localbase pathfix pkgconfig +USES= autoreconf compiler:c++11-lib gmake libtool localbase pathfix pkgconfig ssl PORTDATA= fetch-ocsp-response PORTDOCS= * +APP_DESC= Build nghttp, nghttpd, nghttpx, h2load +APP_BUILD_DEPENDS= libev>=4.15:devel/libev +APP_LIB_DEPENDS= libev.so:devel/libev +APP_CONFIGURE_ENABLE= app +APP_USE= GNOME=libxml2 +APP_CONFIGURE_OFF= --without-libxml2 + ASIO_BUILD_DEPENDS= boost-libs>=1.54.0:devel/boost-libs ASIO_CONFIGURE_OFF= --with-boost=no ASIO_CONFIGURE_ON= --enable-asio-lib --with-boost-asio --with-boost-system --with-boost-thread ASIO_LIB_DEPENDS= libboost_thread.so:devel/boost-libs ASIO_RUN_DEPENDS= boost-libs>=1.54.0:devel/boost-libs + HPACK_CONFIGURE_ENABLE= hpack-tools HPACK_LIB_DEPENDS= libjansson.so:devel/jansson +SPDY_DESC= Enable SPDY in nghttpx and h2load +SPDY_BUILD_DEPENDS= spdylay>=1.3.0:www/spdylay +SPDY_LIB_DEPENDS= libspdylay.so:www/spdylay +SPDY_IMPLIES= APP +SPDY_CONFIGURE_WITH= spdylay + .include .if ${OSVERSION} <= 1000000 @@ -63,4 +68,8 @@ CPPFLAGS+= -D_GLIBCXX_USE_C99 CONFIGURE_ARGS+=--with-jemalloc .endif +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/nghttpx + ${INSTALL_DATA} ${FILESDIR}/nghttpx.conf.sample ${STAGEDIR}${PREFIX}/etc/nghttpx/nghttpx.conf.sample + .include Modified: head/www/nghttp2/distinfo ============================================================================== --- head/www/nghttp2/distinfo Sun Sep 11 07:14:10 2016 (r421804) +++ head/www/nghttp2/distinfo Sun Sep 11 07:52:26 2016 (r421805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464481528 -SHA256 (nghttp2-nghttp2-v1.11.1_GH0.tar.gz) = 3c134ec8050c02b9b0aec93b9270f51f65800621bd336192f34c37fd34310962 -SIZE (nghttp2-nghttp2-v1.11.1_GH0.tar.gz) = 1630017 +TIMESTAMP = 1472326203 +SHA256 (nghttp2-nghttp2-v1.14.0_GH0.tar.gz) = 3a319de591eea09caa2bba3ce17ab403b58953c959aadae2053e0cf0189a7c47 +SIZE (nghttp2-nghttp2-v1.14.0_GH0.tar.gz) = 1670208 Added: head/www/nghttp2/files/nghttpx.conf.sample ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nghttp2/files/nghttpx.conf.sample Sun Sep 11 07:52:26 2016 (r421805) @@ -0,0 +1,31 @@ +# $FreeBSD$ +# Sample config file for nghttpx in proxy forwarding mode. + +# See https://nghttp2.org/documentation/nghttpx.1.html for +# an online reference. + +# Where to relay to, where to listen +backend=127.0.0.1,80 +frontend=*,443 + +# Provide the default SSL certificate file and private key +# You should use a full chain certificate - your certificate +# with any intermediates appended. +private-key-file=/etc/ssl/mycert/privkey.pem +certificate-file=/etc/ssl/mycert/fullchain.pem + +# Use subcert= to add extra certificates for SNI processing + +# Logs +accesslog-file=/var/log/nghttpx-access.log +errorlog-file=/var/log/nghttpx-error.log + +# Record where the requests came from +strip-incoming-x-forwarded-for=yes +add-x-forwarded-for=yes +strip-incoming-forwarded=yes +add-forwarded=by,for,host,proto + +# Don't hash forwarded-for stuff, use the actual information +forwarded-by=ip +forwarded-for=ip Added: head/www/nghttp2/files/nghttpx.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nghttp2/files/nghttpx.in Sun Sep 11 07:52:26 2016 (r421805) @@ -0,0 +1,47 @@ +#!/bin/sh +# $FreeBSD$ + +# PROVIDE: nghttpx +# REQUIRE: LOGIN cleanvar +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable nghttpx: +# nghttpx_enable (bool): Set to "NO" by default. +# Set it to "YES" to enable nghttpx +# nghttpx_flags (str): Set to "" by default. +# Extra flags passed to start command. +# Use --user=foo here if you wish. Make sure +# fetch-ocsp-response can read the certificate files and +# log-file directives can write their files. + +. /etc/rc.subr + +name="nghttpx" +rcvar=nghttpx_enable + +command="%%PREFIX%%/bin/nghttpx" +reopenlogs_cmd="nghttpx_reopenlogs" +extra_commands="reload reopenlogs" +pidfile="/var/run/${name}.pid" +sig_reload="USR2" # exec-self reload; Note: future versions have SIGHUP to reload +sig_stop="QUIT" # graceful stop + +# read configuration and set defaults +load_rc_config "$name" +: ${nghttpx_enable="NO"} +: ${nghttpx_configfile:=%%PREFIX%%/etc/nghttpx/${name}.conf} +: ${nghttpx_env:="PATH=/bin:/usr/bin:%%PREFIX%%/bin"} # Must include %%PREFIX%%/bin for python and fetch-ocsp-response + +required_files="$nghttpx_configfile" + +command_args="--conf ${nghttpx_configfile} --pid-file=${pidfile} --daemon" + +nghttpx_reopenlogs() +{ + echo "Reopening log files:" + sig_reload="USR1" + run_rc_command ${rc_prefix}reload $rc_extra_args || return 1 +} + +run_rc_command "$1" Modified: head/www/nghttp2/pkg-plist ============================================================================== --- head/www/nghttp2/pkg-plist Sun Sep 11 07:14:10 2016 (r421804) +++ head/www/nghttp2/pkg-plist Sun Sep 11 07:52:26 2016 (r421805) @@ -1,9 +1,10 @@ %%HPACK%%bin/deflatehd -bin/h2load +%%APP%%bin/h2load %%HPACK%%bin/inflatehd -bin/nghttp -bin/nghttpd -bin/nghttpx +%%APP%%bin/nghttp +%%APP%%bin/nghttpd +%%APP%%bin/nghttpx +@sample etc/nghttpx/nghttpx.conf.sample etc/nghttpx/nghttpx.conf %%ASIO%%include/nghttp2/asio_http2.h %%ASIO%%include/nghttp2/asio_http2_client.h %%ASIO%%include/nghttp2/asio_http2_server.h @@ -12,14 +13,14 @@ include/nghttp2/nghttp2ver.h lib/libnghttp2.a lib/libnghttp2.so lib/libnghttp2.so.14 -lib/libnghttp2.so.14.8.0 +lib/libnghttp2.so.14.10.0 %%ASIO%%lib/libnghttp2_asio.a %%ASIO%%lib/libnghttp2_asio.so %%ASIO%%lib/libnghttp2_asio.so.1 %%ASIO%%lib/libnghttp2_asio.so.1.0.0 libdata/pkgconfig/libnghttp2.pc %%ASIO%%libdata/pkgconfig/libnghttp2_asio.pc -man/man1/h2load.1.gz -man/man1/nghttp.1.gz -man/man1/nghttpd.1.gz -man/man1/nghttpx.1.gz +%%APP%%man/man1/h2load.1.gz +%%APP%%man/man1/nghttp.1.gz +%%APP%%man/man1/nghttpd.1.gz +%%APP%%man/man1/nghttpx.1.gz From owner-svn-ports-head@freebsd.org Sun Sep 11 08:15:17 2016 Return-Path: Delivered-To: svn-ports-head@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 6732BBD5379; Sun, 11 Sep 2016 08:15:17 +0000 (UTC) (envelope-from amdmi3@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 376F8839; Sun, 11 Sep 2016 08:15:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B8FG7s076913; Sun, 11 Sep 2016 08:15:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B8FGKL076912; Sun, 11 Sep 2016 08:15:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609110815.u8B8FGKL076912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 08:15:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421806 - head/games/avoision X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 08:15:17 -0000 Author: amdmi3 Date: Sun Sep 11 08:15:16 2016 New Revision: 421806 URL: https://svnweb.freebsd.org/changeset/ports/421806 Log: - Fix license Modified: head/games/avoision/Makefile Modified: head/games/avoision/Makefile ============================================================================== --- head/games/avoision/Makefile Sun Sep 11 07:52:26 2016 (r421805) +++ head/games/avoision/Makefile Sun Sep 11 08:15:16 2016 (r421806) @@ -10,12 +10,12 @@ MASTER_SITES= SF/avsn/ MAINTAINER= ports@FreeBSD.org COMMENT= Simple collect-dots-avoid-blocks game -LICENSE= GPLv2 CCbyNCSA3 -LICENSE_COMB= dual -LICENSE_NAME_CCbyNCSA3=Attribution-NonCommercial-ShareAlike 3.0 Unported +LICENSE= GPLv2+ CCbySA3 +LICENSE_COMB= multi +LICENSE_NAME_CCbySA3=Attribution-ShareAlike 3.0 Unported LICENSE_FILE= ${WRKSRC}/License.txt -LICENSE_FILE_CCbyNCSA3=${WRKSRC}/License.txt -LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept +LICENSE_FILE_CCbySA3= ${WRKSRC}/License.txt +LICENSE_PERMS_CCbySA3=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:graphics/radius-engine LIB_DEPENDS= liblua-5.1.so:lang/lua51 \ From owner-svn-ports-head@freebsd.org Sun Sep 11 08:19:44 2016 Return-Path: Delivered-To: svn-ports-head@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 AB49BBD544C; Sun, 11 Sep 2016 08:19:44 +0000 (UTC) (envelope-from amdmi3@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 7E1E094D; Sun, 11 Sep 2016 08:19:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B8Jhg6077164; Sun, 11 Sep 2016 08:19:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B8JhTC077163; Sun, 11 Sep 2016 08:19:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609110819.u8B8JhTC077163@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 08:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421807 - head/games/catesc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 08:19:44 -0000 Author: amdmi3 Date: Sun Sep 11 08:19:43 2016 New Revision: 421807 URL: https://svnweb.freebsd.org/changeset/ports/421807 Log: - Fix COMMENT typo - Silence COPYTREE_SHARE Modified: head/games/catesc/Makefile Modified: head/games/catesc/Makefile ============================================================================== --- head/games/catesc/Makefile Sun Sep 11 08:15:16 2016 (r421806) +++ head/games/catesc/Makefile Sun Sep 11 08:19:43 2016 (r421807) @@ -6,7 +6,7 @@ PORTVERSION= 0.6 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org -COMMENT= Escape of the cat - hardcode oldschool platformer +COMMENT= Escape of the cat - hardcore oldschool platformer LICENSE= CCbySA30 CCbySA40 LICENSE_COMB= multi @@ -40,6 +40,6 @@ DESKTOP_ENTRIES="Escape of the cat" \ do-install: ${INSTALL_DATA} ${WRKSRC}/pic/icon.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png - cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ .include From owner-svn-ports-head@freebsd.org Sun Sep 11 09:01:49 2016 Return-Path: Delivered-To: svn-ports-head@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 E3B07BD4474; Sun, 11 Sep 2016 09:01:49 +0000 (UTC) (envelope-from amdmi3@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 A53AAEBF; Sun, 11 Sep 2016 09:01:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8B91mKu095429; Sun, 11 Sep 2016 09:01:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8B91mfh095427; Sun, 11 Sep 2016 09:01:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609110901.u8B91mfh095427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 09:01:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421810 - in head/databases/yasql: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 09:01:50 -0000 Author: amdmi3 Date: Sun Sep 11 09:01:48 2016 New Revision: 421810 URL: https://svnweb.freebsd.org/changeset/ports/421810 Log: - Fix LICENSE - Add LICENSE_FILE - Switch to options helpers - Simplify installation Modified: head/databases/yasql/Makefile head/databases/yasql/files/patch-yasql.in Modified: head/databases/yasql/Makefile ============================================================================== --- head/databases/yasql/Makefile Sun Sep 11 09:00:17 2016 (r421809) +++ head/databases/yasql/Makefile Sun Sep 11 09:01:48 2016 (r421810) @@ -10,20 +10,21 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Yet Another SQL*Plus Replacement -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= p5-DBD-Oracle>0:databases/p5-DBD-Oracle \ p5-Term-ReadLine-Gnu>0:devel/p5-Term-ReadLine-Gnu -NO_ARCH= yes - USES= perl5 GNU_CONFIGURE= yes ALL_TARGET= default +NO_ARCH= yes + SUB_FILES= pkg-message -OPTIONS_DEFINE= CSV HIRES READKEY +OPTIONS_DEFINE= CSV HIRES READKEY DOCS CSV_DESC= Support for in/out CSV files CSV_BUILD_DEPENDS= p5-Text-CSV_XS>0:textproc/p5-Text-CSV_XS @@ -40,14 +41,13 @@ post-build: @${LN} -sf yasql.conf ${WRKSRC}/yasql.conf.sample do-install: - (cd ${WRKSRC} && ${INSTALL_SCRIPT} yasql \ - ${STAGEDIR}${PREFIX}/bin) - (cd ${WRKSRC} && ${INSTALL_MAN} yasql.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1) - (cd ${WRKSRC} && ${INSTALL_MAN} yasql.conf.sample \ - ${STAGEDIR}${PREFIX}/etc) + ${INSTALL_SCRIPT} ${WRKSRC}/yasql ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/yasql.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_DATA} ${WRKSRC}/yasql.conf.sample ${STAGEDIR}${PREFIX}/etc + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} README yasql.html \ - ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/yasql.html \ + ${STAGEDIR}${DOCSDIR} .include Modified: head/databases/yasql/files/patch-yasql.in ============================================================================== --- head/databases/yasql/files/patch-yasql.in Sun Sep 11 09:00:17 2016 (r421809) +++ head/databases/yasql/files/patch-yasql.in Sun Sep 11 09:01:48 2016 (r421810) @@ -1,6 +1,6 @@ ---- yasql.in.orig 2005-05-09 18:01:47.000000000 +0200 -+++ yasql.in 2010-11-18 15:10:32.000000000 +0100 -@@ -174,7 +174,7 @@ +--- yasql.in.orig 2005-05-09 16:01:47 UTC ++++ yasql.in +@@ -174,7 +174,7 @@ sub sighandle { wrn("Connection lost (timeout: $conf{connection_timeout})"); quit(1); } else { @@ -9,7 +9,7 @@ ."$conf{connection_timeout})"); } } -@@ -769,7 +769,7 @@ +@@ -769,7 +769,7 @@ sub db_connect { } } unless($found) { @@ -18,7 +18,7 @@ .join(", ", @drivers) . ".\n"); } #print "drivers: [" . join("|", @drivers) . "]\n"; -@@ -921,7 +921,7 @@ +@@ -921,7 +921,7 @@ sub db_connect { $connect_string = '' if $connect_string eq 'external'; $dbhandle = db_connect($die_on_error,$ora_session_mode,undef,undef,$connect_string); } elsif($die_on_error) { @@ -27,7 +27,7 @@ } else { wrn("Could not connect to database: $dberrstr [$dberr]"); return(0); -@@ -1010,7 +1010,7 @@ +@@ -1010,7 +1010,7 @@ sub get_up { sub check_oracle_home { # This checks for the ORACLE_HOME environment variable and dies if it's # not set @@ -36,7 +36,7 @@ unless $ENV{ORACLE_HOME}; return(1); } -@@ -1416,7 +1416,7 @@ +@@ -1416,7 +1416,7 @@ sub get_csv_file { } sub close_csv { @@ -45,7 +45,7 @@ $csv_filehandle_open = 0; $csv_max_lines = 0; } -@@ -2404,10 +2404,10 @@ +@@ -2404,10 +2404,10 @@ sub describe { if($op && $op eq '>' || $op eq '>>') { ($op_text) = glob($op_text); debugmsg(3, "Opening file '$op_text' for output redirection using [$op]"); @@ -58,7 +58,7 @@ } else { open(FOUT, ">&STDOUT"); } -@@ -2873,7 +2873,7 @@ +@@ -2873,7 +2873,7 @@ sub wildcard_expand { my $newsql = $sql; my $fromstuff; my $wheregrouporder = $sql; @@ -67,7 +67,7 @@ if ($wheregrouporder eq $sql) { $wheregrouporder = ""; } -@@ -2887,7 +2887,7 @@ +@@ -2887,7 +2887,7 @@ sub wildcard_expand { my %column_prefix; foreach my $table (@tlist) { $table =~ s/^ *//; @@ -76,7 +76,7 @@ $column_prefix{$table} = $2 ? $2 : $table; $tablelist .= ($tablelist ? "," : "") . $table; } -@@ -3644,7 +3644,7 @@ +@@ -3644,7 +3644,7 @@ Return limit: Examples: The following will run the query, then run it again with different settings: user\@ORCL> select * from table;10 @@ -85,7 +85,7 @@ Redirection: You can add a shell like redirection operator after a query to pipe the output -@@ -3657,7 +3657,7 @@ +@@ -3657,7 +3657,7 @@ Redirection: Examples: user\@ORCL> select * from table; > table.dump @@ -94,7 +94,7 @@ Input: You can use '<' to grab data from a CSV file. The file must be formatted -@@ -4179,7 +4179,7 @@ +@@ -4179,7 +4179,7 @@ Foundation, Inc., 59 Temple Place - Suit =item NULL stops printing after table goes into overflow or something From owner-svn-ports-head@freebsd.org Sun Sep 11 10:26:26 2016 Return-Path: Delivered-To: svn-ports-head@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 3982ABD5794; Sun, 11 Sep 2016 10:26:26 +0000 (UTC) (envelope-from mandree@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 1294722F; Sun, 11 Sep 2016 10:26:25 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BAQPYe026697; Sun, 11 Sep 2016 10:26:25 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BAQPYK026695; Sun, 11 Sep 2016 10:26:25 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201609111026.u8BAQPYK026695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sun, 11 Sep 2016 10:26:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421812 - in head/sysutils/e2fsprogs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 10:26:26 -0000 Author: mandree Date: Sun Sep 11 10:26:24 2016 New Revision: 421812 URL: https://svnweb.freebsd.org/changeset/ports/421812 Log: Fix most of the FreeBSD 11+ issues, except e2undo. Pull in upstream Git patch for lib/ext2fs/unix_io.c to fix unaligned multi-block writes, and disable the two known failing e2undo patches ONLY for the exact 1.43.3_2, even if "ALLTESTS" is enabled. (Modify the post-patch:: target to avoid that.) The port is still marked BROKEN on FreeBSD 11+ to protect the innocent, but a TRYBROKEN=1 build that will not use e2undo should be fine now. Obtained from: Ted Y. Ts'o (upstream maintainer) Added: head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c (contents, props changed) Modified: head/sysutils/e2fsprogs/Makefile Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Sun Sep 11 09:03:26 2016 (r421811) +++ head/sysutils/e2fsprogs/Makefile Sun Sep 11 10:26:24 2016 (r421812) @@ -3,7 +3,7 @@ PORTNAME= e2fsprogs PORTVERSION= 1.43.3 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -91,7 +91,7 @@ post-patch:: @${REINPLACE_CMD} -e 's///' ${WRKSRC}/*/*.c .if empty(PORT_OPTIONS:MALLTESTS) .for i in \ - d_fallocate_blkmap \ + d_fallocate_blkmap \ f_baddir \ f_bbfile \ f_convert_bmap \ @@ -136,10 +136,19 @@ post-patch:: .endfor .endif .endif +# XXX remove these on the next revision +.if ${MASTERDIR} == ${.CURDIR} && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 && ${PORTVERSION} == 1.43.3 && ${PORTREVISION} == 2 +.for i in u_mke2fs_opt_oddsize u_mke2fs_opt_offset + @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} +.endfor +.endif +# Master port stuff that is not to be seen by the slave ports. .if ${MASTERDIR} == ${.CURDIR} +# NOTE: The previous .if block goes all the way to the end of the file. + .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 -BROKEN=self-test failures on FreeBSD 11+ hint to data corruption issues. +BROKEN=Not ready for production on FreeBSD 11+, some e2undo cases are still failing. .endif pre-build: @@ -211,6 +220,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif +# # the next line closes .if ${MASTERDIR} == ${.CURDIR} .endif Added: head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Sun Sep 11 10:26:24 2016 (r421812) @@ -0,0 +1,23 @@ +commit d6cad379eb6c86ca58bf5b83a586577de412a2e6 +Author: Theodore Ts'o +Date: Sun Sep 11 00:25:48 2016 -0400 + + libext2fs: fix unaligned, multiblock writes in the unix_io handler + + The read-modify-write code for the unaligned fallback code wasn't + working for multi-block writes. This was unmasked by FreeBSD 11-rc2, + since its malloc() is returning unaligned memory regions for large + memory regions. + + Signed-off-by: Theodore Ts'o + +--- lib/ext2fs/unix_io.c.orig 2016-09-02 04:17:32 UTC ++++ lib/ext2fs/unix_io.c +@@ -300,6 +300,7 @@ static errcode_t raw_write_blk(io_channe + goto short_write; + size -= actual; + buf += actual; ++ location += actual; + } + return 0; + From owner-svn-ports-head@freebsd.org Sun Sep 11 10:27:09 2016 Return-Path: Delivered-To: svn-ports-head@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 433B1BD57E2; Sun, 11 Sep 2016 10:27:09 +0000 (UTC) (envelope-from bapt@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 1BD65337; Sun, 11 Sep 2016 10:27:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BAR8aQ026849; Sun, 11 Sep 2016 10:27:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BAR8VA026846; Sun, 11 Sep 2016 10:27:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609111027.u8BAR8VA026846@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 11 Sep 2016 10:27:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421813 - head/mail/neomutt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 10:27:09 -0000 Author: bapt Date: Sun Sep 11 10:27:07 2016 New Revision: 421813 URL: https://svnweb.freebsd.org/changeset/ports/421813 Log: Update to 20160910 Remove the requirement for gmake now the makefile has been fixed Changes: https://www.neomutt.org/2016/09/10/release Modified: head/mail/neomutt/Makefile head/mail/neomutt/distinfo head/mail/neomutt/pkg-plist Modified: head/mail/neomutt/Makefile ============================================================================== --- head/mail/neomutt/Makefile Sun Sep 11 10:26:24 2016 (r421812) +++ head/mail/neomutt/Makefile Sun Sep 11 10:27:07 2016 (r421813) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= neomutt -PORTVERSION= 20160827 +PORTVERSION= 20160910 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= mail @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/GPL USE_GITHUB= yes -USES= autoreconf gmake localbase ncurses shebangfix ssl +USES= autoreconf localbase ncurses shebangfix ssl GNU_CONFIGURE= yes LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet \ Modified: head/mail/neomutt/distinfo ============================================================================== --- head/mail/neomutt/distinfo Sun Sep 11 10:26:24 2016 (r421812) +++ head/mail/neomutt/distinfo Sun Sep 11 10:27:07 2016 (r421813) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472303580 -SHA256 (neomutt-neomutt-neomutt-20160827_GH0.tar.gz) = 1afbf4d588fc35b000502016a975110efbc62f4afe4c6fa065e5369310304173 -SIZE (neomutt-neomutt-neomutt-20160827_GH0.tar.gz) = 2629013 +TIMESTAMP = 1473589342 +SHA256 (neomutt-neomutt-neomutt-20160910_GH0.tar.gz) = cc1159c7210a706db765b7198ac53405d25e7577ff9e5cd2f1d062964213798b +SIZE (neomutt-neomutt-neomutt-20160910_GH0.tar.gz) = 2638853 Modified: head/mail/neomutt/pkg-plist ============================================================================== --- head/mail/neomutt/pkg-plist Sun Sep 11 10:26:24 2016 (r421812) +++ head/mail/neomutt/pkg-plist Sun Sep 11 10:27:07 2016 (r421813) @@ -32,15 +32,14 @@ man/man5/muttrc.5.gz %%PORTDOCS%%%%DOCSDIR%%/gettingstarted.html %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%%%DOCSDIR%%/intro.html -%%PORTDOCS%%%%DOCSDIR%%/keybase/KeybaseAndMutt.md %%PORTDOCS%%%%DOCSDIR%%/keybase/LICENSE %%PORTDOCS%%%%DOCSDIR%%/keybase/README.md +%%PORTDOCS%%%%DOCSDIR%%/keybase/attachmentView.png %%PORTDOCS%%%%DOCSDIR%%/keybase/decrypt.sh -%%PORTDOCS%%%%DOCSDIR%%/keybase/images/attachmentView.png -%%PORTDOCS%%%%DOCSDIR%%/keybase/images/pagerMode.png %%PORTDOCS%%%%DOCSDIR%%/keybase/install.sh %%PORTDOCS%%%%DOCSDIR%%/keybase/keybase.py %%PORTDOCS%%%%DOCSDIR%%/keybase/muttrc +%%PORTDOCS%%%%DOCSDIR%%/keybase/pagerMode.png %%PORTDOCS%%%%DOCSDIR%%/keybase/pgpdecrypt.sh %%PORTDOCS%%%%DOCSDIR%%/keybase/pgpverify.sh %%PORTDOCS%%%%DOCSDIR%%/keybase/verify.sh @@ -80,9 +79,12 @@ man/man5/muttrc.5.gz %%PORTDOCS%%%%DOCSDIR%%/samples/pgp2.rc %%PORTDOCS%%%%DOCSDIR%%/samples/pgp5.rc %%PORTDOCS%%%%DOCSDIR%%/samples/pgp6.rc +%%PORTDOCS%%%%DOCSDIR%%/samples/sample.colors.attach_headers %%PORTDOCS%%%%DOCSDIR%%/samples/sample.mailcap %%PORTDOCS%%%%DOCSDIR%%/samples/sample.muttrc +%%PORTDOCS%%%%DOCSDIR%%/samples/sample.muttrc-sidebar %%PORTDOCS%%%%DOCSDIR%%/samples/sample.muttrc-tlr +%%PORTDOCS%%%%DOCSDIR%%/samples/sample.vimrc-sidebar %%PORTDOCS%%%%DOCSDIR%%/samples/smime.rc %%PORTDOCS%%%%DOCSDIR%%/samples/smime_keys_test.pl %%PORTDOCS%%%%DOCSDIR%%/security.html From owner-svn-ports-head@freebsd.org Sun Sep 11 11:08:18 2016 Return-Path: Delivered-To: svn-ports-head@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 2407EBD61A7; Sun, 11 Sep 2016 11:08:18 +0000 (UTC) (envelope-from woodsb02@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 F286D659; Sun, 11 Sep 2016 11:08:17 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BB8HjL042045; Sun, 11 Sep 2016 11:08:17 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BB8GXl042042; Sun, 11 Sep 2016 11:08:16 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201609111108.u8BB8GXl042042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sun, 11 Sep 2016 11:08:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421814 - head/multimedia/emby-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 11:08:18 -0000 Author: woodsb02 Date: Sun Sep 11 11:08:16 2016 New Revision: 421814 URL: https://svnweb.freebsd.org/changeset/ports/421814 Log: multimedia/emby-server: Update to 3.0.7100 Changes since 3.0.6400: https://github.com/MediaBrowser/Emby/releases/tag/3.0.7100 https://github.com/MediaBrowser/Emby/releases/tag/3.0.7000 Approved by: adamw (mentor, implicit) Modified: head/multimedia/emby-server/Makefile head/multimedia/emby-server/distinfo head/multimedia/emby-server/pkg-plist Modified: head/multimedia/emby-server/Makefile ============================================================================== --- head/multimedia/emby-server/Makefile Sun Sep 11 10:27:07 2016 (r421813) +++ head/multimedia/emby-server/Makefile Sun Sep 11 11:08:16 2016 (r421814) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= emby-server -PORTVERSION= 3.0.6400 +PORTVERSION= 3.0.7100 CATEGORIES= multimedia MAINTAINER= woodsb02@FreeBSD.org Modified: head/multimedia/emby-server/distinfo ============================================================================== --- head/multimedia/emby-server/distinfo Sun Sep 11 10:27:07 2016 (r421813) +++ head/multimedia/emby-server/distinfo Sun Sep 11 11:08:16 2016 (r421814) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472557257 -SHA256 (MediaBrowser-Emby-3.0.6400_GH0.tar.gz) = 03cfa4b2d8627fb95464dcc077c333dadea481f2c42a87e5147e684723c6fc23 -SIZE (MediaBrowser-Emby-3.0.6400_GH0.tar.gz) = 55247382 +TIMESTAMP = 1473504866 +SHA256 (MediaBrowser-Emby-3.0.7100_GH0.tar.gz) = ded64d3ca5cc6ee322724aedfb43f67999dc114aaa21bae8974b9c8b2e99b83b +SIZE (MediaBrowser-Emby-3.0.7100_GH0.tar.gz) = 55116632 Modified: head/multimedia/emby-server/pkg-plist ============================================================================== --- head/multimedia/emby-server/pkg-plist Sun Sep 11 10:27:07 2016 (r421813) +++ head/multimedia/emby-server/pkg-plist Sun Sep 11 11:08:16 2016 (r421814) @@ -166,6 +166,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-apiclient/fileupload.js lib/emby-server/dashboard-ui/bower_components/emby-apiclient/localassetmanager.js lib/emby-server/dashboard-ui/bower_components/emby-apiclient/serverdiscovery-chrome.js +lib/emby-server/dashboard-ui/bower_components/emby-apiclient/serverdiscovery-winjs.js lib/emby-server/dashboard-ui/bower_components/emby-apiclient/serverdiscovery.js lib/emby-server/dashboard-ui/bower_components/emby-apiclient/sync/contentuploader.js lib/emby-server/dashboard-ui/bower_components/emby-apiclient/sync/mediasync.js @@ -200,6 +201,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/datetime.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialog/dialog.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialog/dialog.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialog/dialog.template.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/dom.js @@ -290,10 +292,16 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/fonts/roboto/style.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/fonts/roboto/ty9dfvLAziwdqQ2dHoyjphTbgVql8nDJpwnrE27mub0.woff2 lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/formdialog.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/fullscreen/fullscreen-doubleclick.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/fullscreen/fullscreenmanager.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/globalize.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.template.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/guide/tvguide.template.html +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/imageeditor/imageeditor.js +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/imageeditor/imageeditor.template.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/images/basicimagefetcher.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/images/imagehelper.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/images/persistentimagefetcher.js @@ -337,7 +345,7 @@ lib/emby-server/dashboard-ui/bower_compo lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/polyfills/raf.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/nativeprompt.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.js -lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/style.css +lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/prompt/prompt.template.html lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/qualityoptions.js lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.css lib/emby-server/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js @@ -962,8 +970,6 @@ lib/emby-server/dashboard-ui/components/ lib/emby-server/dashboard-ui/components/humanedate.js lib/emby-server/dashboard-ui/components/imagedownloader/imagedownloader.js lib/emby-server/dashboard-ui/components/imagedownloader/imagedownloader.template.html -lib/emby-server/dashboard-ui/components/imageeditor/imageeditor.js -lib/emby-server/dashboard-ui/components/imageeditor/imageeditor.template.html lib/emby-server/dashboard-ui/components/imageuploader/imageuploader.js lib/emby-server/dashboard-ui/components/imageuploader/imageuploader.template.html lib/emby-server/dashboard-ui/components/libraryoptionseditor/libraryoptionseditor.js @@ -1123,7 +1129,6 @@ lib/emby-server/dashboard-ui/librarysett lib/emby-server/dashboard-ui/livetv.html lib/emby-server/dashboard-ui/livetvguideprovider.html lib/emby-server/dashboard-ui/livetvitems.html -lib/emby-server/dashboard-ui/livetvrecordinglist.html lib/emby-server/dashboard-ui/livetvseriestimer.html lib/emby-server/dashboard-ui/livetvsettings.html lib/emby-server/dashboard-ui/livetvstatus.html @@ -1205,8 +1210,8 @@ lib/emby-server/dashboard-ui/scripts/liv lib/emby-server/dashboard-ui/scripts/livetvguide.js lib/emby-server/dashboard-ui/scripts/livetvguideprovider.js lib/emby-server/dashboard-ui/scripts/livetvitems.js -lib/emby-server/dashboard-ui/scripts/livetvrecordinglist.js lib/emby-server/dashboard-ui/scripts/livetvrecordings.js +lib/emby-server/dashboard-ui/scripts/livetvschedule.js lib/emby-server/dashboard-ui/scripts/livetvseriestimer.js lib/emby-server/dashboard-ui/scripts/livetvseriestimers.js lib/emby-server/dashboard-ui/scripts/livetvsettings.js From owner-svn-ports-head@freebsd.org Sun Sep 11 11:43:38 2016 Return-Path: Delivered-To: svn-ports-head@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 D1D2DBD6B1E; Sun, 11 Sep 2016 11:43:38 +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 7841A64C; Sun, 11 Sep 2016 11:43:38 +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 u8BBhbLM056966; Sun, 11 Sep 2016 11:43:37 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BBhaA7056957; Sun, 11 Sep 2016 11:43:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609111143.u8BBhaA7056957@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 11 Sep 2016 11:43:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421815 - in head: . textproc/apache-solr textproc/apache-solr/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 11:43:38 -0000 Author: pi Date: Sun Sep 11 11:43:36 2016 New Revision: 421815 URL: https://svnweb.freebsd.org/changeset/ports/421815 Log: textproc/apache-solr: 5.5.2 -> 6.2.0 - submitter becomes maintainer PR: 201455, 212313 Changes: https://lucene.apache.org/solr/6_2_0/changes/Changes.html Submitted by: Matthias Fechner Added: head/textproc/apache-solr/files/patch-bind-localhost.patch (contents, props changed) head/textproc/apache-solr/files/pkg-install.in (contents, props changed) head/textproc/apache-solr/files/pkg-message.in (contents, props changed) Deleted: head/textproc/apache-solr/pkg-deinstall Modified: head/GIDs head/UIDs head/textproc/apache-solr/Makefile head/textproc/apache-solr/distinfo head/textproc/apache-solr/files/solr.in head/textproc/apache-solr/pkg-plist Modified: head/GIDs ============================================================================== --- head/GIDs Sun Sep 11 11:08:16 2016 (r421814) +++ head/GIDs Sun Sep 11 11:43:36 2016 (r421815) @@ -102,7 +102,7 @@ barman:*:157: pootle:*:158: nocat:*:159: _ypldap:*:160: -# free: 161 +solr:*:161: # free: 162 # free: 163 # free: 164 Modified: head/UIDs ============================================================================== --- head/UIDs Sun Sep 11 11:08:16 2016 (r421814) +++ head/UIDs Sun Sep 11 11:43:36 2016 (r421815) @@ -107,7 +107,7 @@ barman:*:157:157::0:0:Barman user:/var/b pootle:*:158:158::0:0:Pootle User:/var/db/pootle:/usr/sbin/nologin nocat:*:159:159::0:0:NoCat Daemon:/libexec/nocat:/sbin/nologin _ypldap:*:160:160::0:0:YP Ldap unprivileged user:/var/empty:/usr/sbin/nologin -# free: 161 +solr:*:161:161::0:0:Apache Solr System:/var/db/solr:/usr/sbin/nologin # free: 162 # free: 163 # free: 164 Modified: head/textproc/apache-solr/Makefile ============================================================================== --- head/textproc/apache-solr/Makefile Sun Sep 11 11:08:16 2016 (r421814) +++ head/textproc/apache-solr/Makefile Sun Sep 11 11:43:36 2016 (r421815) @@ -2,36 +2,52 @@ # $FreeBSD$ PORTNAME= apache-solr -PORTVERSION= 5.5.2 +PORTVERSION= 6.2.0 CATEGORIES= textproc java MASTER_SITES= APACHE/lucene/solr/${PORTVERSION} DISTNAME= solr-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= idefix@fechner.net COMMENT= High performance search server built using Lucene Java LICENSE= APACHE20 -CONFLICT= apache-solr3-* apache-solr-4* +CONFLICTS_INSTALL= apache-solr3-* apache-solr-4* apache-solr-5* + +RUN_DEPENDS= bash:shells/bash \ + lsof:sysutils/lsof USES= cpe tar:tgz USE_JAVA= yes -JAVA_VERSION= 1.7+ +JAVA_VERSION= 1.8+ +JAVA_RUN= yes NO_BUILD= yes NO_ARCH= yes PLIST_SUB+= PORTVERSION="${PORTVERSION}" -PORTEXAMPLES= * +SUB_FILES= pkg-message pkg-install USE_RC_SUBR= solr +USERS= solr +GROUPS= ${USERS} CPE_PRODUCT= solr CPE_VENDOR= apache +post-patch: + ${REINPLACE_CMD} -e 's|solr.log=.*|solr.log=/var/log/solr|g' ${WRKSRC}/server/resources/log4j.properties + do-install: - cd ${WRKSRC}/dist && ${COPYTREE_SHARE} . ${STAGEDIR}${JAVAJARDIR} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/server && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} - ${INSTALL_SCRIPT} ${WRKSRC}/bin/solr ${STAGEDIR}${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/bin/post ${STAGEDIR}${PREFIX}/bin + cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${CPE_PRODUCT} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/solr ${STAGEDIR}${PREFIX}/${CPE_PRODUCT}/bin + ${INSTALL_DATA} ${WRKSRC}/bin/solr.in.sh ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist + ${ECHO} SOLR_HOME=\"/var/db/solr\" >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist + ${ECHO} LOG4J_PROPS=\"/var/db/solr/log4j.properties\" >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist + ${ECHO} SOLR_LOGS_DIR=\"/var/log/solr\" >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist + ${ECHO} SOLR_PORT=\"8983\" >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist + ${ECHO} SOLR_PID_DIR=\"/var/db/solr\" >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist + + ${MKDIR} ${STAGEDIR}/var/db/solr + ${MKDIR} ${STAGEDIR}/var/log/solr + ${INSTALL_DATA} ${WRKSRC}/server/solr/solr.xml ${STAGEDIR}/var/db/solr/solr.xml-dist + ${INSTALL_DATA} ${WRKSRC}/server/resources/log4j.properties ${STAGEDIR}/var/db/solr/log4j.properties-dist .include Modified: head/textproc/apache-solr/distinfo ============================================================================== --- head/textproc/apache-solr/distinfo Sun Sep 11 11:08:16 2016 (r421814) +++ head/textproc/apache-solr/distinfo Sun Sep 11 11:43:36 2016 (r421815) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469167224 -SHA256 (solr-5.5.2.tgz) = e62bab565675e10d27f40d5bb090b4181b2f0c21870adf98d1ea873ead7758e1 -SIZE (solr-5.5.2.tgz) = 136813192 +TIMESTAMP = 1472734642 +SHA256 (solr-6.2.0.tgz) = ba7c93e1c8d28717d6d84788ebdc2e8e9211a32f48b5a30b2a904762a0b7cd39 +SIZE (solr-6.2.0.tgz) = 149049622 Added: head/textproc/apache-solr/files/patch-bind-localhost.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/apache-solr/files/patch-bind-localhost.patch Sun Sep 11 11:43:36 2016 (r421815) @@ -0,0 +1,18 @@ +--- server/etc/jetty-http.xml.bak 2016-09-01 16:16:13.027176858 +0200 ++++ server/etc/jetty-http.xml 2016-09-01 16:16:40.498173610 +0200 +@@ -33,7 +33,7 @@ + + + +- ++ + + + +@@ -44,4 +44,4 @@ + + + +- +\ No newline at end of file ++ Added: head/textproc/apache-solr/files/pkg-install.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/apache-solr/files/pkg-install.in Sun Sep 11 11:43:36 2016 (r421815) @@ -0,0 +1,22 @@ +#! /bin/sh +# +PATH=/bin:/usr/bin:/usr/sbin + +set -e +case "$2" in + +POST-INSTALL) + echo "---> Starting post-install script" + LC_ALL=C + export LC_ALL + + echo "Fix permissions" + /usr/sbin/chown -R solr /var/db/solr + /usr/bin/chgrp -R solr /var/db/solr + /usr/sbin/chown -R solr /var/log/solr + /usr/bin/chgrp -R solr /var/log/solr + echo "done." + echo "" + + ;; +esac Added: head/textproc/apache-solr/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/apache-solr/files/pkg-message.in Sun Sep 11 11:43:36 2016 (r421815) @@ -0,0 +1,31 @@ +======================================================================= + +Make sure to edit the following files to adapt to your setup: + +%%LOCALBASE%%/etc/solr.in.sh +/var/db/solr/solr.xml +/var/db/solr/log4j.properties + +All files are configured to have your solr instances running in +/var/db/solr/ + +For more information how to configure solr check the manual: +http://lucene.apache.org/solr/resources.html#documentation + +The port is configured to listen only on localhost, port 8983. + +To have a working initial config, use: + +cp -R %%LOCALBASE%%/solr/example/example-DIH/solr/solr /var/db/solr/ +chown -R www /var/db/solr/solr + +To rotate solr log files include /var/log/solr/ to your log rotation +configuration. + +To enable the port execute: +sysrc solr_enable="YES" + +And start it with: +service solr start + +======================================================================= Modified: head/textproc/apache-solr/files/solr.in ============================================================================== --- head/textproc/apache-solr/files/solr.in Sun Sep 11 11:08:16 2016 (r421814) +++ head/textproc/apache-solr/files/solr.in Sun Sep 11 11:43:36 2016 (r421815) @@ -39,12 +39,30 @@ load_rc_config $name : ${solr_enable:=NO} : ${solr_instance:=/var/db/solr} -required_files=${solr_instance}/solr.xml -pidfile=/var/run/solr.pid -command=/usr/sbin/daemon -procname=`env JAVAVM_DRYRUN=true JAVA_VERSION=1.7+ %%LOCALBASE%%/bin/java | grep JAVAVM_PROG | cut -f 2 -d =` -start_precmd="cd %%EXAMPLESDIR%%" +solr_start () +{ + su -m solr -c "${command} start" +} -command_args="-f -p ${pidfile} ${procname} ${solr_flags} -Dsolr.solr.home=${solr_instance} -Dsolr.log=/var/log -jar %%EXAMPLESDIR%%/start.jar" +solr_stop () +{ + su -m solr -c "${command} stop" +} + +solr_status () +{ + su -m solr -c "${command} status" +} + +# add %%PREFIX%%/bin to path +export PATH=$PATH:%%PREFIX%%/bin +# let the start script read some custom settings +export SOLR_INCLUDE=/usr/local/etc/solr.in.sh + +required_files="${solr_instance}/solr.xml /usr/local/etc/solr.in.sh ${solr_instance}/log4j.properties" +command=%%PREFIX%%/solr/bin/solr +start_cmd=solr_start +stop_cmd=solr_stop +status_cmd=solr_status run_rc_command "$1" Modified: head/textproc/apache-solr/pkg-plist ============================================================================== --- head/textproc/apache-solr/pkg-plist Sun Sep 11 11:08:16 2016 (r421814) +++ head/textproc/apache-solr/pkg-plist Sun Sep 11 11:43:36 2016 (r421815) @@ -1,645 +1,6186 @@ -bin/post -bin/solr -%%JAVAJARDIR%%/solr-analysis-extras-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-analytics-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-cell-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-clustering-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-core-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-dataimporthandler-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-dataimporthandler-extras-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-langid-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-map-reduce-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-morphlines-cell-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-morphlines-core-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-solrj-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-test-framework-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-uima-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solr-velocity-%%PORTVERSION%%.jar -%%JAVAJARDIR%%/solrj-lib/commons-io-2.4.jar -%%JAVAJARDIR%%/solrj-lib/httpclient-4.4.1.jar -%%JAVAJARDIR%%/solrj-lib/httpcore-4.4.1.jar -%%JAVAJARDIR%%/solrj-lib/httpmime-4.4.1.jar -%%JAVAJARDIR%%/solrj-lib/jcl-over-slf4j-1.7.7.jar -%%JAVAJARDIR%%/solrj-lib/noggit-0.6.jar -%%JAVAJARDIR%%/solrj-lib/slf4j-api-1.7.7.jar -%%JAVAJARDIR%%/solrj-lib/stax2-api-3.1.4.jar -%%JAVAJARDIR%%/solrj-lib/woodstox-core-asl-4.4.1.jar -%%JAVAJARDIR%%/solrj-lib/zookeeper-3.4.6.jar -%%JAVAJARDIR%%/test-framework/README.txt -%%JAVAJARDIR%%/test-framework/lib/ant-1.8.2.jar -%%JAVAJARDIR%%/test-framework/lib/junit-4.10.jar -%%JAVAJARDIR%%/test-framework/lib/junit4-ant-2.3.2.jar -%%JAVAJARDIR%%/test-framework/lib/randomizedtesting-runner-2.3.2.jar -%%JAVAJARDIR%%/test-framework/lucene-libs/lucene-test-framework-%%PORTVERSION%%.jar -%%WWWDIR%%/README.txt -%%WWWDIR%%/contexts/solr-jetty-context.xml -%%WWWDIR%%/etc/jetty-http.xml -%%WWWDIR%%/etc/jetty-https-ssl.xml -%%WWWDIR%%/etc/jetty-https.xml -%%WWWDIR%%/etc/jetty-ssl.xml -%%WWWDIR%%/etc/jetty.xml -%%WWWDIR%%/etc/webdefault.xml -%%WWWDIR%%/lib/ext/jcl-over-slf4j-1.7.7.jar -%%WWWDIR%%/lib/ext/jul-to-slf4j-1.7.7.jar -%%WWWDIR%%/lib/ext/log4j-1.2.17.jar -%%WWWDIR%%/lib/ext/slf4j-api-1.7.7.jar -%%WWWDIR%%/lib/ext/slf4j-log4j12-1.7.7.jar -%%WWWDIR%%/lib/javax.servlet-api-3.1.0.jar -%%WWWDIR%%/lib/jetty-continuation-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-deploy-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-http-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-io-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-jmx-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-rewrite-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-security-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-server-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-servlet-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-servlets-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-util-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-webapp-9.2.13.v20150730.jar -%%WWWDIR%%/lib/jetty-xml-9.2.13.v20150730.jar -%%WWWDIR%%/modules/http.mod -%%WWWDIR%%/modules/https.mod -%%WWWDIR%%/modules/server.mod -%%WWWDIR%%/modules/ssl.mod -%%WWWDIR%%/resources/jetty-logging.properties -%%WWWDIR%%/resources/log4j.properties -%%WWWDIR%%/scripts/cloud-scripts/log4j.properties -%%WWWDIR%%/scripts/cloud-scripts/zkcli.bat -%%WWWDIR%%/scripts/cloud-scripts/zkcli.sh -%%WWWDIR%%/scripts/map-reduce/set-map-reduce-classpath.sh -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/antlr4-runtime-4.5.1-1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/asm-5.0.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/asm-commons-5.0.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-cli-1.2.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-codec-1.10.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-collections-3.2.2.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-configuration-1.6.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-exec-1.3.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-fileupload-1.3.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-io-2.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/commons-lang-2.6.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/concurrentlinkedhashmap-lru-1.2.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/dom4j-1.6.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/guava-14.0.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/hadoop-annotations-2.6.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/hadoop-auth-2.6.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/hadoop-common-2.6.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/hadoop-hdfs-2.6.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/hppc-0.7.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/htrace-core-3.0.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/httpclient-4.4.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/httpcore-4.4.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/httpmime-4.4.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.5.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.5.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/joda-time-2.2.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-analyzers-common-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-analyzers-kuromoji-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-analyzers-phonetic-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-backward-codecs-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-codecs-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-core-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-expressions-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-grouping-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-highlighter-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-join-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-memory-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-misc-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-queries-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-queryparser-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-sandbox-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-spatial-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/lucene-suggest-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/noggit-0.6.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/org.restlet-2.3.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/org.restlet.ext.servlet-2.3.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/protobuf-java-2.5.0.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/solr-core-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/solr-solrj-%%PORTVERSION%%.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/spatial4j-0.5.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/stax2-api-3.1.4.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/t-digest-3.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/woodstox-core-asl-4.4.1.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/lib/zookeeper-3.4.6.jar -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/web.xml -%%WWWDIR%%/solr-webapp/webapp/WEB-INF/weblogic.xml -%%WWWDIR%%/solr-webapp/webapp/admin.html -%%WWWDIR%%/solr-webapp/webapp/css/angular/analysis.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/chosen.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/cloud.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/collections.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/common.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/cores.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/dashboard.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/dataimport.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/documents.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/files.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/index.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/logging.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/menu.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/plugins.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/query.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/replication.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/schema.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/segments.css -%%WWWDIR%%/solr-webapp/webapp/css/angular/threads.css -%%WWWDIR%%/solr-webapp/webapp/css/chosen.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/analysis.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/cloud.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/common.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/cores.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/dashboard.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/dataimport.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/documents.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/files.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/index.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/java-properties.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/logging.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/menu.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/plugins.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/query.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/replication.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/schema-browser.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/segments.css -%%WWWDIR%%/solr-webapp/webapp/css/styles/threads.css -%%WWWDIR%%/solr-webapp/webapp/favicon.ico -%%WWWDIR%%/solr-webapp/webapp/img/ZeroClipboard.swf -%%WWWDIR%%/solr-webapp/webapp/img/chosen-sprite-2x.png -%%WWWDIR%%/solr-webapp/webapp/img/chosen-sprite.png -%%WWWDIR%%/solr-webapp/webapp/img/div.gif -%%WWWDIR%%/solr-webapp/webapp/img/favicon.ico -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/7z.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/README -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/ai.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/aiff.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/asc.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/audio.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/bin.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/bz2.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/c.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/cfc.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/cfm.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/chm.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/class.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/conf.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/cpp.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/cs.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/css.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/csv.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/deb.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/divx.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/doc.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/dot.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/eml.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/enc.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/file.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/gif.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/gz.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/hlp.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/htm.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/html.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/image.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/iso.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/jar.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/java.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/jpeg.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/jpg.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/js.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/lua.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/m.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/mm.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/mov.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/mp3.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/mpg.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/odc.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/odf.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/odg.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/odi.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/odp.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/ods.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/odt.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/ogg.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/pdf.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/pgp.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/php.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/pl.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/png.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/ppt.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/ps.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/py.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/ram.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/rar.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/rb.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/rm.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/rpm.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/rtf.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/sig.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/sql.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/swf.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/sxc.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/sxd.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/sxi.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/sxw.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/tar.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/tex.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/tgz.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/txt.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/vcf.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/video.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/vsd.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/wav.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/wma.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/wmv.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/xls.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/xml.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/xpi.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/xvid.png -%%WWWDIR%%/solr-webapp/webapp/img/filetypes/zip.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/arrow-000-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/arrow-circle.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/arrow-switch.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/asterisk.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/battery.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/block-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/block.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/book-open-text.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/box.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/bug.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/chart.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/chevron-small-expand.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/chevron-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/clipboard-list.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/clipboard-paste-document-text.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/clipboard-paste.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/clock-select-remain.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/clock-select.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/construction.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/cross-0.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/cross-1.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/cross-button.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/cross.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/dashboard.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/database--plus.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/database.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/databases.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/disk-black.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/document-convert.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/document-import.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/document-list.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/document-text.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/documents-stack.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/download-cloud.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/drive-upload.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/exclamation-button.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/eye.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/folder-export.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/folder-tree.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/folder.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/funnel-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/funnel.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/gear.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/globe-network.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/globe.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/hammer-screwdriver.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/hammer.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/hand.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/highlighter-text.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/home.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/hourglass--exclamation.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/hourglass.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/inbox-document-text.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/information-button.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/information-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/information-white.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/information.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/jar.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/magnifier.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/mail.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/memory.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/minus-button.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/molecule.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/network-cloud.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/network-status-away.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/network-status-busy.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/network-status-offline.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/network-status.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/network.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/node-design.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/node-master.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/node-select.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/node-slave.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/node.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/pencil-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/pencil.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/plus-button.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/processor.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/prohibition.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/property.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/question-small-white.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/question-white.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/question.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/receipt-invoice.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/receipt.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/script-code.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/server-cast.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/server.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/sitemap.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/slash.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/status-away.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/status-busy.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/status-offline.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/status.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/system-monitor--exclamation.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/system-monitor.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/table.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/terminal.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/tick-circle.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/tick-red.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/tick.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/toggle-small-expand.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/toggle-small.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/toolbox.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-accordion.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-address-bar.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-check-box-uncheck.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-check-box.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-radio-button-uncheck.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-radio-button.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/ui-text-field-select.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/users.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/wooden-box.png -%%WWWDIR%%/solr-webapp/webapp/img/ico/zone.png -%%WWWDIR%%/solr-webapp/webapp/img/loader-light.gif -%%WWWDIR%%/solr-webapp/webapp/img/loader.gif -%%WWWDIR%%/solr-webapp/webapp/img/lucene-ico.png -%%WWWDIR%%/solr-webapp/webapp/img/solr-ico.png -%%WWWDIR%%/solr-webapp/webapp/img/solr.svg -%%WWWDIR%%/solr-webapp/webapp/img/tree.png -%%WWWDIR%%/solr-webapp/webapp/index.html -%%WWWDIR%%/solr-webapp/webapp/js/angular/app.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/analysis.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/cloud.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/collection-overview.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/collections.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/core-overview.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/cores.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/dataimport.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/documents.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/files.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/index.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/java-properties.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/logging.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/plugins.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/query.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/replication.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/schema.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/segments.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/controllers/threads.js -%%WWWDIR%%/solr-webapp/webapp/js/angular/services.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/ZeroClipboard.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/chosen.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/console.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/d3.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/highlight.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery-1.7.2.min.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.ajaxfileupload.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.blockUI.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.cookie.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.form.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.jstree.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.sammy.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/jquery.timeago.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/linker.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/naturalSort.js -%%WWWDIR%%/solr-webapp/webapp/js/lib/order.js -%%WWWDIR%%/solr-webapp/webapp/js/main.js -%%WWWDIR%%/solr-webapp/webapp/js/require.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/analysis.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/app.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/cloud.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/cores.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/dashboard.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/dataimport.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/documents.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/files.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/index.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/java-properties.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/logging.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/ping.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/plugins.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/query.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/replication.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/schema-browser.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/segments.js -%%WWWDIR%%/solr-webapp/webapp/js/scripts/threads.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-chosen.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-cookies.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-cookies.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-resource.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-route.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-route.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-sanitize.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular-sanitize.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular.js -%%WWWDIR%%/solr-webapp/webapp/libs/angular.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/chosen.jquery.js -%%WWWDIR%%/solr-webapp/webapp/libs/chosen.jquery.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/d3.js -%%WWWDIR%%/solr-webapp/webapp/libs/highlight.js -%%WWWDIR%%/solr-webapp/webapp/libs/jquery-2.1.3.min.js -%%WWWDIR%%/solr-webapp/webapp/libs/jquery.jstree.js -%%WWWDIR%%/solr-webapp/webapp/libs/ngtimeago.js -%%WWWDIR%%/solr-webapp/webapp/partials/analysis.html -%%WWWDIR%%/solr-webapp/webapp/partials/cloud.html -%%WWWDIR%%/solr-webapp/webapp/partials/collection_overview.html -%%WWWDIR%%/solr-webapp/webapp/partials/collections.html -%%WWWDIR%%/solr-webapp/webapp/partials/core_overview.html -%%WWWDIR%%/solr-webapp/webapp/partials/cores.html -%%WWWDIR%%/solr-webapp/webapp/partials/dataimport.html -%%WWWDIR%%/solr-webapp/webapp/partials/documents.html -%%WWWDIR%%/solr-webapp/webapp/partials/files.html -%%WWWDIR%%/solr-webapp/webapp/partials/index.html -%%WWWDIR%%/solr-webapp/webapp/partials/java-properties.html -%%WWWDIR%%/solr-webapp/webapp/partials/logging-levels.html -%%WWWDIR%%/solr-webapp/webapp/partials/logging.html -%%WWWDIR%%/solr-webapp/webapp/partials/plugins.html -%%WWWDIR%%/solr-webapp/webapp/partials/query.html -%%WWWDIR%%/solr-webapp/webapp/partials/replication.html -%%WWWDIR%%/solr-webapp/webapp/partials/schema.html -%%WWWDIR%%/solr-webapp/webapp/partials/segments.html -%%WWWDIR%%/solr-webapp/webapp/partials/threads.html -%%WWWDIR%%/solr-webapp/webapp/tpl/analysis.html -%%WWWDIR%%/solr-webapp/webapp/tpl/cloud.html -%%WWWDIR%%/solr-webapp/webapp/tpl/cores.html -%%WWWDIR%%/solr-webapp/webapp/tpl/dashboard.html -%%WWWDIR%%/solr-webapp/webapp/tpl/dataimport.html -%%WWWDIR%%/solr-webapp/webapp/tpl/documents.html -%%WWWDIR%%/solr-webapp/webapp/tpl/files.html -%%WWWDIR%%/solr-webapp/webapp/tpl/index.html -%%WWWDIR%%/solr-webapp/webapp/tpl/logging.html -%%WWWDIR%%/solr-webapp/webapp/tpl/plugins.html -%%WWWDIR%%/solr-webapp/webapp/tpl/query.html -%%WWWDIR%%/solr-webapp/webapp/tpl/replication.html -%%WWWDIR%%/solr-webapp/webapp/tpl/schema-browser.html -%%WWWDIR%%/solr-webapp/webapp/tpl/segments.html -%%WWWDIR%%/solr-webapp/webapp/tpl/threads.html -%%WWWDIR%%/solr/README.txt -%%WWWDIR%%/solr/configsets/basic_configs/conf/_rest_managed.json -%%WWWDIR%%/solr/configsets/basic_configs/conf/currency.xml -%%WWWDIR%%/solr/configsets/basic_configs/conf/lang/stopwords_en.txt -%%WWWDIR%%/solr/configsets/basic_configs/conf/managed-schema -%%WWWDIR%%/solr/configsets/basic_configs/conf/protwords.txt -%%WWWDIR%%/solr/configsets/basic_configs/conf/solrconfig.xml -%%WWWDIR%%/solr/configsets/basic_configs/conf/stopwords.txt -%%WWWDIR%%/solr/configsets/basic_configs/conf/synonyms.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/currency.xml -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/elevate.xml -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/contractions_ca.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/contractions_fr.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/contractions_ga.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/contractions_it.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/hyphenations_ga.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stemdict_nl.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stoptags_ja.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_ar.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_bg.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_ca.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_cz.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_da.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_de.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_el.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_en.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_es.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_eu.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_fa.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_fi.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_fr.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_ga.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_gl.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_hi.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_hu.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_hy.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_id.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_it.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_ja.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_lv.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_nl.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_no.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_pt.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_ro.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_ru.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_sv.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_th.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/stopwords_tr.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/lang/userdict_ja.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/managed-schema -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/params.json -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/protwords.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/solrconfig.xml -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/stopwords.txt -%%WWWDIR%%/solr/configsets/data_driven_schema_configs/conf/synonyms.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/_rest_managed.json -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/_schema_analysis_stopwords_english.json -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/_schema_analysis_synonyms_english.json -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/admin-extra.html -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/admin-extra.menu-bottom.html -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/admin-extra.menu-top.html -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/README.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/kmeans-attributes.xml -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/lingo-attributes.xml -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/stc-attributes.xml -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/currency.xml -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/elevate.xml -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/contractions_ca.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/contractions_fr.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/contractions_ga.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/contractions_it.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/hyphenations_ga.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stemdict_nl.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stoptags_ja.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ar.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_bg.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ca.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ckb.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_cz.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_da.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_de.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_el.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_en.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_es.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_eu.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_fa.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_fi.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_fr.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ga.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_gl.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_hi.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_hu.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_hy.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_id.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_it.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ja.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_lv.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_nl.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_no.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_pt.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ro.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ru.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_sv.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_th.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_tr.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/lang/userdict_ja.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/managed-schema -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/mapping-FoldToASCII.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/mapping-ISOLatin1Accent.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/protwords.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/spellings.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/stopwords.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/synonyms.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/update-script.js -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/README.txt -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/VM_global_library.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/browse.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/cluster.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/cluster_results.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/debug.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/did_you_mean.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/error.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/facet_fields.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/facet_pivot.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/facet_queries.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/facet_ranges.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/facets.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/footer.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/head.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/header.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/hit.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/hit_grouped.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/hit_plain.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/join_doc.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/jquery.autocomplete.css -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/jquery.autocomplete.js -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/layout.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/main.css -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/mime_type_lists.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/pagination_bottom.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/pagination_top.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/product_doc.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/query.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/query_form.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/query_group.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/query_spatial.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/results_list.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/richtext_doc.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/suggest.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/velocity/tabs.vm -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/xslt/example.xsl -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/xslt/example_atom.xsl -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/xslt/example_rss.xsl -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/xslt/luke.xsl -%%WWWDIR%%/solr/configsets/sample_techproducts_configs/conf/xslt/updateXml.xsl -%%WWWDIR%%/solr/solr.xml -%%WWWDIR%%/solr/zoo.cfg -%%WWWDIR%%/start.jar +@sample etc/solr.in.sh-dist etc/solr.in.sh +@sample /var/db/solr/solr.xml-dist /var/db/solr/solr.xml +@sample /var/db/solr/log4j.properties-dist /var/db/solr/log4j.properties +solr/CHANGES.txt +solr/LICENSE.txt +solr/LUCENE_CHANGES.txt +solr/NOTICE.txt +solr/README.txt +solr/bin/init.d/solr +solr/bin/install_solr_service.sh +solr/bin/oom_solr.sh +solr/bin/post +solr/bin/solr +solr/bin/solr.cmd +solr/bin/solr.in.cmd +solr/bin/solr.in.sh +solr/contrib/analysis-extras/README.txt +solr/contrib/analysis-extras/lib/icu4j-56.1.jar +solr/contrib/analysis-extras/lib/morfologik-fsa-2.1.0.jar +solr/contrib/analysis-extras/lib/morfologik-polish-2.1.0.jar +solr/contrib/analysis-extras/lib/morfologik-stemming-2.1.0.jar +solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-icu-%%PORTVERSION%%.jar +solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-morfologik-%%PORTVERSION%%.jar +solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-smartcn-%%PORTVERSION%%.jar +solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-stempel-%%PORTVERSION%%.jar +solr/contrib/clustering/README.txt +solr/contrib/clustering/lib/attributes-binder-1.3.1.jar +solr/contrib/clustering/lib/carrot2-guava-18.0.jar +solr/contrib/clustering/lib/carrot2-mini-3.12.0.jar +solr/contrib/clustering/lib/jackson-annotations-2.5.4.jar +solr/contrib/clustering/lib/jackson-databind-2.5.4.jar +solr/contrib/clustering/lib/simple-xml-2.7.1.jar +solr/contrib/dataimporthandler-extras/lib/activation-1.1.1.jar +solr/contrib/dataimporthandler-extras/lib/gimap-1.5.1.jar +solr/contrib/dataimporthandler-extras/lib/javax.mail-1.5.1.jar +solr/contrib/dataimporthandler/README.txt +solr/contrib/extraction/README.txt +solr/contrib/extraction/lib/apache-mime4j-core-0.7.2.jar +solr/contrib/extraction/lib/apache-mime4j-dom-0.7.2.jar +solr/contrib/extraction/lib/aspectjrt-1.8.0.jar +solr/contrib/extraction/lib/bcmail-jdk15-1.45.jar +solr/contrib/extraction/lib/bcprov-jdk15-1.45.jar +solr/contrib/extraction/lib/boilerpipe-1.1.0.jar +solr/contrib/extraction/lib/commons-compress-1.11.jar +solr/contrib/extraction/lib/fontbox-2.0.1.jar +solr/contrib/extraction/lib/icu4j-56.1.jar +solr/contrib/extraction/lib/isoparser-1.1.18.jar +solr/contrib/extraction/lib/jackcess-2.1.3.jar +solr/contrib/extraction/lib/java-libpst-0.8.1.jar +solr/contrib/extraction/lib/jdom-1.0.jar +solr/contrib/extraction/lib/jempbox-1.8.12.jar +solr/contrib/extraction/lib/jmatio-1.0.jar +solr/contrib/extraction/lib/juniversalchardet-1.0.3.jar +solr/contrib/extraction/lib/metadata-extractor-2.8.1.jar +solr/contrib/extraction/lib/pdfbox-2.0.1.jar +solr/contrib/extraction/lib/pdfbox-tools-2.0.1.jar +solr/contrib/extraction/lib/poi-3.15-beta1.jar +solr/contrib/extraction/lib/poi-ooxml-3.15-beta1.jar +solr/contrib/extraction/lib/poi-ooxml-schemas-3.15-beta1.jar +solr/contrib/extraction/lib/poi-scratchpad-3.15-beta1.jar +solr/contrib/extraction/lib/rome-1.0.jar +solr/contrib/extraction/lib/tagsoup-1.2.1.jar +solr/contrib/extraction/lib/tika-core-1.13.jar +solr/contrib/extraction/lib/tika-java7-1.13.jar +solr/contrib/extraction/lib/tika-parsers-1.13.jar +solr/contrib/extraction/lib/tika-xmp-1.13.jar +solr/contrib/extraction/lib/vorbis-java-core-0.8.jar +solr/contrib/extraction/lib/vorbis-java-tika-0.8.jar +solr/contrib/extraction/lib/xercesImpl-2.9.1.jar +solr/contrib/extraction/lib/xmlbeans-2.6.0.jar +solr/contrib/extraction/lib/xmpcore-5.1.2.jar +solr/contrib/extraction/lib/xz-1.5.jar +solr/contrib/langid/README.txt +solr/contrib/langid/lib/jsonic-1.2.7.jar +solr/contrib/langid/lib/langdetect-1.1-20120112.jar +solr/contrib/map-reduce/README.txt +solr/contrib/map-reduce/lib/Saxon-HE-9.6.0-2.jar +solr/contrib/map-reduce/lib/argparse4j-0.4.3.jar +solr/contrib/map-reduce/lib/hadoop-mapreduce-client-core-2.7.2.jar +solr/contrib/map-reduce/lib/kite-morphlines-hadoop-sequencefile-1.1.0.jar +solr/contrib/map-reduce/lib/kite-morphlines-saxon-1.1.0.jar +solr/contrib/map-reduce/src/test-files/README.txt +solr/contrib/morphlines-cell/README.txt +solr/contrib/morphlines-cell/lib/kite-morphlines-json-1.1.0.jar +solr/contrib/morphlines-cell/lib/kite-morphlines-tika-core-1.1.0.jar +solr/contrib/morphlines-cell/lib/kite-morphlines-tika-decompress-1.1.0.jar +solr/contrib/morphlines-cell/lib/kite-morphlines-twitter-1.1.0.jar +solr/contrib/morphlines-cell/src/test-files/README.txt +solr/contrib/morphlines-core/README.txt +solr/contrib/morphlines-core/lib/config-1.0.2.jar +solr/contrib/morphlines-core/lib/kite-morphlines-avro-1.1.0.jar +solr/contrib/morphlines-core/lib/kite-morphlines-core-1.1.0.jar +solr/contrib/morphlines-core/lib/metrics-core-3.0.1.jar +solr/contrib/morphlines-core/lib/metrics-healthchecks-3.0.1.jar +solr/contrib/uima/README.txt +solr/contrib/uima/lib/AlchemyAPIAnnotator-2.3.1.jar +solr/contrib/uima/lib/OpenCalaisAnnotator-2.3.1.jar +solr/contrib/uima/lib/Tagger-2.3.1.jar +solr/contrib/uima/lib/WhitespaceTokenizer-2.3.1.jar +solr/contrib/uima/lib/commons-digester-2.1.jar +solr/contrib/uima/lib/uimaj-core-2.3.1.jar +solr/contrib/uima/lucene-libs/lucene-analyzers-uima-%%PORTVERSION%%.jar +solr/contrib/velocity/lib/commons-beanutils-1.8.3.jar +solr/contrib/velocity/lib/commons-collections-3.2.2.jar +solr/contrib/velocity/lib/velocity-1.7.jar +solr/contrib/velocity/lib/velocity-tools-2.0.jar +solr/dist/solr-analysis-extras-%%PORTVERSION%%.jar +solr/dist/solr-analytics-%%PORTVERSION%%.jar +solr/dist/solr-cell-%%PORTVERSION%%.jar +solr/dist/solr-clustering-%%PORTVERSION%%.jar +solr/dist/solr-core-%%PORTVERSION%%.jar +solr/dist/solr-dataimporthandler-%%PORTVERSION%%.jar +solr/dist/solr-dataimporthandler-extras-%%PORTVERSION%%.jar +solr/dist/solr-langid-%%PORTVERSION%%.jar +solr/dist/solr-map-reduce-%%PORTVERSION%%.jar +solr/dist/solr-morphlines-cell-%%PORTVERSION%%.jar +solr/dist/solr-morphlines-core-%%PORTVERSION%%.jar +solr/dist/solr-solrj-%%PORTVERSION%%.jar +solr/dist/solr-test-framework-%%PORTVERSION%%.jar +solr/dist/solr-uima-%%PORTVERSION%%.jar +solr/dist/solr-velocity-%%PORTVERSION%%.jar +solr/dist/solrj-lib/commons-io-2.5.jar +solr/dist/solrj-lib/guava-14.0.1.jar +solr/dist/solrj-lib/httpclient-4.4.1.jar +solr/dist/solrj-lib/httpcore-4.4.1.jar +solr/dist/solrj-lib/httpmime-4.4.1.jar +solr/dist/solrj-lib/jackson-annotations-2.5.4.jar +solr/dist/solrj-lib/jackson-core-2.5.4.jar +solr/dist/solrj-lib/jackson-databind-2.5.4.jar +solr/dist/solrj-lib/jcl-over-slf4j-1.7.7.jar +solr/dist/solrj-lib/noggit-0.6.jar +solr/dist/solrj-lib/slf4j-api-1.7.7.jar +solr/dist/solrj-lib/stax2-api-3.1.4.jar +solr/dist/solrj-lib/woodstox-core-asl-4.4.1.jar +solr/dist/solrj-lib/zookeeper-3.4.6.jar +solr/dist/test-framework/README.txt *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sun Sep 11 12:44:17 2016 Return-Path: Delivered-To: svn-ports-head@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 0CDA3BD50D4; Sun, 11 Sep 2016 12:44:17 +0000 (UTC) (envelope-from marino@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 C16F1EDB; Sun, 11 Sep 2016 12:44:16 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BCiF55079587; Sun, 11 Sep 2016 12:44:15 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BCiFKk079586; Sun, 11 Sep 2016 12:44:15 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111244.u8BCiFKk079586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 12:44:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421816 - head/security/stegdetect X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 12:44:17 -0000 Author: marino Date: Sun Sep 11 12:44:15 2016 New Revision: 421816 URL: https://svnweb.freebsd.org/changeset/ports/421816 Log: seurity/stegdetect: Document SSL requirement and set its flags Modified: head/security/stegdetect/Makefile Modified: head/security/stegdetect/Makefile ============================================================================== --- head/security/stegdetect/Makefile Sun Sep 11 11:43:36 2016 (r421815) +++ head/security/stegdetect/Makefile Sun Sep 11 12:44:15 2016 (r421816) @@ -21,8 +21,10 @@ X11_CONFIGURE_ENV+= PATH_GTKCONFIG="${GT # Note: stegdetect includes a modified version of jpeg-6b linked statically GNU_CONFIGURE= yes -USES= gmake +USES= gmake ssl CONFIGURE_ARGS+=--program-prefix='' +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} post-patch: @${REINPLACE_CMD} 's;/usr/include/event;${LOCALBASE}/include;g' \ From owner-svn-ports-head@freebsd.org Sun Sep 11 13:37:42 2016 Return-Path: Delivered-To: svn-ports-head@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 6E783BD5E70; Sun, 11 Sep 2016 13:37:42 +0000 (UTC) (envelope-from marino@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 3BF1F372; Sun, 11 Sep 2016 13:37:42 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BDbfZa098140; Sun, 11 Sep 2016 13:37:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BDbf8m098139; Sun, 11 Sep 2016 13:37:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111337.u8BDbf8m098139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 13:37:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421817 - head/security/tcpcrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 13:37:42 -0000 Author: marino Date: Sun Sep 11 13:37:41 2016 New Revision: 421817 URL: https://svnweb.freebsd.org/changeset/ports/421817 Log: security/tcpcrypt: Document SSL requirement and set its flags Approved by: SSL blanket Modified: head/security/tcpcrypt/Makefile Modified: head/security/tcpcrypt/Makefile ============================================================================== --- head/security/tcpcrypt/Makefile Sun Sep 11 12:44:15 2016 (r421816) +++ head/security/tcpcrypt/Makefile Sun Sep 11 13:37:41 2016 (r421817) @@ -16,7 +16,9 @@ GH_ACCOUNT= scslab GNU_CONFIGURE= yes USE_LDCONFIG= yes -USES= autoreconf libtool +USES= autoreconf libtool ssl +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} INSTALL_TARGET= install-strip USERS= tcpcryptd From owner-svn-ports-head@freebsd.org Sun Sep 11 13:41:48 2016 Return-Path: Delivered-To: svn-ports-head@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 66090BD6093; Sun, 11 Sep 2016 13:41:48 +0000 (UTC) (envelope-from marino@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 3604E90B; Sun, 11 Sep 2016 13:41:48 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BDflCp001165; Sun, 11 Sep 2016 13:41:47 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BDflbd001164; Sun, 11 Sep 2016 13:41:47 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111341.u8BDflbd001164@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 13:41:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421818 - head/security/vnccrack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 13:41:48 -0000 Author: marino Date: Sun Sep 11 13:41:47 2016 New Revision: 421818 URL: https://svnweb.freebsd.org/changeset/ports/421818 Log: security/vnccrack: Document SSL requirement and set its flags Approved by: SSL blanket Modified: head/security/vnccrack/Makefile Modified: head/security/vnccrack/Makefile ============================================================================== --- head/security/vnccrack/Makefile Sun Sep 11 13:37:41 2016 (r421817) +++ head/security/vnccrack/Makefile Sun Sep 11 13:41:47 2016 (r421818) @@ -6,13 +6,14 @@ PORTVERSION= 1.0.0 CATEGORIES= security MASTER_SITES= http://files.randombit.net/vnccrack/ DISTNAME= VNCcrack-${PORTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= pankov_p@mail.ru COMMENT= Fast offline password cracker for VNC passwords +USES= ssl tar:tgz GNU_CONFIGURE= yes -USE_OPENSSL= yes +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} SUB_FILES+= pkg-message From owner-svn-ports-head@freebsd.org Sun Sep 11 13:53:37 2016 Return-Path: Delivered-To: svn-ports-head@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 A0A7FBD63F8; Sun, 11 Sep 2016 13:53:37 +0000 (UTC) (envelope-from trociny@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 72CF3F16; Sun, 11 Sep 2016 13:53:37 +0000 (UTC) (envelope-from trociny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BDrabM005750; Sun, 11 Sep 2016 13:53:36 GMT (envelope-from trociny@FreeBSD.org) Received: (from trociny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BDrana005747; Sun, 11 Sep 2016 13:53:36 GMT (envelope-from trociny@FreeBSD.org) Message-Id: <201609111353.u8BDrana005747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trociny set sender to trociny@FreeBSD.org using -f From: Mikolaj Golub Date: Sun, 11 Sep 2016 13:53:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421819 - head/sysutils/vmtouch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 13:53:37 -0000 Author: trociny Date: Sun Sep 11 13:53:36 2016 New Revision: 421819 URL: https://svnweb.freebsd.org/changeset/ports/421819 Log: update to 1.1.0 Modified: head/sysutils/vmtouch/Makefile head/sysutils/vmtouch/distinfo Modified: head/sysutils/vmtouch/Makefile ============================================================================== --- head/sysutils/vmtouch/Makefile Sun Sep 11 13:41:47 2016 (r421818) +++ head/sysutils/vmtouch/Makefile Sun Sep 11 13:53:36 2016 (r421819) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= vmtouch -PORTVERSION= 1.0.2 -DISTVERSIONPREFIX= ${PORTNAME}- +PORTVERSION= 1.1.0 +DISTVERSIONPREFIX= v CATEGORIES= sysutils MAINTAINER= trociny@FreeBSD.org @@ -11,8 +11,9 @@ COMMENT= Virtual Memory Toucher USE_GITHUB= yes GH_ACCOUNT= hoytech +LICENSE= BSD3CLAUSE -USES= perl5 +USES= perl5 uidfix USE_PERL5= build # pod2man PLIST_FILES= bin/vmtouch \ Modified: head/sysutils/vmtouch/distinfo ============================================================================== --- head/sysutils/vmtouch/distinfo Sun Sep 11 13:41:47 2016 (r421818) +++ head/sysutils/vmtouch/distinfo Sun Sep 11 13:53:36 2016 (r421819) @@ -1,2 +1,3 @@ -SHA256 (hoytech-vmtouch-vmtouch-1.0.2_GH0.tar.gz) = 48d41e5b805a0fcac46c12feeb4650e4b9def44b75d528d7c66c2f8b3a747c39 -SIZE (hoytech-vmtouch-vmtouch-1.0.2_GH0.tar.gz) = 13404 +TIMESTAMP = 1470772432 +SHA256 (hoytech-vmtouch-v1.1.0_GH0.tar.gz) = 1ba2a12aabed977894ce3a272b2fa8ed6ddfec7a720d7686e074f9e756104796 +SIZE (hoytech-vmtouch-v1.1.0_GH0.tar.gz) = 15165 From owner-svn-ports-head@freebsd.org Sun Sep 11 14:07:36 2016 Return-Path: Delivered-To: svn-ports-head@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 1E4D2BD66D8; Sun, 11 Sep 2016 14:07:36 +0000 (UTC) (envelope-from trociny@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 E1ACF6D0; Sun, 11 Sep 2016 14:07:35 +0000 (UTC) (envelope-from trociny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BE7ZHx009637; Sun, 11 Sep 2016 14:07:35 GMT (envelope-from trociny@FreeBSD.org) Received: (from trociny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BE7Zhk009635; Sun, 11 Sep 2016 14:07:35 GMT (envelope-from trociny@FreeBSD.org) Message-Id: <201609111407.u8BE7Zhk009635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trociny set sender to trociny@FreeBSD.org using -f From: Mikolaj Golub Date: Sun, 11 Sep 2016 14:07:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421820 - head/databases/py-swiftclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:07:36 -0000 Author: trociny Date: Sun Sep 11 14:07:34 2016 New Revision: 421820 URL: https://svnweb.freebsd.org/changeset/ports/421820 Log: update to 3.1.0 Modified: head/databases/py-swiftclient/Makefile head/databases/py-swiftclient/distinfo Modified: head/databases/py-swiftclient/Makefile ============================================================================== --- head/databases/py-swiftclient/Makefile Sun Sep 11 13:53:36 2016 (r421819) +++ head/databases/py-swiftclient/Makefile Sun Sep 11 14:07:34 2016 (r421820) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= swiftclient -PORTVERSION= 3.0.0 +PORTVERSION= 3.1.0 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-swiftclient/distinfo ============================================================================== --- head/databases/py-swiftclient/distinfo Sun Sep 11 13:53:36 2016 (r421819) +++ head/databases/py-swiftclient/distinfo Sun Sep 11 14:07:34 2016 (r421820) @@ -1,2 +1,3 @@ -SHA256 (python-swiftclient-3.0.0.tar.gz) = 824b8f204c5a7764de51795256e4175fdcd655ae4df85b8ae6e6ea9ec0b41f68 -SIZE (python-swiftclient-3.0.0.tar.gz) = 134376 +TIMESTAMP = 1473364249 +SHA256 (python-swiftclient-3.1.0.tar.gz) = 7bb5984862b85ba2a18c16b4dc6af2fd14272871ad165eec47e9da111ab3fb9a +SIZE (python-swiftclient-3.1.0.tar.gz) = 155598 From owner-svn-ports-head@freebsd.org Sun Sep 11 14:14:51 2016 Return-Path: Delivered-To: svn-ports-head@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 59FC2BD6872; Sun, 11 Sep 2016 14:14:51 +0000 (UTC) (envelope-from tijl@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 273C2B36; Sun, 11 Sep 2016 14:14:51 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BEEok3013288; Sun, 11 Sep 2016 14:14:50 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BEEo4r013286; Sun, 11 Sep 2016 14:14:50 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201609111414.u8BEEo4r013286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 11 Sep 2016 14:14:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421821 - head/www/linux-c6-flashplugin11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:14:51 -0000 Author: tijl Date: Sun Sep 11 14:14:49 2016 New Revision: 421821 URL: https://svnweb.freebsd.org/changeset/ports/421821 Log: Set STRIP= so INSTALL_LIB doesn't call strip(1) which in the case of GNU strip brands the library as a FreeBSD library. PR: 212564 Modified: head/www/linux-c6-flashplugin11/Makefile head/www/linux-c6-flashplugin11/pkg-plist Modified: head/www/linux-c6-flashplugin11/Makefile ============================================================================== --- head/www/linux-c6-flashplugin11/Makefile Sun Sep 11 14:07:34 2016 (r421820) +++ head/www/linux-c6-flashplugin11/Makefile Sun Sep 11 14:14:49 2016 (r421821) @@ -3,7 +3,7 @@ PORTNAME= flashplugin PORTVERSION= 11.2r202.632 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \ LOCAL/nox:suplib @@ -23,7 +23,7 @@ RESTRICTED_FILES= ${DISTFILES:Nlinux-f10 NO_BUILD= yes NO_WRKSUBDIR= yes - +STRIP= USES+= webplugin:linux desktop-file-utils cpe WEBPLUGIN_FILES= libflashplayer.so Modified: head/www/linux-c6-flashplugin11/pkg-plist ============================================================================== --- head/www/linux-c6-flashplugin11/pkg-plist Sun Sep 11 14:07:34 2016 (r421820) +++ head/www/linux-c6-flashplugin11/pkg-plist Sun Sep 11 14:14:49 2016 (r421821) @@ -9,3 +9,5 @@ share/icons/hicolor/48x48/apps/flash-pla %%NO_ALSA%%%%LINUXBASE%%/usr/lib/libflashsupport.so %%NO_ALSA%%@dir %%LINUXBASE%%/usr/lib %%NO_ALSA%%@dir %%LINUXBASE%%/usr +%%NO_ALSA%%@dir %%LINUXBASE%% +%%NO_ALSA%%@dir /compat From owner-svn-ports-head@freebsd.org Sun Sep 11 14:19:17 2016 Return-Path: Delivered-To: svn-ports-head@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 654AEBD6B2F; Sun, 11 Sep 2016 14:19:17 +0000 (UTC) (envelope-from antoine@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 1E1811126; Sun, 11 Sep 2016 14:19:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BEJGTQ013626; Sun, 11 Sep 2016 14:19:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BEJGKX013625; Sun, 11 Sep 2016 14:19:16 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609111419.u8BEJGKX013625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 11 Sep 2016 14:19:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421822 - head/security/yara X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:19:17 -0000 Author: antoine Date: Sun Sep 11 14:19:16 2016 New Revision: 421822 URL: https://svnweb.freebsd.org/changeset/ports/421822 Log: Honor SSL_DEFAULT Modified: head/security/yara/Makefile Modified: head/security/yara/Makefile ============================================================================== --- head/security/yara/Makefile Sun Sep 11 14:14:49 2016 (r421821) +++ head/security/yara/Makefile Sun Sep 11 14:19:16 2016 (r421822) @@ -19,5 +19,7 @@ INSTALL_TARGET= install-strip USES= alias autoreconf libtool pathfix ssl USE_LDCONFIG= yes PATHFIX_MAKEFILEIN= Makefile.am +CPPFLAGS+= -I${OPENSSLINC} +LIBS+= -L${OPENSSLLIB} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 14:20:05 2016 Return-Path: Delivered-To: svn-ports-head@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 25286BD6BE3; Sun, 11 Sep 2016 14:20:05 +0000 (UTC) (envelope-from antoine@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 E67261341; Sun, 11 Sep 2016 14:20:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BEK4QC013766; Sun, 11 Sep 2016 14:20:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BEK4RA013765; Sun, 11 Sep 2016 14:20:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609111420.u8BEK4RA013765@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 11 Sep 2016 14:20:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421823 - head/security/munge X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:20:05 -0000 Author: antoine Date: Sun Sep 11 14:20:03 2016 New Revision: 421823 URL: https://svnweb.freebsd.org/changeset/ports/421823 Log: - Honor SSL_DEFAULT - Remove redundant arg from CONFIGURE_ARGS Modified: head/security/munge/Makefile Modified: head/security/munge/Makefile ============================================================================== --- head/security/munge/Makefile Sun Sep 11 14:19:16 2016 (r421822) +++ head/security/munge/Makefile Sun Sep 11 14:20:03 2016 (r421823) @@ -14,7 +14,7 @@ LICENSE= GPLv3 LGPL3 LICENSE_COMB= dual GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir=/var +CONFIGURE_ARGS= --with-openssl-prefix=${OPENSSLBASE} USES= libtool pathfix perl5 ssl tar:bzip2 USE_LDCONFIG= yes USE_RC_SUBR= munged From owner-svn-ports-head@freebsd.org Sun Sep 11 14:29:42 2016 Return-Path: Delivered-To: svn-ports-head@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 919AABD6D6E; Sun, 11 Sep 2016 14:29:42 +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 4595D16F4; Sun, 11 Sep 2016 14:29:42 +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 u8BETfae017682; Sun, 11 Sep 2016 14:29:41 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BETfe4017679; Sun, 11 Sep 2016 14:29:41 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609111429.u8BETfe4017679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 11 Sep 2016 14:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421824 - head/databases/grass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:29:42 -0000 Author: wen Date: Sun Sep 11 14:29:41 2016 New Revision: 421824 URL: https://svnweb.freebsd.org/changeset/ports/421824 Log: - Update to 6.4.6 Modified: head/databases/grass/Makefile head/databases/grass/distinfo head/databases/grass/pkg-plist Modified: head/databases/grass/Makefile ============================================================================== --- head/databases/grass/Makefile Sun Sep 11 14:20:03 2016 (r421823) +++ head/databases/grass/Makefile Sun Sep 11 14:29:41 2016 (r421824) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= grass -PORTVERSION= 6.4.5 -PORTREVISION= 3 +PORTVERSION= 6.4.6 PORTEPOCH= 2 CATEGORIES= databases geography MASTER_SITES= http://grass.osgeo.org/%SUBDIR%/ \ Modified: head/databases/grass/distinfo ============================================================================== --- head/databases/grass/distinfo Sun Sep 11 14:20:03 2016 (r421823) +++ head/databases/grass/distinfo Sun Sep 11 14:29:41 2016 (r421824) @@ -1,2 +1,3 @@ -SHA256 (grass-6.4.5.tar.gz) = f501da62807eb08efcb85820859fe5ade9bc392e20641b606273c956bb678f3e -SIZE (grass-6.4.5.tar.gz) = 25662709 +TIMESTAMP = 1473601019 +SHA256 (grass-6.4.6.tar.gz) = 5a84754614619cc265d843980e28f39a1d24048805b9b2865e76a583d973f333 +SIZE (grass-6.4.6.tar.gz) = 25737006 Modified: head/databases/grass/pkg-plist ============================================================================== --- head/databases/grass/pkg-plist Sun Sep 11 14:20:03 2016 (r421823) +++ head/databases/grass/pkg-plist Sun Sep 11 14:29:41 2016 (r421824) @@ -2413,6 +2413,8 @@ bin/grass64 %%GRASS_INST_DIR%%/etc/wxpython/gui_core/toolbars.pyc %%GRASS_INST_DIR%%/etc/wxpython/gui_core/widgets.py %%GRASS_INST_DIR%%/etc/wxpython/gui_core/widgets.pyc +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/wxlibplot.py +%%GRASS_INST_DIR%%/etc/wxpython/gui_core/wxlibplot.pyc %%GRASS_INST_DIR%%/etc/wxpython/icons/__init__.py %%GRASS_INST_DIR%%/etc/wxpython/icons/__init__.pyc %%GRASS_INST_DIR%%/etc/wxpython/icons/grass2_icons.py From owner-svn-ports-head@freebsd.org Sun Sep 11 14:33:20 2016 Return-Path: Delivered-To: svn-ports-head@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 5B6D1BD6F13; Sun, 11 Sep 2016 14:33:20 +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 2E3D01A0B; Sun, 11 Sep 2016 14:33:20 +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 u8BEXJ4m021193; Sun, 11 Sep 2016 14:33:19 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BEXJuK021192; Sun, 11 Sep 2016 14:33:19 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609111433.u8BEXJuK021192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 11 Sep 2016 14:33:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421825 - head/graphics/qgis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:33:20 -0000 Author: wen Date: Sun Sep 11 14:33:19 2016 New Revision: 421825 URL: https://svnweb.freebsd.org/changeset/ports/421825 Log: - Fix build with GRASS option with updating DGRASS_PREFIX Modified: head/graphics/qgis/Makefile Modified: head/graphics/qgis/Makefile ============================================================================== --- head/graphics/qgis/Makefile Sun Sep 11 14:29:41 2016 (r421824) +++ head/graphics/qgis/Makefile Sun Sep 11 14:33:19 2016 (r421825) @@ -64,7 +64,7 @@ DEBUG_CMAKE_OFF= -DCMAKE_BUILD_TYPE=Rele GRASS_BUILD_DEPENDS= grass64:databases/grass GRASS_RUN_DEPENDS= grass64:databases/grass -GRASS_CMAKE_ON= -DWITH_GRASS:BOOL=TRUE -DGRASS_PREFIX=${LOCALBASE}/grass-6.4.5 +GRASS_CMAKE_ON= -DWITH_GRASS:BOOL=TRUE -DGRASS_PREFIX=${LOCALBASE}/grass-6.4.6 GRASS_CMAKE_OFF= -DWITH_GRASS:BOOL=FALSE GRASS_FORCE_MAKE_JOBS= NO From owner-svn-ports-head@freebsd.org Sun Sep 11 14:40:51 2016 Return-Path: Delivered-To: svn-ports-head@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 D119FBD604C; Sun, 11 Sep 2016 14:40:51 +0000 (UTC) (envelope-from kevlo@ns.kevlo.org) Received: from ns.kevlo.org (220-135-115-6.HINET-IP.hinet.net [220.135.115.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "ns.kevlo.org", Issuer "ns.kevlo.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 718031C40; Sun, 11 Sep 2016 14:40:50 +0000 (UTC) (envelope-from kevlo@ns.kevlo.org) Received: from ns.kevlo.org (localhost [127.0.0.1]) by ns.kevlo.org (8.15.2/8.15.2) with ESMTPS id u8BEdMIW074283 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 11 Sep 2016 22:39:23 +0800 (CST) (envelope-from kevlo@ns.kevlo.org) Received: (from kevlo@localhost) by ns.kevlo.org (8.15.2/8.15.2/Submit) id u8BEdMrG074282; Sun, 11 Sep 2016 22:39:22 +0800 (CST) (envelope-from kevlo) Date: Sun, 11 Sep 2016 22:39:22 +0800 From: Kevin Lo To: Matthias Andree Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r421812 - in head/sysutils/e2fsprogs: . files Message-ID: <20160911143922.GA74275@ns.kevlo.org> References: <201609111026.u8BAQPYK026695@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201609111026.u8BAQPYK026695@repo.freebsd.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 14:40:51 -0000 On Sun, Sep 11, 2016 at 10:26:25AM +0000, Matthias Andree wrote: > > Author: mandree > Date: Sun Sep 11 10:26:24 2016 > New Revision: 421812 > URL: https://svnweb.freebsd.org/changeset/ports/421812 > > Log: > Fix most of the FreeBSD 11+ issues, except e2undo. > > Pull in upstream Git patch for lib/ext2fs/unix_io.c to fix unaligned > multi-block writes, and disable the two known failing e2undo patches > ONLY for the exact 1.43.3_2, even if "ALLTESTS" is enabled. > (Modify the post-patch:: target to avoid that.) > > The port is still marked BROKEN on FreeBSD 11+ to protect the innocent, > but a TRYBROKEN=1 build that will not use e2undo should be fine now. > > Obtained from: Ted Y. Ts'o (upstream maintainer) Hmm, TRYBROKEN=1 build seems doesn't work: ===> License GPLv2 accepted by the user Trying build of e2fsprogs-1.43.3_2 even though it is marked BROKEN. ===> Found saved configuration for e2fsprogs-1.43.3_2 ===> e2fsprogs-1.43.3_2 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by e2fsprogs-1.43.3_2 for building ===> Extracting for e2fsprogs-1.43.3_2 => SHA256 Checksum OK for e2fsprogs-1.43.3.tar.xz. ===> Patching for e2fsprogs-1.43.3_2 ===> Applying FreeBSD patches for e2fsprogs-1.43.3_2 mv: rename /usr/ports/sysutils/e2fsprogs/work/e2fsprogs-1.43.3/tests/u_mke2fs_opt_offset to /usr/ports/sysutils/e2fsprogs/work/e2fsprogs-1.43.3/tests/disabled_test-u_mke2fs_opt_offset/u_mke2fs_opt_offset: No such file or directory *** Error code 1 Stop. make[1]: stopped in /usr/ports/sysutils/e2fsprogs *** Error code 1 > Added: > head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c (contents, props changed) > Modified: > head/sysutils/e2fsprogs/Makefile > > Modified: head/sysutils/e2fsprogs/Makefile > ============================================================================== > --- head/sysutils/e2fsprogs/Makefile Sun Sep 11 09:03:26 2016 (r421811) > +++ head/sysutils/e2fsprogs/Makefile Sun Sep 11 10:26:24 2016 (r421812) > @@ -3,7 +3,7 @@ > > PORTNAME= e2fsprogs > PORTVERSION= 1.43.3 > -PORTREVISION?= 1 > +PORTREVISION?= 2 > CATEGORIES?= sysutils > MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} > > @@ -91,7 +91,7 @@ post-patch:: > @${REINPLACE_CMD} -e 's///' ${WRKSRC}/*/*.c > .if empty(PORT_OPTIONS:MALLTESTS) > .for i in \ > - d_fallocate_blkmap \ > + d_fallocate_blkmap \ > f_baddir \ > f_bbfile \ > f_convert_bmap \ > @@ -136,10 +136,19 @@ post-patch:: > .endfor > .endif > .endif > +# XXX remove these on the next revision > +.if ${MASTERDIR} == ${.CURDIR} && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 && ${PORTVERSION} == 1.43.3 && ${PORTREVISION} == 2 > +.for i in u_mke2fs_opt_oddsize u_mke2fs_opt_offset > + @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} > +.endfor > +.endif > > +# Master port stuff that is not to be seen by the slave ports. > .if ${MASTERDIR} == ${.CURDIR} > +# NOTE: The previous .if block goes all the way to the end of the file. > + > .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 > -BROKEN=self-test failures on FreeBSD 11+ hint to data corruption issues. > +BROKEN=Not ready for production on FreeBSD 11+, some e2undo cases are still failing. > .endif > > pre-build: > @@ -211,6 +220,7 @@ post-install: > ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} > .endfor > .endif > +# > # the next line closes .if ${MASTERDIR} == ${.CURDIR} > .endif > > > Added: head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Sun Sep 11 10:26:24 2016 (r421812) > @@ -0,0 +1,23 @@ > +commit d6cad379eb6c86ca58bf5b83a586577de412a2e6 > +Author: Theodore Ts'o > +Date: Sun Sep 11 00:25:48 2016 -0400 > + > + libext2fs: fix unaligned, multiblock writes in the unix_io handler > + > + The read-modify-write code for the unaligned fallback code wasn't > + working for multi-block writes. This was unmasked by FreeBSD 11-rc2, > + since its malloc() is returning unaligned memory regions for large > + memory regions. > + > + Signed-off-by: Theodore Ts'o > + > +--- lib/ext2fs/unix_io.c.orig 2016-09-02 04:17:32 UTC > ++++ lib/ext2fs/unix_io.c > +@@ -300,6 +300,7 @@ static errcode_t raw_write_blk(io_channe > + goto short_write; > + size -= actual; > + buf += actual; > ++ location += actual; > + } > + return 0; > + > > From owner-svn-ports-head@freebsd.org Sun Sep 11 15:14:30 2016 Return-Path: Delivered-To: svn-ports-head@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 98438BD6B47; Sun, 11 Sep 2016 15:14:30 +0000 (UTC) (envelope-from amdmi3@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 65905F77; Sun, 11 Sep 2016 15:14:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BFETOZ036255; Sun, 11 Sep 2016 15:14:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BFET16036253; Sun, 11 Sep 2016 15:14:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111514.u8BFET16036253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 15:14:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421826 - head/archivers/py-borgbackup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 15:14:30 -0000 Author: amdmi3 Date: Sun Sep 11 15:14:29 2016 New Revision: 421826 URL: https://svnweb.freebsd.org/changeset/ports/421826 Log: - Update to 1.0.7 PR: 212161 Submitted by: jjuanino@gmail.com (maintainer) Modified: head/archivers/py-borgbackup/Makefile head/archivers/py-borgbackup/distinfo Modified: head/archivers/py-borgbackup/Makefile ============================================================================== --- head/archivers/py-borgbackup/Makefile Sun Sep 11 14:33:19 2016 (r421825) +++ head/archivers/py-borgbackup/Makefile Sun Sep 11 15:14:29 2016 (r421826) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= borgbackup -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.7 CATEGORIES= archivers python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/archivers/py-borgbackup/distinfo ============================================================================== --- head/archivers/py-borgbackup/distinfo Sun Sep 11 14:33:19 2016 (r421825) +++ head/archivers/py-borgbackup/distinfo Sun Sep 11 15:14:29 2016 (r421826) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468508239 -SHA256 (borgbackup-1.0.6.tar.gz) = b72444d260b66538b6b5394f4f1919ab095214d130b5ffbb18ed83dac94db6b7 -SIZE (borgbackup-1.0.6.tar.gz) = 469242 +TIMESTAMP = 1473606772 +SHA256 (borgbackup-1.0.7.tar.gz) = 203353a299b6ea0c092a1f23b6bb5414a0b795712c213c68f7a1f4c24be131d1 +SIZE (borgbackup-1.0.7.tar.gz) = 462509 From owner-svn-ports-head@freebsd.org Sun Sep 11 15:44:30 2016 Return-Path: Delivered-To: svn-ports-head@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 CA232BD604D; Sun, 11 Sep 2016 15:44:30 +0000 (UTC) (envelope-from amdmi3@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 A82CEB2C; Sun, 11 Sep 2016 15:44:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BFiTqs047600; Sun, 11 Sep 2016 15:44:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BFiTQx047594; Sun, 11 Sep 2016 15:44:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111544.u8BFiTQx047594@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 15:44:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421827 - in head/games: . liblcf liblcf/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 15:44:30 -0000 Author: amdmi3 Date: Sun Sep 11 15:44:29 2016 New Revision: 421827 URL: https://svnweb.freebsd.org/changeset/ports/421827 Log: liblcf is a library to handle RPG Maker 2000 and 2003 game data. It can read and write LCF and XML files. liblcf is part of the EasyRPG Project. WWW: https://easy-rpg.org/ Added: head/games/liblcf/ head/games/liblcf/Makefile (contents, props changed) head/games/liblcf/distinfo (contents, props changed) head/games/liblcf/files/ head/games/liblcf/files/patch-src_reader__util.cpp (contents, props changed) head/games/liblcf/pkg-descr (contents, props changed) head/games/liblcf/pkg-plist (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sun Sep 11 15:14:29 2016 (r421826) +++ head/games/Makefile Sun Sep 11 15:44:29 2016 (r421827) @@ -512,6 +512,7 @@ SUBDIR += libggz SUBDIR += libkdegames SUBDIR += libkmahjongg + SUBDIR += liblcf SUBDIR += libmaitretarot SUBDIR += libmt_client SUBDIR += libretro-cores Added: head/games/liblcf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/liblcf/Makefile Sun Sep 11 15:44:29 2016 (r421827) @@ -0,0 +1,36 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= liblcf +PORTVERSION= 0.3.2 +CATEGORIES= games + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Library to handle RPG Maker 2000/2003 and EasyRPG projects + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libicui18n.so:devel/icu \ + libexpat.so:textproc/expat2 + +USE_GITHUB= yes +GH_ACCOUNT= EasyRPG + +USES= autoreconf libtool pathfix pkgconfig +PATHFIX_MAKEFILEIN= Makefile.am +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +PORTDOCS= AUTHORS README + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +.include Added: head/games/liblcf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/liblcf/distinfo Sun Sep 11 15:44:29 2016 (r421827) @@ -0,0 +1,3 @@ +TIMESTAMP = 1471887290 +SHA256 (EasyRPG-liblcf-0.3.2_GH0.tar.gz) = cf98a43f3f10047bf51e92a472bae2904eb61eb7d9495130e17857324047f529 +SIZE (EasyRPG-liblcf-0.3.2_GH0.tar.gz) = 141239 Added: head/games/liblcf/files/patch-src_reader__util.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/liblcf/files/patch-src_reader__util.cpp Sun Sep 11 15:44:29 2016 (r421827) @@ -0,0 +1,15 @@ +--- src/reader_util.cpp.orig 2015-09-14 08:49:23 UTC ++++ src/reader_util.cpp +@@ -310,11 +310,7 @@ std::string ReaderUtil::Recode(const std + size_t dst_size = str_to_encode.size() * 5 + 10; + char *dst = new char[dst_size]; + size_t dst_left = dst_size; +-# ifdef ICONV_CONST +- char ICONV_CONST *p = src; +-# else +- char *p = src; +-# endif ++ char const *p = src; + char *q = dst; + size_t status = iconv(cd, &p, &src_left, &q, &dst_left); + iconv_close(cd); Added: head/games/liblcf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/liblcf/pkg-descr Sun Sep 11 15:44:29 2016 (r421827) @@ -0,0 +1,6 @@ +liblcf is a library to handle RPG Maker 2000 and 2003 game data. +It can read and write LCF and XML files. + +liblcf is part of the EasyRPG Project. + +WWW: https://easy-rpg.org/ Added: head/games/liblcf/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/liblcf/pkg-plist Sun Sep 11 15:44:29 2016 (r421827) @@ -0,0 +1,89 @@ +include/liblcf/command_codes.h +include/liblcf/data.h +include/liblcf/ini.h +include/liblcf/inireader.h +include/liblcf/ldb_chunks.h +include/liblcf/ldb_reader.h +include/liblcf/lmt_chunks.h +include/liblcf/lmt_reader.h +include/liblcf/lmu_chunks.h +include/liblcf/lmu_reader.h +include/liblcf/lsd_chunks.h +include/liblcf/lsd_reader.h +include/liblcf/reader_lcf.h +include/liblcf/reader_options.h +include/liblcf/reader_struct.h +include/liblcf/reader_types.h +include/liblcf/reader_util.h +include/liblcf/reader_xml.h +include/liblcf/rpg_actor.h +include/liblcf/rpg_animation.h +include/liblcf/rpg_animationcelldata.h +include/liblcf/rpg_animationframe.h +include/liblcf/rpg_animationtiming.h +include/liblcf/rpg_attribute.h +include/liblcf/rpg_battlecommand.h +include/liblcf/rpg_battlecommands.h +include/liblcf/rpg_battleranimation.h +include/liblcf/rpg_battleranimationdata.h +include/liblcf/rpg_battleranimationextension.h +include/liblcf/rpg_chipset.h +include/liblcf/rpg_class.h +include/liblcf/rpg_commonevent.h +include/liblcf/rpg_database.h +include/liblcf/rpg_encounter.h +include/liblcf/rpg_enemy.h +include/liblcf/rpg_enemyaction.h +include/liblcf/rpg_equipment.h +include/liblcf/rpg_event.h +include/liblcf/rpg_eventcommand.h +include/liblcf/rpg_eventpage.h +include/liblcf/rpg_eventpagecondition.h +include/liblcf/rpg_item.h +include/liblcf/rpg_itemanimation.h +include/liblcf/rpg_learning.h +include/liblcf/rpg_map.h +include/liblcf/rpg_mapinfo.h +include/liblcf/rpg_movecommand.h +include/liblcf/rpg_moveroute.h +include/liblcf/rpg_music.h +include/liblcf/rpg_parameters.h +include/liblcf/rpg_rect.h +include/liblcf/rpg_save.h +include/liblcf/rpg_saveactor.h +include/liblcf/rpg_savecommonevent.h +include/liblcf/rpg_saveeventcommands.h +include/liblcf/rpg_saveeventdata.h +include/liblcf/rpg_saveevents.h +include/liblcf/rpg_saveinventory.h +include/liblcf/rpg_savemapevent.h +include/liblcf/rpg_savemapinfo.h +include/liblcf/rpg_savepartylocation.h +include/liblcf/rpg_savepicture.h +include/liblcf/rpg_savescreen.h +include/liblcf/rpg_savesystem.h +include/liblcf/rpg_savetarget.h +include/liblcf/rpg_savetitle.h +include/liblcf/rpg_savevehiclelocation.h +include/liblcf/rpg_skill.h +include/liblcf/rpg_sound.h +include/liblcf/rpg_start.h +include/liblcf/rpg_state.h +include/liblcf/rpg_switch.h +include/liblcf/rpg_system.h +include/liblcf/rpg_terms.h +include/liblcf/rpg_terrain.h +include/liblcf/rpg_testbattler.h +include/liblcf/rpg_treemap.h +include/liblcf/rpg_troop.h +include/liblcf/rpg_troopmember.h +include/liblcf/rpg_trooppage.h +include/liblcf/rpg_trooppagecondition.h +include/liblcf/rpg_variable.h +include/liblcf/writer_lcf.h +include/liblcf/writer_xml.h +lib/liblcf.a +lib/liblcf.so +lib/liblcf.so.0 +lib/liblcf.so.0.0.0 +libdata/pkgconfig/liblcf.pc From owner-svn-ports-head@freebsd.org Sun Sep 11 15:45:05 2016 Return-Path: Delivered-To: svn-ports-head@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 50BBCBD60A3; Sun, 11 Sep 2016 15:45:05 +0000 (UTC) (envelope-from amdmi3@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 0F552C21; Sun, 11 Sep 2016 15:45:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BFj4Ys047828; Sun, 11 Sep 2016 15:45:04 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BFj3O6047822; Sun, 11 Sep 2016 15:45:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111545.u8BFj3O6047822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 15:45:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421828 - in head/games: . easyrpg-player easyrpg-player/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 15:45:05 -0000 Author: amdmi3 Date: Sun Sep 11 15:45:03 2016 New Revision: 421828 URL: https://svnweb.freebsd.org/changeset/ports/421828 Log: EasyRPG Player is a game interpreter to play RPG Maker 2000, 2003 and EasyRPG games. It uses the LCF parser library (liblcf) to read RPG Maker game data. EasyRPG Player is part of the EasyRPG Project. WWW: https://easyrpg.org/ Added: head/games/easyrpg-player/ head/games/easyrpg-player/Makefile (contents, props changed) head/games/easyrpg-player/distinfo (contents, props changed) head/games/easyrpg-player/files/ head/games/easyrpg-player/files/patch-src_font.cpp (contents, props changed) head/games/easyrpg-player/pkg-descr (contents, props changed) head/games/easyrpg-player/pkg-plist (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sun Sep 11 15:44:29 2016 (r421827) +++ head/games/Makefile Sun Sep 11 15:45:03 2016 (r421828) @@ -217,6 +217,7 @@ SUBDIR += dungeon SUBDIR += dungeoncrawl SUBDIR += dustrac + SUBDIR += easyrpg-player SUBDIR += eboard SUBDIR += edge SUBDIR += editss Added: head/games/easyrpg-player/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/easyrpg-player/Makefile Sun Sep 11 15:45:03 2016 (r421828) @@ -0,0 +1,41 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= easyrpg-player +PORTVERSION= 0.3.2 +CATEGORIES= games + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= RPG Maker 2000/2003 and EasyRPG games interpreter + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libfreetype.so:print/freetype2 \ + libpng.so:graphics/png \ + liblcf.so:games/liblcf +BUILD_DEPENDS= asciidoc:textproc/asciidoc \ + ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs + +BROKEN_FreeBSD_9= does not build + +USE_GITHUB= yes +GH_ACCOUNT= EasyRPG +GH_PROJECT= Player + +USES= autoreconf gmake libtool localbase pkgconfig +GNU_CONFIGURE= yes +USE_XORG= pixman +USE_SDL= sdl2 mixer2 + +PORTDOCS= AUTHORS README + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +.include Added: head/games/easyrpg-player/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/easyrpg-player/distinfo Sun Sep 11 15:45:03 2016 (r421828) @@ -0,0 +1,5 @@ +TIMESTAMP = 1471883564 +SHA256 (EasyRPG-Player-0.3.2_GH0.tar.gz) = ef9c751521930890eb8dab9f7fa40b6614c47ec3aa2e72b7bd4d6c4e162b9449 +SIZE (EasyRPG-Player-0.3.2_GH0.tar.gz) = 1349856 +SHA256 (EasyRPG-liblcf-0.3.2_GH0.tar.gz) = cf98a43f3f10047bf51e92a472bae2904eb61eb7d9495130e17857324047f529 +SIZE (EasyRPG-liblcf-0.3.2_GH0.tar.gz) = 141239 Added: head/games/easyrpg-player/files/patch-src_font.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/easyrpg-player/files/patch-src_font.cpp Sun Sep 11 15:45:03 2016 (r421828) @@ -0,0 +1,20 @@ +--- src/font.cpp.orig 2015-09-14 09:52:35 UTC ++++ src/font.cpp +@@ -145,7 +145,7 @@ BitmapRef ShinonomeFont::Glyph(unsigned + assert(glyph); + size_t const width = glyph->is_full? FULL_WIDTH : HALF_WIDTH; + +- BitmapRef bm = Bitmap::Create(reinterpret_cast(NULL), width, HEIGHT, 0, DynamicFormat(8,8,0,8,0,8,0,8,0,PF::Alpha)); ++ BitmapRef bm = Bitmap::Create(nullptr, width, HEIGHT, 0, DynamicFormat(8,8,0,8,0,8,0,8,0,PF::Alpha)); + uint8_t* data = reinterpret_cast(bm->pixels()); + int pitch = bm->pitch(); + for(size_t y_ = 0; y_ < HEIGHT; ++y_) +@@ -194,7 +194,7 @@ BitmapRef FTFont::Glyph(unsigned glyph) + int const width = ft_bitmap.width; + int const height = ft_bitmap.rows; + +- BitmapRef bm = Bitmap::Create(reinterpret_cast(NULL), width, height, 0, DynamicFormat(8,8,0,8,0,8,0,8,0,PF::Alpha)); ++ BitmapRef bm = Bitmap::Create(nullptr, width, height, 0, DynamicFormat(8,8,0,8,0,8,0,8,0,PF::Alpha)); + uint8_t* data = reinterpret_cast(bm->pixels()); + int dst_pitch = bm->pitch(); + Added: head/games/easyrpg-player/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/easyrpg-player/pkg-descr Sun Sep 11 15:45:03 2016 (r421828) @@ -0,0 +1,7 @@ +EasyRPG Player is a game interpreter to play RPG Maker 2000, 2003 +and EasyRPG games. It uses the LCF parser library (liblcf) to read +RPG Maker game data. + +EasyRPG Player is part of the EasyRPG Project. + +WWW: https://easyrpg.org/ Added: head/games/easyrpg-player/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/easyrpg-player/pkg-plist Sun Sep 11 15:45:03 2016 (r421828) @@ -0,0 +1,2 @@ +bin/easyrpg-player +man/man6/easyrpg-player.6.gz From owner-svn-ports-head@freebsd.org Sun Sep 11 16:04:41 2016 Return-Path: Delivered-To: svn-ports-head@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 D4254BD6772; Sun, 11 Sep 2016 16:04:41 +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 975BC74C; Sun, 11 Sep 2016 16:04:41 +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 u8BG4ee8055423; Sun, 11 Sep 2016 16:04:40 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BG4eoQ055420; Sun, 11 Sep 2016 16:04:40 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609111604.u8BG4eoQ055420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 11 Sep 2016 16:04:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421829 - head/net-p2p/sonarr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:04:41 -0000 Author: feld Date: Sun Sep 11 16:04:40 2016 New Revision: 421829 URL: https://svnweb.freebsd.org/changeset/ports/421829 Log: net-p2p/sonarr: Update to 2.0.0.4323 Modified: head/net-p2p/sonarr/Makefile head/net-p2p/sonarr/distinfo head/net-p2p/sonarr/pkg-plist Modified: head/net-p2p/sonarr/Makefile ============================================================================== --- head/net-p2p/sonarr/Makefile Sun Sep 11 15:45:03 2016 (r421828) +++ head/net-p2p/sonarr/Makefile Sun Sep 11 16:04:40 2016 (r421829) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sonarr -PORTVERSION= 2.0.0.4230 +PORTVERSION= 2.0.0.4323 PORTREVISION= 0 CATEGORIES= net-p2p MASTER_SITES= http://download.sonarr.tv/v2/master/mono/ Modified: head/net-p2p/sonarr/distinfo ============================================================================== --- head/net-p2p/sonarr/distinfo Sun Sep 11 15:45:03 2016 (r421828) +++ head/net-p2p/sonarr/distinfo Sun Sep 11 16:04:40 2016 (r421829) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468025509 -SHA256 (NzbDrone.master.2.0.0.4230.mono.tar.gz) = a696190f046b5aeb56f9dce2d5a50f66307ceafe97dd0f85b29ce20bcb06dd9a -SIZE (NzbDrone.master.2.0.0.4230.mono.tar.gz) = 6428196 +TIMESTAMP = 1473608492 +SHA256 (NzbDrone.master.2.0.0.4323.mono.tar.gz) = 9d042272003583552e233d2a748ec87d7f45cf3289291b8b7577d4c9d9f9a0b0 +SIZE (NzbDrone.master.2.0.0.4323.mono.tar.gz) = 6436479 Modified: head/net-p2p/sonarr/pkg-plist ============================================================================== --- head/net-p2p/sonarr/pkg-plist Sun Sep 11 15:45:03 2016 (r421828) +++ head/net-p2p/sonarr/pkg-plist Sun Sep 11 16:04:40 2016 (r421829) @@ -70,7 +70,6 @@ %%DATADIR%%/NzbDrone.exe.mdb %%DATADIR%%/OAuth.dll %%DATADIR%%/OAuth.dll.mdb -%%DATADIR%%/Omu.ValueInjecter.dll %%DATADIR%%/Org.Mentalis.dll %%DATADIR%%/Owin.dll %%DATADIR%%/Prowlin.dll From owner-svn-ports-head@freebsd.org Sun Sep 11 16:05:47 2016 Return-Path: Delivered-To: svn-ports-head@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 67C37BD67B6; Sun, 11 Sep 2016 16:05:47 +0000 (UTC) (envelope-from amdmi3@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 2674982B; Sun, 11 Sep 2016 16:05:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BG5kA4055598; Sun, 11 Sep 2016 16:05:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BG5kOX055594; Sun, 11 Sep 2016 16:05:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111605.u8BG5kOX055594@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:05:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421830 - head/games/manaplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:05:47 -0000 Author: amdmi3 Date: Sun Sep 11 16:05:45 2016 New Revision: 421830 URL: https://svnweb.freebsd.org/changeset/ports/421830 Log: - Update to 1.6.8.14 PR: 212175 Submitted by: monwarez@mailoo.org (maintainer) Modified: head/games/manaplus/Makefile head/games/manaplus/distinfo head/games/manaplus/pkg-plist Modified: head/games/manaplus/Makefile ============================================================================== --- head/games/manaplus/Makefile Sun Sep 11 16:04:40 2016 (r421829) +++ head/games/manaplus/Makefile Sun Sep 11 16:05:45 2016 (r421830) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= manaplus -PORTVERSION= 1.6.7.2 +PORTVERSION= 1.6.8.14 CATEGORIES= games MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/ Modified: head/games/manaplus/distinfo ============================================================================== --- head/games/manaplus/distinfo Sun Sep 11 16:04:40 2016 (r421829) +++ head/games/manaplus/distinfo Sun Sep 11 16:05:45 2016 (r421830) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468654903 -SHA256 (manaplus-1.6.7.2.tar.xz) = 9eca7734dbf32f6a333f6e3660e9bdc8b4ef9bc51e506961c6d61f9996416f29 -SIZE (manaplus-1.6.7.2.tar.xz) = 9747392 +TIMESTAMP = 1472108360 +SHA256 (manaplus-1.6.8.14.tar.xz) = ce590caff204f6fdfe1b33aca466e1c115dd444d1ef1f525334782670d2750d5 +SIZE (manaplus-1.6.8.14.tar.xz) = 9796608 Modified: head/games/manaplus/pkg-plist ============================================================================== --- head/games/manaplus/pkg-plist Sun Sep 11 16:04:40 2016 (r421829) +++ head/games/manaplus/pkg-plist Sun Sep 11 16:05:45 2016 (r421830) @@ -196,6 +196,18 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/help/download.txt %%DATADIR%%/data/help/footer.txt %%DATADIR%%/data/help/header.txt +%%DATADIR%%/data/help/idx/about-tmw.idx +%%DATADIR%%/data/help/idx/about.idx +%%DATADIR%%/data/help/idx/chatcommands.idx +%%DATADIR%%/data/help/idx/chatguild.idx +%%DATADIR%%/data/help/idx/chatparty.idx +%%DATADIR%%/data/help/idx/download.idx +%%DATADIR%%/data/help/idx/index.idx +%%DATADIR%%/data/help/idx/otherteam.idx +%%DATADIR%%/data/help/idx/skills.idx +%%DATADIR%%/data/help/idx/support.idx +%%DATADIR%%/data/help/idx/tags.idx +%%DATADIR%%/data/help/idx/team.idx %%DATADIR%%/data/help/index.txt %%DATADIR%%/data/help/otherteam.txt %%DATADIR%%/data/help/searchmany.txt @@ -256,25 +268,19 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/sfx/system/send.ogg %%DATADIR%%/data/sfx/system/start.ogg %%DATADIR%%/data/sfx/system/watcher.ogg -%%DATADIR%%/data/help/idx/about-tmw.idx -%%DATADIR%%/data/help/idx/about.idx -%%DATADIR%%/data/help/idx/chatcommands.idx -%%DATADIR%%/data/help/idx/chatguild.idx -%%DATADIR%%/data/help/idx/chatparty.idx -%%DATADIR%%/data/help/idx/download.idx -%%DATADIR%%/data/help/idx/index.idx -%%DATADIR%%/data/help/idx/otherteam.idx -%%DATADIR%%/data/help/idx/skills.idx -%%DATADIR%%/data/help/idx/support.idx -%%DATADIR%%/data/help/idx/tags.idx -%%DATADIR%%/data/help/idx/team.idx %%DATADIR%%/data/test/arrow_up.png %%DATADIR%%/data/test/arrow_up_A.png %%DATADIR%%/data/test/arrow_up_B.png %%DATADIR%%/data/test/arrow_up_S.png +%%DATADIR%%/data/test/dye.png +%%DATADIR%%/data/test/equipmentwindow.xml +%%DATADIR%%/data/test/items.xml %%DATADIR%%/data/test/palette.gpl +%%DATADIR%%/data/test/paths.xml +%%DATADIR%%/data/test/quests.xml %%DATADIR%%/data/test/serverlistplus.xml %%DATADIR%%/data/test/simplefile.txt +%%DATADIR%%/data/test/units.xml %%DATADIR%%/data/themes/blacknblack/bubble.png %%DATADIR%%/data/themes/blacknblack/colors.xml %%DATADIR%%/data/themes/blacknblack/emotetabs.xml @@ -364,8 +370,8 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/themes/golden-delicious/listbox_xhigh.xml %%DATADIR%%/data/themes/golden-delicious/listbox_xxhigh.xml %%DATADIR%%/data/themes/golden-delicious/login.xml -%%DATADIR%%/data/themes/golden-delicious/map.xml %%DATADIR%%/data/themes/golden-delicious/mailedit.xml +%%DATADIR%%/data/themes/golden-delicious/map.xml %%DATADIR%%/data/themes/golden-delicious/ministatus.xml %%DATADIR%%/data/themes/golden-delicious/mouse.png %%DATADIR%%/data/themes/golden-delicious/npc.xml @@ -477,8 +483,8 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/themes/jewelry/listbox_xhigh.xml %%DATADIR%%/data/themes/jewelry/listbox_xxhigh.xml %%DATADIR%%/data/themes/jewelry/login.xml -%%DATADIR%%/data/themes/jewelry/map.xml %%DATADIR%%/data/themes/jewelry/mailedit.xml +%%DATADIR%%/data/themes/jewelry/map.xml %%DATADIR%%/data/themes/jewelry/ministatus.xml %%DATADIR%%/data/themes/jewelry/mouse.png %%DATADIR%%/data/themes/jewelry/npc.xml @@ -492,8 +498,8 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/themes/jewelry/popup_xhigh.xml %%DATADIR%%/data/themes/jewelry/popup_xxhigh.xml %%DATADIR%%/data/themes/jewelry/popupbrowserbox.xml -%%DATADIR%%/data/themes/jewelry/popupbrowserbox_medium.xml %%DATADIR%%/data/themes/jewelry/popupbrowserbox_high.xml +%%DATADIR%%/data/themes/jewelry/popupbrowserbox_medium.xml %%DATADIR%%/data/themes/jewelry/popupbrowserbox_xhigh.xml %%DATADIR%%/data/themes/jewelry/popupbrowserbox_xxhigh.xml %%DATADIR%%/data/themes/jewelry/popuplist.xml From owner-svn-ports-head@freebsd.org Sun Sep 11 16:11:54 2016 Return-Path: Delivered-To: svn-ports-head@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 7C064BD6947; Sun, 11 Sep 2016 16:11:54 +0000 (UTC) (envelope-from amdmi3@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 4D155C46; Sun, 11 Sep 2016 16:11:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGBrEP057292; Sun, 11 Sep 2016 16:11:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGBrKl057291; Sun, 11 Sep 2016 16:11:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111611.u8BGBrKl057291@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:11:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421831 - head/security/obfsclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:11:54 -0000 Author: amdmi3 Date: Sun Sep 11 16:11:53 2016 New Revision: 421831 URL: https://svnweb.freebsd.org/changeset/ports/421831 Log: - Add LICENSE - Switch to USES=localbase - Switch to new test framework - Don't install license as documentation Approved by: portmgr blanket Modified: head/security/obfsclient/Makefile Modified: head/security/obfsclient/Makefile ============================================================================== --- head/security/obfsclient/Makefile Sun Sep 11 16:05:45 2016 (r421830) +++ head/security/obfsclient/Makefile Sun Sep 11 16:11:53 2016 (r421831) @@ -10,6 +10,10 @@ CATEGORIES= security MAINTAINER= fk@fabiankeil.de COMMENT= Tor-managed pluggable transport client +LICENSE= BSD2CLAUSE MIT ISCL BSD3CLAUSE +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= liballium-1.0.so:devel/liballium \ libevent.so:devel/libevent2 @@ -17,19 +21,9 @@ USE_GITHUB= yes GH_ACCOUNT= Yawning GNU_CONFIGURE= yes -USES= autoreconf compiler:c++11-lib pkgconfig tar:bzip2 - -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib +USES= autoreconf compiler:c++11-lib localbase pkgconfig +TEST_TARGET= check PLIST_FILES= bin/${PORTNAME} -PORTDOCS= COPYING - -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR} - -regression-test: build - (cd ${WRKSRC} && make check) .include From owner-svn-ports-head@freebsd.org Sun Sep 11 16:34:38 2016 Return-Path: Delivered-To: svn-ports-head@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 B1D1DBD609F; Sun, 11 Sep 2016 16:34:38 +0000 (UTC) (envelope-from olivierd@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 67A1DCFA; Sun, 11 Sep 2016 16:34:38 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGYbxi066826; Sun, 11 Sep 2016 16:34:37 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGYbpi066823; Sun, 11 Sep 2016 16:34:37 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609111634.u8BGYbpi066823@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 11 Sep 2016 16:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421832 - head/deskutils/xfce4-volumed-pulse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:34:38 -0000 Author: olivierd Date: Sun Sep 11 16:34:37 2016 New Revision: 421832 URL: https://svnweb.freebsd.org/changeset/ports/421832 Log: - Update to 0.2.1, it's now hosted on xfce.org - Sort USES Modified: head/deskutils/xfce4-volumed-pulse/Makefile head/deskutils/xfce4-volumed-pulse/distinfo head/deskutils/xfce4-volumed-pulse/pkg-descr Modified: head/deskutils/xfce4-volumed-pulse/Makefile ============================================================================== --- head/deskutils/xfce4-volumed-pulse/Makefile Sun Sep 11 16:11:53 2016 (r421831) +++ head/deskutils/xfce4-volumed-pulse/Makefile Sun Sep 11 16:34:37 2016 (r421832) @@ -2,11 +2,9 @@ # $FreeBSD$ PORTNAME= xfce4-volumed-pulse -PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTVERSION= 0.2.1 CATEGORIES= deskutils xfce -MASTER_SITES= https://launchpadlibrarian.net/133628016/ \ - https://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ +MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org @@ -19,7 +17,7 @@ LIB_DEPENDS= libpulse.so:audio/pulseaudi libnotify.so:devel/libnotify \ libkeybinder.so:x11/keybinder -USES= pkgconfig gmake xfce tar:bz2 +USES= gmake libtool pkgconfig tar:bz2 xfce GNU_CONFIGURE= yes USE_GNOME= glib20 gtk20 USE_XFCE= xfconf Modified: head/deskutils/xfce4-volumed-pulse/distinfo ============================================================================== --- head/deskutils/xfce4-volumed-pulse/distinfo Sun Sep 11 16:11:53 2016 (r421831) +++ head/deskutils/xfce4-volumed-pulse/distinfo Sun Sep 11 16:34:37 2016 (r421832) @@ -1,2 +1,3 @@ -SHA256 (xfce4/xfce4-volumed-pulse-0.2.0.tar.bz2) = 6930034a30bfa54106f3c76ea8e50f578426f5e6151c0e82fda04e6d127de550 -SIZE (xfce4/xfce4-volumed-pulse-0.2.0.tar.bz2) = 282403 +TIMESTAMP = 1473606537 +SHA256 (xfce4/xfce4-volumed-pulse-0.2.1.tar.bz2) = d7400f027854d202dafe43e0d0e15e7529dc89e963ded8706e8359703bd49083 +SIZE (xfce4/xfce4-volumed-pulse-0.2.1.tar.bz2) = 310534 Modified: head/deskutils/xfce4-volumed-pulse/pkg-descr ============================================================================== --- head/deskutils/xfce4-volumed-pulse/pkg-descr Sun Sep 11 16:11:53 2016 (r421831) +++ head/deskutils/xfce4-volumed-pulse/pkg-descr Sun Sep 11 16:34:37 2016 (r421832) @@ -5,4 +5,4 @@ card/sink/track to act on. This is a fork of the original xfce4-volumed to drop GStreamer support and use PulseAudio instead. -WWW: https://launchpad.net/xfce4-volumed-pulse +WWW: https://git.xfce.org/apps/xfce4-volumed-pulse/ From owner-svn-ports-head@freebsd.org Sun Sep 11 16:37:23 2016 Return-Path: Delivered-To: svn-ports-head@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 7D19FBD6115; Sun, 11 Sep 2016 16:37:23 +0000 (UTC) (envelope-from amdmi3@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 4FB2BDFF; Sun, 11 Sep 2016 16:37:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGbMsv067029; Sun, 11 Sep 2016 16:37:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGbMMx067027; Sun, 11 Sep 2016 16:37:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111637.u8BGbMMx067027@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:37:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421833 - in head/ftp/ftpsesame: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:37:23 -0000 Author: amdmi3 Date: Sun Sep 11 16:37:22 2016 New Revision: 421833 URL: https://svnweb.freebsd.org/changeset/ports/421833 Log: - Add LICENSE - Regenerate patches Modified: head/ftp/ftpsesame/Makefile head/ftp/ftpsesame/files/patch-ftpsesame.c Modified: head/ftp/ftpsesame/Makefile ============================================================================== --- head/ftp/ftpsesame/Makefile Sun Sep 11 16:34:37 2016 (r421832) +++ head/ftp/ftpsesame/Makefile Sun Sep 11 16:37:22 2016 (r421833) @@ -10,6 +10,8 @@ MASTER_SITES= http://www.sentia.org/down MAINTAINER= ports@FreeBSD.org COMMENT= Helper for pf firewall to pass FTP protocol +LICENSE= ISCL + PLIST_FILES= bin/ftpsesame man/man8/ftpsesame.8.gz USE_RC_SUBR= ftpsesame Modified: head/ftp/ftpsesame/files/patch-ftpsesame.c ============================================================================== --- head/ftp/ftpsesame/files/patch-ftpsesame.c Sun Sep 11 16:34:37 2016 (r421832) +++ head/ftp/ftpsesame/files/patch-ftpsesame.c Sun Sep 11 16:37:22 2016 (r421833) @@ -1,6 +1,6 @@ ---- ftpsesame.c.orig Mon May 1 01:30:43 2006 -+++ ftpsesame.c Mon May 1 01:30:51 2006 -@@ -663,7 +663,7 @@ +--- ftpsesame.c.orig 2004-10-05 12:07:24 UTC ++++ ftpsesame.c +@@ -663,7 +663,7 @@ sig_close(int sig) gotsig_close = 1; } From owner-svn-ports-head@freebsd.org Sun Sep 11 16:38:33 2016 Return-Path: Delivered-To: svn-ports-head@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 A70AABD615B; Sun, 11 Sep 2016 16:38:33 +0000 (UTC) (envelope-from amdmi3@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 699B0EE2; Sun, 11 Sep 2016 16:38:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGcWh4067206; Sun, 11 Sep 2016 16:38:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGcWRc067202; Sun, 11 Sep 2016 16:38:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111638.u8BGcWRc067202@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:38:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421834 - in head/devel/argp-standalone: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:38:33 -0000 Author: amdmi3 Date: Sun Sep 11 16:38:32 2016 New Revision: 421834 URL: https://svnweb.freebsd.org/changeset/ports/421834 Log: - Add LICENSE - Regenerate patches Modified: head/devel/argp-standalone/Makefile head/devel/argp-standalone/files/patch-Makefile.am head/devel/argp-standalone/files/patch-configure.ac head/devel/argp-standalone/files/patch-testsuite_Makefile.am Modified: head/devel/argp-standalone/Makefile ============================================================================== --- head/devel/argp-standalone/Makefile Sun Sep 11 16:37:22 2016 (r421833) +++ head/devel/argp-standalone/Makefile Sun Sep 11 16:38:32 2016 (r421834) @@ -11,6 +11,9 @@ MASTER_SITES= http://www.lysator.liu.se/ MAINTAINER= ports@FreeBSD.org COMMENT= Standalone version of arguments parsing functions from GLIBC +LICENSE= LGPL20+ PD +LICENSE_COMB= multi + USES= autoreconf libtool USE_CSTD= gnu89 GNU_CONFIGURE= yes Modified: head/devel/argp-standalone/files/patch-Makefile.am ============================================================================== --- head/devel/argp-standalone/files/patch-Makefile.am Sun Sep 11 16:37:22 2016 (r421833) +++ head/devel/argp-standalone/files/patch-Makefile.am Sun Sep 11 16:38:32 2016 (r421834) @@ -1,5 +1,5 @@ ---- Makefile.am.orig 2009-05-28 15:19:50.000000000 +0200 -+++ Makefile.am 2009-05-28 15:30:57.000000000 +0200 +--- Makefile.am.orig 2004-02-23 17:57:28 UTC ++++ Makefile.am @@ -21,20 +21,20 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = . testsuite Modified: head/devel/argp-standalone/files/patch-configure.ac ============================================================================== --- head/devel/argp-standalone/files/patch-configure.ac Sun Sep 11 16:37:22 2016 (r421833) +++ head/devel/argp-standalone/files/patch-configure.ac Sun Sep 11 16:38:32 2016 (r421834) @@ -1,6 +1,6 @@ ---- configure.ac.orig 2009-05-28 15:20:01.000000000 +0200 -+++ configure.ac 2009-05-28 15:21:06.000000000 +0200 -@@ -17,6 +17,7 @@ +--- configure.ac.orig 2004-02-23 17:57:29 UTC ++++ configure.ac +@@ -17,6 +17,7 @@ AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_RANLIB AM_PROG_CC_STDC Modified: head/devel/argp-standalone/files/patch-testsuite_Makefile.am ============================================================================== --- head/devel/argp-standalone/files/patch-testsuite_Makefile.am Sun Sep 11 16:37:22 2016 (r421833) +++ head/devel/argp-standalone/files/patch-testsuite_Makefile.am Sun Sep 11 16:38:32 2016 (r421834) @@ -1,6 +1,6 @@ ---- testsuite/Makefile.am.orig 2009-05-28 15:21:33.000000000 +0200 -+++ testsuite/Makefile.am 2009-05-28 15:21:41.000000000 +0200 -@@ -5,7 +5,7 @@ +--- testsuite/Makefile.am.orig 2003-02-04 19:38:52 UTC ++++ testsuite/Makefile.am +@@ -5,7 +5,7 @@ TS_ALL = $(TS_PROGS) $(TS_SH) noinst_PROGRAMS = $(TS_PROGS) ex1 ex3 ex4 From owner-svn-ports-head@freebsd.org Sun Sep 11 16:40:13 2016 Return-Path: Delivered-To: svn-ports-head@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 EBD6ABD61F6; Sun, 11 Sep 2016 16:40:13 +0000 (UTC) (envelope-from amdmi3@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 A4F62FE5; Sun, 11 Sep 2016 16:40:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGeCpr067410; Sun, 11 Sep 2016 16:40:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGeCOp067406; Sun, 11 Sep 2016 16:40:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111640.u8BGeCOp067406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:40:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421835 - in head/net-mgmt/bgpq: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:40:14 -0000 Author: amdmi3 Date: Sun Sep 11 16:40:12 2016 New Revision: 421835 URL: https://svnweb.freebsd.org/changeset/ports/421835 Log: - Add LICENSE - Switch to USES=tar - Cosmetic fixes Modified: head/net-mgmt/bgpq/Makefile head/net-mgmt/bgpq/files/patch-Makefile.in head/net-mgmt/bgpq/pkg-descr Modified: head/net-mgmt/bgpq/Makefile ============================================================================== --- head/net-mgmt/bgpq/Makefile Sun Sep 11 16:38:32 2016 (r421834) +++ head/net-mgmt/bgpq/Makefile Sun Sep 11 16:40:12 2016 (r421835) @@ -5,13 +5,17 @@ PORTNAME= bgpq PORTVERSION= 1.0.9.9 CATEGORIES= net-mgmt MASTER_SITES= http://snar.spb.ru/prog/bgpq/ -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Bgpq - lightweight access-list generator for Cisco routers -PLIST_FILES= bin/bgpq man/man8/bgpq.8.gz +LICENSE= BSD2CLAUSE BSD4CLAUSE # latter for utils.c +LICENSE_COMB= multi +LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/COPYRIGHT +USES= tar:tgz GNU_CONFIGURE= yes +PLIST_FILES= bin/bgpq man/man8/bgpq.8.gz + .include Modified: head/net-mgmt/bgpq/files/patch-Makefile.in ============================================================================== --- head/net-mgmt/bgpq/files/patch-Makefile.in Sun Sep 11 16:38:32 2016 (r421834) +++ head/net-mgmt/bgpq/files/patch-Makefile.in Sun Sep 11 16:40:12 2016 (r421835) @@ -6,8 +6,8 @@ install: bgpq - $(INSTALL) -s -m 755 bgpq @prefix@@bindir@ - $(INSTALL) -m 644 bgpq.8 @prefix@@mandir@/man8 -+ $(INSTALL) -s -m 755 bgpq $(DESTDIR)@prefix@@bindir@ -+ $(INSTALL) -m 644 bgpq.8 $(DESTDIR)@mandir@/man8 ++ $(BSD_INSTALL_PROGRAM) bgpq $(DESTDIR)@prefix@@bindir@ ++ $(BSD_INSTALL_MAN) bgpq.8 $(DESTDIR)@mandir@/man8 test: bgpq @rm -f test.out ] Modified: head/net-mgmt/bgpq/pkg-descr ============================================================================== --- head/net-mgmt/bgpq/pkg-descr Sun Sep 11 16:38:32 2016 (r421834) +++ head/net-mgmt/bgpq/pkg-descr Sun Sep 11 16:40:12 2016 (r421835) @@ -1,4 +1,3 @@ - This program is a lightweight access- and prefix-list generator for Cisco routers and GateD/Zebra. Access lists are generated based on RADB/RIPE data. From owner-svn-ports-head@freebsd.org Sun Sep 11 16:41:01 2016 Return-Path: Delivered-To: svn-ports-head@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 7D3CBBD6280; Sun, 11 Sep 2016 16:41:01 +0000 (UTC) (envelope-from amdmi3@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 3D38719A; Sun, 11 Sep 2016 16:41:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGf0Vc067597; Sun, 11 Sep 2016 16:41:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGf0EU067589; Sun, 11 Sep 2016 16:41:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111641.u8BGf0EU067589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:41:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421836 - in head/ftp/frox: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:41:01 -0000 Author: amdmi3 Date: Sun Sep 11 16:40:59 2016 New Revision: 421836 URL: https://svnweb.freebsd.org/changeset/ports/421836 Log: - Fix LICENSE - Add LICENSE_FILE - Switch to options helpers Modified: head/ftp/frox/Makefile head/ftp/frox/files/patch-lib-sstrlib-sstr_io.c head/ftp/frox/files/patch-src-bsd.c head/ftp/frox/files/patch-src-cache.c head/ftp/frox/files/patch-src_frox.conf Modified: head/ftp/frox/Makefile ============================================================================== --- head/ftp/frox/Makefile Sun Sep 11 16:40:12 2016 (r421835) +++ head/ftp/frox/Makefile Sun Sep 11 16:40:59 2016 (r421836) @@ -12,10 +12,12 @@ MASTER_SITES= http://www.hollo.org/frox/ MAINTAINER= ports@FreeBSD.org COMMENT= Transparent FTP proxy with caching support -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake tar:bzip2 GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-configfile=${PREFIX}/etc/frox.conf USE_RC_SUBR= frox SUB_FILES= pkg-message @@ -23,14 +25,12 @@ SUB_FILES= pkg-message PORTDOCS= SECURITY CREDITS ChangeLog FAQ.html FAQ-1.html FAQ-2.html \ FAQ-3.html FAQ-4.html FAQ-5.html FAQ-6.html FAQ-7.html \ FAQ-8.html -PLIST_FILES= sbin/frox ${EXAMPLESDIR:S,${PREFIX}/,,}/frox.conf \ - man/man1/frox.1.gz man/man5/frox.conf.5.gz - -PKGMESSAGE= ${WRKDIR}/pkg-message +PORTEXAMPLES= * +PLIST_FILES= sbin/frox \ + man/man1/frox.1.gz \ + man/man5/frox.conf.5.gz -CONFIGURE_ARGS= --enable-configfile=${PREFIX}/etc/frox.conf - -OPTIONS_DEFINE= VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN DOCS +OPTIONS_DEFINE= VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN DOCS EXAMPLES OPTIONS_DEFAULT= HTTP_CACHE CCP OPTIONS_RADIO= PFILTER @@ -45,19 +45,23 @@ CCP_DESC= Ftp-proxy style command cont ROOT_RUN_DESC= Allow frox running as root (not recomended) IPFILTER_CONFIGURE_ENABLE= ipfilter -PF_CPPFLAGS= -DPF +PF_CPPFLAGS= -DPF VIRUS_SCAN_CONFIGURE_ENABLE= virus-scan HTTP_CACHE_CONFIGURE_ENABLE= http-cache LOCAL_CACHE_CONFIGURE_ENABLE= local-cache -CCP_CONFIGURE_ENABLE= ccp +CCP_CONFIGURE_ENABLE= ccp ROOT_RUN_CONFIGURE_ARGS= run-as-root do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${STAGEDIR}${PREFIX}/sbin - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${STAGEDIR}${EXAMPLESDIR}/frox.conf ${INSTALL_MAN} ${WRKSRC}/doc/frox.man ${STAGEDIR}${MANPREFIX}/man/man1/frox.1 ${INSTALL_MAN} ${WRKSRC}/doc/frox.conf.man ${STAGEDIR}${MANPREFIX}/man/man5/frox.conf.5 + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${STAGEDIR}${EXAMPLESDIR}/frox.conf + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} Modified: head/ftp/frox/files/patch-lib-sstrlib-sstr_io.c ============================================================================== --- head/ftp/frox/files/patch-lib-sstrlib-sstr_io.c Sun Sep 11 16:40:12 2016 (r421835) +++ head/ftp/frox/files/patch-lib-sstrlib-sstr_io.c Sun Sep 11 16:40:59 2016 (r421836) @@ -1,5 +1,5 @@ ---- lib/sstrlib/sstr_io.c.orig 2005-02-04 13:24:55.000000000 +0300 -+++ lib/sstrlib/sstr_io.c 2007-12-14 18:07:15.000000000 +0300 +--- lib/sstrlib/sstr_io.c.orig 2005-02-04 10:24:55 UTC ++++ lib/sstrlib/sstr_io.c @@ -26,6 +26,7 @@ #include #include @@ -8,7 +8,7 @@ #include "sstr.h" #include "sstr_private.h" -@@ -61,8 +62,14 @@ +@@ -61,8 +62,14 @@ int sstr_apprintf(sstr * p, const char * int sstr_append_read(int fd, sstr * p, int cnt) { int i; Modified: head/ftp/frox/files/patch-src-bsd.c ============================================================================== --- head/ftp/frox/files/patch-src-bsd.c Sun Sep 11 16:40:12 2016 (r421835) +++ head/ftp/frox/files/patch-src-bsd.c Sun Sep 11 16:40:59 2016 (r421836) @@ -1,5 +1,5 @@ ---- src/bsd.c.orig Fri Feb 4 20:54:55 2005 -+++ src/bsd.c Wed Jul 25 01:25:16 2007 +--- src/bsd.c.orig 2005-02-04 10:24:55 UTC ++++ src/bsd.c @@ -30,6 +30,16 @@ #error --enable-transparent-data not supported under BSD #endif @@ -17,7 +17,7 @@ #ifdef IPFILTER #include #include -@@ -51,6 +61,11 @@ +@@ -51,6 +61,11 @@ int os_init(void) if(natfd < 0) write_log(ERROR, "Unable to initialise IPFilter"); #endif @@ -29,7 +29,7 @@ return 0; } -@@ -61,6 +76,11 @@ +@@ -61,6 +76,11 @@ int os_init(void) int get_orig_dest(int fd, struct sockaddr_in *addr) { socklen_t len; @@ -41,11 +41,10 @@ #ifdef IPFILTER struct natlookup nat; struct sockaddr_in from; -@@ -99,6 +119,31 @@ - addr->sin_family = AF_INET; +@@ -100,6 +120,31 @@ int get_orig_dest(int fd, struct sockadd return r2; } -+#endif + #endif +#ifdef PF + getpeername(fd, (struct sockaddr *) &from, &len); + memset(&nl, 0, sizeof(struct pfioc_natlook)); @@ -70,6 +69,7 @@ + return r2; + } + } - #endif ++#endif memcpy(addr, &to, len); return r1; + } Modified: head/ftp/frox/files/patch-src-cache.c ============================================================================== --- head/ftp/frox/files/patch-src-cache.c Sun Sep 11 16:40:12 2016 (r421835) +++ head/ftp/frox/files/patch-src-cache.c Sun Sep 11 16:40:59 2016 (r421836) @@ -3,9 +3,9 @@ Apply patch Patch attached with submission follows: ---- src/cache.c.orig 2008-03-12 16:56:10.000000000 +0200 -+++ src/cache.c 2008-03-12 16:56:10.000000000 +0200 -@@ -364,7 +364,7 @@ +--- src/cache.c.orig 2005-02-04 10:24:55 UTC ++++ src/cache.c +@@ -364,7 +364,7 @@ int setup_fileinfo(sstr * filename) int code; sstr *msg; @@ -14,5 +14,3 @@ Patch attached with submission follows: send_ccommand("SIZE", sstr_buf(filename)); get_message(&code, &msg); if(code / 100 != 2) { - - Modified: head/ftp/frox/files/patch-src_frox.conf ============================================================================== --- head/ftp/frox/files/patch-src_frox.conf Sun Sep 11 16:40:12 2016 (r421835) +++ head/ftp/frox/files/patch-src_frox.conf Sun Sep 11 16:40:59 2016 (r421836) @@ -1,5 +1,5 @@ ---- src/frox.conf.orig Sat Apr 5 17:30:35 2003 -+++ src/frox.conf Mon Apr 7 15:05:51 2003 +--- src/frox.conf.orig 2005-02-04 10:24:55 UTC ++++ src/frox.conf @@ -18,16 +18,13 @@ # commented out to listen on all local IPs. # @@ -18,7 +18,7 @@ # Whether to run from inetd. You should still define Port above, but # it isn't used for much. # -@@ -44,7 +41,7 @@ +@@ -44,7 +41,7 @@ BindToDevice eth0 # comment this out and copy resolver libraries into the chroot jail instead. # See FAQ section 3.2 for details. # @@ -27,7 +27,7 @@ # Another ftp proxy to forward on to. Frox will contact this ftp # proxy, and send it a login name of the form "user@host:port" where -@@ -64,8 +61,8 @@ +@@ -73,8 +70,8 @@ ResolvLoadHack wontresolve.doesntexist.a # you really want to run as root (not a good idea) you must say so # specifically, and have compiled with --enable-run-as-root. # @@ -38,7 +38,7 @@ # This is frox's working directory - it must be specified. Temporary # files and sockets will be created here. If you are using local -@@ -74,8 +71,8 @@ +@@ -83,8 +80,8 @@ ResolvLoadHack wontresolve.doesntexist.a # also chroot to this dir on startup. To avoid this you must specifically # set DontChroot to Yes. # @@ -47,5 +47,5 @@ +WorkingDir /tmp +DontChroot Yes - # Logging level. 0=No logging. 5=Critical errors only. 10= All errors. + # Logging level. 0=No logging. 5=Critical errors only. 10= All errors. # 15=Errors, other important stuf. 20= Errors, connections, cache From owner-svn-ports-head@freebsd.org Sun Sep 11 16:42:04 2016 Return-Path: Delivered-To: svn-ports-head@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 C3146BD64CF; Sun, 11 Sep 2016 16:42:04 +0000 (UTC) (envelope-from amdmi3@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 90476651; Sun, 11 Sep 2016 16:42:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGg3gX070682; Sun, 11 Sep 2016 16:42:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGg3IL070681; Sun, 11 Sep 2016 16:42:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111642.u8BGg3IL070681@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:42:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421837 - head/deskutils/xchm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:42:04 -0000 Author: amdmi3 Date: Sun Sep 11 16:42:03 2016 New Revision: 421837 URL: https://svnweb.freebsd.org/changeset/ports/421837 Log: - Fix LICENSE - Add LICENSE_FILE - Drop unneeded WX_UNICODE - Switch to USES=localbase - Actually disable NLS support when NLS option is off Modified: head/deskutils/xchm/Makefile Modified: head/deskutils/xchm/Makefile ============================================================================== --- head/deskutils/xchm/Makefile Sun Sep 11 16:40:59 2016 (r421836) +++ head/deskutils/xchm/Makefile Sun Sep 11 16:42:03 2016 (r421837) @@ -10,19 +10,20 @@ MASTER_SITES= SF/${PORTNAME}/xCHM/${PORT MAINTAINER= ports@FreeBSD.org COMMENT= Windows HTML Help (.chm) viewer for UNIX -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libchm.so:misc/chmlib -OPTIONS_DEFINE= NLS -OPTIONS_SUB= yes -NLS_USES= gettext - GNU_CONFIGURE= yes +USES= localbase USE_WX= 2.8 -WX_UNICODE= yes WX_CONF_ARGS= absolute -LDFLAGS+= -lpthread -L${LOCALBASE}/lib -CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -lpthread + +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls .include From owner-svn-ports-head@freebsd.org Sun Sep 11 16:42:24 2016 Return-Path: Delivered-To: svn-ports-head@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 13561BD6501; Sun, 11 Sep 2016 16:42:24 +0000 (UTC) (envelope-from amdmi3@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 DA0CB7BE; Sun, 11 Sep 2016 16:42:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGgNFB070810; Sun, 11 Sep 2016 16:42:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGgNHi070803; Sun, 11 Sep 2016 16:42:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111642.u8BGgNHi070803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 16:42:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421838 - in head/mail/whoson: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:42:24 -0000 Author: amdmi3 Date: Sun Sep 11 16:42:22 2016 New Revision: 421838 URL: https://svnweb.freebsd.org/changeset/ports/421838 Log: - Add LICENSE - Switch to options helpers - Regenerate patches Modified: head/mail/whoson/Makefile head/mail/whoson/files/patch-Makefile.in Modified: head/mail/whoson/Makefile ============================================================================== --- head/mail/whoson/Makefile Sun Sep 11 16:42:03 2016 (r421837) +++ head/mail/whoson/Makefile Sun Sep 11 16:42:22 2016 (r421838) @@ -10,6 +10,9 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Implementation of `WHO iS ONline' protocol +LICENSE= PD OpenSSL +LICENSE_COMB= multi + USES= libtool GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-config=${PREFIX}/etc/whoson.conf @@ -21,13 +24,11 @@ PORTDOCS= README ChangeLog OPTIONS_DEFINE= DOCS -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} + @${STRIP_CMD} ${STAGEDIR}/${PREFIX}/lib/libwhoson.so + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}/${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.endif - ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/lib/libwhoson.so.0 .include Modified: head/mail/whoson/files/patch-Makefile.in ============================================================================== --- head/mail/whoson/files/patch-Makefile.in Sun Sep 11 16:42:03 2016 (r421837) +++ head/mail/whoson/files/patch-Makefile.in Sun Sep 11 16:42:22 2016 (r421838) @@ -1,5 +1,5 @@ ---- Makefile.in.orig 2008-01-17 15:59:21.000000000 +0300 -+++ Makefile.in 2008-07-02 19:37:47.000000000 +0400 +--- Makefile.in.orig 2009-04-08 12:35:09 UTC ++++ Makefile.in @@ -336,7 +336,7 @@ whosond_SOURCES = whosond.c mainloop.c l nodist_whosond_SOURCES = servlist.c EXTRA_whosond_SOURCES = serv_tcp.c serv_unix.c serv_unixd.c serv_udp.c From owner-svn-ports-head@freebsd.org Sun Sep 11 16:44:26 2016 Return-Path: Delivered-To: svn-ports-head@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 DAD9DBD65DE; Sun, 11 Sep 2016 16:44:26 +0000 (UTC) (envelope-from tcberner@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 91D17902; Sun, 11 Sep 2016 16:44:26 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGiPpU071610; Sun, 11 Sep 2016 16:44:25 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGiPRg071607; Sun, 11 Sep 2016 16:44:25 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609111644.u8BGiPRg071607@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 11 Sep 2016 16:44:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421839 - head/textproc/libkolabxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:44:27 -0000 Author: tcberner Date: Sun Sep 11 16:44:25 2016 New Revision: 421839 URL: https://svnweb.freebsd.org/changeset/ports/421839 Log: Update textproc/libkolabxml to 1.1.6. As noted by portscout, texproc/libkolabxml 1.1.6 is available. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7855 Modified: head/textproc/libkolabxml/Makefile head/textproc/libkolabxml/distinfo head/textproc/libkolabxml/pkg-plist Modified: head/textproc/libkolabxml/Makefile ============================================================================== --- head/textproc/libkolabxml/Makefile Sun Sep 11 16:42:22 2016 (r421838) +++ head/textproc/libkolabxml/Makefile Sun Sep 11 16:44:25 2016 (r421839) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libkolabxml -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.6 CATEGORIES= textproc MASTER_SITES= http://mirror.kolabsys.com/pub/releases/ Modified: head/textproc/libkolabxml/distinfo ============================================================================== --- head/textproc/libkolabxml/distinfo Sun Sep 11 16:42:22 2016 (r421838) +++ head/textproc/libkolabxml/distinfo Sun Sep 11 16:44:25 2016 (r421839) @@ -1,2 +1,3 @@ -SHA256 (libkolabxml-1.1.1.tar.gz) = 98b6a9fb9e792fd0a1e4e249f22e5f85670a9a4432c5b58b1b625b2985042f3b -SIZE (libkolabxml-1.1.1.tar.gz) = 128675 +TIMESTAMP = 1473183297 +SHA256 (libkolabxml-1.1.6.tar.gz) = e48d7f5de1860a381da27981f6c70de1c9f38c4cd536bc6558b6529ce95f0677 +SIZE (libkolabxml-1.1.6.tar.gz) = 128843 Modified: head/textproc/libkolabxml/pkg-plist ============================================================================== --- head/textproc/libkolabxml/pkg-plist Sun Sep 11 16:42:22 2016 (r421838) +++ head/textproc/libkolabxml/pkg-plist Sun Sep 11 16:44:25 2016 (r421839) @@ -17,4 +17,4 @@ lib/cmake/Libkolabxml/LibkolabxmlTargets lib/cmake/Libkolabxml/LibkolabxmlTargets.cmake lib/libkolabxml.so lib/libkolabxml.so.1 -lib/libkolabxml.so.1.1.1 +lib/libkolabxml.so.%%SHLIB_VER%% From owner-svn-ports-head@freebsd.org Sun Sep 11 16:46:05 2016 Return-Path: Delivered-To: svn-ports-head@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 49C73BD6635; Sun, 11 Sep 2016 16:46:05 +0000 (UTC) (envelope-from tcberner@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 0F6129E3; Sun, 11 Sep 2016 16:46:04 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGk4Gt071795; Sun, 11 Sep 2016 16:46:04 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGk4S6071792; Sun, 11 Sep 2016 16:46:04 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609111646.u8BGk4S6071792@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 11 Sep 2016 16:46:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421840 - head/devel/libkolab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:46:05 -0000 Author: tcberner Date: Sun Sep 11 16:46:03 2016 New Revision: 421840 URL: https://svnweb.freebsd.org/changeset/ports/421840 Log: Update devel/libkolab to 0.6.3. Note, that 0.6.3 is the last version for Qt4. From 1.0.0 on libkolab uses Qt5 -- so we can't stop portscout from complaining :) While here, make stage-qa happy. > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libxerces-c-3.1.so from textproc/xerces-c3 but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libxerces-c-3.1.so:textproc/xerces-c3 > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libboost_thread.so.1.55.0 from devel/boost-libs but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libboost_thread.so:devel/boost-libs > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libboost_system.so.1.55.0 from devel/boost-libs but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libboost_system.so:devel/boost-libs > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libboost_chrono.so.1.55.0 from devel/boost-libs but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libboost_chrono.so:devel/boost-libs > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libboost_date_time.so.1.55.0 from devel/boost-libs but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libboost_date_time.so:devel/boost-libs > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libboost_atomic.so.1.55.0 from devel/boost-libs but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libboost_atomic.so:devel/boost-libs > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/libcurl.so.4 from ftp/curl but it is not declared as a dependency > Warning: you need LIB_DEPENDS+=libcurl.so:ftp/curl > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/qt4/libQtNetwork.so.4 from net/qt4-network but it is not declared as a dependency > Warning: you need USE_QT4+=network > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/qt4/libQtDBus.so.4 from devel/dbus-qt4 but it is not declared as a dependency > Warning: you need USE_QT4+=dbus > Error: /usr/local/lib/libkolab.so.0.6.3 is linked to /usr/local/lib/qt4/libQtSvg.so.4 from graphics/qt4-svg but it is not declared as a dependency > Warning: you need USE_QT4+=svg Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7856 Modified: head/devel/libkolab/Makefile head/devel/libkolab/distinfo head/devel/libkolab/pkg-plist Modified: head/devel/libkolab/Makefile ============================================================================== --- head/devel/libkolab/Makefile Sun Sep 11 16:44:25 2016 (r421839) +++ head/devel/libkolab/Makefile Sun Sep 11 16:46:03 2016 (r421840) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libkolab -PORTVERSION= 0.5.3 +PORTVERSION= 0.6.3 CATEGORIES= devel kde MASTER_SITES= http://mirror.kolabsys.com/pub/releases/ @@ -12,7 +12,10 @@ COMMENT= Advanced Kolab Object Handling # itself to be LGPL3-licensed (and so are all the installed headers). LICENSE= LGPL3 -LIB_DEPENDS= libkolabxml.so:textproc/libkolabxml +LIB_DEPENDS= libboost_system.so:devel/boost-libs \ + libcurl.so:ftp/curl \ + libkolabxml.so:textproc/libkolabxml \ + libxerces-c-3.1.so:textproc/xerces-c3 # TODO: Conditionally enable the bindings based on OPTIONs. CMAKE_ARGS= -DBUILD_TESTS:BOOL=OFF \ @@ -22,7 +25,7 @@ CMAKE_ARGS= -DBUILD_TESTS:BOOL=OFF \ USES= cmake:outsource kde:4 USE_KDE= automoc4 kdelibs pimlibs USE_LDCONFIG= yes -USE_QT4= corelib gui xml \ +USE_QT4= corelib dbus gui network svg xml \ moc_build qmake_build rcc_build uic_build PLIST_SUB= SHLIB_VER=${PORTVERSION} Modified: head/devel/libkolab/distinfo ============================================================================== --- head/devel/libkolab/distinfo Sun Sep 11 16:44:25 2016 (r421839) +++ head/devel/libkolab/distinfo Sun Sep 11 16:46:03 2016 (r421840) @@ -1,2 +1,3 @@ -SHA256 (libkolab-0.5.3.tar.gz) = a90c4d892850e1795aec97f14c887f41463d0cad573926cdafd17f972e9d2726 -SIZE (libkolab-0.5.3.tar.gz) = 186440 +TIMESTAMP = 1473595778 +SHA256 (libkolab-0.6.3.tar.gz) = 9d71e5febb44478fe434ead5b3948d4d63d7ff2c5e9a378d32693adcf2b51bdf +SIZE (libkolab-0.6.3.tar.gz) = 192648 Modified: head/devel/libkolab/pkg-plist ============================================================================== --- head/devel/libkolab/pkg-plist Sun Sep 11 16:44:25 2016 (r421839) +++ head/devel/libkolab/pkg-plist Sun Sep 11 16:46:03 2016 (r421840) @@ -7,6 +7,7 @@ include/kolab/kcalconversion.h include/kolab/kolab_export.h include/kolab/kolabdefinitions.h include/kolab/kolabobject.h +include/kolab/libkolab_config.h include/kolab/mimeobject.h include/kolab/xmlobject.h lib/cmake/Libkolab/LibkolabConfig.cmake From owner-svn-ports-head@freebsd.org Sun Sep 11 16:53:51 2016 Return-Path: Delivered-To: svn-ports-head@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 6AC0FBD696D; Sun, 11 Sep 2016 16:53:51 +0000 (UTC) (envelope-from trociny@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 3D66C1C5; Sun, 11 Sep 2016 16:53:51 +0000 (UTC) (envelope-from trociny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGroG5075450; Sun, 11 Sep 2016 16:53:50 GMT (envelope-from trociny@FreeBSD.org) Received: (from trociny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGroPI075448; Sun, 11 Sep 2016 16:53:50 GMT (envelope-from trociny@FreeBSD.org) Message-Id: <201609111653.u8BGroPI075448@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trociny set sender to trociny@FreeBSD.org using -f From: Mikolaj Golub Date: Sun, 11 Sep 2016 16:53:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421841 - head/sysutils/cmogstored X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:53:51 -0000 Author: trociny Date: Sun Sep 11 16:53:50 2016 New Revision: 421841 URL: https://svnweb.freebsd.org/changeset/ports/421841 Log: update to 1.6.0 Modified: head/sysutils/cmogstored/Makefile head/sysutils/cmogstored/distinfo Modified: head/sysutils/cmogstored/Makefile ============================================================================== --- head/sysutils/cmogstored/Makefile Sun Sep 11 16:46:03 2016 (r421840) +++ head/sysutils/cmogstored/Makefile Sun Sep 11 16:53:50 2016 (r421841) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cmogstored -PORTVERSION= 1.5.0 +PORTVERSION= 1.6.0 CATEGORIES= sysutils MASTER_SITES= http://bogomips.org/cmogstored/files/ Modified: head/sysutils/cmogstored/distinfo ============================================================================== --- head/sysutils/cmogstored/distinfo Sun Sep 11 16:46:03 2016 (r421840) +++ head/sysutils/cmogstored/distinfo Sun Sep 11 16:53:50 2016 (r421841) @@ -1,2 +1,3 @@ -SHA256 (cmogstored-1.5.0.tar.gz) = b83b954874ef201b6e6616ec3e60f517c6a01f7bc6eda1fbb3901558e34c1388 -SIZE (cmogstored-1.5.0.tar.gz) = 965846 +TIMESTAMP = 1473602896 +SHA256 (cmogstored-1.6.0.tar.gz) = f50d3449f3cdf8e6b67a77e42c6fc2055a7708090a52a7bebd601e3827e8a22f +SIZE (cmogstored-1.6.0.tar.gz) = 978167 From owner-svn-ports-head@freebsd.org Sun Sep 11 16:55:09 2016 Return-Path: Delivered-To: svn-ports-head@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 C9EF8BD69EE; Sun, 11 Sep 2016 16:55:09 +0000 (UTC) (envelope-from trociny@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 9AF342EC; Sun, 11 Sep 2016 16:55:09 +0000 (UTC) (envelope-from trociny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BGt8Rc075636; Sun, 11 Sep 2016 16:55:08 GMT (envelope-from trociny@FreeBSD.org) Received: (from trociny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BGt8vm075634; Sun, 11 Sep 2016 16:55:08 GMT (envelope-from trociny@FreeBSD.org) Message-Id: <201609111655.u8BGt8vm075634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trociny set sender to trociny@FreeBSD.org using -f From: Mikolaj Golub Date: Sun, 11 Sep 2016 16:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421842 - head/sysutils/rubygem-mogilefs-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 16:55:09 -0000 Author: trociny Date: Sun Sep 11 16:55:08 2016 New Revision: 421842 URL: https://svnweb.freebsd.org/changeset/ports/421842 Log: update to 3.10.0 Modified: head/sysutils/rubygem-mogilefs-client/Makefile head/sysutils/rubygem-mogilefs-client/distinfo Modified: head/sysutils/rubygem-mogilefs-client/Makefile ============================================================================== --- head/sysutils/rubygem-mogilefs-client/Makefile Sun Sep 11 16:53:50 2016 (r421841) +++ head/sysutils/rubygem-mogilefs-client/Makefile Sun Sep 11 16:55:08 2016 (r421842) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mogilefs-client -PORTVERSION= 3.9.0 +PORTVERSION= 3.10.0 CATEGORIES= sysutils MASTER_SITES= RG Modified: head/sysutils/rubygem-mogilefs-client/distinfo ============================================================================== --- head/sysutils/rubygem-mogilefs-client/distinfo Sun Sep 11 16:53:50 2016 (r421841) +++ head/sysutils/rubygem-mogilefs-client/distinfo Sun Sep 11 16:55:08 2016 (r421842) @@ -1,2 +1,3 @@ -SHA256 (rubygem/mogilefs-client-3.9.0.gem) = c393d84301b3cd9070bba7908e5375001a0dd26175b5d0533dff2a9ce3aa7ea5 -SIZE (rubygem/mogilefs-client-3.9.0.gem) = 77312 +TIMESTAMP = 1473602158 +SHA256 (rubygem/mogilefs-client-3.10.0.gem) = c658596755719009d22d9121fe9c07050de7eef27717bf804ca0a42cc96be145 +SIZE (rubygem/mogilefs-client-3.10.0.gem) = 78848 From owner-svn-ports-head@freebsd.org Sun Sep 11 17:05:35 2016 Return-Path: Delivered-To: svn-ports-head@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 64A30BD6086; Sun, 11 Sep 2016 17:05:35 +0000 (UTC) (envelope-from marino@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 40101C88; Sun, 11 Sep 2016 17:05:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BH5Y5c079372; Sun, 11 Sep 2016 17:05:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BH5YxK079370; Sun, 11 Sep 2016 17:05:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111705.u8BH5YxK079370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 17:05:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421843 - in head/security/wpa_supplicant: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:05:35 -0000 Author: marino Date: Sun Sep 11 17:05:34 2016 New Revision: 421843 URL: https://svnweb.freebsd.org/changeset/ports/421843 Log: security/wpa_supplicant: Add support for LibreSSL Added: head/security/wpa_supplicant/files/patch-src_crypto_tls__openssl.c (contents, props changed) Modified: head/security/wpa_supplicant/Makefile Modified: head/security/wpa_supplicant/Makefile ============================================================================== --- head/security/wpa_supplicant/Makefile Sun Sep 11 16:55:08 2016 (r421842) +++ head/security/wpa_supplicant/Makefile Sun Sep 11 17:05:34 2016 (r421843) @@ -9,12 +9,12 @@ MASTER_SITES= http://w1.fi/releases/ MAINTAINER= marino@FreeBSD.org COMMENT= Supplicant (client) for WPA/802.1x protocols -USES= cpe gmake readline -USE_OPENSSL= yes +USES= cpe gmake readline ssl BUILD_WRKSRC= ${WRKSRC}/wpa_supplicant INSTALL_WRKSRC= ${WRKSRC}/src CFLAGS+= ${CPPFLAGS} # USES=readline only augments CPPFLAGS and LDFLAGS -LDFLAGS+= -lutil +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} -lutil SUB_FILES= pkg-message PORTDOCS= README ChangeLog Added: head/security/wpa_supplicant/files/patch-src_crypto_tls__openssl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/wpa_supplicant/files/patch-src_crypto_tls__openssl.c Sun Sep 11 17:05:34 2016 (r421843) @@ -0,0 +1,67 @@ +Compatibility fixes for LibreSSL + +--- src/crypto/tls_openssl.c.orig 2015-09-27 19:02:05 UTC ++++ src/crypto/tls_openssl.c +@@ -2229,7 +2229,7 @@ static int tls_parse_pkcs12(struct tls_d + } + + if (certs) { +-#if OPENSSL_VERSION_NUMBER >= 0x10002000L ++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + SSL_clear_chain_certs(ssl); + while ((cert = sk_X509_pop(certs)) != NULL) { + X509_NAME_oneline(X509_get_subject_name(cert), buf, +@@ -2247,7 +2247,7 @@ static int tls_parse_pkcs12(struct tls_d + /* Try to continue anyway */ + } + sk_X509_free(certs); +-#ifndef OPENSSL_IS_BORINGSSL ++#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER) + res = SSL_build_cert_chain(ssl, + SSL_BUILD_CHAIN_FLAG_CHECK | + SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR); +@@ -2812,7 +2812,7 @@ int tls_connection_get_random(void *ssl_ + if (conn == NULL || keys == NULL) + return -1; + ssl = conn->ssl; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + if (ssl == NULL || ssl->s3 == NULL || ssl->session == NULL) + return -1; + +@@ -2841,7 +2841,7 @@ int tls_connection_get_random(void *ssl_ + #ifndef CONFIG_FIPS + static int openssl_get_keyblock_size(SSL *ssl) + { +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + const EVP_CIPHER *c; + const EVP_MD *h; + int md_size; +@@ -2911,7 +2911,7 @@ static int openssl_tls_prf(struct tls_co + "mode"); + return -1; + #else /* CONFIG_FIPS */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + SSL *ssl; + u8 *rnd; + int ret = -1; +@@ -3394,7 +3394,7 @@ int tls_connection_set_cipher_list(void + + wpa_printf(MSG_DEBUG, "OpenSSL: cipher suites: %s", buf + 1); + +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + #if defined(EAP_FAST) || defined(EAP_FAST_DYNAMIC) || defined(EAP_SERVER_FAST) + if (os_strstr(buf, ":ADH-")) { + /* +@@ -3977,7 +3977,7 @@ static int tls_sess_sec_cb(SSL *s, void + struct tls_connection *conn = arg; + int ret; + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + if (conn == NULL || conn->session_ticket_cb == NULL) + return 0; + From owner-svn-ports-head@freebsd.org Sun Sep 11 17:06:34 2016 Return-Path: Delivered-To: svn-ports-head@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 3E3C8BD60EE; Sun, 11 Sep 2016 17:06:34 +0000 (UTC) (envelope-from bapt@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 111C9D7B; Sun, 11 Sep 2016 17:06:34 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BH6Xek079516; Sun, 11 Sep 2016 17:06:33 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BH6Xhm079514; Sun, 11 Sep 2016 17:06:33 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609111706.u8BH6Xhm079514@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 11 Sep 2016 17:06:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421844 - head/devel/slibtool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:06:34 -0000 Author: bapt Date: Sun Sep 11 17:06:32 2016 New Revision: 421844 URL: https://svnweb.freebsd.org/changeset/ports/421844 Log: Update to 0.5.8 Modified: head/devel/slibtool/Makefile head/devel/slibtool/distinfo Modified: head/devel/slibtool/Makefile ============================================================================== --- head/devel/slibtool/Makefile Sun Sep 11 17:05:34 2016 (r421843) +++ head/devel/slibtool/Makefile Sun Sep 11 17:06:32 2016 (r421844) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= slibtool -PORTVERSION= 0.5.7 +PORTVERSION= 0.5.8 CATEGORIES= devel MASTER_SITES= http://dl.midipix.org/${PORTNAME}/ Modified: head/devel/slibtool/distinfo ============================================================================== --- head/devel/slibtool/distinfo Sun Sep 11 17:05:34 2016 (r421843) +++ head/devel/slibtool/distinfo Sun Sep 11 17:06:32 2016 (r421844) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466888355 -SHA256 (slibtool-0.5.7.tar.xz) = c39d8b91c4a4c7929a80fd89eb540ae7f647c0b5ad181a2e9f38d26c098b312e -SIZE (slibtool-0.5.7.tar.xz) = 45492 +TIMESTAMP = 1473613567 +SHA256 (slibtool-0.5.8.tar.xz) = ec4fe3c1a4937fb2cabce0b9c9bbf4e047fe9ae55e370e51d32f9caf1b17b22b +SIZE (slibtool-0.5.8.tar.xz) = 47540 From owner-svn-ports-head@freebsd.org Sun Sep 11 17:19:48 2016 Return-Path: Delivered-To: svn-ports-head@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 F1CBBBD66DD; Sun, 11 Sep 2016 17:19:48 +0000 (UTC) (envelope-from olgeni@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 AAB8B897; Sun, 11 Sep 2016 17:19:48 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHJl83083417; Sun, 11 Sep 2016 17:19:47 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHJlB5083414; Sun, 11 Sep 2016 17:19:47 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609111719.u8BHJlB5083414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sun, 11 Sep 2016 17:19:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421845 - head/textproc/elixir-ex_doc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:19:49 -0000 Author: olgeni Date: Sun Sep 11 17:19:47 2016 New Revision: 421845 URL: https://svnweb.freebsd.org/changeset/ports/421845 Log: Update textproc/elixir-ex_doc to version 0.13.1. Modified: head/textproc/elixir-ex_doc/Makefile head/textproc/elixir-ex_doc/distinfo head/textproc/elixir-ex_doc/pkg-plist Modified: head/textproc/elixir-ex_doc/Makefile ============================================================================== --- head/textproc/elixir-ex_doc/Makefile Sun Sep 11 17:06:32 2016 (r421844) +++ head/textproc/elixir-ex_doc/Makefile Sun Sep 11 17:19:47 2016 (r421845) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ex_doc -PORTVERSION= 0.13.0 +PORTVERSION= 0.13.1 DISTVERSIONPREFIX= v CATEGORIES= textproc PKGNAMEPREFIX= elixir- Modified: head/textproc/elixir-ex_doc/distinfo ============================================================================== --- head/textproc/elixir-ex_doc/distinfo Sun Sep 11 17:06:32 2016 (r421844) +++ head/textproc/elixir-ex_doc/distinfo Sun Sep 11 17:19:47 2016 (r421845) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468840694 -SHA256 (elixir-lang-ex_doc-v0.13.0_GH0.tar.gz) = 0210c7c97f1323e2a2e22deac71a099fa0c3ae30ed062950945fa1525a0a8522 -SIZE (elixir-lang-ex_doc-v0.13.0_GH0.tar.gz) = 116084 +TIMESTAMP = 1473613065 +SHA256 (elixir-lang-ex_doc-v0.13.1_GH0.tar.gz) = 8c2059f48b3297d4678efbb0dddc0eba6a59ee7521ab71c91a7729a046a5e2c5 +SIZE (elixir-lang-ex_doc-v0.13.1_GH0.tar.gz) = 117510 Modified: head/textproc/elixir-ex_doc/pkg-plist ============================================================================== --- head/textproc/elixir-ex_doc/pkg-plist Sun Sep 11 17:06:32 2016 (r421844) +++ head/textproc/elixir-ex_doc/pkg-plist Sun Sep 11 17:19:47 2016 (r421845) @@ -41,8 +41,8 @@ lib/elixir/lib/ex_doc/lib/ex_doc/markdow lib/elixir/lib/ex_doc/lib/ex_doc/markdown/pandoc.ex lib/elixir/lib/ex_doc/lib/ex_doc/retriever.ex lib/elixir/lib/ex_doc/lib/mix/tasks/docs.ex -lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/dist/app-21f1a20b9e.js -lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/dist/app-9c1e3d5aa2.css +lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/dist/app-7e84850c37.css +lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/dist/app-95540a96e6.js lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/fonts/icomoon.eot lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/fonts/icomoon.svg lib/elixir/lib/ex_doc/priv/ex_doc/formatter/html/templates/fonts/icomoon.ttf From owner-svn-ports-head@freebsd.org Sun Sep 11 17:23:42 2016 Return-Path: Delivered-To: svn-ports-head@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 2C25BBD68F0; Sun, 11 Sep 2016 17:23:42 +0000 (UTC) (envelope-from amdmi3@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 EC72CD46; Sun, 11 Sep 2016 17:23:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHNfY3087050; Sun, 11 Sep 2016 17:23:41 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHNeEW087045; Sun, 11 Sep 2016 17:23:40 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111723.u8BHNeEW087045@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:23:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421846 - in head/devel/bullet: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:23:42 -0000 Author: amdmi3 Date: Sun Sep 11 17:23:40 2016 New Revision: 421846 URL: https://svnweb.freebsd.org/changeset/ports/421846 Log: - Update to 2.83.7 - Add license - Switch to options helpers PR: 212112 Submitted by: t@tobik.me Approved by: maintainer timeout (acm, 2 weeks) Modified: head/devel/bullet/Makefile head/devel/bullet/distinfo head/devel/bullet/files/patch-CMakeLists.txt head/devel/bullet/pkg-plist Modified: head/devel/bullet/Makefile ============================================================================== --- head/devel/bullet/Makefile Sun Sep 11 17:19:47 2016 (r421845) +++ head/devel/bullet/Makefile Sun Sep 11 17:23:40 2016 (r421846) @@ -2,38 +2,33 @@ # $FreeBSD$ PORTNAME= bullet -PORTVERSION= 2.82 -PORTREVISION= 3 +PORTVERSION= 2.83.7 CATEGORIES= devel MAINTAINER= acm@FreeBSD.org COMMENT= 3D collision detection and rigid body dynamics library LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/LICENSE.txt USE_GITHUB= yes GH_ACCOUNT= bulletphysics GH_PROJECT= bullet3 +USES= cmake tar:tgz USE_GL= gl glu glut +USE_LDCONFIG= yes USE_XORG= x11 -USES= cmake tar:tgz -CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON - -CPPFLAGS+= -I${LOCALBASE}/include +CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON \ + -DBUILD_BULLET2_DEMOS:BOOL=OFF PORTDOCS= * OPTIONS_DEFINE= DOCS -post-patch: - @${REINPLACE_CMD} -e "s|{OPENGL_glu_LIBRARY}|{OPENGL_glu_LIBRARY} -lcompat|g" ${WRKSRC}/Demos/AllBulletDemos/CMakeLists.txt - -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}/${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.pdf ${STAGEDIR}/${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/BulletLicense.txt ${STAGEDIR}/${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${STAGEDIR}/${DOCSDIR}/CHANGELOG + ${INSTALL_DATA} ${WRKSRC}/docs/*.pdf ${STAGEDIR}/${DOCSDIR} .include Modified: head/devel/bullet/distinfo ============================================================================== --- head/devel/bullet/distinfo Sun Sep 11 17:19:47 2016 (r421845) +++ head/devel/bullet/distinfo Sun Sep 11 17:23:40 2016 (r421846) @@ -1,2 +1,3 @@ -SHA256 (bulletphysics-bullet3-2.82_GH0.tar.gz) = 93ffcdfdd7aa67159fc18d336456945538a6602e3cd318eed9963280620b55bd -SIZE (bulletphysics-bullet3-2.82_GH0.tar.gz) = 7864469 +TIMESTAMP = 1472045659 +SHA256 (bulletphysics-bullet3-2.83.7_GH0.tar.gz) = 00d1d8f206ee85ffd171643ac8e72f9f4e0bf6dbf3d4ac55f4495cb168b51243 +SIZE (bulletphysics-bullet3-2.83.7_GH0.tar.gz) = 18754201 Modified: head/devel/bullet/files/patch-CMakeLists.txt ============================================================================== --- head/devel/bullet/files/patch-CMakeLists.txt Sun Sep 11 17:19:47 2016 (r421845) +++ head/devel/bullet/files/patch-CMakeLists.txt Sun Sep 11 17:23:40 2016 (r421846) @@ -1,11 +1,11 @@ ---- CMakeLists.txt 2010-11-08 15:53:25.000000000 -0500 -+++ CMakeLists.txt 2010-11-08 15:54:00.000000000 -0500 -@@ -313,7 +313,7 @@ - SET (LIB_DESTINATION "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE STRING "Library directory name") +--- CMakeLists.txt.orig 2016-01-08 22:36:41 UTC ++++ CMakeLists.txt +@@ -254,7 +254,7 @@ IF(INSTALL_LIBS) + SET (LIB_DESTINATION "lib${LIB_SUFFIX}" CACHE STRING "Library directory name") ## the following are directories where stuff will be installed to - SET(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/bullet/" CACHE PATH "The subdirectory to the header prefix") -- SET(PKGCONFIG_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/pkgconfig/" CACHE STRING "Base directory for pkgconfig files") -+ SET(PKGCONFIG_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig/" CACHE STRING "Base directory for pkgconfig files") - IF(NOT WIN32) + SET(INCLUDE_INSTALL_DIR "include/bullet/" CACHE PATH "The subdirectory to the header prefix") +- SET(PKGCONFIG_INSTALL_PREFIX "lib${LIB_SUFFIX}/pkgconfig/" CACHE STRING "Base directory for pkgconfig files") ++ SET(PKGCONFIG_INSTALL_PREFIX "libdata/pkgconfig/" CACHE STRING "Base directory for pkgconfig files") + IF(NOT MSVC) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/bullet.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/bullet.pc @ONLY) INSTALL( Modified: head/devel/bullet/pkg-plist ============================================================================== --- head/devel/bullet/pkg-plist Sun Sep 11 17:19:47 2016 (r421845) +++ head/devel/bullet/pkg-plist Sun Sep 11 17:23:40 2016 (r421846) @@ -1,4 +1,149 @@ -include/bullet/Bullet-C-Api.h +include/bullet/Bullet2FileLoader/autogenerated/bullet2.h +include/bullet/Bullet2FileLoader/b3BulletFile.h +include/bullet/Bullet2FileLoader/b3Chunk.h +include/bullet/Bullet2FileLoader/b3Common.h +include/bullet/Bullet2FileLoader/b3DNA.h +include/bullet/Bullet2FileLoader/b3Defines.h +include/bullet/Bullet2FileLoader/b3File.h +include/bullet/Bullet2FileLoader/b3Serializer.h +include/bullet/Bullet3Collision/BroadPhaseCollision/b3BroadphaseCallback.h +include/bullet/Bullet3Collision/BroadPhaseCollision/b3DynamicBvh.h +include/bullet/Bullet3Collision/BroadPhaseCollision/b3DynamicBvhBroadphase.h +include/bullet/Bullet3Collision/BroadPhaseCollision/b3OverlappingPair.h +include/bullet/Bullet3Collision/BroadPhaseCollision/b3OverlappingPairCache.h +include/bullet/Bullet3Collision/BroadPhaseCollision/shared/b3Aabb.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/b3Config.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/b3Contact4.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/b3ConvexUtility.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/b3CpuNarrowPhase.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/b3RigidBodyCL.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3BvhSubtreeInfoData.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3BvhTraversal.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3ClipFaces.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3Collidable.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3Contact4Data.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3ContactConvexConvexSAT.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3ContactSphereSphere.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3ConvexPolyhedronData.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3FindConcaveSatAxis.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3FindSeparatingAxis.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3MprPenetration.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3NewContactReduction.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3QuantizedBvhNodeData.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3ReduceContacts.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3RigidBodyData.h +include/bullet/Bullet3Collision/NarrowPhaseCollision/shared/b3UpdateAabbs.h +include/bullet/Bullet3Common/b3AlignedAllocator.h +include/bullet/Bullet3Common/b3AlignedObjectArray.h +include/bullet/Bullet3Common/b3CommandLineArgs.h +include/bullet/Bullet3Common/b3FileUtils.h +include/bullet/Bullet3Common/b3HashMap.h +include/bullet/Bullet3Common/b3Logging.h +include/bullet/Bullet3Common/b3Matrix3x3.h +include/bullet/Bullet3Common/b3MinMax.h +include/bullet/Bullet3Common/b3PoolAllocator.h +include/bullet/Bullet3Common/b3QuadWord.h +include/bullet/Bullet3Common/b3Quaternion.h +include/bullet/Bullet3Common/b3Random.h +include/bullet/Bullet3Common/b3Scalar.h +include/bullet/Bullet3Common/b3StackAlloc.h +include/bullet/Bullet3Common/b3Transform.h +include/bullet/Bullet3Common/b3TransformUtil.h +include/bullet/Bullet3Common/b3Vector3.h +include/bullet/Bullet3Common/shared/b3Float4.h +include/bullet/Bullet3Common/shared/b3Int2.h +include/bullet/Bullet3Common/shared/b3Int4.h +include/bullet/Bullet3Common/shared/b3Mat3x3.h +include/bullet/Bullet3Common/shared/b3PlatformDefinitions.h +include/bullet/Bullet3Common/shared/b3Quat.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3ContactSolverInfo.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3FixedConstraint.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3Generic6DofConstraint.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3JacobianEntry.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3PgsJacobiSolver.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3Point2PointConstraint.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3SolverBody.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3SolverConstraint.h +include/bullet/Bullet3Dynamics/ConstraintSolver/b3TypedConstraint.h +include/bullet/Bullet3Dynamics/b3CpuRigidBodyPipeline.h +include/bullet/Bullet3Dynamics/shared/b3ContactConstraint4.h +include/bullet/Bullet3Dynamics/shared/b3ConvertConstraint4.h +include/bullet/Bullet3Dynamics/shared/b3Inertia.h +include/bullet/Bullet3Dynamics/shared/b3IntegrateTransforms.h +include/bullet/Bullet3Geometry/b3AabbUtil.h +include/bullet/Bullet3Geometry/b3ConvexHullComputer.h +include/bullet/Bullet3Geometry/b3GeometryUtil.h +include/bullet/Bullet3Geometry/b3GrahamScan2dConvexHull.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/b3GpuBroadphaseInterface.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/b3GpuGridBroadphase.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/b3GpuParallelLinearBvh.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/b3GpuParallelLinearBvhBroadphase.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/b3GpuSapBroadphase.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/b3SapAabb.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/kernels/gridBroadphaseKernels.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/kernels/parallelLinearBvhKernels.h +include/bullet/Bullet3OpenCL/BroadphaseCollision/kernels/sapKernels.h +include/bullet/Bullet3OpenCL/Initialize/b3OpenCLInclude.h +include/bullet/Bullet3OpenCL/Initialize/b3OpenCLUtils.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3BvhInfo.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3ContactCache.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3ConvexHullContact.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3ConvexPolyhedronCL.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3GjkEpa.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3GjkPairDetector.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3OptimizedBvh.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3QuantizedBvh.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3StridingMeshInterface.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3SupportMappings.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3TriangleCallback.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3TriangleIndexVertexArray.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3VectorFloat4.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/b3VoronoiSimplexSolver.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/kernels/bvhTraversal.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/kernels/mprKernels.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/kernels/primitiveContacts.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/kernels/satClipHullContacts.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/kernels/satConcaveKernels.h +include/bullet/Bullet3OpenCL/NarrowphaseCollision/kernels/satKernels.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3BoundSearchCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3BufferInfoCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3FillCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3LauncherCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3OpenCLArray.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3PrefixScanCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3PrefixScanFloat4CL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/b3RadixSort32CL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/kernels/BoundSearchKernelsCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/kernels/CopyKernelsCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/kernels/FillKernelsCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/kernels/PrefixScanKernelsCL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/kernels/PrefixScanKernelsFloat4CL.h +include/bullet/Bullet3OpenCL/ParallelPrimitives/kernels/RadixSort32KernelsCL.h +include/bullet/Bullet3OpenCL/Raycast/b3GpuRaycast.h +include/bullet/Bullet3OpenCL/Raycast/kernels/rayCastKernels.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuConstraint4.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuGenericConstraint.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuJacobiContactSolver.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuNarrowPhase.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuNarrowPhaseInternalData.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuPgsConstraintSolver.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuPgsContactSolver.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuRigidBodyPipeline.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuRigidBodyPipelineInternalData.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuSolverBody.h +include/bullet/Bullet3OpenCL/RigidBody/b3GpuSolverConstraint.h +include/bullet/Bullet3OpenCL/RigidBody/b3Solver.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/batchingKernels.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/batchingKernelsNew.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/integrateKernel.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/jointSolver.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/solveContact.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/solveFriction.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/solverSetup.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/solverSetup2.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/solverUtils.h +include/bullet/Bullet3OpenCL/RigidBody/kernels/updateAabbsKernel.h include/bullet/BulletCollision/BroadphaseCollision/btAxisSweep3.h include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseInterface.h include/bullet/BulletCollision/BroadphaseCollision/btBroadphaseProxy.h @@ -22,6 +167,7 @@ include/bullet/BulletCollision/Collision include/bullet/BulletCollision/CollisionDispatch/btCollisionObject.h include/bullet/BulletCollision/CollisionDispatch/btCollisionObjectWrapper.h include/bullet/BulletCollision/CollisionDispatch/btCollisionWorld.h +include/bullet/BulletCollision/CollisionDispatch/btCollisionWorldImporter.h include/bullet/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.h include/bullet/BulletCollision/CollisionDispatch/btCompoundCompoundCollisionAlgorithm.h include/bullet/BulletCollision/CollisionDispatch/btConvex2dConvex2dAlgorithm.h @@ -107,16 +253,20 @@ include/bullet/BulletCollision/Gimpact/g include/bullet/BulletCollision/Gimpact/gim_memory.h include/bullet/BulletCollision/Gimpact/gim_radixsort.h include/bullet/BulletCollision/Gimpact/gim_tri_collision.h +include/bullet/BulletCollision/NarrowPhaseCollision/btComputeGjkEpaPenetration.h include/bullet/BulletCollision/NarrowPhaseCollision/btContinuousConvexCollision.h include/bullet/BulletCollision/NarrowPhaseCollision/btConvexCast.h include/bullet/BulletCollision/NarrowPhaseCollision/btConvexPenetrationDepthSolver.h include/bullet/BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h +include/bullet/BulletCollision/NarrowPhaseCollision/btGjkCollisionDescription.h include/bullet/BulletCollision/NarrowPhaseCollision/btGjkConvexCast.h include/bullet/BulletCollision/NarrowPhaseCollision/btGjkEpa2.h +include/bullet/BulletCollision/NarrowPhaseCollision/btGjkEpa3.h include/bullet/BulletCollision/NarrowPhaseCollision/btGjkEpaPenetrationDepthSolver.h include/bullet/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h include/bullet/BulletCollision/NarrowPhaseCollision/btManifoldPoint.h include/bullet/BulletCollision/NarrowPhaseCollision/btMinkowskiPenetrationDepthSolver.h +include/bullet/BulletCollision/NarrowPhaseCollision/btMprPenetration.h include/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h include/bullet/BulletCollision/NarrowPhaseCollision/btPointCollector.h include/bullet/BulletCollision/NarrowPhaseCollision/btPolyhedralContactClipping.h @@ -134,10 +284,12 @@ include/bullet/BulletDynamics/Constraint include/bullet/BulletDynamics/ConstraintSolver/btFixedConstraint.h include/bullet/BulletDynamics/ConstraintSolver/btGearConstraint.h include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h +include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpring2Constraint.h include/bullet/BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h include/bullet/BulletDynamics/ConstraintSolver/btHinge2Constraint.h include/bullet/BulletDynamics/ConstraintSolver/btHingeConstraint.h include/bullet/BulletDynamics/ConstraintSolver/btJacobianEntry.h +include/bullet/BulletDynamics/ConstraintSolver/btNNCGConstraintSolver.h include/bullet/BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h include/bullet/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h include/bullet/BulletDynamics/ConstraintSolver/btSliderConstraint.h @@ -155,6 +307,7 @@ include/bullet/BulletDynamics/Feathersto include/bullet/BulletDynamics/Featherstone/btMultiBodyConstraint.h include/bullet/BulletDynamics/Featherstone/btMultiBodyConstraintSolver.h include/bullet/BulletDynamics/Featherstone/btMultiBodyDynamicsWorld.h +include/bullet/BulletDynamics/Featherstone/btMultiBodyJointFeedback.h include/bullet/BulletDynamics/Featherstone/btMultiBodyJointLimitConstraint.h include/bullet/BulletDynamics/Featherstone/btMultiBodyJointMotor.h include/bullet/BulletDynamics/Featherstone/btMultiBodyLink.h @@ -163,6 +316,8 @@ include/bullet/BulletDynamics/Feathersto include/bullet/BulletDynamics/Featherstone/btMultiBodySolverConstraint.h include/bullet/BulletDynamics/MLCPSolvers/btDantzigLCP.h include/bullet/BulletDynamics/MLCPSolvers/btDantzigSolver.h +include/bullet/BulletDynamics/MLCPSolvers/btLemkeAlgorithm.h +include/bullet/BulletDynamics/MLCPSolvers/btLemkeSolver.h include/bullet/BulletDynamics/MLCPSolvers/btMLCPSolver.h include/bullet/BulletDynamics/MLCPSolvers/btMLCPSolverInterface.h include/bullet/BulletDynamics/MLCPSolvers/btPATHSolver.h @@ -171,6 +326,7 @@ include/bullet/BulletDynamics/Vehicle/bt include/bullet/BulletDynamics/Vehicle/btVehicleRaycaster.h include/bullet/BulletDynamics/Vehicle/btWheelInfo.h include/bullet/BulletDynamics/btBulletDynamicsCommon.h +include/bullet/BulletInverseDynamics/btBulletCollisionCommon.h include/bullet/BulletSoftBody/btDefaultSoftBodySolver.h include/bullet/BulletSoftBody/btSoftBody.h include/bullet/BulletSoftBody/btSoftBodyConcaveCollisionAlgorithm.h @@ -189,6 +345,7 @@ include/bullet/LinearMath/btAlignedAlloc include/bullet/LinearMath/btAlignedObjectArray.h include/bullet/LinearMath/btConvexHull.h include/bullet/LinearMath/btConvexHullComputer.h +include/bullet/LinearMath/btCpuFeatureUtility.h include/bullet/LinearMath/btDefaultMotionState.h include/bullet/LinearMath/btGeometryUtil.h include/bullet/LinearMath/btGrahamScan2dConvexHull.h @@ -207,34 +364,36 @@ include/bullet/LinearMath/btQuickprof.h include/bullet/LinearMath/btRandom.h include/bullet/LinearMath/btScalar.h include/bullet/LinearMath/btSerializer.h +include/bullet/LinearMath/btSpatialAlgebra.h include/bullet/LinearMath/btStackAlloc.h include/bullet/LinearMath/btTransform.h include/bullet/LinearMath/btTransformUtil.h include/bullet/LinearMath/btVector3.h include/bullet/btBulletCollisionCommon.h include/bullet/btBulletDynamicsCommon.h -include/bullet/vectormath/scalar/boolInVec.h -include/bullet/vectormath/scalar/floatInVec.h -include/bullet/vectormath/scalar/mat_aos.h -include/bullet/vectormath/scalar/quat_aos.h -include/bullet/vectormath/scalar/vec_aos.h -include/bullet/vectormath/scalar/vectormath_aos.h -include/bullet/vectormath/sse/boolInVec.h -include/bullet/vectormath/sse/floatInVec.h -include/bullet/vectormath/sse/mat_aos.h -include/bullet/vectormath/sse/quat_aos.h -include/bullet/vectormath/sse/vec_aos.h -include/bullet/vectormath/sse/vecidx_aos.h -include/bullet/vectormath/sse/vectormath_aos.h -include/bullet/vectormath/vmInclude.h lib/cmake/bullet/BulletConfig.cmake lib/cmake/bullet/UseBullet.cmake +lib/libBullet2FileLoader.so +lib/libBullet2FileLoader.so.2.83 +lib/libBullet3Collision.so +lib/libBullet3Collision.so.2.83 +lib/libBullet3Common.so +lib/libBullet3Common.so.2.83 +lib/libBullet3Dynamics.so +lib/libBullet3Dynamics.so.2.83 +lib/libBullet3Geometry.so +lib/libBullet3Geometry.so.2.83 +lib/libBullet3OpenCL_clew.so +lib/libBullet3OpenCL_clew.so.2.83 lib/libBulletCollision.so -lib/libBulletCollision.so.2.82 +lib/libBulletCollision.so.2.83 lib/libBulletDynamics.so -lib/libBulletDynamics.so.2.82 +lib/libBulletDynamics.so.2.83 +lib/libBulletInverseDynamics.so +lib/libBulletInverseDynamics.so.2.83 lib/libBulletSoftBody.so -lib/libBulletSoftBody.so.2.82 +lib/libBulletSoftBody.so.2.83 lib/libLinearMath.so -lib/libLinearMath.so.2.82 +lib/libLinearMath.so.2.83 libdata/pkgconfig/bullet.pc +@dir include/bullet/BulletInverseDynamics/details From owner-svn-ports-head@freebsd.org Sun Sep 11 17:24:26 2016 Return-Path: Delivered-To: svn-ports-head@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 312C4BD6970; Sun, 11 Sep 2016 17:24:26 +0000 (UTC) (envelope-from tcberner@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 F135FE44; Sun, 11 Sep 2016 17:24:25 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHOP88087188; Sun, 11 Sep 2016 17:24:25 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHOP1P087187; Sun, 11 Sep 2016 17:24:25 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609111724.u8BHOP1P087187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 11 Sep 2016 17:24:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421847 - head/math/facile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:24:26 -0000 Author: tcberner Date: Sun Sep 11 17:24:24 2016 New Revision: 421847 URL: https://svnweb.freebsd.org/changeset/ports/421847 Log: Update math/facile MASTER_SITES. Reviewed by: rakuco Approved by: rakuco (mentor) MFH: 2016Q3 Differential Revision: https://reviews.freebsd.org/D7731 Modified: head/math/facile/Makefile Modified: head/math/facile/Makefile ============================================================================== --- head/math/facile/Makefile Sun Sep 11 17:23:40 2016 (r421846) +++ head/math/facile/Makefile Sun Sep 11 17:24:24 2016 (r421847) @@ -4,7 +4,7 @@ PORTNAME= facile PORTVERSION= 1.1.1 CATEGORIES= math -MASTER_SITES= http://www.recherche.enac.fr/log/facile/distrib/ +MASTER_SITES= http://opti.recherche.enac.fr/facile/distrib/ MAINTAINER= kde@FreeBSD.org COMMENT= Functional Constraint Library From owner-svn-ports-head@freebsd.org Sun Sep 11 17:24:29 2016 Return-Path: Delivered-To: svn-ports-head@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 49366BD699C; Sun, 11 Sep 2016 17:24:29 +0000 (UTC) (envelope-from amdmi3@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 0DD4EE60; Sun, 11 Sep 2016 17:24:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHOSvG087373; Sun, 11 Sep 2016 17:24:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHORbT087367; Sun, 11 Sep 2016 17:24:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111724.u8BHORbT087367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421848 - in head/games/openmw: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:24:29 -0000 Author: amdmi3 Date: Sun Sep 11 17:24:27 2016 New Revision: 421848 URL: https://svnweb.freebsd.org/changeset/ports/421848 Log: - Update to 0.40.0 PR: 212109 Submitted by: t@tobik.me (maintainer) Deleted: head/games/openmw/files/patch-CMakeLists.txt Modified: head/games/openmw/Makefile head/games/openmw/distinfo head/games/openmw/files/patch-apps_openmw_mwinput_inputmanagerimp.cpp head/games/openmw/files/patch-apps_wizard_CMakeLists.txt head/games/openmw/files/patch-files_gamecontrollerdb.txt Modified: head/games/openmw/Makefile ============================================================================== --- head/games/openmw/Makefile Sun Sep 11 17:24:24 2016 (r421847) +++ head/games/openmw/Makefile Sun Sep 11 17:24:27 2016 (r421848) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openmw -PORTVERSION= 0.39.0 +PORTVERSION= 0.40.0 DISTVERSIONPREFIX= openmw- CATEGORIES= games Modified: head/games/openmw/distinfo ============================================================================== --- head/games/openmw/distinfo Sun Sep 11 17:24:24 2016 (r421847) +++ head/games/openmw/distinfo Sun Sep 11 17:24:27 2016 (r421848) @@ -1,2 +1,3 @@ -SHA256 (OpenMW-openmw-openmw-0.39.0_GH0.tar.gz) = b0d294b0814099bd93326f7b86dd84fb727d38dd536bf104272112e6d70ae720 -SIZE (OpenMW-openmw-openmw-0.39.0_GH0.tar.gz) = 4764754 +TIMESTAMP = 1472037205 +SHA256 (OpenMW-openmw-openmw-0.40.0_GH0.tar.gz) = 3f3ad6f29713bd27cbab5dbad7010212b7eba906f3b5542b5c5effb53e5d7944 +SIZE (OpenMW-openmw-openmw-0.40.0_GH0.tar.gz) = 4849783 Modified: head/games/openmw/files/patch-apps_openmw_mwinput_inputmanagerimp.cpp ============================================================================== --- head/games/openmw/files/patch-apps_openmw_mwinput_inputmanagerimp.cpp Sun Sep 11 17:24:24 2016 (r421847) +++ head/games/openmw/files/patch-apps_openmw_mwinput_inputmanagerimp.cpp Sun Sep 11 17:24:27 2016 (r421848) @@ -1,4 +1,4 @@ ---- apps/openmw/mwinput/inputmanagerimp.cpp.orig 2016-01-12 16:11:28 UTC +--- apps/openmw/mwinput/inputmanagerimp.cpp.orig 2016-08-15 09:27:54 UTC +++ apps/openmw/mwinput/inputmanagerimp.cpp @@ -119,11 +119,12 @@ namespace MWInput SDL_ControllerDeviceEvent evt; Modified: head/games/openmw/files/patch-apps_wizard_CMakeLists.txt ============================================================================== --- head/games/openmw/files/patch-apps_wizard_CMakeLists.txt Sun Sep 11 17:24:24 2016 (r421847) +++ head/games/openmw/files/patch-apps_wizard_CMakeLists.txt Sun Sep 11 17:24:27 2016 (r421848) @@ -1,6 +1,6 @@ ---- apps/wizard/CMakeLists.txt.orig 2016-04-06 11:40:42 UTC +--- apps/wizard/CMakeLists.txt.orig 2016-08-15 09:27:54 UTC +++ apps/wizard/CMakeLists.txt -@@ -147,6 +147,7 @@ endif() +@@ -137,6 +137,7 @@ endif() # Workaround for binutil => 2.23 problem when linking, should be fixed eventually upstream if (UNIX AND NOT APPLE) Modified: head/games/openmw/files/patch-files_gamecontrollerdb.txt ============================================================================== --- head/games/openmw/files/patch-files_gamecontrollerdb.txt Sun Sep 11 17:24:24 2016 (r421847) +++ head/games/openmw/files/patch-files_gamecontrollerdb.txt Sun Sep 11 17:24:27 2016 (r421848) @@ -1,9 +1,9 @@ ---- files/gamecontrollerdb.txt.orig 2016-01-12 16:11:28 UTC +--- files/gamecontrollerdb.txt.orig 2016-08-15 09:27:54 UTC +++ files/gamecontrollerdb.txt -@@ -99,3 +99,7 @@ ff113133000000000000504944564944,SVEN X- - 05000000362800000100000002010000,OUYA Game Controller,a:b0,b:b3,dpdown:b9,dpleft:b10,dpright:b11,dpup:b8,guide:b14,leftshoulder:b4,leftstick:b6,lefttrigger:a2,leftx:a0,lefty:a1,platform:Linux,rightshoulder:b5,rightstick:b7,righttrigger:a5,rightx:a3,righty:a4,x:b1,y:b2, - 05000000362800000100000003010000,OUYA Game Controller,a:b0,b:b3,dpdown:b9,dpleft:b10,dpright:b11,dpup:b8,guide:b14,leftshoulder:b4,leftstick:b6,lefttrigger:a2,leftx:a0,lefty:a1,platform:Linux,rightshoulder:b5,rightstick:b7,righttrigger:a5,rightx:a3,righty:a4,x:b1,y:b2, - 030000008916000001fd000024010000,Razer Onza Classic Edition,platform:Linux,x:b2,a:b0,b:b1,y:b3,back:b6,guide:b8tart:b7,dpleft:b11,dpdown:b14,dpright:b12,dpup:b13,leftshoulder:b4,lefttrigger:a2,rightshoulder:b5,righttrigger:a5,leftstick:b9,rightstick:b10,leftx:a0,lefty:a1,rightx:a3,righty:a4, +@@ -150,3 +150,7 @@ AD1B00000000000001F9000000000000,Gamesto + 03000000380700001647000010040000,Mad Catz Wired Xbox 360 Controller,platform:Linux,x:b2,a:b0,b:b1,y:b3,back:b6,guide:b8,start:b7,dpleft:h0.8,dpdown:h0.0,dpdown:h0.4,dpright:h0.0,dpright:h0.2,dpup:h0.0,dpup:h0.1,leftshoulder:h0.0,leftshoulder:b4,lefttrigger:a2,rightshoulder:b5,righttrigger:a5,leftstick:b9,rightstick:b10,leftx:a0,lefty:a1,rightx:a3,righty:a4, + 030000006f0e00003901000020060000,Afterglow Wired Controller for Xbox One,x:b2,a:b0,b:b1,y:b3,back:b6,guide:b8,start:b7,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,dpup:h0.1,leftshoulder:b4,lefttrigger:a2,rightshoulder:b5,righttrigger:a5,leftstick:b9,rightstick:b10,leftx:a0,lefty:a1,rightx:a3,righty:a4,platform:Linux, + 030000004f04000015b3000010010000,Thrustmaster Dual Analog 4,platform:Linux,a:b0,b:b2,x:b1,y:b3,start:b9,back:b8,leftstick:b10,rightstick:b11,leftshoulder:b4,rightshoulder:b6,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b5,righttrigger:b7, + +# FreeBSD +30783030303520283229000000000000,X360 Controller,platform:FreeBSD,x:b13,a:b11,b:b12,y:b14,back:b5,guide:b4,guide:b10,start:b4,dpleft:b2,dpdown:b1,dpright:b3,dpup:b0,leftshoulder:b8,lefttrigger:b9,lefttrigger:a2,rightshoulder:b9,righttrigger:a5,leftstick:b6,rightstick:b7,leftx:a0,lefty:a1,rightx:a3,righty:a4, From owner-svn-ports-head@freebsd.org Sun Sep 11 17:29:29 2016 Return-Path: Delivered-To: svn-ports-head@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 57C09BD6AAC; Sun, 11 Sep 2016 17:29:29 +0000 (UTC) (envelope-from tcberner@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 28BA610B2; Sun, 11 Sep 2016 17:29:29 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHTSX2087707; Sun, 11 Sep 2016 17:29:28 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHTSp2087705; Sun, 11 Sep 2016 17:29:28 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609111729.u8BHTSp2087705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 11 Sep 2016 17:29:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421849 - head/math/facile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:29:29 -0000 Author: tcberner Date: Sun Sep 11 17:29:28 2016 New Revision: 421849 URL: https://svnweb.freebsd.org/changeset/ports/421849 Log: Update math/facile to 1.1.2 Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7731 Modified: head/math/facile/Makefile head/math/facile/distinfo Modified: head/math/facile/Makefile ============================================================================== --- head/math/facile/Makefile Sun Sep 11 17:24:27 2016 (r421848) +++ head/math/facile/Makefile Sun Sep 11 17:29:28 2016 (r421849) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= facile -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= math MASTER_SITES= http://opti.recherche.enac.fr/facile/distrib/ Modified: head/math/facile/distinfo ============================================================================== --- head/math/facile/distinfo Sun Sep 11 17:24:27 2016 (r421848) +++ head/math/facile/distinfo Sun Sep 11 17:29:28 2016 (r421849) @@ -1,2 +1,3 @@ -SHA256 (facile-1.1.1.tar.gz) = 150a6c269277ce14e9c953dbcf409bfedc795abc1558ac6e338609b1e64fa38c -SIZE (facile-1.1.1.tar.gz) = 99454 +TIMESTAMP = 1472681454 +SHA256 (facile-1.1.2.tar.gz) = ea8b72d1d171fb44c0c6dafbddac0ccb0a453a7caafd1852919d4f805eded367 +SIZE (facile-1.1.2.tar.gz) = 99755 From owner-svn-ports-head@freebsd.org Sun Sep 11 17:40:44 2016 Return-Path: Delivered-To: svn-ports-head@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 0DE63BD70C1; Sun, 11 Sep 2016 17:40:44 +0000 (UTC) (envelope-from amdmi3@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 C78011752; Sun, 11 Sep 2016 17:40:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHehXu091705; Sun, 11 Sep 2016 17:40:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHegJ0091703; Sun, 11 Sep 2016 17:40:42 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111740.u8BHegJ0091703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421850 - in head/devel/swig30: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:40:44 -0000 Author: amdmi3 Date: Sun Sep 11 17:40:42 2016 New Revision: 421850 URL: https://svnweb.freebsd.org/changeset/ports/421850 Log: - Add missing include to generated code, fixing build of irc/znc - Fix LICENSE and add LICENSE_FILE - Remove long obsolete REINPLACE_CMD - Silence patching and stipping Upstream bugreport for reference: https://github.com/swig/swig/pull/788 PR: 212196 Submitted by: crees, amdmi3 Approved by: maintainer timeout (sunpoet, 2 weeks) Added: head/devel/swig30/files/patch-Lib_typemaps_fragments.swg (contents, props changed) Modified: head/devel/swig30/Makefile Modified: head/devel/swig30/Makefile ============================================================================== --- head/devel/swig30/Makefile Sun Sep 11 17:29:28 2016 (r421849) +++ head/devel/swig30/Makefile Sun Sep 11 17:40:42 2016 (r421850) @@ -3,6 +3,7 @@ PORTNAME= swig PORTVERSION= 3.0.10 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMESUFFIX= 30 @@ -10,7 +11,8 @@ PKGNAMESUFFIX= 30 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generate wrappers for calling C/C++ code from other languages -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE-GPL LIB_DEPENDS= libpcre.so:devel/pcre @@ -42,18 +44,17 @@ post-patch: -e 's|MZSCHEME --mute-banner|MZSCHEME|' \ -e '/^MZDYNOBJ/s|`$$|\| tail -n 1`|' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/Lib/lua/luarun.swg post-configure: - ${REINPLACE_CMD} -e 's#null#&|| true#' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's#null#&|| true#' ${WRKSRC}/Makefile post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ccache-swig${PORTVERSION:R} ${STAGEDIR}${PREFIX}/bin/swig${PORTVERSION:R} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ccache-swig${PORTVERSION:R} ${STAGEDIR}${PREFIX}/bin/swig${PORTVERSION:R} post-install-DOCS-on: - cd ${WRKSRC}/Doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/${PORTVERSION} + @cd ${WRKSRC}/Doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/${PORTVERSION} post-install-EXAMPLES-on: - cd ${WRKSRC}/Examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/${PORTVERSION} + @cd ${WRKSRC}/Examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/${PORTVERSION} .include Added: head/devel/swig30/files/patch-Lib_typemaps_fragments.swg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/swig30/files/patch-Lib_typemaps_fragments.swg Sun Sep 11 17:40:42 2016 (r421850) @@ -0,0 +1,10 @@ +--- Lib/typemaps/fragments.swg.orig 2016-09-10 23:27:20 UTC ++++ Lib/typemaps/fragments.swg +@@ -172,6 +172,7 @@ + # if defined(isfinite) + # define SWIG_isfinite(X) (isfinite(X)) + # elif defined __cplusplus && __cplusplus >= 201103L ++# include + # define SWIG_isfinite(X) (std::isfinite(X)) + # elif defined(_MSC_VER) + # define SWIG_isfinite(X) (_finite(X)) From owner-svn-ports-head@freebsd.org Sun Sep 11 17:45:10 2016 Return-Path: Delivered-To: svn-ports-head@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 4B2B7BD725C; Sun, 11 Sep 2016 17:45:10 +0000 (UTC) (envelope-from amdmi3@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 1B4611C80; Sun, 11 Sep 2016 17:45:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHj9Ip095286; Sun, 11 Sep 2016 17:45:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHj9ko095285; Sun, 11 Sep 2016 17:45:09 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111745.u8BHj9ko095285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:45:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421851 - head/irc/znc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:45:10 -0000 Author: amdmi3 Date: Sun Sep 11 17:45:09 2016 New Revision: 421851 URL: https://svnweb.freebsd.org/changeset/ports/421851 Log: - Verbosify build - Switch to USES=ssl Approved by: portmgr blanket Modified: head/irc/znc/Makefile Modified: head/irc/znc/Makefile ============================================================================== --- head/irc/znc/Makefile Sun Sep 11 17:40:42 2016 (r421850) +++ head/irc/znc/Makefile Sun Sep 11 17:45:09 2016 (r421851) @@ -17,6 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE GNU_CONFIGURE= yes USE_RC_SUBR= znc USES= compiler:c++11-lib cpe gmake iconv pkgconfig +MAKE_ENV= V=1 OPTIONS_DEFINE= CHARSET CYRUS DEBUG DOCS IPV6 OPENSSL PERL PYTHON TCL OPTIONS_DEFAULT= OPENSSL PERL @@ -38,7 +39,7 @@ DEBUG_CONFIGURE_ON= --enable-debug IPV6_CONFIGURE_OFF= --disable-ipv6 OPENSSL_CONFIGURE_OFF= --disable-openssl OPENSSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE} -OPENSSL_USE= openssl=yes +OPENSSL_USES= ssl PERL_BUILD_DEPENDS= swig30>=3.0.0:devel/swig30 PERL_CONFIGURE_ENABLE= perl PERL_CONFIGURE_ON= --enable-swig @@ -71,7 +72,7 @@ post-patch: 's#/usr/local#${LOCALBASE}#' ${WRKSRC}/configure post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor From owner-svn-ports-head@freebsd.org Sun Sep 11 17:50:01 2016 Return-Path: Delivered-To: svn-ports-head@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 8D0F0BD746F; Sun, 11 Sep 2016 17:50:01 +0000 (UTC) (envelope-from marino@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 5A8591FE2; Sun, 11 Sep 2016 17:50:01 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHo0kN095599; Sun, 11 Sep 2016 17:50:00 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHo0xE095598; Sun, 11 Sep 2016 17:50:00 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111750.u8BHo0xE095598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 17:50:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421852 - head/sysutils/deltup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:50:01 -0000 Author: marino Date: Sun Sep 11 17:50:00 2016 New Revision: 421852 URL: https://svnweb.freebsd.org/changeset/ports/421852 Log: sysutils/deltup: Document SSL requirement, set and honor flags accordingly Approved by: SSL blanket Modified: head/sysutils/deltup/Makefile Modified: head/sysutils/deltup/Makefile ============================================================================== --- head/sysutils/deltup/Makefile Sun Sep 11 17:45:09 2016 (r421851) +++ head/sysutils/deltup/Makefile Sun Sep 11 17:50:00 2016 (r421852) @@ -25,9 +25,10 @@ BZIP2_102= 1.0.2 BZIP2_103= 1.0.3 USE_OPENSSL= yes -USES= gmake +USES= gmake ssl ALL_TARGET= deltup MAKE_ARGS= CC="${CC}" CXX="${CXX}" PREFIX="${PREFIX}" +CXXFLAGS+= -I${OPENSSLINC} PLIST_FILES= bin/deltup \ bin/bzip2_1.0.2 \ bin/bzip2_1.0.3 \ @@ -38,7 +39,8 @@ WRKSRC_BZIP2_103= ${WRKDIR}/bzip2-${BZIP PORTDOCS= ChangeLog README post-patch: - @${REINPLACE_CMD} -e 's/CC/CXX/' -e 's,gcc,$${CXX},' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's/CC/CXX/' -e 's,gcc,$${CXX},' \ + -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" ${WRKSRC}/Makefile pre-build: @${REINPLACE_CMD} -e 's|-Wall -Winline -O2|-Wall -Winline -O2 ${CFLAGS}|' \ From owner-svn-ports-head@freebsd.org Sun Sep 11 17:54:23 2016 Return-Path: Delivered-To: svn-ports-head@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 18C58BD7682; Sun, 11 Sep 2016 17:54:23 +0000 (UTC) (envelope-from amdmi3@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 DA3107E4; Sun, 11 Sep 2016 17:54:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHsM1Y099247; Sun, 11 Sep 2016 17:54:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHsMrP099246; Sun, 11 Sep 2016 17:54:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111754.u8BHsMrP099246@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:54:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421853 - head/security/checkpassword-pam X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:54:23 -0000 Author: amdmi3 Date: Sun Sep 11 17:54:21 2016 New Revision: 421853 URL: https://svnweb.freebsd.org/changeset/ports/421853 Log: - Add LICENSE Modified: head/security/checkpassword-pam/Makefile Modified: head/security/checkpassword-pam/Makefile ============================================================================== --- head/security/checkpassword-pam/Makefile Sun Sep 11 17:50:00 2016 (r421852) +++ head/security/checkpassword-pam/Makefile Sun Sep 11 17:54:21 2016 (r421853) @@ -9,6 +9,9 @@ MASTER_SITES= SF/checkpasswd-pam/checkpa MAINTAINER= ports@FreeBSD.org COMMENT= Implementation of checkpassword authentication program +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + GNU_CONFIGURE= yes PLIST_FILES= bin/checkpassword-pam \ From owner-svn-ports-head@freebsd.org Sun Sep 11 17:56:27 2016 Return-Path: Delivered-To: svn-ports-head@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 E9B32BD76ED; Sun, 11 Sep 2016 17:56:27 +0000 (UTC) (envelope-from amdmi3@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 A0E528EF; Sun, 11 Sep 2016 17:56:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHuQwg099463; Sun, 11 Sep 2016 17:56:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHuQWp099459; Sun, 11 Sep 2016 17:56:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111756.u8BHuQWp099459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:56:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421854 - in head/www/dalbum: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:56:28 -0000 Author: amdmi3 Date: Sun Sep 11 17:56:26 2016 New Revision: 421854 URL: https://svnweb.freebsd.org/changeset/ports/421854 Log: - Add LICENSE - Add missing USES=php - Move permission handling to plist - Regenerate patches Modified: head/www/dalbum/Makefile head/www/dalbum/files/patch-config-config.php head/www/dalbum/pkg-plist Modified: head/www/dalbum/Makefile ============================================================================== --- head/www/dalbum/Makefile Sun Sep 11 17:54:21 2016 (r421853) +++ head/www/dalbum/Makefile Sun Sep 11 17:56:26 2016 (r421854) @@ -11,9 +11,12 @@ DISTNAME= ${PORTNAME}${PORTVERSION:S/./_ MAINTAINER= ports@FreeBSD.org COMMENT= Free, highly customizable PHP photo album +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/license.txt + RUN_DEPENDS= convert:graphics/ImageMagick -USES= cpe +USES= cpe php CPE_VERSION= ${PORTVERSION:C/^([0-9])([0-9][0-9]).*/\1.\2/} CPE_UPDATE= ${PORTVERSION:C/^.*\.//} USE_PHP= session pcre @@ -32,7 +35,7 @@ post-patch: @${RM} ${WRKSRC}/config/config.php.* do-install: - @${MKDIR} -m 0775 ${STAGEDIR}${PREFIX}/${DALBUM_DIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${DALBUM_DIR} @cd ${WRKSRC} && ${FIND} .htaccess .private config images include pictures *.css *.js *.php *.txt -print | \ ${CPIO} --quiet -pdum \ ${STAGEDIR}${PREFIX}/${DALBUM_DIR} Modified: head/www/dalbum/files/patch-config-config.php ============================================================================== --- head/www/dalbum/files/patch-config-config.php Sun Sep 11 17:54:21 2016 (r421853) +++ head/www/dalbum/files/patch-config-config.php Sun Sep 11 17:56:26 2016 (r421854) @@ -1,6 +1,6 @@ ---- config/config.php.orig Fri Oct 21 13:43:21 2005 -+++ config/config.php Fri Oct 21 13:44:15 2005 -@@ -242,7 +242,7 @@ +--- config/config.php.orig 2005-09-20 21:40:56 UTC ++++ config/config.php +@@ -242,7 +242,7 @@ $g_bGDVer2=(fixed_phpversion()>"4.3"); $g_bGDSetMemoryLimit=true; // ImageMagick convert location and command lines (if $g_sResizeMethod="IM") Modified: head/www/dalbum/pkg-plist ============================================================================== --- head/www/dalbum/pkg-plist Sun Sep 11 17:54:21 2016 (r421853) +++ head/www/dalbum/pkg-plist Sun Sep 11 17:56:26 2016 (r421854) @@ -91,6 +91,6 @@ @dir %%DALBUM_DIR%%/images @dir %%DALBUM_DIR%%/config @dir %%DALBUM_DIR%%/.private -@dir %%DALBUM_DIR%% +@dir(,,775) %%DALBUM_DIR%% @owner @group From owner-svn-ports-head@freebsd.org Sun Sep 11 17:57:26 2016 Return-Path: Delivered-To: svn-ports-head@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 8708ABD7747; Sun, 11 Sep 2016 17:57:26 +0000 (UTC) (envelope-from amdmi3@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 3D6B89D9; Sun, 11 Sep 2016 17:57:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHvPkl099589; Sun, 11 Sep 2016 17:57:25 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHvPq6099588; Sun, 11 Sep 2016 17:57:25 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111757.u8BHvPq6099588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:57:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421855 - head/www/sqstat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:57:26 -0000 Author: amdmi3 Date: Sun Sep 11 17:57:25 2016 New Revision: 421855 URL: https://svnweb.freebsd.org/changeset/ports/421855 Log: - Add LICENSE - Add missing USES=php - Add NO_ARCH - Remove unneeded (because of SUB_FILES) and duplicate PKGMESSAGE - Switch to options helpers - Simplify installation - Don't install license with docs - Remove bogus BROKEN_powerpc64: this port does not even build Modified: head/www/sqstat/Makefile Modified: head/www/sqstat/Makefile ============================================================================== --- head/www/sqstat/Makefile Sun Sep 11 17:56:26 2016 (r421854) +++ head/www/sqstat/Makefile Sun Sep 11 17:57:25 2016 (r421855) @@ -11,36 +11,37 @@ MASTER_SITES= http://samm.kiev.ua/sqstat MAINTAINER= ports@FreeBSD.org COMMENT= Script which allows to look through active squid users connections -BROKEN_powerpc64= Does not build +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/docs/LICENSE +USES= php USE_PHP= pcre session NO_BUILD= yes -PKGMESSAGE= ${WRKDIR}/pkg-message - -OPTIONS_DEFINE= DOCS - -.include +NO_ARCH= yes SQSTATDIR?= share/${PORTNAME} SUB_FILES= pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message SUB_LIST= SQSTATDIR=${SQSTATDIR} PLIST_FILES= ${SQSTATDIR}/arrow.gif ${SQSTATDIR}/sqstat.class.php \ ${SQSTATDIR}/sqstat.css ${SQSTATDIR}/sqstat.php \ ${SQSTATDIR}/zhabascript.js \ ${SQSTATDIR}/config.inc.php.defaults -PORTDOCS= CHANGES FAQ LICENSE README TODO +PORTDOCS= CHANGES FAQ README TODO + +OPTIONS_DEFINE= DOCS do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${SQSTATDIR}; \ - for f in ${PLIST_FILES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$${f##*/} ${STAGEDIR}${PREFIX}/${SQSTATDIR}; \ - done - @${MKDIR} ${STAGEDIR}${DOCSDIR}; \ - for f in ${PORTDOCS}; do \ - ${INSTALL_DATA} ${WRKSRC}/docs/$$f ${STAGEDIR}${DOCSDIR}; \ - done + @${MKDIR} ${STAGEDIR}${PREFIX}/${SQSTATDIR} +.for f in ${PLIST_FILES} + ${INSTALL_DATA} ${WRKSRC}/${f:T} ${STAGEDIR}${PREFIX}/${SQSTATDIR} +.endfor + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/docs/${f} ${STAGEDIR}${DOCSDIR} +.endfor .include From owner-svn-ports-head@freebsd.org Sun Sep 11 17:58:20 2016 Return-Path: Delivered-To: svn-ports-head@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 CB5E6BD7811; Sun, 11 Sep 2016 17:58:20 +0000 (UTC) (envelope-from amdmi3@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 849ADC4A; Sun, 11 Sep 2016 17:58:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHwJ0d099758; Sun, 11 Sep 2016 17:58:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHwJwa099757; Sun, 11 Sep 2016 17:58:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111758.u8BHwJwa099757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:58:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421856 - head/devel/jna X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:58:20 -0000 Author: amdmi3 Date: Sun Sep 11 17:58:19 2016 New Revision: 421856 URL: https://svnweb.freebsd.org/changeset/ports/421856 Log: - Add LICENSE - Switch to options helpers - Cosmetic fixes Modified: head/devel/jna/Makefile Modified: head/devel/jna/Makefile ============================================================================== --- head/devel/jna/Makefile Sun Sep 11 17:57:25 2016 (r421855) +++ head/devel/jna/Makefile Sun Sep 11 17:58:19 2016 (r421856) @@ -7,16 +7,23 @@ CATEGORIES= devel java MAINTAINER= ports@FreeBSD.org COMMENT= Java access to native shared libraries +LICENSE= LGPL21+ APACHE20 +LICENSE_COMB= dual +LICENSE_FOLE= ${WRKSRC}/LICENSE +LICENSE_FILE_LGPL21+ = ${WRKSRC}/LGPL2.1 +LICENSE_FILE_APACHE20= ${WRKSRC}/ASL2.0 + USES= gmake USE_ANT= yes USE_JAVA= yes USE_XORG= x11 xt MAKE_ARGS= -DCC="${CC}" -DLD="${LD}" -MAKE_ENV+= ANT_OPTS=-Drelease -DARCH=${ANT_ARCH} +MAKE_ENV= ANT_OPTS=-Drelease -DARCH=${ANT_ARCH} USE_GITHUB= yes GH_ACCOUNT= twall +PORTDOCS= javadoc platform-${PORTVERSION}-javadoc.jar PLIST_FILES= %%JAVAJARDIR%%/jna-platform.jar \ %%JAVAJARDIR%%/jna.jar @@ -24,10 +31,6 @@ OPTIONS_DEFINE= DOCS .include -.if ${PORT_OPTIONS:MDOCS} -PORTDOCS= javadoc platform-${PORTVERSION}-javadoc.jar -.endif - .if ${ARCH} == "i386" ANT_ARCH= x86 .elif ${ARCH} == "amd64" @@ -36,24 +39,21 @@ ANT_ARCH= x86-64 post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ - ${WRKSRC}/native/Makefile + ${WRKSRC}/native/Makefile -post-build-script: -.if ${PORT_OPTIONS:MDOCS} +post-build-DOCS-on: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${ANT} javadoc -.endif do-install: ${INSTALL_DATA} ${WRKSRC}/build/freebsd-${ANT_ARCH}.jar \ - ${STAGEDIR}${JAVAJARDIR}/jna-platform.jar + ${STAGEDIR}${JAVAJARDIR}/jna-platform.jar ${INSTALL_DATA} ${WRKSRC}/build/jna.jar \ - ${STAGEDIR}${JAVAJARDIR}/jna.jar -.if ${PORT_OPTIONS:MDOCS} + ${STAGEDIR}${JAVAJARDIR}/jna.jar + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc && \ - ${COPYTREE_SHARE} javadoc ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC}/doc && ${COPYTREE_SHARE} javadoc ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/dist/platform-${PORTVERSION}-javadoc.jar \ - ${STAGEDIR}${DOCSDIR} -.endif + ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@freebsd.org Sun Sep 11 17:59:09 2016 Return-Path: Delivered-To: svn-ports-head@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 2CDBDBD7882; Sun, 11 Sep 2016 17:59:09 +0000 (UTC) (envelope-from amdmi3@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 F1E41D3E; Sun, 11 Sep 2016 17:59:08 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHx8EP099901; Sun, 11 Sep 2016 17:59:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHx8bv099899; Sun, 11 Sep 2016 17:59:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111759.u8BHx8bv099899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421857 - in head/www/transproxy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:59:09 -0000 Author: amdmi3 Date: Sun Sep 11 17:59:07 2016 New Revision: 421857 URL: https://svnweb.freebsd.org/changeset/ports/421857 Log: - Add LICENSE - Switch to USES=tar - Regenerate patches Modified: head/www/transproxy/Makefile head/www/transproxy/files/patch-Makefile Modified: head/www/transproxy/Makefile ============================================================================== --- head/www/transproxy/Makefile Sun Sep 11 17:58:19 2016 (r421856) +++ head/www/transproxy/Makefile Sun Sep 11 17:59:07 2016 (r421857) @@ -6,11 +6,14 @@ PORTVERSION= 1.6 CATEGORIES= www MASTER_SITES= SF -EXTRACT_SUFX= .tgz - MAINTAINER= ports@FreeBSD.org COMMENT= Transparent HTTP proxy for ipfw's fwd rule or IPFILTER's ipnat command +LICENSE= BSD4CLAUSE # ish; 3 clauses but both advertising and promotion are there +LICENSE_FILE= ${WRKSRC}/COPYRIGHT + +USES= tar:tgz + USE_RC_SUBR= tproxy .include Modified: head/www/transproxy/files/patch-Makefile ============================================================================== --- head/www/transproxy/files/patch-Makefile Sun Sep 11 17:58:19 2016 (r421856) +++ head/www/transproxy/files/patch-Makefile Sun Sep 11 17:59:07 2016 (r421857) @@ -1,6 +1,6 @@ ---- Makefile.orig Fri Aug 18 07:35:46 2000 -+++ Makefile Wed Jun 6 10:31:05 2001 -@@ -61,17 +61,17 @@ +--- Makefile.orig 2004-03-31 12:19:34 UTC ++++ Makefile +@@ -64,17 +64,17 @@ OPTIONS += -DIPTABLES #OPTIONS += -DHAVE_GETOPT_H # You may need to touch PREFIX, CC and CFLAGS. @@ -25,7 +25,7 @@ # For using BIND resolver instead of system resolver. #LIBS += -lresolv # Really old Linux has this. -@@ -100,7 +100,7 @@ +@@ -103,7 +103,7 @@ clobber dist-clean: clean $(RM) tproxy install: tproxy From owner-svn-ports-head@freebsd.org Sun Sep 11 17:59:26 2016 Return-Path: Delivered-To: svn-ports-head@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 25586BD78B1; Sun, 11 Sep 2016 17:59:26 +0000 (UTC) (envelope-from amdmi3@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 EC53EE1A; Sun, 11 Sep 2016 17:59:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHxPTj000108; Sun, 11 Sep 2016 17:59:25 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHxPFV000107; Sun, 11 Sep 2016 17:59:25 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111759.u8BHxPFV000107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:59:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421858 - head/net/dhcprelya X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:59:26 -0000 Author: amdmi3 Date: Sun Sep 11 17:59:25 2016 New Revision: 421858 URL: https://svnweb.freebsd.org/changeset/ports/421858 Log: - Switch to options helpers Modified: head/net/dhcprelya/Makefile Modified: head/net/dhcprelya/Makefile ============================================================================== --- head/net/dhcprelya/Makefile Sun Sep 11 17:59:07 2016 (r421857) +++ head/net/dhcprelya/Makefile Sun Sep 11 17:59:25 2016 (r421858) @@ -21,27 +21,19 @@ PORTDOCS= README PLIST_FILES= sbin/${PORTNAME} lib/${PORTNAME}_log_plugin.so \ lib/${PORTNAME}_option82_plugin.so +OPTIONS_DEFINE= DOCS # The modules use a new system libradius that is not committed yet #OPTIONS_DEFINE= RADIUS_PLUGIN -RADIUS_PLUGIN_PLUGIN_DESC= build radius plugin - -OPTIONS_DEFINE= DOCS - -.include - -.if ${PORT_OPTIONS:MRADIUS_PLUGIN} -PLIST_FILES+= lib/${PORTNAME}_radius_plugin.so -MAKE_ARGS= -DWITH_RADIUS_PLUGIN -.endif +RADIUS_PLUGIN_DESC= Build radius plugin +RADIUS_PLUGIN_PLIST_FILES= lib/${PORTNAME}_radius_plugin.so +RADIUS_PLUGIN_MAKE_ON= -DWITH_RADIUS_PLUGIN post-patch: - @${REINPLACE_CMD} -e 's#/usr/local#${STAGEDIR}/${PREFIX}#' \ + @${REINPLACE_CMD} -e 's#/usr/local#${STAGEDIR}${PREFIX}#' \ ${WRKSRC}/Makefile -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}/${DOCSDIR} +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}/${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR} -.endif .include From owner-svn-ports-head@freebsd.org Sun Sep 11 17:59:49 2016 Return-Path: Delivered-To: svn-ports-head@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 05A79BD78ED; Sun, 11 Sep 2016 17:59:49 +0000 (UTC) (envelope-from amdmi3@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 B87A5EF1; Sun, 11 Sep 2016 17:59:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BHxl6H000238; Sun, 11 Sep 2016 17:59:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BHxlii000236; Sun, 11 Sep 2016 17:59:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111759.u8BHxlii000236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 17:59:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421859 - head/devel/ptypes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 17:59:49 -0000 Author: amdmi3 Date: Sun Sep 11 17:59:47 2016 New Revision: 421859 URL: https://svnweb.freebsd.org/changeset/ports/421859 Log: - Add LICENSE - Switch to options helpers - Switch to PORTDOCS/PORTEXAMPLES Modified: head/devel/ptypes/Makefile head/devel/ptypes/pkg-plist Modified: head/devel/ptypes/Makefile ============================================================================== --- head/devel/ptypes/Makefile Sun Sep 11 17:59:25 2016 (r421858) +++ head/devel/ptypes/Makefile Sun Sep 11 17:59:47 2016 (r421859) @@ -9,43 +9,44 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= C++ Portable Types Library +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + SHLIB_VER= 21 -USE_LDCONFIG= yes -PLIST_SUB+= SHLIB_VER=${SHLIB_VER} PTYPES_CFLAGS= ${CFLAGS} +MAKE_ARGS= DEBUG_FLAGS="${DEBUG_FLAGS}" PTYPES_CFLAGS="${PTYPES_CFLAGS}" +PLIST_SUB= SHLIB_VER=${SHLIB_VER} MAKE_JOBS_UNSAFE= yes +USE_LDCONFIG= yes -OPTIONS_DEFINE= DEBUG OPTIMIZED_CFLAGS DOCS +PORTDOCS= * +PORTEXAMPLES= * -.include +OPTIONS_DEFINE= DEBUG OPTIMIZED_CFLAGS DOCS EXAMPLES -.if ${PORT_OPTIONS:MDEBUG} -DEBUG_FLAGS= "-DDEBUG -g" -.endif -.if ${PORT_OPTIONS:MOPTIMIZED} -PTYPES_CFLAGS+=-O2 -.endif +DEBUG_VARS= DEBUG_FLAGS="-DDEBUG -g" +OPTIMIZED_CFLAGS_VARS= PTYPES_CFLAGS+="-O2" -MAKE_ARGS+= DEBUG_FLAGS="${DEBUG_FLAGS}" PTYPES_CFLAGS="${PTYPES_CFLAGS}" +pre-install: + @${RM} -f ${WRKSRC}/include/*.orig + @${RM} -f ${WRKSRC}/wshare/*.o ${WRKSRC}/wshare/*.orig do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/include/ptypes - ${RM} -f ${WRKSRC}/include/*.orig + @${MKDIR} ${STAGEDIR}${PREFIX}/include/ptypes ${INSTALL_DATA} ${WRKSRC}/include/* ${STAGEDIR}${PREFIX}/include/ptypes - ${MKDIR} ${STAGEDIR}${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/so/libptypes.so.${SHLIB_VER} \ - ${STAGEDIR}${PREFIX}/lib - cd ${STAGEDIR}${PREFIX}/lib; ${LN} -sf libptypes.so.${SHLIB_VER} libptypes.so + @${MKDIR} ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/so/libptypes.so.${SHLIB_VER} ${STAGEDIR}${PREFIX}/lib + ${LN} -sf libptypes.so.${SHLIB_VER} ${STAGEDIR}${PREFIX}/lib/libptypes.so ${INSTALL_DATA} ${WRKSRC}/lib/* ${STAGEDIR}${PREFIX}/lib -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/wshare - -${RM} -f ${WRKSRC}/wshare/*.o ${WRKSRC}/wshare/*.orig + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/wshare ${INSTALL_DATA} ${WRKSRC}/wshare/*.* ${STAGEDIR}${EXAMPLESDIR}/wshare ${INSTALL_PROGRAM} ${WRKSRC}/wshare/wshare ${STAGEDIR}${EXAMPLESDIR}/wshare - ${MKDIR} ${STAGEDIR}${DOCSDIR}/doc - ${INSTALL_DATA} ${WRKSRC}/LICENSE ${WRKSRC}/index.html ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc; ${TAR} cf - *| ${TAR} xf - -C ${STAGEDIR}${DOCSDIR}/doc -.endif + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR}/doc + cd ${WRKSRC} && ${COPYTREE_SHARE} "index.html doc" ${STAGEDIR}${DOCSDIR} .include Modified: head/devel/ptypes/pkg-plist ============================================================================== --- head/devel/ptypes/pkg-plist Sun Sep 11 17:59:25 2016 (r421858) +++ head/devel/ptypes/pkg-plist Sun Sep 11 17:59:47 2016 (r421859) @@ -8,115 +8,3 @@ lib/libptypes.a lib/libptypes.so lib/libptypes.so.%%SHLIB_VER%% lib/libptypesn.a -%%PORTDOCS%%%%DOCSDIR%%/LICENSE -%%PORTDOCS%%%%DOCSDIR%%/doc/async.examples.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.jobqueue.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.message.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.msgqueue.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.mutex.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.rwlock.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.semaphore.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.thread.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.trigger.html -%%PORTDOCS%%%%DOCSDIR%%/doc/async.utils.html -%%PORTDOCS%%%%DOCSDIR%%/doc/basic.html -%%PORTDOCS%%%%DOCSDIR%%/doc/changes.html -%%PORTDOCS%%%%DOCSDIR%%/doc/compiling.html -%%PORTDOCS%%%%DOCSDIR%%/doc/criterrors.html -%%PORTDOCS%%%%DOCSDIR%%/doc/cset.constructors.html -%%PORTDOCS%%%%DOCSDIR%%/doc/cset.html -%%PORTDOCS%%%%DOCSDIR%%/doc/cset.manipulation.html -%%PORTDOCS%%%%DOCSDIR%%/doc/cset.operators.html -%%PORTDOCS%%%%DOCSDIR%%/doc/deploying.html -%%PORTDOCS%%%%DOCSDIR%%/doc/freshmeat-logo.png -%%PORTDOCS%%%%DOCSDIR%%/doc/htsrc.html -%%PORTDOCS%%%%DOCSDIR%%/doc/include/pasync.h.html -%%PORTDOCS%%%%DOCSDIR%%/doc/include/pinet.h.html -%%PORTDOCS%%%%DOCSDIR%%/doc/include/pport.h.html -%%PORTDOCS%%%%DOCSDIR%%/doc/include/pstreams.h.html -%%PORTDOCS%%%%DOCSDIR%%/doc/include/ptime.h.html -%%PORTDOCS%%%%DOCSDIR%%/doc/include/ptypes.h.html -%%PORTDOCS%%%%DOCSDIR%%/doc/index.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.examples.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.ipmessage.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.ipmsgserver.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.ipstmserver.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.ipstream.html -%%PORTDOCS%%%%DOCSDIR%%/doc/inet.utils.html -%%PORTDOCS%%%%DOCSDIR%%/doc/intro.html -%%PORTDOCS%%%%DOCSDIR%%/doc/lists.html -%%PORTDOCS%%%%DOCSDIR%%/doc/lists.textmap.html -%%PORTDOCS%%%%DOCSDIR%%/doc/lists.tobjlist.html -%%PORTDOCS%%%%DOCSDIR%%/doc/lists.tpodlist.html -%%PORTDOCS%%%%DOCSDIR%%/doc/lists.tstrlist.html -%%PORTDOCS%%%%DOCSDIR%%/doc/portability.html -%%PORTDOCS%%%%DOCSDIR%%/doc/ref.html -%%PORTDOCS%%%%DOCSDIR%%/doc/ref.tmpl.html -%%PORTDOCS%%%%DOCSDIR%%/doc/source-forge-logo.png -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.errors.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.examples.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.infile.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.inmem.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.instm.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.iobase.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.logfile.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.md5.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.namedpipe.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.npserver.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.outfile.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.outmem.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.outstm.html -%%PORTDOCS%%%%DOCSDIR%%/doc/streams.stdio.html -%%PORTDOCS%%%%DOCSDIR%%/doc/string.constructors.html -%%PORTDOCS%%%%DOCSDIR%%/doc/string.conversion.html -%%PORTDOCS%%%%DOCSDIR%%/doc/string.html -%%PORTDOCS%%%%DOCSDIR%%/doc/string.manipulation.html -%%PORTDOCS%%%%DOCSDIR%%/doc/string.operators.html -%%PORTDOCS%%%%DOCSDIR%%/doc/string.typecasts.html -%%PORTDOCS%%%%DOCSDIR%%/doc/styles.css -%%PORTDOCS%%%%DOCSDIR%%/doc/time.calendar.html -%%PORTDOCS%%%%DOCSDIR%%/doc/time.datetime.html -%%PORTDOCS%%%%DOCSDIR%%/doc/time.html -%%PORTDOCS%%%%DOCSDIR%%/doc/time.time.html -%%PORTDOCS%%%%DOCSDIR%%/doc/title-21.png -%%PORTDOCS%%%%DOCSDIR%%/doc/unit.html -%%PORTDOCS%%%%DOCSDIR%%/doc/unknown.html -%%PORTDOCS%%%%DOCSDIR%%/doc/variant.arrays.html -%%PORTDOCS%%%%DOCSDIR%%/doc/variant.html -%%PORTDOCS%%%%DOCSDIR%%/doc/variant.objrefs.html -%%PORTDOCS%%%%DOCSDIR%%/doc/variant.typecasts.html -%%PORTDOCS%%%%DOCSDIR%%/doc/variant.utils.html -%%PORTDOCS%%%%DOCSDIR%%/doc/wshare.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/Makefile.Darwin -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/Makefile.FreeBSD -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/Makefile.HP-UX -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/Makefile.Linux -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/Makefile.SunOS -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/Makefile.common -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/clients.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/clients.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/config.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/config.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/log.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/log.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/mimetable.awk -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/mimetable.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/mod_about.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/mod_file.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/mod_wstat.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/modules.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/modules.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/request.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/request.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/sysutils.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/sysutils.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/urlutils.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/urlutils.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/utils.cxx -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/utils.h -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/wshare -%%PORTDOCS%%%%EXAMPLESDIR%%/wshare/wshare.cxx From owner-svn-ports-head@freebsd.org Sun Sep 11 18:00:30 2016 Return-Path: Delivered-To: svn-ports-head@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 33B1FBD7932; Sun, 11 Sep 2016 18:00:30 +0000 (UTC) (envelope-from amdmi3@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 06735FE9; Sun, 11 Sep 2016 18:00:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BI0Tf4000412; Sun, 11 Sep 2016 18:00:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BI0Tr6000411; Sun, 11 Sep 2016 18:00:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111800.u8BI0Tr6000411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:00:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421860 - head/security/xinetd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:00:30 -0000 Author: amdmi3 Date: Sun Sep 11 18:00:29 2016 New Revision: 421860 URL: https://svnweb.freebsd.org/changeset/ports/421860 Log: - Add LICENSE - Use new OPTIONS features Modified: head/security/xinetd/Makefile Modified: head/security/xinetd/Makefile ============================================================================== --- head/security/xinetd/Makefile Sun Sep 11 17:59:47 2016 (r421859) +++ head/security/xinetd/Makefile Sun Sep 11 18:00:29 2016 (r421860) @@ -10,17 +10,22 @@ MASTER_SITES= GENTOO MAINTAINER= garga@FreeBSD.org COMMENT= Replacement for inetd with better control and logging +LICENSE= XINETD +LICENSE_NAME= xinetd license +LICENSE_FILE= ${WRKSRC}/COPYRIGHT +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + GNU_CONFIGURE= yes USE_RC_SUBR= xinetd ALL_TARGET= build -CONFIGURE_ARGS+= --with-loadavg -OPTIONS_SUB= yes +CONFIGURE_ARGS= --with-loadavg USES= cpe shebangfix SHEBANG_FILES= ${WRKSRC}/xinetd/xconv.pl OPTIONS_DEFINE= IPV6 LIBWRAP XCONV OPTIONS_DEFAULT= LIBWRAP XCONV +OPTIONS_SUB= yes XCONV_DESC= Install xconv utility (requires perl) From owner-svn-ports-head@freebsd.org Sun Sep 11 18:10:57 2016 Return-Path: Delivered-To: svn-ports-head@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 A963FBD7BEE; Sun, 11 Sep 2016 18:10:57 +0000 (UTC) (envelope-from amdmi3@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 7692A8B2; Sun, 11 Sep 2016 18:10:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIAuLu007179; Sun, 11 Sep 2016 18:10:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIAuH1007178; Sun, 11 Sep 2016 18:10:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111810.u8BIAuH1007178@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:10:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421861 - head/x11-toolkits/gtkmathview/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:10:57 -0000 Author: amdmi3 Date: Sun Sep 11 18:10:56 2016 New Revision: 421861 URL: https://svnweb.freebsd.org/changeset/ports/421861 Log: - Fix build on 11.x+ Added: head/x11-toolkits/gtkmathview/files/patch-src_widget_gtkmathview__common.cc (contents, props changed) Added: head/x11-toolkits/gtkmathview/files/patch-src_widget_gtkmathview__common.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/gtkmathview/files/patch-src_widget_gtkmathview__common.cc Sun Sep 11 18:10:56 2016 (r421861) @@ -0,0 +1,20 @@ +--- src/widget/gtkmathview_common.cc.orig 2007-08-17 10:02:35 UTC ++++ src/widget/gtkmathview_common.cc +@@ -909,7 +909,7 @@ gtk_math_view_button_release_event(GtkWi + math_view->select_state == SELECT_STATE_NO && + fabs(math_view->button_press_x - event->x) <= CLICK_SPACE_RANGE && + fabs(math_view->button_press_y - event->y) <= CLICK_SPACE_RANGE && +- abs(math_view->button_press_time - event->time) <= CLICK_TIME_RANGE) ++ abs((long)math_view->button_press_time - (long)event->time) <= CLICK_TIME_RANGE) + { + // the mouse should have not moved more than one pixel in each direction + // and the time elapsed from the press event should be no more than 250ms +@@ -969,7 +969,7 @@ gtk_math_view_motion_notify_event(GtkWid + (math_view->select_state == SELECT_STATE_YES || + fabs(math_view->button_press_x - x) > CLICK_SPACE_RANGE || + fabs(math_view->button_press_y - y) > CLICK_SPACE_RANGE || +- abs(math_view->button_press_time - event->time) > CLICK_TIME_RANGE)) ++ abs((long)math_view->button_press_time - (long)event->time) > CLICK_TIME_RANGE)) + { + if (math_view->select_state == SELECT_STATE_NO) + { From owner-svn-ports-head@freebsd.org Sun Sep 11 18:15:25 2016 Return-Path: Delivered-To: svn-ports-head@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 4C340BD516D; Sun, 11 Sep 2016 18:15:25 +0000 (UTC) (envelope-from amdmi3@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 0DC46D55; Sun, 11 Sep 2016 18:15:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIFO1G008152; Sun, 11 Sep 2016 18:15:24 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIFNA8008148; Sun, 11 Sep 2016 18:15:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111815.u8BIFNA8008148@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:15:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421862 - in head/net/portfwd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:15:25 -0000 Author: amdmi3 Date: Sun Sep 11 18:15:23 2016 New Revision: 421862 URL: https://svnweb.freebsd.org/changeset/ports/421862 Log: - Fix build on 11.x+ by switching to USES=autoreconf ===> Building for portfwd-0.29_1 gmake[1]: Entering directory '/wrkdirs/usr/ports/net/portfwd/work/portfwd-0.29' cd . && /wrkdirs/usr/ports/net/portfwd/work/portfwd-0.29/config/missing aclocal-1.4 WARNING: `aclocal-1.4' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. Check the `README' file, it often tells you about the needed prerequirements for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing `aclocal-1.4' program. gmake[1]: *** [Makefile:104: aclocal.m4] Error 1 gmake[1]: Leaving directory '/wrkdirs/usr/ports/net/portfwd/work/portfwd-0.29' - Fix LICENSE, add license file - Switch to options helpers - Fix plist to properly optionize EXAMPLES Approved by: portmgr blanket Added: head/net/portfwd/files/patch-Makefile.am (contents, props changed) head/net/portfwd/files/patch-doc_Makefile.am (contents, props changed) Deleted: head/net/portfwd/files/patch-Makefile.in head/net/portfwd/files/patch-doc__Makefile.in Modified: head/net/portfwd/Makefile head/net/portfwd/pkg-plist Modified: head/net/portfwd/Makefile ============================================================================== --- head/net/portfwd/Makefile Sun Sep 11 18:10:56 2016 (r421861) +++ head/net/portfwd/Makefile Sun Sep 11 18:15:23 2016 (r421862) @@ -10,26 +10,29 @@ MASTER_SITES= SF MAINTAINER= ale@FreeBSD.org COMMENT= Port Forwarding Daemon -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_powerpc64= Does not build OPTIONS_DEFINE= DOCS EXAMPLES GNU_CONFIGURE= yes -USES= gmake +USES= autoreconf gmake USE_RC_SUBR= ${PORTNAME} post-patch: @${REINPLACE_CMD} -e "s|-Wall -ggdb -O3|${CFLAGS}|g" \ - ${WRKSRC}/src/Makefile.in + ${WRKSRC}/src/Makefile.am @${REINPLACE_CMD} -e "s|-Wall -g -O3|${CFLAGS}|g" \ - ${WRKSRC}/tools/Makefile.in + ${WRKSRC}/tools/Makefile.am @${TOUCH} ${WRKSRC}/* ${WRKSRC}/*/* post-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/etc/rc.d + +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/cfg/*.cfg ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/etc/rc.d .include Added: head/net/portfwd/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/portfwd/files/patch-Makefile.am Sun Sep 11 18:15:23 2016 (r421862) @@ -0,0 +1,8 @@ +--- Makefile.am.orig 2016-08-27 09:36:16 UTC ++++ Makefile.am +@@ -1,4 +1,4 @@ + SUBDIRS = getopt src tools doc + +-docdir = $(prefix)/doc/portfwd ++docdir = $(prefix)/share/doc/portfwd + doc_DATA = COPYING README CREDITS TODO Added: head/net/portfwd/files/patch-doc_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/portfwd/files/patch-doc_Makefile.am Sun Sep 11 18:15:23 2016 (r421862) @@ -0,0 +1,9 @@ +--- doc/Makefile.am.orig 2016-08-27 09:36:16 UTC ++++ doc/Makefile.am +@@ -3,5 +3,5 @@ + man_MANS = portfwd.8 portfwd.cfg.5 + noinst_DATA = INSTALL.configure + +-docdir = $(prefix)/doc/portfwd ++docdir = $(prefix)/share/doc/portfwd + doc_DATA = FAQ conf.txt Modified: head/net/portfwd/pkg-plist ============================================================================== --- head/net/portfwd/pkg-plist Sun Sep 11 18:10:56 2016 (r421861) +++ head/net/portfwd/pkg-plist Sun Sep 11 18:15:23 2016 (r421862) @@ -7,21 +7,21 @@ man/man8/portfwd.8.gz %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%%%DOCSDIR%%/conf.txt -%%EXAMPLESDIR%%/alias.cfg -%%EXAMPLESDIR%%/bind-new.cfg -%%EXAMPLESDIR%%/bind.cfg -%%EXAMPLESDIR%%/chain.cfg -%%EXAMPLESDIR%%/debug_ftp.cfg -%%EXAMPLESDIR%%/dns.cfg -%%EXAMPLESDIR%%/empty.cfg -%%EXAMPLESDIR%%/external-director.cfg -%%EXAMPLESDIR%%/fragile.cfg -%%EXAMPLESDIR%%/ftp.cfg -%%EXAMPLESDIR%%/load-balance.cfg -%%EXAMPLESDIR%%/mail.cfg -%%EXAMPLESDIR%%/portfwd1.cfg -%%EXAMPLESDIR%%/portfwd2.cfg -%%EXAMPLESDIR%%/single.cfg -%%EXAMPLESDIR%%/test.cfg -%%EXAMPLESDIR%%/udp.cfg -%%EXAMPLESDIR%%/x.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/alias.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bind-new.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bind.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chain.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/debug_ftp.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dns.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/empty.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/external-director.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fragile.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftp.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/load-balance.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mail.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/portfwd1.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/portfwd2.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/single.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/udp.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/x.cfg From owner-svn-ports-head@freebsd.org Sun Sep 11 18:19:45 2016 Return-Path: Delivered-To: svn-ports-head@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 70F3EBD535A; Sun, 11 Sep 2016 18:19:45 +0000 (UTC) (envelope-from amdmi3@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 43B41FAD; Sun, 11 Sep 2016 18:19:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIJi5G008432; Sun, 11 Sep 2016 18:19:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIJixF008431; Sun, 11 Sep 2016 18:19:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111819.u8BIJixF008431@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:19:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421863 - head/devel/uclcmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:19:45 -0000 Author: amdmi3 Date: Sun Sep 11 18:19:44 2016 New Revision: 421863 URL: https://svnweb.freebsd.org/changeset/ports/421863 Log: - Mark BROKEN on 9.x: does not build: requires mkostemp(3) which is only available on FreeBSD 10+ Approved by: portmgr blanket Modified: head/devel/uclcmd/Makefile Modified: head/devel/uclcmd/Makefile ============================================================================== --- head/devel/uclcmd/Makefile Sun Sep 11 18:15:23 2016 (r421862) +++ head/devel/uclcmd/Makefile Sun Sep 11 18:19:44 2016 (r421863) @@ -12,6 +12,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libucl.so:textproc/libucl +BROKEN_FreeBSD_9= does not build: requires mkostemp(3) which is only available on FreeBSD 10+ + USE_GITHUB= yes GH_ACCOUNT= allanjude GH_TAGNAME= 0d336e9 From owner-svn-ports-head@freebsd.org Sun Sep 11 18:42:53 2016 Return-Path: Delivered-To: svn-ports-head@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 10C22BD5B43; Sun, 11 Sep 2016 18:42:53 +0000 (UTC) (envelope-from marino@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 CA3AACA7; Sun, 11 Sep 2016 18:42:52 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIgqHn019575; Sun, 11 Sep 2016 18:42:52 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIgqR0019574; Sun, 11 Sep 2016 18:42:52 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111842.u8BIgqR0019574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 18:42:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421864 - head/sysutils/dmg2img X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:42:53 -0000 Author: marino Date: Sun Sep 11 18:42:51 2016 New Revision: 421864 URL: https://svnweb.freebsd.org/changeset/ports/421864 Log: sysutils/dmg2img: Document SSL requirement and honor its flags Approved by: SSL blanket Modified: head/sysutils/dmg2img/Makefile Modified: head/sysutils/dmg2img/Makefile ============================================================================== --- head/sysutils/dmg2img/Makefile Sun Sep 11 18:19:44 2016 (r421863) +++ head/sysutils/dmg2img/Makefile Sun Sep 11 18:42:51 2016 (r421864) @@ -9,12 +9,15 @@ MASTER_SITES= http://vu1tur.eu.org/tools MAINTAINER= vg@FreeBSD.org COMMENT= DMG2IMG convert tool +USES= ssl PLIST_FILES= bin/${PORTNAME} \ bin/vfdecrypt pre-configure: ${REINPLACE_CMD} -e 's|%%PREFIX%%|${STAGEDIR}${PREFIX}/bin|g' \ - ${WRKSRC}/Makefile + -e "s|\(CFLAGS =\)|\1 -I${OPENSSLINC} |g" \ + -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" ${WRKSRC}/Makefile + post-build: ${MAKE} -C ${WRKSRC} install From owner-svn-ports-head@freebsd.org Sun Sep 11 18:47:52 2016 Return-Path: Delivered-To: svn-ports-head@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 E7DEDBD5C36; Sun, 11 Sep 2016 18:47:52 +0000 (UTC) (envelope-from amdmi3@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 B5C34E69; Sun, 11 Sep 2016 18:47:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIlp1N019830; Sun, 11 Sep 2016 18:47:51 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIlpcB019829; Sun, 11 Sep 2016 18:47:51 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111847.u8BIlpcB019829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:47:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421865 - head/multimedia/mkvtoolnix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:47:53 -0000 Author: amdmi3 Date: Sun Sep 11 18:47:51 2016 New Revision: 421865 URL: https://svnweb.freebsd.org/changeset/ports/421865 Log: - Mark BROKEN on 9.x: g++48: internal compiler error: Segmentation fault: 11 (program cc1plus) Approved by: portmgr blanket Modified: head/multimedia/mkvtoolnix/Makefile Modified: head/multimedia/mkvtoolnix/Makefile ============================================================================== --- head/multimedia/mkvtoolnix/Makefile Sun Sep 11 18:42:51 2016 (r421864) +++ head/multimedia/mkvtoolnix/Makefile Sun Sep 11 18:47:51 2016 (r421865) @@ -19,6 +19,8 @@ LIB_DEPENDS= libvorbis.so:audio/libvorbi libboost_regex.so:devel/boost-libs \ libmatroska.so:multimedia/libmatroska +BROKEN_FreeBSD_9= does not build: g++48 internal compiler error + USES= compiler:c++11-lib iconv pkgconfig tar:xz GNU_CONFIGURE= yes USE_RUBY= yes From owner-svn-ports-head@freebsd.org Sun Sep 11 18:53:03 2016 Return-Path: Delivered-To: svn-ports-head@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 46D5FBD5E5D; Sun, 11 Sep 2016 18:53:03 +0000 (UTC) (envelope-from amdmi3@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 16E3A25E; Sun, 11 Sep 2016 18:53:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIr2pj023358; Sun, 11 Sep 2016 18:53:02 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIr2tL023357; Sun, 11 Sep 2016 18:53:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111853.u8BIr2tL023357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:53:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421866 - head/www/dillo2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:53:03 -0000 Author: amdmi3 Date: Sun Sep 11 18:53:02 2016 New Revision: 421866 URL: https://svnweb.freebsd.org/changeset/ports/421866 Log: - Fix build on 9.x Approved by: portmgr blanket Modified: head/www/dillo2/Makefile Modified: head/www/dillo2/Makefile ============================================================================== --- head/www/dillo2/Makefile Sun Sep 11 18:47:51 2016 (r421865) +++ head/www/dillo2/Makefile Sun Sep 11 18:53:02 2016 (r421866) @@ -33,6 +33,10 @@ SSL_DESC= Experimental HTTPS support .include +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +WITH_OPENSSL_PORT= yes +.endif + .if ${PORT_OPTIONS:MCOOKIES} CONFIGURE_ARGS+= --enable-cookies .else From owner-svn-ports-head@freebsd.org Sun Sep 11 18:58:01 2016 Return-Path: Delivered-To: svn-ports-head@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 B5AE1BD5F8B; Sun, 11 Sep 2016 18:58:01 +0000 (UTC) (envelope-from amdmi3@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 6892F803; Sun, 11 Sep 2016 18:58:01 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIw07l023701; Sun, 11 Sep 2016 18:58:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIw0Gh023699; Sun, 11 Sep 2016 18:58:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111858.u8BIw0Gh023699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:58:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421867 - in head/devel/ocaml-pcre: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:58:01 -0000 Author: amdmi3 Date: Sun Sep 11 18:58:00 2016 New Revision: 421867 URL: https://svnweb.freebsd.org/changeset/ports/421867 Log: - Fix build on 9.x bu removing unknown warning option Approved by: portmgr blanket Added: head/devel/ocaml-pcre/files/ head/devel/ocaml-pcre/files/extra-patch--Wno-keyword-macro (contents, props changed) Modified: head/devel/ocaml-pcre/Makefile Modified: head/devel/ocaml-pcre/Makefile ============================================================================== --- head/devel/ocaml-pcre/Makefile Sun Sep 11 18:53:02 2016 (r421866) +++ head/devel/ocaml-pcre/Makefile Sun Sep 11 18:58:00 2016 (r421867) @@ -25,6 +25,13 @@ DOCSDIR= ${PREFIX}/share/doc/pcre-ocaml OPTIONS_DEFINE= DOCS EXAMPLES +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +# unknown warning flag for old gcc +EXTRA_PATCHES+= ${FILESDIR}/extra-patch--Wno-keyword-macro +.endif + post-patch: @${REINPLACE_CMD} -e 's|$$prefix"/"share|${STAGEDIR}${PREFIX}/share|' \ -e '/datarootdir/s|$$pkg_name|&-ocaml|' \ Added: head/devel/ocaml-pcre/files/extra-patch--Wno-keyword-macro ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ocaml-pcre/files/extra-patch--Wno-keyword-macro Sun Sep 11 18:58:00 2016 (r421867) @@ -0,0 +1,35 @@ +--- _oasis.orig 2016-02-25 15:20:15 UTC ++++ _oasis +@@ -32,7 +32,7 @@ Library pcre + BuildDepends: bytes + CCOpt: -g -O2 -fPIC -DPIC + if flag(strict) && ccomp_type(cc) +- CCOpt+: -Wall -pedantic -Wextra -Wunused -Wno-long-long -Wno-keyword-macro ++ CCOpt+: -Wall -pedantic -Wextra -Wunused -Wno-long-long + + + # Examples +--- myocamlbuild.ml.orig 2016-02-25 15:20:15 UTC ++++ myocamlbuild.ml +@@ -648,8 +648,6 @@ let package_default = + A "-Wunused"; + A "-ccopt"; +- A "-Wno-long-long"; +- A "-ccopt"; +- A "-Wno-keyword-macro" ++ A "-Wno-long-long" + ]) + ]) + ]; +--- setup.ml.orig 2016-02-25 15:20:15 UTC ++++ setup.ml +@@ -6785,8 +6785,7 @@ let setup_t = + "-pedantic"; + "-Wextra"; + "-Wunused"; +- "-Wno-long-long"; +- "-Wno-keyword-macro" ++ "-Wno-long-long" + ]) + ]; + bs_cclib = [(OASISExpr.EBool true, [])]; From owner-svn-ports-head@freebsd.org Sun Sep 11 18:58:45 2016 Return-Path: Delivered-To: svn-ports-head@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 B3052BD5FF0; Sun, 11 Sep 2016 18:58:45 +0000 (UTC) (envelope-from amdmi3@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 807338F6; Sun, 11 Sep 2016 18:58:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIwiA9023848; Sun, 11 Sep 2016 18:58:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIwiDa023847; Sun, 11 Sep 2016 18:58:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111858.u8BIwiDa023847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:58:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421868 - head/www/nostromo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:58:45 -0000 Author: amdmi3 Date: Sun Sep 11 18:58:44 2016 New Revision: 421868 URL: https://svnweb.freebsd.org/changeset/ports/421868 Log: - Mark BROKEN on 9.x: "/wrkdirs/usr/ports/www/nostromo/work/nostromo-1.9.6/src/nhttpd/Makefile", line 19: Malformed conditional (defined(OPENSSLLIB) && "${OPENSSLLIB}" != "/usr/lib") "/wrkdirs/usr/ports/www/nostromo/work/nostromo-1.9.6/src/nhttpd/Makefile", line 21: if-less endif "/wrkdirs/usr/ports/www/nostromo/work/nostromo-1.9.6/src/nhttpd/Makefile", line 22: Malformed conditional (defined(OPENSSLINC) && "${OPENSSLINC}" != "/usr/include") "/wrkdirs/usr/ports/www/nostromo/work/nostromo-1.9.6/src/nhttpd/Makefile", line 24: if-less endif Reported by: pkg-fallout Approved by: portmgr blanket Modified: head/www/nostromo/Makefile Modified: head/www/nostromo/Makefile ============================================================================== --- head/www/nostromo/Makefile Sun Sep 11 18:58:00 2016 (r421867) +++ head/www/nostromo/Makefile Sun Sep 11 18:58:44 2016 (r421868) @@ -11,6 +11,8 @@ COMMENT= Fast, secure HTTP/1.1 CGI/1.1 S LICENSE= ISCL +BROKEN_FreeBSD_9= does not build + NOSTROMO_DIR?= nostromo NOSTROMO_LOGDIR?= ${NOSTROMO_DIR}/logs NOSTROMO_LOGDIR_PERMS?= 0775 From owner-svn-ports-head@freebsd.org Sun Sep 11 18:59:28 2016 Return-Path: Delivered-To: svn-ports-head@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 D4BFBBD609A; Sun, 11 Sep 2016 18:59:28 +0000 (UTC) (envelope-from amdmi3@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 A25DFB57; Sun, 11 Sep 2016 18:59:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BIxRt6023965; Sun, 11 Sep 2016 18:59:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BIxR1R023964; Sun, 11 Sep 2016 18:59:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111859.u8BIxR1R023964@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 18:59:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421869 - head/net-im/papyon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 18:59:28 -0000 Author: amdmi3 Date: Sun Sep 11 18:59:27 2016 New Revision: 421869 URL: https://svnweb.freebsd.org/changeset/ports/421869 Log: - Mark BROKEN: RuntimeError: You are linking against OpenSSL 0.9.8, which is no longer support by the OpenSSL project. You need to upgrade to a newer version of OpenSSL. Reported by: pkg-fallout Approved by: portmgr blanket Modified: head/net-im/papyon/Makefile Modified: head/net-im/papyon/Makefile ============================================================================== --- head/net-im/papyon/Makefile Sun Sep 11 18:58:44 2016 (r421868) +++ head/net-im/papyon/Makefile Sun Sep 11 18:59:27 2016 (r421869) @@ -20,6 +20,8 @@ RUN_DEPENDS= py*-openssl>0:security/py-o ${LOCALBASE}/lib/gstreamer-0.10/libgstpython.so:multimedia/py-gstreamer \ ${PYTHON_SITELIBDIR}/farsight.so:net-im/farsight2 +BROKEN_FreeBSD_9= does not build + USE_GNOME= pygobject USES= python USE_PYTHON= distutils From owner-svn-ports-head@freebsd.org Sun Sep 11 19:03:17 2016 Return-Path: Delivered-To: svn-ports-head@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 C940ABD63C1; Sun, 11 Sep 2016 19:03:17 +0000 (UTC) (envelope-from marino@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 99A66F44; Sun, 11 Sep 2016 19:03:17 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BJ3GHL027633; Sun, 11 Sep 2016 19:03:16 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BJ3Gaq027632; Sun, 11 Sep 2016 19:03:16 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111903.u8BJ3Gaq027632@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 19:03:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421870 - head/sysutils/ucspi-ssl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 19:03:17 -0000 Author: marino Date: Sun Sep 11 19:03:16 2016 New Revision: 421870 URL: https://svnweb.freebsd.org/changeset/ports/421870 Log: sysutils/ucspi-ssl: Document SSL requirement and honor its flags Approved by: SSL blanket Modified: head/sysutils/ucspi-ssl/Makefile Modified: head/sysutils/ucspi-ssl/Makefile ============================================================================== --- head/sysutils/ucspi-ssl/Makefile Sun Sep 11 18:59:27 2016 (r421869) +++ head/sysutils/ucspi-ssl/Makefile Sun Sep 11 19:03:16 2016 (r421870) @@ -18,7 +18,8 @@ RUN_DEPENDS= tcpserver:sysutils/ucspi-tc CONFLICTS?= ucspi-ssl-tls-[0-9]* -USES= perl5 +USES= perl5 ssl +CFLAGS+= -I${OPENSSLINC} PORTDOCS= CHANGES TODO UCSPI-SSL @@ -27,6 +28,8 @@ WRKSRC= ${WRKDIR}/host/superscript.com/ SCRIPTS_TO_INSTALL= https@ sslcat sslconnect post-patch: + ${REINPLACE_CMD} -e "s|\(-lssl -lcrypto\)|-L${OPENSSLLIB} \1|g" \ + ${WRKSRC}/src/ssl.lib .for x in ${SCRIPTS_TO_INSTALL} @${REINPLACE_CMD} -i '' -e 's|HOME/command/|${PREFIX}/bin/|' \ ${WRKSRC}/src/${x}.sh From owner-svn-ports-head@freebsd.org Sun Sep 11 19:19:00 2016 Return-Path: Delivered-To: svn-ports-head@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 7D68ABD680B; Sun, 11 Sep 2016 19:19:00 +0000 (UTC) (envelope-from amdmi3@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 5609A9AA; Sun, 11 Sep 2016 19:19:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BJIx1t031646; Sun, 11 Sep 2016 19:18:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BJIxHY031642; Sun, 11 Sep 2016 19:18:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609111918.u8BJIxHY031642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 19:18:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421871 - in head/sysutils/i7z: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 19:19:00 -0000 Author: amdmi3 Date: Sun Sep 11 19:18:59 2016 New Revision: 421871 URL: https://svnweb.freebsd.org/changeset/ports/421871 Log: - Fix broken cpuid implementation to fix segfaults and remove need of optimization removal hacks PR: 199186 Submitted by: dim Approved by: maintainer timeout (zont, 1 year) Modified: head/sysutils/i7z/Makefile head/sysutils/i7z/files/patch-helper_functions.c head/sysutils/i7z/files/patch-i7z.c Modified: head/sysutils/i7z/Makefile ============================================================================== --- head/sysutils/i7z/Makefile Sun Sep 11 19:03:16 2016 (r421870) +++ head/sysutils/i7z/Makefile Sun Sep 11 19:18:59 2016 (r421871) @@ -2,7 +2,7 @@ PORTNAME= i7z PORTVERSION= 0.27.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE @@ -20,10 +20,6 @@ PLIST_FILES= bin/${PORTNAME} \ ONLY_FOR_ARCHS= i386 amd64 -# Disable scheduling flags as they cause segfaults since they are enabled at -# default FreeBSD optimization levels (-O2, -O3, -Os) -CFLAGS+= -fno-schedule-insns2 -fno-schedule-insns -fno-caller-saves - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.man \ Modified: head/sysutils/i7z/files/patch-helper_functions.c ============================================================================== --- head/sysutils/i7z/files/patch-helper_functions.c Sun Sep 11 19:03:16 2016 (r421870) +++ head/sysutils/i7z/files/patch-helper_functions.c Sun Sep 11 19:18:59 2016 (r421871) @@ -1,5 +1,5 @@ --- ./helper_functions.c.orig 2012-09-11 08:15:54.000000000 +0200 -+++ ./helper_functions.c 2012-12-11 14:41:28.000000000 +0100 ++++ ./helper_functions.c 2015-04-05 20:52:59.850869370 +0200 @@ -30,6 +30,11 @@ #include #include @@ -27,7 +27,38 @@ int Get_Bits_Value(unsigned long val,int highbit, int lowbit){ unsigned long data = val; int bits = highbit - lowbit + 1; -@@ -234,7 +247,7 @@ +@@ -92,14 +105,22 @@ + static inline void cpuid (unsigned int info, unsigned int *eax, unsigned int *ebx, + unsigned int *ecx, unsigned int *edx) + { +- unsigned int _eax = info, _ebx, _ecx, _edx; +- asm volatile ("mov %%ebx, %%edi;" // save ebx (for PIC) +- "cpuid;" +- "mov %%ebx, %%esi;" // pass to caller +- "mov %%edi, %%ebx;" // restore ebx +- :"+a" (_eax), "=S" (_ebx), "=c" (_ecx), "=d" (_edx) +- : /* inputs: eax is handled above */ +- :"edi" /* clobbers: we hit edi directly */); ++ unsigned int _eax, _ebx, _ecx, _edx; ++ asm volatile ( ++#ifdef __i386__ ++ "pushl %%ebx\n" // save ebx (for PIC) ++#else // __x86_64__ ++ "pushq %%rbx\n" // save rbx (for PIC) ++#endif ++ "cpuid\n" ++ "mov %%ebx, %1\n" // pass to caller ++#ifdef __i386__ ++ "popl %%ebx\n" // restore ebx ++#else // __x86_64__ ++ "popq %%rbx\n" // restore rbx ++#endif ++ :"=a" (_eax), "=r" (_ebx), "=c" (_ecx), "=d" (_edx) ++ :"0" (info)); + if (eax) *eax = _eax; + if (ebx) *ebx = _ebx; + if (ecx) *ecx = _ecx; +@@ -234,7 +255,7 @@ int bits; *error_indx =0; @@ -36,7 +67,7 @@ fd = open (msr_file_name, O_RDONLY); if (fd < 0) { -@@ -255,11 +268,21 @@ +@@ -255,11 +276,21 @@ } } @@ -58,7 +89,7 @@ close (fd); -@@ -287,7 +310,7 @@ +@@ -287,7 +318,7 @@ int fd; char msr_file_name[64]; @@ -67,7 +98,7 @@ fd = open (msr_file_name, O_WRONLY); if (fd < 0) { -@@ -304,11 +327,21 @@ +@@ -304,11 +335,21 @@ } } @@ -89,7 +120,7 @@ close(fd); return(1); } -@@ -487,10 +520,10 @@ +@@ -487,10 +528,10 @@ void Test_Or_Make_MSR_DEVICE_FILES() { //test if the msr file exists @@ -103,7 +134,7 @@ { //a system mght have been set with msr allowable to be written //by a normal user so... -@@ -505,6 +538,7 @@ +@@ -505,6 +546,7 @@ printf ("i7z DEBUG: msr device files DONOT exist, trying out a makedev script\n"); if (geteuid () == 0) { @@ -111,7 +142,7 @@ //Try the Makedev script //sourced from MAKEDEV-cpuid-msr script in msr-tools system ("msr_major=202; \ -@@ -519,6 +553,9 @@ +@@ -519,6 +561,9 @@ "); printf ("i7z DEBUG: modprobbing for msr\n"); system ("modprobe msr"); @@ -121,7 +152,7 @@ } else { printf ("i7z DEBUG: You DONOT have root privileges, mknod to create device entries won't work out\n"); printf ("i7z DEBUG: A solution is to run this program as root\n"); -@@ -526,6 +563,7 @@ +@@ -526,6 +571,7 @@ } } } @@ -129,7 +160,7 @@ double cpufreq_info() { //CPUINFO is wrong for i7 but correct for the number of physical and logical cores present -@@ -543,6 +581,21 @@ +@@ -543,6 +589,21 @@ fclose (tmp_file); return atof(tmp_str); } @@ -151,7 +182,7 @@ int check_and_return_processor(char*strinfo) { -@@ -669,6 +722,7 @@ +@@ -669,6 +730,7 @@ printf("Socket-%d [num of cpus %d physical %d logical %d] %s\n",socket->socket_num,socket->max_cpu,socket->num_physical_cores,socket->num_logical_cores,socket_list); } @@ -159,7 +190,7 @@ void construct_CPU_Heirarchy_info(struct cpu_heirarchy_info* chi) { FILE *fp = fopen("/proc/cpuinfo","r"); -@@ -715,7 +769,51 @@ +@@ -715,7 +777,51 @@ chi->max_online_cpu = it_processor_num+1; fclose(fp); } Modified: head/sysutils/i7z/files/patch-i7z.c ============================================================================== --- head/sysutils/i7z/files/patch-i7z.c Sun Sep 11 19:03:16 2016 (r421870) +++ head/sysutils/i7z/files/patch-i7z.c Sun Sep 11 19:18:59 2016 (r421871) @@ -1,5 +1,68 @@ --- ./i7z.c.orig 2012-09-11 08:15:54.000000000 +0200 +++ ./i7z.c 2012-12-11 14:41:28.000000000 +0100 +@@ -184,11 +184,11 @@ + { + //below when just logging + if(prog_options.logging==1) { +- fprintf(fp_log_file_freq,"%d.%.9d\n",value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs ++ fprintf(fp_log_file_freq,"%jd.%.9ld\n",(intmax_t)value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs + } + //below when appending + if(prog_options.logging==2) { +- fprintf(fp_log_file_freq,"%d.%.9d\t",value->tv_sec,value->tv_nsec); ++ fprintf(fp_log_file_freq,"%jd.%.9ld\t",(intmax_t)value->tv_sec,value->tv_nsec); + } + } + +@@ -264,20 +264,20 @@ + if(socket_num==0){ + //below when just logging + if(prog_options.logging==1) +- fprintf(fp_log_file_freq_1,"%d.%.9d\n",value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs ++ fprintf(fp_log_file_freq_1,"%jd.%.9ld\n",(intmax_t)value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs + + //below when appending + if(prog_options.logging==2) +- fprintf(fp_log_file_freq_1,"%d.%.9d\t",value->tv_sec,value->tv_nsec); ++ fprintf(fp_log_file_freq_1,"%jd.%.9ld\t",(intmax_t)value->tv_sec,value->tv_nsec); + } + if(socket_num==1){ + //below when just logging + if(prog_options.logging==1) +- fprintf(fp_log_file_freq_2,"%d.%.9d\n",value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs ++ fprintf(fp_log_file_freq_2,"%jd.%.9ld\n",(intmax_t)value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs + + //below when appending + if(prog_options.logging==2) +- fprintf(fp_log_file_freq_2,"%d.%.9d\t",value->tv_sec,value->tv_nsec); ++ fprintf(fp_log_file_freq_2,"%jd.%.9ld\t",(intmax_t)value->tv_sec,value->tv_nsec); + } + } + +@@ -315,7 +315,7 @@ + { + //below when just logging + if(prog_options.logging != 0) { +- fprintf(fp_log_file_Cstates,"%d.%.9d",value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs ++ fprintf(fp_log_file_Cstates,"%jd.%.9ld",(intmax_t)value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs + } + } + +@@ -366,12 +366,12 @@ + if(socket_num==0){ + //below when just logging + if(prog_options.logging != 0) +- fprintf(fp_log_file_Cstates_1,"%d.%.9d",value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs ++ fprintf(fp_log_file_Cstates_1,"%jd.%.9ld",(intmax_t)value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs + } + if(socket_num==1){ + //below when just logging + if(prog_options.logging != 0) +- fprintf(fp_log_file_Cstates_2,"%d.%.9d",value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs ++ fprintf(fp_log_file_Cstates_2,"%jd.%.9ld",(intmax_t)value->tv_sec,value->tv_nsec); //newline, replace \n with \t to get everything separated with tabs + } + } + @@ -386,7 +386,11 @@ void modprobing_msr() From owner-svn-ports-head@freebsd.org Sun Sep 11 19:25:08 2016 Return-Path: Delivered-To: svn-ports-head@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 8C654BD6B5E; Sun, 11 Sep 2016 19:25:08 +0000 (UTC) (envelope-from marino@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 5B1B3DB3; Sun, 11 Sep 2016 19:25:08 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BJP72Y035283; Sun, 11 Sep 2016 19:25:07 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BJP7Xk035282; Sun, 11 Sep 2016 19:25:07 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609111925.u8BJP7Xk035282@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 19:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421872 - head/www/mod_authn_otp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 19:25:08 -0000 Author: marino Date: Sun Sep 11 19:25:07 2016 New Revision: 421872 URL: https://svnweb.freebsd.org/changeset/ports/421872 Log: www/mod_authn_otp: Document SSL requirement and set its flags While here, remove unnecessary options include. Approved by: SSL blanket Modified: head/www/mod_authn_otp/Makefile Modified: head/www/mod_authn_otp/Makefile ============================================================================== --- head/www/mod_authn_otp/Makefile Sun Sep 11 19:18:59 2016 (r421871) +++ head/www/mod_authn_otp/Makefile Sun Sep 11 19:25:07 2016 (r421872) @@ -14,15 +14,18 @@ COMMENT= Apache module for one-time pass LICENSE= APACHE20 +USES= ssl GNU_CONFIGURE= yes USE_APACHE= 22+ +CPPFLAGS+= -I${OPENSSLINC} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + PORTEXAMPLES= users.sample OPTIONS_DEFINE= EXAMPLES -.include - post-configure: @${REINPLACE_CMD} 's|CFLAGS =|CFLAGS ?=|' \ ${WRKSRC}/Makefile From owner-svn-ports-head@freebsd.org Sun Sep 11 19:57:48 2016 Return-Path: Delivered-To: svn-ports-head@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 AC08FBD717B; Sun, 11 Sep 2016 19:57:48 +0000 (UTC) (envelope-from swills@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 56B98ABA; Sun, 11 Sep 2016 19:57:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BJvlK7046861; Sun, 11 Sep 2016 19:57:47 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BJvl47046859; Sun, 11 Sep 2016 19:57:47 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609111957.u8BJvl47046859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 11 Sep 2016 19:57:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421873 - head/devel/godep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 19:57:48 -0000 Author: swills Date: Sun Sep 11 19:57:47 2016 New Revision: 421873 URL: https://svnweb.freebsd.org/changeset/ports/421873 Log: devel/godep: update to v74 While here: - Define LICENSE - Clean up Makefile: replace custom targets with USES=go PR: 212515 Submitted by: Randy Westlund Modified: head/devel/godep/Makefile head/devel/godep/distinfo Modified: head/devel/godep/Makefile ============================================================================== --- head/devel/godep/Makefile Sun Sep 11 19:25:07 2016 (r421872) +++ head/devel/godep/Makefile Sun Sep 11 19:57:47 2016 (r421873) @@ -1,33 +1,21 @@ # $FreeBSD$ PORTNAME= godep -PORTVERSION= 72 -CATEGORIES= devel +PORTVERSION= 74 DISTVERSIONPREFIX= v +CATEGORIES= devel MAINTAINER= swills@FreeBSD.org COMMENT= Godep helps build packages reproducibly -BUILD_DEPENDS= ${LOCALBASE}/bin/go:lang/go +LICENSE= BSD3CLAUSE + +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} USE_GITHUB= yes GH_ACCOUNT= tools PLIST_FILES= bin/godep -STRIP= # stripping can break go binaries - -post-patch: - @${MKDIR} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME} -.for src in *.go .gitignore .travis.yml Changelog.md Godeps License Readme.md - @${MV} ${WRKSRC}/${src} \ - ${WRKSRC}/src/github.com/tools/${PORTNAME} -.endfor - -do-build: - @cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}; ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - .include Modified: head/devel/godep/distinfo ============================================================================== --- head/devel/godep/distinfo Sun Sep 11 19:25:07 2016 (r421872) +++ head/devel/godep/distinfo Sun Sep 11 19:57:47 2016 (r421873) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464442110 -SHA256 (tools-godep-v72_GH0.tar.gz) = 9c429009ebd42b4f79160010ece5c1d0b563ccf4a128ee2d63c561412bf84197 -SIZE (tools-godep-v72_GH0.tar.gz) = 71317 +TIMESTAMP = 1473404553 +SHA256 (tools-godep-v74_GH0.tar.gz) = e68c7766c06c59327a4189fb929d390e1cc7a0c4910e33cada54cf40f40ca546 +SIZE (tools-godep-v74_GH0.tar.gz) = 71366 From owner-svn-ports-head@freebsd.org Sun Sep 11 20:15:11 2016 Return-Path: Delivered-To: svn-ports-head@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 36AF5BD758B; Sun, 11 Sep 2016 20:15:11 +0000 (UTC) (envelope-from amdmi3@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 EDD0E38F; Sun, 11 Sep 2016 20:15:10 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BKFAsj054471; Sun, 11 Sep 2016 20:15:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BKF9dc054468; Sun, 11 Sep 2016 20:15:09 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609112015.u8BKF9dc054468@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 11 Sep 2016 20:15:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421874 - head/net/gnu-dico X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 20:15:11 -0000 Author: amdmi3 Date: Sun Sep 11 20:15:09 2016 New Revision: 421874 URL: https://svnweb.freebsd.org/changeset/ports/421874 Log: - Update to 2.3 - While here, convert to options helpers PR: 212401 Submitted by: goran.tal@gmail.com (maintainer) Modified: head/net/gnu-dico/Makefile head/net/gnu-dico/distinfo head/net/gnu-dico/pkg-plist Modified: head/net/gnu-dico/Makefile ============================================================================== --- head/net/gnu-dico/Makefile Sun Sep 11 19:57:47 2016 (r421873) +++ head/net/gnu-dico/Makefile Sun Sep 11 20:15:09 2016 (r421874) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dico -PORTVERSION= 2.2 -PORTREVISION= 6 +PORTVERSION= 2.3 CATEGORIES= net textproc MASTER_SITES= GNU PKGNAMEPREFIX= gnu- @@ -14,89 +13,51 @@ COMMENT= Flexible modular implementation LIB_DEPENDS= libltdl.so:devel/libltdl USE_LDCONFIG= yes -USES= tar:xz gmake libtool +USES= tar:xz gmake libtool localbase pkgconfig GNU_CONFIGURE= yes -CFLAGS+= -Wno-error=return-type -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --localstatedir=/var -OPTIONS_DEFINE= PYTHON GUILE PCRE GSASL PAM LDAP -OPTIONS_DEFAULT= PYTHON GUILE PCRE +INFO= dico + +PLIST_SUB= PORTVERSION=${PORTVERSION} +SUB_FILES= pkg-message +USE_RC_SUBR= dicod + +OPTIONS_DEFINE= PYTHON GUILE PCRE GSASL PAM LDAP NLS +OPTIONS_DEFAULT= PYTHON PCRE +OPTIONS_SUB= yes GSASL_DESC= GSASL support -.include +PYTHON_USES= python +PYTHON_CONFIGURE_ENV= PYTHON_CONFIG=${PYTHON_CMD}-config +PYTHON_CONFIGURE_OFF= --without-python -.if ${PORT_OPTIONS:MPYTHON} -USES+= python -CONFIGURE_ENV+= PYTHON_CONFIG=${PYTHON_CMD}-config -PLIST_SUB+= PYTHON="" -.else -CONFIGURE_ARGS+=--without-python -PLIST_SUB+= PYTHON="@comment " -.endif - -.if ${PORT_OPTIONS:MGUILE} -LIB_DEPENDS+= libguile.so:lang/guile -PLIST_SUB+= GUILE="" -.else -CONFIGURE_ARGS+=--without-guile -PLIST_SUB+= GUILE="@comment " -.endif - -.if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= libpcre.so:devel/pcre -PLIST_SUB+= PCRE="" -.else -CONFIGURE_ARGS+=--without-pcre -PLIST_SUB+= PCRE="@comment " -.endif - -.if ${PORT_OPTIONS:MGSASL} -LIB_DEPENDS+= libgsasl.so:security/gsasl -CONFIGURE_ARGS+=--with-gsasl -.else -CONFIGURE_ARGS+=--without-gsasl -.endif - -.if ${PORT_OPTIONS:MPAM} -PLIST_SUB+= PAM="" -CONFIGURE_ARGS+=--enable-pam -.else -PLIST_SUB+= PAM="@comment " -CONFIGURE_ARGS+=--disable-pam -.endif - -.if ${PORT_OPTIONS:MLDAP} -USE_OPENLDAP= yes -PLIST_SUB+= LDAP="" -.else -CONFIGURE_ARGS+=--without-ldap -PLIST_SUB+= LDAP="@comment " -.endif - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif +GUILE_LIB_DEPENDS= libguile-2.0.so:lang/guile2 +GUILE_CONFIGURE_OFF= --without-guile -INFO= dico +PCRE_LIB_DEPENDS= libpcre.so:devel/pcre +PCRE_CONFIGURE_OFF= --without-pcre -PLIST_SUB+= PORTVERSION=${PORTVERSION} -SUB_FILES+= pkg-message -USE_RC_SUBR= dicod +GSASL_LIB_DEPENDS= libgsasl.so:security/gsasl +GSASL_CONFIGURE_WITH= gsasl + +PAM_CONFIGURE_ENABLE= pam + +LDAP_USE= OPENLDAP=yes +LDAP_CONFIGURE_OFF= --without-ldap + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls post-patch: @${REINPLACE_CMD} 's/@bindir@/@sbindir@/' ${WRKSRC}/dicod/Makefile.in @${REINPLACE_CMD} 's/(bindir)..dir/&\/gdico/' ${WRKSRC}/dico/Makefile.in @${REINPLACE_CMD} '/INSTALL.*charset/d' ${WRKSRC}/gnu/Makefile.in @${REINPLACE_CMD} 's/python-config/$${PYTHON_CONFIG}/' ${WRKSRC}/configure + @${REINPLACE_CMD} 's/conf.5in dico/conf.5 dico/' ${WRKSRC}/doc/Makefile.in post-install: - @${INSTALL_DATA} ${FILESDIR}/dicod.conf ${STAGEDIR}${PREFIX}/etc/dicod.conf.sample + ${INSTALL_DATA} ${FILESDIR}/dicod.conf ${STAGEDIR}${PREFIX}/etc/dicod.conf.sample .include Modified: head/net/gnu-dico/distinfo ============================================================================== --- head/net/gnu-dico/distinfo Sun Sep 11 19:57:47 2016 (r421873) +++ head/net/gnu-dico/distinfo Sun Sep 11 20:15:09 2016 (r421874) @@ -1,2 +1,3 @@ -SHA256 (dico-2.2.tar.xz) = c474931e4e6f31fcff247f181d48448f18be4091750843536840f472809ef212 -SIZE (dico-2.2.tar.xz) = 1445224 +TIMESTAMP = 1473624817 +SHA256 (dico-2.3.tar.xz) = f38afa5771a70f2d3d72c409d664c20456de874f93d8b391141ba45ee3077e8d +SIZE (dico-2.3.tar.xz) = 1607960 Modified: head/net/gnu-dico/pkg-plist ============================================================================== --- head/net/gnu-dico/pkg-plist Sun Sep 11 19:57:47 2016 (r421873) +++ head/net/gnu-dico/pkg-plist Sun Sep 11 20:15:09 2016 (r421874) @@ -27,6 +27,8 @@ lib/dico/gcide.so %%GUILE%%lib/dico/guile.so %%LDAP%%lib/dico/ldap.a %%LDAP%%lib/dico/ldap.so +lib/dico/metaphone2.a +lib/dico/metaphone2.so lib/dico/nprefix.a lib/dico/nprefix.so lib/dico/outline.a @@ -48,9 +50,14 @@ lib/libdico.so lib/libdico.so.1 lib/libdico.so.1.0.0 libexec/idxgcide +man/man1/dico.1.gz +man/man5/dicod.conf.5.gz +man/man8/dicod.8.gz sbin/dicod %%DATADIR%%/%%PORTVERSION%%/include/pp-setup +%%NLS%%share/locale/da/LC_MESSAGES/dico.mo +%%NLS%%share/locale/de/LC_MESSAGES/dico.mo %%NLS%%share/locale/fi/LC_MESSAGES/dico.mo +%%NLS%%share/locale/fr/LC_MESSAGES/dico.mo %%NLS%%share/locale/pl/LC_MESSAGES/dico.mo %%NLS%%share/locale/uk/LC_MESSAGES/dico.mo -%%GUILE%%@dir share/guile/site/dico From owner-svn-ports-head@freebsd.org Sun Sep 11 20:40:29 2016 Return-Path: Delivered-To: svn-ports-head@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 E059ABD7D2D; Sun, 11 Sep 2016 20:40:29 +0000 (UTC) (envelope-from jlaffaye@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 B0C0FD8; Sun, 11 Sep 2016 20:40:29 +0000 (UTC) (envelope-from jlaffaye@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BKeSDW062100; Sun, 11 Sep 2016 20:40:28 GMT (envelope-from jlaffaye@FreeBSD.org) Received: (from jlaffaye@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BKeSFO062097; Sun, 11 Sep 2016 20:40:28 GMT (envelope-from jlaffaye@FreeBSD.org) Message-Id: <201609112040.u8BKeSFO062097@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jlaffaye set sender to jlaffaye@FreeBSD.org using -f From: Julien Laffaye Date: Sun, 11 Sep 2016 20:40:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421875 - head/lang/go X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 20:40:30 -0000 Author: jlaffaye Date: Sun Sep 11 20:40:28 2016 New Revision: 421875 URL: https://svnweb.freebsd.org/changeset/ports/421875 Log: Update to 1.7.1 PR: 212587 Submitted by: Larry Rosenman Modified: head/lang/go/Makefile head/lang/go/distinfo head/lang/go/pkg-plist Modified: head/lang/go/Makefile ============================================================================== --- head/lang/go/Makefile Sun Sep 11 20:15:09 2016 (r421874) +++ head/lang/go/Makefile Sun Sep 11 20:40:28 2016 (r421875) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= go -PORTVERSION= 1.7 +PORTVERSION= 1.7.1 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= http://golang.org/dl/ Modified: head/lang/go/distinfo ============================================================================== --- head/lang/go/distinfo Sun Sep 11 20:15:09 2016 (r421874) +++ head/lang/go/distinfo Sun Sep 11 20:40:28 2016 (r421875) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471337105 -SHA256 (go1.7.src.tar.gz) = 72680c16ba0891fcf2ccf46d0f809e4ecf47bbf889f5d884ccb54c5e9a17e1c0 -SIZE (go1.7.src.tar.gz) = 14091954 +TIMESTAMP = 1473618378 +SHA256 (go1.7.1.src.tar.gz) = 2b843f133b81b7995f26d0cb64bbdbb9d0704b90c44df45f844d28881ad442d3 +SIZE (go1.7.1.src.tar.gz) = 14098889 Modified: head/lang/go/pkg-plist ============================================================================== --- head/lang/go/pkg-plist Sun Sep 11 20:15:09 2016 (r421874) +++ head/lang/go/pkg-plist Sun Sep 11 20:40:28 2016 (r421875) @@ -95,6 +95,7 @@ go/doc/gopher/bumper320x180.png go/doc/gopher/bumper480x270.png go/doc/gopher/bumper640x360.png go/doc/gopher/doc.png +go/doc/gopher/favicon.svg go/doc/gopher/fiveyears.jpg go/doc/gopher/frontpage.png go/doc/gopher/gopherbw.png From owner-svn-ports-head@freebsd.org Sun Sep 11 20:47:27 2016 Return-Path: Delivered-To: svn-ports-head@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 7FD79BD7F05; Sun, 11 Sep 2016 20:47:27 +0000 (UTC) (envelope-from marino@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 4FEA279D; Sun, 11 Sep 2016 20:47:27 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BKlQp9065844; Sun, 11 Sep 2016 20:47:26 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BKlQPk065841; Sun, 11 Sep 2016 20:47:26 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112047.u8BKlQPk065841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 20:47:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421876 - in head/polish/libgadu: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 20:47:27 -0000 Author: marino Date: Sun Sep 11 20:47:26 2016 New Revision: 421876 URL: https://svnweb.freebsd.org/changeset/ports/421876 Log: polish/libgadu: Handle missing SSLv3 method for LibreSSL Approved by: SSL blanket Added: head/polish/libgadu/files/ head/polish/libgadu/files/patch-src_events.c (contents, props changed) Modified: head/polish/libgadu/Makefile Modified: head/polish/libgadu/Makefile ============================================================================== --- head/polish/libgadu/Makefile Sun Sep 11 20:40:28 2016 (r421875) +++ head/polish/libgadu/Makefile Sun Sep 11 20:47:26 2016 (r421876) @@ -37,7 +37,7 @@ OPTIONS_DEFINE= OPENSSL OPTIONS_DEFAULT=OPENSSL OPENSSL_CONFIGURE_WITH= openssl -OPENSSL_USE= OPENSSL=yes +OPENSSL_USES= ssl pre-install-OPENSSL-on: # OpenSSL from base system lacks .pc file for pkgconfig Added: head/polish/libgadu/files/patch-src_events.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/polish/libgadu/files/patch-src_events.c Sun Sep 11 20:47:26 2016 (r421876) @@ -0,0 +1,14 @@ +--- src/events.c.orig 2014-12-20 12:09:17 UTC ++++ src/events.c +@@ -294,7 +294,11 @@ int gg_session_init_ssl(struct gg_sessio + } + + if (gs->ssl_ctx == NULL) { ++#ifndef OPENSSL_NO_SSL3 + gs->ssl_ctx = SSL_CTX_new(SSLv3_client_method()); ++#else ++ gs->ssl_ctx = SSL_CTX_new(SSLv23_client_method()); ++#endif + + if (gs->ssl_ctx == NULL) { + ERR_error_string_n(ERR_get_error(), buf, sizeof(buf)); From owner-svn-ports-head@freebsd.org Sun Sep 11 21:11:09 2016 Return-Path: Delivered-To: svn-ports-head@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 A9F14BD778E; Sun, 11 Sep 2016 21:11:09 +0000 (UTC) (envelope-from marino@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 8230CC1D; Sun, 11 Sep 2016 21:11:09 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BLB8hW073656; Sun, 11 Sep 2016 21:11:08 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BLB88T073651; Sun, 11 Sep 2016 21:11:08 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112111.u8BLB88T073651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 21:11:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421877 - in head/comms/kermit: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 21:11:09 -0000 Author: marino Date: Sun Sep 11 21:11:08 2016 New Revision: 421877 URL: https://svnweb.freebsd.org/changeset/ports/421877 Log: comms/kermit: Upgrade version 9.0.302 => 9.0.304 (LibreSSL support) Fixes when SSL library has no SSLv3, EGD and compression. PR: 198980 Submitted by: brnrd@ Approved by: maintainer timeout (2 months) + SSL blanket Added: head/comms/kermit/files/ head/comms/kermit/files/ckermit.ini (contents, props changed) head/comms/kermit/files/ckermod.ini (contents, props changed) Modified: head/comms/kermit/Makefile head/comms/kermit/distinfo head/comms/kermit/pkg-descr Modified: head/comms/kermit/Makefile ============================================================================== --- head/comms/kermit/Makefile Sun Sep 11 20:47:26 2016 (r421876) +++ head/comms/kermit/Makefile Sun Sep 11 21:11:08 2016 (r421877) @@ -2,18 +2,20 @@ # $FreeBSD$ PORTNAME= kermit -PORTVERSION= 9.0.302 +PORTVERSION= 9.0.304 +DISTVERSIONPREFIX= cku +DISTVERSION= 304 +DISTVERSIONSUFFIX= dev20 CATEGORIES= comms ftp net -MASTER_SITES= ftp://kermit.columbia.edu/kermit/archives/ \ - ftp://ftp.icm.edu.pl/pub/kermit/archives/ -DISTNAME= cku${PORTVERSION:E} +MASTER_SITES= ftp://ftp.kermitproject.org/kermit/test/tar/ +DISTNAME= ${DISTVERSIONPREFIX}${DISTVERSION}-${DISTVERSIONSUFFIX} MAINTAINER= danfe@FreeBSD.org COMMENT= Portable scriptable network and serial communication program LICENSE= BSD3CLAUSE -USE_OPENSSL= yes +USES= ssl NO_WRKSUBDIR= yes MAKEFILE= makefile ALL_TARGET= freebsd+ssl @@ -36,9 +38,9 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/*.txt ${STAGEDIR}${DOCSDIR} ${LN} -sf ckaaaa.txt ${STAGEDIR}${DOCSDIR}/READ.ME @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/ckermit.ini \ + ${INSTALL_DATA} ${PATCHDIR}/ckermit.ini \ ${STAGEDIR}${EXAMPLESDIR}/dot.kermrc - ${INSTALL_DATA} ${WRKSRC}/ckermod.ini \ + ${INSTALL_DATA} ${PATCHDIR}/ckermod.ini \ ${STAGEDIR}${EXAMPLESDIR}/dot.mykermrc .include Modified: head/comms/kermit/distinfo ============================================================================== --- head/comms/kermit/distinfo Sun Sep 11 20:47:26 2016 (r421876) +++ head/comms/kermit/distinfo Sun Sep 11 21:11:08 2016 (r421877) @@ -1,2 +1,3 @@ -SHA256 (cku302.tar.gz) = 0d5f2cd12bdab9401b4c836854ebbf241675051875557783c332a6a40dac0711 -SIZE (cku302.tar.gz) = 3122219 +TIMESTAMP = 1467456688 +SHA256 (cku304-dev20.tar.gz) = 2e7c893a265a06365d578b22798880b7d670709c87f3b2dee59a329b7b9bf65d +SIZE (cku304-dev20.tar.gz) = 2462144 Added: head/comms/kermit/files/ckermit.ini ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/kermit/files/ckermit.ini Sun Sep 11 21:11:08 2016 (r421877) @@ -0,0 +1,8 @@ +COMMENT - Standard C-Kermit initialization file +; +echo +echo The very long standard initialization file that was distributed +echo with C-Kermit 6, 7, and 8 is no longer recommended as "standard", +echo since its features were little used. It is still available in +echo the C-Kermit distribution as ockermit.ini. +echo Added: head/comms/kermit/files/ckermod.ini ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/kermit/files/ckermod.ini Sun Sep 11 21:11:08 2016 (r421877) @@ -0,0 +1,8 @@ +; File CKERMOD.INI, Sample C-Kermit 7.0 customization file. +; +echo +echo The very long standard initialization file that was distributed +echo with C-Kermit 6, 7, and 8 is no longer recommended as "standard", +echo since its features were little used. It is still available in +echo the C-Kermit distribution as ockermod.ini. +echo Modified: head/comms/kermit/pkg-descr ============================================================================== --- head/comms/kermit/pkg-descr Sun Sep 11 20:47:26 2016 (r421876) +++ head/comms/kermit/pkg-descr Sun Sep 11 21:11:08 2016 (r421877) @@ -5,4 +5,4 @@ character-set translation, numeric and a of file transfer, dialogs, and communication tasks through its built-in scripting language. -WWW: http://www.columbia.edu/kermit/ +WWW: http://www.kermitproject.org/ From owner-svn-ports-head@freebsd.org Sun Sep 11 21:52:20 2016 Return-Path: Delivered-To: svn-ports-head@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 5C67FBD608F; Sun, 11 Sep 2016 21:52:20 +0000 (UTC) (envelope-from girgen@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 1BF8FDC3; Sun, 11 Sep 2016 21:52:20 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BLqJGu092528; Sun, 11 Sep 2016 21:52:19 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BLqIHd092516; Sun, 11 Sep 2016 21:52:18 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201609112152.u8BLqIHd092516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Sun, 11 Sep 2016 21:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421878 - in head: devel/xmltooling security/apache-xml-security-c security/opensaml2 security/shibboleth2-sp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 21:52:20 -0000 Author: girgen Date: Sun Sep 11 21:52:17 2016 New Revision: 421878 URL: https://svnweb.freebsd.org/changeset/ports/421878 Log: Upgrade shibboleth-sp 2.6 and its tool chain Modified: head/devel/xmltooling/Makefile head/devel/xmltooling/distinfo head/devel/xmltooling/pkg-plist head/security/apache-xml-security-c/Makefile head/security/apache-xml-security-c/distinfo head/security/apache-xml-security-c/pkg-plist head/security/opensaml2/Makefile head/security/opensaml2/distinfo head/security/opensaml2/pkg-plist head/security/shibboleth2-sp/Makefile head/security/shibboleth2-sp/distinfo head/security/shibboleth2-sp/pkg-plist Modified: head/devel/xmltooling/Makefile ============================================================================== --- head/devel/xmltooling/Makefile Sun Sep 11 21:11:08 2016 (r421877) +++ head/devel/xmltooling/Makefile Sun Sep 11 21:52:17 2016 (r421878) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= xmltooling -PORTVERSION= 1.5.5 +PORTVERSION= 1.6.0 CATEGORIES= devel security -MASTER_SITES= http://shibboleth.net/downloads/c++-opensaml/2.5.5/ +MASTER_SITES= http://shibboleth.net/downloads/c++-opensaml/2.6.0/ MAINTAINER= girgen@FreeBSD.org COMMENT= Low level XML support for SAML @@ -18,7 +18,7 @@ BUILD_DEPENDS= boost-libs>=0:devel/boost GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} --with-curl=${LOCALBASE} --disable-doxygen-doc -USES= gmake libtool pkgconfig +USES= gmake libtool pkgconfig tar:bzip2 USE_LDCONFIG= yes USE_OPENSSL= yes Modified: head/devel/xmltooling/distinfo ============================================================================== --- head/devel/xmltooling/distinfo Sun Sep 11 21:11:08 2016 (r421877) +++ head/devel/xmltooling/distinfo Sun Sep 11 21:52:17 2016 (r421878) @@ -1,2 +1,3 @@ -SHA256 (xmltooling-1.5.5.tar.gz) = 5507332878b1f611efe791c8eeabd9b8327d75602949f0cb189970b8a221333f -SIZE (xmltooling-1.5.5.tar.gz) = 713161 +TIMESTAMP = 1473630647 +SHA256 (xmltooling-1.6.0.tar.bz2) = e26a66cb10d767743c6af9a663fa3c7cb4dace55ec79cc91f9d8d528994af0b6 +SIZE (xmltooling-1.6.0.tar.bz2) = 553346 Modified: head/devel/xmltooling/pkg-plist ============================================================================== --- head/devel/xmltooling/pkg-plist Sun Sep 11 21:11:08 2016 (r421877) +++ head/devel/xmltooling/pkg-plist Sun Sep 11 21:52:17 2016 (r421878) @@ -62,6 +62,7 @@ include/xmltooling/soap/SOAP.h include/xmltooling/soap/SOAPClient.h include/xmltooling/soap/SOAPTransport.h include/xmltooling/unicode.h +include/xmltooling/util/CloneInputStream.h include/xmltooling/util/CurlURLInputStream.h include/xmltooling/util/DateTime.h include/xmltooling/util/NDC.h @@ -81,11 +82,11 @@ include/xmltooling/validation/Validator. include/xmltooling/validation/ValidatorSuite.h include/xmltooling/version.h lib/libxmltooling-lite.so -lib/libxmltooling-lite.so.6 -lib/libxmltooling-lite.so.6.0.5 +lib/libxmltooling-lite.so.7 +lib/libxmltooling-lite.so.7.0.0 lib/libxmltooling.so -lib/libxmltooling.so.6 -lib/libxmltooling.so.6.0.5 +lib/libxmltooling.so.7 +lib/libxmltooling.so.7.0.0 libdata/pkgconfig/xmltooling.pc share/xml/xmltooling/catalog.xml share/xml/xmltooling/soap-envelope.xsd Modified: head/security/apache-xml-security-c/Makefile ============================================================================== --- head/security/apache-xml-security-c/Makefile Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/apache-xml-security-c/Makefile Sun Sep 11 21:52:17 2016 (r421878) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xml-security-c -PORTVERSION= 1.7.2 -PORTREVISION= 1 +PORTVERSION= 1.7.3 CATEGORIES= security MASTER_SITES= APACHE/santuario/c-library PKGNAMEPREFIX= apache- @@ -19,7 +18,7 @@ LIB_DEPENDS+= libxerces-c.so.3:textproc/ GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-xerces=${LOCALBASE} -USES= gmake libtool +USES= gmake libtool tar:bzip2 USE_LDCONFIG= yes CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} Modified: head/security/apache-xml-security-c/distinfo ============================================================================== --- head/security/apache-xml-security-c/distinfo Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/apache-xml-security-c/distinfo Sun Sep 11 21:52:17 2016 (r421878) @@ -1,2 +1,3 @@ -SHA256 (xml-security-c-1.7.2.tar.gz) = d576b07bb843eaebfde3be01301db40504ea8e8e477c0ad5f739b07022445452 -SIZE (xml-security-c-1.7.2.tar.gz) = 875465 +TIMESTAMP = 1473589138 +SHA256 (xml-security-c-1.7.3.tar.bz2) = 09a1165c2cfcd468dbc170935db10861107dfa22e02754092473c0f555ef6819 +SIZE (xml-security-c-1.7.3.tar.bz2) = 673977 Modified: head/security/apache-xml-security-c/pkg-plist ============================================================================== --- head/security/apache-xml-security-c/pkg-plist Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/apache-xml-security-c/pkg-plist Sun Sep 11 21:52:17 2016 (r421878) @@ -161,4 +161,4 @@ include/xsec/xkms/XKMSValidityInterval.h lib/libxml-security-c.a lib/libxml-security-c.so lib/libxml-security-c.so.17 -lib/libxml-security-c.so.17.0.2 +lib/libxml-security-c.so.17.0.3 Modified: head/security/opensaml2/Makefile ============================================================================== --- head/security/opensaml2/Makefile Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/opensaml2/Makefile Sun Sep 11 21:52:17 2016 (r421878) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= opensaml2 -PORTVERSION= 2.5.5 +PORTVERSION= 2.6.0 CATEGORIES= security MASTER_SITES= http://shibboleth.net/downloads/c++-opensaml/${PORTVERSION}/ DISTNAME= opensaml-${PORTVERSION} @@ -12,6 +12,7 @@ COMMENT= Open source implementation of S LIB_DEPENDS= libcurl.so:ftp/curl \ liblog4shib.so:devel/log4shib \ + libxml-security-c.so:security/apache-xml-security-c \ libxerces-c.so:textproc/xerces-c3 \ libxmltooling.so:devel/xmltooling @@ -20,7 +21,7 @@ BUILD_DEPENDS= boost-libs>=0:devel/boost GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} \ --with-xmltooling=${LOCALBASE} --disable-doxygen-doc -USES= gmake libtool pkgconfig +USES= gmake libtool pkgconfig tar:bzip2 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS Modified: head/security/opensaml2/distinfo ============================================================================== --- head/security/opensaml2/distinfo Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/opensaml2/distinfo Sun Sep 11 21:52:17 2016 (r421878) @@ -1,2 +1,3 @@ -SHA256 (opensaml-2.5.5.tar.gz) = 133bee4f1cfe79bff33d358391806eaef575cd02db9d3eb532438b24a97b12e0 -SIZE (opensaml-2.5.5.tar.gz) = 739776 +TIMESTAMP = 1473589706 +SHA256 (opensaml-2.6.0.tar.bz2) = 8bd2a7521dc372bcb92f8bc3fec301fb2ccecfad8bfb99052d6eb76b576250fd +SIZE (opensaml-2.6.0.tar.bz2) = 557977 Modified: head/security/opensaml2/pkg-plist ============================================================================== --- head/security/opensaml2/pkg-plist Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/opensaml2/pkg-plist Sun Sep 11 21:52:17 2016 (r421878) @@ -48,8 +48,8 @@ include/saml/signature/SignatureProfileV include/saml/util/CommonDomainCookie.h include/saml/util/SAMLConstants.h lib/libsaml.so -lib/libsaml.so.8 -lib/libsaml.so.8.0.5 +lib/libsaml.so.9 +lib/libsaml.so.9.0.0 libdata/pkgconfig/opensaml.pc %%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt Modified: head/security/shibboleth2-sp/Makefile ============================================================================== --- head/security/shibboleth2-sp/Makefile Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/shibboleth2-sp/Makefile Sun Sep 11 21:52:17 2016 (r421878) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= shibboleth-sp -PORTVERSION= 2.5.6 +PORTVERSION= 2.6.0 CATEGORIES= security www MASTER_SITES= http://shibboleth.net/downloads/service-provider/${PORTVERSION}/ @@ -10,9 +10,13 @@ MAINTAINER= girgen@FreeBSD.org COMMENT= C++ Shibboleth Service Provider (Internet2) for Apache BUILD_DEPENDS= boost-libs>=0:devel/boost-libs -LIB_DEPENDS= libsaml.so.8:security/opensaml2 libodbc.so:databases/unixODBC +LIB_DEPENDS= libsaml.so:security/opensaml2 libodbc.so:databases/unixODBC \ + libxmltooling-lite.so:devel/xmltooling \ + liblog4shib.so:devel/log4shib \ + libxerces-c-3.1.so:textproc/xerces-c3 \ + libxml-security-c.so:security/apache-xml-security-c -USES= gmake +USES= gmake tar:bzip2 GNU_CONFIGURE= yes MAKE_ENV= NOKEYGEN=YES USE_LDCONFIG= yes Modified: head/security/shibboleth2-sp/distinfo ============================================================================== --- head/security/shibboleth2-sp/distinfo Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/shibboleth2-sp/distinfo Sun Sep 11 21:52:17 2016 (r421878) @@ -1,2 +1,3 @@ -SHA256 (shibboleth-sp-2.5.6.tar.gz) = 024739a7b5190aebecac913d9445719912c6e4e401bfe256a25ca75ab4e67ad5 -SIZE (shibboleth-sp-2.5.6.tar.gz) = 987020 +TIMESTAMP = 1473589186 +SHA256 (shibboleth-sp-2.6.0.tar.bz2) = cb084f09c406257c7a8cb41464dc5d3e82803c3829e79288fc813e997f6f9b34 +SIZE (shibboleth-sp-2.6.0.tar.bz2) = 721245 Modified: head/security/shibboleth2-sp/pkg-plist ============================================================================== --- head/security/shibboleth2-sp/pkg-plist Sun Sep 11 21:11:08 2016 (r421877) +++ head/security/shibboleth2-sp/pkg-plist Sun Sep 11 21:52:17 2016 (r421878) @@ -32,7 +32,6 @@ etc/shibboleth/apache2.config etc/shibboleth/apache22.config etc/shibboleth/apache24.config etc/shibboleth/keygen.sh -etc/shibboleth/upgrade.xsl @sample etc/shibboleth/postTemplate.html.dist etc/shibboleth/postTemplate.html @sample etc/shibboleth/partialLogout.html.dist etc/shibboleth/partialLogout.html include/shibsp/AbstractSPRequest.h @@ -93,7 +92,7 @@ include/shibsp/util/PropertySet.h include/shibsp/util/SPConstants.h include/shibsp/util/TemplateParameters.h include/shibsp/version.h -lib/libshibsp.so.6 +lib/libshibsp.so.7 lib/libshibsp.so lib/shibboleth/adfs.so lib/shibboleth/adfs-lite.so @@ -102,7 +101,7 @@ lib/shibboleth/plugins-lite.so lib/shibboleth/plugins.so %%WITH_APACHE_22%%lib/shibboleth/mod_shib_22.so %%WITH_APACHE_24%%lib/shibboleth/mod_shib_24.so -lib/libshibsp-lite.so.6 +lib/libshibsp-lite.so.7 lib/libshibsp-lite.so sbin/shibd share/xml/shibboleth/catalog.xml From owner-svn-ports-head@freebsd.org Sun Sep 11 21:55:30 2016 Return-Path: Delivered-To: svn-ports-head@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 CECA2BD625E; Sun, 11 Sep 2016 21:55:30 +0000 (UTC) (envelope-from marino@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 85B13AF; Sun, 11 Sep 2016 21:55:30 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BLtTxU092773; Sun, 11 Sep 2016 21:55:29 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BLtT5n092771; Sun, 11 Sep 2016 21:55:29 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112155.u8BLtT5n092771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 21:55:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421879 - in head/devel/tcl-trf: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 21:55:30 -0000 Author: marino Date: Sun Sep 11 21:55:29 2016 New Revision: 421879 URL: https://svnweb.freebsd.org/changeset/ports/421879 Log: devel/tcl-trf: Add SSL flags and allow building with LibreSSL Approved by: SSL blanket Modified: head/devel/tcl-trf/Makefile head/devel/tcl-trf/files/patch-sha Modified: head/devel/tcl-trf/Makefile ============================================================================== --- head/devel/tcl-trf/Makefile Sun Sep 11 21:52:17 2016 (r421878) +++ head/devel/tcl-trf/Makefile Sun Sep 11 21:55:29 2016 (r421879) @@ -44,7 +44,9 @@ post-patch: # # -DTRF_USE_MD # -USE_OPENSSL= yes +USES+= ssl +CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} +CFLAGS+= -I${OPENSSLINC} .endif do-install: Modified: head/devel/tcl-trf/files/patch-sha ============================================================================== --- head/devel/tcl-trf/files/patch-sha Sun Sep 11 21:52:17 2016 (r421878) +++ head/devel/tcl-trf/files/patch-sha Sun Sep 11 21:55:29 2016 (r421879) @@ -1,20 +1,27 @@ ---- generic/sha.c 2009-07-12 21:34:41.000000000 -0400 -+++ generic/sha.c 2009-07-12 23:11:26.000000000 -0400 -@@ -29,12 +29,5 @@ +--- generic/sha.c.orig 2009-06-18 04:54:44 UTC ++++ generic/sha.c +@@ -27,15 +27,11 @@ + * CVS: $Id: sha.c,v 1.4 2007/10/05 23:12:21 andreas_kupries Exp $ + */ - #include "transformInt.h" +-#include "transformInt.h" -#include "sha/sha.h" -- ++#include ++#ifndef OPENSSL_NO_SHA0 + -#ifdef WORDS_BIGENDIAN -#undef LITTLE_ENDIAN -#else -#undef LITTLE_ENDIAN -#define LITTLE_ENDIAN -#endif ++#include "transformInt.h" +#include /* -@@ -46,30 +39,8 @@ + * Generator description +@@ -45,32 +41,10 @@ + * message digest. */ -#define DIGEST_SIZE (SHA_DIGESTSIZE) @@ -47,7 +54,9 @@ - /* * Generator definition. -@@ -80,8 +51,8 @@ + */ +@@ -79,10 +53,10 @@ static Trf_MessageDigestDescription mdDe + "sha", sizeof (CTX_TYPE), DIGEST_SIZE, - MDsha_Start, @@ -60,7 +69,9 @@ + (Trf_MDFinal *)SHA_Final, NULL }; -@@ -111,181 +82,2 @@ + +@@ -110,182 +84,5 @@ Tcl_Interp* interp; + { return Trf_RegisterMessageDigest (interp, &mdDescription); } - @@ -118,7 +129,7 @@ -unsigned int character; -{ - sha_trf_info* s = (sha_trf_info*) context; -- + - s->buf [s->count] = character; - s->count ++; - @@ -228,7 +239,7 @@ - -#ifndef WORDS_BIGENDIAN - Trf_FlipRegisterLong (s->s.digest, SHA_DIGESTSIZE); --#endif + #endif - - memcpy (digest, s->s.digest, SHA_DIGESTSIZE); -} From owner-svn-ports-head@freebsd.org Sun Sep 11 22:14:54 2016 Return-Path: Delivered-To: svn-ports-head@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 1EFC0BD67CC; Sun, 11 Sep 2016 22:14:54 +0000 (UTC) (envelope-from marino@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 EEB2CBF5; Sun, 11 Sep 2016 22:14:53 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BMErZo000371; Sun, 11 Sep 2016 22:14:53 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BMErN4000369; Sun, 11 Sep 2016 22:14:53 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112214.u8BMErN4000369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 22:14:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421880 - in head/finance/openhbci: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 22:14:54 -0000 Author: marino Date: Sun Sep 11 22:14:52 2016 New Revision: 421880 URL: https://svnweb.freebsd.org/changeset/ports/421880 Log: finance/openhbci: Document SSL requirement and fix build with LibreSSL Added: head/finance/openhbci/files/patch-src_openhbci_core_deskey.cpp (contents, props changed) Modified: head/finance/openhbci/Makefile Modified: head/finance/openhbci/Makefile ============================================================================== --- head/finance/openhbci/Makefile Sun Sep 11 21:55:29 2016 (r421879) +++ head/finance/openhbci/Makefile Sun Sep 11 22:14:52 2016 (r421880) @@ -11,10 +11,12 @@ DISTNAME= openhbci-0.9.17-2 MAINTAINER= ports@FreeBSD.org COMMENT= HBCI is a bank-independent homebanking standard -USES= libtool +USES= libtool ssl GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes +CONFIGURE_ARGS+=--with-openssl-includes=${OPENSSLINC} \ + --with-openssl-libs=${OPENSSLLIB} WRKSRC= ${WRKDIR}/${PORTNAME}-0.9.17 Added: head/finance/openhbci/files/patch-src_openhbci_core_deskey.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src_openhbci_core_deskey.cpp Sun Sep 11 22:14:52 2016 (r421880) @@ -0,0 +1,80 @@ +--- src/openhbci/core/deskey.cpp.orig 2002-12-10 15:54:07 UTC ++++ src/openhbci/core/deskey.cpp +@@ -42,11 +42,11 @@ + namespace HBCI { + + DESKey::DESKey(string password) { +- des_cblock left, right; ++ DES_cblock left, right; + keyData = ""; + + // transform password to 2 keys +- des_string_to_2keys(password.c_str(), &left, &right); ++ DES_string_to_2keys(password.c_str(), &left, &right); + + // set the keydata + for (int i=0; i<8; i++) +@@ -64,8 +64,8 @@ DESKey::~DESKey(){ + + DESKey DESKey::createKey() { + int result = 1; +- des_cblock nativeDESKey; +- des_key_schedule key; ++ DES_cblock nativeDESKey; ++ DES_key_schedule key; + + DESKey *newKey = new DESKey(); + newKey->keyData = ""; +@@ -73,16 +73,16 @@ DESKey DESKey::createKey() { + RAND_seed(getRndData(1024), 1024); + + while (result != 0) { +- des_random_key(&nativeDESKey); +- result = des_set_key_checked(&nativeDESKey, key); ++ DES_random_key(&nativeDESKey); ++ result = DES_set_key_checked(&nativeDESKey, &key); + } + for (int i=0; i<8; i++) + newKey->keyData += nativeDESKey[i]; + + result = 1; + while (result != 0) { +- des_random_key(&nativeDESKey); +- result = des_set_key_checked(&nativeDESKey, key); ++ DES_random_key(&nativeDESKey); ++ result = DES_set_key_checked(&nativeDESKey, &key); + } + for (int i=0; i<8; i++) + newKey->keyData += nativeDESKey[i]; +@@ -116,24 +116,24 @@ bool DESKey::crypt(int enDeCrypt) { + //2-key-tripple-des + //dataToCrypt.length() % 8 has to be 0, padding/ depadding in calling method + +- des_cblock left, right; ++ DES_cblock left, right; + keyData.copy((char*) &left,8); + keyData.copy((char*) &right,8,8); + +- des_cblock initVector; +- des_key_schedule key1, key2; ++ DES_cblock initVector; ++ DES_key_schedule key1, key2; + unsigned char source[intData.length()]; + unsigned char dest[intData.length()]; + for (unsigned int i=0; i Delivered-To: svn-ports-head@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 8B6EDBD6C11; Sun, 11 Sep 2016 22:39:12 +0000 (UTC) (envelope-from marino@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 41A00644; Sun, 11 Sep 2016 22:39:12 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BMdBtw008051; Sun, 11 Sep 2016 22:39:11 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BMdBk2008049; Sun, 11 Sep 2016 22:39:11 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112239.u8BMdBk2008049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 22:39:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421881 - in head/mail/courier-imap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 22:39:12 -0000 Author: marino Date: Sun Sep 11 22:39:11 2016 New Revision: 421881 URL: https://svnweb.freebsd.org/changeset/ports/421881 Log: mail/courier-imap: Handle no SSLv3 method (fixes build with LibreSSL) Approved by: SSL blanket Added: head/mail/courier-imap/files/patch-libs_tcpd_libcouriertls.c (contents, props changed) Modified: head/mail/courier-imap/Makefile Modified: head/mail/courier-imap/Makefile ============================================================================== --- head/mail/courier-imap/Makefile Sun Sep 11 22:14:52 2016 (r421880) +++ head/mail/courier-imap/Makefile Sun Sep 11 22:39:11 2016 (r421881) @@ -16,7 +16,7 @@ RUN_DEPENDS= courierauthconfig:security/ ${LOCALBASE}/share/sysconftool/sysconftool:devel/sysconftool LIB_DEPENDS= libcourier-unicode.so:devel/courier-unicode -USES= gmake perl5 tar:bzip2 +USES= gmake perl5 ssl tar:bzip2 GNU_CONFIGURE= yes USE_RC_SUBR= courier-imap-imapd courier-imap-imapd-ssl \ courier-imap-pop3d courier-imap-pop3d-ssl @@ -47,7 +47,6 @@ FAM_USES= fam CONFDIR?= ${PREFIX}/etc/${PORTNAME} USERDB?= ${PREFIX}/etc/userdb LIBEXECDIR?= ${PREFIX}/libexec/${PORTNAME} -USE_OPENSSL= yes PLIST_SUB= CONFDIR=${CONFDIR:S,^${PREFIX}/,,} \ LIBEXECDIR=${LIBEXECDIR:S,^${PREFIX}/,,} Added: head/mail/courier-imap/files/patch-libs_tcpd_libcouriertls.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/courier-imap/files/patch-libs_tcpd_libcouriertls.c Sun Sep 11 22:39:11 2016 (r421881) @@ -0,0 +1,12 @@ +--- libs/tcpd/libcouriertls.c.orig 2015-06-10 00:08:23 UTC ++++ libs/tcpd/libcouriertls.c +@@ -74,7 +74,9 @@ struct proto_ops op_list[] = + { "TLSv1", &TLSv1_method, SSL_OP_ALL }, + { "TLS1", &TLSv1_method, SSL_OP_ALL }, + { "SSL3+", &SSLv23_method, SSL_OP_ALL|SSL_OP_NO_SSLv2 }, ++#ifdef HAVE_SSLV3_METHOD + { "SSL3", &SSLv3_method, SSL_OP_ALL }, ++#endif + { "SSL23", &SSLv23_method, SSL_OP_ALL }, + { "", &SSLv23_method, SSL_OP_ALL|SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3 }, + { NULL, &SSLv23_method, SSL_OP_ALL|SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3 }, From owner-svn-ports-head@freebsd.org Sun Sep 11 22:53:07 2016 Return-Path: Delivered-To: svn-ports-head@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 ABF8BBD7098; Sun, 11 Sep 2016 22:53:07 +0000 (UTC) (envelope-from marino@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 62F7BD10; Sun, 11 Sep 2016 22:53:07 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BMr6c1015222; Sun, 11 Sep 2016 22:53:06 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BMr6e4015220; Sun, 11 Sep 2016 22:53:06 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112253.u8BMr6e4015220@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 22:53:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421882 - in head/mail/libesmtp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 22:53:07 -0000 Author: marino Date: Sun Sep 11 22:53:06 2016 New Revision: 421882 URL: https://svnweb.freebsd.org/changeset/ports/421882 Log: mail/libestmp: FIx build with LibreSSL (deprecated DES methods) Added: head/mail/libesmtp/files/ head/mail/libesmtp/files/patch-ntlm_ntlmdes.c (contents, props changed) Modified: head/mail/libesmtp/Makefile Modified: head/mail/libesmtp/Makefile ============================================================================== --- head/mail/libesmtp/Makefile Sun Sep 11 22:39:11 2016 (r421881) +++ head/mail/libesmtp/Makefile Sun Sep 11 22:53:06 2016 (r421882) @@ -29,7 +29,7 @@ OPTIONS_SUB= yes DEBUG_CONFIGURE_ENABLE= debug OPENSSL_CONFIGURE_WITH= openssl=${OPENSSLBASE} -OPENSSL_USE= OPENSSL=yes +OPENSSL_USES= ssl post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Added: head/mail/libesmtp/files/patch-ntlm_ntlmdes.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/libesmtp/files/patch-ntlm_ntlmdes.c Sun Sep 11 22:53:06 2016 (r421882) @@ -0,0 +1,34 @@ +--- ntlm/ntlmdes.c.orig 2010-08-08 15:45:56 UTC ++++ ntlm/ntlmdes.c +@@ -30,10 +30,10 @@ + #include "ntlm.h" + + static void +-lm_deshash (void *result, const_des_cblock *iv, const void *secret) ++lm_deshash (void *result, const_DES_cblock *iv, const void *secret) + { +- des_cblock key; +- des_key_schedule ks; ++ DES_cblock key; ++ DES_key_schedule ks; + unsigned char key_56[8]; + size_t len; + +@@ -85,7 +85,7 @@ lm_uccpy (char *dst, size_t dstlen, cons + void + lm_hash_password (unsigned char *hash, const char *pass) + { +- static const_des_cblock iv = { 0x4B, 0x47, 0x53, 0x21, ++ static const_DES_cblock iv = { 0x4B, 0x47, 0x53, 0x21, + 0x40, 0x23, 0x24, 0x25 }; + char lmpass[14]; + +@@ -137,7 +137,7 @@ ntlm_responses (unsigned char *lm_resp, + const unsigned char *challenge, const char *secret) + { + unsigned char hash[21]; +- des_cblock nonce; ++ DES_cblock nonce; + + memcpy (&nonce, challenge, sizeof nonce); + From owner-svn-ports-head@freebsd.org Sun Sep 11 23:01:35 2016 Return-Path: Delivered-To: svn-ports-head@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 AAD78BD732F; Sun, 11 Sep 2016 23:01:35 +0000 (UTC) (envelope-from zi@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 78928199; Sun, 11 Sep 2016 23:01:35 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BN1YDo016331; Sun, 11 Sep 2016 23:01:34 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BN1YNd016329; Sun, 11 Sep 2016 23:01:34 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201609112301.u8BN1YNd016329@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Sun, 11 Sep 2016 23:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421883 - head/dns/gdnsd2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 23:01:35 -0000 Author: zi Date: Sun Sep 11 23:01:34 2016 New Revision: 421883 URL: https://svnweb.freebsd.org/changeset/ports/421883 Log: - Update to 2.2.4 Modified: head/dns/gdnsd2/Makefile head/dns/gdnsd2/distinfo Modified: head/dns/gdnsd2/Makefile ============================================================================== --- head/dns/gdnsd2/Makefile Sun Sep 11 22:53:06 2016 (r421882) +++ head/dns/gdnsd2/Makefile Sun Sep 11 23:01:34 2016 (r421883) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gdnsd -PORTVERSION= 2.2.2 -PORTREVISION= 1 +PORTVERSION= 2.2.4 CATEGORIES= dns MASTER_SITES= https://github.com/gdnsd/gdnsd/releases/download/v${PORTVERSION}/ \ http://mirrors.rit.edu/zi/ \ Modified: head/dns/gdnsd2/distinfo ============================================================================== --- head/dns/gdnsd2/distinfo Sun Sep 11 22:53:06 2016 (r421882) +++ head/dns/gdnsd2/distinfo Sun Sep 11 23:01:34 2016 (r421883) @@ -1,2 +1,3 @@ -SHA256 (gdnsd-2.2.2.tar.xz) = d17fa69ffdf05efcb8fa12f8c55cc21b1a86fbd11fcab7d8b5b3c04f5239090f -SIZE (gdnsd-2.2.2.tar.xz) = 623696 +TIMESTAMP = 1473634180 +SHA256 (gdnsd-2.2.4.tar.xz) = ee26ddd11087f4dd617c9aa6bfa3b963c5d883578b49c7d5dcae5d0edf38094f +SIZE (gdnsd-2.2.4.tar.xz) = 635648 From owner-svn-ports-head@freebsd.org Sun Sep 11 23:57:58 2016 Return-Path: Delivered-To: svn-ports-head@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 0911FBD7CE5; Sun, 11 Sep 2016 23:57:58 +0000 (UTC) (envelope-from marino@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 B5ECBBF1; Sun, 11 Sep 2016 23:57:57 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8BNvu69038280; Sun, 11 Sep 2016 23:57:56 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8BNvurg038278; Sun, 11 Sep 2016 23:57:56 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609112357.u8BNvurg038278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 11 Sep 2016 23:57:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421885 - in head/security/broccoli: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Sep 2016 23:57:58 -0000 Author: marino Date: Sun Sep 11 23:57:56 2016 New Revision: 421885 URL: https://svnweb.freebsd.org/changeset/ports/421885 Log: security/broccoli: Document SSL requirement and handle no SSLv3 (LibreSSL) Approved by: SSL blanket Added: head/security/broccoli/files/ head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c (contents, props changed) Modified: head/security/broccoli/Makefile Modified: head/security/broccoli/Makefile ============================================================================== --- head/security/broccoli/Makefile Sun Sep 11 23:56:30 2016 (r421884) +++ head/security/broccoli/Makefile Sun Sep 11 23:57:56 2016 (r421885) @@ -19,7 +19,7 @@ LIB_DEPENDS= libGeoIP.so:net/GeoIP EXTRACT_AFTER_ARGS= ${DISTNAME}/aux/broccoli -USES= cmake:outsource +USES= cmake:outsource ssl USE_LDCONFIG= yes CMAKE_SOURCE_PATH= ${WRKSRC}/aux/broccoli @@ -32,6 +32,7 @@ PLIST_SUB+= CLEANUP_PREFIX="@comment " .endif CMAKE_ARGS+= -D CMAKE_INSTALL_PREFIX:PATH=${PREFIX} \ -D BRO_ETC_INSTALL_DIR:PATH=${PREFIX}/etc +CFLAGS+= -I${OPENSSLINC} OPTIONS_DEFINE= DEBUG PYTHON RUBY OPTIONS_SUB= Added: head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c Sun Sep 11 23:57:56 2016 (r421885) @@ -0,0 +1,14 @@ +--- aux/broccoli/src/bro_openssl.c.orig 2015-09-06 19:43:23 UTC ++++ aux/broccoli/src/bro_openssl.c +@@ -302,7 +302,11 @@ __bro_openssl_init(void) + * to set up an SSL connection now and abort if this fails in any way. + */ + ++#ifndef OPENSSL_NO_SSL3 + if (! (ctx = SSL_CTX_new(SSLv3_method()))) ++#else ++ if (! (ctx = SSL_CTX_new(SSLv23_method()))) ++#endif + D_RETURN_(FALSE); + + /* We expect things to be stored in PEM format, which means that we From owner-svn-ports-head@freebsd.org Mon Sep 12 00:49:01 2016 Return-Path: Delivered-To: svn-ports-head@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 207BDBD491A; Mon, 12 Sep 2016 00:49:01 +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 CB033863; Mon, 12 Sep 2016 00:49:00 +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 u8C0n0Su057665; Mon, 12 Sep 2016 00:49:00 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C0mxbc057657; Mon, 12 Sep 2016 00:48:59 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609120048.u8C0mxbc057657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 12 Sep 2016 00:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421888 - head/net/ntpa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 00:49:01 -0000 Author: wen Date: Mon Sep 12 00:48:59 2016 New Revision: 421888 URL: https://svnweb.freebsd.org/changeset/ports/421888 Log: - Update to 0.7.4 - Update pkg-message PR: 212566 Submitted by: cs@innolan.dk(maintainer) Modified: head/net/ntpa/Makefile head/net/ntpa/distinfo head/net/ntpa/pkg-message head/net/ntpa/pkg-plist Modified: head/net/ntpa/Makefile ============================================================================== --- head/net/ntpa/Makefile Mon Sep 12 00:00:51 2016 (r421887) +++ head/net/ntpa/Makefile Mon Sep 12 00:48:59 2016 (r421888) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntpa -PORTVERSION= 0.7.1 +PORTVERSION= 0.7.4 CATEGORIES= net MASTER_SITES= http://dist.innolan.net/ @@ -49,6 +49,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/examples/small.conf ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/bin/MySql.Data.dll ${STAGEDIR}${PREFIX}/libexec/ntpa ${INSTALL_DATA} ${WRKSRC}/bin/Npgsql.dll ${STAGEDIR}${PREFIX}/libexec/ntpa + ${INSTALL_DATA} ${WRKSRC}/bin/NPlot.dll ${STAGEDIR}${PREFIX}/libexec/ntpa ${INSTALL_MAN} ${WRKSRC}/docs/ntpa.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 ${MKDIR} ${STAGEDIR}/var/log/ntpa ${MKDIR} ${STAGEDIR}/var/run/ntpa Modified: head/net/ntpa/distinfo ============================================================================== --- head/net/ntpa/distinfo Mon Sep 12 00:00:51 2016 (r421887) +++ head/net/ntpa/distinfo Mon Sep 12 00:48:59 2016 (r421888) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471982415 -SHA256 (ntpa-0.7.1.tar.gz) = a068465f4c326a1f6025d53f64c08ad9755212d9d448f1aa422f468018f7c11b -SIZE (ntpa-0.7.1.tar.gz) = 3248313 +TIMESTAMP = 1473636210 +SHA256 (ntpa-0.7.4.tar.gz) = 21e755203552df6f27f38f1d58d06dcd71a4a113db97b89f1578217e69d5e544 +SIZE (ntpa-0.7.4.tar.gz) = 1095489 Modified: head/net/ntpa/pkg-message ============================================================================== --- head/net/ntpa/pkg-message Mon Sep 12 00:00:51 2016 (r421887) +++ head/net/ntpa/pkg-message Mon Sep 12 00:48:59 2016 (r421888) @@ -3,4 +3,7 @@ NTP Analyzer has been installed. If this is the first time remember to create a MySQL or PostgreSQL user and database first. +If you are upgrading from a previous version of NTP Analyzer be sure to +make a backup of your database before starting ntpa in upgrade mode. + ************************************************************************ Modified: head/net/ntpa/pkg-plist ============================================================================== --- head/net/ntpa/pkg-plist Mon Sep 12 00:00:51 2016 (r421887) +++ head/net/ntpa/pkg-plist Mon Sep 12 00:48:59 2016 (r421888) @@ -4,6 +4,7 @@ sbin/ntpag sbin/ntpav libexec/ntpa/MySql.Data.dll libexec/ntpa/Npgsql.dll +libexec/ntpa/NPlot.dll libexec/ntpa/Ntp.Analyzer.dll libexec/ntpa/Ntp.Analyzer.Cli.exe libexec/ntpa/Ntp.Analyzer.Data.dll From owner-svn-ports-head@freebsd.org Mon Sep 12 00:50:26 2016 Return-Path: Delivered-To: svn-ports-head@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 52797BD4969; Mon, 12 Sep 2016 00:50:26 +0000 (UTC) (envelope-from marino@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 23777950; Mon, 12 Sep 2016 00:50:26 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C0oPCI057840; Mon, 12 Sep 2016 00:50:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C0oPCC057839; Mon, 12 Sep 2016 00:50:25 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120050.u8C0oPCC057839@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 00:50:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421889 - head/www/mod_webauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 00:50:26 -0000 Author: marino Date: Mon Sep 12 00:50:25 2016 New Revision: 421889 URL: https://svnweb.freebsd.org/changeset/ports/421889 Log: www/mod_webauth: Document SSL requirement and configure its base Approved by: SSL blanket Modified: head/www/mod_webauth/Makefile Modified: head/www/mod_webauth/Makefile ============================================================================== --- head/www/mod_webauth/Makefile Mon Sep 12 00:48:59 2016 (r421888) +++ head/www/mod_webauth/Makefile Mon Sep 12 00:50:25 2016 (r421889) @@ -13,13 +13,14 @@ COMMENT= Apache module for authenticatin LIB_DEPENDS= libcurl.so:ftp/curl \ libsasl2.so:security/cyrus-sasl2 -USES= libtool pkgconfig +USES= libtool pkgconfig ssl USE_APACHE= 22+ USE_OPENLDAP= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-ldap-lib=${LOCALBASE}/lib \ - --with-ldap-include=${LOCALBASE}/include + --with-ldap-include=${LOCALBASE}/include \ + --with-openssl=${OPENSSLBASE} LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip From owner-svn-ports-head@freebsd.org Mon Sep 12 00:54:05 2016 Return-Path: Delivered-To: svn-ports-head@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 2A065BD4AF8; Mon, 12 Sep 2016 00:54:05 +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 EEA3FC5A; Mon, 12 Sep 2016 00:54:04 +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 u8C0s4QI061334; Mon, 12 Sep 2016 00:54:04 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C0s4KC061332; Mon, 12 Sep 2016 00:54:04 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609120054.u8C0s4KC061332@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 12 Sep 2016 00:54:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421890 - head/converters/p5-Unicode-String X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 00:54:05 -0000 Author: wen Date: Mon Sep 12 00:54:03 2016 New Revision: 421890 URL: https://svnweb.freebsd.org/changeset/ports/421890 Log: - Update to 2.10 Changes: http://cpansearch.perl.org/src/GAAS/Unicode-String-2.10/Changes Modified: head/converters/p5-Unicode-String/Makefile head/converters/p5-Unicode-String/distinfo Modified: head/converters/p5-Unicode-String/Makefile ============================================================================== --- head/converters/p5-Unicode-String/Makefile Mon Sep 12 00:50:25 2016 (r421889) +++ head/converters/p5-Unicode-String/Makefile Mon Sep 12 00:54:03 2016 (r421890) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Unicode-String -PORTVERSION= 2.09 -PORTREVISION= 1 +PORTVERSION= 2.10 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/converters/p5-Unicode-String/distinfo ============================================================================== --- head/converters/p5-Unicode-String/distinfo Mon Sep 12 00:50:25 2016 (r421889) +++ head/converters/p5-Unicode-String/distinfo Mon Sep 12 00:54:03 2016 (r421890) @@ -1,2 +1,3 @@ -SHA256 (Unicode-String-2.09.tar.gz) = c817bedb954ea2d488bade56059028b99e0198f6826482e2f68fd6d78653faad -SIZE (Unicode-String-2.09.tar.gz) = 122705 +TIMESTAMP = 1473641441 +SHA256 (Unicode-String-2.10.tar.gz) = 894a110ece479546af8afec0972eec7320c86c4dea4e6b354dff3c7526ba9b68 +SIZE (Unicode-String-2.10.tar.gz) = 121287 From owner-svn-ports-head@freebsd.org Mon Sep 12 01:19:37 2016 Return-Path: Delivered-To: svn-ports-head@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 0A244BD7062; Mon, 12 Sep 2016 01:19:37 +0000 (UTC) (envelope-from marino@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 C23308BE; Mon, 12 Sep 2016 01:19:36 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C1JaLX069105; Mon, 12 Sep 2016 01:19:36 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C1JZK7069098; Mon, 12 Sep 2016 01:19:35 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120119.u8C1JZK7069098@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 01:19:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421891 - in head/security/stunnel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 01:19:37 -0000 Author: marino Date: Mon Sep 12 01:19:35 2016 New Revision: 421891 URL: https://svnweb.freebsd.org/changeset/ports/421891 Log: security/stunnel: Support building with LibreSSL Approved by: SSL blanket Added: head/security/stunnel/files/patch-src_common.h (contents, props changed) head/security/stunnel/files/patch-src_ctx.c (contents, props changed) head/security/stunnel/files/patch-src_prototypes.h (contents, props changed) head/security/stunnel/files/patch-src_ssl.c (contents, props changed) head/security/stunnel/files/patch-src_sthreads.c (contents, props changed) head/security/stunnel/files/patch-src_verify.c (contents, props changed) Modified: head/security/stunnel/Makefile Modified: head/security/stunnel/Makefile ============================================================================== --- head/security/stunnel/Makefile Mon Sep 12 00:54:03 2016 (r421890) +++ head/security/stunnel/Makefile Mon Sep 12 01:19:35 2016 (r421891) @@ -28,10 +28,9 @@ COMMENT= SSL encryption wrapper for stan LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cpe libtool perl5 shebangfix +USES= cpe libtool perl5 shebangfix ssl USE_PERL5= build USE_LDCONFIG= yes -USE_OPENSSL= yes USE_RC_SUBR= stunnel GNU_CONFIGURE= yes Added: head/security/stunnel/files/patch-src_common.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stunnel/files/patch-src_common.h Mon Sep 12 01:19:35 2016 (r421891) @@ -0,0 +1,20 @@ +--- src/common.h.orig 2016-06-27 07:29:32 UTC ++++ src/common.h +@@ -448,7 +448,7 @@ extern char *sys_errlist[]; + #define OPENSSL_NO_TLS1_2 + #endif /* OpenSSL older than 1.0.1 || defined(OPENSSL_NO_TLS1) */ + +-#if OPENSSL_VERSION_NUMBER>=0x10100000L ++#if OPENSSL_VERSION_NUMBER>=0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + #ifndef OPENSSL_NO_SSL2 + #define OPENSSL_NO_SSL2 + #endif /* !defined(OPENSSL_NO_SSL2) */ +@@ -474,7 +474,7 @@ extern char *sys_errlist[]; + #include + #ifndef OPENSSL_NO_DH + #include +-#if OPENSSL_VERSION_NUMBER<0x10100000L ++#if OPENSSL_VERSION_NUMBER<0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g); + #endif /* OpenSSL older than 1.1.0 */ + #endif /* !defined(OPENSSL_NO_DH) */ Added: head/security/stunnel/files/patch-src_ctx.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stunnel/files/patch-src_ctx.c Mon Sep 12 01:19:35 2016 (r421891) @@ -0,0 +1,11 @@ +--- src/ctx.c.orig 2016-06-21 15:06:14 UTC ++++ src/ctx.c +@@ -366,7 +366,7 @@ NOEXPORT int ecdh_init(SERVICE_OPTIONS * + /**************************************** initialize OpenSSL CONF */ + + NOEXPORT int conf_init(SERVICE_OPTIONS *section) { +-#if OPENSSL_VERSION_NUMBER>=0x10002000L ++#if OPENSSL_VERSION_NUMBER>=0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + SSL_CONF_CTX *cctx; + NAME_LIST *curr; + char *cmd, *param; Added: head/security/stunnel/files/patch-src_prototypes.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stunnel/files/patch-src_prototypes.h Mon Sep 12 01:19:35 2016 (r421891) @@ -0,0 +1,18 @@ +--- src/prototypes.h.orig 2016-07-05 21:27:57 UTC ++++ src/prototypes.h +@@ -650,13 +650,13 @@ typedef enum { + #endif /* OPENSSL_NO_DH */ + STUNNEL_LOCKS /* number of locks */ + } LOCK_TYPE; +-#if OPENSSL_VERSION_NUMBER < 0x10100004L ++#if OPENSSL_VERSION_NUMBER < 0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + typedef int STUNNEL_RWLOCK; + #else + typedef CRYPTO_RWLOCK *STUNNEL_RWLOCK; + #endif + extern STUNNEL_RWLOCK stunnel_locks[STUNNEL_LOCKS]; +-#if OPENSSL_VERSION_NUMBER>=0x10100004L ++#if OPENSSL_VERSION_NUMBER>=0x10100004L && !defined(LIBRESSL_VERSION_NUMBER) + #define CRYPTO_THREAD_read_unlock(type) CRYPTO_THREAD_unlock(type) + #define CRYPTO_THREAD_write_unlock(type) CRYPTO_THREAD_unlock(type) + #else Added: head/security/stunnel/files/patch-src_ssl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stunnel/files/patch-src_ssl.c Mon Sep 12 01:19:35 2016 (r421891) @@ -0,0 +1,11 @@ +--- src/ssl.c.orig 2016-06-02 13:43:49 UTC ++++ src/ssl.c +@@ -78,7 +78,7 @@ int ssl_init(void) { /* init SSL before + } + + #ifndef OPENSSL_NO_DH +-#if OPENSSL_VERSION_NUMBER<0x10100000L ++#if OPENSSL_VERSION_NUMBER<0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + /* this is needed for dhparam.c generated with OpenSSL >= 1.1.0 + * to be linked against the older versions */ + int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g) { Added: head/security/stunnel/files/patch-src_sthreads.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stunnel/files/patch-src_sthreads.c Mon Sep 12 01:19:35 2016 (r421891) @@ -0,0 +1,59 @@ +--- src/sthreads.c.orig 2016-05-03 18:35:03 UTC ++++ src/sthreads.c +@@ -45,7 +45,7 @@ + + STUNNEL_RWLOCK stunnel_locks[STUNNEL_LOCKS]; + +-#if OPENSSL_VERSION_NUMBER<0x10100004L ++#if OPENSSL_VERSION_NUMBER<0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + #define CRYPTO_THREAD_lock_new() CRYPTO_get_new_dynlockid() + #endif + +@@ -203,7 +203,7 @@ int create_client(SOCKET ls, SOCKET s, C + + #ifdef USE_PTHREAD + +-#if OPENSSL_VERSION_NUMBER<0x10100004L ++#if OPENSSL_VERSION_NUMBER<0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + + struct CRYPTO_dynlock_value { + pthread_rwlock_t rwlock; +@@ -263,16 +263,18 @@ unsigned long stunnel_thread_id(void) { + #endif + } + +-#if OPENSSL_VERSION_NUMBER>=0x10000000L && OPENSSL_VERSION_NUMBER<0x10100004L ++#if OPENSSL_VERSION_NUMBER>=0x10000000L ++#if OPENSSL_VERSION_NUMBER<0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + NOEXPORT void threadid_func(CRYPTO_THREADID *tid) { + CRYPTO_THREADID_set_numeric(tid, stunnel_thread_id()); + } + #endif ++#endif + + int sthreads_init(void) { + int i; + +-#if OPENSSL_VERSION_NUMBER<0x10100004L ++#if OPENSSL_VERSION_NUMBER<0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + /* initialize the OpenSSL dynamic locking */ + CRYPTO_set_dynlock_create_callback(dyn_create_function); + CRYPTO_set_dynlock_lock_callback(dyn_lock_function); +@@ -345,7 +347,7 @@ int create_client(SOCKET ls, SOCKET s, C + * but it is unsupported on Windows XP (and earlier versions of Windows): + * https://msdn.microsoft.com/en-us/library/windows/desktop/aa904937%28v=vs.85%29.aspx */ + +-#if OPENSSL_VERSION_NUMBER<0x10100004L ++#if OPENSSL_VERSION_NUMBER<0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + + struct CRYPTO_dynlock_value { + CRITICAL_SECTION mutex; +@@ -398,7 +400,7 @@ unsigned long stunnel_thread_id(void) { + int sthreads_init(void) { + int i; + +-#if OPENSSL_VERSION_NUMBER<0x10100004L ++#if OPENSSL_VERSION_NUMBER<0x10100004L || defined(LIBRESSL_VERSION_NUMBER) + /* initialize the OpenSSL dynamic locking */ + CRYPTO_set_dynlock_create_callback(dyn_create_function); + CRYPTO_set_dynlock_lock_callback(dyn_lock_function); Added: head/security/stunnel/files/patch-src_verify.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stunnel/files/patch-src_verify.c Mon Sep 12 01:19:35 2016 (r421891) @@ -0,0 +1,64 @@ +--- src/verify.c.orig 2016-07-05 21:27:57 UTC ++++ src/verify.c +@@ -178,14 +178,14 @@ NOEXPORT void auth_warnings(SERVICE_OPTI + if(section->option.verify_peer) /* verify_peer does not depend on PKI */ + return; + if(section->option.verify_chain) { +-#if OPENSSL_VERSION_NUMBER>=0x10002000L ++#if OPENSSL_VERSION_NUMBER>=0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + if(section->check_email || section->check_host || section->check_ip) + return; + #endif /* OPENSSL_VERSION_NUMBER>=0x10002000L */ + s_log(LOG_WARNING, + "Service [%s] uses \"verify = 2\" without subject checks", + section->servname); +-#if OPENSSL_VERSION_NUMBER<0x10002000L ++#if OPENSSL_VERSION_NUMBER<0x10002000L || defined(LIBRESSL_VERSION_NUMBER) + s_log(LOG_WARNING, + "Rebuild your stunnel against OpenSSL version 1.0.2 or higher"); + #endif /* OPENSSL_VERSION_NUMBER<0x10002000L */ +@@ -277,7 +277,7 @@ NOEXPORT int cert_check(CLI *c, X509_STO + } + + if(depth==0) { /* additional peer certificate checks */ +-#if OPENSSL_VERSION_NUMBER>=0x10002000L ++#if OPENSSL_VERSION_NUMBER>=0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + if(!cert_check_subject(c, callback_ctx)) + return 0; /* reject */ + #endif /* OPENSSL_VERSION_NUMBER>=0x10002000L */ +@@ -288,7 +288,7 @@ NOEXPORT int cert_check(CLI *c, X509_STO + return 1; /* accept */ + } + +-#if OPENSSL_VERSION_NUMBER>=0x10002000L ++#if OPENSSL_VERSION_NUMBER>=0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + NOEXPORT int cert_check_subject(CLI *c, X509_STORE_CTX *callback_ctx) { + X509 *cert=X509_STORE_CTX_get_current_cert(callback_ctx); + NAME_LIST *ptr; +@@ -340,7 +340,7 @@ NOEXPORT int cert_check_local(X509_STORE + STACK_OF(X509) *sk; + int i; + #endif +-#if OPENSSL_VERSION_NUMBER<0x10100000L ++#if OPENSSL_VERSION_NUMBER<0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + X509_OBJECT obj; + int success; + #endif +@@ -349,7 +349,7 @@ NOEXPORT int cert_check_local(X509_STORE + subject=X509_get_subject_name(cert); + + #if OPENSSL_VERSION_NUMBER>=0x10000000L +-#if OPENSSL_VERSION_NUMBER<0x10100006L ++#if OPENSSL_VERSION_NUMBER<0x10100006L || defined(LIBRESSL_VERSION_NUMBER) + #define X509_STORE_CTX_get1_certs X509_STORE_get1_certs + #endif + /* modern API allows retrieving multiple matching certificates */ +@@ -364,7 +364,7 @@ NOEXPORT int cert_check_local(X509_STORE + } + #endif + +-#if OPENSSL_VERSION_NUMBER<0x10100000L ++#if OPENSSL_VERSION_NUMBER<0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + /* pre-1.0.0 API only returns a single matching certificate */ + /* we also invoke it for other OpenSSL versions before 1.1.0 */ + memset((char *)&obj, 0, sizeof obj); From owner-svn-ports-head@freebsd.org Mon Sep 12 01:37:20 2016 Return-Path: Delivered-To: svn-ports-head@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 CF693BD7458; Mon, 12 Sep 2016 01:37:20 +0000 (UTC) (envelope-from swills@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 9523BEBE; Mon, 12 Sep 2016 01:37:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C1bJUU076345; Mon, 12 Sep 2016 01:37:19 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C1bJUC076344; Mon, 12 Sep 2016 01:37:19 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609120137.u8C1bJUC076344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 12 Sep 2016 01:37:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421892 - head/emulators/open-vm-tools/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 01:37:20 -0000 Author: swills Date: Mon Sep 12 01:37:19 2016 New Revision: 421892 URL: https://svnweb.freebsd.org/changeset/ports/421892 Log: emulators/open-vm-tools: Fix build with clang 3.9.0 PR: 212426 Submitted by: dim Added: head/emulators/open-vm-tools/files/patch-lib_include_vm__basic__defs.h (contents, props changed) Added: head/emulators/open-vm-tools/files/patch-lib_include_vm__basic__defs.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/open-vm-tools/files/patch-lib_include_vm__basic__defs.h Mon Sep 12 01:37:19 2016 (r421892) @@ -0,0 +1,15 @@ +--- lib/include/vm_basic_defs.h.orig 2013-09-23 15:51:10 UTC ++++ lib/include/vm_basic_defs.h +@@ -81,7 +81,11 @@ + #include "vm_basic_types.h" // For INLINE. + + /* Checks for FreeBSD, filtering out VMKERNEL. */ +-#define __IS_FREEBSD__ (!defined(VMKERNEL) && defined(__FreeBSD__)) ++#if !defined(VMKERNEL) && defined(__FreeBSD__) ++#define __IS_FREEBSD__ 1 ++#else ++#define __IS_FREEBSD__ 0 ++#endif + #define __IS_FREEBSD_VER__(ver) (__IS_FREEBSD__ && __FreeBSD_version >= (ver)) + + #if defined _WIN32 && defined USERLEVEL From owner-svn-ports-head@freebsd.org Mon Sep 12 02:01:06 2016 Return-Path: Delivered-To: svn-ports-head@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 BD6EABD78B0; Mon, 12 Sep 2016 02:01:06 +0000 (UTC) (envelope-from swills@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 716D0A33; Mon, 12 Sep 2016 02:01:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C215GE085191; Mon, 12 Sep 2016 02:01:05 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C215Z2085188; Mon, 12 Sep 2016 02:01:05 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609120201.u8C215Z2085188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 12 Sep 2016 02:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421893 - head/security/govpn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:01:06 -0000 Author: swills Date: Mon Sep 12 02:01:05 2016 New Revision: 421893 URL: https://svnweb.freebsd.org/changeset/ports/421893 Log: security/govpn: Update to 6.0 PR: 212583 Submitted by: Sergey Matveev (maintainer) Modified: head/security/govpn/Makefile head/security/govpn/distinfo head/security/govpn/pkg-descr Modified: head/security/govpn/Makefile ============================================================================== --- head/security/govpn/Makefile Mon Sep 12 01:37:19 2016 (r421892) +++ head/security/govpn/Makefile Mon Sep 12 02:01:05 2016 (r421893) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= govpn -PORTVERSION= 5.10 +PORTVERSION= 6.0 CATEGORIES= security -MASTER_SITES= http://www.cypherpunks.ru/govpn/download/ \ +MASTER_SITES= http://www.govpn.info/download/ \ http://sourceforge.net/projects/govpn/files/ MAINTAINER= stargrave@stargrave.org Modified: head/security/govpn/distinfo ============================================================================== --- head/security/govpn/distinfo Mon Sep 12 01:37:19 2016 (r421892) +++ head/security/govpn/distinfo Mon Sep 12 02:01:05 2016 (r421893) @@ -1,2 +1,3 @@ -SHA256 (govpn-5.10.tar.xz) = bc624265cfcda8ce1c1bbf9d016683c50ec6cba5aeccf33d93fca4e5d52098bd -SIZE (govpn-5.10.tar.xz) = 323752 +TIMESTAMP = 1473645645 +SHA256 (govpn-6.0.tar.xz) = 3acae3b9884f326038fca9ce6a309df671be63861fb2058bc79ae7dc2a1a1811 +SIZE (govpn-6.0.tar.xz) = 317720 Modified: head/security/govpn/pkg-descr ============================================================================== --- head/security/govpn/pkg-descr Mon Sep 12 01:37:19 2016 (r421892) +++ head/security/govpn/pkg-descr Mon Sep 12 02:01:05 2016 (r421893) @@ -11,4 +11,4 @@ compromising and dictionary attacks on t heartbeating, rehandshaking, real-time statistics. Ability to work through UDP, TCP and HTTP proxies. IPv4/IPv6-compatibility. -WWW: http://www.cypherpunks.ru/govpn/ +WWW: http://www.govpn.info/ From owner-svn-ports-head@freebsd.org Mon Sep 12 02:01:39 2016 Return-Path: Delivered-To: svn-ports-head@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 5B678BD78E5; Mon, 12 Sep 2016 02:01:39 +0000 (UTC) (envelope-from marino@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 145BFC27; Mon, 12 Sep 2016 02:01:39 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C21cVq085335; Mon, 12 Sep 2016 02:01:38 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C21cF5085333; Mon, 12 Sep 2016 02:01:38 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120201.u8C21cF5085333@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 02:01:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421894 - in head/games/tinymux: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:01:39 -0000 Author: marino Date: Mon Sep 12 02:01:38 2016 New Revision: 421894 URL: https://svnweb.freebsd.org/changeset/ports/421894 Log: games/tinymux: Fix SSL flags and handle no SHA0 cases (LibreSSL) Added: head/games/tinymux/files/patch-player.cpp (contents, props changed) Modified: head/games/tinymux/Makefile Modified: head/games/tinymux/Makefile ============================================================================== --- head/games/tinymux/Makefile Mon Sep 12 02:01:05 2016 (r421893) +++ head/games/tinymux/Makefile Mon Sep 12 02:01:38 2016 (r421894) @@ -20,9 +20,6 @@ USES= gmake GNU_CONFIGURE= yes USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lcrypto - PATCHLEVEL= 12 PORTDOCS= * @@ -49,7 +46,9 @@ MEMORY_BASED_CONFIGURE_ENABLE= memorybas REALITY_LVLS_CONFIGURE_ENABLE= realitylvls SELFCHECK_CONFIGURE_ENABLE= selfcheck SSL_CONFIGURE_ENABLE= ssl -SSL_USE= OPENSSL=yes +SSL_USES= ssl +SSL_CPPFLAGS= -I${OPENSSLINC} +SSL_LDFLAGS= -L${OPENSSLLIB} -lcrypto WOD_REALMS_CONFIGURE_ENABLE= wodrealms SUB_FILES= ${PORTNAME} pkg-deinstall pkg-message Added: head/games/tinymux/files/patch-player.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/tinymux/files/patch-player.cpp Mon Sep 12 02:01:38 2016 (r421894) @@ -0,0 +1,20 @@ +--- player.cpp.orig 2012-07-12 05:25:51 UTC ++++ player.cpp +@@ -422,7 +422,7 @@ void ChangePassword(dbref player, const + s_Pass(player, pEncodedPassword); + } + +-#ifdef UNIX_DIGEST ++#if defined(UNIX_DIGEST) && !defined(OPENSSL_NO_SHA0) + const UTF8 *p6h_xx_crypt(const UTF8 *szPassword) + { + // Calculate SHA-0 Hash. +@@ -598,7 +598,7 @@ const UTF8 *mux_crypt(const UTF8 *szPass + case CRYPT_CLEARTEXT: + return szPassword; + +-#ifdef UNIX_DIGEST ++#if defined(UNIX_DIGEST) && !defined(OPENSSL_NO_SHA0) + case CRYPT_P6H_XX: + return p6h_xx_crypt(szPassword); + #endif From owner-svn-ports-head@freebsd.org Mon Sep 12 02:07:18 2016 Return-Path: Delivered-To: svn-ports-head@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 29777BD799E; Mon, 12 Sep 2016 02:07:18 +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 E2CC6E38; Mon, 12 Sep 2016 02:07:17 +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 u8C27HA8087654; Mon, 12 Sep 2016 02:07:17 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C27GGK087651; Mon, 12 Sep 2016 02:07:16 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609120207.u8C27GGK087651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 12 Sep 2016 02:07:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421895 - head/databases/p5-DBD-mysql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:07:18 -0000 Author: wen Date: Mon Sep 12 02:07:16 2016 New Revision: 421895 URL: https://svnweb.freebsd.org/changeset/ports/421895 Log: - Update to 4.036 Changes: http://cpansearch.perl.org/src/MICHIELB/DBD-mysql-4.036/Changes Modified: head/databases/p5-DBD-mysql/Makefile head/databases/p5-DBD-mysql/distinfo head/databases/p5-DBD-mysql/pkg-plist Modified: head/databases/p5-DBD-mysql/Makefile ============================================================================== --- head/databases/p5-DBD-mysql/Makefile Mon Sep 12 02:01:38 2016 (r421894) +++ head/databases/p5-DBD-mysql/Makefile Mon Sep 12 02:07:16 2016 (r421895) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DBD-mysql -PORTVERSION= 4.035 +PORTVERSION= 4.036 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-DBD-mysql/distinfo ============================================================================== --- head/databases/p5-DBD-mysql/distinfo Mon Sep 12 02:01:38 2016 (r421894) +++ head/databases/p5-DBD-mysql/distinfo Mon Sep 12 02:07:16 2016 (r421895) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468149328 -SHA256 (DBD-mysql-4.035.tar.gz) = b7eca365ea16bcf4c96c2fc0221304ff9c4995e7a551886837804a8f66b61937 -SIZE (DBD-mysql-4.035.tar.gz) = 145455 +TIMESTAMP = 1473321825 +SHA256 (DBD-mysql-4.036.tar.gz) = 5c48a823f86b8110ccb6504c6176ca248b52f56829dd4548bc39c3509f4154cf +SIZE (DBD-mysql-4.036.tar.gz) = 146513 Modified: head/databases/p5-DBD-mysql/pkg-plist ============================================================================== --- head/databases/p5-DBD-mysql/pkg-plist Mon Sep 12 02:01:38 2016 (r421894) +++ head/databases/p5-DBD-mysql/pkg-plist Mon Sep 12 02:07:16 2016 (r421895) @@ -1,5 +1,4 @@ %%SITE_ARCH%%/Bundle/DBD/mysql.pm -%%SITE_ARCH%%/DBD/README.pod %%SITE_ARCH%%/DBD/mysql.pm %%SITE_ARCH%%/DBD/mysql/GetInfo.pm %%SITE_ARCH%%/DBD/mysql/INSTALL.pod From owner-svn-ports-head@freebsd.org Mon Sep 12 02:20:53 2016 Return-Path: Delivered-To: svn-ports-head@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 56AB2BD7B47; Mon, 12 Sep 2016 02:20:53 +0000 (UTC) (envelope-from marino@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 1919A2A1; Mon, 12 Sep 2016 02:20:53 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C2KqJo094600; Mon, 12 Sep 2016 02:20:52 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C2Kq95094597; Mon, 12 Sep 2016 02:20:52 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120220.u8C2Kq95094597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 02:20:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421896 - in head/net-mgmt/snmp++: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:20:53 -0000 Author: marino Date: Mon Sep 12 02:20:51 2016 New Revision: 421896 URL: https://svnweb.freebsd.org/changeset/ports/421896 Log: net-mgmt/snmp++: Document SSL build requirement, patch for LibreSSL This allows for ports SSL libraries to be used for the build, including LibreSSL ports. Approved by: SSL blanket Added: head/net-mgmt/snmp++/files/patch-auth__priv.cpp (contents, props changed) Modified: head/net-mgmt/snmp++/Makefile head/net-mgmt/snmp++/files/Makefile.FreeBSD Modified: head/net-mgmt/snmp++/Makefile ============================================================================== --- head/net-mgmt/snmp++/Makefile Mon Sep 12 02:07:16 2016 (r421895) +++ head/net-mgmt/snmp++/Makefile Mon Sep 12 02:20:51 2016 (r421896) @@ -13,9 +13,9 @@ COMMENT= SNMP C++ library with V3 suppor MAKEFILE= Makefile.FreeBSD WRKSRC= ${WRKDIR}/${PORTNAME}/src -USES= gmake +USES= gmake ssl:build USE_LDCONFIG= yes -MAKE_ARGS= CC="${CXX}" +MAKE_ARGS= CC="${CXX}" PORTOPTS="-I${OPENSSLINC} -L${OPENSSLLIB}" post-extract: ${CP} ${FILESDIR}/Makefile.FreeBSD ${WRKSRC} Modified: head/net-mgmt/snmp++/files/Makefile.FreeBSD ============================================================================== --- head/net-mgmt/snmp++/files/Makefile.FreeBSD Mon Sep 12 02:07:16 2016 (r421895) +++ head/net-mgmt/snmp++/files/Makefile.FreeBSD Mon Sep 12 02:20:51 2016 (r421896) @@ -35,7 +35,7 @@ COPTIONS = -D_XPG4_EXTENDED -D__unix -Wa TEMPOPTS = -I. USEROPTS = -g -CFLAGS = $(COPTIONS) $(CINCDIRS) $(USEROPTS) +CFLAGS = $(COPTIONS) $(CINCDIRS) $(USEROPTS) $(PORTOPTS) LDFLAGS = $(CFLAGS) SHARED = -fPIC -shared Added: head/net-mgmt/snmp++/files/patch-auth__priv.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/snmp++/files/patch-auth__priv.cpp Mon Sep 12 02:20:51 2016 (r421896) @@ -0,0 +1,125 @@ +--- auth_priv.cpp.orig 2016-04-15 19:57:59 UTC ++++ auth_priv.cpp +@@ -89,34 +89,34 @@ typedef MD5_CTX MD5HashSta + #define MD5_PROCESS(s, p, l) MD5_Update(s, p, l) + #define MD5_DONE(s, k) MD5_Final(k, s) + +-typedef des_key_schedule DESCBCType; ++typedef DES_key_schedule DESCBCType; + #define DES_CBC_START_ENCRYPT(c, iv, k, kl, r, s) \ +- if (des_key_sched((C_Block*)(k), s) < 0) \ ++ if (DES_key_sched((DES_cblock*)(k), &s) < 0) \ + { \ + debugprintf(0, "Starting DES encryption failed."); \ + return SNMPv3_USM_ERROR; \ + } + #define DES_CBC_START_DECRYPT(c, iv, k, kl, r, s) \ +- if (des_key_sched((C_Block*)(k), s) < 0) \ ++ if (DES_key_sched((DES_cblock*)(k), &s) < 0) \ + { \ + debugprintf(0, "Starting DES decryption failed."); \ + return SNMPv3_USM_ERROR; \ + } + + #define DES_CBC_ENCRYPT(pt, ct, s, iv, l) \ +- des_ncbc_encrypt(pt, ct, l, \ +- s, (C_Block*)(iv), DES_ENCRYPT) ++ DES_ncbc_encrypt(pt, ct, l, \ ++ &s, (DES_cblock*)(iv), DES_ENCRYPT) + #define DES_CBC_DECRYPT(ct, pt, s, iv, l) \ +- des_ncbc_encrypt(ct, pt, l, \ +- s, (C_Block*)(iv), DES_DECRYPT) ++ DES_ncbc_encrypt(ct, pt, l, \ ++ &s, (DES_cblock*)(iv), DES_DECRYPT) + + #define DES_EDE3_CBC_ENCRYPT(pt, ct, l, k1, k2, k3, iv) \ +- des_ede3_cbc_encrypt(pt, ct, l, \ +- k1, k2, k3, (C_Block*)(iv), DES_ENCRYPT) ++ DES_ede3_cbc_encrypt(pt, ct, l, \ ++ k1, k2, k3, (DES_cblock*)(iv), DES_ENCRYPT) + + #define DES_EDE3_CBC_DECRYPT(ct, pt, l, k1, k2, k3, iv) \ +- des_ede3_cbc_encrypt(ct, pt, l, \ +- k1, k2, k3, (C_Block*)(iv), DES_DECRYPT) ++ DES_ede3_cbc_encrypt(ct, pt, l, \ ++ k1, k2, k3, (DES_cblock*)(iv), DES_DECRYPT) + + #define DES_MEMSET(s, c, l) memset(&(s), c, l) + +@@ -182,12 +182,12 @@ typedef MD5_CTX MD5HashSta + #define MD5_DONE(s, k) MD5Final(k, s) + + #define DES_EDE3_CBC_ENCRYPT(pt, ct, l, k1, k2, k3, iv) \ +- des_ede3_cbc_encrypt((C_Block*)(pt), (C_Block*)(ct), l, \ +- k1, k2, k3, (C_Block*)(iv), DES_ENCRYPT) ++ DES_ede3_cbc_encrypt((DES_cblock*)(pt), (DES_cblock*)(ct), l, \ ++ k1, k2, k3, (DES_cblock*)(iv), DES_ENCRYPT) + + #define DES_EDE3_CBC_DECRYPT(ct, pt, l, k1, k2, k3, iv) \ +- des_ede3_cbc_encrypt((C_Block*)(ct), (C_Block*)(pt), l, \ +- k1, k2, k3, (C_Block*)(iv), DES_DECRYPT) ++ DES_ede3_cbc_encrypt((DES_cblock*)(ct), (DES_cblock*)(pt), l, \ ++ k1, k2, k3, (DES_cblock*)(iv), DES_DECRYPT) + + #ifdef RSAEURO + +@@ -205,26 +205,26 @@ typedef DES_CBC_CTX DESCBCType + + #else // RSAEURO + +-typedef des_key_schedule DESCBCType; ++typedef DES_key_schedule DESCBCType; + #define DES_CBC_START_ENCRYPT(c, iv, k, kl, r, s) \ +- if (des_key_sched((C_Block*)(k), s) < 0) \ ++ if (DES_key_sched((DES_cblock*)(k), &s) < 0) \ + { \ + debugprintf(0, "Starting DES encryption failed."); \ + return SNMPv3_USM_ERROR; \ + } + #define DES_CBC_START_DECRYPT(c, iv, k, kl, r, s) \ +- if (des_key_sched((C_Block*)(k), s) < 0) \ ++ if (DES_key_sched((DES_cblock*)(k), &s) < 0) \ + { \ + debugprintf(0, "Starting DES decryption failed."); \ + return SNMPv3_USM_ERROR; \ + } + + #define DES_CBC_ENCRYPT(pt, ct, s, iv, l) \ +- des_ncbc_encrypt((C_Block*)(pt), (C_Block*)(ct), l, \ +- s, (C_Block*)(iv), DES_ENCRYPT) ++ DES_ncbc_encrypt((DES_cblock*)(pt), (DES_cblock*)(ct), l, \ ++ &s, (DES_cblock*)(iv), DES_ENCRYPT) + #define DES_CBC_DECRYPT(ct, pt, s, iv, l) \ +- des_ncbc_encrypt((C_Block*)(ct), (C_Block*)(pt), l, \ +- s, (C_Block*)(iv), DES_DECRYPT) ++ DES_ncbc_encrypt((DES_cblock*)(ct), (DES_cblock*)(pt), l, \ ++ &s, (DES_cblock*)(iv), DES_DECRYPT) + #define DES_MEMSET(s, c, l) memset(&(s), c, l) + + /* -- END: Defines for libdes -- */ +@@ -1939,9 +1939,9 @@ Priv3DES_EDE::encrypt(const unsigned cha + #else + DESCBCType ks1, ks2, ks3; + +- if ((des_key_sched((C_Block*)(key), ks1) < 0) || +- (des_key_sched((C_Block*)(key +8), ks2) < 0) || +- (des_key_sched((C_Block*)(key +16), ks3) < 0)) ++ if ((DES_key_sched((DES_cblock*)(key), &ks1) < 0) || ++ (DES_key_sched((DES_cblock*)(key +8), &ks2) < 0) || ++ (DES_key_sched((DES_cblock*)(key +16), &ks3) < 0)) + { + debugprintf(0, "Starting 3DES-EDE encryption failed."); + return SNMPv3_USM_ERROR; +@@ -2028,9 +2028,9 @@ Priv3DES_EDE::decrypt(const unsigned cha + #else + DESCBCType ks1, ks2, ks3; + +- if ((des_key_sched((C_Block*)(key), ks1) < 0) || +- (des_key_sched((C_Block*)(key+8), ks2) < 0) || +- (des_key_sched((C_Block*)(key+16), ks3) < 0)) ++ if ((DES_key_sched((C_Block*)(key), &ks1) < 0) || ++ (DES_key_sched((C_Block*)(key+8), &ks2) < 0) || ++ (DES_key_sched((C_Block*)(key+16), &ks3) < 0)) + { + debugprintf(0, "Starting 3DES-EDE decryption failed."); + return SNMPv3_USM_ERROR; From owner-svn-ports-head@freebsd.org Mon Sep 12 02:30:44 2016 Return-Path: Delivered-To: svn-ports-head@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 E42EBBD7E0A; Mon, 12 Sep 2016 02:30:44 +0000 (UTC) (envelope-from marino@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 91A928C8; Mon, 12 Sep 2016 02:30:44 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C2Uhnu096257; Mon, 12 Sep 2016 02:30:43 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C2UhMe096255; Mon, 12 Sep 2016 02:30:43 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120230.u8C2UhMe096255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 02:30:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421897 - in head/www/httest: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:30:45 -0000 Author: marino Date: Mon Sep 12 02:30:43 2016 New Revision: 421897 URL: https://svnweb.freebsd.org/changeset/ports/421897 Log: www/httest: Document SSL requirement and support LibreSSL Approved by: SSL blanket Added: head/www/httest/files/ head/www/httest/files/patch-src_ssl__module.c (contents, props changed) Modified: head/www/httest/Makefile Modified: head/www/httest/Makefile ============================================================================== --- head/www/httest/Makefile Mon Sep 12 02:20:51 2016 (r421896) +++ head/www/httest/Makefile Mon Sep 12 02:30:43 2016 (r421897) @@ -27,7 +27,7 @@ CONFIGURE_ARGS= --enable-lua-module \ --with-ssl="${OPENSSLLIB}" CPPFLAGS+= -I${LUA_INCDIR} GNU_CONFIGURE= yes -USES= iconv lua libtool bdb +USES= iconv lua libtool bdb ssl USE_OPENSSL= yes USE_LDCONFIG= yes Added: head/www/httest/files/patch-src_ssl__module.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/httest/files/patch-src_ssl__module.c Mon Sep 12 02:30:43 2016 (r421897) @@ -0,0 +1,46 @@ +--- src/ssl_module.c.orig 2015-03-16 15:46:05 UTC ++++ src/ssl_module.c +@@ -349,7 +349,7 @@ static void ssl_message_trace(int write_ + case DTLS1_VERSION: + str_version = "DTLS 1.0"; + break; +-#if (OPENSSL_VERSION_NUMBER >= 0x1000100fL) ++#if OPENSSL_VERSION_NUMBER >= 0x1000100fL && defined(DTLS1_BAD_VER) + case DTLS1_BAD_VER: + str_version = "DTLS 1.0 (bad)"; + break; +@@ -421,7 +421,7 @@ static void ssl_message_trace(int write_ + version == TLS1_1_VERSION || + #endif + version == DTLS1_VERSION +-#if (OPENSSL_VERSION_NUMBER >= 0x1000100fL) ++#if OPENSSL_VERSION_NUMBER >= 0x1000100fL && defined(DTLS1_BAD_VER) + || version == DTLS1_BAD_VER + #endif + ) { +@@ -740,10 +740,12 @@ static int worker_set_client_method(work + config->meth = SSLv2_client_method(); + } + #endif ++#ifndef OPENSSL_NO_SSL3 + else if (strcasecmp(sslstr, "SSL3") == 0) { + is_ssl = 1; + config->meth = SSLv3_client_method(); + } ++#endif + else if (strcasecmp(sslstr, "TLS1") == 0) { + is_ssl = 1; + config->meth = TLSv1_client_method(); +@@ -787,10 +789,12 @@ static int worker_set_server_method(work + config->meth = SSLv2_server_method(); + } + #endif ++#ifndef OPENSSL_NO_SSL3 + else if (strcasecmp(sslstr, "SSL3") == 0) { + is_ssl = 1; + config->meth = SSLv3_server_method(); + } ++#endif + else if (strcasecmp(sslstr, "TLS1") == 0) { + is_ssl = 1; + config->meth = TLSv1_server_method(); From owner-svn-ports-head@freebsd.org Mon Sep 12 02:32:31 2016 Return-Path: Delivered-To: svn-ports-head@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 D918FBD7EFE; Mon, 12 Sep 2016 02:32:31 +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 A6C8AB7D; Mon, 12 Sep 2016 02:32:31 +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 u8C2WUT3099116; Mon, 12 Sep 2016 02:32:30 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C2WUFe099114; Mon, 12 Sep 2016 02:32:30 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609120232.u8C2WUFe099114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 12 Sep 2016 02:32:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421898 - head/databases/p5-Mojo-Pg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:32:31 -0000 Author: wen Date: Mon Sep 12 02:32:30 2016 New Revision: 421898 URL: https://svnweb.freebsd.org/changeset/ports/421898 Log: - Update to 2.30 Changes: http://cpansearch.perl.org/src/SRI/Mojo-Pg-2.30/Changes Modified: head/databases/p5-Mojo-Pg/Makefile head/databases/p5-Mojo-Pg/distinfo Modified: head/databases/p5-Mojo-Pg/Makefile ============================================================================== --- head/databases/p5-Mojo-Pg/Makefile Mon Sep 12 02:30:43 2016 (r421897) +++ head/databases/p5-Mojo-Pg/Makefile Mon Sep 12 02:32:30 2016 (r421898) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojo-Pg -PORTVERSION= 2.28 +PORTVERSION= 2.30 CATEGORIES= databases www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/databases/p5-Mojo-Pg/distinfo ============================================================================== --- head/databases/p5-Mojo-Pg/distinfo Mon Sep 12 02:30:43 2016 (r421897) +++ head/databases/p5-Mojo-Pg/distinfo Mon Sep 12 02:32:30 2016 (r421898) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466507481 -SHA256 (Mojo-Pg-2.28.tar.gz) = 55d6f9b6b9f4ef43d88fff189bb6c12e5032147d2dc971adf0ec8b7cce2d82e7 -SIZE (Mojo-Pg-2.28.tar.gz) = 26480 +TIMESTAMP = 1473646280 +SHA256 (Mojo-Pg-2.30.tar.gz) = 3e5d5d1df1e6891c946937ed1739ff5af0b48e64147029ce5c8196aea97f9385 +SIZE (Mojo-Pg-2.30.tar.gz) = 27211 From owner-svn-ports-head@freebsd.org Mon Sep 12 02:37:19 2016 Return-Path: Delivered-To: svn-ports-head@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 A2331BD7FB3; Mon, 12 Sep 2016 02:37:19 +0000 (UTC) (envelope-from marino@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 6802BCA8; Mon, 12 Sep 2016 02:37:19 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C2bIKW099398; Mon, 12 Sep 2016 02:37:18 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C2bIt1099397; Mon, 12 Sep 2016 02:37:18 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120237.u8C2bIt1099397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 02:37:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421899 - head/dns/opendnssec X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:37:19 -0000 Author: marino Date: Mon Sep 12 02:37:18 2016 New Revision: 421899 URL: https://svnweb.freebsd.org/changeset/ports/421899 Log: dns/opendnssec: Add SSL flags and honor them Approved by: SSL blanket Modified: head/dns/opendnssec/Makefile Modified: head/dns/opendnssec/Makefile ============================================================================== --- head/dns/opendnssec/Makefile Mon Sep 12 02:32:30 2016 (r421898) +++ head/dns/opendnssec/Makefile Mon Sep 12 02:37:18 2016 (r421899) @@ -70,6 +70,10 @@ SCRIPTDATA+= convert_database.pl PKGMESSAGE= ${WRKSRC}/MIGRATION +post-patch: + ${REINPLACE_CMD} -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" \ + ${WRKSRC}/configure + pre-install: .if ${PORT_OPTIONS:MMYSQL} @${REINPLACE_CMD} -e '/REQUIRE:/ s|$$| mysql|' ${WRKDIR}/opendnssec From owner-svn-ports-head@freebsd.org Mon Sep 12 02:41:09 2016 Return-Path: Delivered-To: svn-ports-head@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 EE37EBD7152; Mon, 12 Sep 2016 02:41:09 +0000 (UTC) (envelope-from marino@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 BE047F01; Mon, 12 Sep 2016 02:41:09 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C2f9xK000323; Mon, 12 Sep 2016 02:41:09 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C2f9O6000322; Mon, 12 Sep 2016 02:41:09 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120241.u8C2f9O6000322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 02:41:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421900 - head/dns/opendnssec2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 02:41:10 -0000 Author: marino Date: Mon Sep 12 02:41:08 2016 New Revision: 421900 URL: https://svnweb.freebsd.org/changeset/ports/421900 Log: dns/opendnssecs: Add SSL flags and honor them, configure SSL base too Approved by: SSL blanket Modified: head/dns/opendnssec2/Makefile Modified: head/dns/opendnssec2/Makefile ============================================================================== --- head/dns/opendnssec2/Makefile Mon Sep 12 02:37:18 2016 (r421899) +++ head/dns/opendnssec2/Makefile Mon Sep 12 02:41:08 2016 (r421900) @@ -16,7 +16,8 @@ BUILD_DEPENDS= ldns>=1.6.16:dns/ldns LIB_DEPENDS= libldns.so:dns/ldns GNU_CONFIGURE= yes -CONFIGURE_ARGS= --localstatedir="${PREFIX}/var" +CONFIGURE_ARGS= --localstatedir="${PREFIX}/var" \ + --with-ssl=${OPENSSLBASE} USE_RC_SUBR= opendnssec USE_GNOME= libxml2 USES= ssl @@ -59,6 +60,10 @@ SQLITE_BUILD_DEPENDS= sqlite3>=3.3.9:dat SOFTHSM_CONFIGURE_ON= --with-pkcs11-softhsm=${LOCALBASE}/lib/softhsm/libsofthsm.so SOFTHSM_RUN_DEPENDS= softhsm>=1.2.0:security/softhsm +post-patch: + ${REINPLACE_CMD} -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" \ + ${WRKSRC}/configure + pre-install-MYSQL-on: ${REINPLACE_CMD} -e '/REQUIRE:/ s|$$| mysql|' ${WRKDIR}/opendnssec From owner-svn-ports-head@freebsd.org Mon Sep 12 03:01:46 2016 Return-Path: Delivered-To: svn-ports-head@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 1A455BD75F1; Mon, 12 Sep 2016 03:01:46 +0000 (UTC) (envelope-from marino@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 C586BAFF; Mon, 12 Sep 2016 03:01:45 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C31joU009894; Mon, 12 Sep 2016 03:01:45 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C31jgU009893; Mon, 12 Sep 2016 03:01:45 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609120301.u8C31jgU009893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 03:01:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421901 - head/net-im/prosody X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 03:01:46 -0000 Author: marino Date: Mon Sep 12 03:01:44 2016 New Revision: 421901 URL: https://svnweb.freebsd.org/changeset/ports/421901 Log: net-im/prosody: Document SSL requirement and rework port makefile This makefile had both
 and  but only the 
  include was necesssary so the 
 and  includes were remoed.
  Most of the variables conventionally introduced before the 
  include were wrapped and moved up to ensure they were defined when
  needed.  Finally SSL flags were added to support non-base SSL linkage.
  
  Approved by:	SSL blanket + general blankets

Modified:
  head/net-im/prosody/Makefile

Modified: head/net-im/prosody/Makefile
==============================================================================
--- head/net-im/prosody/Makefile	Mon Sep 12 02:41:08 2016	(r421900)
+++ head/net-im/prosody/Makefile	Mon Sep 12 03:01:44 2016	(r421901)
@@ -20,37 +20,43 @@ RUN_DEPENDS=	${LUA_MODLIBDIR}/socket/cor
 
 LIB_DEPENDS=	libidn.so:dns/libidn
 
+USES=		cpe gmake lua:51 shebangfix ssl
+SHEBANG_FILES=	prosody prosodyctl
+LUA_PREMK=	yes
+HAS_CONFIGURE=	yes
+CFLAGS+=	-I${OPENSSLINC}
+LDFLAGS+=	-L${OPENSSLLIB}
+CONFIGURE_ARGS=	--ostype=freebsd \
+		--c-compiler="${CC}" \
+		--linker="${CC}" \
+		--with-lua-include="${LUA_INCDIR}"
+CONFIGURE_ENV=	LOCALBASE="${LOCALBASE}" \
+		PREFIX="${PREFIX}" \
+		LUA_SUFFIX="-${LUA_VER}" \
+		LUA_LIBDIR="${LUA_LIBDIR}" \
+		LUA_INCDIR="${LUA_INCDIR}"
+
 USERS=		prosody
 GROUPS=		${USERS}
 
 USE_RC_SUBR=	prosody
+SUB_FILES=	pkg-deinstall
+SUB_LIST=	USERS=${USERS} GROUPS=${GROUPS}
+PLIST_SUB=	PROSODY_USER=${USERS} PROSODY_GROUP=${GROUPS}
 
 OPTIONS_DEFINE=	LUAJIT
-LUAJIT_DESC=	Run prosody using luajit
+LUAJIT_DESC=		Run prosody using luajit
 LUAJIT_LIB_DEPENDS=	libluajit-5.1.so:lang/luajit
 
 .include 
 
-USES=		cpe gmake lua:51 shebangfix
-SHEBANG_FILES=	prosody prosodyctl
 .if ${PORT_OPTIONS:MLUAJIT}
 lua_CMD=	${LOCALBASE}/bin/luajit
 .else
 lua_CMD=	${LOCALBASE}/bin/${LUA_CMD}
 .endif
-LUA_PREMK=	yes
-
-.include 
-
-HAS_CONFIGURE=	yes
-CONFIGURE_ARGS+=	--ostype=freebsd --c-compiler="${CC}" --linker="${CC}" --with-lua-include="${LUA_INCDIR}"
-CONFIGURE_ENV+=	LOCALBASE="${LOCALBASE}" PREFIX="${PREFIX}" LUA_SUFFIX="-${LUA_VER}" LUA_LIBDIR="${LUA_LIBDIR}" LUA_INCDIR="${LUA_INCDIR}"
-
-SUB_FILES=	pkg-deinstall
-SUB_LIST=	USERS=${USERS} GROUPS=${GROUPS}
-PLIST_SUB=	PROSODY_USER=${USERS} PROSODY_GROUP=${GROUPS}
 
 post-install:
 	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/prosody/util/*.so
 
-.include 
+.include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 03:21:16 2016
Return-Path: 
Delivered-To: svn-ports-head@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 B1538BD7AD9;
 Mon, 12 Sep 2016 03:21:16 +0000 (UTC)
 (envelope-from marino@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 7D12D2E3;
 Mon, 12 Sep 2016 03:21:16 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C3LFuO015790;
 Mon, 12 Sep 2016 03:21:15 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C3LFCO015788;
 Mon, 12 Sep 2016 03:21:15 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609120321.u8C3LFCO015788@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 03:21:15 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421902 - in head/devel/ptlib: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 03:21:16 -0000

Author: marino
Date: Mon Sep 12 03:21:15 2016
New Revision: 421902
URL: https://svnweb.freebsd.org/changeset/ports/421902

Log:
  devel/ptlib: Document SSL requirement, set flags, and support LibreSSL
  
  Approved by:	SSL blanket

Added:
  head/devel/ptlib/files/patch-src_ptclib_pssl.cxx   (contents, props changed)
Modified:
  head/devel/ptlib/Makefile

Modified: head/devel/ptlib/Makefile
==============================================================================
--- head/devel/ptlib/Makefile	Mon Sep 12 03:01:44 2016	(r421901)
+++ head/devel/ptlib/Makefile	Mon Sep 12 03:21:15 2016	(r421902)
@@ -15,12 +15,11 @@ LIB_DEPENDS=	libexpat.so:textproc/expat2
 
 CONFLICTS=	pwlib-1.*
 
-USES=		autoreconf:build bison gmake pkgconfig tar:xz
+USES=		autoreconf:build bison gmake pkgconfig ssl tar:xz
 GNU_CONFIGURE=	yes
-USE_OPENSSL=	yes
 USE_LDCONFIG=	yes
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
+CPPFLAGS+=	-I${OPENSSLINC} -I${LOCALBASE}/include
+LDFLAGS+=	-L${OPENSSLLIB} -L${LOCALBASE}/lib
 
 CONFIGURE_ARGS+=--enable-audio \
 		--enable-ipv6 \

Added: head/devel/ptlib/files/patch-src_ptclib_pssl.cxx
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ptlib/files/patch-src_ptclib_pssl.cxx	Mon Sep 12 03:21:15 2016	(r421902)
@@ -0,0 +1,15 @@
+--- src/ptclib/pssl.cxx.orig	2013-02-20 02:12:00 UTC
++++ src/ptclib/pssl.cxx
+@@ -805,9 +805,12 @@ void PSSLContext::Construct(Method metho
+   SSL_METHOD * meth;
+ 
+   switch (method) {
++#ifndef OPENSSL_NO_SSL3
++/* fall through to SSLv23_method if unsupported */
+     case SSLv3:
+       meth = SSLv3_method();
+       break;
++#endif
+     case TLSv1:
+       meth = TLSv1_method(); 
+       break;

From owner-svn-ports-head@freebsd.org  Mon Sep 12 04:02:44 2016
Return-Path: 
Delivered-To: svn-ports-head@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 4E8AEBD52C7;
 Mon, 12 Sep 2016 04:02:44 +0000 (UTC)
 (envelope-from marino@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 14D848FE;
 Mon, 12 Sep 2016 04:02:44 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C42htA033750;
 Mon, 12 Sep 2016 04:02:43 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C42hBf033748;
 Mon, 12 Sep 2016 04:02:43 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609120402.u8C42hBf033748@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 04:02:43 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421903 - in head/sysutils/tlsdate: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 04:02:44 -0000

Author: marino
Date: Mon Sep 12 04:02:42 2016
New Revision: 421903
URL: https://svnweb.freebsd.org/changeset/ports/421903

Log:
  sysutils/tlsdate: Add SSL flags and support no SSLv3 (LibreSSL)
  
  Appproved by:	SSL blanket

Added:
  head/sysutils/tlsdate/files/
  head/sysutils/tlsdate/files/patch-src_tlsdate-helper.c   (contents, props changed)
Modified:
  head/sysutils/tlsdate/Makefile

Modified: head/sysutils/tlsdate/Makefile
==============================================================================
--- head/sysutils/tlsdate/Makefile	Mon Sep 12 03:21:15 2016	(r421902)
+++ head/sysutils/tlsdate/Makefile	Mon Sep 12 04:02:42 2016	(r421903)
@@ -16,8 +16,9 @@ OPTIONS_DEFINE=	DOCS
 
 GNU_CONFIGURE=	yes
 TEST_TARGET=	test
-USE_OPENSSL=	yes
-USES=		autoreconf libtool pkgconfig
+USES=		autoreconf libtool pkgconfig ssl
+CFLAGS+=	-I${OPENSSLINC}
+LDFLAGS+=	-L${OPENSSLLIB}
 
 PLIST_SUB=	PKGNAME=${PKGNAME}
 PORTDOCS=	*

Added: head/sysutils/tlsdate/files/patch-src_tlsdate-helper.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/tlsdate/files/patch-src_tlsdate-helper.c	Mon Sep 12 04:02:42 2016	(r421903)
@@ -0,0 +1,15 @@
+--- src/tlsdate-helper.c.orig	2015-05-28 18:49:40 UTC
++++ src/tlsdate-helper.c
+@@ -1133,10 +1133,12 @@ run_ssl (uint32_t *time_map, int time_is
+   {
+     verb ("V: using SSLv23_client_method()");
+     ctx = SSL_CTX_new(SSLv23_client_method());
++#ifndef OPENSSL_NO_SSL3
+   } else if (0 == strcmp("sslv3", protocol))
+   {
+     verb ("V: using SSLv3_client_method()");
+     ctx = SSL_CTX_new(SSLv3_client_method());
++#endif
+   } else if (0 == strcmp("tlsv1", protocol))
+   {
+     verb ("V: using TLSv1_client_method()");

From owner-svn-ports-head@freebsd.org  Mon Sep 12 04:30:37 2016
Return-Path: 
Delivered-To: svn-ports-head@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 2E53DBD5990;
 Mon, 12 Sep 2016 04:30:37 +0000 (UTC)
 (envelope-from marino@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 E48D4D5;
 Mon, 12 Sep 2016 04:30:36 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C4Ua5F041358;
 Mon, 12 Sep 2016 04:30:36 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C4UaDn041356;
 Mon, 12 Sep 2016 04:30:36 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609120430.u8C4UaDn041356@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 04:30:36 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421904 - in head/security/rcracki_mt: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 04:30:37 -0000

Author: marino
Date: Mon Sep 12 04:30:35 2016
New Revision: 421904
URL: https://svnweb.freebsd.org/changeset/ports/421904

Log:
  security/rcracki_mt: Document SSL req't, honor flags, fix build with LibreSSL
  
  Approved by:	SSL blanket

Added:
  head/security/rcracki_mt/files/
  head/security/rcracki_mt/files/patch-HashAlgorithm.cpp   (contents, props changed)
Modified:
  head/security/rcracki_mt/Makefile

Modified: head/security/rcracki_mt/Makefile
==============================================================================
--- head/security/rcracki_mt/Makefile	Mon Sep 12 04:02:42 2016	(r421903)
+++ head/security/rcracki_mt/Makefile	Mon Sep 12 04:30:35 2016	(r421904)
@@ -16,14 +16,19 @@ NOT_FOR_ARCHS_REASON=	cannot detect endi
 
 WRKSRC=		${WRKDIR}/${DISTNAME}/${PORTNAME}
 
-USES=		7z gmake
+USES=		7z gmake ssl
 
 PLIST_FILES=	bin/${PORTNAME}
 PORTDOCS=	ChangeLog.txt README.txt
 
 post-patch:
-	@${REINPLACE_CMD} -e 's,CC = g++,CXX ?= g++, ; \
-		s,CFLAGS =,CXXFLAGS +=, ; s,CC,CXX, ; s,CFLAGS,CXXFLAGS,' \
+	@${REINPLACE_CMD} \
+		-e 's,CC = g++,CXX ?= g++,' \
+		-e 's,CFLAGS =,CXXFLAGS +=,' \
+		-e 's,CC,CXX,' \
+		-e 's,CFLAGS,CXXFLAGS,' \
+		-e "s|\(INCLUDES = .*\)|\1 -I${OPENSSLINC}|g" \
+		-e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" \
 		${WRKSRC}/Makefile
 
 do-install:

Added: head/security/rcracki_mt/files/patch-HashAlgorithm.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/files/patch-HashAlgorithm.cpp	Mon Sep 12 04:30:35 2016	(r421904)
@@ -0,0 +1,115 @@
+--- HashAlgorithm.cpp.orig	2016-04-15 21:23:18 UTC
++++ HashAlgorithm.cpp
+@@ -51,9 +51,9 @@
+ #endif
+ 
+ #define MSCACHE_HASH_SIZE 16
+-void setup_des_key(unsigned char key_56[], des_key_schedule &ks)
++void setup_des_key(unsigned char key_56[], DES_key_schedule &ks)
+ {
+-	des_cblock key;
++	DES_cblock key;
+ 
+ 	key[0] = key_56[0];
+ 	key[1] = (key_56[0] << 7) | (key_56[1] >> 1);
+@@ -65,7 +65,7 @@ void setup_des_key(unsigned char key_56[
+ 	key[7] = (key_56[6] << 1);
+ 
+ 	//des_set_odd_parity(&key);
+-	des_set_key(&key, ks);
++	DES_set_key(&key, &ks);
+ }
+ 
+ 
+@@ -83,10 +83,10 @@ void HashLM(unsigned char* pPlain, int n
+ 		pPlain[i] = 0;
+ 
+ 	static unsigned char magic[] = {0x4B, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25};
+-	des_key_schedule ks;
++	DES_key_schedule ks;
+ 	//setup_des_key(data, ks);
+ 	setup_des_key(pPlain, ks);
+-	des_ecb_encrypt((des_cblock*)magic, (des_cblock*)pHash, ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)magic, (DES_cblock*)pHash, &ks, DES_ENCRYPT);
+ }
+ 
+ void HashLMCHALL(unsigned char* pPlain, int nPlainLen, unsigned char* pHash)
+@@ -95,7 +95,7 @@ void HashLMCHALL(unsigned char* pPlain, 
+ 	unsigned char pre_lmresp[21];
+ 	static unsigned char magic[] = {0x4B, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25};
+ 	static unsigned char spoofed_challange[] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88}; 
+-	des_key_schedule ks;
++	DES_key_schedule ks;
+ 
+ 	memset (pass,0,sizeof(pass));
+ 	memset (pre_lmresp,0,sizeof(pre_lmresp));
+@@ -103,19 +103,19 @@ void HashLMCHALL(unsigned char* pPlain, 
+ 	memcpy (pass,pPlain, nPlainLen);
+ 
+ 	setup_des_key(pass, ks);
+-	des_ecb_encrypt((des_cblock*)magic, (des_cblock*)pre_lmresp, ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)magic, (DES_cblock*)pre_lmresp, &ks, DES_ENCRYPT);
+ 
+ 	setup_des_key(&pass[7], ks);
+-	des_ecb_encrypt((des_cblock*)magic, (des_cblock*)&pre_lmresp[8], ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)magic, (DES_cblock*)&pre_lmresp[8], &ks, DES_ENCRYPT);
+ 
+ 	setup_des_key(pre_lmresp, ks);
+-	des_ecb_encrypt((des_cblock*)spoofed_challange, (des_cblock*)pHash, ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)spoofed_challange, (DES_cblock*)pHash, &ks, DES_ENCRYPT);
+ 
+ 	setup_des_key(&pre_lmresp[7], ks);
+-	des_ecb_encrypt((des_cblock*)spoofed_challange, (des_cblock*)&pHash[8], ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)spoofed_challange, (DES_cblock*)&pHash[8], &ks, DES_ENCRYPT);
+ 
+ 	setup_des_key(&pre_lmresp[14], ks);
+-	des_ecb_encrypt((des_cblock*)spoofed_challange, (des_cblock*)&pHash[16], ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)spoofed_challange, (DES_cblock*)&pHash[16], &ks, DES_ENCRYPT);
+ 
+ } 
+ 
+@@ -125,14 +125,15 @@ void HashHALFLMCHALL(unsigned char* pPla
+ 	static unsigned char magic[] = {0x4B, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25};
+ 	static unsigned char salt[] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88};
+ 
+-	des_key_schedule ks;
++	DES_key_schedule ks;
++
+ 	unsigned char plain[8] = {0};	
+ 	memcpy(plain, pPlain, nPlainLen);
+ 	setup_des_key(plain, ks);
+-	des_ecb_encrypt((des_cblock*)magic, (des_cblock*)pre_lmresp, ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)magic, (DES_cblock*)pre_lmresp, &ks, DES_ENCRYPT);
+ 
+ 	setup_des_key(pre_lmresp, ks);
+-	des_ecb_encrypt((des_cblock*)salt, (des_cblock*)pHash, ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)salt, (DES_cblock*)pHash, &ks, DES_ENCRYPT);
+ } 
+ 
+ 
+@@ -151,7 +152,7 @@ void HashNTLMCHALL(unsigned char* pPlain
+ 	UnicodePlain[i * 2 + 1] = 0x00;
+ 	}
+ 	
+-	des_key_schedule ks;
++	DES_key_schedule ks;
+ 	unsigned char lm[21];
+ 	
+ 	/*MD4_CTX ctx;
+@@ -164,13 +165,13 @@ void HashNTLMCHALL(unsigned char* pPlain
+ 	lm[16] = lm[17] = lm[18] = lm[19] = lm[20] = 0;
+ 	
+ 	setup_des_key(lm, ks);
+-	des_ecb_encrypt((des_cblock*)spoofed_challange, (des_cblock*)pHash, ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)spoofed_challange, (DES_cblock*)pHash, &ks, DES_ENCRYPT);
+ 	
+ 	setup_des_key(&lm[7], ks);
+-	des_ecb_encrypt((des_cblock*)spoofed_challange, (des_cblock*)&pHash[8], ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)spoofed_challange, (DES_cblock*)&pHash[8], &ks, DES_ENCRYPT);
+ 	
+ 	setup_des_key(&lm[14], ks);
+-	des_ecb_encrypt((des_cblock*)spoofed_challange, (des_cblock*)&pHash[16], ks, DES_ENCRYPT);
++	DES_ecb_encrypt((DES_cblock*)spoofed_challange, (DES_cblock*)&pHash[16], &ks, DES_ENCRYPT);
+ }
+ 
+ /*

From owner-svn-ports-head@freebsd.org  Mon Sep 12 04:53:29 2016
Return-Path: 
Delivered-To: svn-ports-head@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 C7C09BD5E38;
 Mon, 12 Sep 2016 04:53:29 +0000 (UTC)
 (envelope-from marino@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 77F64CEB;
 Mon, 12 Sep 2016 04:53:29 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C4rSKX052407;
 Mon, 12 Sep 2016 04:53:28 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C4rSnJ052404;
 Mon, 12 Sep 2016 04:53:28 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609120453.u8C4rSnJ052404@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 04:53:28 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421905 - in head/mail/deforaos-mailer: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 04:53:29 -0000

Author: marino
Date: Mon Sep 12 04:53:28 2016
New Revision: 421905
URL: https://svnweb.freebsd.org/changeset/ports/421905

Log:
  mail/deforaos-mailer: Support non-base SSL including no SSLv3 (LibreSSL)
  
  Approved by:	SSL blanket

Added:
  head/mail/deforaos-mailer/files/patch-src_mailer.c   (contents, props changed)
  head/mail/deforaos-mailer/files/patch-tests_Makefile   (contents, props changed)
Modified:
  head/mail/deforaos-mailer/Makefile

Modified: head/mail/deforaos-mailer/Makefile
==============================================================================
--- head/mail/deforaos-mailer/Makefile	Mon Sep 12 04:30:35 2016	(r421904)
+++ head/mail/deforaos-mailer/Makefile	Mon Sep 12 04:53:28 2016	(r421905)
@@ -18,10 +18,9 @@ LIB_DEPENDS=	libSystem.so:devel/deforaos
 		libDesktop.so:x11/deforaos-libdesktop
 
 USE_GNOME=	gtk20
-USES=		desktop-file-utils pkgconfig
+USES=		desktop-file-utils pkgconfig ssl
 INSTALLS_ICONS=	yes
 USE_LDCONFIG=	yes
-USE_OPENSSL=	yes
 
 MAKE_ARGS+=	PREFIX=${PREFIX}
 MAKE_ENV+=	MANDIR=${STAGEDIR}${MANPREFIX}/man

Added: head/mail/deforaos-mailer/files/patch-src_mailer.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/files/patch-src_mailer.c	Mon Sep 12 04:53:28 2016	(r421905)
@@ -0,0 +1,14 @@
+--- src/mailer.c.orig	2016-02-20 14:36:22 UTC
++++ src/mailer.c
+@@ -373,7 +373,11 @@ Mailer * mailer_new(void)
+ 	/* ssl */
+ 	SSL_load_error_strings();
+ 	SSL_library_init();
++#ifndef OPENSSL_NO_SSL3
+ 	if((mailer->ssl_ctx = SSL_CTX_new(SSLv3_client_method())) == NULL
++#else
++	if((mailer->ssl_ctx = SSL_CTX_new(SSLv23_client_method())) == NULL
++#endif
+ 			|| SSL_CTX_set_cipher_list(mailer->ssl_ctx,
+ 				SSL_DEFAULT_CIPHER_LIST) != 1
+ 			|| SSL_CTX_load_verify_locations(mailer->ssl_ctx, NULL,

Added: head/mail/deforaos-mailer/files/patch-tests_Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/files/patch-tests_Makefile	Mon Sep 12 04:53:28 2016	(r421905)
@@ -0,0 +1,11 @@
+--- tests/Makefile.orig	2016-09-12 04:36:41 UTC
++++ tests/Makefile
+@@ -27,7 +27,7 @@ $(OBJDIR)date$(EXEEXT): $(date_OBJS)
+ 	$(CC) -o $(OBJDIR)date$(EXEEXT) $(date_OBJS) $(date_LDFLAGS)
+ 
+ email_OBJS = $(OBJDIR)email.o
+-email_CFLAGS = $(CPPFLAGSF) $(CPPFLAGS) $(CFLAGSF) $(CFLAGS)
++email_CFLAGS = $(CPPFLAGSF) $(CPPFLAGS) $(CFLAGSF) $(CFLAGS) `pkg-config --cflags openssl`
+ email_LDFLAGS = $(LDFLAGSF) $(LDFLAGS) -L$(OBJDIR)../src -Wl,-rpath,$(OBJDIR)../src -lMailer
+ 
+ $(OBJDIR)email$(EXEEXT): $(email_OBJS)

From owner-svn-ports-head@freebsd.org  Mon Sep 12 05:05:34 2016
Return-Path: 
Delivered-To: svn-ports-head@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 66A61BD628C;
 Mon, 12 Sep 2016 05:05:34 +0000 (UTC)
 (envelope-from marino@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 1D7F4163F;
 Mon, 12 Sep 2016 05:05:34 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C55XlB056384;
 Mon, 12 Sep 2016 05:05:33 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C55XTN056381;
 Mon, 12 Sep 2016 05:05:33 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609120505.u8C55XTN056381@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 05:05:33 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421906 - in head/security/john: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 05:05:34 -0000

Author: marino
Date: Mon Sep 12 05:05:32 2016
New Revision: 421906
URL: https://svnweb.freebsd.org/changeset/ports/421906

Log:
  security/john: Handle SLL libraries without SHA0 (e.g. LibreSSL)
  
  Approved by:	SSL blanket

Added:
  head/security/john/files/patch-src_john.c   (contents, props changed)
  head/security/john/files/patch-src_rawSHA0__fmt.c   (contents, props changed)
Modified:
  head/security/john/Makefile

Modified: head/security/john/Makefile
==============================================================================
--- head/security/john/Makefile	Mon Sep 12 04:53:28 2016	(r421905)
+++ head/security/john/Makefile	Mon Sep 12 05:05:32 2016	(r421906)
@@ -15,9 +15,8 @@ COMMENT=	Featureful Unix password cracke
 
 LICENSE=	GPLv2
 
-USES=		gmake shebangfix tar:bzip2
+USES=		gmake shebangfix ssl tar:bzip2
 SHEBANG_FILES=	run/*.pl
-USE_OPENSSL=	yes
 BUILD_WRKSRC=	${WRKDIR}/${DISTNAME}/src
 
 # We prefer -jumbo (community-enhanced) versions instead of vanilla releases

Added: head/security/john/files/patch-src_john.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/john/files/patch-src_john.c	Mon Sep 12 05:05:32 2016	(r421906)
@@ -0,0 +1,22 @@
+--- src/john.c.orig	2012-09-20 01:50:17 UTC
++++ src/john.c
+@@ -183,7 +183,9 @@ extern struct fmt_main fmt_wpapsk;
+ 
+ extern struct fmt_main fmt_hmacMD5;
+ extern struct fmt_main fmt_hmacSHA1;
++#ifndef OPENSSL_NO_SHA0
+ extern struct fmt_main fmt_rawSHA0;
++#endif
+ 
+ extern int unique(int argc, char **argv);
+ extern int unshadow(int argc, char **argv);
+@@ -241,7 +243,9 @@ static void john_register_all(void)
+ 
+ 	john_register_one(&fmt_hmacMD5);
+ 	john_register_one(&fmt_hmacSHA1);
++#ifndef OPENSSL_NO_SHA0
+ 	john_register_one(&fmt_rawSHA0);
++#endif
+ 
+ #if OPENSSL_VERSION_NUMBER >= 0x00908000
+ 	john_register_one(&fmt_rawSHA224);

Added: head/security/john/files/patch-src_rawSHA0__fmt.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/john/files/patch-src_rawSHA0__fmt.c	Mon Sep 12 05:05:32 2016	(r421906)
@@ -0,0 +1,17 @@
+--- src/rawSHA0_fmt.c.orig	2012-09-17 08:30:39 UTC
++++ src/rawSHA0_fmt.c
+@@ -9,6 +9,8 @@
+ #include 
+ #include "sha.h"
+ 
++#ifndef OPENSSL_NO_SHA0
++
+ #include "arch.h"
+ #include "misc.h"
+ #include "common.h"
+@@ -189,3 +191,5 @@ struct fmt_main fmt_rawSHA0 = {
+ 		cmp_exact
+ 	}
+ };
++
++#endif

From owner-svn-ports-head@freebsd.org  Mon Sep 12 05:15:45 2016
Return-Path: 
Delivered-To: svn-ports-head@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 D4848BD66B1;
 Mon, 12 Sep 2016 05:15:45 +0000 (UTC)
 (envelope-from marino@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 8D3361C25;
 Mon, 12 Sep 2016 05:15:45 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C5Fi26060375;
 Mon, 12 Sep 2016 05:15:44 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C5Fik5060373;
 Mon, 12 Sep 2016 05:15:44 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609120515.u8C5Fik5060373@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 05:15:44 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421907 - in head/net/l4ip: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 05:15:45 -0000

Author: marino
Date: Mon Sep 12 05:15:44 2016
New Revision: 421907
URL: https://svnweb.freebsd.org/changeset/ports/421907

Log:
  net/l4ip: Support non-base SSL, handle no EGD case (LibreSSL)
  
  Approved by:	SSL blanket

Added:
  head/net/l4ip/files/
  head/net/l4ip/files/patch-lion_tls.c   (contents, props changed)
Modified:
  head/net/l4ip/Makefile

Modified: head/net/l4ip/Makefile
==============================================================================
--- head/net/l4ip/Makefile	Mon Sep 12 05:05:32 2016	(r421906)
+++ head/net/l4ip/Makefile	Mon Sep 12 05:15:44 2016	(r421907)
@@ -11,14 +11,14 @@ DISTNAME=	${PORTNAME}-${PORTVERSION:C/([
 MAINTAINER=	leeym@FreeBSD.org
 COMMENT=	L4 health check daemon for IPFILTER
 
-USES=		gmake tar:tgz
-USE_OPENSSL=	yes
+USES=		gmake ssl tar:tgz
 WRKSRC=		${WRKDIR}/${PORTNAME}/src
 
 post-patch:
 	${REINPLACE_CMD} -e 's,service_type_t,script_type_t,g' ${WRKSRC}/service.c
 	${REINPLACE_CMD} -e 's,/usr/sbin,/sbin,g' ${WRKSRC}/l4ip.conf
 	${REINPLACE_CMD} -e '/^CC/d' ${WRKSRC}/${MAKEFILE} ${WRKSRC}/../lion/${MAKEFILE}
+	${REINPLACE_CMD} -e "s|/usr/local/ssl|${OPENSSLBASE}|g" ${WRKSRC}/Makefile
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/l4ip ${STAGEDIR}${PREFIX}/sbin

Added: head/net/l4ip/files/patch-lion_tls.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/l4ip/files/patch-lion_tls.c	Mon Sep 12 05:15:44 2016	(r421907)
@@ -0,0 +1,18 @@
+--- ../lion/tls.c.orig	2005-02-17 03:34:13.000000000 +0100
++++ ../lion/tls.c	2016-04-13 21:52:15.409533000 +0200
+@@ -94,6 +94,7 @@ int tls_init( void )
+ 	
+ 	if (RAND_status() != 1) {
+ 
++#ifndef OPENSSL_NO_EGD
+ 		if ( (egdbytes = RAND_egd(ssl_egdsocket)) == -1 ) {
+ 
+ 			net_server_SSL = 0;
+@@ -105,6 +106,7 @@ int tls_init( void )
+ 
+ 			return -2;
+ 		}
++#endif
+ 		
+ 		if (RAND_status() != 1) {
+ 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 05:32:26 2016
Return-Path: 
Delivered-To: svn-ports-head@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 3FEC8BD6BF8;
 Mon, 12 Sep 2016 05:32:26 +0000 (UTC)
 (envelope-from kevlo@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 EAFBAA06;
 Mon, 12 Sep 2016 05:32:25 +0000 (UTC)
 (envelope-from kevlo@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C5WPE9067756;
 Mon, 12 Sep 2016 05:32:25 GMT (envelope-from kevlo@FreeBSD.org)
Received: (from kevlo@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C5WPm9067753;
 Mon, 12 Sep 2016 05:32:25 GMT (envelope-from kevlo@FreeBSD.org)
Message-Id: <201609120532.u8C5WPm9067753@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: kevlo set sender to
 kevlo@FreeBSD.org using -f
From: Kevin Lo 
Date: Mon, 12 Sep 2016 05:32:25 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421908 - in head/www/owncloud: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 05:32:26 -0000

Author: kevlo
Date: Mon Sep 12 05:32:24 2016
New Revision: 421908
URL: https://svnweb.freebsd.org/changeset/ports/421908

Log:
  Fix This issue that prevents most users from using Owncloud on a new install.
  
  Upstream bugreport for reference: https://github.com/owncloud/core/issues/25714
  
  Submitted by:	Kyle Kneisl 

Added:
  head/www/owncloud/files/patch-core_Controller_LoginController.php   (contents, props changed)
Modified:
  head/www/owncloud/Makefile

Modified: head/www/owncloud/Makefile
==============================================================================
--- head/www/owncloud/Makefile	Mon Sep 12 05:15:44 2016	(r421907)
+++ head/www/owncloud/Makefile	Mon Sep 12 05:32:24 2016	(r421908)
@@ -2,6 +2,7 @@
 
 PORTNAME=	owncloud
 PORTVERSION=	9.1.0
+PORTREVISION=	1
 CATEGORIES=	www
 MASTER_SITES=	http://download.owncloud.org/community/
 
@@ -21,6 +22,8 @@ USE_OPENSSL=	yes
 OWNCLOUD_USERNAME?=	${WWWOWN}
 OWNCLOUD_GROUPNAME?=	${WWWGRP}
 
+IGNORE_FILES=	! -name *\.orig
+
 WRKSRC=		${WRKDIR}/${PORTNAME}
 NO_BUILD=	yes
 NO_ARCH=	yes
@@ -55,7 +58,8 @@ WITH_OPENSSL_PORT=	yes
 
 do-install:
 	@${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR}
-	@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
+	@cd ${WRKSRC} && \
+		${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} '${IGNORE_FILES}'
 	@${MKDIR} ${STAGEDIR}${WWWDIR}/data
 
 .include 

Added: head/www/owncloud/files/patch-core_Controller_LoginController.php
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/owncloud/files/patch-core_Controller_LoginController.php	Mon Sep 12 05:32:24 2016	(r421908)
@@ -0,0 +1,11 @@
+--- core/Controller/LoginController.php.orig	2016-09-12 05:18:21 UTC
++++ core/Controller/LoginController.php
+@@ -185,7 +185,7 @@ class LoginController extends Controller
+ 		}
+ 		if ($loginResult === false) {
+ 			$this->session->set('loginMessages', [
+-				['invalidpassword']
++				['invalidpassword'], []
+ 			]);
+ 			// Read current user and append if possible - we need to return the unmodified user otherwise we will leak the login name
+ 			$args = !is_null($user) ? ['user' => $originalUser] : [];

From owner-svn-ports-head@freebsd.org  Mon Sep 12 05:50:05 2016
Return-Path: 
Delivered-To: svn-ports-head@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 11AA8BD70B6;
 Mon, 12 Sep 2016 05:50:05 +0000 (UTC)
 (envelope-from riggs@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 BFB1516F;
 Mon, 12 Sep 2016 05:50:04 +0000 (UTC)
 (envelope-from riggs@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C5o3fb072882;
 Mon, 12 Sep 2016 05:50:03 GMT (envelope-from riggs@FreeBSD.org)
Received: (from riggs@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C5o3RB072871;
 Mon, 12 Sep 2016 05:50:03 GMT (envelope-from riggs@FreeBSD.org)
Message-Id: <201609120550.u8C5o3RB072871@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: riggs set sender to
 riggs@FreeBSD.org using -f
From: Thomas Zander 
Date: Mon, 12 Sep 2016 05:50:03 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421909 - in head/lang: . cilkplus cilkplus/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 05:50:05 -0000

Author: riggs
Date: Mon Sep 12 05:50:03 2016
New Revision: 421909
URL: https://svnweb.freebsd.org/changeset/ports/421909

Log:
  Add cilkplus: A set of compiler extensions from Intel for parallel computing
  
  PR:		212317
  Submitted by:	pfg (maintainer)

Added:
  head/lang/cilkplus/
  head/lang/cilkplus/Makefile   (contents, props changed)
  head/lang/cilkplus/distinfo   (contents, props changed)
  head/lang/cilkplus/files/
  head/lang/cilkplus/files/patch-runtime_declare-alloca.h   (contents, props changed)
  head/lang/cilkplus/pkg-descr   (contents, props changed)
  head/lang/cilkplus/pkg-plist   (contents, props changed)
Modified:
  head/lang/Makefile

Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile	Mon Sep 12 05:32:24 2016	(r421908)
+++ head/lang/Makefile	Mon Sep 12 05:50:03 2016	(r421909)
@@ -30,6 +30,7 @@
     SUBDIR += cfortran
     SUBDIR += chibi-scheme
     SUBDIR += chicken
+    SUBDIR += cilkplus
     SUBDIR += cint
     SUBDIR += cjs
     SUBDIR += clang-devel

Added: head/lang/cilkplus/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/cilkplus/Makefile	Mon Sep 12 05:50:03 2016	(r421909)
@@ -0,0 +1,27 @@
+# Created by: Pedro Giffuni
+# $FreeBSD$
+
+PORTNAME=	cilkplus
+PORTVERSION=	20160603
+CATEGORIES=	lang devel
+MASTER_SITES=	https://www.cilkplus.org/sites/default/files/runtime_source/
+PKGNAMESUFFIX=	-rtl
+DISTNAME=	${PORTNAME}${PKGNAMESUFFIX}-${HG_REVISION}
+
+MAINTAINER=	pfg@FreeBSD.org
+COMMENT=	Intel Cilk Runtime
+
+LICENSE=	BSD3CLAUSE
+
+HG_REVISION=	004467
+
+USE_GCC=	4.9+
+
+ONLY_FOR_ARCHS=	i386 amd64 sparc64
+
+USE_LDCONFIG=	yes
+WRKSRC=	${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-src-${HG_REVISION}
+
+USES=		tar:tgz cmake
+
+.include 

Added: head/lang/cilkplus/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/cilkplus/distinfo	Mon Sep 12 05:50:03 2016	(r421909)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1472758796
+SHA256 (cilkplus-rtl-004467.tgz) = e3cc83e42afe34c03da7938b79cdebc3b7f3237d3734a4d45c9ad91d7abe475e
+SIZE (cilkplus-rtl-004467.tgz) = 447080

Added: head/lang/cilkplus/files/patch-runtime_declare-alloca.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/cilkplus/files/patch-runtime_declare-alloca.h	Mon Sep 12 05:50:03 2016	(r421909)
@@ -0,0 +1,18 @@
+--- runtime/declare-alloca.h.orig	2016-06-01 19:59:38 UTC
++++ runtime/declare-alloca.h
+@@ -53,10 +53,14 @@
+  * be wrong. Here's a variant on what's recommended in the autoconf doc
+  */
+ 
++#include 
++
+ #if defined _MSC_VER
+ #   include 
+ #   define alloca _alloca
+-#elif defined HAVE_ALLOCA_H
++#elif defined BSD4_4
++#   include 
++#elif defined HAVE_ALLOCA_H 
+ #   include 
+ #elif defined __GNUC__
+ #   define alloca __builtin_alloca

Added: head/lang/cilkplus/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/cilkplus/pkg-descr	Mon Sep 12 05:50:03 2016	(r421909)
@@ -0,0 +1,24 @@
+Intel Cilk Plus is an extension to the C and C++ languages to support data 
+and task parallelism.
+
+Primary Features
+
+High Performance:
+    * An efficient work-stealing scheduler provides nearly optimal 
+	scheduling of parallel tasks
+    * Vector support unlocks the performance that's been hiding in your 
+	processors
+    * Powerful hyperobjects allow for lock-free programming
+Easy to Learn:
+    * Only 3 new keywords to implement task parallelism
+    * Serial semantics make understanding and debugging the parallel 
+	program easier
+    *Array Notations provide a natural way to express data parallelism
+Easy to Use:
+    * Automatic load balancing provides good behavior in multi-programmed 
+	environments
+    * Existing algorithms easily adapted for parallelism with minimal 
+	modification
+    * Supports both C and C++ programmers
+
+WWW: https://www.cilkplus.org/

Added: head/lang/cilkplus/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/cilkplus/pkg-plist	Mon Sep 12 05:50:03 2016	(r421909)
@@ -0,0 +1,26 @@
+include/cilk/cilk.h
+include/cilk/cilk_api.h
+include/cilk/cilk_api_linux.h
+include/cilk/cilk_stub.h
+include/cilk/cilk_undocumented.h
+include/cilk/common.h
+include/cilk/holder.h
+include/cilk/hyperobject_base.h
+include/cilk/metaprogramming.h
+include/cilk/reducer.h
+include/cilk/reducer_file.h
+include/cilk/reducer_list.h
+include/cilk/reducer_max.h
+include/cilk/reducer_min.h
+include/cilk/reducer_min_max.h
+include/cilk/reducer_opadd.h
+include/cilk/reducer_opand.h
+include/cilk/reducer_opmul.h
+include/cilk/reducer_opor.h
+include/cilk/reducer_opxor.h
+include/cilk/reducer_ostream.h
+include/cilk/reducer_string.h
+include/cilk/reducer_vector.h
+lib/libcilkrts.a
+lib/libcilkrts.so
+lib/libcilkrts.so.5

From owner-svn-ports-head@freebsd.org  Mon Sep 12 06:46:38 2016
Return-Path: 
Delivered-To: svn-ports-head@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 0A45EBD7F1A;
 Mon, 12 Sep 2016 06:46:38 +0000 (UTC)
 (envelope-from riggs@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 D12E41BDF;
 Mon, 12 Sep 2016 06:46:37 +0000 (UTC)
 (envelope-from riggs@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C6kbhA006346;
 Mon, 12 Sep 2016 06:46:37 GMT (envelope-from riggs@FreeBSD.org)
Received: (from riggs@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C6ka5j006344;
 Mon, 12 Sep 2016 06:46:36 GMT (envelope-from riggs@FreeBSD.org)
Message-Id: <201609120646.u8C6ka5j006344@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: riggs set sender to
 riggs@FreeBSD.org using -f
From: Thomas Zander 
Date: Mon, 12 Sep 2016 06:46:36 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421910 - head/devel/libserver
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 06:46:38 -0000

Author: riggs
Date: Mon Sep 12 06:46:36 2016
New Revision: 421910
URL: https://svnweb.freebsd.org/changeset/ports/421910

Log:
  Update to upstream release 3.15
  
  PR:		212524
  Submitted by:	jimmy@mammothcheese.ca (maintainer)

Modified:
  head/devel/libserver/Makefile
  head/devel/libserver/distinfo

Modified: head/devel/libserver/Makefile
==============================================================================
--- head/devel/libserver/Makefile	Mon Sep 12 05:50:03 2016	(r421909)
+++ head/devel/libserver/Makefile	Mon Sep 12 06:46:36 2016	(r421910)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	libserver
-PORTVERSION=	3.11
+PORTVERSION=	3.15
 CATEGORIES=	devel
 MASTER_SITES=	http://www.mammothcheese.ca/
 

Modified: head/devel/libserver/distinfo
==============================================================================
--- head/devel/libserver/distinfo	Mon Sep 12 05:50:03 2016	(r421909)
+++ head/devel/libserver/distinfo	Mon Sep 12 06:46:36 2016	(r421910)
@@ -1,2 +1,3 @@
-SHA256 (libserver-3.11.tar.gz) = 31362b8962d3a448e183b243bfa52b7e972a01b63ce8eb33d550fd57e247cd7d
-SIZE (libserver-3.11.tar.gz) = 25656
+TIMESTAMP = 1473424642
+SHA256 (libserver-3.15.tar.gz) = 9e9330259d8ed33da72088d71693fd8feb9e3f2422712ccc78c08b0153424ecc
+SIZE (libserver-3.15.tar.gz) = 26258

From owner-svn-ports-head@freebsd.org  Mon Sep 12 07:42:36 2016
Return-Path: 
Delivered-To: svn-ports-head@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 F335EBD7CAA;
 Mon, 12 Sep 2016 07:42:36 +0000 (UTC)
 (envelope-from nemysis@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 C5CF7383;
 Mon, 12 Sep 2016 07:42:36 +0000 (UTC)
 (envelope-from nemysis@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C7gaGC036341;
 Mon, 12 Sep 2016 07:42:36 GMT (envelope-from nemysis@FreeBSD.org)
Received: (from nemysis@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C7gZqm036338;
 Mon, 12 Sep 2016 07:42:35 GMT (envelope-from nemysis@FreeBSD.org)
Message-Id: <201609120742.u8C7gZqm036338@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: nemysis set sender to
 nemysis@FreeBSD.org using -f
From: Rusmir Dusko 
Date: Mon, 12 Sep 2016 07:42:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421911 - head/multimedia/smplayer
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 07:42:37 -0000

Author: nemysis
Date: Mon Sep 12 07:42:35 2016
New Revision: 421911
URL: https://svnweb.freebsd.org/changeset/ports/421911

Log:
  - Update to 16.9.0, please see
  
    /usr/local/share/doc/smplayer/Changelog

Modified:
  head/multimedia/smplayer/Makefile
  head/multimedia/smplayer/distinfo

Modified: head/multimedia/smplayer/Makefile
==============================================================================
--- head/multimedia/smplayer/Makefile	Mon Sep 12 06:46:36 2016	(r421910)
+++ head/multimedia/smplayer/Makefile	Mon Sep 12 07:42:35 2016	(r421911)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	smplayer
-DISTVERSION=	16.8.0
+DISTVERSION=	16.9.0
 CATEGORIES=	multimedia audio kde
 MASTER_SITES=	SF/${PORTNAME}/SMPlayer/${PORTVERSION}
 

Modified: head/multimedia/smplayer/distinfo
==============================================================================
--- head/multimedia/smplayer/distinfo	Mon Sep 12 06:46:36 2016	(r421910)
+++ head/multimedia/smplayer/distinfo	Mon Sep 12 07:42:35 2016	(r421911)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1470332953
-SHA256 (smplayer-16.8.0.tar.bz2) = 3ced2085808798bd2cdb1ca623686dbde3ac6b7acccee9de4786a2d5f96d9c81
-SIZE (smplayer-16.8.0.tar.bz2) = 4166064
+TIMESTAMP = 1473665317
+SHA256 (smplayer-16.9.0.tar.bz2) = 692e49fbfbcedaecf9e41f40e3f49905ec4d967e0b99b2c8c5fec1b6810ccdbe
+SIZE (smplayer-16.9.0.tar.bz2) = 4205771

From owner-svn-ports-head@freebsd.org  Mon Sep 12 08:33:57 2016
Return-Path: 
Delivered-To: svn-ports-head@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 8E5ADBD7C47;
 Mon, 12 Sep 2016 08:33:57 +0000 (UTC)
 (envelope-from olgeni@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 5BB0036B;
 Mon, 12 Sep 2016 08:33:57 +0000 (UTC)
 (envelope-from olgeni@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C8XuK8062347;
 Mon, 12 Sep 2016 08:33:56 GMT (envelope-from olgeni@FreeBSD.org)
Received: (from olgeni@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C8XuMj062346;
 Mon, 12 Sep 2016 08:33:56 GMT (envelope-from olgeni@FreeBSD.org)
Message-Id: <201609120833.u8C8XuMj062346@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: olgeni set sender to
 olgeni@FreeBSD.org using -f
From: Jimmy Olgeni 
Date: Mon, 12 Sep 2016 08:33:56 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421912 - head/devel/erlang-exmpp
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 08:33:57 -0000

Author: olgeni
Date: Mon Sep 12 08:33:56 2016
New Revision: 421912
URL: https://svnweb.freebsd.org/changeset/ports/421912

Log:
  Unbreak on Erlang 19.
  
  Switch to USES=ssl while I'm here.
  
  Submitted by:	Walter Schwarzenfeld

Modified:
  head/devel/erlang-exmpp/Makefile

Modified: head/devel/erlang-exmpp/Makefile
==============================================================================
--- head/devel/erlang-exmpp/Makefile	Mon Sep 12 07:42:35 2016	(r421911)
+++ head/devel/erlang-exmpp/Makefile	Mon Sep 12 08:33:56 2016	(r421912)
@@ -18,8 +18,6 @@ RUN_DEPENDS=	erl:lang/erlang
 LIB_DEPENDS=	libexpat.so:textproc/expat2 \
 		libxml2.so:textproc/libxml2
 
-BROKEN=		build fails with Erlang 19
-
 USE_GITHUB=	yes
 GH_ACCOUNT=	processone
 
@@ -35,15 +33,16 @@ CONFIGURE_ARGS+=--enable-static=yes \
 		--enable-escaping-using-cdata
 GNU_CONFIGURE_PREFIX=	"${PREFIX}/lib/erlang/lib"
 PLIST_SUB=	VERSION=${PORTVERSION}
-USES=		autoreconf cpe libtool pkgconfig
+USES=		autoreconf cpe libtool pkgconfig ssl
 CPE_VENDOR=	process-one
-USE_OPENSSL=	yes
 
 DOCS_CONFIGURE_ENABLE=	documentation
 
 MAKE_JOBS_UNSAFE=	yes
 
 post-configure:
+	${REINPLACE_CMD}  's|\(-spec.*\)\/[0-9] ::\(.*\)|\1\2|g' ${WRKSRC}/src/network/*.erl
+	${REINPLACE_CMD}  's|\(-spec.*\)\/[0-9] ::\(.*\)|\1\2|g' ${WRKSRC}/src/core/*.erl
 	${MAKE_CMD} clean -C ${WRKSRC}
 
 post-install:

From owner-svn-ports-head@freebsd.org  Mon Sep 12 08:39:16 2016
Return-Path: 
Delivered-To: svn-ports-head@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 CCD80BD7E04;
 Mon, 12 Sep 2016 08:39:16 +0000 (UTC)
 (envelope-from olgeni@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 9F796881;
 Mon, 12 Sep 2016 08:39:16 +0000 (UTC)
 (envelope-from olgeni@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C8dFeh063389;
 Mon, 12 Sep 2016 08:39:15 GMT (envelope-from olgeni@FreeBSD.org)
Received: (from olgeni@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C8dFNY063388;
 Mon, 12 Sep 2016 08:39:15 GMT (envelope-from olgeni@FreeBSD.org)
Message-Id: <201609120839.u8C8dFNY063388@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: olgeni set sender to
 olgeni@FreeBSD.org using -f
From: Jimmy Olgeni 
Date: Mon, 12 Sep 2016 08:39:15 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421913 - head/devel/ipython
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 08:39:16 -0000

Author: olgeni
Date: Mon Sep 12 08:39:15 2016
New Revision: 421913
URL: https://svnweb.freebsd.org/changeset/ports/421913

Log:
  Drop maintainership of devel/ipython.
  
  Some kind soul with stronger Python clues should probably look into
  a full Jupiter port.

Modified:
  head/devel/ipython/Makefile

Modified: head/devel/ipython/Makefile
==============================================================================
--- head/devel/ipython/Makefile	Mon Sep 12 08:33:56 2016	(r421912)
+++ head/devel/ipython/Makefile	Mon Sep 12 08:39:15 2016	(r421913)
@@ -8,7 +8,7 @@ CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
-MAINTAINER=	olgeni@FreeBSD.org
+MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Enhanced Interactive Python shell
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sqlite3>=2:databases/py-sqlite3

From owner-svn-ports-head@freebsd.org  Mon Sep 12 08:58:57 2016
Return-Path: 
Delivered-To: svn-ports-head@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 D6FFABD74C1;
 Mon, 12 Sep 2016 08:58:57 +0000 (UTC)
 (envelope-from jadawin@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 A7BE167D;
 Mon, 12 Sep 2016 08:58:57 +0000 (UTC)
 (envelope-from jadawin@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C8wuxB073593;
 Mon, 12 Sep 2016 08:58:56 GMT (envelope-from jadawin@FreeBSD.org)
Received: (from jadawin@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C8wuls073591;
 Mon, 12 Sep 2016 08:58:56 GMT (envelope-from jadawin@FreeBSD.org)
Message-Id: <201609120858.u8C8wuls073591@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: jadawin set sender to
 jadawin@FreeBSD.org using -f
From: Philippe Audeoud 
Date: Mon, 12 Sep 2016 08:58:56 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421914 - head/textproc/p5-PDF-Create
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 08:58:57 -0000

Author: jadawin
Date: Mon Sep 12 08:58:56 2016
New Revision: 421914
URL: https://svnweb.freebsd.org/changeset/ports/421914

Log:
  - Update to 1.35

Modified:
  head/textproc/p5-PDF-Create/Makefile
  head/textproc/p5-PDF-Create/distinfo

Modified: head/textproc/p5-PDF-Create/Makefile
==============================================================================
--- head/textproc/p5-PDF-Create/Makefile	Mon Sep 12 08:39:15 2016	(r421913)
+++ head/textproc/p5-PDF-Create/Makefile	Mon Sep 12 08:58:56 2016	(r421914)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	PDF-Create
-PORTVERSION=	1.34
+PORTVERSION=	1.35
 CATEGORIES=	textproc perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-

Modified: head/textproc/p5-PDF-Create/distinfo
==============================================================================
--- head/textproc/p5-PDF-Create/distinfo	Mon Sep 12 08:39:15 2016	(r421913)
+++ head/textproc/p5-PDF-Create/distinfo	Mon Sep 12 08:58:56 2016	(r421914)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1472460740
-SHA256 (PDF-Create-1.34.tar.gz) = 0503f047df431119c18187f2d4f5bd8eed11208b57e619ab30ae001f81b6ba58
-SIZE (PDF-Create-1.34.tar.gz) = 119852
+TIMESTAMP = 1473670327
+SHA256 (PDF-Create-1.35.tar.gz) = 7ac3bdff3610632adae9a5435f3e340baa99dffd524234d8247a28e632f1fc5b
+SIZE (PDF-Create-1.35.tar.gz) = 119894

From owner-svn-ports-head@freebsd.org  Mon Sep 12 09:01:21 2016
Return-Path: 
Delivered-To: svn-ports-head@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 90475BD78BB;
 Mon, 12 Sep 2016 09:01:21 +0000 (UTC)
 (envelope-from amdmi3@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 51F6296F;
 Mon, 12 Sep 2016 09:01:21 +0000 (UTC)
 (envelope-from amdmi3@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C91KPk074196;
 Mon, 12 Sep 2016 09:01:20 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C91KVq074191;
 Mon, 12 Sep 2016 09:01:20 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201609120901.u8C91KVq074191@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 12 Sep 2016 09:01:20 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421915 - in head/misc/pastebinit: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 09:01:21 -0000

Author: amdmi3
Date: Mon Sep 12 09:01:20 2016
New Revision: 421915
URL: https://svnweb.freebsd.org/changeset/ports/421915

Log:
  - Update to 1.5
  - Install README file

Modified:
  head/misc/pastebinit/Makefile
  head/misc/pastebinit/distinfo
  head/misc/pastebinit/files/patch-pastebinit

Modified: head/misc/pastebinit/Makefile
==============================================================================
--- head/misc/pastebinit/Makefile	Mon Sep 12 08:58:56 2016	(r421914)
+++ head/misc/pastebinit/Makefile	Mon Sep 12 09:01:20 2016	(r421915)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	pastebinit
-PORTVERSION=	1.4.1
-PORTREVISION=	2
+PORTVERSION=	1.5
 CATEGORIES=	misc python
 MASTER_SITES=	https://launchpad.net/pastebinit/trunk/${PORTVERSION}/+download/
 
@@ -22,13 +21,14 @@ NO_ARCH=	yes
 
 PLIST_FILES=	bin/pastebinit
 PORTDATA=	*
+PORTDOCS=	*
 
-OPTIONS_DEFINE=	PASTEBINS
+OPTIONS_DEFINE=	PASTEBINS DOCS
 OPTIONS_DEFAULT=PASTEBINS
 PASTEBINS_DESC=	Install default pastebins
 
 post-patch:
-	${REINPLACE_CMD} -e 's|/usr/share/pastebin.d|${DATADIR}/pastebin.d|' \
+	@${REINPLACE_CMD} -e 's|/usr/share/pastebin.d|${DATADIR}/pastebin.d|' \
 		${WRKSRC}/pastebinit
 do-install:
 	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
@@ -36,4 +36,8 @@ do-install:
 do-install-PASTEBINS-on:
 	(cd ${WRKSRC} && ${COPYTREE_SHARE} pastebin.d ${STAGEDIR}${DATADIR})
 
+do-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
+
 .include 

Modified: head/misc/pastebinit/distinfo
==============================================================================
--- head/misc/pastebinit/distinfo	Mon Sep 12 08:58:56 2016	(r421914)
+++ head/misc/pastebinit/distinfo	Mon Sep 12 09:01:20 2016	(r421915)
@@ -1,2 +1,3 @@
-SHA256 (pastebinit-1.4.1.tar.bz2) = c23720ff19d239f7ae62dd7dc28f453aaea4823af29b1595ba2e58fe232988e6
-SIZE (pastebinit-1.4.1.tar.bz2) = 39202
+TIMESTAMP = 1473635387
+SHA256 (pastebinit-1.5.tar.bz2) = 42e5a84ce7e46825fb3b6478e11893fad357197327257e474bd0d3549f438457
+SIZE (pastebinit-1.5.tar.bz2) = 42941

Modified: head/misc/pastebinit/files/patch-pastebinit
==============================================================================
--- head/misc/pastebinit/files/patch-pastebinit	Mon Sep 12 08:58:56 2016	(r421914)
+++ head/misc/pastebinit/files/patch-pastebinit	Mon Sep 12 09:01:20 2016	(r421915)
@@ -1,11 +1,11 @@
---- pastebinit.orig	2014-01-18 04:52:04 UTC
+--- pastebinit.orig	2016-09-11 23:10:22 UTC
 +++ pastebinit
-@@ -33,7 +33,7 @@ else:
+@@ -34,7 +34,7 @@ else:
      from urllib.request import FancyURLopener
  
  # Set the default pastebin
--defaultPB = "http://pastebin.com"
-+defaultPB = "http://paste2.org"
+-defaultPB = "pastebin.com"
++defaultPB = "paste2.org"
  
  # Now try to override it with a distributor pastebin
  try:

From owner-svn-ports-head@freebsd.org  Mon Sep 12 09:01:25 2016
Return-Path: 
Delivered-To: svn-ports-head@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 2E81CBD78D5;
 Mon, 12 Sep 2016 09:01:25 +0000 (UTC)
 (envelope-from amdmi3@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 E79AD97B;
 Mon, 12 Sep 2016 09:01:24 +0000 (UTC)
 (envelope-from amdmi3@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C91OsN074459;
 Mon, 12 Sep 2016 09:01:24 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C91NaW074333;
 Mon, 12 Sep 2016 09:01:23 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201609120901.u8C91NaW074333@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 12 Sep 2016 09:01:23 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421916 - in head/games/vor: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 09:01:25 -0000

Author: amdmi3
Date: Mon Sep 12 09:01:23 2016
New Revision: 421916
URL: https://svnweb.freebsd.org/changeset/ports/421916

Log:
  - Update to 0.5.7
  - Fix LICENSE
  - Switch to upstream .desktop file

Modified:
  head/games/vor/Makefile
  head/games/vor/distinfo
  head/games/vor/files/patch-file.c

Modified: head/games/vor/Makefile
==============================================================================
--- head/games/vor/Makefile	Mon Sep 12 09:01:20 2016	(r421915)
+++ head/games/vor/Makefile	Mon Sep 12 09:01:23 2016	(r421916)
@@ -2,39 +2,34 @@
 # $FreeBSD$
 
 PORTNAME=	vor
-PORTVERSION=	0.5.6
+PORTVERSION=	0.5.7
 CATEGORIES=	games
-MASTER_SITES=	http://qualdan.com/vor/ \
+MASTER_SITES=	https://jasonwoof.com/downloads/vor/ \
 		http://mirror.amdmi3.ru/distfiles/
 
 MAINTAINER=	amdmi3@FreeBSD.org
 COMMENT=	Dodge the rocks until you die
 
-LICENSE=	GPLv2
+LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		gmake pkgconfig tar:bzip2
+USES=		gmake pkgconfig tar:tgz
 USE_SDL=	mixer image sdl
 GNU_CONFIGURE=	yes
 
-PLIST_FILES=	bin/${PORTNAME}
+PLIST_FILES=	bin/${PORTNAME} \
+		share/applications/${PORTNAME}.desktop
 PORTDOCS=	*
 PORTDATA=	*
 
-DESKTOP_ENTRIES="Variations on Rockdodger" \
-		"Dodge the rocks until you die" \
-		"${DATADIR}/icon.png" \
-		"vor" \
-		"Game;ArcadeGame;" \
-		false
-
 OPTIONS_DEFINE=	DOCS
 
 post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications
 
 post-install-DOCS-on:
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
 
 .include 

Modified: head/games/vor/distinfo
==============================================================================
--- head/games/vor/distinfo	Mon Sep 12 09:01:20 2016	(r421915)
+++ head/games/vor/distinfo	Mon Sep 12 09:01:23 2016	(r421916)
@@ -1,2 +1,3 @@
-SHA256 (vor-0.5.6.tar.bz2) = 24fe49edfd59a6723000a0e8a62c5b631d6ae84e1e4eaaa890b64435d6fa2d95
-SIZE (vor-0.5.6.tar.bz2) = 258357
+TIMESTAMP = 1473637368
+SHA256 (vor-0.5.7.tgz) = f3411f747fa998d9ae13b5636ecb478a2bd9abc804030f8440c878bd2c6f8f09
+SIZE (vor-0.5.7.tgz) = 358032

Modified: head/games/vor/files/patch-file.c
==============================================================================
--- head/games/vor/files/patch-file.c	Mon Sep 12 09:01:20 2016	(r421915)
+++ head/games/vor/files/patch-file.c	Mon Sep 12 09:01:23 2016	(r421916)
@@ -1,6 +1,6 @@
---- file.c.orig	2009-12-10 00:28:59.000000000 +0300
-+++ file.c	2010-02-04 05:50:54.000000000 +0300
-@@ -101,7 +101,6 @@
+--- file.c.orig	2016-05-22 21:14:48 UTC
++++ file.c
+@@ -113,7 +113,6 @@ find_data_dir(void)
  	int i;
  	char *data_options[3] = {
  		getenv("VOR_DATA"),

From owner-svn-ports-head@freebsd.org  Mon Sep 12 09:01:30 2016
Return-Path: 
Delivered-To: svn-ports-head@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 C3335BD7901;
 Mon, 12 Sep 2016 09:01:30 +0000 (UTC)
 (envelope-from amdmi3@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 5D5CB9E7;
 Mon, 12 Sep 2016 09:01:30 +0000 (UTC)
 (envelope-from amdmi3@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C91TEY077250;
 Mon, 12 Sep 2016 09:01:29 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C91TOX077249;
 Mon, 12 Sep 2016 09:01:29 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201609120901.u8C91TOX077249@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 12 Sep 2016 09:01:29 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421917 - head/graphics/deegree-wms
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 09:01:31 -0000

Author: amdmi3
Date: Mon Sep 12 09:01:29 2016
New Revision: 421917
URL: https://svnweb.freebsd.org/changeset/ports/421917

Log:
  - Add LICENSE
  - Switch to options helpers
  - Cosmetic fixes

Modified:
  head/graphics/deegree-wms/Makefile

Modified: head/graphics/deegree-wms/Makefile
==============================================================================
--- head/graphics/deegree-wms/Makefile	Mon Sep 12 09:01:23 2016	(r421916)
+++ head/graphics/deegree-wms/Makefile	Mon Sep 12 09:01:29 2016	(r421917)
@@ -34,14 +34,14 @@ OPTIONS_DEFINE=	DOCS
 
 .if ${PORT_OPTIONS:MTOMCAT6}
 TOMCATVER=	apache-tomcat-6.0
-TCPORT=	8180
+TCPORT=		8180
 BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:www/tomcat6
 RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:www/tomcat6
 .endif
 
 .if ${PORT_OPTIONS:MTOMCAT7}
 TOMCATVER=	apache-tomcat-7.0
-TCPORT=	8080
+TCPORT=		8080
 BUILD_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:www/tomcat7
 RUN_DEPENDS+=	${APPHOME}/bin/bootstrap.jar:www/tomcat7
 .endif
@@ -51,9 +51,11 @@ post-extract:
 	@${TAR} xf ${WRKDIR}/deegree-wms.war -C ${WRKDIR}/${PORTDIRNAME}
 
 do-install:
-	${INSTALL} -d ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME}
+	@${MKDIR} ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME}
 	@cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME}
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
+
+do-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${STAGEDIR}${DOCSDIR}
 
 .include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 09:01:33 2016
Return-Path: 
Delivered-To: svn-ports-head@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 8BFA4BD7925;
 Mon, 12 Sep 2016 09:01:33 +0000 (UTC)
 (envelope-from amdmi3@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 4B5F6ACD;
 Mon, 12 Sep 2016 09:01:33 +0000 (UTC)
 (envelope-from amdmi3@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C91Wr9078027;
 Mon, 12 Sep 2016 09:01:32 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C91W5f078026;
 Mon, 12 Sep 2016 09:01:32 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201609120901.u8C91W5f078026@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 12 Sep 2016 09:01:32 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421918 - head/games/poker-eval
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 09:01:33 -0000

Author: amdmi3
Date: Mon Sep 12 09:01:32 2016
New Revision: 421918
URL: https://svnweb.freebsd.org/changeset/ports/421918

Log:
  - Switch to upstream versioning scheme
  - Switch to USES=pathfix
  - Switch to new test framework

Modified:
  head/games/poker-eval/Makefile

Modified: head/games/poker-eval/Makefile
==============================================================================
--- head/games/poker-eval/Makefile	Mon Sep 12 09:01:29 2016	(r421917)
+++ head/games/poker-eval/Makefile	Mon Sep 12 09:01:32 2016	(r421918)
@@ -2,11 +2,9 @@
 # $FreeBSD$
 
 PORTNAME=	poker-eval
-PORTVERSION=	0.138
-PORTREVISION=	1
+PORTVERSION=	138.0
 CATEGORIES=	games
 MASTER_SITES=	http://download.gna.org/pokersource/sources/
-DISTNAME=	${PORTNAME}-${PORTVERSION:E}.0
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	C library to evaluate poker hands
@@ -15,16 +13,9 @@ LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 GNU_CONFIGURE=	yes
-USES=		gmake libtool pkgconfig
+USES=		gmake libtool pathfix pkgconfig
 USE_LDCONFIG=	yes
 INSTALL_TARGET=	install-strip
-
-post-patch:
-	@${REINPLACE_CMD} -e \
-		's|{libdir}/pkgconfig|(prefix)/libdata/pkgconfig|g' \
-		${WRKSRC}/Makefile.in
-
-test:
-	@cd ${WRKSRC} && ${MAKE_CMD} check
+TEST_TARGET=	check
 
 .include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 09:20:47 2016
Return-Path: 
Delivered-To: svn-ports-head@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 05E5ABD7D93;
 Mon, 12 Sep 2016 09:20:47 +0000 (UTC)
 (envelope-from gerald@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 CCF7F391;
 Mon, 12 Sep 2016 09:20:46 +0000 (UTC)
 (envelope-from gerald@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8C9KkiP084723;
 Mon, 12 Sep 2016 09:20:46 GMT (envelope-from gerald@FreeBSD.org)
Received: (from gerald@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8C9Kjrr084721;
 Mon, 12 Sep 2016 09:20:45 GMT (envelope-from gerald@FreeBSD.org)
Message-Id: <201609120920.u8C9Kjrr084721@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: gerald set sender to
 gerald@FreeBSD.org using -f
From: Gerald Pfeifer 
Date: Mon, 12 Sep 2016 09:20:45 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421919 - head/lang/gcc7-devel
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 09:20:47 -0000

Author: gerald
Date: Mon Sep 12 09:20:45 2016
New Revision: 421919
URL: https://svnweb.freebsd.org/changeset/ports/421919

Log:
  Update to the 20160911 development snapshot of GCC 7.

Modified:
  head/lang/gcc7-devel/Makefile
  head/lang/gcc7-devel/distinfo

Modified: head/lang/gcc7-devel/Makefile
==============================================================================
--- head/lang/gcc7-devel/Makefile	Mon Sep 12 09:01:32 2016	(r421918)
+++ head/lang/gcc7-devel/Makefile	Mon Sep 12 09:20:45 2016	(r421919)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	gcc
-PORTVERSION=	7.0.0.s20160904
+PORTVERSION=	7.0.0.s20160911
 CATEGORIES=	lang java
 MASTER_SITES=	GCC/snapshots/${DISTVERSION}
 PKGNAMESUFFIX=	${SUFFIX}-devel

Modified: head/lang/gcc7-devel/distinfo
==============================================================================
--- head/lang/gcc7-devel/distinfo	Mon Sep 12 09:01:32 2016	(r421918)
+++ head/lang/gcc7-devel/distinfo	Mon Sep 12 09:20:45 2016	(r421919)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1473059919
-SHA256 (gcc-7-20160904.tar.bz2) = 45c85d3356566c2fa30be1f5619409f2240a93c02aede3f80d517f88cbda7160
-SIZE (gcc-7-20160904.tar.bz2) = 96538405
+TIMESTAMP = 1473669464
+SHA256 (gcc-7-20160911.tar.bz2) = 047f58f4f2915f0a6e9d6b0567ebbfb3372f11e59c0204436bbfec413e73aa30
+SIZE (gcc-7-20160911.tar.bz2) = 96535634

From owner-svn-ports-head@freebsd.org  Mon Sep 12 12:01:38 2016
Return-Path: 
Delivered-To: svn-ports-head@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 2F046BD7B72;
 Mon, 12 Sep 2016 12:01:38 +0000 (UTC) (envelope-from lme@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 E54E8793;
 Mon, 12 Sep 2016 12:01:37 +0000 (UTC) (envelope-from lme@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CC1brx067878;
 Mon, 12 Sep 2016 12:01:37 GMT (envelope-from lme@FreeBSD.org)
Received: (from lme@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CC1aM9067873;
 Mon, 12 Sep 2016 12:01:36 GMT (envelope-from lme@FreeBSD.org)
Message-Id: <201609121201.u8CC1aM9067873@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org
 using -f
From: Lars Engels 
Date: Mon, 12 Sep 2016 12:01:36 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421920 - in head/sysutils: . chyves
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 12:01:38 -0000

Author: lme
Date: Mon Sep 12 12:01:36 2016
New Revision: 421920
URL: https://svnweb.freebsd.org/changeset/ports/421920

Log:
  Add sysutils/chyves:
  
  chyves is a bhyve front-end manager. chyves manages type-2 virtualized guests by
  utilizing hardware virtualization on a base FreeBSD 10.3+ installation. On a
  base install, only FreeBSD guests can run. However, with the installation of
  sysutils/grub2-bhyve and sysutils/bhyve-firmware from ports or pkg, most other
  OSes can run as a guest, including Windows. See DEPENDENCIES section in the man
  page for more information.
  
  chyves is targeted for beginners as well as power users. Beginners should find
  chyves relatively easy to use with lots of documentation and demonstrations.
  While power users should find utility with features such as true ZFS clones,
  PCI passthrough, rapid execution against many guests, disk images, and snapshot
  reverted states on boot/reboot to name a few of the advanced features.
  
  The name 'chyves' is the pluralized, big endian alphabetic increment of bhyve.
  'chyves' is pronounced like 'chives', part of the Allium genus. The onion is
  also in the Allium genus.
  
  WWW: http://chyves.org

Added:
  head/sysutils/chyves/
  head/sysutils/chyves/Makefile   (contents, props changed)
  head/sysutils/chyves/distinfo   (contents, props changed)
  head/sysutils/chyves/pkg-descr   (contents, props changed)
  head/sysutils/chyves/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Mon Sep 12 09:20:45 2016	(r421919)
+++ head/sysutils/Makefile	Mon Sep 12 12:01:36 2016	(r421920)
@@ -143,6 +143,7 @@
     SUBDIR += cfengine38
     SUBDIR += cfengine39
     SUBDIR += chgrep
+    SUBDIR += chyves
     SUBDIR += cinnamon-control-center
     SUBDIR += cinnamon-settings-daemon
     SUBDIR += ciso

Added: head/sysutils/chyves/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/chyves/Makefile	Mon Sep 12 12:01:36 2016	(r421920)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	chyves
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2.0
+CATEGORIES=	sysutils
+
+MAINTAINER=	lme@FreeBSD.org
+COMMENT=	bhyve front-end manager
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+do-patch:
+	${REINPLACE_CMD} 's%\$$(PREFIX)%${STAGEDIR}/$$(PREFIX)%g' ${WRKSRC}/Makefile
+
+.include 

Added: head/sysutils/chyves/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/chyves/distinfo	Mon Sep 12 12:01:36 2016	(r421920)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1473673623
+SHA256 (chyves-chyves-v0.2.0_GH0.tar.gz) = 3b44f36288d01c9627ec87246949951429cb47317779dc1908b2f7c1a93c76a2
+SIZE (chyves-chyves-v0.2.0_GH0.tar.gz) = 163818

Added: head/sysutils/chyves/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/chyves/pkg-descr	Mon Sep 12 12:01:36 2016	(r421920)
@@ -0,0 +1,18 @@
+chyves is a bhyve front-end manager. chyves manages type-2 virtualized guests by
+utilizing hardware virtualization on a base FreeBSD 10.3+ installation. On a
+base install, only FreeBSD guests can run. However, with the installation of
+sysutils/grub2-bhyve and sysutils/bhyve-firmware from ports or pkg, most other
+OSes can run as a guest, including Windows. See DEPENDENCIES section in the man
+page for more information.
+
+chyves is targeted for beginners as well as power users. Beginners should find
+chyves relatively easy to use with lots of documentation and demonstrations.
+While power users should find utility with features such as true ZFS clones,
+PCI passthrough, rapid execution against many guests, disk images, and snapshot
+reverted states on boot/reboot to name a few of the advanced features.
+
+The name 'chyves' is the pluralized, big endian alphabetic increment of bhyve.
+'chyves' is pronounced like 'chives', part of the Allium genus. The onion is
+also in the Allium genus.
+
+WWW: http://chyves.org

Added: head/sysutils/chyves/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/chyves/pkg-plist	Mon Sep 12 12:01:36 2016	(r421920)
@@ -0,0 +1,18 @@
+etc/rc.d/chyves
+lib/chyves/chyves-basics
+lib/chyves/chyves-dataset
+lib/chyves/chyves-guest-console
+lib/chyves/chyves-guest-creation
+lib/chyves/chyves-guest-disk
+lib/chyves/chyves-guest-snapshot
+lib/chyves/chyves-guest-start
+lib/chyves/chyves-guest-stop
+lib/chyves/chyves-informational
+lib/chyves/chyves-network
+lib/chyves/chyves-properties
+lib/chyves/chyves-resources
+lib/chyves/chyves-return
+lib/chyves/chyves-updates
+lib/chyves/chyves-verify
+man/man8/chyves.8.gz
+sbin/chyves

From owner-svn-ports-head@freebsd.org  Mon Sep 12 12:44:44 2016
Return-Path: 
Delivered-To: svn-ports-head@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 ED254BD6BB2;
 Mon, 12 Sep 2016 12:44:44 +0000 (UTC)
 (envelope-from olgeni@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 BE07CCE2;
 Mon, 12 Sep 2016 12:44:44 +0000 (UTC)
 (envelope-from olgeni@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CCih57090841;
 Mon, 12 Sep 2016 12:44:43 GMT (envelope-from olgeni@FreeBSD.org)
Received: (from olgeni@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CCihgg090839;
 Mon, 12 Sep 2016 12:44:43 GMT (envelope-from olgeni@FreeBSD.org)
Message-Id: <201609121244.u8CCihgg090839@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: olgeni set sender to
 olgeni@FreeBSD.org using -f
From: Jimmy Olgeni 
Date: Mon, 12 Sep 2016 12:44:43 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421921 - head/devel/erlang-certifi
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 12:44:45 -0000

Author: olgeni
Date: Mon Sep 12 12:44:43 2016
New Revision: 421921
URL: https://svnweb.freebsd.org/changeset/ports/421921

Log:
  Update devel/erlang-certifi to version 0.6.0.

Modified:
  head/devel/erlang-certifi/Makefile
  head/devel/erlang-certifi/distinfo

Modified: head/devel/erlang-certifi/Makefile
==============================================================================
--- head/devel/erlang-certifi/Makefile	Mon Sep 12 12:01:36 2016	(r421920)
+++ head/devel/erlang-certifi/Makefile	Mon Sep 12 12:44:43 2016	(r421921)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	erlang-certifi
-PORTVERSION=	0.4.0
+PORTVERSION=	0.6.0
 CATEGORIES=	devel
 
 MAINTAINER=	olgeni@FreeBSD.org

Modified: head/devel/erlang-certifi/distinfo
==============================================================================
--- head/devel/erlang-certifi/distinfo	Mon Sep 12 12:01:36 2016	(r421920)
+++ head/devel/erlang-certifi/distinfo	Mon Sep 12 12:44:43 2016	(r421921)
@@ -1,2 +1,3 @@
-SHA256 (certifi-erlang-certifi-0.4.0_GH0.tar.gz) = 02170134b7179a08b653e9936422a43da96fb8fb9ffab5296e008b0924aea487
-SIZE (certifi-erlang-certifi-0.4.0_GH0.tar.gz) = 739187
+TIMESTAMP = 1473683965
+SHA256 (certifi-erlang-certifi-0.6.0_GH0.tar.gz) = 298246be15d5407676fbbb5f28b765d399c3b6bc959dbbc82b9d7a791c2d928c
+SIZE (certifi-erlang-certifi-0.6.0_GH0.tar.gz) = 766524

From owner-svn-ports-head@freebsd.org  Mon Sep 12 13:01:33 2016
Return-Path: 
Delivered-To: svn-ports-head@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 7CC62BD7177;
 Mon, 12 Sep 2016 13:01:33 +0000 (UTC)
 (envelope-from woodsb02@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 327C56ED;
 Mon, 12 Sep 2016 13:01:33 +0000 (UTC)
 (envelope-from woodsb02@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CD1WZ5097152;
 Mon, 12 Sep 2016 13:01:32 GMT (envelope-from woodsb02@FreeBSD.org)
Received: (from woodsb02@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CD1WC3097147;
 Mon, 12 Sep 2016 13:01:32 GMT (envelope-from woodsb02@FreeBSD.org)
Message-Id: <201609121301.u8CD1WC3097147@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to
 woodsb02@FreeBSD.org using -f
From: Ben Woods 
Date: Mon, 12 Sep 2016 13:01:32 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421922 - head/net/fping
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 13:01:33 -0000

Author: woodsb02
Date: Mon Sep 12 13:01:32 2016
New Revision: 421922
URL: https://svnweb.freebsd.org/changeset/ports/421922

Log:
  net/fping: Update to 3.13
  
  - Use new official GitHub repo, as website was down from Apr-Sept 2016
  - Add USES=autoreconf as GitHub tarball only comes with configure.ac
  - Add USES=gmake as manpage generation was failing with pmake
  
  Changes this release:
    https://github.com/schweikert/fping/blob/3.13/ChangeLog
  
  PR:		212386
  Approved by:	jharris@widomaker.com (maintainer), adamw (mentor)

Modified:
  head/net/fping/Makefile
  head/net/fping/distinfo

Modified: head/net/fping/Makefile
==============================================================================
--- head/net/fping/Makefile	Mon Sep 12 12:44:43 2016	(r421921)
+++ head/net/fping/Makefile	Mon Sep 12 13:01:32 2016	(r421922)
@@ -2,10 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=	fping
-PORTVERSION=	3.10
+PORTVERSION=	3.13
 CATEGORIES=	net ipv6
-MASTER_SITES=	http://fping.org/dist/ \
-		http://bitrote.org/distfiles/
 
 MAINTAINER=	jharris@widomaker.com
 COMMENT=	Quickly ping multiple hosts without flooding the network
@@ -16,11 +14,15 @@ LICENSE_NAME=	Previous BSD License
 LICENSE_FILE=	${WRKSRC}/COPYING
 LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
 
+USE_GITHUB=	yes
+GH_ACCOUNT=	schweikert
+
 OPTIONS_MULTI=		NET
 OPTIONS_MULTI_NET=	IPV4 IPV6
 OPTIONS_DEFAULT=	IPV4
 OPTIONS_SUB=	yes
 
+USES=		autoreconf gmake
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--bindir="${PREFIX}/sbin"
 INSTALL_TARGET=	install-strip

Modified: head/net/fping/distinfo
==============================================================================
--- head/net/fping/distinfo	Mon Sep 12 12:44:43 2016	(r421921)
+++ head/net/fping/distinfo	Mon Sep 12 13:01:32 2016	(r421922)
@@ -1,2 +1,3 @@
-SHA256 (fping-3.10.tar.gz) = cd47e842f32fe6aa72369d8a0e3545f7c137bb019e66f47379dc70febad357d8
-SIZE (fping-3.10.tar.gz) = 157010
+TIMESTAMP = 1473075716
+SHA256 (schweikert-fping-3.13_GH0.tar.gz) = ec867fce028fbf77e3fc332699b108f85b0c17738bb0e36b273b537980c60a7f
+SIZE (schweikert-fping-3.13_GH0.tar.gz) = 44448

From owner-svn-ports-head@freebsd.org  Mon Sep 12 13:23:49 2016
Return-Path: 
Delivered-To: svn-ports-head@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 71861BD7551;
 Mon, 12 Sep 2016 13:23:49 +0000 (UTC)
 (envelope-from marino@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 4BA7BF6A;
 Mon, 12 Sep 2016 13:23:49 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CDNm9x011385;
 Mon, 12 Sep 2016 13:23:48 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CDNl9N011380;
 Mon, 12 Sep 2016 13:23:47 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121323.u8CDNl9N011380@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 13:23:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421923 - in head/security/distcache: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 13:23:49 -0000

Author: marino
Date: Mon Sep 12 13:23:47 2016
New Revision: 421923
URL: https://svnweb.freebsd.org/changeset/ports/421923

Log:
  security/distcache: Configure SSL base, fix build on LibreSSL
  
  While here, simplify existing patch for modern FreeBSD and DragonFly

Added:
  head/security/distcache/files/patch-libnal_proto__fd.c   (contents, props changed)
Deleted:
  head/security/distcache/files/patch-proto_fd.c
Modified:
  head/security/distcache/Makefile
  head/security/distcache/files/patch-ssl__swamp__swamp.c
  head/security/distcache/files/patch-ssl__swamp__swamp.h
  head/security/distcache/files/patch-ssl__swamp__utils.c

Modified: head/security/distcache/Makefile
==============================================================================
--- head/security/distcache/Makefile	Mon Sep 12 13:01:32 2016	(r421922)
+++ head/security/distcache/Makefile	Mon Sep 12 13:23:47 2016	(r421923)
@@ -14,12 +14,11 @@ COMMENT=	Distributed OpenSSL session cac
 LICENSE=	LGPL21
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		libtool tar:bzip2
+USES=		libtool ssl tar:bzip2
 USE_RC_SUBR=	dc_server
-USE_OPENSSL=	yes
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--enable-shared
+CONFIGURE_ARGS=	--enable-shared --with-ssl=${OPENSSLBASE}
 INSTALL_TARGET=	install-strip
 
 SUB_LIST=	NAME=dc_server

Added: head/security/distcache/files/patch-libnal_proto__fd.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/distcache/files/patch-libnal_proto__fd.c	Mon Sep 12 13:23:47 2016	(r421923)
@@ -0,0 +1,10 @@
+--- libnal/proto_fd.c.orig	2003-11-27 00:02:32 UTC
++++ libnal/proto_fd.c
+@@ -24,6 +24,7 @@
+ #include 
+ #include "nal_internal.h"
+ #include 
++#include 
+ 
+ /**************************/
+ /* predeclare our vtables */

Modified: head/security/distcache/files/patch-ssl__swamp__swamp.c
==============================================================================
--- head/security/distcache/files/patch-ssl__swamp__swamp.c	Mon Sep 12 13:01:32 2016	(r421922)
+++ head/security/distcache/files/patch-ssl__swamp__swamp.c	Mon Sep 12 13:23:47 2016	(r421923)
@@ -1,6 +1,6 @@
---- ssl/swamp/swamp.c.orig	2004-02-19 15:37:33.000000000 -0500
-+++ ssl/swamp/swamp.c	2015-03-23 19:47:07.787300000 -0400
-@@ -104,8 +104,10 @@
+--- ssl/swamp/swamp.c.orig	2004-02-19 20:37:33 UTC
++++ ssl/swamp/swamp.c
+@@ -104,10 +104,14 @@ static SSL_CTX *ossl_setup_ssl_ctx(const
  	switch(config->sslmeth) {
  	case SWAMP_SSLMETH_NORMAL:
  		sslmethod = SSLv23_client_method(); break;
@@ -8,6 +8,10 @@
  	case SWAMP_SSLMETH_SSLv2:
  		sslmethod = SSLv2_client_method(); break;
 +#endif
++#ifndef OPENSSL_NO_SSL3
  	case SWAMP_SSLMETH_SSLv3:
  		sslmethod = SSLv3_client_method(); break;
++#endif
  	case SWAMP_SSLMETH_TLSv1:
+ 		sslmethod = TLSv1_client_method(); break;
+ 	default:

Modified: head/security/distcache/files/patch-ssl__swamp__swamp.h
==============================================================================
--- head/security/distcache/files/patch-ssl__swamp__swamp.h	Mon Sep 12 13:01:32 2016	(r421922)
+++ head/security/distcache/files/patch-ssl__swamp__swamp.h	Mon Sep 12 13:23:47 2016	(r421923)
@@ -1,6 +1,6 @@
---- ssl/swamp/swamp.h.orig	2004-02-17 15:29:34.000000000 -0500
-+++ ssl/swamp/swamp.h	2015-03-23 19:47:20.490894000 -0400
-@@ -161,7 +161,9 @@
+--- ssl/swamp/swamp.h.orig	2004-02-17 20:29:34 UTC
++++ ssl/swamp/swamp.h
+@@ -161,7 +161,9 @@ char *util_parse_escaped_string(const ch
  
  typedef enum st_swamp_sslmeth {
  	SWAMP_SSLMETH_NORMAL,	/* SSLv23_client_method() */

Modified: head/security/distcache/files/patch-ssl__swamp__utils.c
==============================================================================
--- head/security/distcache/files/patch-ssl__swamp__utils.c	Mon Sep 12 13:01:32 2016	(r421922)
+++ head/security/distcache/files/patch-ssl__swamp__utils.c	Mon Sep 12 13:23:47 2016	(r421923)
@@ -1,6 +1,6 @@
---- ssl/swamp/utils.c.orig	2004-02-17 15:29:34.000000000 -0500
-+++ ssl/swamp/utils.c	2015-03-23 19:47:34.795067000 -0400
-@@ -269,8 +269,10 @@
+--- ssl/swamp/utils.c.orig	2004-02-17 20:29:34 UTC
++++ ssl/swamp/utils.c
+@@ -269,10 +269,14 @@ int util_parse_sslmeth(const char *str_t
  {
  	if(!strcmp(str_toconvert, "normal"))
  		*val = SWAMP_SSLMETH_NORMAL;
@@ -8,6 +8,10 @@
  	else if(!strcmp(str_toconvert, "sslv2"))
  		*val = SWAMP_SSLMETH_SSLv2;
 +#endif
++#ifndef OPENSSL_NO_SSL3
  	else if(!strcmp(str_toconvert, "sslv3"))
  		*val = SWAMP_SSLMETH_SSLv3;
++#endif
  	else if(!strcmp(str_toconvert, "tlsv1"))
+ 		*val = SWAMP_SSLMETH_TLSv1;
+ 	else

From owner-svn-ports-head@freebsd.org  Mon Sep 12 13:38:20 2016
Return-Path: 
Delivered-To: svn-ports-head@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 1D40EBD7B61;
 Mon, 12 Sep 2016 13:38:20 +0000 (UTC)
 (envelope-from kmoore@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 E1B33972;
 Mon, 12 Sep 2016 13:38:19 +0000 (UTC)
 (envelope-from kmoore@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CDcJ4r017445;
 Mon, 12 Sep 2016 13:38:19 GMT (envelope-from kmoore@FreeBSD.org)
Received: (from kmoore@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CDcJNC017443;
 Mon, 12 Sep 2016 13:38:19 GMT (envelope-from kmoore@FreeBSD.org)
Message-Id: <201609121338.u8CDcJNC017443@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: kmoore set sender to
 kmoore@FreeBSD.org using -f
From: Kris Moore 
Date: Mon, 12 Sep 2016 13:38:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421924 - head/textproc/py-sphinx
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 13:38:20 -0000

Author: kmoore
Date: Mon Sep 12 13:38:18 2016
New Revision: 421924
URL: https://svnweb.freebsd.org/changeset/ports/421924

Log:
  - Update to 1.4.6

Modified:
  head/textproc/py-sphinx/Makefile
  head/textproc/py-sphinx/distinfo

Modified: head/textproc/py-sphinx/Makefile
==============================================================================
--- head/textproc/py-sphinx/Makefile	Mon Sep 12 13:23:47 2016	(r421923)
+++ head/textproc/py-sphinx/Makefile	Mon Sep 12 13:38:18 2016	(r421924)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	sphinx
-PORTVERSION=	1.4.4
+PORTVERSION=	1.4.6
 CATEGORIES=	textproc python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/textproc/py-sphinx/distinfo
==============================================================================
--- head/textproc/py-sphinx/distinfo	Mon Sep 12 13:23:47 2016	(r421923)
+++ head/textproc/py-sphinx/distinfo	Mon Sep 12 13:38:18 2016	(r421924)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1466527827
-SHA256 (python/Sphinx-1.4.4.tar.gz) = 3effd6373734bd59f7457fed2f0bd4ba7ec3c70b4598d7c2e5193a42209dbfa0
-SIZE (python/Sphinx-1.4.4.tar.gz) = 4335455
+TIMESTAMP = 1473450904
+SHA256 (python/Sphinx-1.4.6.tar.gz) = 9e43430aa9b491ecd86302a1320edb8977da624f63422d494257eab2541a79d3
+SIZE (python/Sphinx-1.4.6.tar.gz) = 4489982

From owner-svn-ports-head@freebsd.org  Mon Sep 12 14:22:12 2016
Return-Path: 
Delivered-To: svn-ports-head@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 2BA3DBD84CD;
 Mon, 12 Sep 2016 14:22:12 +0000 (UTC) (envelope-from kwm@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 E0A5DE8A;
 Mon, 12 Sep 2016 14:22:11 +0000 (UTC) (envelope-from kwm@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CEMBVW039093;
 Mon, 12 Sep 2016 14:22:11 GMT (envelope-from kwm@FreeBSD.org)
Received: (from kwm@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CEMArC039089;
 Mon, 12 Sep 2016 14:22:10 GMT (envelope-from kwm@FreeBSD.org)
Message-Id: <201609121422.u8CEMArC039089@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org
 using -f
From: Koop Mast 
Date: Mon, 12 Sep 2016 14:22:10 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421925 - in head/net: tigervnc tigervnc-devel
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 14:22:12 -0000

Author: kwm
Date: Mon Sep 12 14:22:10 2016
New Revision: 421925
URL: https://svnweb.freebsd.org/changeset/ports/421925

Log:
  Update tigervnc to 1.7.0.
  
  Mark tigervnc-devel ignore since it contained the 1.7.0 RC.
  
  PR:		212239
  Approved by:	maintainer

Modified:
  head/net/tigervnc-devel/Makefile
  head/net/tigervnc/Makefile
  head/net/tigervnc/distinfo
  head/net/tigervnc/pkg-plist

Modified: head/net/tigervnc-devel/Makefile
==============================================================================
--- head/net/tigervnc-devel/Makefile	Mon Sep 12 13:38:18 2016	(r421924)
+++ head/net/tigervnc-devel/Makefile	Mon Sep 12 14:22:10 2016	(r421925)
@@ -46,6 +46,8 @@ LIB_DEPENDS=	libunwind.so:devel/libunwin
 
 CFLAGS+=	-fPIC
 
+IGNORE=		No development version available right now. Please use net/tigervnc instead.
+
 OPTIONS_DEFINE=		GNUTLS NLS PAM VIEWER DOCS
 OPTIONS_DEFAULT=	GNUTLS PAM VIEWER
 VIEWER_DESC=		Build vncviewer

Modified: head/net/tigervnc/Makefile
==============================================================================
--- head/net/tigervnc/Makefile	Mon Sep 12 13:38:18 2016	(r421924)
+++ head/net/tigervnc/Makefile	Mon Sep 12 14:22:10 2016	(r421925)
@@ -2,9 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=	tigervnc
-PORTVERSION=	1.6.0
+PORTVERSION=	1.7.0
 DISTVERSIONPREFIX=	v
-PORTREVISION=	3
 CATEGORIES=	net x11-servers
 
 MAINTAINER=	meta+ports@vmeta.jp
@@ -109,6 +108,7 @@ CONFIGURE_ARGS+=	\
 		--with-xkb-bin-directory=${LOCALBASE}/bin \
 		--with-serverconfig-path=${LOCALBASE}/lib/X11 \
 		--disable-selective-werror \
+		--disable-xwayland \
 		--with-fontrootdir=${LOCALBASE}/share/fonts
 
 .include 

Modified: head/net/tigervnc/distinfo
==============================================================================
--- head/net/tigervnc/distinfo	Mon Sep 12 13:38:18 2016	(r421924)
+++ head/net/tigervnc/distinfo	Mon Sep 12 14:22:10 2016	(r421925)
@@ -1,2 +1,3 @@
-SHA256 (TigerVNC-tigervnc-v1.6.0_GH0.tar.gz) = 98ffe98fcfe883e6c35aec579295b53d73d2ccf62e0f6e53a73ecad993b096ca
-SIZE (TigerVNC-tigervnc-v1.6.0_GH0.tar.gz) = 1291089
+TIMESTAMP = 1473517050
+SHA256 (TigerVNC-tigervnc-v1.7.0_GH0.tar.gz) = 4aa704747b4f8f1d59768b663c488fa937e6783db2a46ae407cd2a599cfbf8b1
+SIZE (TigerVNC-tigervnc-v1.7.0_GH0.tar.gz) = 1405952

Modified: head/net/tigervnc/pkg-plist
==============================================================================
--- head/net/tigervnc/pkg-plist	Mon Sep 12 13:38:18 2016	(r421924)
+++ head/net/tigervnc/pkg-plist	Mon Sep 12 14:22:10 2016	(r421925)
@@ -25,9 +25,11 @@ man/man1/Xvnc.1.gz
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/tigervnc.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/tigervnc.mo
 %%NLS%%share/locale/sk/LC_MESSAGES/tigervnc.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/tigervnc.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/tigervnc.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/tigervnc.mo
 %%NLS%%share/locale/uk/LC_MESSAGES/tigervnc.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/tigervnc.mo
 %%PORTDOCS%%%%DOCSDIR%%/README.txt
 %%PORTDOCS%%%%DOCSDIR%%/LICENCE.TXT
 %%VIEWER%%share/icons/hicolor/16x16/apps/tigervnc.png

From owner-svn-ports-head@freebsd.org  Mon Sep 12 14:52:53 2016
Return-Path: 
Delivered-To: svn-ports-head@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 32E8CBD8C91;
 Mon, 12 Sep 2016 14:52:53 +0000 (UTC)
 (envelope-from marino@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 025B4303;
 Mon, 12 Sep 2016 14:52:52 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CEqqXm057245;
 Mon, 12 Sep 2016 14:52:52 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CEqqGk057244;
 Mon, 12 Sep 2016 14:52:52 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121452.u8CEqqGk057244@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 14:52:52 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421926 - head/dns/ldns
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 14:52:53 -0000

Author: marino
Date: Mon Sep 12 14:52:51 2016
New Revision: 421926
URL: https://svnweb.freebsd.org/changeset/ports/421926

Log:
  dns/ldns: Fix SSL library configuration for slave dns/py-ldns
  
  Approvd by:	SSL blanket

Modified:
  head/dns/ldns/Makefile

Modified: head/dns/ldns/Makefile
==============================================================================
--- head/dns/ldns/Makefile	Mon Sep 12 14:22:10 2016	(r421925)
+++ head/dns/ldns/Makefile	Mon Sep 12 14:52:51 2016	(r421926)
@@ -62,6 +62,7 @@ INSTALL_TARGET=	install-pyldns
 CONFIGURE_ARGS+=--with-pyldns
 LIB_DEPENDS+=	libldns.so:dns/ldns
 BUILD_DEPENDS+=	${LOCALBASE}/bin/swig:devel/swig13
+CFLAGS+=	-I${OPENSSLINC}
 
 post-patch:
 	@${REINPLACE_CMD} \

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:08:20 2016
Return-Path: 
Delivered-To: svn-ports-head@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 B8297BD8092;
 Mon, 12 Sep 2016 15:08:20 +0000 (UTC)
 (envelope-from marino@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 8A9F8CFA;
 Mon, 12 Sep 2016 15:08:20 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CF8JJ9063227;
 Mon, 12 Sep 2016 15:08:19 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CF8JRE063225;
 Mon, 12 Sep 2016 15:08:19 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121508.u8CF8JRE063225@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 15:08:19 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421927 - head/databases/mysql57-server
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:08:20 -0000

Author: marino
Date: Mon Sep 12 15:08:19 2016
New Revision: 421927
URL: https://svnweb.freebsd.org/changeset/ports/421927

Log:
  databass/mysql57-server: Fix configuration of non-base SSL on all platforms
  
  This simplifies the logic involved.  Now the port will present as BROKEN
  if it's built on FreeBSD 9 using the base SSL library.
  
  Approved by:	SSL blanket

Modified:
  head/databases/mysql57-server/Makefile

Modified: head/databases/mysql57-server/Makefile
==============================================================================
--- head/databases/mysql57-server/Makefile	Mon Sep 12 14:52:51 2016	(r421926)
+++ head/databases/mysql57-server/Makefile	Mon Sep 12 15:08:19 2016	(r421927)
@@ -128,27 +128,21 @@ PERFSCHM_SUB_LIST+=	PERFSCHEMRC=""
 PERFSCHM_SUB_LIST_OFF+=	PERFSCHEMRC="--skip-performance-schema"
 .endif
 
-.include 
+.include 
 
 ### Just for the sake of FreeBSD 9.X ###
 .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
-.if !defined(CLIENT_ONLY)
+.  if !defined(CLIENT_ONLY)
 EXTRA_PATCHES+=		${PATCHDIR}/rapid_plugin-patch-_x_mysqlxtest__src_mysqlxtest.cc
-.endif
-WITH_OPENSSL_PORT=	yes
-CMAKE_ARGS+=		-DWITH_SSL=${OPENSSLBASE}
+.  endif
 .endif
 
-.include 
-
-### FreeBSD Version > 9.X ###
-.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000
 .if ${SSL_DEFAULT} == base
+BROKEN_FreeBSD_9=	FreeBSD 9.x requires SSL from ports
 CMAKE_ARGS+=		-DWITH_SSL=system
 .else
 CMAKE_ARGS+=		-DWITH_SSL=${OPENSSLBASE}
 .endif
-.endif
 
 post-extract:
 	@${RM} -rvf ${WRKSRC}/sql/sql_hints.yy.cc ${WRKSRC}/sql/sql_hints.yy.h

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:14:15 2016
Return-Path: 
Delivered-To: svn-ports-head@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 EF576BD8235;
 Mon, 12 Sep 2016 15:14:15 +0000 (UTC)
 (envelope-from marino@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 A58A4C9;
 Mon, 12 Sep 2016 15:14:15 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CFEEvB067659;
 Mon, 12 Sep 2016 15:14:14 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CFEEGh067656;
 Mon, 12 Sep 2016 15:14:14 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121514.u8CFEEGh067656@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 15:14:14 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421928 - in head/security/heimdal: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:14:16 -0000

Author: marino
Date: Mon Sep 12 15:14:14 2016
New Revision: 421928
URL: https://svnweb.freebsd.org/changeset/ports/421928

Log:
  security/heimdal: Fix build when EGD is not available (e.g. LibreSSL)
  
  Approved by:	SSL blanket

Added:
  head/security/heimdal/files/patch-lib_hcrypto_rand-egd.c   (contents, props changed)
  head/security/heimdal/files/patch-lib_krb5_crypto-rand.c   (contents, props changed)
Modified:
  head/security/heimdal/Makefile

Modified: head/security/heimdal/Makefile
==============================================================================
--- head/security/heimdal/Makefile	Mon Sep 12 15:08:19 2016	(r421927)
+++ head/security/heimdal/Makefile	Mon Sep 12 15:14:14 2016	(r421928)
@@ -20,9 +20,8 @@ CONFLICTS=	krb4-[0-9]* krb5-[0-9]* krb5-
 		wu-ftpd-[0-9]* wu-ftpd+ipv6-[0-9]*
 
 USES=		gettext gssapi:bootstrap,heimdal libtool pathfix pkgconfig \
-		readline makeinfo
+		readline makeinfo ssl
 USE_LDCONFIG=	${GSSAPILIBDIR}
-USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
 CONFIGURE_ENV=	ac_cv_header_fnmatch_h=yes \

Added: head/security/heimdal/files/patch-lib_hcrypto_rand-egd.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/heimdal/files/patch-lib_hcrypto_rand-egd.c	Mon Sep 12 15:14:14 2016	(r421928)
@@ -0,0 +1,16 @@
+--- lib/hcrypto/rand-egd.c.orig	2012-12-09 22:06:44 UTC
++++ lib/hcrypto/rand-egd.c
+@@ -54,6 +54,7 @@ static const char *egd_path = "/var/run/
+ 
+ #define MAX_EGD_DATA 255
+ 
++#ifndef OPENSSL_NO_EGD
+ static int
+ connect_egd(const char *path)
+ {
+@@ -258,3 +259,5 @@ RAND_egd_bytes(const char *filename, int
+ 
+     return 1;
+ }
++
++#endif

Added: head/security/heimdal/files/patch-lib_krb5_crypto-rand.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/heimdal/files/patch-lib_krb5_crypto-rand.c	Mon Sep 12 15:14:14 2016	(r421928)
@@ -0,0 +1,13 @@
+--- lib/krb5/crypto-rand.c.orig	2012-12-09 22:06:44 UTC
++++ lib/krb5/crypto-rand.c
+@@ -70,8 +70,10 @@ seed_something(void)
+ 	if (!krb5_init_context(&context)) {
+ 	    p = krb5_config_get_string(context, NULL, "libdefaults",
+ 				       "egd_socket", NULL);
++# ifndef OPENSSL_NO_EGD
+ 	    if (p != NULL)
+ 		RAND_egd_bytes(p, ENTROPY_NEEDED);
++# endif
+ 	    krb5_free_context(context);
+ 	}
+ #else

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:26:48 2016
Return-Path: 
Delivered-To: svn-ports-head@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 74013BD8437;
 Mon, 12 Sep 2016 15:26:48 +0000 (UTC)
 (envelope-from madpilot@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 4F349856;
 Mon, 12 Sep 2016 15:26:48 +0000 (UTC)
 (envelope-from madpilot@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CFQlMP072873;
 Mon, 12 Sep 2016 15:26:47 GMT (envelope-from madpilot@FreeBSD.org)
Received: (from madpilot@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CFQlRr072868;
 Mon, 12 Sep 2016 15:26:47 GMT (envelope-from madpilot@FreeBSD.org)
Message-Id: <201609121526.u8CFQlRr072868@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: madpilot set sender to
 madpilot@FreeBSD.org using -f
From: Guido Falsi 
Date: Mon, 12 Sep 2016 15:26:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421929 - in head/net/pjsip: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:26:48 -0000

Author: madpilot
Date: Mon Sep 12 15:26:46 2016
New Revision: 421929
URL: https://svnweb.freebsd.org/changeset/ports/421929

Log:
  - Add PJSUA option (on by default) to install the pjsua client binary
  - Strip libraries
  - Reflowed OPTIONS_DEFINE
  
  PR:		211533
  Submitted by:	Joseph Mingrone 

Added:
  head/net/pjsip/files/patch-build.mak.in   (contents, props changed)
Modified:
  head/net/pjsip/Makefile
  head/net/pjsip/files/patch-aconfigure
  head/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in
  head/net/pjsip/pkg-plist

Modified: head/net/pjsip/Makefile
==============================================================================
--- head/net/pjsip/Makefile	Mon Sep 12 15:14:14 2016	(r421928)
+++ head/net/pjsip/Makefile	Mon Sep 12 15:26:46 2016	(r421929)
@@ -2,6 +2,7 @@
 
 PORTNAME=	pjsip
 PORTVERSION=	2.5.5
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://www.pjsip.org/release/${PORTVERSION}/
 DISTNAME=	pjproject-${DISTVERSION}
@@ -24,8 +25,9 @@ USE_LDCONFIG=	yes
 PLIST_SUB=	CONFIGURE_TARGET="${CONFIGURE_TARGET}"
 MAKE_JOBS_UNSAFE=	yes
 
-OPTIONS_DEFINE=	DEBUG FFMPEG G711 G722 G7221 GSM ILBC IPV6 L16 OPENH264 RESAMPLE RESAMPLEDLL \
-		SAMPLERATE SDL SHARED SPEEX SPEEXAEC V4L SOUND VIDEO AMR EXTSRTP
+OPTIONS_DEFINE=	DEBUG FFMPEG G711 G722 G7221 GSM ILBC IPV6 L16 \
+		OPENH264 PJSUA RESAMPLE RESAMPLEDLL SAMPLERATE SDL \
+		SHARED SPEEX SPEEXAEC V4L SOUND VIDEO AMR EXTSRTP
 OPTIONS_DEFAULT=G711 G722 G7221 GSM ILBC L16 SHARED SPEEX SPEEXAEC
 
 G711_DESC=	G.711 codec support
@@ -34,6 +36,7 @@ G7221_DESC=	G.722.1 codec support
 ILBC_DESC=	iLBC codec support
 L16_DESC=	Linear/L16 codec support
 OPENH264_DESC=	OpenH264 support
+PJSUA_DESC=	Command line SIP agent
 RESAMPLE_DESC=	Enable resampling implementations
 RESAMPLEDLL_DESC=	Build libresample as shared library
 SHARED_DESC=	Build shared libraries (other ports may depend on this)
@@ -60,6 +63,7 @@ IPV6_CFLAGS_OFF=		-DPJ_HAS_IPV6=1
 L16_CONFIGURE_ENABLE=		l16-codec
 OPENH264_CONFIGURE_ENABLE=	openh264
 OPENH264_LIB_DEPENDS=		libopenh264.so:multimedia/openh264
+PJSUA_LIB_DEPENDS=		libspeexdsp.so:audio/speexdsp
 RESAMPLE_CONFIGURE_ENABLE=	resample
 RESAMPLEDLL_CONFIGURE_ENABLE=	resample-dll
 SAMPLERATE_CONFIGURE_ENABLE=	libsamplerate
@@ -92,4 +96,15 @@ post-patch:
 	@${ECHO} "#include " > ${WRKSRC}/pjlib/include/pj/config_site.h
 	@${ECHO} "#define PJ_IOQUEUE_MAX_HANDLES (FD_SETSIZE)" >> ${WRKSRC}/pjlib/include/pj/config_site.h
 
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
+
+post-install-PJSUA-on:
+	${INSTALL_PROGRAM} \
+	${WRKSRC}/pjsip-apps/bin/pjsua-${ARCH}-portbld-${OPSYS:tl}${OSREL} \
+	${STAGEDIR}${PREFIX}/bin/pjsua
+	${INSTALL_PROGRAM} \
+	${WRKSRC}/pjsip-apps/bin/pjsystest-${ARCH}-portbld-${OPSYS:tl}${OSREL} \
+	${STAGEDIR}${PREFIX}/bin/pjsystest
+
 .include 

Modified: head/net/pjsip/files/patch-aconfigure
==============================================================================
--- head/net/pjsip/files/patch-aconfigure	Mon Sep 12 15:14:14 2016	(r421928)
+++ head/net/pjsip/files/patch-aconfigure	Mon Sep 12 15:26:46 2016	(r421929)
@@ -1,6 +1,6 @@
---- aconfigure.orig	2016-04-12 07:46:12 UTC
+--- aconfigure.orig	2016-07-20 07:03:49 UTC
 +++ aconfigure
-@@ -6179,14 +6179,7 @@ $as_echo "Checking sound device backend.
+@@ -6234,14 +6234,7 @@ $as_echo "Checking sound device backend.
  	;;
    *)
  		ac_pjmedia_snd=alsa
@@ -15,7 +15,7 @@
  
  
  	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Checking sound device backend... unix" >&5
-@@ -6773,7 +6766,7 @@ else
+@@ -6865,7 +6858,7 @@ else
  			FFMPEG_PREFIX=$with_ffmpeg
  			{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Using ffmpeg prefix... $FFMPEG_PREFIX" >&5
  $as_echo "Using ffmpeg prefix... $FFMPEG_PREFIX" >&6; }

Added: head/net/pjsip/files/patch-build.mak.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/pjsip/files/patch-build.mak.in	Mon Sep 12 15:26:46 2016	(r421929)
@@ -0,0 +1,20 @@
+--- build.mak.in.orig	2016-06-28 14:32:08 UTC
++++ build.mak.in
+@@ -106,7 +106,7 @@ APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/t
+ endif
+ endif
+ 
+-ifneq ($(findstring pa,@ac_pjmedia_snd@),)
++#ifneq ($(findstring pa,@ac_pjmedia_snd@),)
+ ifeq (@ac_external_pa@,1)
+ # External PA
+ APP_THIRD_PARTY_EXT += -lportaudio
+@@ -119,7 +119,7 @@ APP_THIRD_PARTY_LIBS += -lportaudio
+ APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libportaudio.$(SHLIB_SUFFIX).$(PJ_VERSION_MAJOR) $(PJ_DIR)/third_party/lib/libportaudio.$(SHLIB_SUFFIX)
+ endif
+ endif
+-endif
++#endif
+ 
+ ifneq (@ac_no_yuv@,1)
+ ifeq (@ac_external_yuv@,1)

Modified: head/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in
==============================================================================
--- head/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in	Mon Sep 12 15:14:14 2016	(r421928)
+++ head/net/pjsip/files/patch-pjmedia_build_os-auto.mak.in	Mon Sep 12 15:26:46 2016	(r421929)
@@ -1,11 +1,53 @@
---- pjmedia/build/os-auto.mak.in.orig	2016-05-13 06:08:17 UTC
+--- pjmedia/build/os-auto.mak.in.orig	2016-06-28 14:32:08 UTC
 +++ pjmedia/build/os-auto.mak.in
-@@ -209,7 +209,7 @@ endif
- # Unix specific
- #
- ifneq ($(findstring alsa,$(AC_PJMEDIA_SND)),)
--export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_ALSA=1 \
-+export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_ALSA=0 \
- 		 -DPJMEDIA_AUDIO_DEV_HAS_PORTAUDIO=0 \
- 		 -DPJMEDIA_AUDIO_DEV_HAS_WMME=0
+@@ -203,50 +203,7 @@ export CFLAGS += -I$(THIRD_PARTY)/yuv/in
+ endif
  endif
+ 
+-
+-#
+-# MacOSX specific
+-#
+-ifneq ($(findstring coreaudio,$(AC_PJMEDIA_SND)),)
+-export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_COREAUDIO=1 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_PORTAUDIO=0 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_WMME=0
+-endif
+-
+-#
+-# Unix specific
+-#
+-ifneq ($(findstring alsa,$(AC_PJMEDIA_SND)),)
+-export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_ALSA=1 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_PORTAUDIO=0 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_WMME=0
+-endif
+-
+-#
+-# Windows specific
+-#
+-ifneq ($(findstring win32,$(AC_PJMEDIA_SND)),)
+-export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_WMME=1 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_PORTAUDIO=0
+-else
+ export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_WMME=0
+-endif
+-
+-#
+-# Null sound device
+-#
+-ifeq ($(AC_PJMEDIA_SND),null)
+-export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_PORTAUDIO=0 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_WMME=0
+-endif
+-
+-#
+-# External sound device
+-#
+-ifeq ($(AC_PJMEDIA_SND),external)
+-export CFLAGS += -DPJMEDIA_AUDIO_DEV_HAS_PORTAUDIO=0 \
+-		 -DPJMEDIA_AUDIO_DEV_HAS_WMME=0
+-endif
+ 
+ #
+ # QT video device

Modified: head/net/pjsip/pkg-plist
==============================================================================
--- head/net/pjsip/pkg-plist	Mon Sep 12 15:14:14 2016	(r421928)
+++ head/net/pjsip/pkg-plist	Mon Sep 12 15:26:46 2016	(r421929)
@@ -352,3 +352,5 @@ lib/libpjsua2-%%CONFIGURE_TARGET%%.a
 %%NO_EXTSRTP%%%%SHARED%%lib/libsrtp.so
 %%NO_EXTSRTP%%%%SHARED%%lib/libsrtp.so.2
 libdata/pkgconfig/libpjproject.pc
+%%PJSUA%%bin/pjsua
+%%PJSUA%%bin/pjsystest

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:34:23 2016
Return-Path: 
Delivered-To: svn-ports-head@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 78847BD85D3;
 Mon, 12 Sep 2016 15:34:23 +0000 (UTC)
 (envelope-from marino@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 485AEC6D;
 Mon, 12 Sep 2016 15:34:23 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CFYMoD076529;
 Mon, 12 Sep 2016 15:34:22 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CFYM08076528;
 Mon, 12 Sep 2016 15:34:22 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121534.u8CFYM08076528@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 15:34:22 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421930 - head/net/asterisk/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:34:23 -0000

Author: marino
Date: Mon Sep 12 15:34:22 2016
New Revision: 421930
URL: https://svnweb.freebsd.org/changeset/ports/421930

Log:
  net/asterisk: Fix build when SSLv3 method is N/A (LibreSSL)
  
  Approved by:	SSL blanket
  
  P.S. Why is this port still in the tree?  It expired in April 2016.

Added:
  head/net/asterisk/files/patch-main_tcptls.c   (contents, props changed)

Added: head/net/asterisk/files/patch-main_tcptls.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/asterisk/files/patch-main_tcptls.c	Mon Sep 12 15:34:22 2016	(r421930)
@@ -0,0 +1,17 @@
+--- main/tcptls.c.orig	2015-04-08 18:53:07.000000000 +0200
++++ main/tcptls.c	2015-09-23 21:30:28.092457300 +0200
+@@ -768,10 +768,13 @@ static int __ssl_setup(struct ast_tls_co
+ 			cfg->ssl_ctx = SSL_CTX_new(SSLv2_client_method());
+ 		} else
+ #endif
++#ifndef OPENSSL_NO_SSL3
+ 		if (ast_test_flag(&cfg->flags, AST_SSL_SSLV3_CLIENT)) {
+ 			ast_log(LOG_WARNING, "Usage of SSLv3 is discouraged due to known vulnerabilities. Please use 'tlsv1' or leave the TLS method unspecified!\n");
+ 			cfg->ssl_ctx = SSL_CTX_new(SSLv3_client_method());
+-		} else if (ast_test_flag(&cfg->flags, AST_SSL_TLSV1_CLIENT)) {
++		} else 
++#endif
++		if (ast_test_flag(&cfg->flags, AST_SSL_TLSV1_CLIENT)) {
+ 			cfg->ssl_ctx = SSL_CTX_new(TLSv1_client_method());
+ 		} else {
+ 			disable_ssl = 1;

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:38:43 2016
Return-Path: 
Delivered-To: svn-ports-head@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 8CC43BD8631;
 Mon, 12 Sep 2016 15:38:43 +0000 (UTC)
 (envelope-from marino@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 46353DC6;
 Mon, 12 Sep 2016 15:38:43 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CFcgRD076866;
 Mon, 12 Sep 2016 15:38:42 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CFcgfD076864;
 Mon, 12 Sep 2016 15:38:42 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121538.u8CFcgfD076864@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 15:38:42 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421931 - head/security/openconnect/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:38:43 -0000

Author: marino
Date: Mon Sep 12 15:38:42 2016
New Revision: 421931
URL: https://svnweb.freebsd.org/changeset/ports/421931

Log:
  security/openconnect; Fix build with LibreSSL
  
  Approved by:	SSL blanket

Added:
  head/security/openconnect/files/
  head/security/openconnect/files/patch-openssl-esp.c   (contents, props changed)
  head/security/openconnect/files/patch-openssl.c   (contents, props changed)

Added: head/security/openconnect/files/patch-openssl-esp.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/openconnect/files/patch-openssl-esp.c	Mon Sep 12 15:38:42 2016	(r421931)
@@ -0,0 +1,20 @@
+--- openssl-esp.c.orig	2016-07-08 15:35:18 UTC
++++ openssl-esp.c
+@@ -27,7 +27,7 @@
+ #include 
+ #include 
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
+ 
+ #define EVP_CIPHER_CTX_free(c) do {				\
+ 				    EVP_CIPHER_CTX_cleanup(c);	\
+@@ -85,7 +85,7 @@ static int init_esp_ciphers(struct openc
+ 	}
+ 	EVP_CIPHER_CTX_set_padding(esp->cipher, 0);
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
+ 	esp->hmac = malloc(sizeof(*esp->hmac));
+ 	esp->pkt_hmac = malloc(sizeof(*esp->pkt_hmac));
+ 	if (!esp->hmac || &esp->pkt_hmac) {

Added: head/security/openconnect/files/patch-openssl.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/openconnect/files/patch-openssl.c	Mon Sep 12 15:38:42 2016	(r421931)
@@ -0,0 +1,25 @@
+--- openssl.c.orig	2016-07-09 14:43:41 UTC
++++ openssl.c
+@@ -36,11 +36,11 @@
+ #include 
+ #include 
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
+ #define X509_up_ref(x) 	CRYPTO_add(&(x)->references, 1, CRYPTO_LOCK_X509)
+ #endif
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x10100000L
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
+ #define EVP_MD_CTX_new EVP_MD_CTX_create
+ #define EVP_MD_CTX_free EVP_MD_CTX_destroy
+ #define X509_STORE_CTX_get0_chain(ctx) ((ctx)->chain)
+@@ -991,7 +991,7 @@ static int set_peer_cert_hash(struct ope
+ 	return 0;
+ }
+ 
+-#if OPENSSL_VERSION_NUMBER < 0x10002000L
++#if OPENSSL_VERSION_NUMBER < 0x10002000L || defined (LIBRESSL_VERSION_NUMBER)
+ static int match_hostname_elem(const char *hostname, int helem_len,
+ 			       const char *match, int melem_len)
+ {

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:43:25 2016
Return-Path: 
Delivered-To: svn-ports-head@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 7AE72BD8763;
 Mon, 12 Sep 2016 15:43:25 +0000 (UTC)
 (envelope-from marino@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 476F31A3;
 Mon, 12 Sep 2016 15:43:25 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CFhOPI080471;
 Mon, 12 Sep 2016 15:43:24 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CFhOnZ080470;
 Mon, 12 Sep 2016 15:43:24 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121543.u8CFhOnZ080470@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 15:43:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421932 - head/net/socketw
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:43:25 -0000

Author: marino
Date: Mon Sep 12 15:43:24 2016
New Revision: 421932
URL: https://svnweb.freebsd.org/changeset/ports/421932

Log:
  net/socketw: Document SSL build requirement, add cflags for SSL
  
  Approved by:	SSL blanket

Modified:
  head/net/socketw/Makefile

Modified: head/net/socketw/Makefile
==============================================================================
--- head/net/socketw/Makefile	Mon Sep 12 15:38:42 2016	(r421931)
+++ head/net/socketw/Makefile	Mon Sep 12 15:43:24 2016	(r421932)
@@ -14,6 +14,7 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	RigsOfRods
 GH_TAGNAME=	6a05e12
 
-USES=		cmake
+USES=		cmake ssl:build
+CFLAGS+=	-I${OPENSSLINC}
 
 .include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 15:49:14 2016
Return-Path: 
Delivered-To: svn-ports-head@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 783EEBD881F;
 Mon, 12 Sep 2016 15:49:14 +0000 (UTC)
 (envelope-from madpilot@FreeBSD.org)
Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 3CA993DE;
 Mon, 12 Sep 2016 15:49:13 +0000 (UTC)
 (envelope-from madpilot@FreeBSD.org)
Received: from mail (mail [192.168.254.3])
 by mail.madpilot.net (Postfix) with ESMTP id 3sXsg541JRzZrh;
 Mon, 12 Sep 2016 17:49:05 +0200 (CEST)
Received: from mail.madpilot.net ([192.168.254.3])
 by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024)
 with ESMTP id dYZEjrNi-D7q; Mon, 12 Sep 2016 17:49:03 +0200 (CEST)
Received: from marvin.madpilot.net (micro.madpilot.net [88.149.173.206])
 by mail.madpilot.net (Postfix) with ESMTPSA;
 Mon, 12 Sep 2016 17:49:03 +0200 (CEST)
Subject: Re: svn commit: r421930 - head/net/asterisk/files
To: John Marino , ports-committers@freebsd.org,
 svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
References: <201609121534.u8CFYM08076528@repo.freebsd.org>
From: Guido Falsi 
Message-ID: <824c74d3-1b63-1834-452a-959d95084785@FreeBSD.org>
Date: Mon, 12 Sep 2016 17:49:03 +0200
User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101
 Thunderbird/45.3.0
MIME-Version: 1.0
In-Reply-To: <201609121534.u8CFYM08076528@repo.freebsd.org>
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 15:49:14 -0000

On 09/12/16 17:34, John Marino wrote:
> Author: marino
> Date: Mon Sep 12 15:34:22 2016
> New Revision: 421930
> URL: https://svnweb.freebsd.org/changeset/ports/421930
> 
> Log:
>   net/asterisk: Fix build when SSLv3 method is N/A (LibreSSL)
>   
>   Approved by:	SSL blanket
>   
>   P.S. Why is this port still in the tree?  It expired in April 2016.
> 

It has a few dependencies still relying on it.

I have removed a few in the last few days, going to fix the last
problematic one in a few days.

Should have done all this long ago, but life got in the way.

I promise it will be gone by the end of the month!

-- 
Guido Falsi 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 16:02:20 2016
Return-Path: 
Delivered-To: svn-ports-head@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 A256BBD8D67;
 Mon, 12 Sep 2016 16:02:20 +0000 (UTC)
 (envelope-from marino@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 755F7155;
 Mon, 12 Sep 2016 16:02:20 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CG2Juw088302;
 Mon, 12 Sep 2016 16:02:19 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CG2JL8088301;
 Mon, 12 Sep 2016 16:02:19 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121602.u8CG2JL8088301@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 16:02:19 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421933 - head/misc/xyzcmd
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 16:02:20 -0000

Author: marino
Date: Mon Sep 12 16:02:19 2016
New Revision: 421933
URL: https://svnweb.freebsd.org/changeset/ports/421933

Log:
  misc/xyzcmd: mark BROKEN (unfetchable)
  
  The development moved to github and the tarball isn't hosted on
  Google Code anymore.

Modified:
  head/misc/xyzcmd/Makefile

Modified: head/misc/xyzcmd/Makefile
==============================================================================
--- head/misc/xyzcmd/Makefile	Mon Sep 12 15:43:24 2016	(r421932)
+++ head/misc/xyzcmd/Makefile	Mon Sep 12 16:02:19 2016	(r421933)
@@ -11,6 +11,8 @@ COMMENT=	Pure console visual file manage
 
 LICENSE=	LGPL3
 
+BROKEN=		unfetchable (project moved to github)
+
 BUILD_DEPENDS=	${PYTHON_SITELIBDIR}/urwid/raw_display.py:devel/py-urwid
 RUN_DEPENDS=	${PYTHON_SITELIBDIR}/urwid/raw_display.py:devel/py-urwid
 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 16:10:43 2016
Return-Path: 
Delivered-To: svn-ports-head@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 04B7BBD72E8;
 Mon, 12 Sep 2016 16:10:43 +0000 (UTC)
 (envelope-from marino@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 BEC777EC;
 Mon, 12 Sep 2016 16:10:42 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CGAgQL088858;
 Mon, 12 Sep 2016 16:10:42 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CGAfXu088855;
 Mon, 12 Sep 2016 16:10:41 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121610.u8CGAfXu088855@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 16:10:41 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421934 - in head/net/ssltunnel-client: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 16:10:43 -0000

Author: marino
Date: Mon Sep 12 16:10:41 2016
New Revision: 421934
URL: https://svnweb.freebsd.org/changeset/ports/421934

Log:
  net/ssltunnel-client: Configure SSL base, handle deprecated DES (LIbreSSL)
  
  Approved by:	SSL blanket

Added:
  head/net/ssltunnel-client/files/
  head/net/ssltunnel-client/files/patch-client_ntlmauth.c   (contents, props changed)
Modified:
  head/net/ssltunnel-client/Makefile

Modified: head/net/ssltunnel-client/Makefile
==============================================================================
--- head/net/ssltunnel-client/Makefile	Mon Sep 12 16:02:19 2016	(r421933)
+++ head/net/ssltunnel-client/Makefile	Mon Sep 12 16:10:41 2016	(r421934)
@@ -16,10 +16,11 @@ LICENSE=	BSD3CLAUSE
 OPTIONS_DEFINE=	GUI DOCS
 GUI_DESC=	GTK 1.2 graphical interface
 
-CONFIGURE_ARGS=	--disable-server --with-iconv=${ICONV_PREFIX}
+CONFIGURE_ARGS=	--disable-server \
+		--with-iconv=${ICONV_PREFIX} \
+		--with-openssl=${OPENSSLBASE}
 GNU_CONFIGURE=	yes
-USES=		iconv
-USE_OPENSSL=	yes
+USES=		iconv ssl
 
 .include 
 

Added: head/net/ssltunnel-client/files/patch-client_ntlmauth.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/ssltunnel-client/files/patch-client_ntlmauth.c	Mon Sep 12 16:10:41 2016	(r421934)
@@ -0,0 +1,43 @@
+--- client/ntlmauth.c.orig	2009-02-05 15:32:12 UTC
++++ client/ntlmauth.c
+@@ -56,7 +56,7 @@ extern int write_timeout(int s,  char *b
+ extern int read_timeout(int s, char *buffer, int size, int tmo);
+ extern void do_log( int prio, char *format , ...);
+ 
+-static void setup_des_key(unsigned char *key56, des_key_schedule *ks);
++static void setup_des_key(unsigned char *key56, DES_key_schedule *ks);
+ static void calc_resp(unsigned char *keys, unsigned char *plaintext, unsigned char *results);
+ static char *do_ntlm_auth_1(char *username, char *password);
+ static char *do_ntlm_auth_2(iconv_t myiconv, char *username, char *password, char *challenge);
+@@ -156,8 +156,8 @@ static char *do_ntlm_auth_2(iconv_t myic
+   unsigned char  *nt_pw = NULL,*lm_resp,*nt_resp;
+   const unsigned char magic[] = "KGS!@#$%";
+   unsigned char lm_hpw[50];
+-  des_key_schedule ks1;
+-  des_key_schedule ks2;
++  DES_key_schedule ks1;
++  DES_key_schedule ks2;
+   unsigned char nt_hpw[50];
+   MD4_CTX context;
+   unsigned short server_flags;
+@@ -558,9 +558,9 @@ catch:
+  * turns a 56 bit key into the 64 bit, odd parity key and sets the key.
+  * The key schedule ks is also set.
+  */
+-static void setup_des_key(unsigned char key_56[], des_key_schedule *ks)
++static void setup_des_key(unsigned char key_56[], DES_key_schedule *ks)
+ {
+-    des_cblock key;
++    DES_cblock key;
+ 
+     key[0] = key_56[0];
+     key[1] = ((key_56[0] << 7) & 0xFF) | (key_56[1] >> 1);
+@@ -582,7 +582,7 @@ static void setup_des_key(unsigned char 
+  */
+ static void calc_resp(unsigned char *keys, unsigned char *plaintext, unsigned char *results)
+ {
+-    des_key_schedule ks;
++    DES_key_schedule ks;
+ 
+     setup_des_key(keys, &ks);
+     DES_ecb_encrypt((const_DES_cblock *) plaintext, (const_DES_cblock *) results, &ks, DES_ENCRYPT);

From owner-svn-ports-head@freebsd.org  Mon Sep 12 16:24:18 2016
Return-Path: 
Delivered-To: svn-ports-head@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 2646DBD79C2;
 Mon, 12 Sep 2016 16:24:18 +0000 (UTC)
 (envelope-from marino@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 EA9E978A;
 Mon, 12 Sep 2016 16:24:17 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CGOHM4096483;
 Mon, 12 Sep 2016 16:24:17 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CGOHf4096482;
 Mon, 12 Sep 2016 16:24:17 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121624.u8CGOHf4096482@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 16:24:17 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421935 - head/devel/noweb
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 16:24:18 -0000

Author: marino
Date: Mon Sep 12 16:24:16 2016
New Revision: 421935
URL: https://svnweb.freebsd.org/changeset/ports/421935

Log:
  devel/noweb: mark BROKEN (unfetchable) due to host FTP server settings
  
  The file is accessible via http browser, but "make fetch" just times out
  on both FreeBSD and DragonFly.  The easiest fix would be to host the
  file in LOCAL/ or elsewhere.
  
  Given lack of maintainer and lack of development since 2007, let's see
  if anyone cares enough to host the source file and fix the port.

Modified:
  head/devel/noweb/Makefile

Modified: head/devel/noweb/Makefile
==============================================================================
--- head/devel/noweb/Makefile	Mon Sep 12 16:10:41 2016	(r421934)
+++ head/devel/noweb/Makefile	Mon Sep 12 16:24:16 2016	(r421935)
@@ -10,6 +10,11 @@ MASTER_SITES=	ftp://www.eecs.harvard.edu
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Simple, extensible literate-programming tool
 
+# The file is accessible via browser, but it times out on "make fetch"
+# This happens on both FreeBSD and DragonFly.  Interested users should
+# host the file and change the MASTER_SITES accordingly
+BROKEN=		unfetchable due to settings at host FTP server
+
 LICENSE=	noweb
 LICENSE_NAME=	noweb
 LICENSE_FILE=	${WRKSRC}/COPYRIGHT

From owner-svn-ports-head@freebsd.org  Mon Sep 12 16:46:17 2016
Return-Path: 
Delivered-To: svn-ports-head@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 0C79BBD81B4;
 Mon, 12 Sep 2016 16:46:17 +0000 (UTC)
 (envelope-from marino@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 D37EFB28;
 Mon, 12 Sep 2016 16:46:16 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CGkGEa004704;
 Mon, 12 Sep 2016 16:46:16 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CGkGjc004703;
 Mon, 12 Sep 2016 16:46:16 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121646.u8CGkGjc004703@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 16:46:16 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421936 - head/devel/hadoop
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 16:46:17 -0000

Author: marino
Date: Mon Sep 12 16:46:15 2016
New Revision: 421936
URL: https://svnweb.freebsd.org/changeset/ports/421936

Log:
  devel/hadoop: Document SSL build dependency and configure it
  
  Approved by:	SSL blanket

Modified:
  head/devel/hadoop/Makefile

Modified: head/devel/hadoop/Makefile
==============================================================================
--- head/devel/hadoop/Makefile	Mon Sep 12 16:24:16 2016	(r421935)
+++ head/devel/hadoop/Makefile	Mon Sep 12 16:46:15 2016	(r421936)
@@ -21,13 +21,15 @@ RUN_DEPENDS=	bash:shells/bash
 
 CONFLICTS_INSTALL=	hadoop2-2*
 
-USES=		cpe libtool
+USES=		cpe libtool ssl:build
 CPE_VENDOR=	apache
 USE_JAVA=	yes
 JAVA_VERSION=	1.7+
 USE_ANT=	yes
 ONLY_FOR_ARCHS=	amd64 i386
 USE_LDCONFIG=	yes
+CFLAGS+=	-I${OPENSSLINC}
+LDFLAGS+=	-L${OPENSSLLIB}
 
 OPTIONS_DEFINE=	DOCS
 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 16:50:01 2016
Return-Path: 
Delivered-To: svn-ports-head@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 2C13BBD8268;
 Mon, 12 Sep 2016 16:50:01 +0000 (UTC)
 (envelope-from marino@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 E76ABDE9;
 Mon, 12 Sep 2016 16:50:00 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CGo0Od005016;
 Mon, 12 Sep 2016 16:50:00 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CGo0N4005015;
 Mon, 12 Sep 2016 16:50:00 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121650.u8CGo0N4005015@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 16:50:00 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421937 - head/net/vtun
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 16:50:01 -0000

Author: marino
Date: Mon Sep 12 16:49:59 2016
New Revision: 421937
URL: https://svnweb.freebsd.org/changeset/ports/421937

Log:
  net/vtun: Fix SSL configuration for non-base SSL libraries
  
  While here, couple OSVERSION with OPSYS for extra patches.
  
  Approved by:	SSL blanket

Modified:
  head/net/vtun/Makefile

Modified: head/net/vtun/Makefile
==============================================================================
--- head/net/vtun/Makefile	Mon Sep 12 16:46:15 2016	(r421936)
+++ head/net/vtun/Makefile	Mon Sep 12 16:49:59 2016	(r421937)
@@ -16,8 +16,8 @@ CFLAGS+=	-ansi -Wno-pointer-sign -I${LOC
 USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--localstatedir=/var \
-		--with-ssl-headers=${OPENSSLBASE}/include/openssl \
-		--with-ssl-lib=${OPENSSLBASE}/lib \
+		--with-ssl-headers=${OPENSSLINC} \
+		--with-ssl-lib=${OPENSSLLIB} \
 		--with-lzo-headers=${LOCALBASE}/include/lzo \
 		--with-lzo-lib=${LOCALBASE}/lib
 CONFIGURE_ENV=	YACC=${YACC}
@@ -32,7 +32,7 @@ OPTIONS_DEFINE=	DOCS
 
 .include 
 
-.if ${CC} == "clang" || ${CXX} == "clang++" || ${OSVERSION} >= 1000026
+.if ${CC} == "clang" || ${CXX} == "clang++" || (${OPSYS} == FreeBSD && ${OSVERSION} >= 1000026)
 EXTRA_PATCHES+= ${FILESDIR}/extra-cfg_file.y
 .endif
 
@@ -41,6 +41,12 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-cfg_fi
 EXTRA_PATCHES+=	${FILESDIR}/extra-tun_dev.c
 .endif
 
+post-patch:
+	${REINPLACE_CMD} \
+		-e 's|$$\(SSL_HDR_DIR\)|$$\1 $$\1/openssl|g' \
+		-e 's|$$\(BLOWFISH_HDR_DIR\)|$$\1 $$SSL_HDR_DIR/openssl|g' \
+		${WRKSRC}/configure
+
 post-install:
 	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/vtund
 	@${INSTALL_DATA} ${WRKSRC}/vtund.conf ${STAGEDIR}${PREFIX}/etc/vtund.conf.sample

From owner-svn-ports-head@freebsd.org  Mon Sep 12 16:58:06 2016
Return-Path: 
Delivered-To: svn-ports-head@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 32602BD84D3;
 Mon, 12 Sep 2016 16:58:06 +0000 (UTC)
 (envelope-from marino@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 0545D668;
 Mon, 12 Sep 2016 16:58:05 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CGw5Lp009265;
 Mon, 12 Sep 2016 16:58:05 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CGw55o009264;
 Mon, 12 Sep 2016 16:58:05 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121658.u8CGw55o009264@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 16:58:05 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421938 - head/net/pecl-apn
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 16:58:06 -0000

Author: marino
Date: Mon Sep 12 16:58:05 2016
New Revision: 421938
URL: https://svnweb.freebsd.org/changeset/ports/421938

Log:
  net/pecl-apn: Document SSL build and run requirement, set SSL flags
  
  The jansson library needs SSL available.
  
  Approved by:	SSL blanket

Modified:
  head/net/pecl-apn/Makefile

Modified: head/net/pecl-apn/Makefile
==============================================================================
--- head/net/pecl-apn/Makefile	Mon Sep 12 16:49:59 2016	(r421937)
+++ head/net/pecl-apn/Makefile	Mon Sep 12 16:58:05 2016	(r421938)
@@ -7,7 +7,6 @@ PORTREVISION=	2
 CATEGORIES=	net pear
 MASTER_SITES=	http://pecl.php.net/get/
 PKGNAMEPREFIX=	pecl-
-EXTRACT_SUFX=	.tgz
 DIST_SUBDIR=	PECL
 
 MAINTAINER=	gasol.wu@gmail.com
@@ -17,8 +16,9 @@ LICENSE=	PHP301
 
 LIB_DEPENDS=	libcapn.so:net/libcapn
 
-USES=		php:ext
+USES=		php:ext ssl:build,run tar:tgz
 CONFIGURE_ARGS=	--with-apn=${LOCALBASE}
+CFLAGS+=	-I${OPENSSLINC}
 IGNORE_WITH_PHP=	70
 
 .include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 17:03:04 2016
Return-Path: 
Delivered-To: svn-ports-head@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 9651CBD8794;
 Mon, 12 Sep 2016 17:03:04 +0000 (UTC)
 (envelope-from marino@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 66632BCC;
 Mon, 12 Sep 2016 17:03:04 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CH33hv012969;
 Mon, 12 Sep 2016 17:03:03 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CH33hu012968;
 Mon, 12 Sep 2016 17:03:03 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121703.u8CH33hu012968@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 17:03:03 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421939 - head/net/mad_fcl
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 17:03:04 -0000

Author: marino
Date: Mon Sep 12 17:03:03 2016
New Revision: 421939
URL: https://svnweb.freebsd.org/changeset/ports/421939

Log:
  net/mad_fcl: fix SSL configuration for non-base SSL

Modified:
  head/net/mad_fcl/Makefile

Modified: head/net/mad_fcl/Makefile
==============================================================================
--- head/net/mad_fcl/Makefile	Mon Sep 12 16:58:05 2016	(r421938)
+++ head/net/mad_fcl/Makefile	Mon Sep 12 17:03:03 2016	(r421939)
@@ -13,8 +13,7 @@ COMMENT=	FLUTE - File Delivery over Unid
 LIB_DEPENDS=	libexpat.so:textproc/expat2 \
 		libcurl.so:ftp/curl
 
-USES=		dos2unix gmake
-USE_OPENSSL=	yes
+USES=		dos2unix gmake ssl
 MAKE_ENV=	LFLAGS="${LDFLAGS}"
 MAKE_JOBS_UNSAFE= yes
 
@@ -33,7 +32,6 @@ post-patch:
 		${REINPLACE_CMD} -e '/CC/s| =| ?=|; \
 		 s|-O3 -g||; s|-D_ISOC99_SOURCE||; \
 		 s|-D_XOPEN_SOURCE=500||; \
-		 s|/usr/local/ssl|${OPENSSLBASE}|; \
 		 s|-I/usr/local/include/boost-1_33_1||; \
 		 s|-L/usr/local/lib||; s|-lpthread|-lcompat|'
 	@${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} -e \
@@ -42,6 +40,11 @@ post-patch:
 		 s|open64|open|; s|stat64|stat|'
 	@${REINPLACE_CMD} -e \
 		'//d' ${WRKSRC}/flutelib/http_file_repair.h
+	@${REINPLACE_CMD} -e "s|/usr/local/ssl|${OPENSSLBASE}|" \
+		${WRKSRC}/flute/Makefile \
+		${WRKSRC}/multis_flute/Makefile \
+		${WRKSRC}/repair_sender/Makefile \
+		${WRKSRC}/UnitTest/Makefile
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/bin/flute \

From owner-svn-ports-head@freebsd.org  Mon Sep 12 17:13:15 2016
Return-Path: 
Delivered-To: svn-ports-head@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 E6837BD8BA4;
 Mon, 12 Sep 2016 17:13:15 +0000 (UTC)
 (envelope-from tcberner@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 B09A8771;
 Mon, 12 Sep 2016 17:13:15 +0000 (UTC)
 (envelope-from tcberner@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CHDEBB017027;
 Mon, 12 Sep 2016 17:13:14 GMT (envelope-from tcberner@FreeBSD.org)
Received: (from tcberner@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CHDE2a017026;
 Mon, 12 Sep 2016 17:13:14 GMT (envelope-from tcberner@FreeBSD.org)
Message-Id: <201609121713.u8CHDE2a017026@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: tcberner set sender to
 tcberner@FreeBSD.org using -f
From: "Tobias C. Berner" 
Date: Mon, 12 Sep 2016 17:13:14 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421940 - head/devel/libkolab
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 17:13:16 -0000

Author: tcberner
Date: Mon Sep 12 17:13:14 2016
New Revision: 421940
URL: https://svnweb.freebsd.org/changeset/ports/421940

Log:
  Fix devel/libkolab, to properly export symbols in the library.
  
  The update to libkolab in r421840 unfortunately broke desktuils/libkolab on the
  current version of FreeBSD.
  
  The issue is addressed in two upstream commits
          * 62ebad910fa7d1843373056dd795fc5c36b20bb2
                          ==> Workaround for qt not defining Q_DECL_IMPORT
          * d0a2fda6059abda610afe6a8d29b8f5a1c6ae4ae
                          ==> Fix multiple-definition-warning due to redefining Q_DECL_IMPORT.
  
  Instead of applying said two patches and enabling them on Q_OS_FREEBSD, rakcuo@
  suggested to instead just define MAKE_KOLAB_LIB while the proper fix isn't
  upstreamed.
  
  Reported by:	Steve Wills  via jenkins
  Approved by:	rakcuo (mentor)

Modified:
  head/devel/libkolab/Makefile

Modified: head/devel/libkolab/Makefile
==============================================================================
--- head/devel/libkolab/Makefile	Mon Sep 12 17:03:03 2016	(r421939)
+++ head/devel/libkolab/Makefile	Mon Sep 12 17:13:14 2016	(r421940)
@@ -2,6 +2,7 @@
 
 PORTNAME=	libkolab
 PORTVERSION=	0.6.3
+PORTREVISION=	1
 CATEGORIES=	devel kde
 MASTER_SITES=	http://mirror.kolabsys.com/pub/releases/
 
@@ -27,6 +28,8 @@ USE_KDE=	automoc4 kdelibs pimlibs
 USE_LDCONFIG=	yes
 USE_QT4=	corelib dbus gui network svg xml \
 		moc_build qmake_build rcc_build uic_build
+# Fix build of desktuils/kdepim4-runtime:
+CXXFLAGS+=	-DMAKE_KOLAB_LIB
 
 PLIST_SUB=	SHLIB_VER=${PORTVERSION}
 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 17:26:27 2016
Return-Path: 
Delivered-To: svn-ports-head@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 6A4FFBD808A;
 Mon, 12 Sep 2016 17:26:27 +0000 (UTC)
 (envelope-from marino@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 3D236CB;
 Mon, 12 Sep 2016 17:26:27 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CHQQDH021589;
 Mon, 12 Sep 2016 17:26:26 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CHQQaP021588;
 Mon, 12 Sep 2016 17:26:26 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121726.u8CHQQaP021588@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 17:26:26 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421941 - head/net-p2p/litecoin
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 17:26:27 -0000

Author: marino
Date: Mon Sep 12 17:26:26 2016
New Revision: 421941
URL: https://svnweb.freebsd.org/changeset/ports/421941

Log:
  net-p2p/litecoin: Set SSL flags
  
  Note for SSL_DEFAULT=libressl:
  configure: error: Detected LibreSSL:
    This is not supported, and may break consensus compatibility
  
  It might be worth detecting that via SSL_DEFAULT and setting the
  port to IGNORE.  Or perhaps a newer version of litecoin will support
  LibreSSL officially.
  
  Approved by:	SSL blanket

Modified:
  head/net-p2p/litecoin/Makefile

Modified: head/net-p2p/litecoin/Makefile
==============================================================================
--- head/net-p2p/litecoin/Makefile	Mon Sep 12 17:13:14 2016	(r421940)
+++ head/net-p2p/litecoin/Makefile	Mon Sep 12 17:26:26 2016	(r421941)
@@ -85,6 +85,10 @@ CONFIGURE_ENV=	CRYPTO_CFLAGS="-I${OPENSS
 
 CONFIGURE_ENV+= OBJC="${CC}" OBJCFLAGS="${CFLAGS}" OBJCXX="${CXX}" OBJCXXFLAGS="${CXXFLAGS}"
 
+CPPFLAGS+=	-I${OPENSSLINC}
+CFLAGS+=	-I${OPENSSLINC}
+LDFLAGS+=	-L${OPENSSLLIB}
+
 PLIST_FILES?=	bin/litecoin-qt share/applications/litecoin-qt.desktop \
 		share/pixmaps/litecoin128.png
 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 17:49:00 2016
Return-Path: 
Delivered-To: svn-ports-head@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 EED2FBD84CC;
 Mon, 12 Sep 2016 17:49:00 +0000 (UTC)
 (envelope-from marino@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 BEDCBE27;
 Mon, 12 Sep 2016 17:49:00 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CHmx3d029546;
 Mon, 12 Sep 2016 17:48:59 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CHmxT7029545;
 Mon, 12 Sep 2016 17:48:59 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121748.u8CHmxT7029545@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 17:48:59 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421942 - head/security/starttls
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 17:49:01 -0000

Author: marino
Date: Mon Sep 12 17:48:59 2016
New Revision: 421942
URL: https://svnweb.freebsd.org/changeset/ports/421942

Log:
  security/starttls: Add support for any SSL base
  
  Approved by:	SSL blanket

Modified:
  head/security/starttls/Makefile

Modified: head/security/starttls/Makefile
==============================================================================
--- head/security/starttls/Makefile	Mon Sep 12 17:26:26 2016	(r421941)
+++ head/security/starttls/Makefile	Mon Sep 12 17:48:59 2016	(r421942)
@@ -10,8 +10,8 @@ MAINTAINER=	kuriyama@FreeBSD.org
 COMMENT=	Simple wrapper program for STARTTLS on ${EMACS_PORT_NAME}
 
 GNU_CONFIGURE=	yes
-USES=		gmake
+USES=		gmake ssl
 USE_EMACS=	yes
-USE_OPENSSL=	yes
+CONFIGURE_ARGS=	--with-openssl=${OPENSSLBASE}
 
 .include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 17:51:21 2016
Return-Path: 
Delivered-To: svn-ports-head@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 0684BBD8632;
 Mon, 12 Sep 2016 17:51:21 +0000 (UTC)
 (envelope-from tcberner@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 C7F68A3;
 Mon, 12 Sep 2016 17:51:20 +0000 (UTC)
 (envelope-from tcberner@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CHpJXB030462;
 Mon, 12 Sep 2016 17:51:19 GMT (envelope-from tcberner@FreeBSD.org)
Received: (from tcberner@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CHpJ5o030460;
 Mon, 12 Sep 2016 17:51:19 GMT (envelope-from tcberner@FreeBSD.org)
Message-Id: <201609121751.u8CHpJ5o030460@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: tcberner set sender to
 tcberner@FreeBSD.org using -f
From: "Tobias C. Berner" 
Date: Mon, 12 Sep 2016 17:51:19 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421943 - in head/devel: grantlee grantlee5
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 17:51:21 -0000

Author: tcberner
Date: Mon Sep 12 17:51:19 2016
New Revision: 421943
URL: https://svnweb.freebsd.org/changeset/ports/421943

Log:
  Define PORTSCOUT in devel/grantlee[5].
  
  devel/grantlee -> 0.*
  devel/grantlee5 -> 5.*
  
  Approved by:	mat (mentor)

Modified:
  head/devel/grantlee/Makefile
  head/devel/grantlee5/Makefile

Modified: head/devel/grantlee/Makefile
==============================================================================
--- head/devel/grantlee/Makefile	Mon Sep 12 17:48:59 2016	(r421942)
+++ head/devel/grantlee/Makefile	Mon Sep 12 17:51:19 2016	(r421943)
@@ -13,6 +13,8 @@ COMMENT=	String template engine for Qt 4
 
 LICENSE=	LGPL21
 
+PORTSCOUT=	limit:^0\.
+
 USE_QT4=	corelib gui qtestlib_build script \
 		qmake_build moc_build rcc_build uic_build
 USES=		cmake:outsource grantlee:4,selfbuild

Modified: head/devel/grantlee5/Makefile
==============================================================================
--- head/devel/grantlee5/Makefile	Mon Sep 12 17:48:59 2016	(r421942)
+++ head/devel/grantlee5/Makefile	Mon Sep 12 17:51:19 2016	(r421943)
@@ -12,6 +12,8 @@ COMMENT=	String template engine for Qt 5
 
 LICENSE=	LGPL21
 
+PORTSCOUT=	limit:^5\.
+
 USE_QT5=	buildtools_build core gui qmake_build script
 USES=		cmake:outsource compiler:c++11-lib grantlee:5,selfbuild
 CMAKE_ARGS+=	-DBUILD_TESTS:BOOL=FALSE

From owner-svn-ports-head@freebsd.org  Mon Sep 12 17:51:52 2016
Return-Path: 
Delivered-To: svn-ports-head@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 28871BD8668;
 Mon, 12 Sep 2016 17:51:52 +0000 (UTC)
 (envelope-from tcberner@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 EA7931E0;
 Mon, 12 Sep 2016 17:51:51 +0000 (UTC)
 (envelope-from tcberner@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CHpptd031198;
 Mon, 12 Sep 2016 17:51:51 GMT (envelope-from tcberner@FreeBSD.org)
Received: (from tcberner@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CHppiA031196;
 Mon, 12 Sep 2016 17:51:51 GMT (envelope-from tcberner@FreeBSD.org)
Message-Id: <201609121751.u8CHppiA031196@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: tcberner set sender to
 tcberner@FreeBSD.org using -f
From: "Tobias C. Berner" 
Date: Mon, 12 Sep 2016 17:51:51 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421944 - head/finance/skrooge
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 17:51:52 -0000

Author: tcberner
Date: Mon Sep 12 17:51:50 2016
New Revision: 421944
URL: https://svnweb.freebsd.org/changeset/ports/421944

Log:
  Define PORTSCOUT in finance/skrooge
  
  Limit the version to 1.* as from 2.* on it is KF5 based.
  
  Approved by: rakuco (mentor)

Modified:
  head/finance/skrooge/Makefile

Modified: head/finance/skrooge/Makefile
==============================================================================
--- head/finance/skrooge/Makefile	Mon Sep 12 17:51:19 2016	(r421943)
+++ head/finance/skrooge/Makefile	Mon Sep 12 17:51:50 2016	(r421944)
@@ -8,6 +8,8 @@ MASTER_SITES=	KDE/stable/${PORTNAME}
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	KDE4 personal finance manager
 
+PORTSCOUT=	limit:^1\.
+
 BUILD_DEPENDS=	xsltproc:textproc/libxslt
 LIB_DEPENDS=	libofx.so:finance/libofx \
 		libqca.so:devel/qca \

From owner-svn-ports-head@freebsd.org  Mon Sep 12 18:10:42 2016
Return-Path: 
Delivered-To: svn-ports-head@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 9BFDFBD8C68;
 Mon, 12 Sep 2016 18:10:42 +0000 (UTC)
 (envelope-from dinoex@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 6BFB036D;
 Mon, 12 Sep 2016 18:10:42 +0000 (UTC)
 (envelope-from dinoex@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CIAfmC037783;
 Mon, 12 Sep 2016 18:10:41 GMT (envelope-from dinoex@FreeBSD.org)
Received: (from dinoex@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CIAfcR037782;
 Mon, 12 Sep 2016 18:10:41 GMT (envelope-from dinoex@FreeBSD.org)
Message-Id: <201609121810.u8CIAfcR037782@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dinoex set sender to
 dinoex@FreeBSD.org using -f
From: Dirk Meyer 
Date: Mon, 12 Sep 2016 18:10:41 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421945 - head/security/openssl
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 18:10:42 -0000

Author: dinoex
Date: Mon Sep 12 18:10:41 2016
New Revision: 421945
URL: https://svnweb.freebsd.org/changeset/ports/421945

Log:
  - unroll for loop
  Submitted by:	John Marino

Modified:
  head/security/openssl/Makefile

Modified: head/security/openssl/Makefile
==============================================================================
--- head/security/openssl/Makefile	Mon Sep 12 17:51:50 2016	(r421944)
+++ head/security/openssl/Makefile	Mon Sep 12 18:10:41 2016	(r421945)
@@ -27,10 +27,10 @@ CONFLICTS=	libressl-[0-9]* \
 OPTIONS_DEFINE=	SHARED THREADS SSE2 PADLOCK ZLIB SCTP SSL2 SSL3 RFC3779 MD2 RC5 EXPCIPHERS DOCS MAN3
 OPTIONS_DEFAULT=SHARED THREADS SSE2 SCTP SSL2 SSL3 MD2 MAN3
 OPTIONS_DEFINE_i386=	I386
-.for a in amd64 ia64
-OPTIONS_DEFINE_${a}=	EC
-OPTIONS_DEFAULT_${a}=	EC
-.endfor
+OPTIONS_DEFINE_amd64=	EC
+OPTIONS_DEFAULT_amd64=	EC
+OPTIONS_DEFINE_ia64=	EC
+OPTIONS_DEFAULT_ia64=	EC
 TARGET_ARCH?=	${MACHINE_ARCH}
 .if ${TARGET_ARCH} == "mips64el"
 OPTIONS_DEFINE_mips=	EC

From owner-svn-ports-head@freebsd.org  Mon Sep 12 18:18:56 2016
Return-Path: 
Delivered-To: svn-ports-head@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 60615BD80D6;
 Mon, 12 Sep 2016 18:18:56 +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 16CD3CD1;
 Mon, 12 Sep 2016 18:18: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 u8CIItNk041580;
 Mon, 12 Sep 2016 18:18:55 GMT (envelope-from pi@FreeBSD.org)
Received: (from pi@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CIItHe041577;
 Mon, 12 Sep 2016 18:18:55 GMT (envelope-from pi@FreeBSD.org)
Message-Id: <201609121818.u8CIItHe041577@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org
 using -f
From: Kurt Jaeger 
Date: Mon, 12 Sep 2016 18:18:55 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421946 - head/devel/extra-cmake-modules
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 18:18:56 -0000

Author: pi
Date: Mon Sep 12 18:18:54 2016
New Revision: 421946
URL: https://svnweb.freebsd.org/changeset/ports/421946

Log:
  devel/extra-cmake-modules: 5.25.0 -> 5.26.0
  
  PR:		212581
  Changes:	https://quickgit.kde.org/?p=extra-cmake-modules.git
  Submitted by:	Yuri Victorovich  (maintainer)

Modified:
  head/devel/extra-cmake-modules/Makefile
  head/devel/extra-cmake-modules/distinfo
  head/devel/extra-cmake-modules/pkg-plist

Modified: head/devel/extra-cmake-modules/Makefile
==============================================================================
--- head/devel/extra-cmake-modules/Makefile	Mon Sep 12 18:10:41 2016	(r421945)
+++ head/devel/extra-cmake-modules/Makefile	Mon Sep 12 18:18:54 2016	(r421946)
@@ -2,9 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=	extra-cmake-modules
-PORTVERSION=	5.25.0
+PORTVERSION=	5.26.0
 DISTVERSIONPREFIX=	v
-PORTREVISION=	1
 CATEGORIES=	devel
 
 MAINTAINER=	yuri@rawbw.com

Modified: head/devel/extra-cmake-modules/distinfo
==============================================================================
--- head/devel/extra-cmake-modules/distinfo	Mon Sep 12 18:10:41 2016	(r421945)
+++ head/devel/extra-cmake-modules/distinfo	Mon Sep 12 18:18:54 2016	(r421946)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1471093039
-SHA256 (KDE-extra-cmake-modules-v5.25.0_GH0.tar.gz) = 5506d83d742b36f5e3bc536077cb8db7e41bfb7b92d55f42d91536d1214e1d0e
-SIZE (KDE-extra-cmake-modules-v5.25.0_GH0.tar.gz) = 337242
+TIMESTAMP = 1473584808
+SHA256 (KDE-extra-cmake-modules-v5.26.0_GH0.tar.gz) = 5c988d43454ae402802e5435bff55cdd18b6764e0c373d9b12019a9156e68129
+SIZE (KDE-extra-cmake-modules-v5.26.0_GH0.tar.gz) = 338034

Modified: head/devel/extra-cmake-modules/pkg-plist
==============================================================================
--- head/devel/extra-cmake-modules/pkg-plist	Mon Sep 12 18:10:41 2016	(r421945)
+++ head/devel/extra-cmake-modules/pkg-plist	Mon Sep 12 18:18:54 2016	(r421946)
@@ -18,6 +18,7 @@ share/ECM/kde-modules/KDECompilerSetting
 share/ECM/kde-modules/KDEFrameworkCompilerSettings.cmake
 share/ECM/kde-modules/KDEInstallDirs.cmake
 share/ECM/kde-modules/KDEPackageAppTemplates.cmake
+share/ECM/kde-modules/appstreamtest.cmake
 share/ECM/modules/ECMAddAppIcon.cmake
 share/ECM/modules/ECMAddTests.cmake
 share/ECM/modules/ECMCoverageOption.cmake

From owner-svn-ports-head@freebsd.org  Mon Sep 12 18:20:25 2016
Return-Path: 
Delivered-To: svn-ports-head@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 230DABD8252;
 Mon, 12 Sep 2016 18:20:25 +0000 (UTC)
 (envelope-from marino@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 E9DEFE9C;
 Mon, 12 Sep 2016 18:20:24 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CIKOU9041791;
 Mon, 12 Sep 2016 18:20:24 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CIKOna041789;
 Mon, 12 Sep 2016 18:20:24 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121820.u8CIKOna041789@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 18:20:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421947 - in head/security/xca: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 18:20:25 -0000

Author: marino
Date: Mon Sep 12 18:20:23 2016
New Revision: 421947
URL: https://svnweb.freebsd.org/changeset/ports/421947

Log:
  security/xca: Fix build with LibreSSL

Added:
  head/security/xca/files/
  head/security/xca/files/patch-lib_pki__temp.cpp   (contents, props changed)
Modified:
  head/security/xca/Makefile

Modified: head/security/xca/Makefile
==============================================================================
--- head/security/xca/Makefile	Mon Sep 12 18:18:54 2016	(r421946)
+++ head/security/xca/Makefile	Mon Sep 12 18:20:23 2016	(r421947)
@@ -14,8 +14,8 @@ LICENSE_FILE=	${WRKSRC}/COPYRIGHT
 
 LIB_DEPENDS=	libltdl.so:devel/libltdl
 
-USES=		desktop-file-utils gmake localbase pkgconfig shared-mime-info
-USE_OPENSSL=	yes
+USES=		desktop-file-utils gmake localbase pkgconfig \
+		shared-mime-info ssl
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-openssl=${OPENSSLDIR} \
 		--with-qt=${QT_PREFIX}

Added: head/security/xca/files/patch-lib_pki__temp.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/xca/files/patch-lib_pki__temp.cpp	Mon Sep 12 18:20:23 2016	(r421947)
@@ -0,0 +1,11 @@
+--- lib/pki_temp.cpp.orig	2015-10-10 12:54:12 UTC
++++ lib/pki_temp.cpp
+@@ -363,7 +363,7 @@ BIO *pki_temp::pem(BIO *b, int format)
+ 	QByteArray ba = toExportData();
+         if (!b)
+ 		b = BIO_new(BIO_s_mem());
+-#if OPENSSL_VERSION_NUMBER < 0x10002000L
++#if OPENSSL_VERSION_NUMBER < 0x10002000L || defined(LIBRESSL_VERSION_NUMBER)
+ 	PEM_write_bio(b, PEM_STRING_XCA_TEMPLATE, (char*)"",
+ 		(unsigned char*)(ba.data()), ba.size());
+ #else

From owner-svn-ports-head@freebsd.org  Mon Sep 12 18:21:48 2016
Return-Path: 
Delivered-To: svn-ports-head@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 C2C50BD8299;
 Mon, 12 Sep 2016 18:21:48 +0000 (UTC)
 (envelope-from adamw@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 9055EFA;
 Mon, 12 Sep 2016 18:21:48 +0000 (UTC)
 (envelope-from adamw@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CILljE042522;
 Mon, 12 Sep 2016 18:21:47 GMT (envelope-from adamw@FreeBSD.org)
Received: (from adamw@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CILlFk042521;
 Mon, 12 Sep 2016 18:21:47 GMT (envelope-from adamw@FreeBSD.org)
Message-Id: <201609121821.u8CILlFk042521@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: adamw set sender to
 adamw@FreeBSD.org using -f
From: Adam Weinberger 
Date: Mon, 12 Sep 2016 18:21:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421948 - head/www/awstats
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 18:21:48 -0000

Author: adamw
Date: Mon Sep 12 18:21:47 2016
New Revision: 421948
URL: https://svnweb.freebsd.org/changeset/ports/421948

Log:
  Fix path to config file location in an ancillary script,
  bump PORTREVISION.
  
  PR:		212591
  Submitted by:	Vidar Karlsen

Modified:
  head/www/awstats/Makefile

Modified: head/www/awstats/Makefile
==============================================================================
--- head/www/awstats/Makefile	Mon Sep 12 18:20:23 2016	(r421947)
+++ head/www/awstats/Makefile	Mon Sep 12 18:21:47 2016	(r421948)
@@ -3,6 +3,7 @@
 
 PORTNAME=	awstats
 PORTVERSION=	7.5
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	www
 MASTER_SITES=	SF/${PORTNAME}/AWStats/${PORTVERSION}
@@ -55,6 +56,8 @@ post-patch:
 		${WRKSRC}/tools/nginx/* \
 		${WRKSRC}/wwwroot/cgi-bin/*.pl \
 		${WRKSRC}/wwwroot/cgi-bin/*.conf
+	@${REINPLACE_CMD} -e 's|/etc/awstats|${ETCDIR}|' \
+		${WRKSRC}/tools/awstats_updateall.pl
 	@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \
 			-e 's|%%WWWDIR%%|${WWWDIR}|' \
 			-e 's|AWSTATS_PATH/wwwroot|AWSTATS_PATH|' \

From owner-svn-ports-head@freebsd.org  Mon Sep 12 18:28:21 2016
Return-Path: 
Delivered-To: svn-ports-head@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 ABE38BD83F8;
 Mon, 12 Sep 2016 18:28:21 +0000 (UTC)
 (envelope-from marino@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 7C04D5F7;
 Mon, 12 Sep 2016 18:28:21 +0000 (UTC)
 (envelope-from marino@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CISKtj045553;
 Mon, 12 Sep 2016 18:28:20 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CISKIP045552;
 Mon, 12 Sep 2016 18:28:20 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201609121828.u8CISKIP045552@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 12 Sep 2016 18:28:20 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421949 - head/security/strongswan/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 18:28:21 -0000

Author: marino
Date: Mon Sep 12 18:28:20 2016
New Revision: 421949
URL: https://svnweb.freebsd.org/changeset/ports/421949

Log:
  security/strongswan: Fix build with LibreSSL
  
  Approved by:	SSL blanket

Added:
  head/security/strongswan/files/patch-src_libstrongswan_plugins_openssl_openssl__plugin.c   (contents, props changed)

Added: head/security/strongswan/files/patch-src_libstrongswan_plugins_openssl_openssl__plugin.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/strongswan/files/patch-src_libstrongswan_plugins_openssl_openssl__plugin.c	Mon Sep 12 18:28:20 2016	(r421949)
@@ -0,0 +1,11 @@
+--- src/libstrongswan/plugins/openssl/openssl_plugin.c.orig	2016-06-30 14:20:10 UTC
++++ src/libstrongswan/plugins/openssl/openssl_plugin.c
+@@ -573,7 +573,7 @@ plugin_t *openssl_plugin_create()
+ 		},
+ 	);
+ 
+-#if OPENSSL_VERSION_NUMBER >= 0x10100000L
++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)
+ 	/* note that we can't call OPENSSL_cleanup() when the plugin is destroyed
+ 	 * as we couldn't initialize the library again afterwards */
+ 	OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG |

From owner-svn-ports-head@freebsd.org  Mon Sep 12 18:32:20 2016
Return-Path: 
Delivered-To: svn-ports-head@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 122F2BD8531;
 Mon, 12 Sep 2016 18:32:20 +0000 (UTC)
 (envelope-from pawel@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 DE81495A;
 Mon, 12 Sep 2016 18:32:19 +0000 (UTC)
 (envelope-from pawel@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CIWJK5049309;
 Mon, 12 Sep 2016 18:32:19 GMT (envelope-from pawel@FreeBSD.org)
Received: (from pawel@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CIWIJK049306;
 Mon, 12 Sep 2016 18:32:18 GMT (envelope-from pawel@FreeBSD.org)
Message-Id: <201609121832.u8CIWIJK049306@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: pawel set sender to
 pawel@FreeBSD.org using -f
From: Pawel Pekala 
Date: Mon, 12 Sep 2016 18:32:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421950 - in head/multimedia/lives: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 18:32:20 -0000

Author: pawel
Date: Mon Sep 12 18:32:18 2016
New Revision: 421950
URL: https://svnweb.freebsd.org/changeset/ports/421950

Log:
  - Update to version 2.8.0
  - Register proxy dependencies found by stage-qa
  
  Changelog:
  Correct blank frame fix from 2.6.8 (add one to last frame).
  Fix coding error when centering windows.
  Correctly parse the path variables for frei0r, libvisual and ladspa.
  Set nicer defaults for RGBDelay effect.

Deleted:
  head/multimedia/lives/files/patch-lives-plugins_weed-plugins_toonz.cpp
Modified:
  head/multimedia/lives/Makefile
  head/multimedia/lives/distinfo
  head/multimedia/lives/pkg-plist

Modified: head/multimedia/lives/Makefile
==============================================================================
--- head/multimedia/lives/Makefile	Mon Sep 12 18:28:20 2016	(r421949)
+++ head/multimedia/lives/Makefile	Mon Sep 12 18:32:18 2016	(r421950)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	lives
-PORTVERSION=	2.6.3
+PORTVERSION=	2.8.0
 CATEGORIES=	multimedia
 MASTER_SITES=	SF
 
@@ -15,15 +15,19 @@ BUILD_DEPENDS=	${LOCALBASE}/include/linu
 		${LOCALBASE}/bin/analyseplugin:audio/ladspa
 LIB_DEPENDS=	libasound.so:audio/alsa-lib \
 		libjack.so:audio/jack \
+		libogg.so:audio/libogg \
 		libpulse.so:audio/pulseaudio \
 		liboil-0.3.so:devel/liboil \
 		libprojectM.so:graphics/libprojectm \
 		libvisual-0.4.so:graphics/libvisual04 \
 		libopencv_calib3d.so:graphics/opencv \
+		libopencv_core.so:graphics/opencv-core \
+		libpng16.so:graphics/png \
 		libfftw3.so:math/fftw3 \
 		libfftw3f.so:math/fftw3-float \
 		libavcodec.so:multimedia/ffmpeg \
 		libdv.so:multimedia/libdv \
+		libtheora.so:multimedia/libtheora \
 		libmjpegutils.so:multimedia/mjpegtools \
 		libschroedinger-1.0.so:multimedia/schroedinger
 RUN_DEPENDS=	${LOCALBASE}/bin/analyseplugin:audio/ladspa \
@@ -39,13 +43,16 @@ RUN_DEPENDS=	${LOCALBASE}/bin/analyseplu
 		x264:multimedia/x264 \
 		cdrecord:sysutils/cdrtools
 
-USES=		compiler:c++11-lib ghostscript:run libtool localbase pathfix perl5 \
-		pkgconfig python shebangfix tar:bzip2
+USES=		compiler:c++11-lib gettext-runtime ghostscript:run libtool \
+		localbase pathfix perl5 pkgconfig python shebangfix tar:bzip2
 SHEBANG_FILES=	build-lives-rfx-plugin build-lives-rfx-plugin-multi \
 		smogrify tools/autolives.pl lives-plugins/plugins/encoders/*_encoder \
 		lives-plugins/plugins/playback/audiostream/audiostreamer.pl
 GNU_CONFIGURE=	yes
-USE_GNOME=	gtk30 intltool
+USE_XORG=	x11
+USE_GL=		gl
+USE_SDL=	sdl
+USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool
 USE_LDCONFIG=	yes
 
 CONFIGURE_ARGS=	--disable-ldvgrab
@@ -59,8 +66,6 @@ DOC_FILES=	AUTHORS BUGS ChangeLog FEATUR
 		lives-plugins/marcos-encoders/README.multi_encoder \
 		weed-docs/weedspec.txt weed-docs/weedevents.txt
 
-PORT_VERBS=	lives LiVES _encoder.py midistart midistop smogrify sendOSC
-
 OPTIONS_DEFINE=	DOCS DOXYGEN FREI0R MATROSKA NLS
 OPTIONS_SUB=	yes
 
@@ -70,7 +75,7 @@ FREI0R_BUILD_DEPENDS=	frei0r>0:graphics/
 FREI0R_RUN_DEPENDS=	frei0r>0:graphics/frei0r
 FREI0R_CONFIGURE_ENV_OFF=	ac_cv_header_frei0r_h=no
 MATROSKA_RUN_DEPENDS=	mkvmerge:multimedia/mkvtoolnix
-NLS_USES=		gettext
+NLS_USES=		gettext-tools
 NLS_CONFIGURE_OFF=	--disable-nls
 
 post-patch:

Modified: head/multimedia/lives/distinfo
==============================================================================
--- head/multimedia/lives/distinfo	Mon Sep 12 18:28:20 2016	(r421949)
+++ head/multimedia/lives/distinfo	Mon Sep 12 18:32:18 2016	(r421950)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1463232875
-SHA256 (lives-2.6.3.tar.bz2) = 495248a51f00925576631821266e1f8acf3eca3b5eb1eaaf350201bfc000b1dc
-SIZE (lives-2.6.3.tar.bz2) = 3888592
+TIMESTAMP = 1473086975
+SHA256 (lives-2.8.0.tar.bz2) = eecea7a7517d944b1dc04b2f7ce51517e96531b04e67f3d34b0f8ef729d19fdc
+SIZE (lives-2.8.0.tar.bz2) = 3888265

Modified: head/multimedia/lives/pkg-plist
==============================================================================
--- head/multimedia/lives/pkg-plist	Mon Sep 12 18:28:20 2016	(r421949)
+++ head/multimedia/lives/pkg-plist	Mon Sep 12 18:32:18 2016	(r421950)
@@ -211,7 +211,6 @@ libdata/pkgconfig/libweed-plugin.pc
 libdata/pkgconfig/libweed-utils.pc
 libdata/pkgconfig/libweed.pc
 libdata/pkgconfig/libweed_slice.pc
-share/app-install/icons/lives.png
 share/applications/LiVES.desktop
 %%PORTDOCS%%%%DOCSDIR%%/AUTHORS
 %%PORTDOCS%%%%DOCSDIR%%/BUGS
@@ -227,6 +226,7 @@ share/applications/LiVES.desktop
 %%PORTDOCS%%%%DOCSDIR%%/rfxbuilder.odt
 %%PORTDOCS%%%%DOCSDIR%%/weedevents.txt
 %%PORTDOCS%%%%DOCSDIR%%/weedspec.txt
+share/icons/hicolor/48x48/apps/lives.png
 %%DATADIR%%/default.keymap
 %%DATADIR%%/icons/audio.png
 %%DATADIR%%/icons/fullscreen.png

From owner-svn-ports-head@freebsd.org  Mon Sep 12 19:18:12 2016
Return-Path: 
Delivered-To: svn-ports-head@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 D28B4BD8DA8;
 Mon, 12 Sep 2016 19:18:12 +0000 (UTC)
 (envelope-from madpilot@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 A9BBDEF5;
 Mon, 12 Sep 2016 19:18:12 +0000 (UTC)
 (envelope-from madpilot@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CJIBip064289;
 Mon, 12 Sep 2016 19:18:11 GMT (envelope-from madpilot@FreeBSD.org)
Received: (from madpilot@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CJIBxi064285;
 Mon, 12 Sep 2016 19:18:11 GMT (envelope-from madpilot@FreeBSD.org)
Message-Id: <201609121918.u8CJIBxi064285@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: madpilot set sender to
 madpilot@FreeBSD.org using -f
From: Guido Falsi 
Date: Mon, 12 Sep 2016 19:18:11 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421951 - in head: net/asterisk-chan_sccp
 net/asterisk-g72x www/bigbluebutton
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 19:18:12 -0000

Author: madpilot
Date: Mon Sep 12 19:18:11 2016
New Revision: 421951
URL: https://svnweb.freebsd.org/changeset/ports/421951

Log:
  Remove dependencies on net/asterisk.
  
  Approved by:	portmgr (mat)

Modified:
  head/net/asterisk-chan_sccp/Makefile
  head/net/asterisk-g72x/Makefile
  head/www/bigbluebutton/Makefile

Modified: head/net/asterisk-chan_sccp/Makefile
==============================================================================
--- head/net/asterisk-chan_sccp/Makefile	Mon Sep 12 18:32:18 2016	(r421950)
+++ head/net/asterisk-chan_sccp/Makefile	Mon Sep 12 19:18:11 2016	(r421951)
@@ -3,6 +3,7 @@
 
 PORTNAME=		chan_sccp
 PORTVERSION=		4.2.3
+PORTREVISION=		1
 CATEGORIES=		net
 MASTER_SITES=		SF/chan-sccp-b
 PKGNAMEPREFIX=		asterisk-
@@ -30,16 +31,12 @@ PLIST_FILES=		lib/asterisk/modules/chan_
 			etc/asterisk/sccp.conf.annotated
 
 OPTIONS_SINGLE=		ASTVER
-OPTIONS_SINGLE_ASTVER=	ASTERISK18 ASTERISK11 ASTERISK13
+OPTIONS_SINGLE_ASTVER=	ASTERISK11 ASTERISK13
 OPTIONS_DEFAULT=	ASTERISK13
 
-ASTERISK18_DESC=	Depend on Asterisk 1.8
 ASTERISK11_DESC=	Depend on Asterisk 11
 ASTERISK13_DESC=	Depend on Asterisk 13
 
-ASTERISK18_BUILD_DEPENDS=	asterisk:net/asterisk
-ASTERISK18_RUN_DEPENDS=		asterisk:net/asterisk
-
 ASTERISK11_BUILD_DEPENDS=	asterisk:net/asterisk11
 ASTERISK11_RUN_DEPENDS=		asterisk:net/asterisk11
 

Modified: head/net/asterisk-g72x/Makefile
==============================================================================
--- head/net/asterisk-g72x/Makefile	Mon Sep 12 18:32:18 2016	(r421950)
+++ head/net/asterisk-g72x/Makefile	Mon Sep 12 19:18:11 2016	(r421951)
@@ -2,7 +2,7 @@
 
 PORTNAME=	asterisk-g72x
 PORTVERSION=	1.3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net
 MASTER_SITES=	http://asterisk.hosting.lv/src/
 
@@ -19,17 +19,13 @@ NO_OPTIONS_SORT=	yes
 PLIST_FILES=	lib/asterisk/modules/codec_g729.so
 
 OPTIONS_SINGLE=	ASTVER
-OPTIONS_SINGLE_ASTVER=	ASTERISK18 ASTERISK11 ASTERISK13
+OPTIONS_SINGLE_ASTVER=	ASTERISK11 ASTERISK13
 
 OPTIONS_DEFAULT=	ASTERISK13
 
-ASTERISK18_DESC=	Depend on Asterisk 1.8
 ASTERISK11_DESC=	Depend on Asterisk 11
 ASTERISK13_DESC=	Depend on Asterisk 13
 
-ASTERISK18_BUILD_DEPENDS=	asterisk:net/asterisk
-ASTERISK18_RUN_DEPENDS=	asterisk:net/asterisk
-ASTERISK18_CONFIGURE_ON=	--with-asterisk18
 ASTERISK11_BUILD_DEPENDS=	asterisk:net/asterisk11
 ASTERISK11_RUN_DEPENDS=	asterisk:net/asterisk11
 ASTERISK11_CONFIGURE_ON=	--with-asterisk100

Modified: head/www/bigbluebutton/Makefile
==============================================================================
--- head/www/bigbluebutton/Makefile	Mon Sep 12 18:32:18 2016	(r421950)
+++ head/www/bigbluebutton/Makefile	Mon Sep 12 19:18:11 2016	(r421951)
@@ -3,7 +3,7 @@
 
 PORTNAME=	bigbluebutton
 PORTVERSION=	0.71
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	www java
 MASTER_SITES=	http://bigbluebutton.org/downloads/${PORTVERSION}/ \
 		http://bigbluebutton.org/downloads/0.70/:2 \
@@ -48,9 +48,8 @@ FS_USER?=	freeswitch
 FS_GROUP?=	${FS_USER}
 WWWROOT?=	${WWWDIR:S|/${PORTNAME}$||}
 
-OPTIONS_DEFINE=	MEETME KONFERENCE OPENOFFICE
+OPTIONS_DEFINE=	KONFERENCE OPENOFFICE
 OPTIONS_DEFAULT=	KONFERENCE
-MEETME_DESC=	meetme Asterisk module
 KONFERENCE_DESC=	konference Asterisk module
 OPENOFFICE_DESC=	Include OpenOffice support
 
@@ -81,18 +80,9 @@ SUB_FILES=	pkg-message openoffice nginx.
 
 .include 
 
-.if ${PORT_OPTIONS:MMEETME} || ${PORT_OPTIONS:MKONFERENCE}
-BUILD_DEPENDS+=${LOCALBASE}/sbin/asterisk:net/asterisk
-.if  ${PORT_OPTIONS:MMEETME}
-.if !exists(${LOCALBASE}/lib/asterisk/modules/app_meetme.so)
-IGNORE=Option meetme requires app_meetme.so from asterisk port. Rebuild net/asterisk with DAHDI option selected
-.endif
-.endif
 .if  ${PORT_OPTIONS:MKONFERENCE}
 BUILD_DEPENDS+=${LOCALBASE}/lib/asterisk/modules/app_konference.so:net/appkonference
 .endif
-.endif
-
 .if ${PORT_OPTIONS:MOPENOFFICE}
 BUILD_DEPENDS+=	${LOCALBASE}/bin/openoffice-4.0.1:editors/openoffice-4
 .endif

From owner-svn-ports-head@freebsd.org  Mon Sep 12 19:35:06 2016
Return-Path: 
Delivered-To: svn-ports-head@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 AC691BD86AF;
 Mon, 12 Sep 2016 19:35:06 +0000 (UTC)
 (envelope-from madpilot@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 79B5FE3A;
 Mon, 12 Sep 2016 19:35:06 +0000 (UTC)
 (envelope-from madpilot@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CJZ5J6071827;
 Mon, 12 Sep 2016 19:35:05 GMT (envelope-from madpilot@FreeBSD.org)
Received: (from madpilot@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CJZ58p071825;
 Mon, 12 Sep 2016 19:35:05 GMT (envelope-from madpilot@FreeBSD.org)
Message-Id: <201609121935.u8CJZ58p071825@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: madpilot set sender to
 madpilot@FreeBSD.org using -f
From: Guido Falsi 
Date: Mon, 12 Sep 2016 19:35:05 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421952 - in head: . net net/asterisk
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 19:35:06 -0000

Author: madpilot
Date: Mon Sep 12 19:35:05 2016
New Revision: 421952
URL: https://svnweb.freebsd.org/changeset/ports/421952

Log:
  Remove net/astersisk, Asterisk 1.8 reached EOL on 2015-10-21.
  
  Please use net/asterisk11 or net/asterisk13 containing newer,
  supported versions.

Deleted:
  head/net/asterisk/
Modified:
  head/MOVED
  head/net/Makefile

Modified: head/MOVED
==============================================================================
--- head/MOVED	Mon Sep 12 19:18:11 2016	(r421951)
+++ head/MOVED	Mon Sep 12 19:35:05 2016	(r421952)
@@ -8622,3 +8622,4 @@ emulators/kqemu-kmod||2016-08-26|Not sup
 emulators/kqemu-kmod-devel||2016-08-26|Not supported in any qemu version anymore
 www/varnish-libvmod-saintmode|www/varnish-modules|2016-09-01|Upstream moved this module into the varnish-modules collection
 security/letskencrypt|security/acme-client|2016-09-02|Upstream renamed the project
+net/asterisk||2016-09-12|Has expired: Asterisk 1.8 reached EOL on 2015-10-21

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Mon Sep 12 19:18:11 2016	(r421951)
+++ head/net/Makefile	Mon Sep 12 19:35:05 2016	(r421952)
@@ -26,7 +26,6 @@
     SUBDIR += arprelease
     SUBDIR += asio
     SUBDIR += aslookup
-    SUBDIR += asterisk
     SUBDIR += asterisk-chan_sccp
     SUBDIR += asterisk-g72x
     SUBDIR += asterisk11

From owner-svn-ports-head@freebsd.org  Mon Sep 12 19:41:13 2016
Return-Path: 
Delivered-To: svn-ports-head@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 3B8C1BD87BB;
 Mon, 12 Sep 2016 19:41:13 +0000 (UTC) (envelope-from dim@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 0B9DDCC;
 Mon, 12 Sep 2016 19:41:12 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CJfC8V072144;
 Mon, 12 Sep 2016 19:41:12 GMT (envelope-from dim@FreeBSD.org)
Received: (from dim@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CJfCv3072143;
 Mon, 12 Sep 2016 19:41:12 GMT (envelope-from dim@FreeBSD.org)
Message-Id: <201609121941.u8CJfCv3072143@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org
 using -f
From: Dimitry Andric 
Date: Mon, 12 Sep 2016 19:41:12 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421953 - head/audio/clementine-player
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 19:41:13 -0000

Author: dim (src committer)
Date: Mon Sep 12 19:41:12 2016
New Revision: 421953
URL: https://svnweb.freebsd.org/changeset/ports/421953

Log:
  Fix build of audio/clementine-player with clang 3.9.0
  
  Clang 3.9.0 has a new warning about undefined template variables, which
  is triggered by including cryptopp headers in the spotify blob
  downloader:
  
  In file included from /wrkdirs/usr/ports/audio/clementine-player/work/Clementine-1.3.1/src/internet/spotify/spotifyblobdownloader.cpp:43:
  /usr/local/include/cryptopp/pkcspad.h:74:53: error: instantiation of variable 'CryptoPP::PKCS_DigestDecoration::decoration' required here, but no definition is available [-Werror,-Wundefined-var-template]
                                  return HashIdentifier(PKCS_DigestDecoration::decoration, PKCS_DigestDecoration::length);
                                                                                  ^
  
  This warning could be silenced by hacking on cryptopp, but just suppress
  it for now.
  
  Approved by:	sbruno (maintainer)
  PR:		212343
  MFH:		2016Q3

Modified:
  head/audio/clementine-player/Makefile

Modified: head/audio/clementine-player/Makefile
==============================================================================
--- head/audio/clementine-player/Makefile	Mon Sep 12 19:35:05 2016	(r421952)
+++ head/audio/clementine-player/Makefile	Mon Sep 12 19:41:12 2016	(r421953)
@@ -198,4 +198,10 @@ VISUALISATION_CMAKE_OFF=-DENABLE_VISUALI
 WIIMOTEDEV_CMAKE_ON=	-DENABLE_WIIMOTEDEV=ON
 WIIMOTEDEV_CMAKE_OFF=	-DENABLE_WIIMOTEDEV=OFF
 
+.include 
+
+.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 39
+CXXFLAGS+=	-Wno-undefined-var-template
+.endif
+
 .include 

From owner-svn-ports-head@freebsd.org  Mon Sep 12 19:44:05 2016
Return-Path: 
Delivered-To: svn-ports-head@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 99B0BBD88E7;
 Mon, 12 Sep 2016 19:44:05 +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 5B6C5615;
 Mon, 12 Sep 2016 19:44:05 +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 u8CJi4hB075725;
 Mon, 12 Sep 2016 19:44:04 GMT (envelope-from feld@FreeBSD.org)
Received: (from feld@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CJi43g075720;
 Mon, 12 Sep 2016 19:44:04 GMT (envelope-from feld@FreeBSD.org)
Message-Id: <201609121944.u8CJi43g075720@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: feld set sender to
 feld@FreeBSD.org using -f
From: Mark Felder 
Date: Mon, 12 Sep 2016 19:44:04 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421954 - in head/converters: . p5-Bencode
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 19:44:05 -0000

Author: feld
Date: Mon Sep 12 19:44:03 2016
New Revision: 421954
URL: https://svnweb.freebsd.org/changeset/ports/421954

Log:
  This module implements the BitTorrent *bencode* serialisation format, as
  described in .
  
  WWW: http://search.cpan.org/dist/Bencode/

Added:
  head/converters/p5-Bencode/
  head/converters/p5-Bencode/Makefile   (contents, props changed)
  head/converters/p5-Bencode/distinfo   (contents, props changed)
  head/converters/p5-Bencode/pkg-descr   (contents, props changed)
  head/converters/p5-Bencode/pkg-plist   (contents, props changed)
Modified:
  head/converters/Makefile

Modified: head/converters/Makefile
==============================================================================
--- head/converters/Makefile	Mon Sep 12 19:41:12 2016	(r421953)
+++ head/converters/Makefile	Mon Sep 12 19:44:03 2016	(r421954)
@@ -59,6 +59,7 @@
     SUBDIR += ocaml-jsonm
     SUBDIR += osm2mp
     SUBDIR += osm2pgsql
+    SUBDIR += p5-Bencode
     SUBDIR += p5-Boulder
     SUBDIR += p5-Convert-ASCII-Armour
     SUBDIR += p5-Convert-ASN1

Added: head/converters/p5-Bencode/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Bencode/Makefile	Mon Sep 12 19:44:03 2016	(r421954)
@@ -0,0 +1,23 @@
+# Created by: Mark Felder 
+# $FreeBSD$
+
+PORTNAME=	Bencode
+PORTVERSION=	1.402
+CATEGORIES=	converters perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:ARISTOTLE
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	feld@FreeBSD.org
+COMMENT=	BitTorrent bencode serialisation format
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+RUN_DEPENDS=	p5-Exporter-Tidy>0:devel/p5-Exporter-Tidy
+
+NO_ARCH=	yes
+USES=		perl5
+USE_PERL5=	configure
+
+.include 

Added: head/converters/p5-Bencode/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Bencode/distinfo	Mon Sep 12 19:44:03 2016	(r421954)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1473708980
+SHA256 (Bencode-1.402.tar.gz) = fc483076b157c56ea27d66b3f01291b862b5f86b5944560738d6b07e7f098413
+SIZE (Bencode-1.402.tar.gz) = 13748

Added: head/converters/p5-Bencode/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Bencode/pkg-descr	Mon Sep 12 19:44:03 2016	(r421954)
@@ -0,0 +1,4 @@
+This module implements the BitTorrent *bencode* serialisation format, as
+described in .
+
+WWW: http://search.cpan.org/dist/Bencode/

Added: head/converters/p5-Bencode/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/converters/p5-Bencode/pkg-plist	Mon Sep 12 19:44:03 2016	(r421954)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Bencode.pm
+%%PERL5_MAN3%%/Bencode.3.gz

From owner-svn-ports-head@freebsd.org  Mon Sep 12 20:05:48 2016
Return-Path: 
Delivered-To: svn-ports-head@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 E1AF2BD8D8A;
 Mon, 12 Sep 2016 20:05:48 +0000 (UTC)
 (envelope-from johans@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 8BAAFFCF;
 Mon, 12 Sep 2016 20:05:48 +0000 (UTC)
 (envelope-from johans@FreeBSD.org)
Received: from repo.freebsd.org ([127.0.1.37])
 by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CK5lDM083604;
 Mon, 12 Sep 2016 20:05:47 GMT (envelope-from johans@FreeBSD.org)
Received: (from johans@localhost)
 by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CK5lBQ083602;
 Mon, 12 Sep 2016 20:05:47 GMT (envelope-from johans@FreeBSD.org)
Message-Id: <201609122005.u8CK5lBQ083602@repo.freebsd.org>
X-Authentication-Warning: repo.freebsd.org: johans set sender to
 johans@FreeBSD.org using -f
From: Johan van Selst 
Date: Mon, 12 Sep 2016 20:05:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r421955 - head/security/vuxml
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: , 
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 12 Sep 2016 20:05:49 -0000

Author: johans
Date: Mon Sep 12 20:05:47 2016
New Revision: 421955
URL: https://svnweb.freebsd.org/changeset/ports/421955

Log:
  Document WolfSSL vulnerabilities (< 3.6.8)
  
  PR:		205936
  Submitted by:	Christoph Moench-Tegeder

Modified:
  head/security/vuxml/vuln.xml

Modified: head/security/vuxml/vuln.xml
==============================================================================
--- head/security/vuxml/vuln.xml	Mon Sep 12 19:44:03 2016	(r421954)
+++ head/security/vuxml/vuln.xml	Mon Sep 12 20:05:47 2016	(r421955)
@@ -58,6 +58,56 @@ Notes:
   * Do not forget port variants (linux-f10-libxml2, libxml2, etc.)
 -->
 
+  
+    wolfssl -- leakage of private key information
+    
+      
+  
+  3.6.8
+      
+    
+    
+      
+  

Florian Weimer of Redhat discovered that an optimization in + RSA signature validation can result in disclosure of the + server's private key under certain fault conditions.

+ +
+ + https://www.wolfssl.com/wolfSSL/Blog/Entries/2015/9/17_Two_Vulnerabilities_Recently_Found%2C_An_Attack_on_RSA_using_CRT_and_DoS_Vulnerability_With_DTLS.html + https://securityblog.redhat.com/2015/09/02/factoring-rsa-keys-with-tls-perfect-forward-secrecy/ + CVE-2015-7744 + + + 2015-09-17 + 2016-01-05 + +
+ + wolfssl -- DDoS amplification in DTLS + + + wolfssl + 3.6.8 + + + + +

Sebastian Ramacher identified an error in wolfSSL's implementation + of the server side of the DTLS handshake, which could be abused + for DDoS amplification or a DoS on the DTLS server itself.

+ +
+ + https://www.wolfssl.com/wolfSSL/Blog/Entries/2015/9/17_Two_Vulnerabilities_Recently_Found%2C_An_Attack_on_RSA_using_CRT_and_DoS_Vulnerability_With_DTLS.html + https://github.com/IAIK/wolfSSL-DoS + CVE-2015-6925 + + + 2015-09-18 + 2016-01-05 + +
gnutls -- OCSP validation issue From owner-svn-ports-head@freebsd.org Mon Sep 12 20:10:41 2016 Return-Path: Delivered-To: svn-ports-head@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 E8DABBD8E7B; Mon, 12 Sep 2016 20:10:41 +0000 (UTC) (envelope-from marino@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 BBAB6277; Mon, 12 Sep 2016 20:10:41 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CKAfpn083913; Mon, 12 Sep 2016 20:10:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CKAe8B083912; Mon, 12 Sep 2016 20:10:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609122010.u8CKAe8B083912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 20:10:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421956 - head/irc/kvirc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 20:10:42 -0000 Author: marino Date: Mon Sep 12 20:10:40 2016 New Revision: 421956 URL: https://svnweb.freebsd.org/changeset/ports/421956 Log: irc/kvirc: Honor SSL flags Approved by: SSL blanket Modified: head/irc/kvirc/Makefile Modified: head/irc/kvirc/Makefile ============================================================================== --- head/irc/kvirc/Makefile Mon Sep 12 20:05:47 2016 (r421955) +++ head/irc/kvirc/Makefile Mon Sep 12 20:10:40 2016 (r421956) @@ -18,11 +18,10 @@ MASTER_SITE_SUBDIR= ${PORTVERSION}/sourc MAINTAINER= makc@FreeBSD.org COMMENT?= IRC client for KDE 4 -USE_OPENSSL= yes USE_PERL5= build USE_QT4= moc_build qmake_build rcc_build uic_build \ dbus gui network sql xml -USES= cmake cpe gettext perl5 tar:bzip2 +USES= cmake cpe gettext perl5 ssl tar:bzip2 CMAKE_ARGS= -DWANT_ESD=no -DWANT_DOXYGEN=no \ -DMANDIR=${MANPREFIX} USE_LDCONFIG= yes @@ -79,4 +78,8 @@ pre-fetch-PERL-on: @${ECHO_CMD} " support (enabled in ports by default)." @${ECHO_CMD} "=====================================================" +post-patch: + ${REINPLACE_CMD} -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" \ + ${WRKSRC}/CMakeLists.txt + .include From owner-svn-ports-head@freebsd.org Mon Sep 12 20:22:01 2016 Return-Path: Delivered-To: svn-ports-head@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 3AE5FBD822E; Mon, 12 Sep 2016 20:22:01 +0000 (UTC) (envelope-from gjb@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 0C37AA81; Mon, 12 Sep 2016 20:22:00 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CKM0R2090354; Mon, 12 Sep 2016 20:22:00 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CKM0xd090352; Mon, 12 Sep 2016 20:22:00 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201609122022.u8CKM0xd090352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Mon, 12 Sep 2016 20:22:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421957 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 20:22:01 -0000 Author: gjb Date: Mon Sep 12 20:21:59 2016 New Revision: 421957 URL: https://svnweb.freebsd.org/changeset/ports/421957 Log: Fix build. Sponsored by: The FreeBSD Foundation Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Sep 12 20:10:40 2016 (r421956) +++ head/security/vuxml/vuln.xml Mon Sep 12 20:21:59 2016 (r421957) @@ -62,7 +62,7 @@ Notes: wolfssl -- leakage of private key information - + wolfssl 3.6.8 From owner-svn-ports-head@freebsd.org Mon Sep 12 20:30:21 2016 Return-Path: Delivered-To: svn-ports-head@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 C91E3BD84AD; Mon, 12 Sep 2016 20:30:21 +0000 (UTC) (envelope-from johans@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 80104EF; Mon, 12 Sep 2016 20:30:21 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CKUK7P091702; Mon, 12 Sep 2016 20:30:20 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CKUK5H091699; Mon, 12 Sep 2016 20:30:20 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201609122030.u8CKUK5H091699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Mon, 12 Sep 2016 20:30:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421959 - head/security/wolfssl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 20:30:21 -0000 Author: johans Date: Mon Sep 12 20:30:20 2016 New Revision: 421959 URL: https://svnweb.freebsd.org/changeset/ports/421959 Log: Update to WolfSSL 3.9.8 Modified: head/security/wolfssl/Makefile head/security/wolfssl/distinfo head/security/wolfssl/pkg-plist Modified: head/security/wolfssl/Makefile ============================================================================== --- head/security/wolfssl/Makefile Mon Sep 12 20:26:05 2016 (r421958) +++ head/security/wolfssl/Makefile Mon Sep 12 20:30:20 2016 (r421959) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= wolfssl -PORTVERSION= 3.9.0 +PORTVERSION= 3.9.8 CATEGORIES= security devel MASTER_SITES= http://www.wolfssl.com/ Modified: head/security/wolfssl/distinfo ============================================================================== --- head/security/wolfssl/distinfo Mon Sep 12 20:26:05 2016 (r421958) +++ head/security/wolfssl/distinfo Mon Sep 12 20:30:20 2016 (r421959) @@ -1,2 +1,3 @@ -SHA256 (wolfssl-3.9.0.zip) = 98f50244f7b43f8683bd0cf5c599849d330e75e6cf077e96f14e83bda8b03ca3 -SIZE (wolfssl-3.9.0.zip) = 2492112 +TIMESTAMP = 1473711052 +SHA256 (wolfssl-3.9.8.zip) = 7f784d3e181f7475f1153065146e3c10126987798c56213e98506b09f40ebdc5 +SIZE (wolfssl-3.9.8.zip) = 2672459 Modified: head/security/wolfssl/pkg-plist ============================================================================== --- head/security/wolfssl/pkg-plist Mon Sep 12 20:26:05 2016 (r421958) +++ head/security/wolfssl/pkg-plist Mon Sep 12 20:30:20 2016 (r421959) @@ -93,7 +93,6 @@ include/wolfssl/callbacks.h include/wolfssl/certs_test.h include/wolfssl/crl.h include/wolfssl/error-ssl.h -include/wolfssl/mem_track.h include/wolfssl/ocsp.h include/wolfssl/openssl/asn1.h include/wolfssl/openssl/bio.h @@ -146,6 +145,7 @@ include/wolfssl/wolfcrypt/blake2.h include/wolfssl/wolfcrypt/camellia.h include/wolfssl/wolfcrypt/chacha.h include/wolfssl/wolfcrypt/chacha20_poly1305.h +include/wolfssl/wolfcrypt/cmac.h include/wolfssl/wolfcrypt/coding.h include/wolfssl/wolfcrypt/compress.h include/wolfssl/wolfcrypt/curve25519.h @@ -167,6 +167,7 @@ include/wolfssl/wolfcrypt/logging.h include/wolfssl/wolfcrypt/md2.h include/wolfssl/wolfcrypt/md4.h include/wolfssl/wolfcrypt/md5.h +include/wolfssl/wolfcrypt/mem_track.h include/wolfssl/wolfcrypt/memory.h include/wolfssl/wolfcrypt/misc.h include/wolfssl/wolfcrypt/mpi_class.h @@ -192,5 +193,5 @@ include/wolfssl/wolfcrypt/wc_port.h lib/libwolfssl.a lib/libwolfssl.so lib/libwolfssl.so.3 -lib/libwolfssl.so.3.2.0 +lib/libwolfssl.so.3.4.0 libdata/pkgconfig/wolfssl.pc From owner-svn-ports-head@freebsd.org Mon Sep 12 20:34:02 2016 Return-Path: Delivered-To: svn-ports-head@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 C1D02BD8716; Mon, 12 Sep 2016 20:34:02 +0000 (UTC) (envelope-from johans@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 949B6767; Mon, 12 Sep 2016 20:34:02 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CKY10T095623; Mon, 12 Sep 2016 20:34:01 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CKY1vA095621; Mon, 12 Sep 2016 20:34:01 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201609122034.u8CKY1vA095621@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Mon, 12 Sep 2016 20:34:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421960 - head/textproc/diffutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 20:34:02 -0000 Author: johans Date: Mon Sep 12 20:34:01 2016 New Revision: 421960 URL: https://svnweb.freebsd.org/changeset/ports/421960 Log: Update to GNU diffutils 3.5 (bugfix release) Modified: head/textproc/diffutils/Makefile head/textproc/diffutils/distinfo Modified: head/textproc/diffutils/Makefile ============================================================================== --- head/textproc/diffutils/Makefile Mon Sep 12 20:30:20 2016 (r421959) +++ head/textproc/diffutils/Makefile Mon Sep 12 20:34:01 2016 (r421960) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= diffutils -PORTVERSION= 3.4 +PORTVERSION= 3.5 CATEGORIES= textproc MASTER_SITES= GNU Modified: head/textproc/diffutils/distinfo ============================================================================== --- head/textproc/diffutils/distinfo Mon Sep 12 20:30:20 2016 (r421959) +++ head/textproc/diffutils/distinfo Mon Sep 12 20:34:01 2016 (r421960) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471344741 -SHA256 (diffutils-3.4.tar.xz) = db53c025f2ac3d217bcf753dad6dee7b410b33d0948495ff015aaf8b91189ce2 -SIZE (diffutils-3.4.tar.xz) = 1358392 +TIMESTAMP = 1473712274 +SHA256 (diffutils-3.5.tar.xz) = dad398ccd5b9faca6b0ab219a036453f62a602a56203ac659b43e889bec35533 +SIZE (diffutils-3.5.tar.xz) = 1360996 From owner-svn-ports-head@freebsd.org Mon Sep 12 20:36:55 2016 Return-Path: Delivered-To: svn-ports-head@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 CF955BD8803; Mon, 12 Sep 2016 20:36:55 +0000 (UTC) (envelope-from marino@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 8DE339F7; Mon, 12 Sep 2016 20:36:55 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CKasBv095836; Mon, 12 Sep 2016 20:36:54 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CKasfw095834; Mon, 12 Sep 2016 20:36:54 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609122036.u8CKasfw095834@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 20:36:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421961 - in head/net-p2p/shx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 20:36:55 -0000 Author: marino Date: Mon Sep 12 20:36:54 2016 New Revision: 421961 URL: https://svnweb.freebsd.org/changeset/ports/421961 Log: net-p2p/shx: Document SSH reqirement, handle no EGD case (LibreSSL) While here, convert options to modern framework Approved by: SSL and infrastructure blankets Added: head/net-p2p/shx/files/patch-src_main.c (contents, props changed) Modified: head/net-p2p/shx/Makefile Modified: head/net-p2p/shx/Makefile ============================================================================== --- head/net-p2p/shx/Makefile Mon Sep 12 20:34:01 2016 (r421960) +++ head/net-p2p/shx/Makefile Mon Sep 12 20:36:54 2016 (r421961) @@ -27,46 +27,24 @@ HAL_DESC= Compile MegaHAL (enables hal XMMS_DESC= Enable trackname command NOIPV4_DESC= IPv6 support (disables IPv4 support) -USES= readline tar:tgz +USES= readline ssl tar:tgz MAKEFILE= makefile GNU_CONFIGURE= yes -CONFIGURE_ARGS= +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} -.include +CIPHER_IMPLIES= HOPE +COMPRESS_IMPLIES= HOPE -.if ${PORT_OPTIONS:MWARNINGS} -CONFIGURE_ARGS+= --enable-warnings -.endif - -.if ${PORT_OPTIONS:MHTXF_PTHREAD} -CONFIGURE_ARGS+= --enable-htxf-pthread -.endif - -.if ! ${PORT_OPTIONS:MHFS} -CONFIGURE_ARGS+= --disable-hfs -.endif - -.if ${PORT_OPTIONS:MHOPE} -CONFIGURE_ARGS+= --enable-hope -.if ${PORT_OPTIONS:MCIPHER} -CONFIGURE_ARGS+= --enable-cipher -.endif -.if ${PORT_OPTIONS:MCOMPRESS} -CONFIGURE_ARGS+= --enable-compress -.endif -.endif - -.if ${PORT_OPTIONS:MHAL} -CONFIGURE_ARGS+= --enable-hal -.endif - -.if ${PORT_OPTIONS:MXMMS} -CONFIGURE_ARGS+= --enable-xmms -.endif - -.if ${PORT_OPTIONS:MNOIPV4} -CONFIGURE_ARGS+= --enable-ipv6 -.endif +CIPHER_CONFIGURE_ENABLE= cipher +COMPRESS_CONFIGURE_ENABLE= compress +HAL_CONFIGURE_ENABLE= hal +HFS_CONFIGURE_ENABLE= hfs +HOPE_CONFIGURE_ENABLE= hope +HTXF_PTHREAD_CONFIGURE_ENABLE= htxf-pthread +NOIPV4_CONFIGURE_ENABLE= ipv6 +XMMS_CONFIGURE_ENABLE= xmms +WARNINGS_CONFIGURE_ENABLE= warnings PLIST_FILES= bin/hx \ share/examples/shx/hxrc \ Added: head/net-p2p/shx/files/patch-src_main.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/shx/files/patch-src_main.c Mon Sep 12 20:36:54 2016 (r421961) @@ -0,0 +1,20 @@ +--- src/main.c.orig 2002-12-17 19:28:19 UTC ++++ src/main.c +@@ -296,7 +296,7 @@ loopZ (void) + #if defined(CONFIG_CIPHER) + #include "cipher.h" + +-#if USE_OPENSSL ++#if USE_OPENSSL && !defined(OPENSSL_NO_EGD) + #include + + static char *egd_path = 0; +@@ -324,7 +324,7 @@ set_egd_path (char **egd_pathp, const ch + static void + cipher_init (void) + { +-#if USE_OPENSSL ++#if USE_OPENSSL && !defined(OPENSSL_NO_EGD) + variable_add(&egd_path, set_egd_path, "egd_path"); + #else + srand(getpid()*clock()); From owner-svn-ports-head@freebsd.org Mon Sep 12 20:41:22 2016 Return-Path: Delivered-To: svn-ports-head@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 14434BD8B14; Mon, 12 Sep 2016 20:41:22 +0000 (UTC) (envelope-from johans@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 BDB5CC74; Mon, 12 Sep 2016 20:41:21 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CKfKRm096123; Mon, 12 Sep 2016 20:41:20 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CKfKwD096120; Mon, 12 Sep 2016 20:41:20 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201609122041.u8CKfKwD096120@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Mon, 12 Sep 2016 20:41:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421962 - head/lang/gawk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 20:41:22 -0000 Author: johans Date: Mon Sep 12 20:41:20 2016 New Revision: 421962 URL: https://svnweb.freebsd.org/changeset/ports/421962 Log: Update to GNU awk 4.1.4 https://lists.gnu.org/archive/html/info-gnu/2016-08/msg00013.html Modified: head/lang/gawk/Makefile head/lang/gawk/distinfo head/lang/gawk/pkg-plist Modified: head/lang/gawk/Makefile ============================================================================== --- head/lang/gawk/Makefile Mon Sep 12 20:36:54 2016 (r421961) +++ head/lang/gawk/Makefile Mon Sep 12 20:41:20 2016 (r421962) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gawk -PORTVERSION= 4.1.3 -PORTREVISION= 2 +PORTVERSION= 4.1.4 CATEGORIES= lang MASTER_SITES= GNU Modified: head/lang/gawk/distinfo ============================================================================== --- head/lang/gawk/distinfo Mon Sep 12 20:36:54 2016 (r421961) +++ head/lang/gawk/distinfo Mon Sep 12 20:41:20 2016 (r421962) @@ -1,2 +1,3 @@ -SHA256 (gawk-4.1.3.tar.xz) = e3cf55e91e31ea2845f8338bedd91e40671fc30e4d82ea147d220e687abda625 -SIZE (gawk-4.1.3.tar.xz) = 2311268 +TIMESTAMP = 1473712485 +SHA256 (gawk-4.1.4.tar.xz) = 53e184e2d0f90def9207860531802456322be091c7b48f23fdc79cda65adc266 +SIZE (gawk-4.1.4.tar.xz) = 2367832 Modified: head/lang/gawk/pkg-plist ============================================================================== --- head/lang/gawk/pkg-plist Mon Sep 12 20:36:54 2016 (r421961) +++ head/lang/gawk/pkg-plist Mon Sep 12 20:41:20 2016 (r421962) @@ -59,6 +59,7 @@ share/awk/zerofile.awk %%NLS%%share/locale/es/LC_MESSAGES/gawk.mo %%NLS%%share/locale/fi/LC_MESSAGES/gawk.mo %%NLS%%share/locale/fr/LC_MESSAGES/gawk.mo +%%NLS%%share/locale/id/LC_MESSAGES/gawk.mo %%NLS%%share/locale/it/LC_MESSAGES/gawk.mo %%NLS%%share/locale/ja/LC_MESSAGES/gawk.mo %%NLS%%share/locale/ms/LC_MESSAGES/gawk.mo @@ -66,3 +67,4 @@ share/awk/zerofile.awk %%NLS%%share/locale/pl/LC_MESSAGES/gawk.mo %%NLS%%share/locale/sv/LC_MESSAGES/gawk.mo %%NLS%%share/locale/vi/LC_MESSAGES/gawk.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/gawk.mo From owner-svn-ports-head@freebsd.org Mon Sep 12 21:02:06 2016 Return-Path: Delivered-To: svn-ports-head@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 8FD64BD8E9C; Mon, 12 Sep 2016 21:02:06 +0000 (UTC) (envelope-from marino@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 6037A867; Mon, 12 Sep 2016 21:02:06 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CL25ls006281; Mon, 12 Sep 2016 21:02:05 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CL256K006280; Mon, 12 Sep 2016 21:02:05 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609122102.u8CL256K006280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 12 Sep 2016 21:02:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421963 - head/devel/libbobcat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 21:02:06 -0000 Author: marino Date: Mon Sep 12 21:02:05 2016 New Revision: 421963 URL: https://svnweb.freebsd.org/changeset/ports/421963 Log: devel/libbobcat: Set and honor SSL flags Approved by: SSL blanket Modified: head/devel/libbobcat/Makefile Modified: head/devel/libbobcat/Makefile ============================================================================== --- head/devel/libbobcat/Makefile Mon Sep 12 20:41:20 2016 (r421962) +++ head/devel/libbobcat/Makefile Mon Sep 12 21:02:05 2016 (r421963) @@ -26,7 +26,7 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}" USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/bobcat-${PORTVERSION} -USES= readline shebangfix +USES= readline shebangfix ssl SHEBANG_LANG= icmake icmake_OLD_CMD= /usr/bin/icmake @@ -49,12 +49,12 @@ post-patch: s|"-d"|"-Pp"| ; \ s|#define MANHTML|| ; \ s|g++|${CXX}| ; \ - s|Wall|Wall -D_GLIBCXX_USE_C99| ; \ + s|Wall|Wall -D_GLIBCXX_USE_C99 -I${OPENSSLINC}| ; \ s|gcc|${CC}|' \ ${WRKSRC}/INSTALL.im @${REINPLACE_CMD} -e 's|"cp -r |"cp -R |' \ ${WRKSRC}/icmake/install - @${REINPLACE_CMD} -e 's|-lssl|-lssl -L${LOCALBASE}/lib| ; \ + @${REINPLACE_CMD} -e 's|-lssl|-L${OPENSSLIB} -lssl| ; \ s|-lX11|-lX11 -L${LOCALBASE}/lib| ; \ s|-lmilter|-lmilter -lpthread|' \ ${WRKSRC}/icmake/special From owner-svn-ports-head@freebsd.org Mon Sep 12 21:55:08 2016 Return-Path: Delivered-To: svn-ports-head@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 50986BD2ED7; Mon, 12 Sep 2016 21:55:08 +0000 (UTC) (envelope-from olgeni@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 072311BA; Mon, 12 Sep 2016 21:55:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CLt7GX025917; Mon, 12 Sep 2016 21:55:07 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CLt7QN025914; Mon, 12 Sep 2016 21:55:07 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609122155.u8CLt7QN025914@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 12 Sep 2016 21:55:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421964 - head/devel/elixir-exprotobuf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 21:55:08 -0000 Author: olgeni Date: Mon Sep 12 21:55:06 2016 New Revision: 421964 URL: https://svnweb.freebsd.org/changeset/ports/421964 Log: Update devel/elixir-exprotobuf to version 1.2. Modified: head/devel/elixir-exprotobuf/Makefile head/devel/elixir-exprotobuf/distinfo head/devel/elixir-exprotobuf/pkg-plist Modified: head/devel/elixir-exprotobuf/Makefile ============================================================================== --- head/devel/elixir-exprotobuf/Makefile Mon Sep 12 21:02:05 2016 (r421963) +++ head/devel/elixir-exprotobuf/Makefile Mon Sep 12 21:55:06 2016 (r421964) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= exprotobuf -DISTVERSION= 1.1.0 +DISTVERSION= 1.2 CATEGORIES= devel PKGNAMEPREFIX= elixir- Modified: head/devel/elixir-exprotobuf/distinfo ============================================================================== --- head/devel/elixir-exprotobuf/distinfo Mon Sep 12 21:02:05 2016 (r421963) +++ head/devel/elixir-exprotobuf/distinfo Mon Sep 12 21:55:06 2016 (r421964) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469957112 -SHA256 (bitwalker-exprotobuf-1.1.0_GH0.tar.gz) = 0d87d99986a2bc9c02040c0bc64ece6a6c46fe1dc61b526101c5d404c935057c -SIZE (bitwalker-exprotobuf-1.1.0_GH0.tar.gz) = 21596 +TIMESTAMP = 1473714804 +SHA256 (bitwalker-exprotobuf-1.2_GH0.tar.gz) = 08070b45b56d25d0122282a3182a961f1b5c1339a67d9609a5a584624278b1d6 +SIZE (bitwalker-exprotobuf-1.2_GH0.tar.gz) = 22673 Modified: head/devel/elixir-exprotobuf/pkg-plist ============================================================================== --- head/devel/elixir-exprotobuf/pkg-plist Mon Sep 12 21:02:05 2016 (r421963) +++ head/devel/elixir-exprotobuf/pkg-plist Mon Sep 12 21:55:06 2016 (r421964) @@ -4,6 +4,7 @@ lib/elixir/lib/exprotobuf/ebin/Elixir.Pr lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.Decoder.beam lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.DefineEnum.beam lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.DefineMessage.beam +lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.Delimited.beam lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.Encoder.beam lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.Field.beam lib/elixir/lib/exprotobuf/ebin/Elixir.Protobuf.OneOfField.beam @@ -20,6 +21,7 @@ lib/elixir/lib/exprotobuf/lib/exprotobuf lib/elixir/lib/exprotobuf/lib/exprotobuf/decoder.ex lib/elixir/lib/exprotobuf/lib/exprotobuf/define_enum.ex lib/elixir/lib/exprotobuf/lib/exprotobuf/define_message.ex +lib/elixir/lib/exprotobuf/lib/exprotobuf/delimited.ex lib/elixir/lib/exprotobuf/lib/exprotobuf/encoder.ex lib/elixir/lib/exprotobuf/lib/exprotobuf/field.ex lib/elixir/lib/exprotobuf/lib/exprotobuf/one_of_field.ex From owner-svn-ports-head@freebsd.org Mon Sep 12 22:52:07 2016 Return-Path: Delivered-To: svn-ports-head@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 894B7BD79E2; Mon, 12 Sep 2016 22:52:07 +0000 (UTC) (envelope-from jkim@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 4F23FD3D; Mon, 12 Sep 2016 22:52:07 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CMq6d6046186; Mon, 12 Sep 2016 22:52:06 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CMq5fu046176; Mon, 12 Sep 2016 22:52:05 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609122252.u8CMq5fu046176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Mon, 12 Sep 2016 22:52:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421965 - in head/emulators: virtualbox-ose virtualbox-ose-additions virtualbox-ose-additions/files virtualbox-ose-kmod virtualbox-ose/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 22:52:07 -0000 Author: jkim Date: Mon Sep 12 22:52:05 2016 New Revision: 421965 URL: https://svnweb.freebsd.org/changeset/ports/421965 Log: Update to 5.1.6. Added: head/emulators/virtualbox-ose-additions/files/vboxvideo.conf (contents, props changed) Deleted: head/emulators/virtualbox-ose-additions/files/pkg-post-install.in head/emulators/virtualbox-ose-additions/files/pkg-pre-deinstall.in head/emulators/virtualbox-ose/files/patch-src_VBox_Devices_Audio_DrvHostOSSAudio.cpp Modified: head/emulators/virtualbox-ose-additions/Makefile head/emulators/virtualbox-ose-additions/distinfo head/emulators/virtualbox-ose-additions/pkg-plist head/emulators/virtualbox-ose-kmod/Makefile head/emulators/virtualbox-ose-kmod/distinfo head/emulators/virtualbox-ose/Makefile head/emulators/virtualbox-ose/distinfo head/emulators/virtualbox-ose/files/patch-configure Modified: head/emulators/virtualbox-ose-additions/Makefile ============================================================================== --- head/emulators/virtualbox-ose-additions/Makefile Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose-additions/Makefile Mon Sep 12 22:52:05 2016 (r421965) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -PORTVERSION= 5.1.4 +PORTVERSION= 5.1.6 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ PKGNAMESUFFIX= -additions @@ -76,9 +76,6 @@ MAKE_ARGS+= DEBUG_FLAGS="-O1 -g" .endif .if ${PORT_OPTIONS:MOPENGL} -PKGPOSTINSTALL= ${WRKDIR}/pkg-post-install -PKGPREDEINSTALL= ${WRKDIR}/pkg-pre-deinstall -SUB_FILES= pkg-post-install pkg-pre-deinstall USE_XORG= xcomposite xdamage xfixes USE_GL= gl VBOX_LIBS= VBoxEGL.so \ @@ -208,6 +205,8 @@ do-install: .endif .if ${PORT_OPTIONS:MOPENGL} + ${INSTALL_DATA} ${FILESDIR}/vboxvideo.conf \ + ${STAGEDIR}${PREFIX}/etc/libmap.d/ ${INSTALL_DATA} ${VBOX_LIBS:S|^|${VBOX_BIN}/|} \ ${STAGEDIR}${PREFIX}/lib/ .endif Modified: head/emulators/virtualbox-ose-additions/distinfo ============================================================================== --- head/emulators/virtualbox-ose-additions/distinfo Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose-additions/distinfo Mon Sep 12 22:52:05 2016 (r421965) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472243715 -SHA256 (VirtualBox-5.1.4.tar.bz2) = b9a14a7771059c55c44b97f8d4eef9bea84544f3e215e0caa563bc35e2f16aaf -SIZE (VirtualBox-5.1.4.tar.bz2) = 114642581 +TIMESTAMP = 1473714391 +SHA256 (VirtualBox-5.1.6.tar.bz2) = 2e0112b0d85841587b8f212e6ba8f6c35b31e1cce6b6999497dc917cd37e6911 +SIZE (VirtualBox-5.1.6.tar.bz2) = 114669517 Added: head/emulators/virtualbox-ose-additions/files/vboxvideo.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose-additions/files/vboxvideo.conf Mon Sep 12 22:52:05 2016 (r421965) @@ -0,0 +1,2 @@ +libEGL.so.1 VBoxEGL.so +libGL.so.1 VBoxOGL.so Modified: head/emulators/virtualbox-ose-additions/pkg-plist ============================================================================== --- head/emulators/virtualbox-ose-additions/pkg-plist Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose-additions/pkg-plist Mon Sep 12 22:52:05 2016 (r421965) @@ -1,5 +1,6 @@ %%X11%%bin/VBoxClient %%X11%%bin/VBoxClient-all +%%OPENGL%%etc/libmap.d/vboxvideo.conf %%X11%%etc/xdg/autostart/vboxclient.desktop %%OPENGL%%lib/VBoxEGL.so %%OPENGL%%lib/VBoxOGL.so Modified: head/emulators/virtualbox-ose-kmod/Makefile ============================================================================== --- head/emulators/virtualbox-ose-kmod/Makefile Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose-kmod/Makefile Mon Sep 12 22:52:05 2016 (r421965) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -PORTVERSION= 5.1.4 +PORTVERSION= 5.1.6 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ PKGNAMESUFFIX= -kmod Modified: head/emulators/virtualbox-ose-kmod/distinfo ============================================================================== --- head/emulators/virtualbox-ose-kmod/distinfo Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose-kmod/distinfo Mon Sep 12 22:52:05 2016 (r421965) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472243715 -SHA256 (VirtualBox-5.1.4.tar.bz2) = b9a14a7771059c55c44b97f8d4eef9bea84544f3e215e0caa563bc35e2f16aaf -SIZE (VirtualBox-5.1.4.tar.bz2) = 114642581 +TIMESTAMP = 1473714391 +SHA256 (VirtualBox-5.1.6.tar.bz2) = 2e0112b0d85841587b8f212e6ba8f6c35b31e1cce6b6999497dc917cd37e6911 +SIZE (VirtualBox-5.1.6.tar.bz2) = 114669517 Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose/Makefile Mon Sep 12 22:52:05 2016 (r421965) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -PORTVERSION= 5.1.4 +PORTVERSION= 5.1.6 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS} @@ -280,12 +280,6 @@ post-patch: ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_VALIDATIONKIT =' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_X11_ADDITIONS =' >> ${WRKSRC}/LocalConfig.kmk -.if empty(PORT_OPTIONS:MALSA) - @${ECHO} 'VBOX_WITH_AUDIO_ALSA =' >> ${WRKSRC}/LocalConfig.kmk -.endif -.if empty(PORT_OPTIONS:MPULSEAUDIO) - @${ECHO} 'VBOX_WITH_AUDIO_PULSE =' >> ${WRKSRC}/LocalConfig.kmk -.endif .if ${PORT_OPTIONS:MQT4} @${ECHO} 'TOOL_QT4_BIN_SUFF = -qt4' >> ${WRKSRC}/LocalConfig.kmk .endif Modified: head/emulators/virtualbox-ose/distinfo ============================================================================== --- head/emulators/virtualbox-ose/distinfo Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose/distinfo Mon Sep 12 22:52:05 2016 (r421965) @@ -1,5 +1,5 @@ -TIMESTAMP = 1472243715 -SHA256 (VirtualBox-5.1.4.tar.bz2) = b9a14a7771059c55c44b97f8d4eef9bea84544f3e215e0caa563bc35e2f16aaf -SIZE (VirtualBox-5.1.4.tar.bz2) = 114642581 -SHA256 (VBoxGuestAdditions_5.1.4.iso) = e385b698338003595f6cdeee7b631ec6713058ba1227d1f2a1da342bdf741982 -SIZE (VBoxGuestAdditions_5.1.4.iso) = 59262976 +TIMESTAMP = 1473714391 +SHA256 (VirtualBox-5.1.6.tar.bz2) = 2e0112b0d85841587b8f212e6ba8f6c35b31e1cce6b6999497dc917cd37e6911 +SIZE (VirtualBox-5.1.6.tar.bz2) = 114669517 +SHA256 (VBoxGuestAdditions_5.1.6.iso) = cbcf9b9b1000e09911b3d20e1efe529aef8a945cf130f6abffc14a39522cc1ed +SIZE (VBoxGuestAdditions_5.1.6.iso) = 59258880 Modified: head/emulators/virtualbox-ose/files/patch-configure ============================================================================== --- head/emulators/virtualbox-ose/files/patch-configure Mon Sep 12 21:55:06 2016 (r421964) +++ head/emulators/virtualbox-ose/files/patch-configure Mon Sep 12 22:52:05 2016 (r421965) @@ -1,4 +1,4 @@ ---- configure.orig 2016-08-16 19:55:20 UTC +--- configure.orig 2016-09-12 16:11:24 UTC +++ configure @@ -140,10 +140,14 @@ CXX_FLAGS="" if [ "$OS" = "freebsd" ]; then @@ -54,7 +54,7 @@ ;; --with-ow-dir=*) WATCOM=`echo $option | cut -d'=' -f2` -@@ -2942,8 +2949,15 @@ if [ $ONLY_ADDITIONS -eq 0 ]; then +@@ -2944,13 +2951,20 @@ if [ $ONLY_ADDITIONS -eq 0 ]; then [ $WITH_PYTHON -eq 1 ] && check_python [ $WITH_JAVA -eq 1 ] && check_java @@ -63,22 +63,27 @@ + if [ $WITH_ALSA -eq 1 ]; then + check_alsa + else -+ cnf_append "VBOX_WITH_ALSA" "" -+ fi -+ if [ $WITH_DBUS -eq 0 ]; then -+ cnf_append "VBOX_WITH_DBUS" "" ++ cnf_append "VBOX_WITH_AUDIO_ALSA" "" + fi if [ $WITH_PULSE -eq 1 ]; then check_pulse elif [ $WITH_PULSE -eq 0 ]; then -@@ -2965,14 +2979,6 @@ if [ "$OS" = "linux" ]; then + cnf_append "VBOX_WITH_AUDIO_PULSE" "" + fi ++ if [ $WITH_DBUS -eq 0 ]; then ++ cnf_append "VBOX_WITH_DBUS" "" ++ fi + fi + fi + +@@ -2967,14 +2981,6 @@ if [ "$OS" = "linux" ]; then cnf_append "VBOX_WITH_ADDITION_DRIVERS" "" fi if [ $ONLY_ADDITIONS -eq 0 ]; then - if [ $WITH_ALSA -eq 1 ]; then - check_alsa - else -- cnf_append "VBOX_WITH_ALSA" "" +- cnf_append "VBOX_WITH_AUDIO_ALSA" "" - fi - if [ $WITH_DBUS -eq 0 ]; then - cnf_append "VBOX_WITH_DBUS" "" From owner-svn-ports-head@freebsd.org Mon Sep 12 23:05:24 2016 Return-Path: Delivered-To: svn-ports-head@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 02425BD7CE4; Mon, 12 Sep 2016 23:05:24 +0000 (UTC) (envelope-from mandree@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 B80D03C7; Mon, 12 Sep 2016 23:05:23 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8CN5MwE052429; Mon, 12 Sep 2016 23:05:22 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8CN5Mbw052427; Mon, 12 Sep 2016 23:05:22 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201609122305.u8CN5Mbw052427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 12 Sep 2016 23:05:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421966 - in head/sysutils/e2fsprogs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 23:05:24 -0000 Author: mandree Date: Mon Sep 12 23:05:22 2016 New Revision: 421966 URL: https://svnweb.freebsd.org/changeset/ports/421966 Log: Fix bounced I/O on unaligned buffers (FreeBSD 11+) The bounce-buffer I/O driver fix in patch-lib_ext2fs_unix__io.c is a prototypical fix, and has been forwarded upstream, but it permits us to pass all self-tests (mostly undo-related) that were still failing on 11.0-RC2 amd64. There is some potential for optimization, posix_memalign() might save us quite a few memcpy() calls and replace the now-repaired code paths by a simple pread[64]() or pwrite[64](). Remove BROKEN, but insist (by setting BROKEN conditionally) on anything that is FreeBSD 11 or newer, or non-i386/non-amd64, that the user runs at least the small self-tests. Revise option descriptions a bit. Bump PORTREVISION. Modified: head/sysutils/e2fsprogs/Makefile head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Mon Sep 12 22:52:05 2016 (r421965) +++ head/sysutils/e2fsprogs/Makefile Mon Sep 12 23:05:22 2016 (r421966) @@ -3,7 +3,7 @@ PORTNAME= e2fsprogs PORTVERSION= 1.43.3 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -38,9 +38,9 @@ OPTIONS_SINGLE= SELFTEST OPTIONS_SINGLE_SELFTEST= NOTESTS SMALLTESTS ALLTESTS OPTIONS_DEFAULT= SMALLTESTS SELFTEST_DESC= Choose which set of self-tests to run -NOTESTS_DESC= Do not run any self-tests (DISCOURAGED) -SMALLTESTS_DESC=Run sets that fit into 500 MB disk space (DEFAULT) -ALLTESTS_DESC= Run all self-tests +NOTESTS_DESC= Do not run any self-tests (only Tier-1 & DISCOURAGED) +SMALLTESTS_DESC=Run tests that fit into 500 MB disk space (DEFAULT) +ALLTESTS_DESC= Run most self-tests (requires more RAM & disk space) PARALLELTESTS_DESC= Run self-tests in parallel (requires more disk space) post-extract: @@ -136,19 +136,13 @@ post-patch:: .endfor .endif .endif -# XXX remove these on the next revision -.if ${MASTERDIR} == ${.CURDIR} && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 && ${PORTVERSION} == 1.43.3 && ${PORTREVISION} == 2 -.for i in u_mke2fs_opt_oddsize u_mke2fs_opt_offset - @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} -.endfor -.endif # Master port stuff that is not to be seen by the slave ports. .if ${MASTERDIR} == ${.CURDIR} # NOTE: The previous .if block goes all the way to the end of the file. -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 -BROKEN=Not ready for production on FreeBSD 11+, some e2undo cases are still failing. +.if !empty(PORT_OPTIONS:MNOTESTS) && (${OPSYS} == FreeBSD) && (${OSVERSION} >= 1100000 || ((${ARCH} != i386) && (${ARCH} != amd64))) +BROKEN=e2fsprogs has not been tested on your system by the maintainer. You must run self-tests. .endif pre-build: Modified: head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c ============================================================================== --- head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Mon Sep 12 22:52:05 2016 (r421965) +++ head/sysutils/e2fsprogs/files/patch-lib_ext2fs_unix__io.c Mon Sep 12 23:05:22 2016 (r421966) @@ -1,19 +1,56 @@ -commit d6cad379eb6c86ca58bf5b83a586577de412a2e6 -Author: Theodore Ts'o -Date: Sun Sep 11 00:25:48 2016 -0400 - - libext2fs: fix unaligned, multiblock writes in the unix_io handler - - The read-modify-write code for the unaligned fallback code wasn't - working for multi-block writes. This was unmasked by FreeBSD 11-rc2, - since its malloc() is returning unaligned memory regions for large - memory regions. - - Signed-off-by: Theodore Ts'o - --- lib/ext2fs/unix_io.c.orig 2016-09-02 04:17:32 UTC +++ lib/ext2fs/unix_io.c -@@ -300,6 +300,7 @@ static errcode_t raw_write_blk(io_channe +@@ -188,16 +188,24 @@ static errcode_t raw_read_blk(io_channel + * The buffer or size which we're trying to read isn't aligned + * to the O_DIRECT rules, so we need to do this the hard way... + */ +- while (size > 0) { +- actual = read(data->dev, data->bounce, channel->block_size); +- if (actual != channel->block_size) +- goto short_read; +- actual = size; +- if (size > channel->block_size) +- actual = channel->block_size; +- memcpy(buf, data->bounce, actual); +- size -= actual; +- buf += actual; ++ { ++ ssize_t really_read = 0; ++ while (size > 0) { ++ actual = read(data->dev, data->bounce, channel->block_size); ++ if (actual != channel->block_size) { ++ actual = really_read; ++ buf -= really_read; ++ size += really_read; ++ goto short_read; ++ } ++ actual = size; ++ if (size > channel->block_size) ++ actual = channel->block_size; ++ memcpy(buf, data->bounce, actual); ++ really_read += actual; ++ size -= actual; ++ buf += actual; ++ } + } + return 0; + +@@ -283,8 +291,12 @@ static errcode_t raw_write_blk(io_channe + actual = read(data->dev, data->bounce, + channel->block_size); + if (actual != channel->block_size) { +- retval = EXT2_ET_SHORT_READ; +- goto error_out; ++ if (actual >= 0) { ++ memset(data->bounce + actual, 0, channel->block_size - actual); ++ } else { ++ retval = EXT2_ET_SHORT_READ; ++ goto error_out; ++ } + } + } + actual = size; +@@ -300,6 +312,7 @@ static errcode_t raw_write_blk(io_channe goto short_write; size -= actual; buf += actual; From owner-svn-ports-head@freebsd.org Tue Sep 13 00:49:14 2016 Return-Path: Delivered-To: svn-ports-head@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 0FC41BD8EC9; Tue, 13 Sep 2016 00:49:14 +0000 (UTC) (envelope-from marino@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 C4D28EAB; Tue, 13 Sep 2016 00:49:13 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D0nDkK089263; Tue, 13 Sep 2016 00:49:13 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D0nDOA089262; Tue, 13 Sep 2016 00:49:13 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130049.u8D0nDOA089262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 00:49:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421967 - head/devel/hadoop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 00:49:14 -0000 Author: marino Date: Tue Sep 13 00:49:12 2016 New Revision: 421967 URL: https://svnweb.freebsd.org/changeset/ports/421967 Log: devel/hadoop: Unbreak build (nominal case) The ssl.mk helper can augment the MAKE_ARGS variable with a OPENSSL_CFLAGS definition which just happens to break this port. Add a filter to remove any such definitions if they occur. The issue was introduced when USES+=ssl was added to the makefile to document the SSL requirement. Modified: head/devel/hadoop/Makefile Modified: head/devel/hadoop/Makefile ============================================================================== --- head/devel/hadoop/Makefile Mon Sep 12 23:05:22 2016 (r421966) +++ head/devel/hadoop/Makefile Tue Sep 13 00:49:12 2016 (r421967) @@ -78,7 +78,11 @@ MAKE_ARGS= -Dbuild.classes=${WRKSRC}/had -Dcompile.c++=true -Dmake.cmd=gmake -Dlibhdfs=1 -Dlibrecordio=true -Dskip.record-parser=true ALL_TARGET= compile-core-native compile-c++ compile-c++-libhdfs compile-c++-pipes compile-c++-utils -.include +.include + +# The ssl.mk helper can augment MAKE_ARGS and break the build. Filter out +# the OPENSSL_CFLAGS if it exists to prevent that from happening. +MAKE_ARGS:= ${MAKE_ARGS:NOPENSSL_CFLAGS=*} .if ${ARCH} == "amd64" _HADOOP_ARCH= FreeBSD-amd64-64 @@ -142,4 +146,4 @@ do-install-DOCS-on: ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 01:28:21 2016 Return-Path: Delivered-To: svn-ports-head@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 7424BBD786B; Tue, 13 Sep 2016 01:28:21 +0000 (UTC) (envelope-from marino@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 3810EFB0; Tue, 13 Sep 2016 01:28:21 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D1SKjG004260; Tue, 13 Sep 2016 01:28:20 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D1SKgG004258; Tue, 13 Sep 2016 01:28:20 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130128.u8D1SKgG004258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 01:28:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421968 - in head/security/opencryptoki: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 01:28:21 -0000 Author: marino Date: Tue Sep 13 01:28:20 2016 New Revision: 421968 URL: https://svnweb.freebsd.org/changeset/ports/421968 Log: security/opencryptoki: Fix build with LIbreSSL (old DES functions) The referenced PR is related but overcome by the import of the latest version of opencryptoki. PR: 198351 Approved by: SSL blanket Added: head/security/opencryptoki/files/patch-usr_lib_pkcs11_common_sw__crypt.c (contents, props changed) Modified: head/security/opencryptoki/Makefile Modified: head/security/opencryptoki/Makefile ============================================================================== --- head/security/opencryptoki/Makefile Tue Sep 13 00:49:12 2016 (r421967) +++ head/security/opencryptoki/Makefile Tue Sep 13 01:28:20 2016 (r421968) @@ -17,9 +17,8 @@ LICENSE_PERMS= dist-mirror dist-sell pkg LIB_DEPENDS= libtspi.so:security/trousers -USES= alias autoreconf gmake libtool tar:tgz +USES= alias autoreconf gmake libtool ssl tar:tgz USE_LDCONFIG= ${PREFIX}/lib/opencryptoki -USE_OPENSSL= yes .if exists(/usr/include/openssl/md2.h) WITH_OPENSSL_PORT=yes .endif Added: head/security/opencryptoki/files/patch-usr_lib_pkcs11_common_sw__crypt.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/opencryptoki/files/patch-usr_lib_pkcs11_common_sw__crypt.c Tue Sep 13 01:28:20 2016 (r421968) @@ -0,0 +1,62 @@ +--- usr/lib/pkcs11/common/sw_crypt.c.orig 2016-04-29 17:26:46 UTC ++++ usr/lib/pkcs11/common/sw_crypt.c +@@ -309,12 +309,12 @@ sw_des3_cbc(CK_BYTE * in_data, + CK_BYTE *key_value, + CK_BYTE encrypt) + { +- des_key_schedule des_key1; +- des_key_schedule des_key2; +- des_key_schedule des_key3; ++ DES_key_schedule des_key1; ++ DES_key_schedule des_key2; ++ DES_key_schedule des_key3; + +- const_des_cblock key_SSL1, key_SSL2, key_SSL3; +- des_cblock ivec; ++ const_DES_cblock key_SSL1, key_SSL2, key_SSL3; ++ DES_cblock ivec; + + // the des decrypt will only fail if the data length is not evenly divisible + // by 8 +@@ -328,30 +328,30 @@ sw_des3_cbc(CK_BYTE * in_data, + memcpy(&key_SSL1, key_value, (size_t)8); + memcpy(&key_SSL2, key_value+8, (size_t)8); + memcpy(&key_SSL3, key_value+16, (size_t)8); +- des_set_key_unchecked(&key_SSL1, des_key1); +- des_set_key_unchecked(&key_SSL2, des_key2); +- des_set_key_unchecked(&key_SSL3, des_key3); ++ DES_set_key_unchecked(&key_SSL1, &des_key1); ++ DES_set_key_unchecked(&key_SSL2, &des_key2); ++ DES_set_key_unchecked(&key_SSL3, &des_key3); + + memcpy(ivec, init_v, sizeof(ivec)); + + // Encrypt or decrypt the data + if (encrypt) { +- des_ede3_cbc_encrypt(in_data, ++ DES_ede3_cbc_encrypt(in_data, + out_data, + in_data_len, +- des_key1, +- des_key2, +- des_key3, ++ &des_key1, ++ &des_key2, ++ &des_key3, + &ivec, + DES_ENCRYPT); + *out_data_len = in_data_len; + } else { +- des_ede3_cbc_encrypt(in_data, ++ DES_ede3_cbc_encrypt(in_data, + out_data, + in_data_len, +- des_key1, +- des_key2, +- des_key3, ++ &des_key1, ++ &des_key2, ++ &des_key3, + &ivec, + DES_DECRYPT); + From owner-svn-ports-head@freebsd.org Tue Sep 13 01:58:38 2016 Return-Path: Delivered-To: svn-ports-head@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 0FF3CBD838F; Tue, 13 Sep 2016 01:58:38 +0000 (UTC) (envelope-from marino@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 D710AF50; Tue, 13 Sep 2016 01:58:37 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D1wbGn015701; Tue, 13 Sep 2016 01:58:37 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D1wbJr015700; Tue, 13 Sep 2016 01:58:37 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130158.u8D1wbJr015700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 01:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421969 - head/security/amap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 01:58:38 -0000 Author: marino Date: Tue Sep 13 01:58:36 2016 New Revision: 421969 URL: https://svnweb.freebsd.org/changeset/ports/421969 Log: security/amap: configure SSL base properly Approved by: SSL blanket Modified: head/security/amap/Makefile Modified: head/security/amap/Makefile ============================================================================== --- head/security/amap/Makefile Tue Sep 13 01:28:20 2016 (r421968) +++ head/security/amap/Makefile Tue Sep 13 01:58:36 2016 (r421969) @@ -10,11 +10,14 @@ MASTER_SITES= PACKETSTORM/groups/thc MAINTAINER= onatan@gmail.com COMMENT= Application mapper +USES= ssl HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} -MAKE_JOBS_UNSAFE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} \ + SSL_PATH=${OPENSSLLIB} \ + CRYPTO_PATH=${OPENSSLIB} \ + SSL_IPATH=${OPENSSLINC} -USE_OPENSSL= yes +MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= DOCS PORTDOCS= README TODO CHANGES AMAP-LIB-INTERFACE From owner-svn-ports-head@freebsd.org Tue Sep 13 02:02:26 2016 Return-Path: Delivered-To: svn-ports-head@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 B2EAABD8730; Tue, 13 Sep 2016 02:02:26 +0000 (UTC) (envelope-from stephen@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 81E64130F; Tue, 13 Sep 2016 02:02:26 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D22Pqk019254; Tue, 13 Sep 2016 02:02:25 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D22PZW019251; Tue, 13 Sep 2016 02:02:25 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201609130202.u8D22PZW019251@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 13 Sep 2016 02:02:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421970 - head/math/octave-forge-queueing X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 02:02:26 -0000 Author: stephen Date: Tue Sep 13 02:02:25 2016 New Revision: 421970 URL: https://svnweb.freebsd.org/changeset/ports/421970 Log: - Update to 1.2.4. Modified: head/math/octave-forge-queueing/Makefile head/math/octave-forge-queueing/distinfo Modified: head/math/octave-forge-queueing/Makefile ============================================================================== --- head/math/octave-forge-queueing/Makefile Tue Sep 13 01:58:36 2016 (r421969) +++ head/math/octave-forge-queueing/Makefile Tue Sep 13 02:02:25 2016 (r421970) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-queueing -PORTVERSION= 1.2.3 -PORTREVISION= 2 +PORTVERSION= 1.2.4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-queueing/distinfo ============================================================================== --- head/math/octave-forge-queueing/distinfo Tue Sep 13 01:58:36 2016 (r421969) +++ head/math/octave-forge-queueing/distinfo Tue Sep 13 02:02:25 2016 (r421970) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/queueing-1.2.3.tar.gz) = 6bfd93f5630326a0525cd1e9c6e5ff60462a31a80ed4862a73f97b9c7218b0ef -SIZE (octave-forge/queueing-1.2.3.tar.gz) = 842753 +TIMESTAMP = 1473732020 +SHA256 (octave-forge/queueing-1.2.4.tar.gz) = 19cffaf8bc7f6fa8705195680543e9bcacff92e9480a1e54c8617604d89536ea +SIZE (octave-forge/queueing-1.2.4.tar.gz) = 936997 From owner-svn-ports-head@freebsd.org Tue Sep 13 02:28:29 2016 Return-Path: Delivered-To: svn-ports-head@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 5200FBD8C80; Tue, 13 Sep 2016 02:28:29 +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 24E151BFB; Tue, 13 Sep 2016 02:28:29 +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 u8D2SSf0026843; Tue, 13 Sep 2016 02:28:28 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D2SS5A026841; Tue, 13 Sep 2016 02:28:28 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609130228.u8D2SS5A026841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 13 Sep 2016 02:28:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421971 - head/math/R-cran-SuppDists X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 02:28:29 -0000 Author: wen Date: Tue Sep 13 02:28:28 2016 New Revision: 421971 URL: https://svnweb.freebsd.org/changeset/ports/421971 Log: - Update to 1.1.9.2 Modified: head/math/R-cran-SuppDists/Makefile head/math/R-cran-SuppDists/distinfo Modified: head/math/R-cran-SuppDists/Makefile ============================================================================== --- head/math/R-cran-SuppDists/Makefile Tue Sep 13 02:02:25 2016 (r421970) +++ head/math/R-cran-SuppDists/Makefile Tue Sep 13 02:28:28 2016 (r421971) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= SuppDists -DISTVERSION= 1.1-9.1 -PORTREVISION= 2 +DISTVERSION= 1.1-9.2 CATEGORIES= math MASTER_SITES= CRAN \ http://r.research.att.com/benchmarks/:benchmark \ Modified: head/math/R-cran-SuppDists/distinfo ============================================================================== --- head/math/R-cran-SuppDists/distinfo Tue Sep 13 02:02:25 2016 (r421970) +++ head/math/R-cran-SuppDists/distinfo Tue Sep 13 02:28:28 2016 (r421971) @@ -1,4 +1,5 @@ -SHA256 (SuppDists_1.1-9.1.tar.gz) = faa0cfabefd1a5125bad87ca75173921abc4f9bc083eb29a3e8c2ef969d81acb -SIZE (SuppDists_1.1-9.1.tar.gz) = 139923 -SHA256 (R-benchmark-25.R) = d6981df89743d4ac6c032bcb354f33d6f03e17ab35b95e684c07e510eb218923 -SIZE (R-benchmark-25.R) = 13630 +TIMESTAMP = 1473650359 +SHA256 (SuppDists_1.1-9.2.tar.gz) = f0cc599ca9457c22e6e8fdb3fd3ee8b94d3221a5e00904fba5f142929c0c765e +SIZE (SuppDists_1.1-9.2.tar.gz) = 139985 +SHA256 (R-benchmark-25.R) = c7f694280efb6a223ed6da235ff4355d1b8bf0b62a781ef70867e1576bcdb0f8 +SIZE (R-benchmark-25.R) = 13666 From owner-svn-ports-head@freebsd.org Tue Sep 13 02:58:05 2016 Return-Path: Delivered-To: svn-ports-head@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 52821BD8217; Tue, 13 Sep 2016 02:58:05 +0000 (UTC) (envelope-from marino@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 132BC81F; Tue, 13 Sep 2016 02:58:05 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D2w496038084; Tue, 13 Sep 2016 02:58:04 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D2w4WH038081; Tue, 13 Sep 2016 02:58:04 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130258.u8D2w4WH038081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 02:58:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421972 - in head/security/bro: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 02:58:05 -0000 Author: marino Date: Tue Sep 13 02:58:03 2016 New Revision: 421972 URL: https://svnweb.freebsd.org/changeset/ports/421972 Log: securty/bro: Modernize options, remove Ports SSL option, support LibreSSL The "build with Ports SSL" option is no longer valid. The SSL library is selected through the SSL_DEFAULT value. While removing the PORTS_SSL option, modernize the entire set of options under the general infrastructure blanket. The SSL work, including the support for LibreSSL was done under the SSL blanket. Added: head/security/bro/files/patch-aux_broccoli_src_bro__openssl.c (contents, props changed) head/security/bro/files/patch-src_ChunkedIO.cc (contents, props changed) Modified: head/security/bro/Makefile Modified: head/security/bro/Makefile ============================================================================== --- head/security/bro/Makefile Tue Sep 13 02:28:28 2016 (r421971) +++ head/security/bro/Makefile Tue Sep 13 02:58:03 2016 (r421972) @@ -3,6 +3,7 @@ PORTNAME= bro PORTVERSION= 2.4.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.bro.org/downloads/release/ @@ -17,7 +18,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/bison:de ${LOCALBASE}/bin/swig:devel/swig13 LIB_DEPENDS= libGeoIP.so:net/GeoIP -USES= cmake:outsource compiler:c++11-lang perl5 python +USES= cmake:outsource compiler:c++11-lang perl5 python ssl CMAKE_ARGS+= -D PYTHON_EXECUTABLE:PATH=${PYTHON_CMD} CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic @@ -41,7 +42,8 @@ CMAKE_ARGS+= -D CMAKE_INSTALL_PREFIX:PAT -D ENABLE_PERFTOOLS_DEBUG:BOOL=false \ -D BinPAC_SKIP_INSTALL:BOOL=true \ -D INSTALL_AUX_TOOLS:BOOL=true \ - -D BUILD_SHARED_LIBS:BOOL=true + -D BUILD_SHARED_LIBS:BOOL=true \ + -D CMAKE_EXE_LINKER_FLAGS="${OPENSSL_LDFLAGS}" BROUSER?= bro BROGROUP?= bro @@ -51,100 +53,48 @@ PLIST_SUB+= BROUSER=${BROUSER} \ USERS= ${BROUSER} GROUPS= ${BROGROUP} -USE_OPENSSL= yes - -OPTIONS_DEFINE= BROCCOLI BROCTL BROKER DEBUG IPSUMDUMP LBL_CF LBL_HF PERFTOOLS PORTS_SSL -OPTIONS_DEFAULT=BROCCOLI BROCTL IPSUMDUMP LBL_CF LBL_HF PORTS_SSL +OPTIONS_DEFINE= BROCCOLI BROCTL BROKER DEBUG IPSUMDUMP LBL_CF LBL_HF PERFTOOLS +OPTIONS_DEFAULT=BROCCOLI BROCTL IPSUMDUMP LBL_CF LBL_HF +OPTIONS_SUB= yes BROCCOLI_DESC= Build support for libbroccoli communications -BROCTL_DESC= Build BroControl support (requires BROCCOLI) +BROCTL_DESC= BroControl support (implies BROCCOLI and IPSUMDUMP) BROKER_DESC= Enable the Broker communication library DEBUG_DESC= Compile in debugging mode IPSUMDUMP_DESC= Enables traffic summaries LBL_CF_DESC= Unix time to formated time/date filter support LBL_HF_DESC= Address to hostname filter support PERFTOOLS_DESC= Use Perftools to improve memory & CPU usage -PORTS_SSL_DESC= Build with OpenSSL from ports (instead of base system) - -OPTIONS_EXCLUDE=NLS DOCS -PORTS_SSL_VARS= WITH_OPENSSL_PORT=yes +BROCTL_IMPLIES= BROCCOLI IPSUMDUMP -.include - -.if ${PORT_OPTIONS:MBROCCOLI} -LIB_DEPENDS+= libbroccoli.so:security/broccoli -.endif +BROCCOLI_LIB_DEPENDS= libbroccoli.so:security/broccoli +BROCTL_BUILD_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 +BROCTL_RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 +BROCTL_CMAKE_BOOL= INSTALL_BROCTL +BROCTL_USE= LDCONFIG=yes +IPSUMDUMP_BUILD_DEPENDS=ipsumdump:net/ipsumdump +IPSUMDUMP_RUN_DEPENDS= ipsumdump:net/ipsumdump +BROKER_CMAKE_BOOL= ENABLE_BROKER +BROKER_BUILD_DEPENDS= caf>=0.14.1:devel/caf +DEBUG_CMAKE_BOOL= ENABLE_DEBUG +LBL_HF_RUN_DEPENDS= ${LOCALBASE}/bin/hf:sysutils/lbl-hf +LBL_CF_RUN_DEPENDS= ${LOCALBASE}/bin/cf:sysutils/lbl-cf +PERFTOOLS_CMAKE_BOOL= ENABLE_PERFTOOLS +PERFTOOLS_RUN_DEPENDS= ${LOCALBASE}/bin/pprof:devel/google-perftools -.if ${PORT_OPTIONS:MBROCTL} -.if empty(PORT_OPTIONS:MBROCCOLI) -IGNORE= the BROCTL option requires BROCCOLI -.endif -.if empty(PORT_OPTIONS:MIPSUMDUMP) -IGNORE= the BROCTL option requires IPSUMDUMP -.endif -BUILD_DEPENDS+= ${LOCALBASE}/bin/bash:shells/bash \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 -RUN_DEPENDS+= ${LOCALBASE}/bin/bash:shells/bash \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 -PLIST_SUB+= BROCTL="" -USE_LDCONFIG= yes -CMAKE_ARGS+= -D INSTALL_BROCTL:BOOL=true -.else -CMAKE_ARGS+= -D INSTALL_BROCTL:BOOL=false -PLIST_SUB+= BROCTL="@comment " -.endif +.include .if ${PORT_OPTIONS:MBROKER} -CMAKE_ARGS+= -D ENABLE_BROKER:BOOL=true -BUILD_DEPENDS+= caf>=0.14.1:devel/caf -PLIST_SUB+= BROKER="" - -.if ${OSVERSION} < 1001000 +. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000 # Bro 2.4 with BROKER requires caf, clang and libc++ BUILD_DEPENDS+= ${LOCALBASE}/bin/clang++34:lang/clang34 \ ${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++ - CXXFLAGS+= -stdlib=libc++ -I${LOCALBASE}/include/c++/v1 -L${LOCALBASE}/lib CXX= ${LOCALBASE}/bin/clang++34 -.endif -.else -CMAKE_ARGS+= -D ENABLE_BROKER:BOOL=false -PLIST_SUB+= BROKER="@comment " -.endif - -.if ${PORT_OPTIONS:MDEBUG} -CMAKE_ARGS+= -D ENABLE_DEBUG:BOOL=true -.else -CMAKE_ARGS+= -D ENABLE_DEBUG:BOOL=false -.endif - -.if ${PORT_OPTIONS:MLBL_HF} -RUN_DEPENDS+= ${LOCALBASE}/bin/hf:sysutils/lbl-hf -.endif - -.if ${PORT_OPTIONS:MLBL_CF} -RUN_DEPENDS+= ${LOCALBASE}/bin/cf:sysutils/lbl-cf -.endif - -.if ${PORT_OPTIONS:MPERFTOOLS} -CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=true -RUN_DEPENDS+= ${LOCALBASE}/bin/pprof:devel/google-perftools -.else -CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=false -.endif - -.if ${PORT_OPTIONS:MPORTS_SSL} -CMAKE_ARGS+= -D CMAKE_EXE_LINKER_FLAGS="${OPENSSL_LDFLAGS}" -.else -.if ${SSL_DEFAULT} != base -IGNORE= the SSL option is requred when using SSL from ports -.endif -.endif - -.if ${PORT_OPTIONS:MIPSUMDUMP} -BUILD_DEPENDS+= ipsumdump:net/ipsumdump -RUN_DEPENDS+= ipsumdump:net/ipsumdump +. endif .endif post-install-BROCTL-on: @@ -156,4 +106,4 @@ post-install-BROCTL-on: @${MV} ${STAGEDIR}${PREFIX}/etc/${F} ${STAGEDIR}${PREFIX}/etc/${F}.example .endfor -.include +.include Added: head/security/bro/files/patch-aux_broccoli_src_bro__openssl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/bro/files/patch-aux_broccoli_src_bro__openssl.c Tue Sep 13 02:58:03 2016 (r421972) @@ -0,0 +1,14 @@ +--- aux/broccoli/src/bro_openssl.c.orig 2015-09-06 19:43:23 UTC ++++ aux/broccoli/src/bro_openssl.c +@@ -302,7 +302,11 @@ __bro_openssl_init(void) + * to set up an SSL connection now and abort if this fails in any way. + */ + ++#ifndef OPENSSL_NO_SSL3 + if (! (ctx = SSL_CTX_new(SSLv3_method()))) ++#else ++ if (! (ctx = SSL_CTX_new(SSLv23_method()))) ++#endif + D_RETURN_(FALSE); + + /* We expect things to be stored in PEM format, which means that we Added: head/security/bro/files/patch-src_ChunkedIO.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/bro/files/patch-src_ChunkedIO.cc Tue Sep 13 02:58:03 2016 (r421972) @@ -0,0 +1,14 @@ +--- src/ChunkedIO.cc.orig 2015-09-06 19:43:16 UTC ++++ src/ChunkedIO.cc +@@ -709,7 +709,11 @@ bool ChunkedIOSSL::Init() + { + SSL_load_error_strings(); + ++#ifndef OPENSSL_NO_SSL3 + ctx = SSL_CTX_new(SSLv3_method()); ++#else ++ ctx = SSL_CTX_new(SSLv23_method()); ++#endif + if ( ! ctx ) + { + Log("can't create SSL context"); From owner-svn-ports-head@freebsd.org Tue Sep 13 03:20:23 2016 Return-Path: Delivered-To: svn-ports-head@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 C35E2BD8881; Tue, 13 Sep 2016 03:20:23 +0000 (UTC) (envelope-from marino@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 9390B77A; Tue, 13 Sep 2016 03:20:23 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D3KMVH046453; Tue, 13 Sep 2016 03:20:22 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D3KMtc046452; Tue, 13 Sep 2016 03:20:22 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130320.u8D3KMtc046452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 03:20:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421973 - head/www/gatling X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 03:20:23 -0000 Author: marino Date: Tue Sep 13 03:20:22 2016 New Revision: 421973 URL: https://svnweb.freebsd.org/changeset/ports/421973 Log: www/gatling: Set and honor SSL flags Approved by: SSL blanket Modified: head/www/gatling/Makefile Modified: head/www/gatling/Makefile ============================================================================== --- head/www/gatling/Makefile Tue Sep 13 02:58:03 2016 (r421972) +++ head/www/gatling/Makefile Tue Sep 13 03:20:22 2016 (r421973) @@ -13,8 +13,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= libowfat>=0.29:devel/libowfat -USES= gmake tar:bzip2 -USE_OPENSSL= yes +USES= gmake ssl tar:bzip2 USE_RC_SUBR= gatling CFLAGS+= -I${LOCALBASE}/include/libowfat -I${OPENSSLINC} -I${LOCALBASE}/include @@ -82,6 +81,10 @@ STRIP= PLIST_FILES+= ${bin:S,^,bin/,} ${sbin:S,^,sbin/,} sbin/gatling_wrapper +post-patch: + ${REINPLACE_CMD} -e 's/\(trymd5.c\) \(-lcrypto\)/\1 $$(LDFLAGS) \2/' \ + ${WRKSRC}/GNUmakefile + pre-install: @cd ${WRKSRC} && ${CP} gatling.1 gatling.8 From owner-svn-ports-head@freebsd.org Tue Sep 13 03:30:15 2016 Return-Path: Delivered-To: svn-ports-head@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 24228BD8A06; Tue, 13 Sep 2016 03:30:15 +0000 (UTC) (envelope-from marino@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 E7C78B50; Tue, 13 Sep 2016 03:30:14 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D3UEjM050254; Tue, 13 Sep 2016 03:30:14 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D3UEdP050253; Tue, 13 Sep 2016 03:30:14 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130330.u8D3UEdP050253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 03:30:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421974 - head/devel/libzrtpcpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 03:30:15 -0000 Author: marino Date: Tue Sep 13 03:30:13 2016 New Revision: 421974 URL: https://svnweb.freebsd.org/changeset/ports/421974 Log: devel/libzrtpcpp: properly configure SSL base Approved by: SSL blanket Modified: head/devel/libzrtpcpp/Makefile Modified: head/devel/libzrtpcpp/Makefile ============================================================================== --- head/devel/libzrtpcpp/Makefile Tue Sep 13 03:20:22 2016 (r421973) +++ head/devel/libzrtpcpp/Makefile Tue Sep 13 03:30:13 2016 (r421974) @@ -13,10 +13,11 @@ COMMENT= ZRTP extension for GNU ccRTP LIB_DEPENDS= libccrtp.so:devel/ccrtp \ libgcrypt.so:security/libgcrypt -USES= cmake pkgconfig -USE_OPENSSL= yes +USES= cmake pkgconfig ssl -CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON +CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON \ + -DOPENSSL_INCLUDE_DIRS="${OPENSSLINC}" \ + -DOPENSSL_LIBDIR="${OPENSSLLIB}" CXXFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} USE_LDCONFIG= yes From owner-svn-ports-head@freebsd.org Tue Sep 13 03:43:35 2016 Return-Path: Delivered-To: svn-ports-head@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 71526BD8DAA; Tue, 13 Sep 2016 03:43:35 +0000 (UTC) (envelope-from marino@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 424871B9; Tue, 13 Sep 2016 03:43:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D3hYSE057492; Tue, 13 Sep 2016 03:43:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D3hYVl057491; Tue, 13 Sep 2016 03:43:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130343.u8D3hYVl057491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 03:43:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421975 - head/net-p2p/bitmessage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 03:43:35 -0000 Author: marino Date: Tue Sep 13 03:43:34 2016 New Revision: 421975 URL: https://svnweb.freebsd.org/changeset/ports/421975 Log: net-p2p/bitmessage: Set and honor SSL flags Approved by: SSL blanket Modified: head/net-p2p/bitmessage/Makefile Modified: head/net-p2p/bitmessage/Makefile ============================================================================== --- head/net-p2p/bitmessage/Makefile Tue Sep 13 03:30:13 2016 (r421974) +++ head/net-p2p/bitmessage/Makefile Tue Sep 13 03:43:34 2016 (r421975) @@ -21,9 +21,8 @@ USE_GITHUB= yes GH_ACCOUNT= Bitmessage GH_PROJECT= PyBitmessage -USES= python pyqt:4 +USES= python pyqt:4 ssl NATIVE_POW_USES=gmake -USE_OPENSSL= yes INSTALLS_ICONS= yes OPTIONS_DEFINE= NATIVE_POW @@ -34,7 +33,11 @@ OPTIONS_SUB= yes .include post-patch: - ${REINPLACE_CMD} -e 's|python2|${PYTHON_CMD}| ; s|share/man|man|' ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e 's|python2|${PYTHON_CMD}| ; s|share/man|man|' \ + ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e "s|\((CCFLAGS)\)|\1 -I${OPENSSLINC} |g" \ + -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" \ + ${WRKSRC}/src/bitmsghash/Makefile do-build: @(cd ${WRKSRC} && \ From owner-svn-ports-head@freebsd.org Tue Sep 13 04:50:05 2016 Return-Path: Delivered-To: svn-ports-head@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 433BDBD7BA0; Tue, 13 Sep 2016 04:50:05 +0000 (UTC) (envelope-from marino@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 05C47BB2; Tue, 13 Sep 2016 04:50:04 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D4o4bX080218; Tue, 13 Sep 2016 04:50:04 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D4o4qD080217; Tue, 13 Sep 2016 04:50:04 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130450.u8D4o4qD080217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 04:50:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421976 - head/net/xisp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 04:50:05 -0000 Author: marino Date: Tue Sep 13 04:50:04 2016 New Revision: 421976 URL: https://svnweb.freebsd.org/changeset/ports/421976 Log: net/xisp: Document SSL requirement and configure it properly Approved by: SSL blanket Modified: head/net/xisp/Makefile Modified: head/net/xisp/Makefile ============================================================================== --- head/net/xisp/Makefile Tue Sep 13 03:43:34 2016 (r421975) +++ head/net/xisp/Makefile Tue Sep 13 04:50:04 2016 (r421976) @@ -14,12 +14,14 @@ COMMENT= User-friendly X interface to pp LIB_DEPENDS= libforms.so:x11-toolkits/xforms +USES= alias ssl USE_XORG= xpm +CFLAGS+= -DUSE_OPENSSL -I${OPENSSLINC} MAKE_ENV+= CCFLAGS="${CFLAGS}" post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKSRC}/Makefile + -e "s|\(-lcrypto\)|-L${OPENSSLLIB} \1|g" ${WRKSRC}/Makefile .include From owner-svn-ports-head@freebsd.org Tue Sep 13 05:01:28 2016 Return-Path: Delivered-To: svn-ports-head@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 0AE80BD7D60; Tue, 13 Sep 2016 05:01:28 +0000 (UTC) (envelope-from marino@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 B573BF5; Tue, 13 Sep 2016 05:01:27 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D51Qmp087067; Tue, 13 Sep 2016 05:01:26 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D51QmN087066; Tue, 13 Sep 2016 05:01:26 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130501.u8D51QmN087066@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 05:01:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421977 - head/net/hostapd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 05:01:28 -0000 Author: marino Date: Tue Sep 13 05:01:26 2016 New Revision: 421977 URL: https://svnweb.freebsd.org/changeset/ports/421977 Log: net/hostapd: Remove PORTS_SSL option and use SSL_DEFAULT The port is now configured depending on the SSL base specified by the SSL_DEFAULT variable. Before it would break by default if SSL_DEFAULT was set to non-base. This changes puts hostapd in line with the rest of the ports tree. Approved by: SSL blanket Modified: head/net/hostapd/Makefile Modified: head/net/hostapd/Makefile ============================================================================== --- head/net/hostapd/Makefile Tue Sep 13 04:50:04 2016 (r421976) +++ head/net/hostapd/Makefile Tue Sep 13 05:01:26 2016 (r421977) @@ -3,7 +3,7 @@ PORTNAME= hostapd PORTVERSION= 2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://w1.fi/releases/ @@ -12,31 +12,14 @@ COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA LICENSE= BSD3CLAUSE -USES= cpe gmake +USES= cpe gmake ssl CPE_VENDOR= w1.f1 -USE_OPENSSL= yes BUILD_WRKSRC= ${WRKSRC}/hostapd +CONFIGURE_ARGS= --with-ssl-dir=${OPENSSLBASE} PLIST_FILES= sbin/hostapd sbin/hostapd_cli man/man1/hostapd_cli.1.gz \ man/man8/hostapd.8.gz -OPTIONS_DEFINE= PORTS_SSL - -PORTS_SSL_DESC= Build with OpenSSL from ports (instead of base system) - -.include - -.if ${PORT_OPTIONS:MPORTS_SSL} -.if ${SSL_DEFAULT} == base -IGNORE= the PORTS_SSL option not allowed when using SSL from base -.endif -CONFIGURE_ARGS+= --with-ssl-dir=${PREFIX} -.else -.if ${SSL_DEFAULT} != base -IGNORE= the PORTS_SSL option is required when using SSL from ports -.endif -.endif - post-patch: @${REINPLACE_CMD} -e 's|@$$(E) " CC " $$<|@$$(E) " $$(CC) " $$<|' \ ${BUILD_WRKSRC}/Makefile @@ -52,4 +35,4 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd.8 \ ${STAGEDIR}${MANPREFIX}/man/man8 -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 05:09:18 2016 Return-Path: Delivered-To: svn-ports-head@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 86BD7BD7FA3; Tue, 13 Sep 2016 05:09:18 +0000 (UTC) (envelope-from marino@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 5996E3B1; Tue, 13 Sep 2016 05:09:18 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D59HB0088015; Tue, 13 Sep 2016 05:09:17 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D59Hbk088014; Tue, 13 Sep 2016 05:09:17 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130509.u8D59Hbk088014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 05:09:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421978 - head/security/p5-openxpki X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 05:09:18 -0000 Author: marino Date: Tue Sep 13 05:09:17 2016 New Revision: 421978 URL: https://svnweb.freebsd.org/changeset/ports/421978 Log: security/p5-openxpki: IGNORE for libressl-devel as well as libressl Setting SSL_DEFAULT=libressl-devel should have the same effect as setting it to "libressl", so enable that behavior. Approved by: SSL blanket Modified: head/security/p5-openxpki/Makefile Modified: head/security/p5-openxpki/Makefile ============================================================================== --- head/security/p5-openxpki/Makefile Tue Sep 13 05:01:26 2016 (r421977) +++ head/security/p5-openxpki/Makefile Tue Sep 13 05:09:17 2016 (r421978) @@ -115,7 +115,7 @@ post-stage: .include -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} IGNORE= this version of OpenXPKI is not fully functional with LibreSSL library, use OpenSSL instead .endif From owner-svn-ports-head@freebsd.org Tue Sep 13 05:33:12 2016 Return-Path: Delivered-To: svn-ports-head@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 C23E6BD874D; Tue, 13 Sep 2016 05:33:12 +0000 (UTC) (envelope-from jkim@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 8C76A284; Tue, 13 Sep 2016 05:33:12 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D5XBbO099156; Tue, 13 Sep 2016 05:33:11 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D5XB1A099155; Tue, 13 Sep 2016 05:33:11 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609130533.u8D5XB1A099155@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 13 Sep 2016 05:33:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421979 - head/emulators/virtualbox-ose-additions/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 05:33:12 -0000 Author: jkim Date: Tue Sep 13 05:33:11 2016 New Revision: 421979 URL: https://svnweb.freebsd.org/changeset/ports/421979 Log: Do not override libGL.so.1 for libglx.so to let X server load it properly. Modified: head/emulators/virtualbox-ose-additions/files/vboxvideo.conf Modified: head/emulators/virtualbox-ose-additions/files/vboxvideo.conf ============================================================================== --- head/emulators/virtualbox-ose-additions/files/vboxvideo.conf Tue Sep 13 05:09:17 2016 (r421978) +++ head/emulators/virtualbox-ose-additions/files/vboxvideo.conf Tue Sep 13 05:33:11 2016 (r421979) @@ -1,2 +1,5 @@ libEGL.so.1 VBoxEGL.so libGL.so.1 VBoxOGL.so + +[libglx.so] +libGL.so.1 .mesa/libGL.so.1 From owner-svn-ports-head@freebsd.org Tue Sep 13 05:34:42 2016 Return-Path: Delivered-To: svn-ports-head@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 2B348BD879E; Tue, 13 Sep 2016 05:34:42 +0000 (UTC) (envelope-from marino@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 F236E3A6; Tue, 13 Sep 2016 05:34:41 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D5Yf5E099300; Tue, 13 Sep 2016 05:34:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D5YfQm099299; Tue, 13 Sep 2016 05:34:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609130534.u8D5YfQm099299@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 05:34:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421980 - head/net-p2p/litecoin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 05:34:42 -0000 Author: marino Date: Tue Sep 13 05:34:41 2016 New Revision: 421980 URL: https://svnweb.freebsd.org/changeset/ports/421980 Log: net-p2p/litecoin: ignore when SSL_DEFAULT matches "libressl" If an attempt to build with LibreSSL is made, the configure script emits this message: configure: error: Detected LibreSSL: This is not supported, and may break consensus compatibility Go ahead and mark this port and its slaved with IGNORE when libressl is used to save the user the trouble of hitting the error later (this is also done by security/p5-openxpki) Approved by: SSL blanket Modified: head/net-p2p/litecoin/Makefile Modified: head/net-p2p/litecoin/Makefile ============================================================================== --- head/net-p2p/litecoin/Makefile Tue Sep 13 05:33:11 2016 (r421979) +++ head/net-p2p/litecoin/Makefile Tue Sep 13 05:34:41 2016 (r421980) @@ -92,6 +92,13 @@ LDFLAGS+= -L${OPENSSLLIB} PLIST_FILES?= bin/litecoin-qt share/applications/litecoin-qt.desktop \ share/pixmaps/litecoin128.png +.include + +.if ${SSL_DEFAULT:Mlibressl*} +# The configure script will output this message, so save the user the trouble +IGNORE= Detected LibreSSL: This is NOT supported, and may break consensus compatibility! +.endif + .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" post-patch: @@ -115,4 +122,4 @@ regression-test: build @cd ${WRKSRC} && ${GMAKE} check -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 06:45:57 2016 Return-Path: Delivered-To: svn-ports-head@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 1A287BD7A8F; Tue, 13 Sep 2016 06:45:57 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id AC3C6909; Tue, 13 Sep 2016 06:45:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id E70EDBDC6E; Tue, 13 Sep 2016 08:45:52 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 8D42DBDC30; Tue, 13 Sep 2016 08:45:52 +0200 (CEST) Subject: Re: svn commit: r421979 - head/emulators/virtualbox-ose-additions/files To: Jung-uk Kim , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609130533.u8D5XB1A099155@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Tue, 13 Sep 2016 08:45:50 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609130533.u8D5XB1A099155@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="IGdJQnUt2oiVkuUtRI1HpIeHRgQKsBcFI" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 06:45:57 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --IGdJQnUt2oiVkuUtRI1HpIeHRgQKsBcFI Content-Type: multipart/mixed; boundary="voBVbfnSvMbJEIPL0lif3gxlPrNOhICLr"; protected-headers="v1" From: Mathieu Arnold To: Jung-uk Kim , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r421979 - head/emulators/virtualbox-ose-additions/files References: <201609130533.u8D5XB1A099155@repo.freebsd.org> In-Reply-To: <201609130533.u8D5XB1A099155@repo.freebsd.org> --voBVbfnSvMbJEIPL0lif3gxlPrNOhICLr Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 13/09/2016 =C3=A0 07:33, Jung-uk Kim a =C3=A9crit : > Author: jkim > Date: Tue Sep 13 05:33:11 2016 > New Revision: 421979 > URL: https://svnweb.freebsd.org/changeset/ports/421979 > > Log: > Do not override libGL.so.1 for libglx.so to let X server load it prop= erly. > > Modified: > head/emulators/virtualbox-ose-additions/files/vboxvideo.conf > > Modified: head/emulators/virtualbox-ose-additions/files/vboxvideo.conf > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/emulators/virtualbox-ose-additions/files/vboxvideo.conf Tue Se= p 13 05:09:17 2016 (r421978) > +++ head/emulators/virtualbox-ose-additions/files/vboxvideo.conf Tue Se= p 13 05:33:11 2016 (r421979) > @@ -1,2 +1,5 @@ > libEGL.so.1 VBoxEGL.so > libGL.so.1 VBoxOGL.so > + > +[libglx.so] > +libGL.so.1 .mesa/libGL.so.1 Please, bump PORTREVISION so that people using packages get the fix. --=20 Mathieu Arnold --voBVbfnSvMbJEIPL0lif3gxlPrNOhICLr-- --IGdJQnUt2oiVkuUtRI1HpIeHRgQKsBcFI Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX16CfXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IYPoP/RZqEpu/2dF2QkttWWtBXJT/ MNZd/ELtbwTTQ41JARqCJ2OY3VbJU6+LLzD5FZ2DVs2JzhxuPEaluOQnw3DmTNCM J3G1UsqIH/DVD85xH8cnu6hP1GVx3bw56up9j1yr4YAAWSPZo2MXFUjznuL2AAD0 tOSGY3p33d/u+camn+nIOBYKAQQL2NaTX77vb7DFLTfwMVcVqK4m9hLvKQGsWYtn cVVUKPJ7jRc119xbRnT94Eh04w+zZu5E+A4hSl2kshgAwbhK7F+7FYdI8+JU+suL soH+3dCAuGvno2S9iQCGnWjPPRNO3mmR+RFZN/+aztjNIQr5U3zDmYDpevB3g98Y s9E3JSTmQDuqAf25cPdj/NEx63HUuTtvdSvmPCo73C/gI+hDfPIrijaqbdyaGxfz gVfMAm3VV2NpXKDeBw5k7q74oTdt9VpRMUUbu3QME6/lM5tR/YCUsszuLXX07kCr PJ2eiKtmlmkpHAXiN9OMJHxyL8fId1t+BTKfFGYLI2iE+CGes4fZDgALdx721loK UIilHoh5RTk+2i9v5z4vkElCMzM2fLMI+J2R4KtGYNOO9lIm5shxT6nTkM3CfxPG XlI3WHMnZdSakqhp/N6K/+8XytlWcH15MXNGK8uS8/5eZ14RhVh6n61VAqz6NMlC qpBNRw7M50ZAGuG1nFeC =Hs0s -----END PGP SIGNATURE----- --IGdJQnUt2oiVkuUtRI1HpIeHRgQKsBcFI-- From owner-svn-ports-head@freebsd.org Tue Sep 13 07:19:34 2016 Return-Path: Delivered-To: svn-ports-head@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 B6644BD85FA; Tue, 13 Sep 2016 07:19:34 +0000 (UTC) (envelope-from olivierd@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 84EFCB8D; Tue, 13 Sep 2016 07:19:34 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D7JXtX037024; Tue, 13 Sep 2016 07:19:33 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D7JXdm037019; Tue, 13 Sep 2016 07:19:33 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609130719.u8D7JXdm037019@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Tue, 13 Sep 2016 07:19:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421981 - in head/x11/xfce4-dashboard: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 07:19:34 -0000 Author: olivierd Date: Tue Sep 13 07:19:33 2016 New Revision: 421981 URL: https://svnweb.freebsd.org/changeset/ports/421981 Log: - Update to 0.6.0 - Sort USES - Remove unneeded patches - Mark BROKEN on 9 (probably also on 10, lack of feedback [0]), because it requires recent GPU drivers Tested successfully on FreeBSD >= 11.0-RC2 with fallback drivers, scfb [1], and vesa (by me). [0] https://lists.freebsd.org/pipermail/freebsd-xfce/2016-May/001353.html Tested by: Ben Woods (woodsb02@) [1] Added: head/x11/xfce4-dashboard/files/patch-configure (contents, props changed) head/x11/xfce4-dashboard/files/patch-libxfdashboard_quicklaunch.c (contents, props changed) Deleted: head/x11/xfce4-dashboard/files/patch-xfdashboard_applications-search-provider.c head/x11/xfce4-dashboard/files/patch-xfdashboard_applications-view.c head/x11/xfce4-dashboard/files/patch-xfdashboard_search-view.c head/x11/xfce4-dashboard/files/patch-xfdashboard_windows-view.c Modified: head/x11/xfce4-dashboard/Makefile head/x11/xfce4-dashboard/distinfo head/x11/xfce4-dashboard/pkg-plist Modified: head/x11/xfce4-dashboard/Makefile ============================================================================== --- head/x11/xfce4-dashboard/Makefile Tue Sep 13 05:34:41 2016 (r421980) +++ head/x11/xfce4-dashboard/Makefile Tue Sep 13 07:19:33 2016 (r421981) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dashboard -PORTVERSION= 0.4.2 +PORTVERSION= 0.6.0 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/apps/xfdashboard/${PORTVERSION:R}/ PKGNAMEPREFIX= xfce4- @@ -15,17 +15,28 @@ COMMENT= GNOME shell like dashboard for LICENSE= GPLv2 LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \ + libdbus-1.so:devel/dbus \ + libjson-glib-1.0.so:devel/json-glib \ + libcogl.so:graphics/cogl \ libclutter-1.0.so:graphics/clutter +BROKEN_FreeBSD_9= requires recent GPU drivers + GNU_CONFIGURE= yes -USES= pkgconfig libtool gmake perl5 gettext xfce tar:bzip2 -USE_GNOME= glib20 gtk30 libwnck3 intltool intlhack +USES= gettext-tools gmake localbase libtool pathfix perl5 pkgconfig \ + tar:bzip2 xfce:gtk3 +USE_GNOME= glib20 gtk30 libwnck3 cairo intltool intlhack USE_XFCE= garcon -USE_XORG= x11 xcomposite xdamage xinerama -USE_GL= gl +USE_XORG= x11 xcomposite xdamage xext xfixes xi xinerama xrandr +USE_GL= egl gl INSTALLS_ICONS= yes INSTALL_TARGET= install-strip +OPTIONS_DEFINE= NLS +NLS_USES= gettext-runtime +NLS_CONFIGURE_ENABLE= nls +OPTIONS_SUB= yes + post-patch: # Decrease default value of desaturation factor (0.0 -> no desaturation) # With some graphics cards, quick launch icons are totally black with Modified: head/x11/xfce4-dashboard/distinfo ============================================================================== --- head/x11/xfce4-dashboard/distinfo Tue Sep 13 05:34:41 2016 (r421980) +++ head/x11/xfce4-dashboard/distinfo Tue Sep 13 07:19:33 2016 (r421981) @@ -1,2 +1,3 @@ -SHA256 (xfce4/xfdashboard-0.4.2.tar.bz2) = d00f8378b5813f307a54d97150cad1ba9f5fc2c4e175e127b787610d603cec3a -SIZE (xfce4/xfdashboard-0.4.2.tar.bz2) = 2276535 +TIMESTAMP = 1463852460 +SHA256 (xfce4/xfdashboard-0.6.0.tar.bz2) = 86feda138001a3bbb686a36c14ad6923e3c7ab2c1b921217f9c075cd43c2b1bc +SIZE (xfce4/xfdashboard-0.6.0.tar.bz2) = 2401630 Added: head/x11/xfce4-dashboard/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xfce4-dashboard/files/patch-configure Tue Sep 13 07:19:33 2016 (r421981) @@ -0,0 +1,11 @@ +--- configure.orig 2016-05-20 19:36:31 UTC ++++ configure +@@ -14443,7 +14443,7 @@ $as_echo "#define HAVE_LC_MESSAGES 1" >> + + fi + fi +- USE_NLS=yes ++ #USE_NLS=yes + + + gt_cv_have_gettext=no Added: head/x11/xfce4-dashboard/files/patch-libxfdashboard_quicklaunch.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xfce4-dashboard/files/patch-libxfdashboard_quicklaunch.c Tue Sep 13 07:19:33 2016 (r421981) @@ -0,0 +1,11 @@ +--- libxfdashboard/quicklaunch.c.orig 2016-03-29 05:48:01 UTC ++++ libxfdashboard/quicklaunch.c +@@ -1295,7 +1295,7 @@ static void _xfdashboard_quicklaunch_set + XfdashboardQuicklaunchPrivate *priv; + guint i; + const gchar *defaultApplications[]= { +- "exo-web-browser.desktop" ++ "exo-web-browser.desktop", + "exo-mail-reader.desktop", + "exo-file-manager.desktop", + "exo-terminal-emulator.desktop", Modified: head/x11/xfce4-dashboard/pkg-plist ============================================================================== --- head/x11/xfce4-dashboard/pkg-plist Tue Sep 13 05:34:41 2016 (r421980) +++ head/x11/xfce4-dashboard/pkg-plist Tue Sep 13 07:19:33 2016 (r421981) @@ -1,9 +1,81 @@ bin/xfdashboard bin/xfdashboard-settings etc/xdg/autostart/xfdashboard-autostart.desktop +include/xfdashboard/libxfdashboard/action-button.h +include/xfdashboard/libxfdashboard/actor.h +include/xfdashboard/libxfdashboard/application-button.h +include/xfdashboard/libxfdashboard/application-database.h +include/xfdashboard/libxfdashboard/application-tracker.h +include/xfdashboard/libxfdashboard/application.h +include/xfdashboard/libxfdashboard/applications-menu-model.h +include/xfdashboard/libxfdashboard/applications-search-provider.h +include/xfdashboard/libxfdashboard/applications-view.h +include/xfdashboard/libxfdashboard/background.h +include/xfdashboard/libxfdashboard/binding.h +include/xfdashboard/libxfdashboard/bindings-pool.h +include/xfdashboard/libxfdashboard/box-layout.h +include/xfdashboard/libxfdashboard/button.h +include/xfdashboard/libxfdashboard/click-action.h +include/xfdashboard/libxfdashboard/collapse-box.h +include/xfdashboard/libxfdashboard/compat.h +include/xfdashboard/libxfdashboard/css-selector.h +include/xfdashboard/libxfdashboard/desktop-app-info.h +include/xfdashboard/libxfdashboard/drag-action.h +include/xfdashboard/libxfdashboard/drop-action.h +include/xfdashboard/libxfdashboard/dynamic-table-layout.h +include/xfdashboard/libxfdashboard/emblem-effect.h +include/xfdashboard/libxfdashboard/fill-box-layout.h +include/xfdashboard/libxfdashboard/focus-manager.h +include/xfdashboard/libxfdashboard/focusable.h +include/xfdashboard/libxfdashboard/image-content.h +include/xfdashboard/libxfdashboard/libxfdashboard.h +include/xfdashboard/libxfdashboard/live-window.h +include/xfdashboard/libxfdashboard/live-workspace.h +include/xfdashboard/libxfdashboard/model.h +include/xfdashboard/libxfdashboard/outline-effect.h +include/xfdashboard/libxfdashboard/plugin.h +include/xfdashboard/libxfdashboard/plugins-manager.h +include/xfdashboard/libxfdashboard/quicklaunch.h +include/xfdashboard/libxfdashboard/scaled-table-layout.h +include/xfdashboard/libxfdashboard/scrollbar.h +include/xfdashboard/libxfdashboard/search-manager.h +include/xfdashboard/libxfdashboard/search-provider.h +include/xfdashboard/libxfdashboard/search-result-container.h +include/xfdashboard/libxfdashboard/search-result-set.h +include/xfdashboard/libxfdashboard/search-view.h +include/xfdashboard/libxfdashboard/stage-interface.h +include/xfdashboard/libxfdashboard/stage.h +include/xfdashboard/libxfdashboard/stylable.h +include/xfdashboard/libxfdashboard/text-box.h +include/xfdashboard/libxfdashboard/theme-css.h +include/xfdashboard/libxfdashboard/theme-effects.h +include/xfdashboard/libxfdashboard/theme-layout.h +include/xfdashboard/libxfdashboard/theme.h +include/xfdashboard/libxfdashboard/toggle-button.h +include/xfdashboard/libxfdashboard/tooltip-action.h +include/xfdashboard/libxfdashboard/types.h +include/xfdashboard/libxfdashboard/utils.h +include/xfdashboard/libxfdashboard/view-manager.h +include/xfdashboard/libxfdashboard/view-selector.h +include/xfdashboard/libxfdashboard/view.h +include/xfdashboard/libxfdashboard/viewpad.h +include/xfdashboard/libxfdashboard/window-content.h +include/xfdashboard/libxfdashboard/window-tracker-monitor.h +include/xfdashboard/libxfdashboard/window-tracker-window.h +include/xfdashboard/libxfdashboard/window-tracker-workspace.h +include/xfdashboard/libxfdashboard/window-tracker.h +include/xfdashboard/libxfdashboard/windows-view.h +include/xfdashboard/libxfdashboard/workspace-selector.h +lib/libxfdashboard.so +lib/libxfdashboard.so.0 +lib/libxfdashboard.so.0.600.0 +lib/xfdashboard/plugins/clock-view.so +lib/xfdashboard/plugins/gnome-shell-search-provider.so +lib/xfdashboard/plugins/hot-corner.so +libdata/pkgconfig/libxfdashboard.pc share/appdata/xfdashboard.appdata.xml -share/applications/xfdashboard.desktop share/applications/xfdashboard-settings.desktop +share/applications/xfdashboard.desktop share/icons/hicolor/128x128/apps/xfdashboard.png share/icons/hicolor/16x16/apps/xfdashboard.png share/icons/hicolor/22x22/apps/xfdashboard.png @@ -13,58 +85,59 @@ share/icons/hicolor/32x32/apps/xfdashboa share/icons/hicolor/48x48/apps/xfdashboard.png share/icons/hicolor/64x64/apps/xfdashboard.png share/icons/hicolor/96x96/apps/xfdashboard.png -share/locale/es/LC_MESSAGES/xfdashboard.mo -share/locale/fr/LC_MESSAGES/xfdashboard.mo -share/locale/he/LC_MESSAGES/xfdashboard.mo -share/locale/it_IT/LC_MESSAGES/xfdashboard.mo -share/locale/sr/LC_MESSAGES/xfdashboard.mo +%%NLS%%share/locale/es/LC_MESSAGES/xfdashboard.mo +%%NLS%%share/locale/fr/LC_MESSAGES/xfdashboard.mo +%%NLS%%share/locale/he/LC_MESSAGES/xfdashboard.mo +%%NLS%%share/locale/it_IT/LC_MESSAGES/xfdashboard.mo +%%NLS%%share/locale/lt/LC_MESSAGES/xfdashboard.mo +%%NLS%%share/locale/sr/LC_MESSAGES/xfdashboard.mo share/themes/xfdashboard-auber/xfdashboard-1.0/effects.xml share/themes/xfdashboard-auber/xfdashboard-1.0/screenshot-xfdashboard-auber.png share/themes/xfdashboard-auber/xfdashboard-1.0/xfdashboard-auber.css +share/themes/xfdashboard-auber/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-auber/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard-auber/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard-auber/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard-auber/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-blue/xfdashboard-1.0/effects.xml share/themes/xfdashboard-blue/xfdashboard-1.0/xfdashboard-blue.css +share/themes/xfdashboard-blue/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-blue/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard-blue/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard-blue/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard-blue/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-dark/xfdashboard-1.0/effects.xml share/themes/xfdashboard-dark/xfdashboard-1.0/screenshot-xfdashboard-dark.png share/themes/xfdashboard-dark/xfdashboard-1.0/xfdashboard-dark.css +share/themes/xfdashboard-dark/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-dark/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard-dark/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard-dark/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard-dark/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-mint/xfdashboard-1.0/effects.xml share/themes/xfdashboard-mint/xfdashboard-1.0/screenshot-xfdashboard-mint.png share/themes/xfdashboard-mint/xfdashboard-1.0/xfdashboard-mint.css +share/themes/xfdashboard-mint/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-mint/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard-mint/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard-mint/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard-mint/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-moranga/xfdashboard-1.0/effects.xml share/themes/xfdashboard-moranga/xfdashboard-1.0/screenshot-xfdashboard-moranga.png share/themes/xfdashboard-moranga/xfdashboard-1.0/xfdashboard-moranga.css +share/themes/xfdashboard-moranga/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-moranga/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard-moranga/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard-moranga/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard-moranga/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-wine/xfdashboard-1.0/effects.xml share/themes/xfdashboard-wine/xfdashboard-1.0/screenshot-xfdashboard-wine.png +share/themes/xfdashboard-wine/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard-wine/xfdashboard-1.0/xfdashboard-wine.css share/themes/xfdashboard-wine/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard-wine/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard-wine/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard-wine/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard/xfdashboard-1.0/effects.xml share/themes/xfdashboard/xfdashboard-1.0/screenshot-xfdashboard.png share/themes/xfdashboard/xfdashboard-1.0/windows-view.png +share/themes/xfdashboard/xfdashboard-1.0/xfdashboard-secondary.xml share/themes/xfdashboard/xfdashboard-1.0/xfdashboard.css share/themes/xfdashboard/xfdashboard-1.0/xfdashboard.theme share/themes/xfdashboard/xfdashboard-1.0/xfdashboard.xml -share/themes/xfdashboard/xfdashboard-1.0/xfdashboard-secondary.xml share/xfdashboard/bindings.xml share/xfdashboard/preferences.ui From owner-svn-ports-head@freebsd.org Tue Sep 13 07:31:26 2016 Return-Path: Delivered-To: svn-ports-head@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 631B3BD88A9; Tue, 13 Sep 2016 07:31:26 +0000 (UTC) (envelope-from flo@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 180A0187; Tue, 13 Sep 2016 07:31:26 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D7VPHF040824; Tue, 13 Sep 2016 07:31:25 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D7VPQW040822; Tue, 13 Sep 2016 07:31:25 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201609130731.u8D7VPQW040822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Tue, 13 Sep 2016 07:31:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421982 - head/databases/percona55-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 07:31:26 -0000 Author: flo Date: Tue Sep 13 07:31:25 2016 New Revision: 421982 URL: https://svnweb.freebsd.org/changeset/ports/421982 Log: Update to 5.5.51-38.1 Security: https://www.percona.com/blog/2016/09/12/percona-server-critical-update-cve-2016-6662/ MFH: 2016Q3 Modified: head/databases/percona55-server/Makefile head/databases/percona55-server/distinfo Modified: head/databases/percona55-server/Makefile ============================================================================== --- head/databases/percona55-server/Makefile Tue Sep 13 07:19:33 2016 (r421981) +++ head/databases/percona55-server/Makefile Tue Sep 13 07:31:25 2016 (r421982) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= percona -DISTVERSION= 5.5.48-37.8 +DISTVERSION= 5.5.51-38.1 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-${DISTVERSION}/source/tarball/ @@ -47,10 +47,6 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc SHEBANG_FILES= scripts/*.pl* scripts/*.sh -.ifdef USE_MYSQL -.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. -.endif - .include .if ${PORT_OPTIONS:MOPENSSL} @@ -62,8 +58,7 @@ CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1 # MySQL-Server part .if !defined(CLIENT_ONLY) -USE_MYSQL= yes -WANT_MYSQL_VER= 55p +USES+=mysql:55p CONFLICTS_INSTALL= mysql*-server-* \ mariadb*-server-* \ Modified: head/databases/percona55-server/distinfo ============================================================================== --- head/databases/percona55-server/distinfo Tue Sep 13 07:19:33 2016 (r421981) +++ head/databases/percona55-server/distinfo Tue Sep 13 07:31:25 2016 (r421982) @@ -1,2 +1,3 @@ -SHA256 (percona-server-5.5.48-37.8.tar.gz) = 00d5d882977d5dbfbf8d0467cbca5c1636401f5027bcfefa158c796abea3279e -SIZE (percona-server-5.5.48-37.8.tar.gz) = 22782980 +TIMESTAMP = 1473703016 +SHA256 (percona-server-5.5.51-38.1.tar.gz) = 330fe7065c66a32e8d9cf37f33ddcbb76bffc14acae2d031395c3fb8d6b0857b +SIZE (percona-server-5.5.51-38.1.tar.gz) = 22789037 From owner-svn-ports-head@freebsd.org Tue Sep 13 08:05:43 2016 Return-Path: Delivered-To: svn-ports-head@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 A5865BD16E9; Tue, 13 Sep 2016 08:05:43 +0000 (UTC) (envelope-from delphij@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 7E152668; Tue, 13 Sep 2016 08:05:43 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D85gs1055874; Tue, 13 Sep 2016 08:05:42 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D85gnN055872; Tue, 13 Sep 2016 08:05:42 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201609130805.u8D85gnN055872@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 13 Sep 2016 08:05:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421985 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 08:05:43 -0000 Author: delphij Date: Tue Sep 13 08:05:42 2016 New Revision: 421985 URL: https://svnweb.freebsd.org/changeset/ports/421985 Log: Document MySQL root code execution vulnerability. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Sep 13 07:44:59 2016 (r421984) +++ head/security/vuxml/vuln.xml Tue Sep 13 08:05:42 2016 (r421985) @@ -58,6 +58,73 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + mysql -- Remote Root Code Execution + + + mariadb55-server + 5.5.51 + + + mariadb100-server + 10.0.27 + + + mariadb101-server + 10.1.17 + + + mysql55-server + 5.5.52 + + + mysql56-server + 5.6.33 + + + mysql57-server + 5.7.15 + + + percona55-server + 5.5.51.38.1 + + + percona56-server + 5.6.32.78.0 + + + percona57-server + 5.7.14.7 + + + + +

Dawid Golunski reports:

+
+

An independent research has revealed multiple severe MySQL + vulnerabilities. This advisory focuses on a critical + vulnerability with a CVEID of CVE-2016-6662 which can allow + attackers to (remotely) inject malicious settings into MySQL + configuration files (my.cnf) leading to critical + consequences.

+
+ +
+ + CVE-2016-6662 + http://legalhackers.com/advisories/MySQL-Exploit-Remote-Root-Code-Execution-Privesc-CVE-2016-6662.txt + https://jira.mariadb.org/browse/MDEV-10465 + https://www.percona.com/blog/2016/09/12/percona-server-critical-update-cve-2016-6662/ + https://www.percona.com/blog/2016/09/12/database-affected-cve-2016-6662/ + https://www.psce.com/blog/2016/09/12/how-to-quickly-patch-mysql-server-against-cve-2016-6662/ + + + 2016-09-12 + 2016-09-13 + +
+ wolfssl -- leakage of private key information @@ -83,6 +150,7 @@ Notes: 2016-01-05 + wolfssl -- DDoS amplification in DTLS @@ -108,6 +176,7 @@ Notes: 2016-01-05 + gnutls -- OCSP validation issue From owner-svn-ports-head@freebsd.org Tue Sep 13 08:49:21 2016 Return-Path: Delivered-To: svn-ports-head@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 57A65BD63FC; Tue, 13 Sep 2016 08:49:21 +0000 (UTC) (envelope-from tijl@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 2A6B0F1D; Tue, 13 Sep 2016 08:49:21 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D8nK1f071448; Tue, 13 Sep 2016 08:49:20 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D8nKIr071446; Tue, 13 Sep 2016 08:49:20 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201609130849.u8D8nKIr071446@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Tue, 13 Sep 2016 08:49:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421988 - head/devel/gputils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 08:49:21 -0000 Author: tijl Date: Tue Sep 13 08:49:20 2016 New Revision: 421988 URL: https://svnweb.freebsd.org/changeset/ports/421988 Log: Update gputils to 1.5.0-1. Modified: head/devel/gputils/Makefile head/devel/gputils/distinfo Modified: head/devel/gputils/Makefile ============================================================================== --- head/devel/gputils/Makefile Tue Sep 13 08:08:56 2016 (r421987) +++ head/devel/gputils/Makefile Tue Sep 13 08:49:20 2016 (r421988) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= gputils -PORTVERSION= 1.5.0 +DISTVERSION= 1.5.0-1 CATEGORIES= devel -MASTER_SITES= SF/gputils/gputils/${PORTVERSION} +MASTER_SITES= SF/gputils/gputils/${DISTVERSION:C/-.*//} MAINTAINER= tijl@FreeBSD.org COMMENT= Utilities for Microchip PIC microcontrollers @@ -14,8 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= gplink-[0-9]* GNU_CONFIGURE= yes -USES= bison gmake CONFIGURE_ARGS= --disable-dependency-tracking --disable-html-doc +USES= bison gmake tar:bz2 +WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/-.*//} .include Modified: head/devel/gputils/distinfo ============================================================================== --- head/devel/gputils/distinfo Tue Sep 13 08:08:56 2016 (r421987) +++ head/devel/gputils/distinfo Tue Sep 13 08:49:20 2016 (r421988) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471779742 -SHA256 (gputils-1.5.0.tar.gz) = f6a517c186b991f504be5e4585316871d5950568257885d37487bb368dc76227 -SIZE (gputils-1.5.0.tar.gz) = 13155377 +TIMESTAMP = 1473752710 +SHA256 (gputils-1.5.0-1.tar.bz2) = 6f88a018e85717b57a22f27a0ca41b2157633a82351f7755be92e2d7dc40bb14 +SIZE (gputils-1.5.0-1.tar.bz2) = 6352391 From owner-svn-ports-head@freebsd.org Tue Sep 13 08:59:55 2016 Return-Path: Delivered-To: svn-ports-head@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 2BB0EBD688D; Tue, 13 Sep 2016 08:59:55 +0000 (UTC) (envelope-from mat@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 F01A277F; Tue, 13 Sep 2016 08:59:54 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D8xs4u075216; Tue, 13 Sep 2016 08:59:54 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D8xsGD075214; Tue, 13 Sep 2016 08:59:54 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609130859.u8D8xsGD075214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 13 Sep 2016 08:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421989 - head/lang/perl5-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 08:59:55 -0000 Author: mat Date: Tue Sep 13 08:59:53 2016 New Revision: 421989 URL: https://svnweb.freebsd.org/changeset/ports/421989 Log: Update to v5.25.4-111-g92b69f6. Changes: https://github.com/Perl/perl5/compare/v5.25.4-74-g03a1fa1...v5.25.4-111-g92b69f6 Sponsored by: Absolight Modified: head/lang/perl5-devel/Makefile (contents, props changed) head/lang/perl5-devel/distinfo (contents, props changed) Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Tue Sep 13 08:49:20 2016 (r421988) +++ head/lang/perl5-devel/Makefile Tue Sep 13 08:59:53 2016 (r421989) @@ -30,7 +30,7 @@ TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_J USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.25.4-74-g03a1fa1 +GH_TAGNAME= v5.25.4-111-g92b69f6 MAKE_JOBS_UNSAFE= yes Modified: head/lang/perl5-devel/distinfo ============================================================================== --- head/lang/perl5-devel/distinfo Tue Sep 13 08:49:20 2016 (r421988) +++ head/lang/perl5-devel/distinfo Tue Sep 13 08:59:53 2016 (r421989) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473074482 -SHA256 (perl/perl-5.25.4-74_GH0.tar.gz) = a59fa91c9d686bcb4eac68f61281cfe1098d1bb0bc153636702e8c78b17a9abc -SIZE (perl/perl-5.25.4-74_GH0.tar.gz) = 18246493 +TIMESTAMP = 1473754779 +SHA256 (perl/perl-5.25.4-111_GH0.tar.gz) = 980382b3fa0e66ded5ed68762a50805531c66c21b6f76e6d77e6fc86f3eb3adf +SIZE (perl/perl-5.25.4-111_GH0.tar.gz) = 18253946 From owner-svn-ports-head@freebsd.org Tue Sep 13 09:01:35 2016 Return-Path: Delivered-To: svn-ports-head@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 3906CBD6ACF; Tue, 13 Sep 2016 09:01:35 +0000 (UTC) (envelope-from amdmi3@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 EC6C4A16; Tue, 13 Sep 2016 09:01:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D91YjQ076092; Tue, 13 Sep 2016 09:01:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D91YQP076090; Tue, 13 Sep 2016 09:01:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609130901.u8D91YQP076090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 09:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421990 - in head/deskutils/qorganizer: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 09:01:35 -0000 Author: amdmi3 Date: Tue Sep 13 09:01:33 2016 New Revision: 421990 URL: https://svnweb.freebsd.org/changeset/ports/421990 Log: - Add LICENSE - Add missing qt dependency - Switch to options helpers - Regenerate patches with `make makepatch` Modified: head/deskutils/qorganizer/Makefile head/deskutils/qorganizer/files/patch-qOrganizer-qt-4.5.0 Modified: head/deskutils/qorganizer/Makefile ============================================================================== --- head/deskutils/qorganizer/Makefile Tue Sep 13 08:59:53 2016 (r421989) +++ head/deskutils/qorganizer/Makefile Tue Sep 13 09:01:33 2016 (r421990) @@ -3,7 +3,7 @@ PORTNAME= qorganizer PORTVERSION= 3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= deskutils MASTER_SITES= SF/${PORTNAME}/OldFiles DISTNAME= qOrganizer-${PORTVERSION} @@ -11,23 +11,30 @@ DISTNAME= qOrganizer-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= General organizer that includes calendar with jurnal and schedule +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/../COPYING + USES= qmake -USE_QT4= gui network moc_build rcc_build sql +USE_QT4= corelib gui network moc_build rcc_build sql WRKSRC= ${WRKDIR}/qOrganizer/src PLIST_FILES= bin/qOrganizer share/pixmaps/qOrganizer.png PORTDOCS= CHANGELOG.txt COPYING -DESKTOP_ENTRIES= "qOrganizer" \ - "${COMMENT}" \ - "qOrganizer" \ - "qOrganizer" \ - "Qt;KDE;Office;" \ - "true" +DESKTOP_ENTRIES="qOrganizer" \ + "${COMMENT}" \ + "qOrganizer" \ + "qOrganizer" \ + "Qt;KDE;Office;" \ + true + +OPTIONS_DEFINE= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/qOrganizer ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/../qOrganizer.png ${STAGEDIR}${PREFIX}/share/pixmaps + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/../,} ${STAGEDIR}${DOCSDIR} Modified: head/deskutils/qorganizer/files/patch-qOrganizer-qt-4.5.0 ============================================================================== --- head/deskutils/qorganizer/files/patch-qOrganizer-qt-4.5.0 Tue Sep 13 08:59:53 2016 (r421989) +++ head/deskutils/qorganizer/files/patch-qOrganizer-qt-4.5.0 Tue Sep 13 09:01:33 2016 (r421990) @@ -1,5 +1,5 @@ ---- qorganizer.cpp.orig 2009-04-06 07:56:17 +0000 -+++ qorganizer.cpp 2009-04-06 07:56:23 +0000 +--- qorganizer.cpp.orig 2007-10-07 06:41:32 UTC ++++ qorganizer.cpp @@ -1511,7 +1511,7 @@ void CQTextEdit::insertFromMimeData( con QImage *image = new QImage(origin); if(!image->isNull()) @@ -9,8 +9,8 @@ cursor.insertImage(origin); } delete image; ---- qorganizer.h.orig 2009-04-06 07:56:12 +0000 -+++ qorganizer.h 2009-04-06 07:56:39 +0000 +--- qorganizer.h.orig 2007-09-07 21:51:40 UTC ++++ qorganizer.h @@ -104,6 +104,8 @@ class CQTextEdit:public QTextEdit }; From owner-svn-ports-head@freebsd.org Tue Sep 13 09:04:46 2016 Return-Path: Delivered-To: svn-ports-head@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 57834BD6CAC; Tue, 13 Sep 2016 09:04:46 +0000 (UTC) (envelope-from mat@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 28649CA2; Tue, 13 Sep 2016 09:04:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8D94jRD078943; Tue, 13 Sep 2016 09:04:45 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8D94jXF078941; Tue, 13 Sep 2016 09:04:45 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609130904.u8D94jXF078941@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 13 Sep 2016 09:04:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421991 - head/dns/bind9-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 09:04:46 -0000 Author: mat Date: Tue Sep 13 09:04:45 2016 New Revision: 421991 URL: https://svnweb.freebsd.org/changeset/ports/421991 Log: Update to latest commit. Sponsored by: Absolight Modified: head/dns/bind9-devel/Makefile (contents, props changed) head/dns/bind9-devel/distinfo (contents, props changed) Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Tue Sep 13 09:01:33 2016 (r421990) +++ head/dns/bind9-devel/Makefile Tue Sep 13 09:04:45 2016 (r421991) @@ -30,8 +30,8 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= MPL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.12.0a.2016.09.02 -HASH= 1a49346 +ISCVERSION= 9.12.0a.2016.09.07 +HASH= 5125df6 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Tue Sep 13 09:01:33 2016 (r421990) +++ head/dns/bind9-devel/distinfo Tue Sep 13 09:04:45 2016 (r421991) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473074232 -SHA256 (bind9-1a49346.tar.gz) = 946a34247bcfa5e10cf534cd28c637d5f0ecc6ee9ff21f9c51a5dd0e14407afb -SIZE (bind9-1a49346.tar.gz) = 11795836 +TIMESTAMP = 1473756815 +SHA256 (bind9-5125df6.tar.gz) = ed6b1ceefe8c8c3f45cfff7948eb3b6feca5b475471465df1222797a78041b85 +SIZE (bind9-5125df6.tar.gz) = 11796130 From owner-svn-ports-head@freebsd.org Tue Sep 13 09:25:05 2016 Return-Path: Delivered-To: svn-ports-head@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 3C8FBBD708F; Tue, 13 Sep 2016 09:25:05 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id EA5D66A0; Tue, 13 Sep 2016 09:25:04 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 3731DBDE18; Tue, 13 Sep 2016 11:25:03 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id BB78DBDE44; Tue, 13 Sep 2016 11:25:02 +0200 (CEST) Subject: Re: svn commit: r421632 - head/textproc/p5-Text-vCard To: Emanuel Haupt , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609091931.u89JVgcH032404@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <0e990832-16e0-dc35-d17c-78962cfeb194@FreeBSD.org> Date: Tue, 13 Sep 2016 11:25:00 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609091931.u89JVgcH032404@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="JxexvbdQJuB3Gt3oxOamJT7ASMo9hXW83" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 09:25:05 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --JxexvbdQJuB3Gt3oxOamJT7ASMo9hXW83 Content-Type: multipart/mixed; boundary="eaBmIL6qAOj9J0RakEHE13mJMLFA1qF37"; protected-headers="v1" From: Mathieu Arnold To: Emanuel Haupt , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <0e990832-16e0-dc35-d17c-78962cfeb194@FreeBSD.org> Subject: Re: svn commit: r421632 - head/textproc/p5-Text-vCard References: <201609091931.u89JVgcH032404@repo.freebsd.org> In-Reply-To: <201609091931.u89JVgcH032404@repo.freebsd.org> --eaBmIL6qAOj9J0RakEHE13mJMLFA1qF37 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 09/09/2016 =C3=A0 21:31, Emanuel Haupt a =C3=A9crit : > Author: ehaupt > Date: Fri Sep 9 19:31:42 2016 > New Revision: 421632 > URL: https://svnweb.freebsd.org/changeset/ports/421632 > > Log: > - Add missing dependencies > - Add NO_ARCH > - Move required perl modules from BUILD_DEPENDS to RUN_DEPENDS. They = don't > need to build port, only to run. That is not really true, now, when building the port, it will say: =3D=3D=3D> Configuring for p5-Text-vCard-3.07_1 Warning: prerequisite Moo 0 not found. Warning: prerequisite Moo::Role 0 not found. Warning: prerequisite Path::Tiny 0 not found. Warning: prerequisite Text::vFile::asData 0.07 not found. Warning: prerequisite URI 0 not found. Warning: prerequisite Unicode::LineBreak 0 not found. Please, add them back to BUILD_DEPENDS. --=20 Mathieu Arnold --eaBmIL6qAOj9J0RakEHE13mJMLFA1qF37-- --JxexvbdQJuB3Gt3oxOamJT7ASMo9hXW83 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX18XtXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IsRMP/jKhExr0XhDuI7DaXKBKcBoQ dHgkBSXDMWpVJ615SOFOQ4T6vEMQBJhuzBQVherguDtjL+XF60/JgloYILv6rf7k u9FGHOadpUzKK5TJYDnej1m+YbHfuszbsPYx/P3gG6ZkEZ4pN9kpinDEuqChr+os yxuH7LtUwyWZqr91zf0OtObgEb58mrdA5trnSHeuolO7ksZUWuxydaZgS63P2y6P 9e9V0jJqnw8iQMej6ExZsqpDGk0LLBK5e+aiX8hU0XmxrgQGbpcCEA4uuKTqEj0z KBXYamtzBRrgnMN9ewZgwR4DHpfRKie++bgp4pW+J1Lk/ZrWl/AQErNx5qVssR9e nmmJtbCEfqv/WVwlPZvSt/2aU1OgbodsAPYwgYkDY6PKrQSlEyYX69l6Q/AR3/NJ ItFeXdJEuznQPY9BrtdwgEHY9DHgusuGmxLXUQzRbU9wWmlgBr4wgWjKTtmy/uG2 t70tlglVD2PE3D10UH50SqAXtXCGHJGJi9r/yYOhUbwq8sJnS6ZYza4Q2QZGmE8/ WBSiWG+j/XEy93c3+yR3aQtpH2X5iKDEJxDj48YU9vqk6z8Ze69VWS8cSgwy0Dz9 nTYo370yEsKR+rJRntJro3WRsKQ9BoarTwxW83xpf9MgtJduNrSry7HVVzj3/oYi jKTiTwRoUjX1XFsFuyfH =JiAm -----END PGP SIGNATURE----- --JxexvbdQJuB3Gt3oxOamJT7ASMo9hXW83-- From owner-svn-ports-head@freebsd.org Tue Sep 13 09:29:47 2016 Return-Path: Delivered-To: svn-ports-head@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 BA79CBD7157; Tue, 13 Sep 2016 09:29:47 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 70913989; Tue, 13 Sep 2016 09:29:47 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id DED69BDD1E; Tue, 13 Sep 2016 11:29:45 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id B92CCBDD00; Tue, 13 Sep 2016 11:29:45 +0200 (CEST) Subject: Re: svn commit: r421954 - in head/converters: . p5-Bencode To: Mark Felder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609121944.u8CJi43g075720@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Tue, 13 Sep 2016 11:29:44 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609121944.u8CJi43g075720@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="TxsnhPHxO89W2kkkFWnc1SiWEe5VSFiFV" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 09:29:47 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --TxsnhPHxO89W2kkkFWnc1SiWEe5VSFiFV Content-Type: multipart/mixed; boundary="cXo7grlT3FjlXVHhf8WmCiWhuukLIVngE"; protected-headers="v1" From: Mathieu Arnold To: Mark Felder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r421954 - in head/converters: . p5-Bencode References: <201609121944.u8CJi43g075720@repo.freebsd.org> In-Reply-To: <201609121944.u8CJi43g075720@repo.freebsd.org> --cXo7grlT3FjlXVHhf8WmCiWhuukLIVngE Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 12/09/2016 =C3=A0 21:44, Mark Felder a =C3=A9crit : > + > +RUN_DEPENDS=3D p5-Exporter-Tidy>0:devel/p5-Exporter-Tidy > + > Please, also add it to BUILD_DEPENDS, right now when building, it says: =3D=3D=3D> Configuring for p5-Bencode-1.402 Warning: prerequisite Exporter::Tidy 0 not found. --=20 Mathieu Arnold --cXo7grlT3FjlXVHhf8WmCiWhuukLIVngE-- --TxsnhPHxO89W2kkkFWnc1SiWEe5VSFiFV Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX18cJXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IlBYP/RC9JFDDAtS6hu9ECqxCe//R 8PjAx6pmcxoRkeHKmdTUKtFypG1yMzZdga7R68HLyqWOlIwCYOl2FByr+b2CvcXV gpBSXcG3dywQVKyxE8p7xEZiavHEf2pEhSEfzbhV0h0p8DRbEBCoWBqi8J6DSPfx PQfNnkcD62WtmD5uMQtXQphB/o5W2QJqIRoCTFkzVPJ4syeIq42l0d0Nyvoaspae vWtkOfhl7h6xyiiE3UpZBfgt53kwBd6MDsGy3AE2OyBgcbaqO93khPW2idt9/rtU 6hQYpeWFIquISzO656Y0wDFGeCE88ifyM2K6mYYrfYlPUHPTm5rst1a3xrh5lehb Q0zGKb2uWuSIGJ5uCv77JPzMKF4sbvkpBW3mYWjfh181uwHuJT43EkSLG2auS8kL AKMWUgRrPDBM0YxoYPu/8oEHjmFBDAGyKqugSYW8eMP67owQ/V541En5FHwoztTd 3XzROz+qo6+IRzTdcVgNzRsQHX+dhucutrkOGOwxqcJUmRNOKzMKSHdTelvUWgrK wU9bwM5/bAMiXe46sjAecbVWm3JXJWxMAivluKs+uHnOT1ESPbWLME/c+PinZodR dUN55Qk73jiUtKXj2vNnXr8hEkoDSvf3JtmlmvWyYm1YfHHxTy8gzcoikzGjeLNI aNGfbOr5t+sfLNS0I/U/ =4qKF -----END PGP SIGNATURE----- --TxsnhPHxO89W2kkkFWnc1SiWEe5VSFiFV-- From owner-svn-ports-head@freebsd.org Tue Sep 13 10:53:26 2016 Return-Path: Delivered-To: svn-ports-head@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 3ADA0BD7D79; Tue, 13 Sep 2016 10:53: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 18E5B5FB; Tue, 13 Sep 2016 10:53: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 u8DArPCX019640; Tue, 13 Sep 2016 10:53:25 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DArOet019634; Tue, 13 Sep 2016 10:53:24 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609131053.u8DArOet019634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 13 Sep 2016 10:53:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421992 - in head/www: moodle29 moodle30 moodle31 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 10:53:26 -0000 Author: wen Date: Tue Sep 13 10:53:24 2016 New Revision: 421992 URL: https://svnweb.freebsd.org/changeset/ports/421992 Log: - Update moodle to 3.1.2, 3.0.6 and 2.9.8 Modified: head/www/moodle29/Makefile head/www/moodle29/distinfo head/www/moodle30/Makefile head/www/moodle30/distinfo head/www/moodle31/Makefile head/www/moodle31/distinfo Modified: head/www/moodle29/Makefile ============================================================================== --- head/www/moodle29/Makefile Tue Sep 13 09:04:45 2016 (r421991) +++ head/www/moodle29/Makefile Tue Sep 13 10:53:24 2016 (r421992) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 2.9.7 +PORTVERSION= 2.9.8 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable29/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: head/www/moodle29/distinfo ============================================================================== --- head/www/moodle29/distinfo Tue Sep 13 09:04:45 2016 (r421991) +++ head/www/moodle29/distinfo Tue Sep 13 10:53:24 2016 (r421992) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468351649 -SHA256 (moodle-2.9.7.tgz) = 87261ce872ef7bab3c04a4ae28cc41168af2d5fdd1c35bab6aca02132e3725db -SIZE (moodle-2.9.7.tgz) = 36586018 +TIMESTAMP = 1473763059 +SHA256 (moodle-2.9.8.tgz) = 6606ff315bab35538f1e1fbbd51b3b65b6d59043689fa74938a3cc05d5236fe9 +SIZE (moodle-2.9.8.tgz) = 36585205 Modified: head/www/moodle30/Makefile ============================================================================== --- head/www/moodle30/Makefile Tue Sep 13 09:04:45 2016 (r421991) +++ head/www/moodle30/Makefile Tue Sep 13 10:53:24 2016 (r421992) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.0.5 +PORTVERSION= 3.0.6 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable30/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: head/www/moodle30/distinfo ============================================================================== --- head/www/moodle30/distinfo Tue Sep 13 09:04:45 2016 (r421991) +++ head/www/moodle30/distinfo Tue Sep 13 10:53:24 2016 (r421992) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468349825 -SHA256 (moodle-3.0.5.tgz) = e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 -SIZE (moodle-3.0.5.tgz) = 38156153 +TIMESTAMP = 1473745536 +SHA256 (moodle-3.0.6.tgz) = f7500e97a58942a69ee04f6f6155cbe93e1ca0631950c29d60a56babc25af7ee +SIZE (moodle-3.0.6.tgz) = 38172652 Modified: head/www/moodle31/Makefile ============================================================================== --- head/www/moodle31/Makefile Tue Sep 13 09:04:45 2016 (r421991) +++ head/www/moodle31/Makefile Tue Sep 13 10:53:24 2016 (r421992) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.2 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable31/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: head/www/moodle31/distinfo ============================================================================== --- head/www/moodle31/distinfo Tue Sep 13 09:04:45 2016 (r421991) +++ head/www/moodle31/distinfo Tue Sep 13 10:53:24 2016 (r421992) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468347071 -SHA256 (moodle-3.1.1.tgz) = 7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 -SIZE (moodle-3.1.1.tgz) = 37479843 +TIMESTAMP = 1473737031 +SHA256 (moodle-3.1.2.tgz) = a9315cd4d615af9b55541bbcaf65104c6167c7c92f5bed5c7ea29876d6534d7e +SIZE (moodle-3.1.2.tgz) = 37508124 From owner-svn-ports-head@freebsd.org Tue Sep 13 11:26:28 2016 Return-Path: Delivered-To: svn-ports-head@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 8E407BCFAC3; Tue, 13 Sep 2016 11:26:28 +0000 (UTC) (envelope-from mr@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 41B6669A; Tue, 13 Sep 2016 11:26:28 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DBQRp5030886; Tue, 13 Sep 2016 11:26:27 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DBQRKt030882; Tue, 13 Sep 2016 11:26:27 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201609131126.u8DBQRKt030882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Tue, 13 Sep 2016 11:26:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421993 - head/cad/kicad-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 11:26:28 -0000 Author: mr Date: Tue Sep 13 11:26:27 2016 New Revision: 421993 URL: https://svnweb.freebsd.org/changeset/ports/421993 Log: kicad switched to GIT (still hosted on launchpad) for development. Try to cope with it since bzr doesn't work any longer: - For distfile building, checkout first, than get last commit date... - Use the timestamp of the last commit as revision number. - Update to r20160910202359 (commit 7ad2f37391e3e0debb7b96cd7164961d118f44c1) - Some functions now seem to need/emit SSE instructions which seems not to be enabled on i386 by default so add -msse switch PR: 212026, 212130 Added: head/cad/kicad-devel/Makefile.git_rev (contents, props changed) Deleted: head/cad/kicad-devel/Makefile.bzr_rev Modified: head/cad/kicad-devel/Makefile head/cad/kicad-devel/distinfo head/cad/kicad-devel/pkg-plist Modified: head/cad/kicad-devel/Makefile ============================================================================== --- head/cad/kicad-devel/Makefile Tue Sep 13 10:53:24 2016 (r421992) +++ head/cad/kicad-devel/Makefile Tue Sep 13 11:26:27 2016 (r421993) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kicad -DISTVERSION= r${BZR_SRC_REV} +DISTVERSION= r${GIT_SRC_DATE} #PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= LOCAL/mr @@ -12,11 +12,12 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= mr@FreeBSD.org COMMENT= Schematic and PCB editing software -BUILD_DEPENDS= bzr:devel/bzr \ - ${LOCALBASE}/lib/${PYTHON_VERSION}/site-packages/bzrlib/plugins/bzrtools/bzrtools.py:devel/bzrtools \ - ${LOCALBASE}/include/glm/glm.hpp:math/glm +LICENSE= GPLv3 -LIB_DEPENDS= libboost_thread.so:devel/boost-libs +BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm + +LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ + libcurl.so:ftp/curl CONFLICTS= kicad-2014* @@ -24,11 +25,12 @@ DOCVERSION= 1.1 LIBVERSION= 1.0 #CXXFLAGS+= -std=c++11 -USE_GL= glew glu +CXXFLAGS+= -msse +USE_GL= glew glu gl USE_WX= 3.0 WX_COMPS= wx WX_UNICODE= yes -USE_GNOME= atk # Required by libwx_gtk2_aui-2.8.so +USE_GNOME= atk cairo # Required by libwx_gtk2_aui-2.8.so OPTIONS_DEFINE= DOCS @@ -39,7 +41,7 @@ BINS= cvpcb eeschema gerbview kicad pcb EXTRAS2RM= linux-non_unicode linux wings3d LINUX.README \ contrib_makefiles.txt running_kicad_under_W98.txt USES= desktop-file-utils shared-mime-info compiler:c++11-lib tar:bzip2 cmake \ - gettext python + gettext python ssl CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \ -DCMAKE_BUILD_TYPE="Debug" \ @@ -58,46 +60,66 @@ RUN_DEPENDS+= xpdf:graphics/xpdf .if defined(BOOTSTRAP) BOOST_RELEASE= 1.54.0 BOOST_VERS= ${BOOST_RELEASE:S|.|_|g} -BZR_SRC_REV!= bzr revno lp:kicad -#BZR_DOC_REV!= bzr revno lp:~kicad-developers/kicad/doc + +GIT_SRC_HASH=`cd ${WRKDIR}/kicad; git log -n 1 --pretty=format:"%H"` +GIT_SRC_DATE=`cd "${WRKDIR}/kicad"; git log -n 1 --date=iso-local -n 1 --pretty=format:"%cd" | \ + cut -c '1-19' | sed -e 's,-,,g' -e 's,:,,g' -e 's, ,,g'` + .else -.include "Makefile.bzr_rev" +.include "Makefile.git_rev" .endif +showversions: + @${ECHO} "BOOST_RELEASE: ${BOOST_RELEASE}" + @${ECHO} "BOOST_VERS: ${BOOST_VERS}" + @${ECHO} "GIT_SRC_HASH: ${GIT_SRC_HASH}" + @${ECHO} "GIT_SRC_DATE: ${GIT_SRC_DATE}" + @${ECHO} "DISTDIR: ${DISTDIR}" + @${ECHO} "DIST_SUBDIR: ${DIST_SUBDIR}" + @${ECHO} "DISTNAME: ${DISTNAME}" + @${ECHO} "DISTVERSION: ${DISTVERSION}" + .if defined(BOOTSTRAP) # Updating to new rev: -# make do-fetch BOOTSTRAP=YES && make makesum && make clean +# make do-fetch BOOTSTRAP=YES && make do-revisions BOOTSTRAP=YES && make do-distfile BOOTSTRAP=YES +# make makesum && make clean # make && make makeplist && make generate-plist && make check-plist # < Check PLIST_FILE_LIST below > FETCH_DEPENDS+= svn:devel/subversion -FETCH_DEPENDS+= bzr:devel/bzr +BUILD_DEPENDS+= git:devel/git +FETCH_DEPENDS+= git:devel/git -showversions: - @${ECHO} "BOOST_RELEASE: ${BOOST_RELEASE}" - @${ECHO} "BOOST_VERS: ${BOOST_VERS}" - @${ECHO} "BZR_SRC_REV: ${BZR_SRC_REV}" - @${ECHO} "BZR_LIB_REV: ${BZR_LIB_REV}" - @${ECHO} "BZR_DOC_REV: ${BZR_DOC_REV}" +do-distfile: + @if [ \! -d "${WRKDIR}/kicad-r${GIT_SRC_DATE}" ]; then \ + cd ${WRKDIR}; \ + mkdir "${WRKDIR}/kicad-r${GIT_SRC_DATE}"; \ + cd kicad; \ + find . -type d -name .git -prune -o -print | cpio -pdamuv "../kicad-r${GIT_SRC_DATE}"; \ + fi; + @cd ${WRKDIR}; \ + tar xvf master.zip; \ + tar cvfy ${DISTDIR}/${DIST_SUBDIR}/kicad-r${GIT_SRC_DATE}.tar.bz2 \ + kicad-r${GIT_SRC_DATE} kicad-library-master + +do-revisions: + echo "BOOST_RELEASE= ${BOOST_RELEASE}" > ${MASTERDIR}/Makefile.git_rev + echo "BOOST_VERS= ${BOOST_VERS}" >> ${MASTERDIR}/Makefile.git_rev + echo "GIT_SRC_HASH= ${GIT_SRC_HASH}" >> ${MASTERDIR}/Makefile.git_rev + echo "GIT_SRC_DATE= ${GIT_SRC_DATE}" >> ${MASTERDIR}/Makefile.git_rev do-fetch: ${MKDIR} ${WRKDIR} - ${ECHO} ${WRKSRC} - bzr export -r ${BZR_SRC_REV} ${WRKSRC} lp:kicad - ${FETCH_CMD} --no-verify-peer -o ${WRKDIR}/master.zip https://github.com/KiCad/kicad-library/archive/master.zip -# bzr export -r ${BZR_DOC_REV} ${WRKDIR}/kicad-doc lp:~kicad-developers/kicad/doc -# fetch -o ${WRKDIR}/${DISTNAME}/boost_${BOOST_VERS}.tar.bz2 \ -# http://downloads.sourceforge.net/project/boost/boost/${BOOST_RELEASE}/boost_${BOOST_VERS}.tar.bz2 - cd ${WRKDIR}; \ - tar xvf master.zip; \ - tar cvfy ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}.tar.bz2 \ - ${DISTNAME} kicad-library-master - echo "BOOST_RELEASE= ${BOOST_RELEASE}" > ${MASTERDIR}/Makefile.bzr_rev - echo "BOOST_VERS= ${BOOST_VERS}" >> ${MASTERDIR}/Makefile.bzr_rev - echo "BZR_SRC_REV= ${BZR_SRC_REV}" >> ${MASTERDIR}/Makefile.bzr_rev - echo "BZR_LIB_REV= ${BZR_LIB_REV}" >> ${MASTERDIR}/Makefile.bzr_rev -# echo "BZR_DOC_REV= ${BZR_DOC_REV}" >> ${MASTERDIR}/Makefile.bzr_rev + @${ECHO} ${WRKSRC} + @if [ \! -d "${WRKDIR}/kicad" ]; then \ + cd ${WRKDIR}; \ + echo git clone https://git.launchpad.net/kicad; \ + fi; + @if [ \! -f "${WRKDIR}/master.zip" ]; then \ + ${FETCH_CMD} --no-verify-peer -o ${WRKDIR}/master.zip https://github.com/KiCad/kicad-library/archive/master.zip; \ + fi; + .endif tmp: Added: head/cad/kicad-devel/Makefile.git_rev ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/kicad-devel/Makefile.git_rev Tue Sep 13 11:26:27 2016 (r421993) @@ -0,0 +1,4 @@ +BOOST_RELEASE= 1.54.0 +BOOST_VERS= 1_54_0 +GIT_SRC_HASH= 7ad2f37391e3e0debb7b96cd7164961d118f44c1 +GIT_SRC_DATE= 20160910202359 Modified: head/cad/kicad-devel/distinfo ============================================================================== --- head/cad/kicad-devel/distinfo Tue Sep 13 10:53:24 2016 (r421992) +++ head/cad/kicad-devel/distinfo Tue Sep 13 11:26:27 2016 (r421993) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465418419 -SHA256 (kicad/kicad-r6904.tar.bz2) = 4afc25cb2e290bf0632e546ed42d1a60fd987dad81ab8000da5aaff7ca773a25 -SIZE (kicad/kicad-r6904.tar.bz2) = 94165593 +TIMESTAMP = 1473692391 +SHA256 (kicad/kicad-r20160910202359.tar.bz2) = d0a7bb35b02ba73a5459a91ab92f277f1385c8eea2fb64680c9e4c620c4607ed +SIZE (kicad/kicad-r20160910202359.tar.bz2) = 81263306 Modified: head/cad/kicad-devel/pkg-plist ============================================================================== --- head/cad/kicad-devel/pkg-plist Tue Sep 13 10:53:24 2016 (r421992) +++ head/cad/kicad-devel/pkg-plist Tue Sep 13 11:26:27 2016 (r421993) @@ -48,8 +48,6 @@ lib/libkicad_3dsg.so.2.0.0 %%PORTDOCS%%%%DOCSDIR%%/scripts/library-repos-install.bat %%PORTDOCS%%%%DOCSDIR%%/scripts/library-repos-install.sh %%PORTDOCS%%%%DOCSDIR%%/scripts/mk_mime_icons.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/osx_build_wx.sh -%%PORTDOCS%%%%DOCSDIR%%/scripts/osx_fixbundle.sh %%PORTDOCS%%%%DOCSDIR%%/scripts/test_kicad_plugin.py %%PORTDOCS%%%%DOCSDIR%%/scripts/test_plugin.py share/icons/hicolor/128x128/apps/bitmap2component.png @@ -197,6 +195,19 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/demos/pspice/pspice.sch %%DATADIR%%/demos/python_scripts_examples/gen_gerber_and_drill_files_board.py %%DATADIR%%/demos/python_scripts_examples/plot_board.py +%%DATADIR%%/demos/simulation/laser_driver/ad8009.lib +%%DATADIR%%/demos/simulation/laser_driver/fzt1049a.lib +%%DATADIR%%/demos/simulation/laser_driver/laser.lib +%%DATADIR%%/demos/simulation/laser_driver/laser_driver-cache.lib +%%DATADIR%%/demos/simulation/laser_driver/laser_driver.pro +%%DATADIR%%/demos/simulation/laser_driver/laser_driver.sch +%%DATADIR%%/demos/simulation/rectifier/rectifier-cache.lib +%%DATADIR%%/demos/simulation/rectifier/rectifier.pro +%%DATADIR%%/demos/simulation/rectifier/rectifier.sch +%%DATADIR%%/demos/simulation/sallen_key/ad8051.lib +%%DATADIR%%/demos/simulation/sallen_key/sallen_key-cache.lib +%%DATADIR%%/demos/simulation/sallen_key/sallen_key.pro +%%DATADIR%%/demos/simulation/sallen_key/sallen_key.sch %%DATADIR%%/demos/sonde xilinx/sonde xilinx-cache.lib %%DATADIR%%/demos/sonde xilinx/sonde xilinx.kicad_pcb %%DATADIR%%/demos/sonde xilinx/sonde xilinx.net @@ -319,10 +330,12 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/library/Buildingblocks/KiCAD-HierarchcalSchematicsAndBuildingBlocksRevA-EN.pdf %%DATADIR%%/library/Buildingblocks/KiCAD-HierarchischeSchaltplaeneUndBuildingBlocks3-DE.pdf %%DATADIR%%/library/CMakeLists.txt +%%DATADIR%%/library/ESD_Protection.dcm %%DATADIR%%/library/ESD_Protection.lib %%DATADIR%%/library/Lattice.dcm %%DATADIR%%/library/Lattice.lib %%DATADIR%%/library/Oscillators.lib +%%DATADIR%%/library/Power_Management.dcm %%DATADIR%%/library/Power_Management.lib %%DATADIR%%/library/Worldsemi.dcm %%DATADIR%%/library/Worldsemi.lib @@ -493,249 +506,15 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/library/video.lib %%DATADIR%%/library/xilinx.dcm %%DATADIR%%/library/xilinx.lib -%%DATADIR%%/modules/7Segment_16Sep2013.kicad_pcb -%%DATADIR%%/modules/BNC-Sockets_RevA.kicad_pcb -%%DATADIR%%/modules/Buzzer_Beeper_RevA_25Oct2010.kicad_pcb %%DATADIR%%/modules/CMakeLists.txt -%%DATADIR%%/modules/Capacitors_Elko_ThroughHole.kicad_pcb -%%DATADIR%%/modules/Capacitors_ThroughHole_RevA.kicad_pcb -%%DATADIR%%/modules/Choke_Axial_ThroughHole_RevB.kicad_pcb -%%DATADIR%%/modules/Choke_Radial_ThroughHole_CD_Bobin_RevA.kicad_pcb -%%DATADIR%%/modules/Choke_SMD_RevB_28Dez2012.kicad_pcb -%%DATADIR%%/modules/Choke_Toroid_ThroughHole_RevC_06Aug2010.kicad_pcb -%%DATADIR%%/modules/CommonModeChoke_Wuerth_Type-WE-CMB_RevA_24Oct2010.kicad_pcb -%%DATADIR%%/modules/Connectors_Serial_MOLEX.kicad_pcb -%%DATADIR%%/modules/Crystals.kicad_pcb -%%DATADIR%%/modules/DCDC-ACDC-Converter_1_RevC_20Jul2012.kicad_pcb -%%DATADIR%%/modules/DCDC-ACDC-Converter_2_RevC_20Jul2012.kicad_pcb -%%DATADIR%%/modules/DIP_Sockets.brd -%%DATADIR%%/modules/DIP_Sockets_Special.brd -%%DATADIR%%/modules/Diodes_SMD.kicad_pcb -%%DATADIR%%/modules/Diodes_ThroughHole.kicad_pcb -%%DATADIR%%/modules/Discret1.brd -%%DATADIR%%/modules/Display.brd -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part1.kicad_pcb -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part2.kicad_pcb -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part3.kicad_pcb -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part4.kicad_pcb -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part5.kicad_pcb -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part6.kicad_pcb -%%DATADIR%%/modules/EuroBoardoutline_RevC_Part7.kicad_pcb -%%DATADIR%%/modules/Fiducials.kicad_pcb -%%DATADIR%%/modules/Footprint_Symbols.kicad_pcb -%%DATADIR%%/modules/Fuse_Holders_and_Fuses.kicad_pcb -%%DATADIR%%/modules/Heatsinks.kicad_pcb -%%DATADIR%%/modules/Housings_ROHM.kicad_pcb -%%DATADIR%%/modules/Housings_SIP9.kicad_pcb -%%DATADIR%%/modules/Housings_SOT.kicad_pcb -%%DATADIR%%/modules/Housings_SOT23_SOT143_TSOT6.kicad_pcb -%%DATADIR%%/modules/Housings_TO-50.kicad_pcb -%%DATADIR%%/modules/Housings_TO-78.kicad_pcb -%%DATADIR%%/modules/IR-DirectFETs.kicad_pcb -%%DATADIR%%/modules/LEDs.brd -%%DATADIR%%/modules/LEM_HallEffectTransducers_RevA_13Oct2012.kicad_pcb -%%DATADIR%%/modules/LQFP_TQFP_RevA_06Oct2013.kicad_pcb -%%DATADIR%%/modules/Label_RevA_21Mar2011.brd -%%DATADIR%%/modules/Measurement_Points.kicad_pcb -%%DATADIR%%/modules/Measurement_Scales.kicad_pcb -%%DATADIR%%/modules/Mechanical_Sockets.kicad_pcb -%%DATADIR%%/modules/NF-Transformers_ETAL.kicad_pcb -%%DATADIR%%/modules/Neosid_Air-Coils_SML.kicad_pcb -%%DATADIR%%/modules/Neosid_Filters_HF-Coils.kicad_pcb -%%DATADIR%%/modules/Neosid_Inductors.kicad_pcb -%%DATADIR%%/modules/Oddities.kicad_pcb -%%DATADIR%%/modules/OldSowjetAera_Transistor_RevA.kicad_pcb -%%DATADIR%%/modules/Opto-Devices.kicad_pcb -%%DATADIR%%/modules/Oscillator-Modules.kicad_pcb -%%DATADIR%%/modules/Oscillators.kicad_pcb -%%DATADIR%%/modules/PFF_PSF_PSS_Leadforms.kicad_pcb -%%DATADIR%%/modules/Pentawatts.kicad_pcb -%%DATADIR%%/modules/Potentiometer_Part2_RevB_02Aug2010.kicad_pcb -%%DATADIR%%/modules/Potentiometers.kicad_pcb -%%DATADIR%%/modules/Power_Packages_SMD.kicad_pcb -%%DATADIR%%/modules/Printtrafo_CHK_Part1_RevA_04Aug2010.kicad_pcb -%%DATADIR%%/modules/Printtrafo_CHK_Part2_RevA_04Aug2010.kicad_pcb -%%DATADIR%%/modules/Printtrafo_CHK_Part3_RevA_04Aug2010.kicad_pcb -%%DATADIR%%/modules/Relays_ThroughHole.kicad_pcb -%%DATADIR%%/modules/Resistor_ThroughHole.kicad_pcb -%%DATADIR%%/modules/Resistors_SMD.kicad_pcb -%%DATADIR%%/modules/Resistors_ThroughHole.kicad_pcb -%%DATADIR%%/modules/Resistors_Universal.kicad_pcb -%%DATADIR%%/modules/SOT89-3_SOT89-5_Housing_RevA_02Sep2012.kicad_pcb -%%DATADIR%%/modules/Socket_WAGO734.kicad_pcb -%%DATADIR%%/modules/Sockets_MOLEX_KK-System.kicad_pcb -%%DATADIR%%/modules/Sockets_Mini-Universal.kicad_pcb -%%DATADIR%%/modules/TO-92_Housings_06Jun2013_Part1.kicad_pcb -%%DATADIR%%/modules/TO-92_Housings_06Jun2013_Part2.kicad_pcb -%%DATADIR%%/modules/TO-92_Housings_06Jun2013_Part3.kicad_pcb -%%DATADIR%%/modules/TantalCapacitors_SMD_RevA_28Aug2012.kicad_pcb -%%DATADIR%%/modules/Terminal_Blocks.kicad_pcb -%%DATADIR%%/modules/Transformers_SMPS_ThroughHole.kicad_pcb -%%DATADIR%%/modules/Transistor_TO-220_RevC_28Feb2014.kicad_pcb -%%DATADIR%%/modules/Transistor_TO-247_RevC_Part1.kicad_pcb -%%DATADIR%%/modules/Transistor_TO-247_RevC_Part2.kicad_pcb -%%DATADIR%%/modules/Wire_Connections_Bridges.kicad_pcb -%%DATADIR%%/modules/Wire_Pads.kicad_pcb -%%DATADIR%%/modules/affich.brd -%%DATADIR%%/modules/capa_pol.equ -%%DATADIR%%/modules/ci.equ -%%DATADIR%%/modules/conn_DBxx.brd -%%DATADIR%%/modules/conn_HExx.brd -%%DATADIR%%/modules/connect1.brd -%%DATADIR%%/modules/connect2.brd -%%DATADIR%%/modules/devcms.equ -%%DATADIR%%/modules/device.equ -%%DATADIR%%/modules/footprints_doc/7Segment_16Sep2013.pdf -%%DATADIR%%/modules/footprints_doc/7Segment_16Sep2013.ps -%%DATADIR%%/modules/footprints_doc/Allegro_HallSensors_CB-PFF_CB-PSF_CB-FSS_Housings_24Oct2012.pdf -%%DATADIR%%/modules/footprints_doc/Allegro_HallSensors_CB-PFF_CB-PSF_CB-FSS_Housings_24Oct2012.ps -%%DATADIR%%/modules/footprints_doc/BNC-Sockets_RevA.pdf -%%DATADIR%%/modules/footprints_doc/BNC-Sockets_RevA.ps -%%DATADIR%%/modules/footprints_doc/Buzzer_Beeper_RevA_25Oct2010.pdf -%%DATADIR%%/modules/footprints_doc/Buzzer_Beeper_RevA_25Oct2010.ps -%%DATADIR%%/modules/footprints_doc/Capacitors_SMD_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Capacitors_SMD_RevA.ps -%%DATADIR%%/modules/footprints_doc/Capacitors_ThroughHole_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Capacitors_ThroughHole_RevA.ps -%%DATADIR%%/modules/footprints_doc/Choke_Axial_ThroughHole_RevB.pdf -%%DATADIR%%/modules/footprints_doc/Choke_Axial_ThroughHole_RevB.ps -%%DATADIR%%/modules/footprints_doc/Choke_Radial_ThroughHole_CD_Bobin_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Choke_Radial_ThroughHole_CD_Bobin_RevA.ps -%%DATADIR%%/modules/footprints_doc/Choke_SMD_RevB_28Dez2012.pdf -%%DATADIR%%/modules/footprints_doc/Choke_SMD_RevB_28Dez2012.ps -%%DATADIR%%/modules/footprints_doc/Choke_Toroid_ThroughHole_RevB_06Aug2010.pdf -%%DATADIR%%/modules/footprints_doc/Choke_Toroid_ThroughHole_RevC_06Aug2010.ps -%%DATADIR%%/modules/footprints_doc/CommonModeChoke_Wuerth_Type-WE-CMB_RevA_24Oct2010.pdf -%%DATADIR%%/modules/footprints_doc/CommonModeChoke_Wuerth_Type-WE-CMB_RevA_24Oct2010.ps -%%DATADIR%%/modules/footprints_doc/Crystals_RevB_20Apr2013.pdf -%%DATADIR%%/modules/footprints_doc/Crystals_RevB_20Apr2013.ps -%%DATADIR%%/modules/footprints_doc/DCDC-ACDC-Converter_1_RevC_20Jul2012.ps -%%DATADIR%%/modules/footprints_doc/DCDC-ACDC-Converter_2_RevC_20Jul2012.ps -%%DATADIR%%/modules/footprints_doc/DCDC-ACDC-Converter_RevC_20Jul2012.pdf -%%DATADIR%%/modules/footprints_doc/Dioden_SMD_RevA_31May2013.pdf -%%DATADIR%%/modules/footprints_doc/Dioden_SMD_RevA_31May2013.ps -%%DATADIR%%/modules/footprints_doc/Dioden_ThroughHole_RevC.pdf -%%DATADIR%%/modules/footprints_doc/Dioden_ThroughHole_RevC.ps -%%DATADIR%%/modules/footprints_doc/Elko_ThroughHole_RevB-3_30Dec2011.pdf -%%DATADIR%%/modules/footprints_doc/Elko_ThroughHole_RevB-3_30Dec2011.ps -%%DATADIR%%/modules/footprints_doc/EuroBoardoutline_RevC.pdf -%%DATADIR%%/modules/footprints_doc/Fiducials_RevC_04Aug2012.pdf -%%DATADIR%%/modules/footprints_doc/Fiducials_RevC_04Aug2012.ps -%%DATADIR%%/modules/footprints_doc/Footprint-Symbols_RevD_28Aug2012.pdf -%%DATADIR%%/modules/footprints_doc/Footprint-Symbols_RevD_28Aug2012.ps -%%DATADIR%%/modules/footprints_doc/FuseholderAndFuses_RevD_02Oct2013.pdf -%%DATADIR%%/modules/footprints_doc/FuseholderAndFuses_RevD_02Oct2013.ps -%%DATADIR%%/modules/footprints_doc/Heatsinks_RevC.pdf -%%DATADIR%%/modules/footprints_doc/Heatsinks_RevC.ps -%%DATADIR%%/modules/footprints_doc/IR-directFET_Packages_RevB.pdf -%%DATADIR%%/modules/footprints_doc/IR-directFET_Packages_RevB.ps -%%DATADIR%%/modules/footprints_doc/LEM_HallEffectTransducers_RevA_13Oct2012.pdf -%%DATADIR%%/modules/footprints_doc/LEM_HallEffectTransducers_RevA_13Oct2012.ps -%%DATADIR%%/modules/footprints_doc/LQFP_TQFP_RevA_06Oct2013.pdf -%%DATADIR%%/modules/footprints_doc/LQFP_TQFP_RevA_06Oct2013.ps -%%DATADIR%%/modules/footprints_doc/Label_RevA_21Mar2011.pdf -%%DATADIR%%/modules/footprints_doc/Label_RevA_21Mar2011.ps -%%DATADIR%%/modules/footprints_doc/Measurement-Scala_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Measurement-Scala_RevA.ps -%%DATADIR%%/modules/footprints_doc/Measurement_Point_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Measurement_Point_RevA.ps -%%DATADIR%%/modules/footprints_doc/Mechanical_Socket-Plug_DIN41612-Stuff_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Mechanical_Socket-Plug_DIN41612-Stuff_RevA.ps -%%DATADIR%%/modules/footprints_doc/MiniUniversalMate-N-LokSockets_13Aug2012.pdf -%%DATADIR%%/modules/footprints_doc/MiniUniversalMate-N-LokSockets_13Aug2012.ps -%%DATADIR%%/modules/footprints_doc/NF-Transformer_ETAL_RevA_28Aug2012.pdf -%%DATADIR%%/modules/footprints_doc/NF-Transformer_ETAL_RevA_28Aug2012.ps -%%DATADIR%%/modules/footprints_doc/Neosid_Air-Coil_SML_HAMxx31A_HDMxx31A_RevA_25Apr2012.pdf -%%DATADIR%%/modules/footprints_doc/Neosid_Air-Coil_SML_HAMxx31A_HDMxx31A_RevA_25Apr2012.ps -%%DATADIR%%/modules/footprints_doc/Neosid_Filter_HF-Coil_25Apr2012.pdf -%%DATADIR%%/modules/footprints_doc/Neosid_Filter_HF-Coil_25Apr2012.ps -%%DATADIR%%/modules/footprints_doc/Neosid_Inductor_21Apr2012.pdf -%%DATADIR%%/modules/footprints_doc/Neosid_Inductor_21Apr2012.ps -%%DATADIR%%/modules/footprints_doc/Oddities_RevA_10Mar2011.pdf -%%DATADIR%%/modules/footprints_doc/Oddities_RevA_10Mar2011.ps -%%DATADIR%%/modules/footprints_doc/OldSowjetAera_Transistor_RevA.pdf -%%DATADIR%%/modules/footprints_doc/OldSowjetAera_Transistor_RevA.ps -%%DATADIR%%/modules/footprints_doc/Opto-Devices_RevC_03Oct2012.pdf -%%DATADIR%%/modules/footprints_doc/Opto-Devices_RevC_03Oct2012.ps -%%DATADIR%%/modules/footprints_doc/Oscillator-Modul_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Oscillator-Modul_RevA.ps -%%DATADIR%%/modules/footprints_doc/Pentawatt_RevB_30Apr2011.pdf -%%DATADIR%%/modules/footprints_doc/Pentawatt_RevB_30Apr2011.ps -%%DATADIR%%/modules/footprints_doc/Potentiometer_Part1_RevB_02Aug2010.ps -%%DATADIR%%/modules/footprints_doc/Potentiometer_Part2_RevB_02Aug2010.ps -%%DATADIR%%/modules/footprints_doc/Potentiometer_RevB_02Aug2010.pdf -%%DATADIR%%/modules/footprints_doc/Power_Packages_SMD.pdf -%%DATADIR%%/modules/footprints_doc/Power_Packages_SMD.ps -%%DATADIR%%/modules/footprints_doc/Printtrafo_CHK_Part1_RevA_04Aug2010.ps -%%DATADIR%%/modules/footprints_doc/Printtrafo_CHK_Part2_RevA_04Aug2010.ps -%%DATADIR%%/modules/footprints_doc/Printtrafo_CHK_Part3_RevA_04Aug2010.ps -%%DATADIR%%/modules/footprints_doc/Printtrafo_CHK_RevA_04Aug2010.pdf -%%DATADIR%%/modules/footprints_doc/Relay_ThroughHole_RevC_07Oct2013.pdf -%%DATADIR%%/modules/footprints_doc/Relay_ThroughHole_RevC_07Oct2013.ps -%%DATADIR%%/modules/footprints_doc/Resistor_SMD_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Resistor_SMD_RevA.ps -%%DATADIR%%/modules/footprints_doc/Resistor_ThroughHole_RevB_22Apr2011.pdf -%%DATADIR%%/modules/footprints_doc/Resistor_ThroughHole_RevB_22Apr2011.ps -%%DATADIR%%/modules/footprints_doc/Resistor_Universal-Experimental_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Resistor_Universal-Experimental_RevA.ps -%%DATADIR%%/modules/footprints_doc/SI570_SI571_Oscillator_RevA_11Jun2012.pdf -%%DATADIR%%/modules/footprints_doc/SI570_SI571_Oscillator_RevA_11Jun2012.ps -%%DATADIR%%/modules/footprints_doc/SIP9_Housing_14Jun2013.pdf -%%DATADIR%%/modules/footprints_doc/SIP9_Housing_14Jun2013.ps -%%DATADIR%%/modules/footprints_doc/SOT126_SOT32_Housings_RevA_22Oct2012.pdf -%%DATADIR%%/modules/footprints_doc/SOT126_SOT32_Housings_RevA_22Oct2012.ps -%%DATADIR%%/modules/footprints_doc/SOT23_SOT143_SOT143R_TSOT6_MK06A_SC70-6_Housing_26Jul2012.pdf -%%DATADIR%%/modules/footprints_doc/SOT23_SOT143_SOT143R_TSOT6_MK06A_SC70-6_Housing_26Jul2012.ps -%%DATADIR%%/modules/footprints_doc/SOT89-3_SOT89-5_Housing_RevA_02Sep2012.pdf -%%DATADIR%%/modules/footprints_doc/SOT89-3_SOT89-5_Housing_RevA_02Sep2012.ps -%%DATADIR%%/modules/footprints_doc/Socket_MOLEX-KK-System.pdf -%%DATADIR%%/modules/footprints_doc/Socket_MOLEX-KK-System.ps -%%DATADIR%%/modules/footprints_doc/Socket_WAGO734_RevA.pdf -%%DATADIR%%/modules/footprints_doc/Socket_WAGO734_RevA.ps -%%DATADIR%%/modules/footprints_doc/TO-12_TO-18_TO-43_TO-42_Housings_11Jun2013.ps -%%DATADIR%%/modules/footprints_doc/TO-50_Housings_RevA_21Apr2013.pdf -%%DATADIR%%/modules/footprints_doc/TO-50_Housings_RevA_21Apr2013.ps -%%DATADIR%%/modules/footprints_doc/TO-78_Housing_RevA_04Jun2013.pdf -%%DATADIR%%/modules/footprints_doc/TO-78_Housing_RevA_04Jun2013.ps -%%DATADIR%%/modules/footprints_doc/TO-92_Housings_06Jun2013.pdf -%%DATADIR%%/modules/footprints_doc/TO-92_Housings_06Jun2013_Part1.ps -%%DATADIR%%/modules/footprints_doc/TO-92_Housings_06Jun2013_Part2.ps -%%DATADIR%%/modules/footprints_doc/TO-92_Housings_06Jun2013_Part3.ps -%%DATADIR%%/modules/footprints_doc/TantalCapacitors_SMD_RevA_28Aug2012.pdf -%%DATADIR%%/modules/footprints_doc/TantalCapacitors_SMD_RevA_28Aug2012.ps -%%DATADIR%%/modules/footprints_doc/TerminalBlock_WAGO236-RM5mm_RevA2.pdf -%%DATADIR%%/modules/footprints_doc/TerminalBlock_WAGO236-RM5mm_RevA2.ps -%%DATADIR%%/modules/footprints_doc/TransformerSMPS_ThroughHole_RevA.pdf -%%DATADIR%%/modules/footprints_doc/TransformerSMPS_ThroughHole_RevA.ps -%%DATADIR%%/modules/footprints_doc/Transistor_TO-220_RevB_03Sep2012.pdf -%%DATADIR%%/modules/footprints_doc/Transistor_TO-220_RevB_03Sep2012.ps -%%DATADIR%%/modules/footprints_doc/Transistor_TO-247_RevC.pdf -%%DATADIR%%/modules/footprints_doc/Transistor_TO-247_RevC_Part1.ps -%%DATADIR%%/modules/footprints_doc/Transistor_TO-247_RevC_Part2.ps -%%DATADIR%%/modules/footprints_doc/VML0806_Housing_Rohm_RevA_26Oct2012.pdf -%%DATADIR%%/modules/footprints_doc/VML0806_Housing_Rohm_RevA_26Oct2012.ps -%%DATADIR%%/modules/footprints_doc/WireConnections-Bridges_RevA.pdf -%%DATADIR%%/modules/footprints_doc/WirePads_RevA_15Jun2010.pdf -%%DATADIR%%/modules/footprints_doc/conn_DBxx.ps -%%DATADIR%%/modules/footprints_doc/conn_HExx.ps -%%DATADIR%%/modules/footprints_doc/connect1.ps -%%DATADIR%%/modules/footprints_doc/connect2.ps -%%DATADIR%%/modules/footprints_doc/discret1.ps -%%DATADIR%%/modules/footprints_doc/libcms-bga.ps -%%DATADIR%%/modules/footprints_doc/libcms.ps -%%DATADIR%%/modules/footprints_doc/merge_ps-files.bat -%%DATADIR%%/modules/footprints_doc/merge_ps-files.ps -%%DATADIR%%/modules/footprints_doc/miscellaneous.ps -%%DATADIR%%/modules/footprints_doc/pin_array.ps -%%DATADIR%%/modules/footprints_doc/sockets_DIP.ps -%%DATADIR%%/modules/footprints_doc/sockets_DIP_special.ps -%%DATADIR%%/modules/footprints_doc/sockets_PGA.ps -%%DATADIR%%/modules/footprints_doc/sockets_miscellaneous.ps -%%DATADIR%%/modules/libcms-bga.brd -%%DATADIR%%/modules/libcms.brd -%%DATADIR%%/modules/miscellaneous.brd -%%DATADIR%%/modules/miscellaneous.equ -%%DATADIR%%/modules/muonde.brd +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_EVQQ2_01W.wings +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_EVQQ2_01W.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_EVQQ2_02W.wings +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_EVQQ2_02W.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_EVQQ2_03W.wings +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_EVQQ2_03W.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings +%%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_ThroughHole.3dshapes/Push_E-Switch_KS01Q01.wings %%DATADIR%%/modules/packages3d/Buttons_Switches_ThroughHole.3dshapes/Push_E-Switch_KS01Q01.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_ThroughHole.3dshapes/SW_DIP_x10_Piano.wings @@ -1159,6 +938,8 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-130-xxx-x-DV-A-S.wrl %%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-140-xxx-x-DV-A-N.wrl %%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-140-xxx-x-DV-A-S.wrl +%%DATADIR%%/modules/packages3d/Converters_DCDC_ACDC.3dshapes/DCDC-Conv_TRACO_TSR-1.wings +%%DATADIR%%/modules/packages3d/Converters_DCDC_ACDC.3dshapes/DCDC-Conv_TRACO_TSR-1.wrl %%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-146.wrl %%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-156.wrl %%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-306.wrl @@ -1228,6 +1009,7 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/SMC_Handsoldering.wrl %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/SMC_Standard.wings %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/SMC_Standard.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/SOD-323.wrl %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/TUMD2.wings %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/TUMD2.wrl %%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/Diode_DO-35_SOD27_Horizontal_RM10.wings @@ -1706,6 +1488,8 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-8-1EP_3x3mm_Pitch0.65mm.wrl %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-8_3x3mm_Pitch0.65mm.wings %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-8_3x3mm_Pitch0.65mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/PSOP-44_27.17x16.9mm_Pitch1.27mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/PSOP-44_27.17x16.9mm_Pitch1.27mm.wrl %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/QSOP-16_3.9x4.9mm_Pitch0.635mm.wings %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/QSOP-16_3.9x4.9mm_Pitch0.635mm.wrl %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-14_5.3x6.2mm_Pitch0.65mm.wings @@ -1836,6 +1620,7 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/modules/packages3d/LEDs.3dshapes/LED_0805.wrl %%DATADIR%%/modules/packages3d/LEDs.3dshapes/LED_1206.wings %%DATADIR%%/modules/packages3d/LEDs.3dshapes/LED_1206.wrl +%%DATADIR%%/modules/packages3d/LEDs.3dshapes/LED_PLCC_2835.wrl %%DATADIR%%/modules/packages3d/LEDs.3dshapes/LED_WS2812-PLCC6.wrl %%DATADIR%%/modules/packages3d/LEDs.3dshapes/LED_WS2812B-PLCC4.wrl %%DATADIR%%/modules/packages3d/Measurement_Points.3dshapes/Test_Point.wrl @@ -2926,6 +2711,8 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/modules/packages3d/Sockets_DIP.3dshapes/DIP-8__300.wrl %%DATADIR%%/modules/packages3d/Sockets_DIP.3dshapes/DIP-8__300_ELL.wings %%DATADIR%%/modules/packages3d/Sockets_DIP.3dshapes/DIP-8__300_ELL.wrl +%%DATADIR%%/modules/packages3d/Sockets_MOLEX_KK-System.3dshapes/47053-1000.wings +%%DATADIR%%/modules/packages3d/Sockets_MOLEX_KK-System.3dshapes/47053-1000.wrl %%DATADIR%%/modules/packages3d/Sockets_PGA.3dshapes/U9.wings %%DATADIR%%/modules/packages3d/Sockets_PGA.3dshapes/U9.wrl %%DATADIR%%/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/PowerMacro_M234_NoHole.wings @@ -4130,18 +3917,6 @@ share/icons/hicolor/scalable/mimetypes/a %%DATADIR%%/modules/packages3d/unused_3d.3dshapes/to-xxx-packages.top3h.wrl %%DATADIR%%/modules/packages3d/unused_3d.3dshapes/to-xxx-packages.top3v.wings %%DATADIR%%/modules/packages3d/unused_3d.3dshapes/to-xxx-packages.top3v.wrl -%%DATADIR%%/modules/pga_sockets.brd -%%DATADIR%%/modules/pin_array.brd -%%DATADIR%%/modules/smd_active.equ -%%DATADIR%%/modules/smd_capa_0805.equ -%%DATADIR%%/modules/smd_capa_1206.equ -%%DATADIR%%/modules/smd_capa_pol.equ -%%DATADIR%%/modules/smd_passive.equ -%%DATADIR%%/modules/smd_resistor_0805.equ -%%DATADIR%%/modules/smd_resistor_1206.equ -%%DATADIR%%/modules/smd_trans-diodes.equ -%%DATADIR%%/modules/sockets_miscellaneous.brd -%%DATADIR%%/modules/standard-trans-diodes.equ %%DATADIR%%/template/Arduino_As_Uno_R3/Arduino_As_Uno-cache.lib %%DATADIR%%/template/Arduino_As_Uno_R3/Arduino_As_Uno.cmp %%DATADIR%%/template/Arduino_As_Uno_R3/Arduino_As_Uno.kicad_pcb From owner-svn-ports-head@freebsd.org Tue Sep 13 11:41:22 2016 Return-Path: Delivered-To: svn-ports-head@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 B5B13BD8118; Tue, 13 Sep 2016 11:41:22 +0000 (UTC) (envelope-from pawel@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 80B75DC5; Tue, 13 Sep 2016 11:41:22 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DBfL0b038552; Tue, 13 Sep 2016 11:41:21 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DBfLOF038549; Tue, 13 Sep 2016 11:41:21 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609131141.u8DBfLOF038549@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 13 Sep 2016 11:41:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421994 - head/net/ns3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 11:41:22 -0000 Author: pawel Date: Tue Sep 13 11:41:21 2016 New Revision: 421994 URL: https://svnweb.freebsd.org/changeset/ports/421994 Log: - Update to version 3.25 [1] - Register proxy dependencies found by stage-qa [1] - Convert LIB_DEPENDS to USES=sqlite and USE_GNOME=libxml2 - Simplify options helpers - Sort pkg-plist PR: 210158 [1] Submitted by: Nikola Kolev (maintainer) [1] Modified: head/net/ns3/Makefile head/net/ns3/distinfo head/net/ns3/pkg-plist Modified: head/net/ns3/Makefile ============================================================================== --- head/net/ns3/Makefile Tue Sep 13 11:26:27 2016 (r421993) +++ head/net/ns3/Makefile Tue Sep 13 11:41:21 2016 (r421994) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ns3 -PORTVERSION= 3.24.1 +PORTVERSION= 3.25 CATEGORIES= net MASTER_SITES= https://www.nsnam.org/release/ DISTNAME= ns-allinone-${PORTVERSION} @@ -11,10 +11,8 @@ COMMENT= Network simulator for Internet LICENSE= GPLv2 -LIB_DEPENDS= libxml2.so:textproc/libxml2 \ - libsqlite3.so:databases/sqlite3 - -USES= pkgconfig python tar:bzip2 waf +USES= gettext pkgconfig python sqlite tar:bzip2 waf +USE_GNOME= libxml2 USE_LDCONFIG= yes WRKSRC_SUBDIR= ns-${DISTVERSION} CONFIGURE_ARGS= --int64x64=cairo @@ -29,21 +27,21 @@ DEBUG_PLIST_SUB= DEBUG_SUFX="-debug" DEBUG_CONFIGURE_OFF= --build-profile=release DEBUG_PLIST_SUB_OFF= DEBUG_SUFX="" -EXAMPLES_CONFIGURE_ON= --enable-examples -EXAMPLES_CONFIGURE_OFF= --disable-examples +EXAMPLES_CONFIGURE_ENABLE= examples GSL_DESC= GNU Scientific Library support GSL_LIB_DEPENDS= libgsl.so:math/gsl -GTK2_LIB_DEPENDS= libgtk-x11-2.0.so:x11-toolkits/gtk20 +GTK2_USE= GNOME=atk,cairo,gdkpixbuf2,glib20,gtk20,pango +GTK2_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 GTK2_CONFIGURE_OFF= --disable-gtk SUDO_DESC= Use sudo to set suid bits on executables SUDO_BUILD_DEPENDS= sudo:security/sudo SUDO_CONFIGURE_ON= --enable-sudo -TEST_CONFIGURE_ON= --enable-tests -TEST_CONFIGURE_OFF= --disable-tests +TEST_CONFIGURE_ENABLE= tests post-install: @${FIND} ${STAGEDIR} \( -path '*/bin/*' -or -name '*.so' \) \ Modified: head/net/ns3/distinfo ============================================================================== --- head/net/ns3/distinfo Tue Sep 13 11:26:27 2016 (r421993) +++ head/net/ns3/distinfo Tue Sep 13 11:41:21 2016 (r421994) @@ -1,2 +1,3 @@ -SHA256 (ns-allinone-3.24.1.tar.bz2) = f4294d47dc94c836df1b17e780b8b866d7a77c20c85bd1f780d6024940206b53 -SIZE (ns-allinone-3.24.1.tar.bz2) = 24887273 +TIMESTAMP = 1473766737 +SHA256 (ns-allinone-3.25.tar.bz2) = f2f5a1c291134737c97e94c843bf10e7c921678d6759ccd5b3493fccdb1a2b93 +SIZE (ns-allinone-3.25.tar.bz2) = 25224410 Modified: head/net/ns3/pkg-plist ============================================================================== --- head/net/ns3/pkg-plist Tue Sep 13 11:26:27 2016 (r421993) +++ head/net/ns3/pkg-plist Tue Sep 13 11:41:21 2016 (r421994) @@ -1,22 +1,21 @@ -%%EXAMPLES%%bin/ns%%VERSION%%-basic-energy-model-test%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-ofdm-vht-validation%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-rv-battery-model-test%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-test-interference-helper%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-vht-wifi-network%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-adhoc-aloha-ideal-phy%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-80211n-mimo%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-adaptive-red-tests%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-adhoc-aloha-ideal-phy-matrix-propagation-loss-model%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-adhoc-aloha-ideal-phy-with-microwave-oven%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-adhoc-aloha-ideal-phy%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-aodv%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-basic-energy-model-test%%DEBUG_SUFX%% bin/ns%%VERSION%%-bench-packets%%DEBUG_SUFX%% bin/ns%%VERSION%%-bench-simulator%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-bonnmotion-ns2-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-buildings-pathloss-profiler%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-codel-vs-droptail-asymmetric%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-codel-vs-droptail-basic-test%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-codel-vs-pfifo-asymmetric%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-codel-vs-pfifo-basic-test%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-colors-link-description%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-command-line-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-config-store-save%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-csma-bridge%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-csma-bridge-one-hop%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-csma-bridge%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-csma-broadcast%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-csma-multicast%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-csma-one-subnet%%DEBUG_SUFX%% @@ -25,12 +24,10 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG %%EXAMPLES%%bin/ns%%VERSION%%-csma-raw-ip-socket%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-csma-star%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-double-probe-example%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-droptail_vs_red%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dsdv-manet%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dsr%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dumbbell-animation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-dynamic-global-routing%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-dynamic_linknode%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-energy-model-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-energy-model-with-harvesting-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-example-ping-lr-wpan%%DEBUG_SUFX%% @@ -40,9 +37,10 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG %%EXAMPLES%%bin/ns%%VERSION%%-file-helper-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-first%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-fourth%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-fragmentation-ipv6%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-fragmentation-ipv6-two-MTU%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-fragmentation-ipv6%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-global-injection-slash32%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-global-routing-multi-switch-plus-router%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-global-routing-slash32%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-gnuplot-aggregator-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-gnuplot-example%%DEBUG_SUFX%% @@ -52,6 +50,7 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG %%EXAMPLES%%bin/ns%%VERSION%%-hello-simulator%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-ht-wifi-network%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-icmpv6-redirect%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-ideal-wifi-manager-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-jakes-propagation-model-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-cqi-threshold%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-deactivate-bearer%%DEBUG_SUFX%% @@ -62,14 +61,14 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG %%EXAMPLES%%bin/ns%%VERSION%%-lena-intercell-interference%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-pathloss-traces%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-profiling%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-lena-rem%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-rem-sector-antenna%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-lena-rem%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-rlc-traces%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-lena-simple%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-simple-epc%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-lena-simple%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-uplink-power-control%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-lena-x2-handover%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lena-x2-handover-measures%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-lena-x2-handover%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-li-ion-energy-source%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-loose-routing-ipv6%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-lr-wpan-data%%DEBUG_SUFX%% @@ -85,54 +84,58 @@ bin/ns%%VERSION%%-bench-simulator%%DEBUG %%EXAMPLES%%bin/ns%%VERSION%%-main-propagation-loss%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-ptr%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-random-topology%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-main-random-variable%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-random-variable-stream%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-main-random-variable%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-random-walk%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-simple%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-main-test-sync%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-manet-routing-compare%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-matrix-topology%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-mesh%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-minstrel-ht-wifi-manager-example%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-mixed-bg-network%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-mixed-global-routing%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-mixed-wireless%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-mobility-trace-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-multirate%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-nix-simple%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-nms-p2p-nix%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-nms-p2p-nix-distributed%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-nms-p2p-nix%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-ns2-mobility-trace%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-object-names%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-ofdm-ht-validation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-ofdm-validation%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-ofdm-vht-validation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-olsr-hna%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-packet-socket-apps%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-pfifo-vs-red%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-ping6%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-power-adaptation-distance%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-power-adaptation-interference%%DEBUG_SUFX%% bin/ns%%VERSION%%-print-introspected-doxygen%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-radvd%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-radvd-two-prefix%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-radvd%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-rate-adaptation-distance%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-realtime-udp-echo%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-red-tests%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-resources_demo%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-red-vs-ared%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-resources-counters%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-rip-simple-network%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-ripng-simple-network%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-sample-random-variable%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-rv-battery-model-test%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-sample-random-variable-stream%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-sample-random-variable%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-sample-simulator%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-second%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-seventh%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-alternate-routing%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-simple-distributed%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-distributed-empty-node%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-simple-distributed%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-error-model%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-global-routing%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-ht-hidden-stations%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-simple-mpdu-aggregation%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-simple-msdu-aggregation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-point-to-point-olsr%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-simple-routing-ping6%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-simple-two-level-aggregation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-sixth%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-socket-bound-static-routing%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-socket-bound-tcp-static-routing%%DEBUG_SUFX%% @@ -146,13 +149,16 @@ bin/ns%%VERSION%%-print-introspected-dox %%EXAMPLES%%bin/ns%%VERSION%%-tcp-nsc-comparison%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-tcp-nsc-lfn%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-tcp-nsc-zoo%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-tcp-pcap-nanosec-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-tcp-star-server%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-tcp-variants-comparison%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-test-interference-helper%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-test-ipv6%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-third%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-third-distributed%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-third%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-time-probe-example%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-topology-read%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-topology-example-sim%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-traffic-control%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-tv-trans-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-tv-trans-regional-example%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-uan-animation%%DEBUG_SUFX%% @@ -162,21 +168,24 @@ bin/ns%%VERSION%%-print-introspected-dox %%EXAMPLES%%bin/ns%%VERSION%%-udp-echo%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-udp-trace-client-server%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-vanet-routing-compare%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-vht-wifi-network%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-virtual-net-device%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wave-simple-80211p%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wave-simple-device%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-adhoc%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-wifi-aggregation%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-ap%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-blockack%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-clear-channel-cmu%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-example-sim%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-hidden-terminal%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-phy-test%%DEBUG_SUFX%% -%%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-adhoc%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-adhoc-grid%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-adhoc%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-infra%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-simple-interference%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-sleep%%DEBUG_SUFX%% +%%EXAMPLES%%bin/ns%%VERSION%%-wifi-tcp%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-timing-attributes%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wifi-wired-bridging%%DEBUG_SUFX%% %%EXAMPLES%%bin/ns%%VERSION%%-wimax-ipv4%%DEBUG_SUFX%% @@ -261,6 +270,7 @@ include/ns%%VERSION%%/ns3/bs-uplink-sche include/ns%%VERSION%%/ns3/bs-uplink-scheduler.h include/ns%%VERSION%%/ns3/bsm-application.h include/ns%%VERSION%%/ns3/buffer.h +include/ns%%VERSION%%/ns3/build-profile.h include/ns%%VERSION%%/ns3/building-allocator.h include/ns%%VERSION%%/ns3/building-container.h include/ns%%VERSION%%/ns3/building-list.h @@ -287,7 +297,7 @@ include/ns%%VERSION%%/ns3/channel.h include/ns%%VERSION%%/ns3/chunk.h include/ns%%VERSION%%/ns3/cid-factory.h include/ns%%VERSION%%/ns3/cid.h -include/ns%%VERSION%%/ns3/codel-queue.h +include/ns%%VERSION%%/ns3/codel-queue-disc.h include/ns%%VERSION%%/ns3/command-line.h include/ns%%VERSION%%/ns3/config-store-config.h include/ns%%VERSION%%/ns3/config-store-module.h @@ -384,6 +394,7 @@ include/ns%%VERSION%%/ns3/epc-x2-sap.h include/ns%%VERSION%%/ns3/epc-x2.h include/ns%%VERSION%%/ns3/eps-bearer-tag.h include/ns%%VERSION%%/ns3/eps-bearer.h +include/ns%%VERSION%%/ns3/erp-information.h include/ns%%VERSION%%/ns3/error-model.h include/ns%%VERSION%%/ns3/error-rate-model.h include/ns%%VERSION%%/ns3/ethernet-header.h @@ -426,11 +437,6 @@ include/ns%%VERSION%%/ns3/global-value.h include/ns%%VERSION%%/ns3/gnuplot-aggregator.h include/ns%%VERSION%%/ns3/gnuplot-helper.h include/ns%%VERSION%%/ns3/gnuplot.h -include/ns%%VERSION%%/ns3/build-profile.h -include/ns%%VERSION%%/ns3/mac-tx-middle.h -include/ns%%VERSION%%/ns3/non-copyable.h -include/ns%%VERSION%%/ns3/vht-capabilities.h -include/ns%%VERSION%%/ns3/vht-wifi-mac-helper.h %%GTK2%%include/ns%%VERSION%%/ns3/gtk-config-store.h include/ns%%VERSION%%/ns3/half-duplex-ideal-phy-signal-parameters.h include/ns%%VERSION%%/ns3/half-duplex-ideal-phy.h @@ -444,6 +450,7 @@ include/ns%%VERSION%%/ns3/hierarchical-m include/ns%%VERSION%%/ns3/higher-tx-tag.h include/ns%%VERSION%%/ns3/histogram.h include/ns%%VERSION%%/ns3/ht-capabilities.h +include/ns%%VERSION%%/ns3/ht-operations.h include/ns%%VERSION%%/ns3/ht-wifi-mac-helper.h include/ns%%VERSION%%/ns3/hwmp-protocol.h include/ns%%VERSION%%/ns3/hwmp-rtable.h @@ -472,6 +479,7 @@ include/ns%%VERSION%%/ns3/int64x64-doubl include/ns%%VERSION%%/ns3/int64x64.h include/ns%%VERSION%%/ns3/integer.h include/ns%%VERSION%%/ns3/interference-helper.h +include/ns%%VERSION%%/ns3/internet-apps-module.h include/ns%%VERSION%%/ns3/internet-module.h include/ns%%VERSION%%/ns3/internet-stack-helper.h include/ns%%VERSION%%/ns3/internet-trace-helper.h @@ -494,8 +502,10 @@ include/ns%%VERSION%%/ns3/ipv4-list-rout include/ns%%VERSION%%/ns3/ipv4-list-routing.h include/ns%%VERSION%%/ns3/ipv4-nix-vector-helper.h include/ns%%VERSION%%/ns3/ipv4-nix-vector-routing.h +include/ns%%VERSION%%/ns3/ipv4-packet-filter.h include/ns%%VERSION%%/ns3/ipv4-packet-info-tag.h include/ns%%VERSION%%/ns3/ipv4-packet-probe.h +include/ns%%VERSION%%/ns3/ipv4-queue-disc-item.h include/ns%%VERSION%%/ns3/ipv4-raw-socket-factory.h include/ns%%VERSION%%/ns3/ipv4-raw-socket-impl.h include/ns%%VERSION%%/ns3/ipv4-route.h @@ -521,9 +531,11 @@ include/ns%%VERSION%%/ns3/ipv6-l3-protoc include/ns%%VERSION%%/ns3/ipv6-list-routing-helper.h include/ns%%VERSION%%/ns3/ipv6-list-routing.h include/ns%%VERSION%%/ns3/ipv6-option-header.h +include/ns%%VERSION%%/ns3/ipv6-packet-filter.h include/ns%%VERSION%%/ns3/ipv6-packet-info-tag.h include/ns%%VERSION%%/ns3/ipv6-packet-probe.h include/ns%%VERSION%%/ns3/ipv6-pmtu-cache.h +include/ns%%VERSION%%/ns3/ipv6-queue-disc-item.h include/ns%%VERSION%%/ns3/ipv6-raw-socket-factory.h include/ns%%VERSION%%/ns3/ipv6-route.h include/ns%%VERSION%%/ns3/ipv6-routing-helper.h @@ -539,6 +551,7 @@ include/ns%%VERSION%%/ns3/itu-r-1411-nlo include/ns%%VERSION%%/ns3/jakes-process.h include/ns%%VERSION%%/ns3/jakes-propagation-loss-model.h include/ns%%VERSION%%/ns3/kun-2600-mhz-propagation-loss-model.h +include/ns%%VERSION%%/ns3/li-ion-energy-source-helper.h include/ns%%VERSION%%/ns3/li-ion-energy-source.h include/ns%%VERSION%%/ns3/list-scheduler.h include/ns%%VERSION%%/ns3/llc-snap-header.h @@ -634,6 +647,7 @@ include/ns%%VERSION%%/ns3/mac-low.h include/ns%%VERSION%%/ns3/mac-messages.h include/ns%%VERSION%%/ns3/mac-rx-middle.h include/ns%%VERSION%%/ns3/mac-stats-calculator.h +include/ns%%VERSION%%/ns3/mac-tx-middle.h include/ns%%VERSION%%/ns3/mac16-address.h include/ns%%VERSION%%/ns3/mac48-address.h include/ns%%VERSION%%/ns3/mac64-address.h @@ -651,6 +665,7 @@ include/ns%%VERSION%%/ns3/mesh-wifi-inte include/ns%%VERSION%%/ns3/mesh-wifi-interface-mac.h include/ns%%VERSION%%/ns3/mgt-headers.h include/ns%%VERSION%%/ns3/microwave-oven-spectrum-value-helper.h +include/ns%%VERSION%%/ns3/minstrel-ht-wifi-manager.h include/ns%%VERSION%%/ns3/minstrel-wifi-manager.h include/ns%%VERSION%%/ns3/mobility-building-info.h include/ns%%VERSION%%/ns3/mobility-helper.h @@ -662,6 +677,7 @@ include/ns%%VERSION%%/ns3/mpi-interface. include/ns%%VERSION%%/ns3/mpi-module.h include/ns%%VERSION%%/ns3/mpi-receiver.h include/ns%%VERSION%%/ns3/msdu-aggregator.h +include/ns%%VERSION%%/ns3/msdu-standard-aggregator.h include/ns%%VERSION%%/ns3/multi-model-spectrum-channel.h include/ns%%VERSION%%/ns3/names.h include/ns%%VERSION%%/ns3/ndisc-cache.h @@ -677,6 +693,7 @@ include/ns%%VERSION%%/ns3/node-container include/ns%%VERSION%%/ns3/node-list.h include/ns%%VERSION%%/ns3/node.h include/ns%%VERSION%%/ns3/non-communicating-net-device.h +include/ns%%VERSION%%/ns3/non-copyable.h include/ns%%VERSION%%/ns3/nqos-wifi-mac-helper.h include/ns%%VERSION%%/ns3/ns2-mobility-helper.h include/ns%%VERSION%%/ns3/nstime.h @@ -705,6 +722,7 @@ include/ns%%VERSION%%/ns3/originator-blo include/ns%%VERSION%%/ns3/output-stream-wrapper.h include/ns%%VERSION%%/ns3/packet-burst.h include/ns%%VERSION%%/ns3/packet-data-calculators.h +include/ns%%VERSION%%/ns3/packet-filter.h include/ns%%VERSION%%/ns3/packet-loss-counter.h include/ns%%VERSION%%/ns3/packet-metadata.h include/ns%%VERSION%%/ns3/packet-probe.h @@ -729,6 +747,7 @@ include/ns%%VERSION%%/ns3/peer-link-fram include/ns%%VERSION%%/ns3/peer-link.h include/ns%%VERSION%%/ns3/peer-management-protocol.h include/ns%%VERSION%%/ns3/pf-ff-mac-scheduler.h +include/ns%%VERSION%%/ns3/pfifo-fast-queue-disc.h include/ns%%VERSION%%/ns3/phy-rx-stats-calculator.h include/ns%%VERSION%%/ns3/phy-stats-calculator.h include/ns%%VERSION%%/ns3/phy-tx-stats-calculator.h @@ -758,6 +777,8 @@ include/ns%%VERSION%%/ns3/ptr.h include/ns%%VERSION%%/ns3/qos-tag.h include/ns%%VERSION%%/ns3/qos-utils.h include/ns%%VERSION%%/ns3/qos-wifi-mac-helper.h +include/ns%%VERSION%%/ns3/queue-disc-container.h +include/ns%%VERSION%%/ns3/queue-disc.h include/ns%%VERSION%%/ns3/queue.h include/ns%%VERSION%%/ns3/radio-bearer-stats-calculator.h include/ns%%VERSION%%/ns3/radio-bearer-stats-connector.h @@ -774,10 +795,13 @@ include/ns%%VERSION%%/ns3/random-walk-2d include/ns%%VERSION%%/ns3/random-waypoint-mobility-model.h include/ns%%VERSION%%/ns3/realtime-simulator-impl.h include/ns%%VERSION%%/ns3/rectangle.h -include/ns%%VERSION%%/ns3/red-queue.h +include/ns%%VERSION%%/ns3/red-queue-disc.h include/ns%%VERSION%%/ns3/ref-count-base.h include/ns%%VERSION%%/ns3/regular-wifi-mac.h include/ns%%VERSION%%/ns3/rem-spectrum-phy.h +include/ns%%VERSION%%/ns3/rip-header.h +include/ns%%VERSION%%/ns3/rip-helper.h +include/ns%%VERSION%%/ns3/rip.h include/ns%%VERSION%%/ns3/ripng-header.h include/ns%%VERSION%%/ns3/ripng-helper.h include/ns%%VERSION%%/ns3/ripng.h @@ -814,6 +838,7 @@ include/ns%%VERSION%%/ns3/sixlowpan-head include/ns%%VERSION%%/ns3/sixlowpan-helper.h include/ns%%VERSION%%/ns3/sixlowpan-module.h include/ns%%VERSION%%/ns3/sixlowpan-net-device.h +include/ns%%VERSION%%/ns3/sll-header.h include/ns%%VERSION%%/ns3/snr-tag.h include/ns%%VERSION%%/ns3/snr-to-block-error-rate-manager.h include/ns%%VERSION%%/ns3/snr-to-block-error-rate-record.h @@ -855,17 +880,16 @@ include/ns%%VERSION%%/ns3/system-thread. include/ns%%VERSION%%/ns3/system-wall-clock-ms.h include/ns%%VERSION%%/ns3/tag-buffer.h include/ns%%VERSION%%/ns3/tag.h +include/ns%%VERSION%%/ns3/tcp-congestion-ops.h include/ns%%VERSION%%/ns3/tcp-header.h +include/ns%%VERSION%%/ns3/tcp-highspeed.h +include/ns%%VERSION%%/ns3/tcp-hybla.h include/ns%%VERSION%%/ns3/tcp-l4-protocol.h -include/ns%%VERSION%%/ns3/tcp-newreno.h include/ns%%VERSION%%/ns3/tcp-option.h -include/ns%%VERSION%%/ns3/tcp-reno.h -include/ns%%VERSION%%/ns3/tcp-rfc793.h include/ns%%VERSION%%/ns3/tcp-rx-buffer.h include/ns%%VERSION%%/ns3/tcp-socket-base.h include/ns%%VERSION%%/ns3/tcp-socket-factory.h include/ns%%VERSION%%/ns3/tcp-socket.h -include/ns%%VERSION%%/ns3/tcp-tahoe.h include/ns%%VERSION%%/ns3/tcp-tx-buffer.h include/ns%%VERSION%%/ns3/tcp-westwood.h include/ns%%VERSION%%/ns3/tdbet-ff-mac-scheduler.h @@ -885,6 +909,9 @@ include/ns%%VERSION%%/ns3/trace-helper.h include/ns%%VERSION%%/ns3/trace-source-accessor.h include/ns%%VERSION%%/ns3/traced-callback.h include/ns%%VERSION%%/ns3/traced-value.h +include/ns%%VERSION%%/ns3/traffic-control-helper.h +include/ns%%VERSION%%/ns3/traffic-control-layer.h +include/ns%%VERSION%%/ns3/traffic-control-module.h include/ns%%VERSION%%/ns3/trailer.h include/ns%%VERSION%%/ns3/tta-ff-mac-scheduler.h include/ns%%VERSION%%/ns3/tv-spectrum-transmitter-helper.h @@ -939,6 +966,8 @@ include/ns%%VERSION%%/ns3/v4ping.h include/ns%%VERSION%%/ns3/valgrind.h include/ns%%VERSION%%/ns3/vector.h include/ns%%VERSION%%/ns3/vendor-specific-action.h +include/ns%%VERSION%%/ns3/vht-capabilities.h +include/ns%%VERSION%%/ns3/vht-wifi-mac-helper.h include/ns%%VERSION%%/ns3/virtual-net-device-module.h include/ns%%VERSION%%/ns3/virtual-net-device.h include/ns%%VERSION%%/ns3/vsa-manager.h @@ -961,6 +990,7 @@ include/ns%%VERSION%%/ns3/wifi-helper.h include/ns%%VERSION%%/ns3/wifi-information-element-vector.h include/ns%%VERSION%%/ns3/wifi-information-element.h include/ns%%VERSION%%/ns3/wifi-mac-header.h +include/ns%%VERSION%%/ns3/wifi-mac-helper.h include/ns%%VERSION%%/ns3/wifi-mac-queue.h include/ns%%VERSION%%/ns3/wifi-mac-trailer.h include/ns%%VERSION%%/ns3/wifi-mac.h @@ -991,106 +1021,73 @@ include/ns%%VERSION%%/ns3/yans-error-rat include/ns%%VERSION%%/ns3/yans-wifi-channel.h include/ns%%VERSION%%/ns3/yans-wifi-helper.h include/ns%%VERSION%%/ns3/yans-wifi-phy.h -lib/libns%%VERSION%%-antenna%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-antenna-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-aodv%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-antenna%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-aodv-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-applications%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-aodv%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-applications-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-applications%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-bridge%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-buildings%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-buildings-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-buildings%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-config-store%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-core%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-core-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-csma%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-core%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-csma-layout%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-dsdv%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-csma%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-dsdv-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-dsr%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-dsdv%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-dsr-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-energy%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-dsr%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-energy-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-flow-monitor%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-energy%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-flow-monitor-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-internet%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-flow-monitor%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-internet-apps%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-internet-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-lr-wpan%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-internet%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-lr-wpan-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-lte%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-lr-wpan%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-lte-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-mesh%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-lte%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-mesh-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-mobility%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-mesh%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-mobility-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-mobility%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-mpi%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-netanim%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-netanim-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-network%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-netanim%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-network-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-network%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-nix-vector-routing%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-olsr%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-olsr-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-point-to-point%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-olsr%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-point-to-point-layout%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-point-to-point-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-propagation%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-point-to-point%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-propagation-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-sixlowpan%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-propagation%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-sixlowpan-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-spectrum%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-sixlowpan%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-spectrum-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-stats%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-spectrum%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-stats-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-stats%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-test-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-topology-read%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-test%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-topology-read-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-uan%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-topology-read%%DEBUG_SUFX%%.so +%%TEST%%lib/libns%%VERSION%%-traffic-control-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-traffic-control%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-uan-test%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-uan%%DEBUG_SUFX%%.so lib/libns%%VERSION%%-virtual-net-device%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-wave%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-wave-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-wifi%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-wave%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-wifi-test%%DEBUG_SUFX%%.so -lib/libns%%VERSION%%-wimax%%DEBUG_SUFX%%.so +lib/libns%%VERSION%%-wifi%%DEBUG_SUFX%%.so %%TEST%%lib/libns%%VERSION%%-wimax-test%%DEBUG_SUFX%%.so -libdata/pkgconfig/libns%%VERSION%%-antenna%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-aodv%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-applications%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-bridge%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-buildings%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-config-store%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-core%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-csma%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-csma-layout%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-dsdv%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-dsr%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-energy%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-flow-monitor%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-internet%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-lr-wpan%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-lte%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-mesh%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-mobility%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-mpi%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-netanim%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-network%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-nix-vector-routing%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-olsr%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-point-to-point%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-point-to-point-layout%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-propagation%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-sixlowpan%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-spectrum%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-stats%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-test%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-topology-read%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-uan%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-virtual-net-device%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-wave%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-wifi%%DEBUG_SUFX%%.pc -libdata/pkgconfig/libns%%VERSION%%-wimax%%DEBUG_SUFX%%.pc +lib/libns%%VERSION%%-wimax%%DEBUG_SUFX%%.so %%PYTHON_SITELIBDIR%%/ns/__init__.py %%PYTHON_SITELIBDIR%%/ns/_core.so %%PYTHON_SITELIBDIR%%/ns/antenna.so @@ -1107,6 +1104,7 @@ libdata/pkgconfig/libns%%VERSION%%-wimax %%PYTHON_SITELIBDIR%%/ns/energy.so %%PYTHON_SITELIBDIR%%/ns/flow_monitor.so %%PYTHON_SITELIBDIR%%/ns/internet.so +%%PYTHON_SITELIBDIR%%/ns/internet_apps.so %%PYTHON_SITELIBDIR%%/ns/lr_wpan.so %%PYTHON_SITELIBDIR%%/ns/lte.so %%PYTHON_SITELIBDIR%%/ns/mesh.so @@ -1122,8 +1120,47 @@ libdata/pkgconfig/libns%%VERSION%%-wimax %%PYTHON_SITELIBDIR%%/ns/spectrum.so %%PYTHON_SITELIBDIR%%/ns/stats.so %%PYTHON_SITELIBDIR%%/ns/topology_read.so +%%PYTHON_SITELIBDIR%%/ns/traffic_control.so %%PYTHON_SITELIBDIR%%/ns/uan.so %%PYTHON_SITELIBDIR%%/ns/virtual_net_device.so %%PYTHON_SITELIBDIR%%/ns/wave.so %%PYTHON_SITELIBDIR%%/ns/wifi.so %%PYTHON_SITELIBDIR%%/ns/wimax.so +libdata/pkgconfig/libns%%VERSION%%-antenna%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-aodv%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-applications%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-bridge%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-buildings%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-config-store%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-core%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-csma-layout%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-csma%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-dsdv%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-dsr%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-energy%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-flow-monitor%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-internet-apps%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-internet%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-lr-wpan%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-lte%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-mesh%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-mobility%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-mpi%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-netanim%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-network%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-nix-vector-routing%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-olsr%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-point-to-point-layout%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-point-to-point%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-propagation%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-sixlowpan%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-spectrum%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-stats%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-test%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-topology-read%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-traffic-control%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-uan%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-virtual-net-device%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-wave%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-wifi%%DEBUG_SUFX%%.pc +libdata/pkgconfig/libns%%VERSION%%-wimax%%DEBUG_SUFX%%.pc From owner-svn-ports-head@freebsd.org Tue Sep 13 12:24:53 2016 Return-Path: Delivered-To: svn-ports-head@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 542FCBD7E3C; Tue, 13 Sep 2016 12:24:53 +0000 (UTC) (envelope-from amdmi3@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 15AD2CF8; Tue, 13 Sep 2016 12:24:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DCOqXa053501; Tue, 13 Sep 2016 12:24:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DCOqZA053498; Tue, 13 Sep 2016 12:24:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131224.u8DCOqZA053498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 12:24:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421995 - in head: . Mk games/catesc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 12:24:53 -0000 Author: amdmi3 Date: Tue Sep 13 12:24:51 2016 New Revision: 421995 URL: https://svnweb.freebsd.org/changeset/ports/421995 Log: Add all Creative Commons licenses Approved by: portmgr (mat) Differential Revision: D7852 Modified: head/CHANGES head/Mk/bsd.licenses.db.mk head/games/catesc/Makefile Modified: head/CHANGES ============================================================================== --- head/CHANGES Tue Sep 13 11:41:21 2016 (r421994) +++ head/CHANGES Tue Sep 13 12:24:51 2016 (r421995) @@ -10,6 +10,13 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20160911: +AUTHOR: amdmi3@FreeBSD.org + + Support has been added for complete set of Creative Commons licenses + + CC-(BY|BY-ND|BY-NC|BY-NC-ND|BY-NC-SA|BY-SA)-(1.0|2.0|2.5|3.0|4.0) + 20160909: AUTHOR: amdmi3@FreeBSD.org Modified: head/Mk/bsd.licenses.db.mk ============================================================================== --- head/Mk/bsd.licenses.db.mk Tue Sep 13 11:41:21 2016 (r421994) +++ head/Mk/bsd.licenses.db.mk Tue Sep 13 12:24:51 2016 (r421995) @@ -39,7 +39,7 @@ Licenses_db_Include_MAINTAINER= # _LICENSE_LIST_GROUPS - List of defined license groups # -_LICENSE_LIST= BSL CC0-1.0 CDDL CPAL-1.0 ClArtistic EPL GFDL GMGPL \ +_LICENSE_LIST= BSL CDDL CPAL-1.0 ClArtistic EPL GFDL GMGPL \ ISCL MIT MPL NCSA OFL10 OFL11 OWL OpenSSL PD PSFL PostgreSQL \ RUBY ZLIB ZPL21 @@ -63,7 +63,16 @@ _LICENSE_LIST+= ART10 ARTPERL10 ART20 # PHP family _LICENSE_LIST+= PHP202 PHP30 PHP301 -# Extras +# Creative Commons family +_LICENSE_LIST+= CC0-1.0 \ + CC-BY-1.0 CC-BY-2.0 CC-BY-2.5 CC-BY-3.0 CC-BY-4.0 \ + CC-BY-ND-1.0 CC-BY-ND-2.0 CC-BY-ND-2.5 CC-BY-ND-3.0 CC-BY-ND-4.0 \ + CC-BY-NC-1.0 CC-BY-NC-2.0 CC-BY-NC-2.5 CC-BY-NC-3.0 CC-BY-NC-4.0 \ + CC-BY-NC-ND-1.0 CC-BY-NC-ND-2.0 CC-BY-NC-ND-2.5 CC-BY-NC-ND-3.0 CC-BY-NC-ND-4.0 \ + CC-BY-NC-SA-1.0 CC-BY-NC-SA-2.0 CC-BY-NC-SA-2.5 CC-BY-NC-SA-3.0 CC-BY-NC-SA-4.0 \ + CC-BY-SA-1.0 CC-BY-SA-2.0 CC-BY-SA-2.5 CC-BY-SA-3.0 CC-BY-SA-4.0 + +# Others _LICENSE_LIST+= NONE # List of groups (only names must be present) @@ -138,6 +147,111 @@ _LICENSE_GROUPS_BSL= FSF OSI COPYFREE _LICENSE_NAME_CC0-1.0= Creative Commons Zero v1.0 Universal _LICENSE_GROUPS_CC0-1.0= FSF GPL COPYFREE +_LICENSE_NAME_CC-BY-1.0= Creative Commons Attribution 1.0 +_LICENSE_GROUPS_CC-BY-1.0= # empty + +_LICENSE_NAME_CC-BY-2.0= Creative Commons Attribution 2.0 +_LICENSE_GROUPS_CC-BY-2.0= # empty + +_LICENSE_NAME_CC-BY-2.5= Creative Commons Attribution 2.5 +_LICENSE_GROUPS_CC-BY-2.5= # empty + +_LICENSE_NAME_CC-BY-3.0= Creative Commons Attribution 3.0 +_LICENSE_GROUPS_CC-BY-3.0= # empty + +_LICENSE_NAME_CC-BY-4.0= Creative Commons Attribution 4.0 +_LICENSE_GROUPS_CC-BY-4.0= # empty + +_LICENSE_NAME_CC-BY-ND-1.0= Creative Commons Attribution No Derivatives 1.0 +_LICENSE_GROUPS_CC-BY-ND-1.0= # empty + +_LICENSE_NAME_CC-BY-ND-2.0= Creative Commons Attribution No Derivatives 2.0 +_LICENSE_GROUPS_CC-BY-ND-2.0= # empty + +_LICENSE_NAME_CC-BY-ND-2.5= Creative Commons Attribution No Derivatives 2.5 +_LICENSE_GROUPS_CC-BY-ND-2.5= # empty + +_LICENSE_NAME_CC-BY-ND-3.0= Creative Commons Attribution No Derivatives 3.0 +_LICENSE_GROUPS_CC-BY-ND-3.0= # empty + +_LICENSE_NAME_CC-BY-ND-4.0= Creative Commons Attribution No Derivatives 4.0 +_LICENSE_GROUPS_CC-BY-ND-4.0= # empty + +_LICENSE_NAME_CC-BY-NC-1.0= Creative Commons Attribution Non Commercial 1.0 +_LICENSE_GROUPS_CC-BY-NC-1.0= # empty +_LICENSE_PERMS_CC-BY-NC-1.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-2.0= Creative Commons Attribution Non Commercial 2.0 +_LICENSE_GROUPS_CC-BY-NC-2.0= # empty +_LICENSE_PERMS_CC-BY-NC-2.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-2.5= Creative Commons Attribution Non Commercial 2.5 +_LICENSE_GROUPS_CC-BY-NC-2.5= # empty +_LICENSE_PERMS_CC-BY-NC-2.5= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-3.0= Creative Commons Attribution Non Commercial 3.0 +_LICENSE_GROUPS_CC-BY-NC-3.0= # empty +_LICENSE_PERMS_CC-BY-NC-3.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-4.0= Creative Commons Attribution Non Commercial 4.0 +_LICENSE_GROUPS_CC-BY-NC-4.0= # empty +_LICENSE_PERMS_CC-BY-NC-4.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-ND-1.0= Creative Commons Attribution Non Commercial No Derivatives 1.0 +_LICENSE_GROUPS_CC-BY-NC-ND-1.0= # empty +_LICENSE_PERMS_CC-BY-NC-ND-1.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-ND-2.0= Creative Commons Attribution Non Commercial No Derivatives 2.0 +_LICENSE_GROUPS_CC-BY-NC-ND-2.0= # empty +_LICENSE_PERMS_CC-BY-NC-ND-2.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-ND-2.5= Creative Commons Attribution Non Commercial No Derivatives 2.5 +_LICENSE_GROUPS_CC-BY-NC-ND-2.5= # empty +_LICENSE_PERMS_CC-BY-NC-ND-2.5= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-ND-3.0= Creative Commons Attribution Non Commercial No Derivatives 3.0 +_LICENSE_GROUPS_CC-BY-NC-ND-3.0= # empty +_LICENSE_PERMS_CC-BY-NC-ND-3.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-ND-4.0= Creative Commons Attribution Non Commercial No Derivatives 4.0 +_LICENSE_GROUPS_CC-BY-NC-ND-4.0= # empty +_LICENSE_PERMS_CC-BY-NC-ND-4.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-SA-1.0= Creative Commons Attribution Non Commercial Share Alike 1.0 +_LICENSE_GROUPS_CC-BY-NC-SA-1.0= # empty +_LICENSE_PERMS_CC-BY-NC-SA-1.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-SA-2.0= Creative Commons Attribution Non Commercial Share Alike 2.0 +_LICENSE_GROUPS_CC-BY-NC-SA-2.0= # empty +_LICENSE_PERMS_CC-BY-NC-SA-2.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-SA-2.5= Creative Commons Attribution Non Commercial Share Alike 2.5 +_LICENSE_GROUPS_CC-BY-NC-SA-2.5= # empty +_LICENSE_PERMS_CC-BY-NC-SA-2.5= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-SA-3.0= Creative Commons Attribution Non Commercial Share Alike 3.0 +_LICENSE_GROUPS_CC-BY-NC-SA-3.0= # empty +_LICENSE_PERMS_CC-BY-NC-SA-3.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-NC-SA-4.0= Creative Commons Attribution Non Commercial Share Alike 4.0 +_LICENSE_GROUPS_CC-BY-NC-SA-4.0= # empty +_LICENSE_PERMS_CC-BY-NC-SA-4.0= dist-mirror pkg-mirror auto-accept + +_LICENSE_NAME_CC-BY-SA-1.0= Creative Commons Attribution Share Alike 1.0 +_LICENSE_GROUPS_CC-BY-SA-1.0= # empty + +_LICENSE_NAME_CC-BY-SA-2.0= Creative Commons Attribution Share Alike 2.0 +_LICENSE_GROUPS_CC-BY-SA-2.0= # empty + +_LICENSE_NAME_CC-BY-SA-2.5= Creative Commons Attribution Share Alike 2.5 +_LICENSE_GROUPS_CC-BY-SA-2.5= # empty + +_LICENSE_NAME_CC-BY-SA-3.0= Creative Commons Attribution Share Alike 3.0 +_LICENSE_GROUPS_CC-BY-SA-3.0= # empty + +_LICENSE_NAME_CC-BY-SA-4.0= Creative Commons Attribution Share Alike 4.0 +_LICENSE_GROUPS_CC-BY-SA-4.0= # empty + _LICENSE_NAME_CDDL= Common Development and Distribution License _LICENSE_GROUPS_CDDL= FSF OSI Modified: head/games/catesc/Makefile ============================================================================== --- head/games/catesc/Makefile Tue Sep 13 11:41:21 2016 (r421994) +++ head/games/catesc/Makefile Tue Sep 13 12:24:51 2016 (r421995) @@ -8,14 +8,8 @@ CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org COMMENT= Escape of the cat - hardcore oldschool platformer -LICENSE= CCbySA30 CCbySA40 -LICENSE_COMB= multi -LICENSE_NAME_CCbySA30= Creative Commons Attribution-ShareAlike 3.0 Unported license -LICENSE_NAME_CCbySA40= Creative Commons Attribution-ShareAlike 4.0 International Public License -LICENSE_TEXT_CCbySA30= https://creativecommons.org/licenses/by-sa/3.0/legalcode -LICENSE_TEXT_CCbySA40= https://creativecommons.org/licenses/by-sa/4.0/legalcode -LICENSE_PERMS_CCbySA30= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_PERMS_CCbySA40= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE= CC-BY-SA-3.0 CC-BY-SA-4.0 +LICENSE_COMB= multi RUN_DEPENDS= instead:games/instead From owner-svn-ports-head@freebsd.org Tue Sep 13 12:29:14 2016 Return-Path: Delivered-To: svn-ports-head@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 C9896BD7F23; Tue, 13 Sep 2016 12:29:14 +0000 (UTC) (envelope-from ehaupt@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 9C338E73; Tue, 13 Sep 2016 12:29:14 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DCTDVw053744; Tue, 13 Sep 2016 12:29:13 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DCTDKr053743; Tue, 13 Sep 2016 12:29:13 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201609131229.u8DCTDKr053743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Tue, 13 Sep 2016 12:29:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421996 - head/textproc/p5-Text-vCard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 12:29:14 -0000 Author: ehaupt Date: Tue Sep 13 12:29:13 2016 New Revision: 421996 URL: https://svnweb.freebsd.org/changeset/ports/421996 Log: Partially revert previous commit and move run dependencies to build depends. Those are actually required during build time. Notified by: mat Modified: head/textproc/p5-Text-vCard/Makefile Modified: head/textproc/p5-Text-vCard/Makefile ============================================================================== --- head/textproc/p5-Text-vCard/Makefile Tue Sep 13 12:24:51 2016 (r421995) +++ head/textproc/p5-Text-vCard/Makefile Tue Sep 13 12:29:13 2016 (r421996) @@ -3,7 +3,7 @@ PORTNAME= Text-vCard PORTVERSION= 3.07 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,11 +14,13 @@ COMMENT= Package to parse, edit and crea LICENSE= ART10 GPLv1 LICENSE_COMB= dual -RUN_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ +BUILD_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp \ p5-Moo>=0:devel/p5-Moo \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Text-vFile-asData>=0:devel/p5-Text-vFile-asData \ - p5-Unicode-LineBreak>=0:textproc/p5-Unicode-LineBreak + p5-Unicode-LineBreak>=0:textproc/p5-Unicode-LineBreak \ + p5-URI>=0:net/p5-URI +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Directory-Scratch>=0:devel/p5-Directory-Scratch \ p5-Test-Most>=0:devel/p5-Test-Most From owner-svn-ports-head@freebsd.org Tue Sep 13 12:31:08 2016 Return-Path: Delivered-To: svn-ports-head@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 A2724BD8000; Tue, 13 Sep 2016 12:31:08 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from critical.ch (critical.ch [IPv6:2a01:4f8:c17:de4::1:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx.critical.ch", Issuer "StartCom Class 1 DV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 45EDE138; Tue, 13 Sep 2016 12:31:08 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from wiggles.local (dynamic.wline.6rd.res.cust.swisscom.ch [IPv6:2a02:1205:5013:cb60:dad3:85ff:fe79:dd2] (may be forged)) (authenticated bits=0) by critical.ch (8.15.2/8.15.2/critical-1.0) with ESMTPA id u8DCV5Al000916; Tue, 13 Sep 2016 14:31:05 +0200 (CEST) (envelope-from ehaupt@FreeBSD.org) Date: Tue, 13 Sep 2016 14:31:00 +0200 From: Emanuel Haupt To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r421632 - head/textproc/p5-Text-vCard Message-Id: <20160913143100.5f2e64d80f5277bf33b04ce5@FreeBSD.org> In-Reply-To: <0e990832-16e0-dc35-d17c-78962cfeb194@FreeBSD.org> References: <201609091931.u89JVgcH032404@repo.freebsd.org> <0e990832-16e0-dc35-d17c-78962cfeb194@FreeBSD.org> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.29; amd64-portbld-freebsd10.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 12:31:08 -0000 Mathieu Arnold wrote: > Le 09/09/2016 =E0 21:31, Emanuel Haupt a =E9crit : > > Author: ehaupt > > Date: Fri Sep 9 19:31:42 2016 > > New Revision: 421632 > > URL: https://svnweb.freebsd.org/changeset/ports/421632 > > > > Log: > > - Add missing dependencies > > - Add NO_ARCH > > - Move required perl modules from BUILD_DEPENDS to RUN_DEPENDS. > > They don't need to build port, only to run. >=20 > That is not really true, now, when building the port, it will say: >=20 > =3D=3D=3D> Configuring for p5-Text-vCard-3.07_1 > Warning: prerequisite Moo 0 not found. > Warning: prerequisite Moo::Role 0 not found. > Warning: prerequisite Path::Tiny 0 not found. > Warning: prerequisite Text::vFile::asData 0.07 not found. > Warning: prerequisite URI 0 not found. > Warning: prerequisite Unicode::LineBreak 0 not found. >=20 > Please, add them back to BUILD_DEPENDS. Sorry about that. Re-added with with r421996. Emanuel From owner-svn-ports-head@freebsd.org Tue Sep 13 13:06:04 2016 Return-Path: Delivered-To: svn-ports-head@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 5C047BD9B5D; Tue, 13 Sep 2016 13:06:04 +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 2BCA79B6; Tue, 13 Sep 2016 13:06:04 +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 u8DD63YK068425; Tue, 13 Sep 2016 13:06:03 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DD63OW068423; Tue, 13 Sep 2016 13:06:03 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609131306.u8DD63OW068423@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 13 Sep 2016 13:06:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421997 - head/textproc/py-parsimonious X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 13:06:04 -0000 Author: wen Date: Tue Sep 13 13:06:03 2016 New Revision: 421997 URL: https://svnweb.freebsd.org/changeset/ports/421997 Log: - Update to 0.7.0 PR: 212559 Submitted by: dbaio@bsd.com.br(maintainer) Modified: head/textproc/py-parsimonious/Makefile head/textproc/py-parsimonious/distinfo Modified: head/textproc/py-parsimonious/Makefile ============================================================================== --- head/textproc/py-parsimonious/Makefile Tue Sep 13 12:29:13 2016 (r421996) +++ head/textproc/py-parsimonious/Makefile Tue Sep 13 13:06:03 2016 (r421997) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= parsimonious -PORTVERSION= 0.6.2 +PORTVERSION= 0.7.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-parsimonious/distinfo ============================================================================== --- head/textproc/py-parsimonious/distinfo Tue Sep 13 12:29:13 2016 (r421996) +++ head/textproc/py-parsimonious/distinfo Tue Sep 13 13:06:03 2016 (r421997) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463703191 -SHA256 (parsimonious-0.6.2.tar.gz) = 423ae2e16061504418ab7abf0a740e26a781f9bc7674a6cf5e2f11edb4ae8029 -SIZE (parsimonious-0.6.2.tar.gz) = 35529 +TIMESTAMP = 1473764265 +SHA256 (parsimonious-0.7.0.tar.gz) = 396d424f64f834f9463e81ba79a331661507a21f1ed7b644f7f6a744006fd938 +SIZE (parsimonious-0.7.0.tar.gz) = 37650 From owner-svn-ports-head@freebsd.org Tue Sep 13 13:09:32 2016 Return-Path: Delivered-To: svn-ports-head@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 4F5A3BD9CF3; Tue, 13 Sep 2016 13:09:32 +0000 (UTC) (envelope-from amdmi3@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 21FECF92; Tue, 13 Sep 2016 13:09:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DD9Vi3068642; Tue, 13 Sep 2016 13:09:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DD9VWI068641; Tue, 13 Sep 2016 13:09:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131309.u8DD9VWI068641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 13:09:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421998 - head/games/endless-sky X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 13:09:32 -0000 Author: amdmi3 Date: Tue Sep 13 13:09:31 2016 New Revision: 421998 URL: https://svnweb.freebsd.org/changeset/ports/421998 Log: - Add data licenses Modified: head/games/endless-sky/Makefile Modified: head/games/endless-sky/Makefile ============================================================================== --- head/games/endless-sky/Makefile Tue Sep 13 13:06:03 2016 (r421997) +++ head/games/endless-sky/Makefile Tue Sep 13 13:09:31 2016 (r421998) @@ -9,8 +9,9 @@ CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org COMMENT= Space exploration and combat game similar to Escape Velocity -LICENSE= GPLv3+ -LICENSE_FILE= ${WRKSRC}/license.txt +LICENSE= GPLv3+ CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 PD +LICENSE_COMB= multi +LICENSE_FILE_GPLv3= ${WRKSRC}/license.txt LIB_DEPENDS= libpng.so:graphics/png From owner-svn-ports-head@freebsd.org Tue Sep 13 13:46:21 2016 Return-Path: Delivered-To: svn-ports-head@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 0052ABD95C7; Tue, 13 Sep 2016 13:46:21 +0000 (UTC) (envelope-from ehaupt@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 C542F6A2; Tue, 13 Sep 2016 13:46:20 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DDkKH4083564; Tue, 13 Sep 2016 13:46:20 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DDkJFh083562; Tue, 13 Sep 2016 13:46:19 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201609131346.u8DDkJFh083562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Tue, 13 Sep 2016 13:46:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421999 - head/net/httping X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 13:46:21 -0000 Author: ehaupt Date: Tue Sep 13 13:46:19 2016 New Revision: 421999 URL: https://svnweb.freebsd.org/changeset/ports/421999 Log: Update to 2.5 Modified: head/net/httping/Makefile head/net/httping/distinfo Modified: head/net/httping/Makefile ============================================================================== --- head/net/httping/Makefile Tue Sep 13 13:09:31 2016 (r421998) +++ head/net/httping/Makefile Tue Sep 13 13:46:19 2016 (r421999) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= httping -PORTVERSION= 2.4 +PORTVERSION= 2.5 CATEGORIES= net MASTER_SITES= http://www.vanheusden.com/httping/ \ LOCAL/ehaupt @@ -40,7 +40,7 @@ MAKE_ENV+= FW=no .if ${PORT_OPTIONS:MSSL} MAKE_ENV+= SSL=yes -USE_OPENSSL= yes +USES+= ssl .else MAKE_ENV+= SSL=no .endif Modified: head/net/httping/distinfo ============================================================================== --- head/net/httping/distinfo Tue Sep 13 13:09:31 2016 (r421998) +++ head/net/httping/distinfo Tue Sep 13 13:46:19 2016 (r421999) @@ -1,2 +1,3 @@ -SHA256 (httping-2.4.tgz) = dab59f02b08bfbbc978c005bb16d2db6fe21e1fc841fde96af3d497ddfc82084 -SIZE (httping-2.4.tgz) = 54170 +TIMESTAMP = 1473774147 +SHA256 (httping-2.5.tgz) = 3e895a0a6d7bd79de25a255a1376d4da88eb09c34efdd0476ab5a907e75bfaf8 +SIZE (httping-2.5.tgz) = 71400 From owner-svn-ports-head@freebsd.org Tue Sep 13 13:59:19 2016 Return-Path: Delivered-To: svn-ports-head@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 2DB63BD98CF; Tue, 13 Sep 2016 13:59:19 +0000 (UTC) (envelope-from marino@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 D5431C80; Tue, 13 Sep 2016 13:59:18 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DDxISd087487; Tue, 13 Sep 2016 13:59:18 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DDxHgo087485; Tue, 13 Sep 2016 13:59:17 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131359.u8DDxHgo087485@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 13:59:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422000 - in head/security/amap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 13:59:19 -0000 Author: marino Date: Tue Sep 13 13:59:17 2016 New Revision: 422000 URL: https://svnweb.freebsd.org/changeset/ports/422000 Log: security/amap: Fix harder The arguments passed to the configuration script were getting initialized, so convert these to environment variables and augment the configure script patch to allow them to work as intended. Also fix a typo. Modified: head/security/amap/Makefile head/security/amap/files/patch-configure Modified: head/security/amap/Makefile ============================================================================== --- head/security/amap/Makefile Tue Sep 13 13:46:19 2016 (r421999) +++ head/security/amap/Makefile Tue Sep 13 13:59:17 2016 (r422000) @@ -12,9 +12,9 @@ COMMENT= Application mapper USES= ssl HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} \ - SSL_PATH=${OPENSSLLIB} \ - CRYPTO_PATH=${OPENSSLIB} \ +CONFIGURE_ARGS= --prefix=${PREFIX} +CONFIGURE_ENV= SSL_PATH=${OPENSSLLIB} \ + CRYPTO_PATH=${OPENSSLLIB} \ SSL_IPATH=${OPENSSLINC} MAKE_JOBS_UNSAFE= yes Modified: head/security/amap/files/patch-configure ============================================================================== --- head/security/amap/files/patch-configure Tue Sep 13 13:46:19 2016 (r421999) +++ head/security/amap/files/patch-configure Tue Sep 13 13:59:17 2016 (r422000) @@ -1,6 +1,13 @@ ---- configure.orig Wed Jun 29 17:40:57 2005 -+++ configure Wed Jun 29 17:41:18 2005 -@@ -29,7 +29,7 @@ +--- configure.orig 2005-06-03 13:34:19 UTC ++++ configure +@@ -22,14 +22,11 @@ echo + echo "Starting amap auto configuration ..." + rm -f Makefile.in + PREFIX="" +-SSL_PATH="" +-SSL_IPATH="" +-CRYPTO_PATH="" + NSL_PATH="" SOCKET_PATH="" MANDIR="" LIBDIRS=`cat /etc/ld.so.conf 2> /dev/null` @@ -9,3 +16,12 @@ echo echo "Checking for openssl ..." +@@ -80,7 +77,7 @@ if [ "X" = "X$SSL_IPATH" ]; then + CRYPTO_PATH="" + fi + if [ -n "$SSL_PATH" ]; then +- echo " ... found" ++ echo " ... found: $SSL_PATH" + fi + if [ "X" = "X$SSL_PATH" ]; then + echo " ... NOT found, SSL support disabled" From owner-svn-ports-head@freebsd.org Tue Sep 13 14:02:27 2016 Return-Path: Delivered-To: svn-ports-head@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 C2A15BD9A6F; Tue, 13 Sep 2016 14:02:27 +0000 (UTC) (envelope-from amdmi3@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 900D5FE0; Tue, 13 Sep 2016 14:02:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE2QS8090980; Tue, 13 Sep 2016 14:02:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE2Q66090979; Tue, 13 Sep 2016 14:02:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131402.u8DE2Q66090979@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:02:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422001 - head/devel/godot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:02:27 -0000 Author: amdmi3 Date: Tue Sep 13 14:02:26 2016 New Revision: 422001 URL: https://svnweb.freebsd.org/changeset/ports/422001 Log: - Switch to newly supported CC licenses Approved by: portmgr blanket Modified: head/devel/godot/Makefile Modified: head/devel/godot/Makefile ============================================================================== --- head/devel/godot/Makefile Tue Sep 13 13:59:17 2016 (r422000) +++ head/devel/godot/Makefile Tue Sep 13 14:02:26 2016 (r422001) @@ -9,12 +9,10 @@ CATEGORIES= devel games MAINTAINER= FreeBSD@Shaneware.biz COMMENT?= Game runtime engine -LICENSE= MIT CCBYv3 +LICENSE= MIT CC-BY-3.0 LICENSE_COMB= multi -LICENSE_NAME_CCBYv3= Creative Commons Attribution 3.0 Unported license -LICENSE_FILE_CCBYv3= ${WRKSRC}/LOGO_LICENSE.md +LICENSE_FILE_CC-BY-3.0= ${WRKSRC}/LOGO_LICENSE.md LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.md -LICENSE_PERMS_CCBYv3= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LIB_DEPENDS= libfreetype.so:print/freetype2 RUN_DEPENDS= xdg-user-dir:devel/xdg-user-dirs \ From owner-svn-ports-head@freebsd.org Tue Sep 13 14:04:28 2016 Return-Path: Delivered-To: svn-ports-head@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 8453BBD9ABD; Tue, 13 Sep 2016 14:04:28 +0000 (UTC) (envelope-from amdmi3@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 5563318D; Tue, 13 Sep 2016 14:04:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE4Rwx091130; Tue, 13 Sep 2016 14:04:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE4R5P091129; Tue, 13 Sep 2016 14:04:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131404.u8DE4R5P091129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:04:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422002 - head/cad/ldraw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:04:28 -0000 Author: amdmi3 Date: Tue Sep 13 14:04:27 2016 New Revision: 422002 URL: https://svnweb.freebsd.org/changeset/ports/422002 Log: - Switch to newly supported CC licenses - Switch to options helpers Approved by: portmgr blanket Modified: head/cad/ldraw/Makefile Modified: head/cad/ldraw/Makefile ============================================================================== --- head/cad/ldraw/Makefile Tue Sep 13 14:02:26 2016 (r422001) +++ head/cad/ldraw/Makefile Tue Sep 13 14:04:27 2016 (r422002) @@ -12,11 +12,9 @@ DIST_SUBDIR= ldraw/${PORTVERSION} MAINTAINER= koalative@gmail.com COMMENT= LDraw parts library -LICENSE= CDDL CCbyNCSA2 +LICENSE= CDDL CC-BY-NC-SA-2.0 LICENSE_COMB= dual -LICENSE_NAME_CCbyNCSA2=Attribution-NonCommercial-ShareAlike 2.0 Unported -LICENSE_FILE_CCbyNCSA2=${WRKSRC}/CAlicense.txt -LICENSE_PERMS_CCbyNCSA2=dist-mirror pkg-mirror auto-accept +LICENSE_FILE_CC-BY-NC-SA-2.0= ${WRKSRC}/CAlicense.txt WRKSRC= ${WRKDIR}/${PORTNAME} @@ -52,6 +50,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mklist/mklist ${STAGEDIR}${DATADIR} @(cd ${STAGEDIR}${DATADIR} && ./mklist -d) +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Tue Sep 13 14:05:08 2016 Return-Path: Delivered-To: svn-ports-head@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 8624ABD9AF6; Tue, 13 Sep 2016 14:05:08 +0000 (UTC) (envelope-from amdmi3@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 565EA279; Tue, 13 Sep 2016 14:05:08 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE57p6091258; Tue, 13 Sep 2016 14:05:07 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE57E9091257; Tue, 13 Sep 2016 14:05:07 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131405.u8DE57E9091257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:05:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422003 - head/games/hoverboard-sdl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:05:08 -0000 Author: amdmi3 Date: Tue Sep 13 14:05:07 2016 New Revision: 422003 URL: https://svnweb.freebsd.org/changeset/ports/422003 Log: - Switch to newly supported CC licenses Modified: head/games/hoverboard-sdl/Makefile Modified: head/games/hoverboard-sdl/Makefile ============================================================================== --- head/games/hoverboard-sdl/Makefile Tue Sep 13 14:04:27 2016 (r422002) +++ head/games/hoverboard-sdl/Makefile Tue Sep 13 14:05:07 2016 (r422003) @@ -8,12 +8,9 @@ CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org COMMENT= Standalone version of xkcd 1608 "Hoverboard" game -LICENSE= GPLv3+ CCbyNC25 +LICENSE= GPLv3+ CC-BY-NC-2.5 LICENSE_COMB= multi -LICENSE_NAME_CCbyNC25= Creative Commons Attribution-NonCommercial 2.5 License -LICENSE_TEXT_CCbyNC25= http://creativecommons.org/licenses/by-nc/2.5/ -LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING -LICENSE_PERMS_CCbyNC25= no-dist-sell dist-mirror no-pkg-sell pkg-mirror auto-accept +LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING LIB_DEPENDS= libSDL2pp.so:devel/sdl2pp From owner-svn-ports-head@freebsd.org Tue Sep 13 14:05:36 2016 Return-Path: Delivered-To: svn-ports-head@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 C3EA5BD9B2E; Tue, 13 Sep 2016 14:05:36 +0000 (UTC) (envelope-from amdmi3@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 969CF382; Tue, 13 Sep 2016 14:05:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE5Zlr091371; Tue, 13 Sep 2016 14:05:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE5ZYe091370; Tue, 13 Sep 2016 14:05:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131405.u8DE5ZYe091370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:05:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422004 - head/games/avoision X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:05:36 -0000 Author: amdmi3 Date: Tue Sep 13 14:05:35 2016 New Revision: 422004 URL: https://svnweb.freebsd.org/changeset/ports/422004 Log: - Switch to newly supported CC licenses Modified: head/games/avoision/Makefile Modified: head/games/avoision/Makefile ============================================================================== --- head/games/avoision/Makefile Tue Sep 13 14:05:07 2016 (r422003) +++ head/games/avoision/Makefile Tue Sep 13 14:05:35 2016 (r422004) @@ -10,12 +10,9 @@ MASTER_SITES= SF/avsn/ MAINTAINER= ports@FreeBSD.org COMMENT= Simple collect-dots-avoid-blocks game -LICENSE= GPLv2+ CCbySA3 +LICENSE= GPLv2+ CC-BY-SA-3.0 LICENSE_COMB= multi -LICENSE_NAME_CCbySA3=Attribution-ShareAlike 3.0 Unported LICENSE_FILE= ${WRKSRC}/License.txt -LICENSE_FILE_CCbySA3= ${WRKSRC}/License.txt -LICENSE_PERMS_CCbySA3=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= ${LOCALBASE}/lib/libradius-engine.a:graphics/radius-engine LIB_DEPENDS= liblua-5.1.so:lang/lua51 \ From owner-svn-ports-head@freebsd.org Tue Sep 13 14:06:26 2016 Return-Path: Delivered-To: svn-ports-head@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 E098DBD9B85; Tue, 13 Sep 2016 14:06:26 +0000 (UTC) (envelope-from amdmi3@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 AFEBB695; Tue, 13 Sep 2016 14:06:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE6POT091510; Tue, 13 Sep 2016 14:06:25 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE6PPo091508; Tue, 13 Sep 2016 14:06:25 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131406.u8DE6PPo091508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:06:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422005 - head/games/dangerdeep-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:06:27 -0000 Author: amdmi3 Date: Tue Sep 13 14:06:25 2016 New Revision: 422005 URL: https://svnweb.freebsd.org/changeset/ports/422005 Log: - Switch to newly supported CC licenses - Fix WWW: Modified: head/games/dangerdeep-data/Makefile head/games/dangerdeep-data/pkg-descr Modified: head/games/dangerdeep-data/Makefile ============================================================================== --- head/games/dangerdeep-data/Makefile Tue Sep 13 14:05:35 2016 (r422004) +++ head/games/dangerdeep-data/Makefile Tue Sep 13 14:06:25 2016 (r422005) @@ -10,10 +10,8 @@ DIST_SUBDIR= dangerdeep MAINTAINER= ports@FreeBSD.org COMMENT= Danger from the Deep data files -LICENSE= CCbyNCND -LICENSE_NAME= Creative Commons Attribution-NonCommercial-NonDerivs +LICENSE= CC-BY-NC-ND-2.5 LICENSE_FILE= ${WRKSRC}/LICENSE -LICENSE_PERMS= dist-mirror pkg-mirror auto-accept USES= zip NO_BUILD= yes @@ -24,6 +22,6 @@ DATADIR= ${PREFIX}/share/dangerdeep PORTDATA= * do-install: - cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ .include Modified: head/games/dangerdeep-data/pkg-descr ============================================================================== --- head/games/dangerdeep-data/pkg-descr Tue Sep 13 14:05:35 2016 (r422004) +++ head/games/dangerdeep-data/pkg-descr Tue Sep 13 14:06:25 2016 (r422005) @@ -1,3 +1,3 @@ The Danger From the Deep data files -WWW: http://dangerdeep.sf.net +WWW: http://dangerdeep.sf.net/ From owner-svn-ports-head@freebsd.org Tue Sep 13 14:07:22 2016 Return-Path: Delivered-To: svn-ports-head@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 77984BD9BC4; Tue, 13 Sep 2016 14:07:22 +0000 (UTC) (envelope-from amdmi3@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 455C37E5; Tue, 13 Sep 2016 14:07:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE7LDA091624; Tue, 13 Sep 2016 14:07:21 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE7LTP091623; Tue, 13 Sep 2016 14:07:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131407.u8DE7LTP091623@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:07:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422006 - head/games/naev-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:07:22 -0000 Author: amdmi3 Date: Tue Sep 13 14:07:21 2016 New Revision: 422006 URL: https://svnweb.freebsd.org/changeset/ports/422006 Log: - Switch to newly supported CC licenses Approved by: portmgr blanket Modified: head/games/naev-data/Makefile Modified: head/games/naev-data/Makefile ============================================================================== --- head/games/naev-data/Makefile Tue Sep 13 14:06:25 2016 (r422005) +++ head/games/naev-data/Makefile Tue Sep 13 14:07:21 2016 (r422006) @@ -12,16 +12,8 @@ EXTRACT_ONLY= # empty MAINTAINER= acm@FreeBSD.org COMMENT= Naev game data file -LICENSE= GPLv2 GPLv3 CCBYv3 CCBYSAv3 PD +LICENSE= GPLv2 GPLv3 CC-BY-3.0 CC-BY-SA-3.0 PD LICENSE_COMB= multi -LICENSE_NAME_CCBYv3= Creative Commons Attribution 3.0 Unported license -LICENSE_NAME_CCBYSAv3= Creative Commons Attribution-ShareAlike 3.0 Unported license -LICENSE_TEXT_CCBYv3= The license: CCBYv3 (${LICENSE_NAME_CCBYv3}) is standard,\ - please read from the web: http://creativecommons.org/licenses/by/3.0/ -LICENSE_TEXT_CCBYSAv3= The license: CCBYSAv3 (${LICENSE_NAME_CCBYSAv3}) is standard,\ - please read from the web: http://creativecommons.org/licenses/by-sa/3.0/ -LICENSE_PERMS_CCBYv3= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_PERMS_CCBYSAv3= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept USES= zip NO_ARCH= yes From owner-svn-ports-head@freebsd.org Tue Sep 13 14:07:35 2016 Return-Path: Delivered-To: svn-ports-head@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 1D47DBD9BF5; Tue, 13 Sep 2016 14:07:35 +0000 (UTC) (envelope-from vanilla@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 E416E8BC; Tue, 13 Sep 2016 14:07:34 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE7YiV091746; Tue, 13 Sep 2016 14:07:34 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE7YZB091744; Tue, 13 Sep 2016 14:07:34 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609131407.u8DE7YZB091744@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 13 Sep 2016 14:07:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422007 - head/security/p5-CryptX X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:07:35 -0000 Author: vanilla Date: Tue Sep 13 14:07:33 2016 New Revision: 422007 URL: https://svnweb.freebsd.org/changeset/ports/422007 Log: Update to 0.040. Modified: head/security/p5-CryptX/Makefile head/security/p5-CryptX/distinfo Modified: head/security/p5-CryptX/Makefile ============================================================================== --- head/security/p5-CryptX/Makefile Tue Sep 13 14:07:21 2016 (r422006) +++ head/security/p5-CryptX/Makefile Tue Sep 13 14:07:33 2016 (r422007) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CryptX -PORTVERSION= 0.039 +PORTVERSION= 0.040 CATEGORIES= security perl5 MASTER_SITES= CPAN/Crypt PKGNAMEPREFIX= p5- Modified: head/security/p5-CryptX/distinfo ============================================================================== --- head/security/p5-CryptX/distinfo Tue Sep 13 14:07:21 2016 (r422006) +++ head/security/p5-CryptX/distinfo Tue Sep 13 14:07:33 2016 (r422007) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470277560 -SHA256 (CryptX-0.039.tar.gz) = 2d06975459d53799d50b0f07971c995bd2cbfceac7d26c571e852ce79a701087 -SIZE (CryptX-0.039.tar.gz) = 1200451 +TIMESTAMP = 1473775269 +SHA256 (CryptX-0.040.tar.gz) = 0e1e44811e951fa04971912a8b03cf41de540d8cf8d464c5655aaf3bf976db50 +SIZE (CryptX-0.040.tar.gz) = 1200344 From owner-svn-ports-head@freebsd.org Tue Sep 13 14:08:55 2016 Return-Path: Delivered-To: svn-ports-head@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 D0B02BD9C6C; Tue, 13 Sep 2016 14:08:55 +0000 (UTC) (envelope-from amdmi3@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 A1BC49BA; Tue, 13 Sep 2016 14:08:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DE8sP6091882; Tue, 13 Sep 2016 14:08:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DE8ssb091881; Tue, 13 Sep 2016 14:08:54 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131408.u8DE8ssb091881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 14:08:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422008 - head/games/steelstorm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:08:55 -0000 Author: amdmi3 Date: Tue Sep 13 14:08:54 2016 New Revision: 422008 URL: https://svnweb.freebsd.org/changeset/ports/422008 Log: - Switch to newly supported CC licenses Modified: head/games/steelstorm/Makefile Modified: head/games/steelstorm/Makefile ============================================================================== --- head/games/steelstorm/Makefile Tue Sep 13 14:07:33 2016 (r422007) +++ head/games/steelstorm/Makefile Tue Sep 13 14:08:54 2016 (r422008) @@ -10,15 +10,10 @@ MASTER_SITES= http://mirror.amdmi3.ru/di MAINTAINER= amdmi3@FreeBSD.org COMMENT= Old school top down arcade shooter -LICENSE= GPLv2 CCbyNCSA3 EULA +LICENSE= GPLv2 CC-BY-NC-SA-3.0 EULA LICENSE_COMB= multi - LICENSE_FILE_GPLv2= ${WRKSRC}/gpl-2.txt - -LICENSE_NAME_CCbyNCSA3= Attribution-NonCommercial-ShareAlike 3.0 Unported -LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept -LICENSE_FILE_CCbyNCSA3= ${WRKSRC}/cc-by-nc-sa-3.txt - +LICENSE_FILE_CC-BY-NC-SA-3.0= ${WRKSRC}/cc-by-nc-sa-3.txt LICENSE_NAME_EULA= Steel storm episode 1 limited user software license agreement LICENSE_PERMS_EULA= # none LICENSE_FILE_EULA= ${WRKSRC}/license.txt From owner-svn-ports-head@freebsd.org Tue Sep 13 14:18:55 2016 Return-Path: Delivered-To: svn-ports-head@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 E8688BD9FB6; Tue, 13 Sep 2016 14:18:55 +0000 (UTC) (envelope-from woodsb02@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 B778D235; Tue, 13 Sep 2016 14:18:55 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DEIsK1095714; Tue, 13 Sep 2016 14:18:54 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DEIsTv095712; Tue, 13 Sep 2016 14:18:54 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201609131418.u8DEIsTv095712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Tue, 13 Sep 2016 14:18:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422009 - head/security/ncrack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:18:56 -0000 Author: woodsb02 Date: Tue Sep 13 14:18:54 2016 New Revision: 422009 URL: https://svnweb.freebsd.org/changeset/ports/422009 Log: security/ncrack: Update to 0.5 - Add LICENSE and LICENSE_FILE details Changes this release: http://seclists.org/nmap-dev/2016/q2/34 Approved by: lx (maintainer), adamw, mat (mentors) Differential Revision: https://reviews.freebsd.org/D7854 Modified: head/security/ncrack/Makefile head/security/ncrack/distinfo Modified: head/security/ncrack/Makefile ============================================================================== --- head/security/ncrack/Makefile Tue Sep 13 14:08:54 2016 (r422008) +++ head/security/ncrack/Makefile Tue Sep 13 14:18:54 2016 (r422009) @@ -2,16 +2,17 @@ # $FreeBSD$ PORTNAME= ncrack -PORTVERSION= 0.4 -PORTREVISION= 1 +PORTVERSION= 0.5 CATEGORIES= security MASTER_SITES= http://nmap.org/ncrack/dist/ \ http://redundancy.redundancy.org/mirror/ -DISTNAME= ${PORTNAME}-${PORTVERSION}ALPHA MAINTAINER= lx@FreeBSD.org COMMENT= High-speed network authentication cracking tool +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + GNU_CONFIGURE= yes USES= gmake ssl CPPFLAGS+= -I${OPENSSLINC} Modified: head/security/ncrack/distinfo ============================================================================== --- head/security/ncrack/distinfo Tue Sep 13 14:08:54 2016 (r422008) +++ head/security/ncrack/distinfo Tue Sep 13 14:18:54 2016 (r422009) @@ -1,2 +1,3 @@ -SHA256 (ncrack-0.4ALPHA.tar.gz) = f8bd7e0ef68559490064ec0a5f139b2b9c49aeaf9f6323e080db9ff344c87603 -SIZE (ncrack-0.4ALPHA.tar.gz) = 2208130 +TIMESTAMP = 1473589836 +SHA256 (ncrack-0.5.tar.gz) = dbad9440c861831836d47ece95aeb2bd40374a3eb03a14dea0fe1bfa73ecd4bc +SIZE (ncrack-0.5.tar.gz) = 3931159 From owner-svn-ports-head@freebsd.org Tue Sep 13 14:19:02 2016 Return-Path: Delivered-To: svn-ports-head@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 0205BBD9FDF; Tue, 13 Sep 2016 14:19:02 +0000 (UTC) (envelope-from mat@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 ACB1025E; Tue, 13 Sep 2016 14:19:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DEJ0kr095818; Tue, 13 Sep 2016 14:19:00 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DEJ08H095817; Tue, 13 Sep 2016 14:19:00 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609131419.u8DEJ08H095817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 13 Sep 2016 14:19:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422010 - head/www/p5-Gtk2-WebKit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:19:02 -0000 Author: mat Date: Tue Sep 13 14:19:00 2016 New Revision: 422010 URL: https://svnweb.freebsd.org/changeset/ports/422010 Log: Attempt at fixing the port for FreeBSD 9. It still fails, but it is getting closer. The build error is: /usr/local/bin/perl5 -I blib/lib -I blib/arch -MGlib::GenPod -MGtk2::WebKit -e "add_types (qq(\/usr\/local\/lib\/perl5\/site_perl\/mach\/5\.20\/Glib\/Install\/doctypes), qq(\/usr\/local\/lib\/perl5\/site_perl\/mach\/5\.20\/Cairo\/Install\/doctypes), qq(\/usr\/local\/lib\ /perl5\/site_perl\/mach\/5\.20\/Pango\/Install\/doctypes), qq(\/usr\/local\/lib\/perl5\/site_perl\/mach\/5\.20\/Gtk2\/Install\/doctypes)); Glib::GenPod::set_copyright(qq/Copyright (C) 2008, Florian Ragwitz/); Glib::GenPod::set_main_mod(qq(Gtk2::WebKit)); xsdoc2pod(q(bui ld/doc.pl), q(blib/lib), q(build/podindex));" Can't load 'blib/arch/auto/Gtk2/WebKit/WebKit.so' for module Gtk2::WebKit: /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.14 required by /usr/local/lib/libwebkitgtk-1.0.so.0 not found at /usr/local/lib/perl5/5.20/mach/DynaLoader.pm line 193. at -e line 0. Compilation failed in require. BEGIN failed--compilation aborted. *** [build/podindex] Error code 2 Sponsored by: Absolight Modified: head/www/p5-Gtk2-WebKit/Makefile (contents, props changed) Modified: head/www/p5-Gtk2-WebKit/Makefile ============================================================================== --- head/www/p5-Gtk2-WebKit/Makefile Tue Sep 13 14:18:54 2016 (r422009) +++ head/www/p5-Gtk2-WebKit/Makefile Tue Sep 13 14:19:00 2016 (r422010) @@ -25,7 +25,11 @@ MAKE_JOBS_UNSAFE= yes # blocked since 2010. Remove to see if it works on all systems again #NO_PACKAGE= Man page creation hangs on some systems for unknown reasons -USES= perl5 +USES= compiler:c++11-lib perl5 USE_PERL5= configure +CONFIGURE_ARGS= LDFLAGS="${LDFLAGS}" LD=${CC} +MAKE_ARGS= OTHERLDFLAGS="${LDFLAGS}" + +BROKEN_FreeBSD_9= Perl messes up the linking .include From owner-svn-ports-head@freebsd.org Tue Sep 13 14:22:08 2016 Return-Path: Delivered-To: svn-ports-head@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 49C62BD9180; Tue, 13 Sep 2016 14:22:08 +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 19B899BE; Tue, 13 Sep 2016 14:22:08 +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 u8DEM7mY099520; Tue, 13 Sep 2016 14:22:07 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DEM7G6099519; Tue, 13 Sep 2016 14:22:07 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609131422.u8DEM7G6099519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 13 Sep 2016 14:22:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422011 - head/converters/p5-Bencode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:22:08 -0000 Author: feld Date: Tue Sep 13 14:22:07 2016 New Revision: 422011 URL: https://svnweb.freebsd.org/changeset/ports/422011 Log: converters/p5-Bencode: Update BUILD_DEPENDS Reported by: mat Modified: head/converters/p5-Bencode/Makefile Modified: head/converters/p5-Bencode/Makefile ============================================================================== --- head/converters/p5-Bencode/Makefile Tue Sep 13 14:19:00 2016 (r422010) +++ head/converters/p5-Bencode/Makefile Tue Sep 13 14:22:07 2016 (r422011) @@ -3,6 +3,7 @@ PORTNAME= Bencode PORTVERSION= 1.402 +PORTREVISION= 1 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ARISTOTLE @@ -14,6 +15,7 @@ COMMENT= BitTorrent bencode serialisatio LICENSE= ART10 GPLv1 LICENSE_COMB= dual +BUILD_DEPENDS= p5-Exporter-Tidy>0:devel/p5-Exporter-Tidy RUN_DEPENDS= p5-Exporter-Tidy>0:devel/p5-Exporter-Tidy NO_ARCH= yes From owner-svn-ports-head@freebsd.org Tue Sep 13 14:24:47 2016 Return-Path: Delivered-To: svn-ports-head@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 3CC1FBD9249; Tue, 13 Sep 2016 14:24:47 +0000 (UTC) (envelope-from marino@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 E414FB60; Tue, 13 Sep 2016 14:24:46 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DEOklh099743; Tue, 13 Sep 2016 14:24:46 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DEOjBo099740; Tue, 13 Sep 2016 14:24:45 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131424.u8DEOjBo099740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 14:24:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422012 - in head: ftp/curl security/softhsm2 security/stunnel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:24:47 -0000 Author: marino Date: Tue Sep 13 14:24:45 2016 New Revision: 422012 URL: https://svnweb.freebsd.org/changeset/ports/422012 Log: LibreSSL checks: Check for libressl-devel option too Approved by: SSL blanket Modified: head/ftp/curl/Makefile head/security/softhsm2/Makefile head/security/stunnel/Makefile Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Tue Sep 13 14:22:07 2016 (r422011) +++ head/ftp/curl/Makefile Tue Sep 13 14:24:45 2016 (r422012) @@ -153,7 +153,7 @@ IGNORE= only supports LDAPS with SSL IGNORE= GSSAPI_BASE is not compatible with OpenSSL from ports. Use other GSSAPI options or OpenSSL from base system .endif -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} .if ${PORT_OPTIONS:MGSSAPI_BASE} && ${PORT_OPTIONS:MOPENSSL} IGNORE= GSSAPI_BASE is not compatible with LibreSSL. Use other GSSAPI options .endif Modified: head/security/softhsm2/Makefile ============================================================================== --- head/security/softhsm2/Makefile Tue Sep 13 14:22:07 2016 (r422011) +++ head/security/softhsm2/Makefile Tue Sep 13 14:24:45 2016 (r422012) @@ -40,7 +40,7 @@ CRYP_OPEN_CONFIGURE_ON= --with-crypto-ba .include -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} CONFIGURE_ARGS+= --disable-gost .endif Modified: head/security/stunnel/Makefile ============================================================================== --- head/security/stunnel/Makefile Tue Sep 13 14:22:07 2016 (r422011) +++ head/security/stunnel/Makefile Tue Sep 13 14:24:45 2016 (r422012) @@ -76,11 +76,11 @@ LDFLAGS+= -lpthread .include -.if ${PORT_OPTIONS:MFIPS} && ${SSL_DEFAULT} == libressl +.if ${PORT_OPTIONS:MFIPS} && ${SSL_DEFAULT:Mlibressl*} IGNORE= LibreSSL does not support FIPS standard .endif -.if ${SSL_DEFAULT} == libressl +.if ${SSL_DEFAULT:Mlibressl*} NO_PACKAGE= The stunnel license restricts distribution when linked to non-OpenSSL non-base SSL-libraries .endif From owner-svn-ports-head@freebsd.org Tue Sep 13 14:25:30 2016 Return-Path: Delivered-To: svn-ports-head@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 C8B7ABD9282; Tue, 13 Sep 2016 14:25:30 +0000 (UTC) (envelope-from vanilla@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 97EB2C3C; Tue, 13 Sep 2016 14:25:30 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DEPTFQ099887; Tue, 13 Sep 2016 14:25:29 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DEPTYR099885; Tue, 13 Sep 2016 14:25:29 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609131425.u8DEPTYR099885@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 13 Sep 2016 14:25:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422013 - head/www/elixir-joken X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:25:30 -0000 Author: vanilla Date: Tue Sep 13 14:25:29 2016 New Revision: 422013 URL: https://svnweb.freebsd.org/changeset/ports/422013 Log: Update to 1.3.0. Modified: head/www/elixir-joken/Makefile head/www/elixir-joken/distinfo Modified: head/www/elixir-joken/Makefile ============================================================================== --- head/www/elixir-joken/Makefile Tue Sep 13 14:24:45 2016 (r422012) +++ head/www/elixir-joken/Makefile Tue Sep 13 14:25:29 2016 (r422013) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= joken -PORTVERSION= 1.2.2 +PORTVERSION= 1.3.0 DISTVERSIONPREFIX= v CATEGORIES= www PKGNAMEPREFIX= elixir- Modified: head/www/elixir-joken/distinfo ============================================================================== --- head/www/elixir-joken/distinfo Tue Sep 13 14:24:45 2016 (r422012) +++ head/www/elixir-joken/distinfo Tue Sep 13 14:25:29 2016 (r422013) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471228679 -SHA256 (bryanjos-joken-v1.2.2_GH0.tar.gz) = 3790d02dc37d89d26ef715012da72c08a8c83e4b13f9e7affc530b028e58e2f2 -SIZE (bryanjos-joken-v1.2.2_GH0.tar.gz) = 36049 +TIMESTAMP = 1473775899 +SHA256 (bryanjos-joken-v1.3.0_GH0.tar.gz) = 64599d5d349c9bb81c42ce7acc574fccdc58483c58037958f178c893bd13d69a +SIZE (bryanjos-joken-v1.3.0_GH0.tar.gz) = 36103 From owner-svn-ports-head@freebsd.org Tue Sep 13 14:56:25 2016 Return-Path: Delivered-To: svn-ports-head@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 08A7EBD9A9E; Tue, 13 Sep 2016 14:56:25 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D3B73C79; Tue, 13 Sep 2016 14:56:24 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 0E841209A1; Tue, 13 Sep 2016 10:56:23 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute7.internal (MEProxy); Tue, 13 Sep 2016 10:56:23 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=oO0LA9jI875FGcP KyjdCWftcVqk=; b=tPYwDQklbbGp9UDuu78GOLvPaJGrqOmYRyDSx8UdnHStcul PvG782b36GfqyzYj1mJcAoSrdR7XxDIYZ6MgjOmjJlw5H1ZPYmQVqVOUvFC4VEF1 s5AczLEBPGbFceBA9x1GNo1licOQIgBa3kxImACTNpVYv6KbltDvxZ+DCmGQ= Received: by mailuser.nyi.internal (Postfix, from userid 99) id DF936CC80E; Tue, 13 Sep 2016 10:56:22 -0400 (EDT) Message-Id: <1473778582.2916423.724382249.5CB0E448@webmail.messagingengine.com> X-Sasl-Enc: Oy4655fVbbOYoxYWduklRczneVyiDd3NFp1vCWpFfmVW 1473778582 From: Mark Felder To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: MessagingEngine.com Webmail Interface - ajax-7374d14c In-Reply-To: References: <201609121944.u8CJi43g075720@repo.freebsd.org> Subject: Re: svn commit: r421954 - in head/converters: . p5-Bencode Date: Tue, 13 Sep 2016 09:56:22 -0500 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 14:56:25 -0000 On Tue, Sep 13, 2016, at 04:29, Mathieu Arnold wrote: > Le 12/09/2016 =E0 21:44, Mark Felder a =E9crit : > > + > > +RUN_DEPENDS=3D p5-Exporter-Tidy>0:devel/p5-Exporter-Tidy > > + > > > Please, also add it to BUILD_DEPENDS, right now when building, it says: >=20 > =3D=3D=3D> Configuring for p5-Bencode-1.402 > Warning: prerequisite Exporter::Tidy 0 not found. >=20 Thanks for catching this. --=20 Mark Felder ports-secteam member feld@FreeBSD.org From owner-svn-ports-head@freebsd.org Tue Sep 13 15:28:16 2016 Return-Path: Delivered-To: svn-ports-head@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 0607BBD9518; Tue, 13 Sep 2016 15:28:16 +0000 (UTC) (envelope-from vanilla@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 CCC8F693; Tue, 13 Sep 2016 15:28:15 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFSFLk022948; Tue, 13 Sep 2016 15:28:15 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFSEXG022945; Tue, 13 Sep 2016 15:28:14 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609131528.u8DFSEXG022945@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 13 Sep 2016 15:28:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422016 - head/devel/pecl-swoole X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:28:16 -0000 Author: vanilla Date: Tue Sep 13 15:28:14 2016 New Revision: 422016 URL: https://svnweb.freebsd.org/changeset/ports/422016 Log: Update to 1.8.11, and add HTTP2 & REDIS options. Modified: head/devel/pecl-swoole/Makefile head/devel/pecl-swoole/distinfo Modified: head/devel/pecl-swoole/Makefile ============================================================================== --- head/devel/pecl-swoole/Makefile Tue Sep 13 15:23:02 2016 (r422015) +++ head/devel/pecl-swoole/Makefile Tue Sep 13 15:28:14 2016 (r422016) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= swoole -PORTVERSION= 1.8.10 +PORTVERSION= 1.8.11 CATEGORIES= devel net MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -14,8 +14,15 @@ COMMENT= Asynchronous & concurrent & dis LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= php:ext tar:tgz +USES= php:ext ssl tar:tgz CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib USE_PHP= pcre +OPTIONS_DEFINE= HTTP2 REDIS +HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 +HTTP2_CONFIGURE_ON= --enable-http2 --enable-openssl +REDIS_LIB_DEPENDS= libhiredis.so:databases/hiredis +REDIS_CONFIGURE_ON= --enable-async-redis --enable-coroutine + .include Modified: head/devel/pecl-swoole/distinfo ============================================================================== --- head/devel/pecl-swoole/distinfo Tue Sep 13 15:23:02 2016 (r422015) +++ head/devel/pecl-swoole/distinfo Tue Sep 13 15:28:14 2016 (r422016) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472178735 -SHA256 (PECL/swoole-1.8.10.tgz) = 4162cb1296046bcbd2a7ea255bd45d4aca291d8f6dc1508726a4d6a15bd3410f -SIZE (PECL/swoole-1.8.10.tgz) = 522440 +TIMESTAMP = 1473776770 +SHA256 (PECL/swoole-1.8.11.tgz) = 07302e592c53946ef02b40f067ad39af03a1a48231c9cfc011a52f7d396a502a +SIZE (PECL/swoole-1.8.11.tgz) = 523334 From owner-svn-ports-head@freebsd.org Tue Sep 13 15:28:36 2016 Return-Path: Delivered-To: svn-ports-head@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 6F6F0BD955F; Tue, 13 Sep 2016 15:28:36 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 36B3F7D8; Tue, 13 Sep 2016 15:28:36 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id D8FEBBDC77; Tue, 13 Sep 2016 17:28:33 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 9AE7EBDC30; Tue, 13 Sep 2016 17:28:33 +0200 (CEST) Subject: Re: svn commit: r422012 - in head: ftp/curl security/softhsm2 security/stunnel To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609131424.u8DEOjBo099740@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Tue, 13 Sep 2016 17:28:30 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609131424.u8DEOjBo099740@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="NmSXouOiLVexHkonnm3h6I9jxdtju3A4n" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:28:36 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --NmSXouOiLVexHkonnm3h6I9jxdtju3A4n Content-Type: multipart/mixed; boundary="L2lhtxgEvJKGsvvdcpm2qjOFQ3ShjcdH3"; protected-headers="v1" From: Mathieu Arnold To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422012 - in head: ftp/curl security/softhsm2 security/stunnel References: <201609131424.u8DEOjBo099740@repo.freebsd.org> In-Reply-To: <201609131424.u8DEOjBo099740@repo.freebsd.org> --L2lhtxgEvJKGsvvdcpm2qjOFQ3ShjcdH3 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 13/09/2016 =C3=A0 16:24, John Marino a =C3=A9crit : > IGNORE=3D GSSAPI_BASE is not compatible with OpenSSL from ports. Use = other GSSAPI options or OpenSSL from base system > .endif > =20 > -.if ${SSL_DEFAULT} =3D=3D libressl > +.if ${SSL_DEFAULT:Mlibressl*} > .if ${PORT_OPTIONS:MGSSAPI_BASE} && ${PORT_OPTIONS:MOPENSSL} > IGNORE=3D GSSAPI_BASE is not compatible with LibreSSL. Use other GSSA= PI options > .endif Looking at this, those could be removed, if you try to use the base gssapi with ssl from ports, gssapi.mk will add an IGNORE entry. --=20 Mathieu Arnold --L2lhtxgEvJKGsvvdcpm2qjOFQ3ShjcdH3-- --NmSXouOiLVexHkonnm3h6I9jxdtju3A4n Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2BsgXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IFWIP/3AWC/XquutN0ip2zTHm/2rX E/ZhgbGrplpi3LW6QimRCooY80X++2RIdmkOfyXKRqxBpKkGHkIhTRNNgpJCTGRB GkvrqnaQ9v+hhuMc/5X9J4ML78vcLuJuS8OrV+UtsMFKiy+gAsW+VRWPaPg00Bj8 7lOHwBJxhgYcXkjz9Vyb+slQxK4TpoHtJSZbFYDAn1k6erQQCTmIxGbQ2cWRUvFL 8cjd2+vtU674K9C56bwSZt0R0voTs/V10Wx5UL/aTYFXctL/fVdJXgkCU4/d2cTW tv806j0ZH7dIiNRVde0WRSQGr54nIICX5zRAZgT+qMdWr6gC9boPr03Ya4OZw8nn +GS77soUatKzSZbnXlzl1+3ZO0tzOBGqTs1O1dexkVlPnbgwhc/6dCxm3Bk2Arug BGT3zfw2UWiGQQxrpUeBrH1b42xk59GQ+EvCMJrNapSjgehETRGVcBk7edT0xJ8Y RTXBSBI8Ra4ItGCCSwGTcTvIg1jDq3ZOXmjDDQ7qY78hPQO7feQvky55g7h9BaGs xXOBGBNcx9BxxDzsIn+WusyI8ygHcGFvzS32frptGd5+oJw94Z1N3R3hpxaDjToM KrPpHzCBOEDB0T1rhJgyRlWwaSGcHWFLWqmKa5JnHX7LVjqP7yn2UUBqqTyM/665 uDZEnJxMqsnHxlO9n7FH =JHK+ -----END PGP SIGNATURE----- --NmSXouOiLVexHkonnm3h6I9jxdtju3A4n-- From owner-svn-ports-head@freebsd.org Tue Sep 13 15:29:03 2016 Return-Path: Delivered-To: svn-ports-head@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 E6623BD9595; Tue, 13 Sep 2016 15:29:03 +0000 (UTC) (envelope-from marino@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 A8A5C8BD; Tue, 13 Sep 2016 15:29:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFT2m0023103; Tue, 13 Sep 2016 15:29:02 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFT2Er023100; Tue, 13 Sep 2016 15:29:02 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131529.u8DFT2Er023100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 15:29:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422017 - in head/net/ssvnc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:29:04 -0000 Author: marino Date: Tue Sep 13 15:29:02 2016 New Revision: 422017 URL: https://svnweb.freebsd.org/changeset/ports/422017 Log: net/ssvnc: Document and configure SSL, fix build for LibreSSL While here, modernize and cleanup the port and honor flags Added: head/net/ssvnc/files/patch-vncstorepw_Makefile (contents, props changed) head/net/ssvnc/files/patch-vncstorepw_ultravnc__dsm__helper.c (contents, props changed) Modified: head/net/ssvnc/Makefile Modified: head/net/ssvnc/Makefile ============================================================================== --- head/net/ssvnc/Makefile Tue Sep 13 15:28:14 2016 (r422016) +++ head/net/ssvnc/Makefile Tue Sep 13 15:29:02 2016 (r422017) @@ -17,24 +17,24 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= stunnel:security/stunnel \ xterm:x11/xterm -OPTIONS_DEFINE= DOCS ULTRAFTP -ULTRAFTP_DESC= UltraVNC File Transfer support (Java required) - -USES= gmake imake:env jpeg perl5 tk:wrapper -USE_OPENSSL= yes +USES= gmake imake:env jpeg perl5 ssl tk:wrapper USE_PERL5= run USE_XORG= xi xmu xt xaw ice xpm xext sm +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + +OPTIONS_DEFINE= DOCS ULTRAFTP +OPTIONS_SUB= yes + +ULTRAFTP_DESC= UltraVNC File Transfer support (Java required) +ULTRAFTP_USE= JAVA=yes MAKE_ENV+= ROOT=${STAGEDIR} .include -.if ${PORT_OPTIONS:MULTRAFTP} -USE_JAVA= yes -PLIST_SUB+= ULTRAFTP="" -.else +.if ! ${PORT_OPTIONS:MULTRAFTP} MAKE_ARGS+= JSRC="" -PLIST_SUB+= ULTRAFTP="@comment " .endif .if ! ${PORT_OPTIONS:MDOCS} @@ -42,13 +42,14 @@ MAKE_ARGS+= DOCS="" .endif post-patch: - @${REINPLACE_CMD} -e 's|grep Linux|grep ${OPSYS}|' ${WRKSRC}/scripts/util/ss_vncviewer - @${REINPLACE_CMD} -e 's|[[:<:]]ssvnc[[:>:]]|ssvnc-gui|' ${WRKSRC}/man/man1/ssvnc.1 - @${REINPLACE_CMD} -e 's|/usr/local/bin|${LOCALBASE}/bin|' \ - -e 's|^CC =|CC ?=|' ${WRKSRC}/vncstorepw/Makefile + @${REINPLACE_CMD} -e 's|grep Linux|grep ${OPSYS}|' \ + ${WRKSRC}/scripts/util/ss_vncviewer + @${REINPLACE_CMD} -e 's|[[:<:]]ssvnc[[:>:]]|ssvnc-gui|' \ + ${WRKSRC}/man/man1/ssvnc.1 do-configure: - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} config + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${MAKE_CMD} ${MAKE_ARGS} config) post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ssvnc/*.so Added: head/net/ssvnc/files/patch-vncstorepw_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ssvnc/files/patch-vncstorepw_Makefile Tue Sep 13 15:29:02 2016 (r422017) @@ -0,0 +1,38 @@ +--- vncstorepw/Makefile.orig 2010-04-22 03:22:40 UTC ++++ vncstorepw/Makefile +@@ -7,8 +7,6 @@ UNWRAP = unwrap.so + LIMACC = lim_accept.so + ULTDSM = ultravnc_dsm_helper + +-# gcc must be used: +-CC = gcc + + all: $(CMD) $(UNWRAP) $(LIMACC) $(ULTDSM) + +@@ -21,7 +19,7 @@ $(UNWRAP): unwrap.c + if [ `uname` = "Darwin" ]; then \ + PATH=$$PATH:$(EPATH) $(CC) -o $(UNWRAP) -dynamiclib -fPIC unwrap.c; \ + else \ +- PATH=$$PATH:$(EPATH) $(CC) -o $(UNWRAP) -shared -fPIC unwrap.c; \ ++ PATH=$$PATH:$(EPATH) $(CC) -o $(UNWRAP) -shared $(CFLAGS) -fPIC unwrap.c; \ + fi + @ls -l $(UNWRAP) + +@@ -29,7 +27,7 @@ $(LIMACC): lim_accept.c + if [ `uname` = "Darwin" ]; then \ + PATH=$$PATH:$(EPATH) $(CC) -o $(LIMACC) -dynamiclib -fPIC -nostartfiles lim_accept.c; \ + else \ +- PATH=$$PATH:$(EPATH) $(CC) -o $(LIMACC) -shared -fPIC -nostartfiles lim_accept.c; \ ++ PATH=$$PATH:$(EPATH) $(CC) -o $(LIMACC) -shared $(CFLAGS) -fPIC -nostartfiles lim_accept.c; \ + fi + @ls -l $(LIMACC) + +@@ -39,7 +37,7 @@ $(ULTDSM): ultravnc_dsm_helper.c + if [ `uname` = "SunOS" ]; then \ + PATH=$$PATH:$(EPATH) $(CC) -o $(ULTDSM) $(CPP_SSL) ultravnc_dsm_helper.c $(LD_SSL) -lssl -lcrypto -lsocket -lnsl; \ + else \ +- PATH=$$PATH:$(EPATH) $(CC) -o $(ULTDSM) $(CPP_SSL) ultravnc_dsm_helper.c $(LD_SSL) -lssl -lcrypto; \ ++ PATH=$$PATH:$(EPATH) $(CC) -o $(ULTDSM) $(CPP_SSL) ultravnc_dsm_helper.c $(CFLAGS) $(LDFLAGS) -lssl -lcrypto; \ + fi + PATH=$$PATH:$(EPATH) strip $(ULTDSM) + @ls -l $(ULTDSM) Added: head/net/ssvnc/files/patch-vncstorepw_ultravnc__dsm__helper.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ssvnc/files/patch-vncstorepw_ultravnc__dsm__helper.c Tue Sep 13 15:29:02 2016 (r422017) @@ -0,0 +1,13 @@ +--- vncstorepw/ultravnc_dsm_helper.c.orig 2010-04-23 04:29:43 UTC ++++ vncstorepw/ultravnc_dsm_helper.c +@@ -413,8 +413,10 @@ void enc_do(char *ciph, char *keyfile, c + p++; + if (strstr(p, "md5+") == p) { + Digest = EVP_md5(); p += strlen("md5+"); ++#ifndef OPENSSL_NO_SHA0 + } else if (strstr(p, "sha+") == p) { + Digest = EVP_sha(); p += strlen("sha+"); ++#endif + } else if (strstr(p, "sha1+") == p) { + Digest = EVP_sha1(); p += strlen("sha1+"); + } else if (strstr(p, "ripe+") == p) { From owner-svn-ports-head@freebsd.org Tue Sep 13 15:30:55 2016 Return-Path: Delivered-To: svn-ports-head@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 2BEB8BD95ED; Tue, 13 Sep 2016 15:30:55 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 087A2AB1; Tue, 13 Sep 2016 15:30:54 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id D4E7443CA6; Tue, 13 Sep 2016 10:30:50 -0500 (CDT) Subject: Re: svn commit: r422012 - in head: ftp/curl security/softhsm2 security/stunnel To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609131424.u8DEOjBo099740@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <66dded72-df9b-21b0-21a7-5cf444041590@marino.st> Date: Tue, 13 Sep 2016 10:30:49 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-1, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:30:55 -0000 On 9/13/2016 10:28, Mathieu Arnold wrote: > Le 13/09/2016 à 16:24, John Marino a écrit : >> IGNORE= GSSAPI_BASE is not compatible with OpenSSL from ports. Use other GSSAPI options or OpenSSL from base system >> .endif >> >> -.if ${SSL_DEFAULT} == libressl >> +.if ${SSL_DEFAULT:Mlibressl*} >> .if ${PORT_OPTIONS:MGSSAPI_BASE} && ${PORT_OPTIONS:MOPENSSL} >> IGNORE= GSSAPI_BASE is not compatible with LibreSSL. Use other GSSAPI options >> .endif > > Looking at this, those could be removed, if you try to use the base > gssapi with ssl from ports, gssapi.mk will add an IGNORE entry. > Okay, I'll removed them based on that. Cheers, John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Tue Sep 13 15:32:47 2016 Return-Path: Delivered-To: svn-ports-head@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 D031ABD96F8; Tue, 13 Sep 2016 15:32:47 +0000 (UTC) (envelope-from johans@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 936BCCD6; Tue, 13 Sep 2016 15:32:47 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFWkoQ026745; Tue, 13 Sep 2016 15:32:46 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFWkYv026742; Tue, 13 Sep 2016 15:32:46 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201609131532.u8DFWkYv026742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Tue, 13 Sep 2016 15:32:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422018 - head/print/texinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:32:47 -0000 Author: johans Date: Tue Sep 13 15:32:46 2016 New Revision: 422018 URL: https://svnweb.freebsd.org/changeset/ports/422018 Log: Update to Texinfo 6.3 http://lists.gnu.org/archive/html/info-gnu/2016-09/msg00004.html Modified: head/print/texinfo/Makefile head/print/texinfo/distinfo head/print/texinfo/pkg-plist Modified: head/print/texinfo/Makefile ============================================================================== --- head/print/texinfo/Makefile Tue Sep 13 15:29:02 2016 (r422017) +++ head/print/texinfo/Makefile Tue Sep 13 15:32:46 2016 (r422018) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= texinfo -PORTVERSION= 6.1.20160425 +PORTVERSION= 6.3.20160911 CATEGORIES= print MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/texinfo/${PORTVERSION:E}/ \ http://ftp.stack.nl/pub/users/johans/texinfo/${PORTVERSION:E}/ \ Modified: head/print/texinfo/distinfo ============================================================================== --- head/print/texinfo/distinfo Tue Sep 13 15:29:02 2016 (r422017) +++ head/print/texinfo/distinfo Tue Sep 13 15:32:46 2016 (r422018) @@ -1,8 +1,9 @@ -SHA256 (texinfo/6.1.20160425/texinfo-6.1.tar.xz) = ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 -SIZE (texinfo/6.1.20160425/texinfo-6.1.tar.xz) = 4520376 -SHA256 (texinfo/6.1.20160425/htmlxref.cnf) = b94aace151102c0e5cc49be570b79b513fcfbb54aaff55bd640c6d00fa56968c -SIZE (texinfo/6.1.20160425/htmlxref.cnf) = 20137 -SHA256 (texinfo/6.1.20160425/texinfo.tex) = e829e69d206bfccd1842940e7d3482750b4be975218b2989d15fa355ab544cec -SIZE (texinfo/6.1.20160425/texinfo.tex) = 379272 -SHA256 (texinfo/6.1.20160425/texi2dvi) = 08dee9983848f02fa259413225abce63ec5d70efc8813daeeb15d14287598269 -SIZE (texinfo/6.1.20160425/texi2dvi) = 61068 +TIMESTAMP = 1473780269 +SHA256 (texinfo/6.3.20160911/texinfo-6.3.tar.xz) = 246cf3ffa54985118ec2eea2b8d0c71b92114efe6282c2ae90d65029db4cf93a +SIZE (texinfo/6.3.20160911/texinfo-6.3.tar.xz) = 4468048 +SHA256 (texinfo/6.3.20160911/htmlxref.cnf) = d77343dfec47d38a3f029bd42df6ca08e2701f8925be9dffdb07c53a9a0b292d +SIZE (texinfo/6.3.20160911/htmlxref.cnf) = 20137 +SHA256 (texinfo/6.3.20160911/texinfo.tex) = 8f90b32fbe7dd1c225a16d75b19438570f01f8ad3c897e22ff4167766b675d4b +SIZE (texinfo/6.3.20160911/texinfo.tex) = 382999 +SHA256 (texinfo/6.3.20160911/texi2dvi) = 9bec1856dc5a3792d15f7ac3bde9a45eb525430bafdf23ebfd4de6264b6d01e0 +SIZE (texinfo/6.3.20160911/texi2dvi) = 61185 Modified: head/print/texinfo/pkg-plist ============================================================================== --- head/print/texinfo/pkg-plist Tue Sep 13 15:29:02 2016 (r422017) +++ head/print/texinfo/pkg-plist Tue Sep 13 15:32:46 2016 (r422018) @@ -20,11 +20,15 @@ man/man5/info.5.gz man/man5/texinfo.5.gz %%NLS%%share/locale/ca.us-ascii/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/ca/LC_MESSAGES/texinfo.mo +%%NLS%%share/locale/ca/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/cs/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/da/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/de.us-ascii/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/de/LC_MESSAGES/texinfo.mo +%%NLS%%share/locale/de/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/de_AT/LC_MESSAGES/texinfo.mo +%%NLS%%share/locale/el/LC_MESSAGES/texinfo.mo +%%NLS%%share/locale/el/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/eo/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/eo/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/es/LC_MESSAGES/texinfo.mo @@ -33,6 +37,7 @@ man/man5/texinfo.5.gz %%NLS%%share/locale/fr/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/he/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/hr/LC_MESSAGES/texinfo.mo +%%NLS%%share/locale/hr/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/hu/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/hu/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/id/LC_MESSAGES/texinfo.mo @@ -46,8 +51,10 @@ man/man5/texinfo.5.gz %%NLS%%share/locale/pl/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/pl/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/pt.us-ascii/LC_MESSAGES/texinfo_document.mo +%%NLS%%share/locale/pt/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/pt_BR.us-ascii/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/texinfo.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/ro/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/ru/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/rw/LC_MESSAGES/texinfo.mo @@ -436,6 +443,7 @@ man/man5/texinfo.5.gz %%TEXMF%%/tex/texinfo/txi-hu.tex %%TEXMF%%/tex/texinfo/txi-is.tex %%TEXMF%%/tex/texinfo/txi-it.tex +%%TEXMF%%/tex/texinfo/txi-ja.tex %%TEXMF%%/tex/texinfo/txi-nb.tex %%TEXMF%%/tex/texinfo/txi-nl.tex %%TEXMF%%/tex/texinfo/txi-nn.tex From owner-svn-ports-head@freebsd.org Tue Sep 13 15:34:29 2016 Return-Path: Delivered-To: svn-ports-head@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 BFC56BD975A; Tue, 13 Sep 2016 15:34:29 +0000 (UTC) (envelope-from brd@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 762B2DD5; Tue, 13 Sep 2016 15:34:29 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFYSm1026947; Tue, 13 Sep 2016 15:34:28 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFYSdm026944; Tue, 13 Sep 2016 15:34:28 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201609131534.u8DFYSdm026944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Tue, 13 Sep 2016 15:34:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422019 - in head/www/webkit2-gtk3: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:34:29 -0000 Author: brd Date: Tue Sep 13 15:34:28 2016 New Revision: 422019 URL: https://svnweb.freebsd.org/changeset/ports/422019 Log: Fix build of www/webkit2-gtk3 on armv6 by matching the correct define and disabling the JIT compiler. PR: 207275 Submitted by: mikael.urankar@gmail.com Reported by: sbruno Reviewed by: bdrewery (implicit) Approved by: maintainer timeout Added: head/www/webkit2-gtk3/files/patch-Source_WTF_wtf_Platform.h (contents, props changed) head/www/webkit2-gtk3/files/patch-Source_bmalloc_bmalloc_BPlatform.h (contents, props changed) Modified: head/www/webkit2-gtk3/Makefile Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Tue Sep 13 15:32:46 2016 (r422018) +++ head/www/webkit2-gtk3/Makefile Tue Sep 13 15:34:28 2016 (r422019) @@ -55,6 +55,10 @@ DEBUG_CMAKE_OFF= -DCMAKE_BUILD_TYPE=Rele .include +.if ${ARCH} == armv6 +CMAKE_ARGS+= -DENABLE_JIT:BOOL=OFF +.endif + .if ${ARCH} == powerpc64 CFLAGS+= -mminimal-toc .endif Added: head/www/webkit2-gtk3/files/patch-Source_WTF_wtf_Platform.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/webkit2-gtk3/files/patch-Source_WTF_wtf_Platform.h Tue Sep 13 15:34:28 2016 (r422019) @@ -0,0 +1,18 @@ +--- Source/WTF/wtf/Platform.h.orig 2016-07-20 UTC ++++ Source/WTF/wtf/Platform.h +@@ -218,6 +218,7 @@ + #elif defined(__ARM_ARCH_6__) \ + || defined(__ARM_ARCH_6J__) \ + || defined(__ARM_ARCH_6K__) \ ++ || defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6T2__) \ +@@ -264,6 +265,7 @@ + + #elif defined(__ARM_ARCH_6J__) \ + || defined(__ARM_ARCH_6K__) \ ++ || defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6M__) Added: head/www/webkit2-gtk3/files/patch-Source_bmalloc_bmalloc_BPlatform.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/webkit2-gtk3/files/patch-Source_bmalloc_bmalloc_BPlatform.h Tue Sep 13 15:34:28 2016 (r422019) @@ -0,0 +1,10 @@ +--- Source/bmalloc/bmalloc/BPlatform.h.orig 2016-05-06 11:07:30 UTC ++++ Source/bmalloc/bmalloc/BPlatform.h +@@ -100,6 +100,7 @@ + #elif defined(__ARM_ARCH_6__) \ + || defined(__ARM_ARCH_6J__) \ + || defined(__ARM_ARCH_6K__) \ ++|| defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6T2__) \ From owner-svn-ports-head@freebsd.org Tue Sep 13 15:37:01 2016 Return-Path: Delivered-To: svn-ports-head@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 6E60BBD97E3; Tue, 13 Sep 2016 15:37:01 +0000 (UTC) (envelope-from marino@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 3F7B3F17; Tue, 13 Sep 2016 15:37:01 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFb0nP027143; Tue, 13 Sep 2016 15:37:00 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFb012027142; Tue, 13 Sep 2016 15:37:00 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131537.u8DFb012027142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 15:37:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422020 - head/ftp/curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:37:01 -0000 Author: marino Date: Tue Sep 13 15:37:00 2016 New Revision: 422020 URL: https://svnweb.freebsd.org/changeset/ports/422020 Log: ftp/curl: Remove redundant ports SSL + base GSSAPI check If one tries to use the base gssapi with SSL from ports, gssapi.mk will add an IGNORE entry. Suggested by: mat Modified: head/ftp/curl/Makefile Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Tue Sep 13 15:34:28 2016 (r422019) +++ head/ftp/curl/Makefile Tue Sep 13 15:37:00 2016 (r422020) @@ -154,9 +154,6 @@ IGNORE= GSSAPI_BASE is not compatible w .endif .if ${SSL_DEFAULT:Mlibressl*} -.if ${PORT_OPTIONS:MGSSAPI_BASE} && ${PORT_OPTIONS:MOPENSSL} -IGNORE= GSSAPI_BASE is not compatible with LibreSSL. Use other GSSAPI options -.endif .if ${PORT_OPTIONS:MTLS_SRP} IGNORE= unsupported TLS-SRP in LibreSSL .endif From owner-svn-ports-head@freebsd.org Tue Sep 13 15:41:23 2016 Return-Path: Delivered-To: svn-ports-head@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 DAD05BD9A92; Tue, 13 Sep 2016 15:41:23 +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 B6A3B7C7; Tue, 13 Sep 2016 15:41:23 +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 u8DFfMxk027525; Tue, 13 Sep 2016 15:41:22 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFfM33027522; Tue, 13 Sep 2016 15:41:22 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609131541.u8DFfM33027522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 13 Sep 2016 15:41:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422021 - head/multimedia/plexmediaserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:41:24 -0000 Author: feld Date: Tue Sep 13 15:41:22 2016 New Revision: 422021 URL: https://svnweb.freebsd.org/changeset/ports/422021 Log: multimedia/plexmediaserver{-plexpass}: Update to 1.1.4 Changelog: https://forums.plex.tv/discussion/comment/1254164#Comment_1254164 Modified: head/multimedia/plexmediaserver/Makefile head/multimedia/plexmediaserver/distinfo head/multimedia/plexmediaserver/pkg-plist Modified: head/multimedia/plexmediaserver/Makefile ============================================================================== --- head/multimedia/plexmediaserver/Makefile Tue Sep 13 15:37:00 2016 (r422020) +++ head/multimedia/plexmediaserver/Makefile Tue Sep 13 15:41:22 2016 (r422021) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= plexmediaserver -PORTVERSION?= 1.1.3.2700 +PORTVERSION?= 1.1.4.2757 PORTREVISION?= 0 CATEGORIES= multimedia MASTER_SITES= https://downloads.plexapp.com/plex-media-server/${PORTVERSION}-${PLEX_BUILD}/ @@ -12,7 +12,7 @@ MAINTAINER?= feld@FreeBSD.org COMMENT= Plex Media Server component USES= cpe tar:bzip2 -PLEX_BUILD?= 6f64a8d +PLEX_BUILD?= 24ffd60 NO_BUILD= yes WRKSRC= ${WRKDIR}/PlexMediaServer-${PORTVERSION}-${PLEX_BUILD} Modified: head/multimedia/plexmediaserver/distinfo ============================================================================== --- head/multimedia/plexmediaserver/distinfo Tue Sep 13 15:37:00 2016 (r422020) +++ head/multimedia/plexmediaserver/distinfo Tue Sep 13 15:41:22 2016 (r422021) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472738932 -SHA256 (PlexMediaServer-1.1.3.2700-6f64a8d-freebsd-amd64.tar.bz2) = 0c8680188130bfe4dd50df1e1023b3abaf2e28b12cb974fad6ac1011e87e50c9 -SIZE (PlexMediaServer-1.1.3.2700-6f64a8d-freebsd-amd64.tar.bz2) = 83579763 +TIMESTAMP = 1473779252 +SHA256 (PlexMediaServer-1.1.4.2757-24ffd60-freebsd-amd64.tar.bz2) = 296250e44c4ad4cd156e2497798d5642263c954714b1052e77bd07eaf1c4173b +SIZE (PlexMediaServer-1.1.4.2757-24ffd60-freebsd-amd64.tar.bz2) = 84025739 Modified: head/multimedia/plexmediaserver/pkg-plist ============================================================================== --- head/multimedia/plexmediaserver/pkg-plist Tue Sep 13 15:37:00 2016 (r422020) +++ head/multimedia/plexmediaserver/pkg-plist Tue Sep 13 15:41:22 2016 (r422021) @@ -1,4 +1,5 @@ @mode 555 +%%DATADIR%%/CrashUploader %%DATADIR%%/Plex DLNA Server %%DATADIR%%/Plex Media Scanner %%DATADIR%%/Plex Media Server @@ -1370,16 +1371,12 @@ %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/TheTVDB.bundle/Contents/VERSION %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/TheTVDB.bundle/README.md %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.31f5b47ea02b97b1f239a6a46a051911.css -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.v3.f64d392c5405738ec7f07e47db02d18d.css +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.11331b159ab56715f5956d4502a1d38f.css +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.v3.c6ebc32cd6d295016942ffc0d72a033b.css %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/favicon-mask.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/favicon.ico -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/plex-logo.96faf245690b14fdd33eccd3294ac57f.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/plex-pass.e73cc397459c4930e842b86b27d05eb9.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/pms-logo.70f6a544befb024685e4a294f6e5505e.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/posters/avatar-560.9f88d7ebc3a9659a9e1ee1b471e72951.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/posters/square.f5415a2d8a1fccd963e88194af15ddc0.png -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/vendor-logos/lyricfind.0752dd542f235693d1fdaecbfcf339a3.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/blank.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/devices/android.e8cc6aa3327ad31f2637c2817cb8bf71.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/devices/android@2x.70b26158a20f05a3fdf9d749dc1fb7c2.png @@ -1434,36 +1431,19 @@ %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/ios/startup-iphone-portrait.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/ios/startup-iphone-portrait@2x.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/ios/startup-iphone5-portrait@2x.png -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/asustor.4151ae1be5b67680c6b5160ac3fcee7e.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/drobo.53afe68dfb0e698ff5c104db424f52ba.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/freebsd.c4064fd247f89578aa3c92a34a1a14b8.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/linux.a66ceca3ea9d4b6261bc0bbbed31f8e1.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/mac.b3f08e8b89c4bce5381d28e322f83d78.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/netgear.843dc6c6c650a11eab86589c9737e13c.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/qnap.f33e9668d5725d98b5f5d3796bde8108.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/seagate.4f1104d9e8724381ca285aaaa8df0b5d.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/synology.f796634e7aad4aaed474601d28c9f562.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/thecus.e013a776ee8e35198874ca0633fddd10.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/unraid.2c0408d66d6e160afad628266bb5b1b0.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/wd.87277f9739ddb3828cfeaa8003ca6eea.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/windows.a86d11ea55c7312c8e52af3cad19a556.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/queue/bookmarklet-steps-ie.3cbda4e75b0dd0e186e0c24999ab0d1d.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/queue/bookmarklet-steps.abc5147d9257f0ec59f7b2257db9cb8f.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/queue/email-links.f1b12dd82ea85b39a4c0fa07dd6df095.png -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/setup/setup-devices.4c444242863ca1234c65de48ef80a5e8.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-camera-upload.c292737601a4452f02cb86a5ff46cd7f.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-cloud-sync.58594567e630cc4dae0ad42b6573f225.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-forum.a35de654d388b5416cd87ddd45e904f7.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-gracenote.47143d9a798b6044bb41469630e662db.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-mobile-sync.6a66674e2cb992f1134481602860f06f.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-trailers-extras.1ad0852cbe3bde7198f897afd6bc14dd.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/vendor-logos/gracenote.18089cb7063ad397523859fa93f2d54c.svg +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/vendor-logos/gracenote.c86b1d7624b5ae14ca7a30d73674a808.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/vendor-logos/songkick.28598beac20bee7c8dc681851d053bdf.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/index.html -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/main.e7cade6d451404a59a68.js +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/main.0762f01a98f090067c10.js %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/manifest.e03b68e82ebe9b435e8b.js -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/vendors.13cb25e17df5af71af56.js -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/zxcvbn.fcb1622406b67bb648d3.js +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/vendors.a6e30467a0e010dc3386.js +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/zxcvbn.8f96dc9914b3ef6d93a3.js %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/mp3/null.2036f08ba858d37814b7f6982d26414a.mp3 %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/setup.html %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/swf/jwplayer/jwplayer.swf From owner-svn-ports-head@freebsd.org Tue Sep 13 15:42:09 2016 Return-Path: Delivered-To: svn-ports-head@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 32BD0BD9AE3; Tue, 13 Sep 2016 15:42:09 +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 0DAC5935; Tue, 13 Sep 2016 15:42:08 +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 u8DFg8uB030952; Tue, 13 Sep 2016 15:42:08 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFg819030949; Tue, 13 Sep 2016 15:42:08 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609131542.u8DFg819030949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 13 Sep 2016 15:42:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422022 - head/multimedia/plexmediaserver-plexpass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:42:09 -0000 Author: feld Date: Tue Sep 13 15:42:07 2016 New Revision: 422022 URL: https://svnweb.freebsd.org/changeset/ports/422022 Log: multimedia/plexmediaserver{-plexpass}: Update to 1.1.4 Changelog: https://forums.plex.tv/discussion/comment/1254164#Comment_1254164 Modified: head/multimedia/plexmediaserver-plexpass/Makefile head/multimedia/plexmediaserver-plexpass/distinfo head/multimedia/plexmediaserver-plexpass/pkg-plist Modified: head/multimedia/plexmediaserver-plexpass/Makefile ============================================================================== --- head/multimedia/plexmediaserver-plexpass/Makefile Tue Sep 13 15:41:22 2016 (r422021) +++ head/multimedia/plexmediaserver-plexpass/Makefile Tue Sep 13 15:42:07 2016 (r422022) @@ -1,13 +1,13 @@ # Created by: KalleDK # $FreeBSD$ -PORTVERSION= 1.1.3.2700 +PORTVERSION= 1.1.4.2757 PORTREVISION= 0 PKGNAMESUFFIX= -plexpass MAINTAINER= feld@FreeBSD.org -PLEX_BUILD= 6f64a8d +PLEX_BUILD= 24ffd60 USE_RC_SUBR= ${PORTNAME}_plexpass Modified: head/multimedia/plexmediaserver-plexpass/distinfo ============================================================================== --- head/multimedia/plexmediaserver-plexpass/distinfo Tue Sep 13 15:41:22 2016 (r422021) +++ head/multimedia/plexmediaserver-plexpass/distinfo Tue Sep 13 15:42:07 2016 (r422022) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472738802 -SHA256 (PlexMediaServer-1.1.3.2700-6f64a8d-freebsd-amd64.tar.bz2) = 0c8680188130bfe4dd50df1e1023b3abaf2e28b12cb974fad6ac1011e87e50c9 -SIZE (PlexMediaServer-1.1.3.2700-6f64a8d-freebsd-amd64.tar.bz2) = 83579763 +TIMESTAMP = 1473779252 +SHA256 (PlexMediaServer-1.1.4.2757-24ffd60-freebsd-amd64.tar.bz2) = 296250e44c4ad4cd156e2497798d5642263c954714b1052e77bd07eaf1c4173b +SIZE (PlexMediaServer-1.1.4.2757-24ffd60-freebsd-amd64.tar.bz2) = 84025739 Modified: head/multimedia/plexmediaserver-plexpass/pkg-plist ============================================================================== --- head/multimedia/plexmediaserver-plexpass/pkg-plist Tue Sep 13 15:41:22 2016 (r422021) +++ head/multimedia/plexmediaserver-plexpass/pkg-plist Tue Sep 13 15:42:07 2016 (r422022) @@ -1,4 +1,5 @@ @mode 555 +%%DATADIR%%/CrashUploader %%DATADIR%%/Plex DLNA Server %%DATADIR%%/Plex Media Scanner %%DATADIR%%/Plex Media Server @@ -1370,16 +1371,12 @@ %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/TheTVDB.bundle/Contents/VERSION %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/TheTVDB.bundle/README.md %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.31f5b47ea02b97b1f239a6a46a051911.css -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.v3.f64d392c5405738ec7f07e47db02d18d.css +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.11331b159ab56715f5956d4502a1d38f.css +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/css/main.v3.c6ebc32cd6d295016942ffc0d72a033b.css %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/favicon-mask.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/favicon.ico -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/plex-logo.96faf245690b14fdd33eccd3294ac57f.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/plex-pass.e73cc397459c4930e842b86b27d05eb9.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/pms-logo.70f6a544befb024685e4a294f6e5505e.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/posters/avatar-560.9f88d7ebc3a9659a9e1ee1b471e72951.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/posters/square.f5415a2d8a1fccd963e88194af15ddc0.png -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/base/vendor-logos/lyricfind.0752dd542f235693d1fdaecbfcf339a3.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/blank.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/devices/android.e8cc6aa3327ad31f2637c2817cb8bf71.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/devices/android@2x.70b26158a20f05a3fdf9d749dc1fb7c2.png @@ -1434,36 +1431,19 @@ %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/ios/startup-iphone-portrait.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/ios/startup-iphone-portrait@2x.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/ios/startup-iphone5-portrait@2x.png -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/asustor.4151ae1be5b67680c6b5160ac3fcee7e.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/drobo.53afe68dfb0e698ff5c104db424f52ba.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/freebsd.c4064fd247f89578aa3c92a34a1a14b8.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/linux.a66ceca3ea9d4b6261bc0bbbed31f8e1.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/mac.b3f08e8b89c4bce5381d28e322f83d78.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/netgear.843dc6c6c650a11eab86589c9737e13c.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/qnap.f33e9668d5725d98b5f5d3796bde8108.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/seagate.4f1104d9e8724381ca285aaaa8df0b5d.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/synology.f796634e7aad4aaed474601d28c9f562.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/thecus.e013a776ee8e35198874ca0633fddd10.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/unraid.2c0408d66d6e160afad628266bb5b1b0.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/wd.87277f9739ddb3828cfeaa8003ca6eea.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/platform-logos/windows.a86d11ea55c7312c8e52af3cad19a556.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/queue/bookmarklet-steps-ie.3cbda4e75b0dd0e186e0c24999ab0d1d.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/queue/bookmarklet-steps.abc5147d9257f0ec59f7b2257db9cb8f.png %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/queue/email-links.f1b12dd82ea85b39a4c0fa07dd6df095.png -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/setup/setup-devices.4c444242863ca1234c65de48ef80a5e8.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-camera-upload.c292737601a4452f02cb86a5ff46cd7f.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-cloud-sync.58594567e630cc4dae0ad42b6573f225.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-forum.a35de654d388b5416cd87ddd45e904f7.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-gracenote.47143d9a798b6044bb41469630e662db.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-mobile-sync.6a66674e2cb992f1134481602860f06f.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/upsell/upsell-trailers-extras.1ad0852cbe3bde7198f897afd6bc14dd.svg -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/vendor-logos/gracenote.18089cb7063ad397523859fa93f2d54c.svg +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/vendor-logos/gracenote.c86b1d7624b5ae14ca7a30d73674a808.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/img/desktop/vendor-logos/songkick.28598beac20bee7c8dc681851d053bdf.svg %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/index.html -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/main.e7cade6d451404a59a68.js +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/main.0762f01a98f090067c10.js %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/manifest.e03b68e82ebe9b435e8b.js -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/vendors.13cb25e17df5af71af56.js -%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/zxcvbn.fcb1622406b67bb648d3.js +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/vendors.a6e30467a0e010dc3386.js +%%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/js/zxcvbn.8f96dc9914b3ef6d93a3.js %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/mp3/null.2036f08ba858d37814b7f6982d26414a.mp3 %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/setup.html %%DATADIR%%/Resources/Plug-ins-%%PLEX_BUILD%%/WebClient.bundle/Contents/Resources/swf/jwplayer/jwplayer.swf From owner-svn-ports-head@freebsd.org Tue Sep 13 15:51:40 2016 Return-Path: Delivered-To: svn-ports-head@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 B9929BD9C5A; Tue, 13 Sep 2016 15:51:40 +0000 (UTC) (envelope-from brd@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 8A270124; Tue, 13 Sep 2016 15:51:40 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFpdmt034112; Tue, 13 Sep 2016 15:51:39 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFpdQK034110; Tue, 13 Sep 2016 15:51:39 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201609131551.u8DFpdQK034110@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Tue, 13 Sep 2016 15:51:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422023 - head/devel/uclcmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:51:40 -0000 Author: brd Date: Tue Sep 13 15:51:39 2016 New Revision: 422023 URL: https://svnweb.freebsd.org/changeset/ports/422023 Log: Change MAINTAINER to author and update version PR: 211905 Submitted by: Johannes Meixner (maintainer) Approved by: bdrewery (implicit) Modified: head/devel/uclcmd/Makefile head/devel/uclcmd/distinfo Modified: head/devel/uclcmd/Makefile ============================================================================== --- head/devel/uclcmd/Makefile Tue Sep 13 15:42:07 2016 (r422022) +++ head/devel/uclcmd/Makefile Tue Sep 13 15:51:39 2016 (r422023) @@ -2,9 +2,10 @@ PORTNAME= uclcmd PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= devel -MAINTAINER= johannes@perceivon.net +MAINTAINER= allanjude@FreeBSD.org COMMENT= Command line tool for working with UCL config files LICENSE= BSD2CLAUSE @@ -16,7 +17,7 @@ BROKEN_FreeBSD_9= does not build: requir USE_GITHUB= yes GH_ACCOUNT= allanjude -GH_TAGNAME= 0d336e9 +GH_TAGNAME= 9450b2d USES= pkgconfig PLIST_FILES= bin/uclcmd Modified: head/devel/uclcmd/distinfo ============================================================================== --- head/devel/uclcmd/distinfo Tue Sep 13 15:42:07 2016 (r422022) +++ head/devel/uclcmd/distinfo Tue Sep 13 15:51:39 2016 (r422023) @@ -1,2 +1,3 @@ -SHA256 (allanjude-uclcmd-0.1-0d336e9_GH0.tar.gz) = ae133c099cfbef5785250dd445f7542fd75ca5ba587b24d0dbce7a3bd06af6d9 -SIZE (allanjude-uclcmd-0.1-0d336e9_GH0.tar.gz) = 18937 +TIMESTAMP = 1472012873 +SHA256 (allanjude-uclcmd-0.1-9450b2d_GH0.tar.gz) = 412d5390b1f44f39650eefcca8a723dc83aa7c6ff13348df2ff9516a3cb9db9c +SIZE (allanjude-uclcmd-0.1-9450b2d_GH0.tar.gz) = 18951 From owner-svn-ports-head@freebsd.org Tue Sep 13 15:51:48 2016 Return-Path: Delivered-To: svn-ports-head@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 9879DBD9D25; Tue, 13 Sep 2016 15:51:48 +0000 (UTC) (envelope-from johans@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 4F8B320B; Tue, 13 Sep 2016 15:51:48 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFpl29034260; Tue, 13 Sep 2016 15:51:47 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFplfh034257; Tue, 13 Sep 2016 15:51:47 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201609131551.u8DFplfh034257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Tue, 13 Sep 2016 15:51:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422024 - head/ftp/ocaml-ocurl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:51:48 -0000 Author: johans Date: Tue Sep 13 15:51:47 2016 New Revision: 422024 URL: https://svnweb.freebsd.org/changeset/ports/422024 Log: Update to ocurl 0.7.8 https://raw.githubusercontent.com/ygrek/ocurl/master/CHANGES.txt Modified: head/ftp/ocaml-ocurl/Makefile head/ftp/ocaml-ocurl/distinfo head/ftp/ocaml-ocurl/pkg-plist Modified: head/ftp/ocaml-ocurl/Makefile ============================================================================== --- head/ftp/ocaml-ocurl/Makefile Tue Sep 13 15:51:39 2016 (r422023) +++ head/ftp/ocaml-ocurl/Makefile Tue Sep 13 15:51:47 2016 (r422024) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= ocurl -PORTVERSION= 0.7.7 +PORTVERSION= 0.7.8 CATEGORIES= ftp -MASTER_SITES= https://forge.ocamlcore.org/frs/download.php/1612/ \ - http://ygrek.org.ua/p/release/ocurl/ +MASTER_SITES= http://ygrek.org.ua/p/release/ocurl/ PKGNAMEPREFIX= ocaml- MAINTAINER= johans@FreeBSD.org Modified: head/ftp/ocaml-ocurl/distinfo ============================================================================== --- head/ftp/ocaml-ocurl/distinfo Tue Sep 13 15:51:39 2016 (r422023) +++ head/ftp/ocaml-ocurl/distinfo Tue Sep 13 15:51:47 2016 (r422024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463412171 -SHA256 (ocurl-0.7.7.tar.gz) = 79805776f207ae8e64d63cda63d0bf8c6ee079c70b0d7f3bd2114faba0d5f41c -SIZE (ocurl-0.7.7.tar.gz) = 106430 +TIMESTAMP = 1473781055 +SHA256 (ocurl-0.7.8.tar.gz) = bce56372d98d92fb88bd63d28a0fd020613587a4d6f4b35c19f8744a39b7cb97 +SIZE (ocurl-0.7.8.tar.gz) = 107339 Modified: head/ftp/ocaml-ocurl/pkg-plist ============================================================================== --- head/ftp/ocaml-ocurl/pkg-plist Tue Sep 13 15:51:39 2016 (r422023) +++ head/ftp/ocaml-ocurl/pkg-plist Tue Sep 13 15:51:47 2016 (r422024) @@ -4,6 +4,7 @@ %%OCAML_SITELIBDIR%%/curl/curl.cmi %%OCAML_SITELIBDIR%%/curl/curl.cmt %%OCAML_SITELIBDIR%%/curl/curl.cmti +%%OCAML_SITELIBDIR%%/curl/curl.cmx %%OCAML_SITELIBDIR%%/curl/curl.cmxa %%OCAML_SITELIBDIR%%/curl/curl.mli %%LWT%%%%OCAML_SITELIBDIR%%/curl/curl_lwt.cmi From owner-svn-ports-head@freebsd.org Tue Sep 13 15:54:38 2016 Return-Path: Delivered-To: svn-ports-head@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 4AB79BD907F; Tue, 13 Sep 2016 15:54:38 +0000 (UTC) (envelope-from kwm@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 0048085D; Tue, 13 Sep 2016 15:54:37 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFsb8u035056; Tue, 13 Sep 2016 15:54:37 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFsb8Q035054; Tue, 13 Sep 2016 15:54:37 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201609131554.u8DFsb8Q035054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Tue, 13 Sep 2016 15:54:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422025 - head/multimedia/webcamd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:54:38 -0000 Author: kwm Date: Tue Sep 13 15:54:36 2016 New Revision: 422025 URL: https://svnweb.freebsd.org/changeset/ports/422025 Log: Update webcamd to 4.8.0.4. - updated all Linux kernel sources to the latest Linux' Torvalds - fixed some minor bugs in the webcamd Linux kernel emulation - improved Linux kernel emulation support - added support for the evdev kernel module (GSOC project) Submitted by: maintainer Modified: head/multimedia/webcamd/Makefile head/multimedia/webcamd/distinfo Modified: head/multimedia/webcamd/Makefile ============================================================================== --- head/multimedia/webcamd/Makefile Tue Sep 13 15:51:47 2016 (r422024) +++ head/multimedia/webcamd/Makefile Tue Sep 13 15:54:36 2016 (r422025) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= webcamd -PORTVERSION= 4.2.0.9 +PORTVERSION= 4.8.0.4 CATEGORIES= multimedia MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \ http://home.selasky.org:8192/distfiles/ @@ -21,7 +21,7 @@ USE_RC_SUBR= webcamd SUB_FILES= webcamd.conf USE_LDCONFIG= yes -OPTIONS_DEFINE= CUSE DEBUG HAL VT_CLIENT VT_SERVER DVB INPUT RADIO WEBCAM +OPTIONS_DEFINE= CUSE DEBUG HAL VT_CLIENT VT_SERVER DVB INPUT KEYBOARD MOUSE RADIO WEBCAM OPTIONS_DEFAULT=DVB HAL INPUT RADIO WEBCAM .if exists(/usr/lib/libcuse.so) @@ -59,6 +59,12 @@ DVB_MAKE_ARGS= HAVE_DVB_DRV="YES" INPUT_DESC= Build with USB input support (tablet, joystick, HID, IR, ...) INPUT_MAKE_ARGS= HAVE_INPUT_DRV="YES" +KEYBOARD_DESC= Build with USB keyboard support +KEYBOARD_MAKE_ARGS= HAVE_KEYBOARD_DRV="YES" + +MOUSE_DESC= Build with USB mouse support +MOUSE_MAKE_ARGS= HAVE_MOUSE_DRV="YES" + RADIO_DESC= Build with USB radio support RADIO_MAKE_ARGS= HAVE_RADIO_DRV="YES" Modified: head/multimedia/webcamd/distinfo ============================================================================== --- head/multimedia/webcamd/distinfo Tue Sep 13 15:51:47 2016 (r422024) +++ head/multimedia/webcamd/distinfo Tue Sep 13 15:54:36 2016 (r422025) @@ -1,2 +1,3 @@ -SHA256 (webcamd-4.2.0.9.tar.bz2) = b02958db281be2347b17db8a81604c49eb43802a5fa3a771cccc5904c9e36539 -SIZE (webcamd-4.2.0.9.tar.bz2) = 10983753 +TIMESTAMP = 1472287897 +SHA256 (webcamd-4.8.0.4.tar.bz2) = cab0166ef4df4e00ef775e4e527b1dee6e6b100c6ad002df72663e7ae8380d10 +SIZE (webcamd-4.8.0.4.tar.bz2) = 11700148 From owner-svn-ports-head@freebsd.org Tue Sep 13 15:59:04 2016 Return-Path: Delivered-To: svn-ports-head@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 139D6BD9152; Tue, 13 Sep 2016 15:59:04 +0000 (UTC) (envelope-from tz@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 D5344A07; Tue, 13 Sep 2016 15:59:03 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFx3At035328; Tue, 13 Sep 2016 15:59:03 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFx2bJ035325; Tue, 13 Sep 2016 15:59:02 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201609131559.u8DFx2bJ035325@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Tue, 13 Sep 2016 15:59:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422026 - head/devel/rubygem-gitlab_git X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:59:04 -0000 Author: tz Date: Tue Sep 13 15:59:02 2016 New Revision: 422026 URL: https://svnweb.freebsd.org/changeset/ports/422026 Log: devel/rubygem-gitlab_git: Downgrade from 10.4.0 to 10.3.2 The forme upgrade to 10.4.0 breaks the current version of www/gitlab, but the port works fine with 10.3.2. Since only www/gitlab depends on this port, its safe to downgrade it. PR: 211815 Approved by: pi (mentor) Modified: head/devel/rubygem-gitlab_git/Makefile head/devel/rubygem-gitlab_git/distinfo Modified: head/devel/rubygem-gitlab_git/Makefile ============================================================================== --- head/devel/rubygem-gitlab_git/Makefile Tue Sep 13 15:54:36 2016 (r422025) +++ head/devel/rubygem-gitlab_git/Makefile Tue Sep 13 15:59:02 2016 (r422026) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= gitlab_git -PORTVERSION= 10.4.0 +PORTVERSION= 10.3.2 +PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-gitlab_git/distinfo ============================================================================== --- head/devel/rubygem-gitlab_git/distinfo Tue Sep 13 15:54:36 2016 (r422025) +++ head/devel/rubygem-gitlab_git/distinfo Tue Sep 13 15:59:02 2016 (r422026) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469115935 -SHA256 (rubygem/gitlab_git-10.4.0.gem) = d0a7282ecf9e0d80d8d9db347233277207007b449c1b07c5f9e1b6e0880f202a -SIZE (rubygem/gitlab_git-10.4.0.gem) = 26112 +TIMESTAMP = 1471853698 +SHA256 (rubygem/gitlab_git-10.3.2.gem) = c65ba6f930e63cf576a87c494fbf54268a68962a10c76dfbf7416033c96e8502 +SIZE (rubygem/gitlab_git-10.3.2.gem) = 26112 From owner-svn-ports-head@freebsd.org Tue Sep 13 15:59:59 2016 Return-Path: Delivered-To: svn-ports-head@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 1C15BBD91A0; Tue, 13 Sep 2016 15:59:59 +0000 (UTC) (envelope-from tcberner@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 E30CAB09; Tue, 13 Sep 2016 15:59:58 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DFxwvV035469; Tue, 13 Sep 2016 15:59:58 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DFxwGh035468; Tue, 13 Sep 2016 15:59:58 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609131559.u8DFxwGh035468@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 13 Sep 2016 15:59:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422027 - head/audio/simon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 15:59:59 -0000 Author: tcberner Date: Tue Sep 13 15:59:57 2016 New Revision: 422027 URL: https://svnweb.freebsd.org/changeset/ports/422027 Log: audio/simon -- Remove INSTALLS_ICONS and make stage-qa happy * Remove INSTALLS_ICONS * Add dependencies to make stage-qa happy. Reviewed by: rakuco, mat Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D7853 Modified: head/audio/simon/Makefile Modified: head/audio/simon/Makefile ============================================================================== --- head/audio/simon/Makefile Tue Sep 13 15:59:02 2016 (r422026) +++ head/audio/simon/Makefile Tue Sep 13 15:59:57 2016 (r422027) @@ -3,7 +3,7 @@ PORTNAME= simon PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src DIST_SUBDIR= KDE @@ -19,10 +19,11 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib USES= cmake:outsource gettext kde:4 tar:bz2 USE_KDE= kdelibs automoc4 pimlibs -USE_QT4= accessible corelib dbus gui script testlib xml \ +USE_QT4= accessible corelib dbus gui network script sql svg testlib xml \ moc_build qmake_build rcc_build uic_build +USE_XORG= x11 xtst + USE_LDCONFIG= yes -INSTALLS_ICONS= yes CMAKE_ARGS+= -DWITH_OpenCV:BOOL=OFF From owner-svn-ports-head@freebsd.org Tue Sep 13 16:05:46 2016 Return-Path: Delivered-To: svn-ports-head@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 96198BD943B; Tue, 13 Sep 2016 16:05:46 +0000 (UTC) (envelope-from marino@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 658E110C; Tue, 13 Sep 2016 16:05:46 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DG5jS1039091; Tue, 13 Sep 2016 16:05:45 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DG5jAE039090; Tue, 13 Sep 2016 16:05:45 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131605.u8DG5jAE039090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 16:05:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422028 - head/ftp/curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:05:46 -0000 Author: marino Date: Tue Sep 13 16:05:45 2016 New Revision: 422028 URL: https://svnweb.freebsd.org/changeset/ports/422028 Log: ftp/curl: Remove second redundant ports SSL + base GSSAPI check If one tries to use the base gssapi with SSL from ports, gssapi.mk will add an IGNORE entry. Suggested by: mat Modified: head/ftp/curl/Makefile Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Tue Sep 13 15:59:57 2016 (r422027) +++ head/ftp/curl/Makefile Tue Sep 13 16:05:45 2016 (r422028) @@ -149,10 +149,6 @@ IGNORE= only supports TLS-SRP with eith IGNORE= only supports LDAPS with SSL .endif -.if ${PORT_OPTIONS:MGSSAPI_BASE} && ${PORT_OPTIONS:MOPENSSL} && ${SSL_DEFAULT} != base -IGNORE= GSSAPI_BASE is not compatible with OpenSSL from ports. Use other GSSAPI options or OpenSSL from base system -.endif - .if ${SSL_DEFAULT:Mlibressl*} .if ${PORT_OPTIONS:MTLS_SRP} IGNORE= unsupported TLS-SRP in LibreSSL From owner-svn-ports-head@freebsd.org Tue Sep 13 16:11:29 2016 Return-Path: Delivered-To: svn-ports-head@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 68518BD9645; Tue, 13 Sep 2016 16:11:29 +0000 (UTC) (envelope-from amdmi3@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 3AD6D63E; Tue, 13 Sep 2016 16:11:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGBSqQ042675; Tue, 13 Sep 2016 16:11:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGBSs2042674; Tue, 13 Sep 2016 16:11:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131611.u8DGBSs2042674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 16:11:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422029 - head/games/motogt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:11:29 -0000 Author: amdmi3 Date: Tue Sep 13 16:11:28 2016 New Revision: 422029 URL: https://svnweb.freebsd.org/changeset/ports/422029 Log: - Switch to newly supported CC licenses - Switch to USES=localbase Modified: head/games/motogt/Makefile Modified: head/games/motogt/Makefile ============================================================================== --- head/games/motogt/Makefile Tue Sep 13 16:05:45 2016 (r422028) +++ head/games/motogt/Makefile Tue Sep 13 16:11:28 2016 (r422029) @@ -14,20 +14,17 @@ COMMENT= 2D top-viewed motorcycle racing LIB_DEPENDS= libsfml1-system.so:devel/sfml1 \ libpng.so:graphics/png -LICENSE= GPLv2 CCbySA +LICENSE= GPLv2 CC-BY-SA-3.0 LICENSE_COMB= multi -LICENSE_NAME_CCbySA= Creative Commons Attribution-ShareAlike -LICENSE_PERMS_CCbySA= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -LICENSE_FILE_CCbySA= ${WRKSRC}/doc/cc-by-sa.txt +LICENSE_FILE_GPLv20= ${WRKSRC}/doc/gpl.txt +LICENSE_FILE_CC-BY-SA-3.0= ${WRKSRC}/doc/cc-by-sa.txt -USES= zip +USES= localbase zip USE_GL= gl BUILD_WRKSRC= ${WRKSRC}/src MAKEFILE= Makefile.lnx MAKE_JOBS_UNSAFE= yes SUB_FILES= motogt -CXXFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib PLIST_FILES= bin/${PORTNAME} libexec/MotoGT.bin PORTDATA= * From owner-svn-ports-head@freebsd.org Tue Sep 13 16:17:23 2016 Return-Path: Delivered-To: svn-ports-head@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 0DD7BBD970F; Tue, 13 Sep 2016 16:17:23 +0000 (UTC) (envelope-from marino@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 DC60F9A3; Tue, 13 Sep 2016 16:17:22 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGHM1x043002; Tue, 13 Sep 2016 16:17:22 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGHL0i042999; Tue, 13 Sep 2016 16:17:21 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131617.u8DGHL0i042999@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 16:17:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422030 - in head/databases/mysql-connector-c: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:17:23 -0000 Author: marino Date: Tue Sep 13 16:17:21 2016 New Revision: 422030 URL: https://svnweb.freebsd.org/changeset/ports/422030 Log: databases/mysql-connector-c: Fix build for non-base SSL, support LibreSSL Also, SSL is only a build requirement. While here, prevent extract shared libraries from building on DragonFly. Approved by: SSL blanket Added: head/databases/mysql-connector-c/files/patch-libmysql_CMakeLists.txt (contents, props changed) Modified: head/databases/mysql-connector-c/Makefile head/databases/mysql-connector-c/files/patch-cmake_ssl.cmake Modified: head/databases/mysql-connector-c/Makefile ============================================================================== --- head/databases/mysql-connector-c/Makefile Tue Sep 13 16:11:28 2016 (r422029) +++ head/databases/mysql-connector-c/Makefile Tue Sep 13 16:17:21 2016 (r422030) @@ -12,11 +12,8 @@ COMMENT= MySQL database connector for C LICENSE= GPLv2 -USE_OPENSSL= yes -WITH_OPENSSL_PORT=yes -USES= cmake:outsource compiler:features mysql -CMAKE_ARGS+= -DWITH_SSL=system \ - -DOPENSSL_INCLUDE_DIR=${LOCALBASE}/include/openssl +USES= cmake:outsource compiler:features mysql ssl:build +CMAKE_ARGS+= -DOPENSSL_INCLUDE_DIR="${OPENSSLINC}" USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} PLIST_SUB+= PORTVERSION=${PORTVERSION} @@ -27,4 +24,10 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION} CFLAGS+= -march=i586 .endif +.if ${SSL_DEFAULT} == base +CMAKE_ARGS+= -DWITH_SSL="system" +.else +CMAKE_ARGS+= -DWITH_SSL="${OPENSSLBASE}" +.endif + .include Modified: head/databases/mysql-connector-c/files/patch-cmake_ssl.cmake ============================================================================== --- head/databases/mysql-connector-c/files/patch-cmake_ssl.cmake Tue Sep 13 16:11:28 2016 (r422029) +++ head/databases/mysql-connector-c/files/patch-cmake_ssl.cmake Tue Sep 13 16:17:21 2016 (r422030) @@ -1,14 +1,24 @@ --- cmake/ssl.cmake.orig 2015-02-25 21:09:49 UTC +++ cmake/ssl.cmake -@@ -164,9 +164,9 @@ MACRO (MYSQL_CHECK_SSL) - # Verify version number. Version information looks like: - # #define OPENSSL_VERSION_NUMBER 0x1000103fL +@@ -166,17 +166,19 @@ MACRO (MYSQL_CHECK_SSL) # Encoded as MNNFFPPS: major minor fix patch status -- FILE(STRINGS "${OPENSSL_INCLUDE_DIR}/openssl/opensslv.h" -+ FILE(STRINGS "${OPENSSL_INCLUDE_DIR}/opensslv.h" + FILE(STRINGS "${OPENSSL_INCLUDE_DIR}/openssl/opensslv.h" OPENSSL_VERSION_NUMBER - REGEX "^#define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x[0-9].*" -+ REGEX "^#[\t ]define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x[0-9].*" ++ REGEX "define[\t ]+OPENSSL_VERSION_NUMBER[\t ]+0x[0-9].*" ) STRING(REGEX REPLACE "^.*OPENSSL_VERSION_NUMBER[\t ]+0x([0-9]).*$" "\\1" + OPENSSL_MAJOR_VERSION "${OPENSSL_VERSION_NUMBER}" + ) + ++ # LibreSSL is allowed too + IF(OPENSSL_INCLUDE_DIR AND + OPENSSL_LIBRARY AND + CRYPTO_LIBRARY AND +- OPENSSL_MAJOR_VERSION STREQUAL "1" ++ (OPENSSL_MAJOR_VERSION STREQUAL "1" OR ++ OPENSSL_MAJOR_VERSION STREQUAL "2") + ) + SET(OPENSSL_FOUND TRUE) + ELSE() Added: head/databases/mysql-connector-c/files/patch-libmysql_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mysql-connector-c/files/patch-libmysql_CMakeLists.txt Tue Sep 13 16:17:21 2016 (r422030) @@ -0,0 +1,11 @@ +--- libmysql/CMakeLists.txt.orig 2015-02-25 21:09:49 UTC ++++ libmysql/CMakeLists.txt +@@ -254,7 +254,7 @@ IF(NOT DISABLE_SHARED) + COMPONENT SharedLibraries) + IF(UNIX) + # libtool compatability +- IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE) ++ IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD|DragonFly" OR APPLE) + SET(OS_SHARED_LIB_VERSION "${SHARED_LIB_MAJOR_VERSION}") + ELSE() + SET(OS_SHARED_LIB_VERSION From owner-svn-ports-head@freebsd.org Tue Sep 13 16:36:33 2016 Return-Path: Delivered-To: svn-ports-head@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 7A998BD9CBB; Tue, 13 Sep 2016 16:36:33 +0000 (UTC) (envelope-from amdmi3@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 4D715BCA; Tue, 13 Sep 2016 16:36:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGaWJq051355; Tue, 13 Sep 2016 16:36:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGaWn0051353; Tue, 13 Sep 2016 16:36:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131636.u8DGaWn0051353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 16:36:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422032 - head/devel/py-rebulk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:36:33 -0000 Author: amdmi3 Date: Tue Sep 13 16:36:32 2016 New Revision: 422032 URL: https://svnweb.freebsd.org/changeset/ports/422032 Log: - Update to 0.7.4 PR: 212644 Submitted by: andrej@ebert.su (maintainer) Modified: head/devel/py-rebulk/Makefile head/devel/py-rebulk/distinfo Modified: head/devel/py-rebulk/Makefile ============================================================================== --- head/devel/py-rebulk/Makefile Tue Sep 13 16:35:29 2016 (r422031) +++ head/devel/py-rebulk/Makefile Tue Sep 13 16:36:32 2016 (r422032) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rebulk -PORTVERSION= 0.7.2 +PORTVERSION= 0.7.4 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,6 +18,8 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyt USES= python USE_PYTHON= autoplist distutils +NO_ARCH= yes + USE_GITHUB= yes GH_ACCOUNT= Toilal Modified: head/devel/py-rebulk/distinfo ============================================================================== --- head/devel/py-rebulk/distinfo Tue Sep 13 16:35:29 2016 (r422031) +++ head/devel/py-rebulk/distinfo Tue Sep 13 16:36:32 2016 (r422032) @@ -1,2 +1,3 @@ -SHA256 (Toilal-rebulk-0.7.2_GH0.tar.gz) = ffbda3562a3234318a9972084564501f9a4654df08ef2735a47d16b49e1ce5c4 -SIZE (Toilal-rebulk-0.7.2_GH0.tar.gz) = 247011 +TIMESTAMP = 1473752948 +SHA256 (Toilal-rebulk-0.7.4_GH0.tar.gz) = 409228faa67314a8e24f13aa177b38631ba2dec6c3f77821fca3e054ceb8a008 +SIZE (Toilal-rebulk-0.7.4_GH0.tar.gz) = 247671 From owner-svn-ports-head@freebsd.org Tue Sep 13 16:40:46 2016 Return-Path: Delivered-To: svn-ports-head@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 14AB0BD9D3D; Tue, 13 Sep 2016 16:40:46 +0000 (UTC) (envelope-from marino@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 D9DCDD51; Tue, 13 Sep 2016 16:40:45 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGejCq051618; Tue, 13 Sep 2016 16:40:45 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGejZg051617; Tue, 13 Sep 2016 16:40:45 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131640.u8DGejZg051617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 16:40:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422033 - head/net-mgmt/nsca-ng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:40:46 -0000 Author: marino Date: Tue Sep 13 16:40:44 2016 New Revision: 422033 URL: https://svnweb.freebsd.org/changeset/ports/422033 Log: net-mgmt/nsca-ng(-client): Configure any SSL base, IGNORE LibreSSL These ports currently utilize PSK which is not supported by LibreSSL, so detect that SSL_DEFAULT and set IGNORE accordingly. The obsolete USE_OPENSSL_PORT logic was also removed. Approved by: SSL blanket Modified: head/net-mgmt/nsca-ng/Makefile Modified: head/net-mgmt/nsca-ng/Makefile ============================================================================== --- head/net-mgmt/nsca-ng/Makefile Tue Sep 13 16:36:32 2016 (r422032) +++ head/net-mgmt/nsca-ng/Makefile Tue Sep 13 16:40:44 2016 (r422033) @@ -20,23 +20,23 @@ LIB_DEPENDS+= libconfuse.so:devel/libcon CONFLICTS?= nsca-2.* nsca27-2.* +USES= ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var/spool/nagios -USE_OPENSSL= yes +CPPFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} .if !defined(PKGNAMESUFFIX) USE_RC_SUBR= nsca-ng CONFIGURE_ARGS+= --enable-server .endif -PORTDOCS= NEWS COPYING README PROTOCOL TODO +PORTDOCS= NEWS COPYING README PROTOCOL TODO -.include +.include -.if ${OSVERSION} < 1000000 -WITH_OPENSSL_PORT= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Requires PSK which is unsupported by the selected LibreSSL .endif post-install: @@ -61,4 +61,4 @@ post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 16:41:10 2016 Return-Path: Delivered-To: svn-ports-head@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 08BB8BD9E36; Tue, 13 Sep 2016 16:41:10 +0000 (UTC) (envelope-from amdmi3@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 C108BF2F; Tue, 13 Sep 2016 16:41:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGf9t9051755; Tue, 13 Sep 2016 16:41:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGf8Ej051753; Tue, 13 Sep 2016 16:41:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131641.u8DGf8Ej051753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 16:41:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422034 - in head/dns/noip: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:41:10 -0000 Author: amdmi3 Date: Tue Sep 13 16:41:08 2016 New Revision: 422034 URL: https://svnweb.freebsd.org/changeset/ports/422034 Log: - Make pkg-message more useful - While here, fix license and remove unneeded PKGMESSAGE line (PKGMESSAGE is set by SUB_FILES) PR: 212637 Submitted by: dalescott@shaw.ca Approved by: sthalik@tehran.lain.pl (maintainer) Modified: head/dns/noip/Makefile head/dns/noip/files/pkg-message.in Modified: head/dns/noip/Makefile ============================================================================== --- head/dns/noip/Makefile Tue Sep 13 16:40:44 2016 (r422033) +++ head/dns/noip/Makefile Tue Sep 13 16:41:08 2016 (r422034) @@ -3,7 +3,7 @@ PORTNAME= noip PORTVERSION= 2.1.9 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= dns MASTER_SITES= http://www.no-ip.com/client/linux/ \ LOCAL/ehaupt @@ -11,17 +11,17 @@ MASTER_SITES= http://www.no-ip.com/clien MAINTAINER= sthalik@tehran.lain.pl COMMENT= No-IP.com's dynamic DNS update client -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING ALL_TARGET= noip2 SUB_FILES= pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message USE_RC_SUBR= noip USERS= noip GROUPS= noip -PLIST_SUB+= USER="${USERS}" +PLIST_SUB= USER="${USERS}" OPTIONS_DEFINE= DOCS Modified: head/dns/noip/files/pkg-message.in ============================================================================== --- head/dns/noip/files/pkg-message.in Tue Sep 13 16:40:44 2016 (r422033) +++ head/dns/noip/files/pkg-message.in Tue Sep 13 16:41:08 2016 (r422034) @@ -1,12 +1,30 @@ ########################################################### -You need to generate the noip config file 'no-ip2.conf' in -%%PREFIX%%/etc/no-ip2.conf. To do this automatically, run: +You must have a registered host with No-IP (www.noip.com) +to use the noip Dynamic DNS Update Client (DUC). - make conf +You must also create the noip config file +/usr/local/etc/no-ip2.conf before using noip. To create the +configuration file, run as root: -You need to register with www.no-ip.com to use this port. +/usr/local/bin/noip2 -C + +You will be prompted to enter the Ethernet port that will be +associated with the host, your No-IP account name and +password, and the hostname you have registered with No-IP. +Your No-IP username and password are not stored, the +config file contains a unique key for the DUC to access the +No-IP DDNS service and only root has read permission. + +If you are compiling from source using the ports tree, you +can also “make conf” to create the config file. + +To run noip automatically at boot, add the following line +to /etc/rc.conf -You also need to add the following line to your -/etc/rc.conf or /etc/rc.conf.local file: noip_enable="YES" + +Refer to the following for more information: + +/usr/local/bin/noip2 --help +/usr/local/share/doc/noip/README.FIRST ########################################################### From owner-svn-ports-head@freebsd.org Tue Sep 13 16:42:35 2016 Return-Path: Delivered-To: svn-ports-head@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 485CDBD9E9E; Tue, 13 Sep 2016 16:42:35 +0000 (UTC) (envelope-from amdmi3@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 183D01118; Tue, 13 Sep 2016 16:42:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGgYst055215; Tue, 13 Sep 2016 16:42:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGgXmP055211; Tue, 13 Sep 2016 16:42:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131642.u8DGgXmP055211@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 16:42:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422035 - head/mail/postfixadmin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:42:35 -0000 Author: amdmi3 Date: Tue Sep 13 16:42:33 2016 New Revision: 422035 URL: https://svnweb.freebsd.org/changeset/ports/422035 Log: - Update to 3.0 - While here, fix LICENSE PR: 212636 Submitted by: ports.maintainer@evilphi.com (maintainer) Modified: head/mail/postfixadmin/Makefile head/mail/postfixadmin/distinfo head/mail/postfixadmin/pkg-descr head/mail/postfixadmin/pkg-plist Modified: head/mail/postfixadmin/Makefile ============================================================================== --- head/mail/postfixadmin/Makefile Tue Sep 13 16:41:08 2016 (r422034) +++ head/mail/postfixadmin/Makefile Tue Sep 13 16:42:33 2016 (r422035) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= postfixadmin -PORTVERSION= 2.93 +PORTVERSION= 3.0 CATEGORIES= mail www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= ports.maintainer@evilphi.com COMMENT= PHP web-based management tool for Postfix virtual domains and users -LICENSE= GPLv2 +LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/GPL-LICENSE.TXT RUN_DEPENDS+= p5-DBI>=1.634:databases/p5-DBI \ @@ -19,7 +19,7 @@ RUN_DEPENDS+= p5-DBI>=1.634:databases/p5 p5-Mail-Sender>=0.7.04:mail/p5-Mail-Sender \ p5-MIME-EncWords>=0.040:mail/p5-MIME-EncWords -USES= cpe perl5 shebangfix +USES= cpe perl5 shebangfix php CPE_VENDOR= postfix_admin_project CPE_PRODUCT= postfix_admin @@ -30,21 +30,17 @@ SUB_FILES+= pkg-message PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} OPTIONS_DEFINE= DOCS -OPTIONS_SINGLE= DB -OPTIONS_SINGLE_DB= MYSQL MYSQLI PGSQL -MYSQLI_DESC= MySQL 4.1+ back-end (use mysqli PHP extension) - +OPTIONS_MULTI= DB +OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_DEFAULT= PGSQL USE_PERL5= run -USE_PHP= pcre session mbstring spl xmlrpc +USE_PHP= mbstring pcre session spl xmlrpc -MYSQL_USE= php=mysql -MYSQLI_USE= php=mysqli +MYSQL_USE= php=mysqli PGSQL_USE= php=pgsql - -WANT_PHP_WEB= yes +SQLITE_USE= php=sqlite3 do-install: @${MKDIR} ${STAGEDIR}${WWWDIR} Modified: head/mail/postfixadmin/distinfo ============================================================================== --- head/mail/postfixadmin/distinfo Tue Sep 13 16:41:08 2016 (r422034) +++ head/mail/postfixadmin/distinfo Tue Sep 13 16:42:33 2016 (r422035) @@ -1,2 +1,3 @@ -SHA256 (postfixadmin-2.93.tar.gz) = cc1ec188ea90254d8365081171dbbf2bfdf2a020bc943725b5a957de34bc1769 -SIZE (postfixadmin-2.93.tar.gz) = 1269907 +TIMESTAMP = 1473715952 +SHA256 (postfixadmin-3.0.tar.gz) = 1f07a0003ad2cb2afaecc3d6b0399c3afd38744c43cef504552e687393263392 +SIZE (postfixadmin-3.0.tar.gz) = 1303883 Modified: head/mail/postfixadmin/pkg-descr ============================================================================== --- head/mail/postfixadmin/pkg-descr Tue Sep 13 16:41:08 2016 (r422034) +++ head/mail/postfixadmin/pkg-descr Tue Sep 13 16:42:33 2016 (r422035) @@ -13,4 +13,4 @@ Postfix Admin features: - Backup MX; - Packaged with over 25 languages. -WWW: http://www.postfixadmin.org +WWW: http://www.postfixadmin.org/ Modified: head/mail/postfixadmin/pkg-plist ============================================================================== --- head/mail/postfixadmin/pkg-plist Tue Sep 13 16:41:08 2016 (r422034) +++ head/mail/postfixadmin/pkg-plist Tue Sep 13 16:42:33 2016 (r422035) @@ -160,6 +160,7 @@ %%WWWDIR%%/languages/nn.lang %%WWWDIR%%/languages/pl.lang %%WWWDIR%%/languages/pt-br.lang +%%WWWDIR%%/languages/ro.lang %%WWWDIR%%/languages/ru.lang %%WWWDIR%%/languages/sk.lang %%WWWDIR%%/languages/sl.lang @@ -196,6 +197,7 @@ %%WWWDIR%%/setup.php %%WWWDIR%%/smarty.inc.php %%WWWDIR%%/smarty/COPYING.lib +%%WWWDIR%%/smarty/libs/Autoloader.php %%WWWDIR%%/smarty/libs/Smarty.class.php %%WWWDIR%%/smarty/libs/SmartyBC.class.php %%WWWDIR%%/smarty/libs/debug.tpl @@ -250,7 +252,7 @@ %%WWWDIR%%/smarty/libs/sysplugins/smarty_cacheresource.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_cacheresource_custom.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_cacheresource_keyvaluestore.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_config_source.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_data.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_cacheresource_file.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_append.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_assign.php @@ -273,10 +275,12 @@ %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_ldelim.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_nocache.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_block_plugin.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_foreachsection.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_function_plugin.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_modifier.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_object_block_function.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_object_function.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_php.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_print_expression.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_registered_block.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_private_registered_function.php @@ -284,19 +288,69 @@ %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_rdelim.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_section.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_setfilter.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_shared_inheritance.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compile_while.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_compilebase.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_config.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_config_file_compiler.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_configfilelexer.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_configfileparser.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_data.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_debug.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_filter_handler.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_function_call_handler.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_get_include_path.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_extension_clear.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_extension_handler.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_addautoloadfilters.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_adddefaultmodifiers.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_append.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_appendbyref.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_assignbyref.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_assignglobal.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_clearallassign.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_clearallcache.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_clearassign.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_clearcache.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_clearcompiledtemplate.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_clearconfig.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_compileallconfig.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_compilealltemplates.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_configload.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_createdata.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_getautoloadfilters.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_getconfigvars.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_getdebugtemplate.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_getdefaultmodifiers.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_getregisteredobject.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_getstreamvariable.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_gettags.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_gettemplatevars.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_loadfilter.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_loadplugin.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_mustcompile.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registercacheresource.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerclass.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerdefaultconfighandler.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerfilter.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerobject.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerplugin.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_registerresource.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_setautoloadfilters.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_setdebugtemplate.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_setdefaultmodifiers.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_unloadfilter.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_unregistercacheresource.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_unregisterfilter.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_unregisterobject.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_unregisterplugin.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_method_unregisterresource.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_nocache_insert.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree_code.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree_dq.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree_dqcontent.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree_tag.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree_template.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_parsetree_text.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_resource_eval.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_resource_extends.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_resource_file.php @@ -304,19 +358,42 @@ %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_resource_registered.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_resource_stream.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_resource_string.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_cachemodify.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_codeframe.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_filterhandler.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_foreach.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_getincludepath.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_hhvm.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_subtemplate.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_tplfunction.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_updatescope.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_validatecompiled.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_var.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_runtime_writefile.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_smartytemplatecompiler.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_template.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_templatebase.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_templatelexer.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_templateparser.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_utility.php -%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_write_file.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_testinstall.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_internal_undefined.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_resource.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_resource_custom.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_resource_recompiled.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_resource_uncompiled.php %%WWWDIR%%/smarty/libs/sysplugins/smarty_security.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_template_cached.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_template_compiled.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_template_config.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_template_resource_base.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_template_source.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_undefined_variable.php +%%WWWDIR%%/smarty/libs/sysplugins/smarty_variable.php +%%WWWDIR%%/smarty/libs/sysplugins/smartycompilerexception.php +%%WWWDIR%%/smarty/libs/sysplugins/smartyexception.php %%WWWDIR%%/smarty/smarty_version %%WWWDIR%%/templates/backupwarning.tpl %%WWWDIR%%/templates/broadcast-message.tpl From owner-svn-ports-head@freebsd.org Tue Sep 13 16:45:00 2016 Return-Path: Delivered-To: svn-ports-head@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 A0534BD9F52; Tue, 13 Sep 2016 16:45:00 +0000 (UTC) (envelope-from amdmi3@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 6E26F1242; Tue, 13 Sep 2016 16:45:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGixYp055404; Tue, 13 Sep 2016 16:44:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGixXn055403; Tue, 13 Sep 2016 16:44:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131644.u8DGixXn055403@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 16:44:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422036 - head/www/phpsysinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:45:00 -0000 Author: amdmi3 Date: Tue Sep 13 16:44:59 2016 New Revision: 422036 URL: https://svnweb.freebsd.org/changeset/ports/422036 Log: - Remove bogus BROKEN_powerpc64 [1] - Update php depends PR: 212632 [1] Submitted by: demik+freebsd@lostwave.net Approved by: portmgr blanket Modified: head/www/phpsysinfo/Makefile Modified: head/www/phpsysinfo/Makefile ============================================================================== --- head/www/phpsysinfo/Makefile Tue Sep 13 16:42:33 2016 (r422035) +++ head/www/phpsysinfo/Makefile Tue Sep 13 16:44:59 2016 (r422036) @@ -12,22 +12,19 @@ COMMENT= PHP script for displaying syste LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= Does not build - USE_GITHUB= yes -USES= shebangfix +USES= php:web shebangfix SHEBANG_FILES= tools/check.sh NO_BUILD= yes USE_PHP= dom pcre xml simplexml mbstring -WANT_PHP_WEB= yes SUB_FILES= pkg-message PLIST_SUB= NOBINMODE="${NOBINMODE}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" do-install: - ${MKDIR} ${STAGEDIR}${WWWDIR} - cd ${WRKSRC}; ${FIND} . \! -name .travis.yml \ + @${MKDIR} ${STAGEDIR}${WWWDIR} + cd ${WRKSRC} && ${FIND} . \! -name .travis.yml \ | ${CPIO} -pdm ${STAGEDIR}${WWWDIR} .include From owner-svn-ports-head@freebsd.org Tue Sep 13 16:49:00 2016 Return-Path: Delivered-To: svn-ports-head@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 E15E4BD90A2; Tue, 13 Sep 2016 16:49:00 +0000 (UTC) (envelope-from amdmi3@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 AEF52156E; Tue, 13 Sep 2016 16:49:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DGmxNl055699; Tue, 13 Sep 2016 16:48:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DGmxVb055698; Tue, 13 Sep 2016 16:48:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131648.u8DGmxVb055698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 16:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422037 - head/net/nusoap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 16:49:01 -0000 Author: amdmi3 Date: Tue Sep 13 16:48:59 2016 New Revision: 422037 URL: https://svnweb.freebsd.org/changeset/ports/422037 Log: - Add LICENSE - Add NO_ARCH - Add missing php depends - Switch to options helpers Deleted: head/net/nusoap/pkg-plist Modified: head/net/nusoap/Makefile Modified: head/net/nusoap/Makefile ============================================================================== --- head/net/nusoap/Makefile Tue Sep 13 16:44:59 2016 (r422036) +++ head/net/nusoap/Makefile Tue Sep 13 16:48:59 2016 (r422037) @@ -9,19 +9,25 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= SOAP Toolkit for PHP -BROKEN_powerpc64= Does not build +LICENSE= LGPL21+ -USES= zip +USES= php zip +USE_PHP= curl zlib xml NO_BUILD= yes +NO_ARCH= yes NO_WRKSUBDIR= yes -USE_PHP= curl zlib xml -.include +PORTDATA= * +PORTEXAMPLES= * + +OPTIONS_DEFINE= EXAMPLES do-install: - ${MKDIR} ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} ${CP} ${WRKSRC}/lib/* ${STAGEDIR}${DATADIR} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${CP} ${WRKSRC}/samples/* ${STAGEDIR}${EXAMPLESDIR} -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 17:11:28 2016 Return-Path: Delivered-To: svn-ports-head@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 09DB8BD9A35; Tue, 13 Sep 2016 17:11:28 +0000 (UTC) (envelope-from amdmi3@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 CB5A276D; Tue, 13 Sep 2016 17:11:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHBQec065517; Tue, 13 Sep 2016 17:11:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHBQKw065516; Tue, 13 Sep 2016 17:11:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131711.u8DHBQKw065516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:11:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422038 - head/irc/bitlbee X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:11:28 -0000 Author: amdmi3 Date: Tue Sep 13 17:11:26 2016 New Revision: 422038 URL: https://svnweb.freebsd.org/changeset/ports/422038 Log: - Fix LICENSE - Add LICENSE_FILE - Switch to options helpers Approved by: portmgr blanket Modified: head/irc/bitlbee/Makefile Modified: head/irc/bitlbee/Makefile ============================================================================== --- head/irc/bitlbee/Makefile Tue Sep 13 16:48:59 2016 (r422037) +++ head/irc/bitlbee/Makefile Tue Sep 13 17:11:26 2016 (r422038) @@ -9,7 +9,8 @@ MASTER_SITES= http://get.bitlbee.org/src MAINTAINER= garga@FreeBSD.org COMMENT= IRC to other chat networks gateway -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= xmlto:textproc/xmlto \ xsltproc:textproc/libxslt @@ -75,8 +76,6 @@ YAHOO_CONFIGURE_OFF= --yahoo=0 USERS= bitlbee GROUPS= bitlbee -.include - post-patch: @${REINPLACE_CMD} -e '/^install:/ s/$$/ install-dev/' \ ${WRKSRC}/Makefile @@ -89,20 +88,20 @@ post-patch: ${WRKSRC}/doc/bitlbee.8 post-install: -.if ${PORT_OPTIONS:MSKYPE} + @${MKDIR} ${STAGEDIR}${ETCDIR} + +post-install-SKYPE-on: ${MV} ${STAGEDIR}${PREFIX}/etc/skyped/skyped.conf \ ${STAGEDIR}${PREFIX}/etc/skyped/skyped.conf.sample ${MV} ${STAGEDIR}${PREFIX}/etc/skyped/skyped.cnf \ ${STAGEDIR}${PREFIX}/etc/skyped/skyped.cnf.sample -.endif - ${MKDIR} ${STAGEDIR}${ETCDIR} -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S@^@${WRKSRC}/doc/@} ${STAGEDIR}${DOCSDIR} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${PORTEXAMPLES:S@^@${WRKSRC}/@} ${STAGEDIR}${EXAMPLESDIR} -.endif .include From owner-svn-ports-head@freebsd.org Tue Sep 13 17:11:37 2016 Return-Path: Delivered-To: svn-ports-head@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 A4C64BD9A69; Tue, 13 Sep 2016 17:11:37 +0000 (UTC) (envelope-from amdmi3@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 751A37AA; Tue, 13 Sep 2016 17:11:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHBaDf065607; Tue, 13 Sep 2016 17:11:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHBa4D065606; Tue, 13 Sep 2016 17:11:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131711.u8DHBa4D065606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:11:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422039 - head/graphics/blender X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:11:37 -0000 Author: amdmi3 Date: Tue Sep 13 17:11:36 2016 New Revision: 422039 URL: https://svnweb.freebsd.org/changeset/ports/422039 Log: - Fix LICENSE - Add LICENSE_FILE Approved by: portmgr blanket Modified: head/graphics/blender/Makefile Modified: head/graphics/blender/Makefile ============================================================================== --- head/graphics/blender/Makefile Tue Sep 13 17:11:26 2016 (r422038) +++ head/graphics/blender/Makefile Tue Sep 13 17:11:36 2016 (r422039) @@ -11,7 +11,8 @@ MASTER_SITES= http://download.blender.or MAINTAINER= mva@FreeBSD.org COMMENT= 3D modeling/rendering/animation/gaming package -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/doc/license/GPL-license.txt LIB_DEPENDS= libpng.so:graphics/png \ libfreetype.so:print/freetype2 \ From owner-svn-ports-head@freebsd.org Tue Sep 13 17:11:56 2016 Return-Path: Delivered-To: svn-ports-head@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 6894BBD9AC5; Tue, 13 Sep 2016 17:11:56 +0000 (UTC) (envelope-from jkim@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 0763191D; Tue, 13 Sep 2016 17:11:55 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHBtG6066381; Tue, 13 Sep 2016 17:11:55 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHBtOF066380; Tue, 13 Sep 2016 17:11:55 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609131711.u8DHBtOF066380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 13 Sep 2016 17:11:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422040 - head/emulators/virtualbox-ose-additions X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:11:56 -0000 Author: jkim Date: Tue Sep 13 17:11:55 2016 New Revision: 422040 URL: https://svnweb.freebsd.org/changeset/ports/422040 Log: Bump PORTREVISION for r421979. Although we usually do not update it for non-default option changes, some users may benefit from it. Requested by: mat Modified: head/emulators/virtualbox-ose-additions/Makefile Modified: head/emulators/virtualbox-ose-additions/Makefile ============================================================================== --- head/emulators/virtualbox-ose-additions/Makefile Tue Sep 13 17:11:36 2016 (r422039) +++ head/emulators/virtualbox-ose-additions/Makefile Tue Sep 13 17:11:55 2016 (r422040) @@ -3,6 +3,7 @@ PORTNAME= virtualbox-ose PORTVERSION= 5.1.6 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ PKGNAMESUFFIX= -additions From owner-svn-ports-head@freebsd.org Tue Sep 13 17:17:28 2016 Return-Path: Delivered-To: svn-ports-head@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 A05FFBD9C4D; Tue, 13 Sep 2016 17:17:28 +0000 (UTC) (envelope-from marino@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 7332DC50; Tue, 13 Sep 2016 17:17:28 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHHRP8067255; Tue, 13 Sep 2016 17:17:27 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHHR8j067254; Tue, 13 Sep 2016 17:17:27 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131717.u8DHHR8j067254@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 17:17:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422041 - head/security/hydra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:17:28 -0000 Author: marino Date: Tue Sep 13 17:17:27 2016 New Revision: 422041 URL: https://svnweb.freebsd.org/changeset/ports/422041 Log: security/hydra: Configure for any SSL base and IGNORE LibreSSL Several symbols including RSA_get0_key are unreferenced while linking with LibreSSL so IGNORE this port if SSL_DEFAULT matches "libressl". Approved by: SSL blanket Modified: head/security/hydra/Makefile Modified: head/security/hydra/Makefile ============================================================================== --- head/security/hydra/Makefile Tue Sep 13 17:11:55 2016 (r422040) +++ head/security/hydra/Makefile Tue Sep 13 17:17:27 2016 (r422041) @@ -23,6 +23,8 @@ PLIST_FILES= bin/hydra bin/pw-inspector man/man1/hydra.1.gz man/man1/pw-inspector.1.gz GNU_CONFIGURE= yes USES= gmake localbase ssl +CONFIGURE_ARGS= --with-ssl=${OPENSSLINC} \ + --with-ssl-lib=${OPENSSLLIB} OPTIONS_DEFINE= FIREBIRD SSH SVN X11 OPTIONS_DEFAULT=SSH @@ -36,6 +38,12 @@ X11_LIB_DEPENDS= libfontconfig.so:x11-fo X11_USE= gnome=atk,cairo,gdkpixbuf2,glib20,gtk20,pango X11_PLIST_FILES= bin/xhydra man/man1/xhydra.1.gz +.include + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Detected LibreSSL (missing RSA_get0_key and others) +.endif + post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|CC=gcc||; s|-O3|${CFLAGS}|;' \ @@ -52,4 +60,4 @@ post-install-X11-on: ${INSTALL_PROGRAM} ${WRKSRC}/hydra-gtk/src/xhydra ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/xhydra.1 ${STAGEDIR}${MANPREFIX}/man/man1 -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 17:37:26 2016 Return-Path: Delivered-To: svn-ports-head@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 D1E29BD9336; Tue, 13 Sep 2016 17:37:26 +0000 (UTC) (envelope-from marino@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 A49EBC13; Tue, 13 Sep 2016 17:37:26 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHbPhf074894; Tue, 13 Sep 2016 17:37:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHbPaF074893; Tue, 13 Sep 2016 17:37:25 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131737.u8DHbPaF074893@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 17:37:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422042 - head/security/openssl_tpm_engine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:37:26 -0000 Author: marino Date: Tue Sep 13 17:37:25 2016 New Revision: 422042 URL: https://svnweb.freebsd.org/changeset/ports/422042 Log: security/openssl_tpm_engine: Document SSL requirement, IGNORE LIbreSSL It appears that the RAND_METHOD structure is not present in LibreSSL so that SSL_DEFAULT=libressl* is incompatible with this port. SSL flags have been added to support non-base OpenSSL libraries though. Approved by: SSL blanket Modified: head/security/openssl_tpm_engine/Makefile Modified: head/security/openssl_tpm_engine/Makefile ============================================================================== --- head/security/openssl_tpm_engine/Makefile Tue Sep 13 17:17:27 2016 (r422041) +++ head/security/openssl_tpm_engine/Makefile Tue Sep 13 17:37:25 2016 (r422042) @@ -16,11 +16,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/sbin/tcsd:security/trousers LIB_DEPENDS= libtspi.so:security/trousers -USES= autoreconf gmake libtool +USES= autoreconf gmake libtool ssl USE_LDCONFIG= yes GNU_CONFIGURE= yes -LDFLAGS+= -L${LOCALBASE}/lib -lcrypto -CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${OPENSSLLIB} -lcrypto -L${LOCALBASE}/lib +CFLAGS+= -I${OPENSSLINC} -I${LOCALBASE}/include SUB_FILES= pkg-message PLIST_FILES= bin/create_tpm_key \ lib/openssl/engines/libtpm.so \ @@ -31,6 +31,12 @@ PORTEXAMPLES= openssl.cnf.sample OPTIONS_DEFINE= EXAMPLES +.include + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Detected LibreSSL (RAND_METHOD structure unsupported) +.endif + post-patch: @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' \ ${WRKSRC}/openssl.cnf.sample @@ -39,4 +45,4 @@ post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/openssl.cnf.sample ${STAGEDIR}${EXAMPLESDIR} -.include +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 17:43:02 2016 Return-Path: Delivered-To: svn-ports-head@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 C643BBD960D; Tue, 13 Sep 2016 17:43:02 +0000 (UTC) (envelope-from nemysis@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 96D0919A; Tue, 13 Sep 2016 17:43:02 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHh1u6078476; Tue, 13 Sep 2016 17:43:01 GMT (envelope-from nemysis@FreeBSD.org) Received: (from nemysis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHh1Pp078475; Tue, 13 Sep 2016 17:43:01 GMT (envelope-from nemysis@FreeBSD.org) Message-Id: <201609131743.u8DHh1Pp078475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nemysis set sender to nemysis@FreeBSD.org using -f From: Rusmir Dusko Date: Tue, 13 Sep 2016 17:43:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422043 - head/security/zenmap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:43:02 -0000 Author: nemysis Date: Tue Sep 13 17:43:01 2016 New Revision: 422043 URL: https://svnweb.freebsd.org/changeset/ports/422043 Log: - This port are no longer used or cared for. Modified: head/security/zenmap/Makefile Modified: head/security/zenmap/Makefile ============================================================================== --- head/security/zenmap/Makefile Tue Sep 13 17:37:25 2016 (r422042) +++ head/security/zenmap/Makefile Tue Sep 13 17:43:01 2016 (r422043) @@ -12,7 +12,7 @@ DISTFILES= nmap-${PORTVERSION}${EXTRACT_ ${PORTNAME}.png:icons EXTRACT_ONLY= nmap-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= nemysis@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= GUI frontend for the Nmap scanning utility LICENSE= GPLv2 From owner-svn-ports-head@freebsd.org Tue Sep 13 17:45:49 2016 Return-Path: Delivered-To: svn-ports-head@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 60597BD96E3; Tue, 13 Sep 2016 17:45:49 +0000 (UTC) (envelope-from amdmi3@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 32FAB36C; Tue, 13 Sep 2016 17:45:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHjmpL078705; Tue, 13 Sep 2016 17:45:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHjmgq078703; Tue, 13 Sep 2016 17:45:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131745.u8DHjmgq078703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:45:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422044 - head/devel/py-botocore X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:45:49 -0000 Author: amdmi3 Date: Tue Sep 13 17:45:48 2016 New Revision: 422044 URL: https://svnweb.freebsd.org/changeset/ports/422044 Log: - Update to 1.4.53 - While here, fix license PR: 212621 Submitted by: bradleythughes@fastmail.fm Approved by: alexey@renatasystems.org (maintainer) Modified: head/devel/py-botocore/Makefile head/devel/py-botocore/distinfo Modified: head/devel/py-botocore/Makefile ============================================================================== --- head/devel/py-botocore/Makefile Tue Sep 13 17:43:01 2016 (r422043) +++ head/devel/py-botocore/Makefile Tue Sep 13 17:45:48 2016 (r422044) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= botocore -PORTVERSION= 1.4.46 +PORTVERSION= 1.4.53 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= alexey@renatasystems.org COMMENT= Low-level, core functionality of boto 3 -LICENSE= MIT +LICENSE= APACHE20 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}jmespath>=0.7.1:devel/py-jmespath \ Modified: head/devel/py-botocore/distinfo ============================================================================== --- head/devel/py-botocore/distinfo Tue Sep 13 17:43:01 2016 (r422043) +++ head/devel/py-botocore/distinfo Tue Sep 13 17:45:48 2016 (r422044) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471297318 -SHA256 (botocore-1.4.46.tar.gz) = 844dbd090b4127678c25342635485c87d86bca4a4f8a7c2295d715f7c830700c -SIZE (botocore-1.4.46.tar.gz) = 2713844 +TIMESTAMP = 1473665049 +SHA256 (botocore-1.4.53.tar.gz) = 7d6c96999e57145fb0b0c9534c3c7bfa9dfd30a58a4d9ccaa89f734211d987ad +SIZE (botocore-1.4.53.tar.gz) = 2772347 From owner-svn-ports-head@freebsd.org Tue Sep 13 17:46:03 2016 Return-Path: Delivered-To: svn-ports-head@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 5BE8EBD970F; Tue, 13 Sep 2016 17:46:03 +0000 (UTC) (envelope-from amdmi3@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 2C327664; Tue, 13 Sep 2016 17:46:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHk2LH078842; Tue, 13 Sep 2016 17:46:02 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHk28r078840; Tue, 13 Sep 2016 17:46:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131746.u8DHk28r078840@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:46:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422045 - head/devel/awscli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:46:03 -0000 Author: amdmi3 Date: Tue Sep 13 17:46:02 2016 New Revision: 422045 URL: https://svnweb.freebsd.org/changeset/ports/422045 Log: - Update to 1.10.63 PR: 212622 Submitted by: bradleythughes@fastmail.fm Approved by: alexey@renatasystems.org (maintainer) Modified: head/devel/awscli/Makefile head/devel/awscli/distinfo Modified: head/devel/awscli/Makefile ============================================================================== --- head/devel/awscli/Makefile Tue Sep 13 17:45:48 2016 (r422044) +++ head/devel/awscli/Makefile Tue Sep 13 17:46:02 2016 (r422045) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awscli -PORTVERSION= 1.10.56 +PORTVERSION= 1.10.63 CATEGORIES= devel MASTER_SITES= CHEESESHOP @@ -11,7 +11,7 @@ COMMENT= Universal Command Line Interfac LICENSE= APACHE20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.4.46:devel/py-botocore \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.4.53:devel/py-botocore \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:devel/py-colorama \ ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.1.0:net/py-s3transfer \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils \ Modified: head/devel/awscli/distinfo ============================================================================== --- head/devel/awscli/distinfo Tue Sep 13 17:45:48 2016 (r422044) +++ head/devel/awscli/distinfo Tue Sep 13 17:46:02 2016 (r422045) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471285573 -SHA256 (awscli-1.10.56.tar.gz) = adbc8812e75f0be53c4a414aeb181be6838befcd2869427074e116cf0cc6f7a2 -SIZE (awscli-1.10.56.tar.gz) = 479420 +TIMESTAMP = 1473665049 +SHA256 (awscli-1.10.63.tar.gz) = a50c242a90343e14fc5c74b0f84959fe35c76e316ee205f53247a6aecec55141 +SIZE (awscli-1.10.63.tar.gz) = 488426 From owner-svn-ports-head@freebsd.org Tue Sep 13 17:50:32 2016 Return-Path: Delivered-To: svn-ports-head@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 9FE1BBD97CE; Tue, 13 Sep 2016 17:50:32 +0000 (UTC) (envelope-from amdmi3@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 7118A838; Tue, 13 Sep 2016 17:50:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHoVJi079122; Tue, 13 Sep 2016 17:50:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHoVR5079120; Tue, 13 Sep 2016 17:50:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131750.u8DHoVR5079120@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:50:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422046 - head/biology/diamond X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:50:32 -0000 Author: amdmi3 Date: Tue Sep 13 17:50:31 2016 New Revision: 422046 URL: https://svnweb.freebsd.org/changeset/ports/422046 Log: - Update to 0.8.22 PR: 212603 Submitted by: jrm@ftfl.ca (maintainer) Modified: head/biology/diamond/Makefile head/biology/diamond/distinfo Modified: head/biology/diamond/Makefile ============================================================================== --- head/biology/diamond/Makefile Tue Sep 13 17:46:02 2016 (r422045) +++ head/biology/diamond/Makefile Tue Sep 13 17:50:31 2016 (r422046) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= diamond -PORTVERSION= 0.8.20 +PORTVERSION= 0.8.22 DISTVERSIONPREFIX=v CATEGORIES= biology Modified: head/biology/diamond/distinfo ============================================================================== --- head/biology/diamond/distinfo Tue Sep 13 17:46:02 2016 (r422045) +++ head/biology/diamond/distinfo Tue Sep 13 17:50:31 2016 (r422046) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473129620 -SHA256 (bbuchfink-diamond-v0.8.20_GH0.tar.gz) = 6ff2e46400654ad193f9f0c22abf7efea41b18e3598892e07456e08ffbe57099 -SIZE (bbuchfink-diamond-v0.8.20_GH0.tar.gz) = 596765 +TIMESTAMP = 1473683783 +SHA256 (bbuchfink-diamond-v0.8.22_GH0.tar.gz) = a1cdd0c7838839fa92cf8d06990c9e210cc2702681e5b61bc917fdc20e507851 +SIZE (bbuchfink-diamond-v0.8.22_GH0.tar.gz) = 673659 From owner-svn-ports-head@freebsd.org Tue Sep 13 17:51:04 2016 Return-Path: Delivered-To: svn-ports-head@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 A0DE0BD98E1; Tue, 13 Sep 2016 17:51:04 +0000 (UTC) (envelope-from amdmi3@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 6DEFF97D; Tue, 13 Sep 2016 17:51:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHp3QV079938; Tue, 13 Sep 2016 17:51:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHp3gX079936; Tue, 13 Sep 2016 17:51:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131751.u8DHp3gX079936@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:51:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422047 - head/net/py-s3transfer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:51:04 -0000 Author: amdmi3 Date: Tue Sep 13 17:51:03 2016 New Revision: 422047 URL: https://svnweb.freebsd.org/changeset/ports/422047 Log: - Update to 0.1.3 PR: 212620 Submitted by: bradleythughes@fastmail.fm (maintainer) Modified: head/net/py-s3transfer/Makefile head/net/py-s3transfer/distinfo Modified: head/net/py-s3transfer/Makefile ============================================================================== --- head/net/py-s3transfer/Makefile Tue Sep 13 17:50:31 2016 (r422046) +++ head/net/py-s3transfer/Makefile Tue Sep 13 17:51:03 2016 (r422047) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= s3transfer -PORTVERSION= 0.1.1 +PORTVERSION= 0.1.3 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-s3transfer/distinfo ============================================================================== --- head/net/py-s3transfer/distinfo Tue Sep 13 17:50:31 2016 (r422046) +++ head/net/py-s3transfer/distinfo Tue Sep 13 17:51:03 2016 (r422047) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470477581 -SHA256 (s3transfer-0.1.1.tar.gz) = 6b9131b704819b0e559a97eec373ff6cc8a9b258e4c8f58ad339650b5019f00f -SIZE (s3transfer-0.1.1.tar.gz) = 82198 +TIMESTAMP = 1473665178 +SHA256 (s3transfer-0.1.3.tar.gz) = af2e541ac584a1e88d3bca9529ae784d2b25e5d448685e0ee64f4c0e1e017ed2 +SIZE (s3transfer-0.1.3.tar.gz) = 83873 From owner-svn-ports-head@freebsd.org Tue Sep 13 17:51:39 2016 Return-Path: Delivered-To: svn-ports-head@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 4D429BD994D; Tue, 13 Sep 2016 17:51:39 +0000 (UTC) (envelope-from amdmi3@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 1E4BBAB1; Tue, 13 Sep 2016 17:51:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHpc7W082088; Tue, 13 Sep 2016 17:51:38 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHpcGm082086; Tue, 13 Sep 2016 17:51:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131751.u8DHpcGm082086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 17:51:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422048 - head/x11-themes/qt4-style-Kvantum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:51:39 -0000 Author: amdmi3 Date: Tue Sep 13 17:51:38 2016 New Revision: 422048 URL: https://svnweb.freebsd.org/changeset/ports/422048 Log: - Update to 0.10.2 PR: 212584 Submitted by: matthew@reztek.cz (maintainer) Modified: head/x11-themes/qt4-style-Kvantum/Makefile head/x11-themes/qt4-style-Kvantum/distinfo Modified: head/x11-themes/qt4-style-Kvantum/Makefile ============================================================================== --- head/x11-themes/qt4-style-Kvantum/Makefile Tue Sep 13 17:51:03 2016 (r422047) +++ head/x11-themes/qt4-style-Kvantum/Makefile Tue Sep 13 17:51:38 2016 (r422048) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Kvantum -PORTVERSION= 0.10.1 +PORTVERSION= 0.10.2 DISTVERSIONPREFIX= V CATEGORIES= x11-themes PKGNAMEPREFIX= qt4-style- Modified: head/x11-themes/qt4-style-Kvantum/distinfo ============================================================================== --- head/x11-themes/qt4-style-Kvantum/distinfo Tue Sep 13 17:51:03 2016 (r422047) +++ head/x11-themes/qt4-style-Kvantum/distinfo Tue Sep 13 17:51:38 2016 (r422048) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470827393 -SHA256 (tsujan-Kvantum-V0.10.1_GH0.tar.gz) = ac4e702ef26c0e77dc921b943e42a13e1260fe3d7414d8fdac4aec3e12ccdfb5 -SIZE (tsujan-Kvantum-V0.10.1_GH0.tar.gz) = 1122666 +TIMESTAMP = 1473512293 +SHA256 (tsujan-Kvantum-V0.10.2_GH0.tar.gz) = 6913ee5f351a852d34eabe1f2eb2dcba1ba7fcc69ad864c160a72030d9b16642 +SIZE (tsujan-Kvantum-V0.10.2_GH0.tar.gz) = 1186271 From owner-svn-ports-head@freebsd.org Tue Sep 13 17:59:24 2016 Return-Path: Delivered-To: svn-ports-head@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 263BFBD9B74; Tue, 13 Sep 2016 17:59:24 +0000 (UTC) (envelope-from rene@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 DD93C17C; Tue, 13 Sep 2016 17:59:23 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DHxNmJ083094; Tue, 13 Sep 2016 17:59:23 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DHxMVb083092; Tue, 13 Sep 2016 17:59:22 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609131759.u8DHxMVb083092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 17:59:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422049 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 17:59:24 -0000 Author: rene Date: Tue Sep 13 17:59:22 2016 New Revision: 422049 URL: https://svnweb.freebsd.org/changeset/ports/422049 Log: Belatedly add vulnerabilities for www/chromium < 52.0.2743.116 Obtained from: https://googlechromereleases.blogspot.nl/2016/08/stable-channel-update-for-desktop.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Sep 13 17:51:38 2016 (r422048) +++ head/security/vuxml/vuln.xml Tue Sep 13 17:59:22 2016 (r422049) @@ -58,6 +58,59 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + chromium -- multiple vulnerabilities + + + chromium + chromium-npapi + chromium-pulse + 52.0.2743.116 + + + + +

Google Chrome Releases reports:

+
+

10 security fixes in this release, including:

+
    +
  • [629542] High CVE-2016-5141 Address bar spoofing. Credit to + anonymous
  • +
  • [626948] High CVE-2016-5142 Use-after-free in Blink. Credit to + anonymous
  • +
  • [625541] High CVE-2016-5139 Heap overflow in pdfium. Credit to + GiWan Go of Stealien
  • +
  • [619405] High CVE-2016-5140 Heap overflow in pdfium. Credit to + Ke Liu of Tencent's Xuanwu LAB
  • +
  • [623406] Medium CVE-2016-5145 Same origin bypass for images in + Blink. Credit to anonymous
  • +
  • [619414] Medium CVE-2016-5143 Parameter sanitization failure in + DevTools. Credit to Gregory Panakkal
  • +
  • [618333] Medium CVE-2016-5144 Parameter sanitization failure in + DevTools. Credit to Gregory Panakkal
  • +
  • [633486] CVE-2016-5146: Various fixes from internal audits, + fuzzing and other initiatives.
  • +
+
+ +
+ + CVE-2016-5139 + CVE-2016-5140 + CVE-2016-5141 + CVE-2016-5142 + CVE-2016-5143 + CVE-2016-5144 + CVE-2016-5145 + CVE-2016-5146 + https://googlechromereleases.blogspot.nl/2016/08/stable-channel-update-for-desktop.html + + + 2016-08-03 + 2016-09-13 + +
+ mysql -- Remote Root Code Execution From owner-svn-ports-head@freebsd.org Tue Sep 13 18:01:06 2016 Return-Path: Delivered-To: svn-ports-head@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 E4002BD9CE3; Tue, 13 Sep 2016 18:01:06 +0000 (UTC) (envelope-from rene@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 C1FCA327; Tue, 13 Sep 2016 18:01:06 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DI16VK084013; Tue, 13 Sep 2016 18:01:06 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DI15A4084006; Tue, 13 Sep 2016 18:01:05 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609131801.u8DI15A4084006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 18:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422050 - in head/emulators: fuse fuse-utils libspectrum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:01:07 -0000 Author: rene Date: Tue Sep 13 18:01:05 2016 New Revision: 422050 URL: https://svnweb.freebsd.org/changeset/ports/422050 Log: Update libspectrum and friends to version 1.2.2 Distfiles verified against authors GPG signature Modified: head/emulators/fuse-utils/Makefile head/emulators/fuse-utils/distinfo head/emulators/fuse/Makefile head/emulators/fuse/distinfo head/emulators/libspectrum/Makefile head/emulators/libspectrum/distinfo head/emulators/libspectrum/pkg-plist Modified: head/emulators/fuse-utils/Makefile ============================================================================== --- head/emulators/fuse-utils/Makefile Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/fuse-utils/Makefile Tue Sep 13 18:01:05 2016 (r422050) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fuse-utils -PORTVERSION= 1.2.0 +PORTVERSION= 1.2.2 CATEGORIES= emulators MASTER_SITES= SF/fuse-emulator/${PORTNAME}/${PORTVERSION} Modified: head/emulators/fuse-utils/distinfo ============================================================================== --- head/emulators/fuse-utils/distinfo Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/fuse-utils/distinfo Tue Sep 13 18:01:05 2016 (r422050) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465508963 -SHA256 (fuse-utils-1.2.0.tar.gz) = 0a8d20d9c2a90619ab8e82dc33a5e91424c64a558728369dd9009435da1ef8be -SIZE (fuse-utils-1.2.0.tar.gz) = 499785 +TIMESTAMP = 1473711265 +SHA256 (fuse-utils-1.2.2.tar.gz) = 88f5f46156e55372ae1376c4d10c226e1a908a9b7457a1a2aa357098000ed78a +SIZE (fuse-utils-1.2.2.tar.gz) = 500110 Modified: head/emulators/fuse/Makefile ============================================================================== --- head/emulators/fuse/Makefile Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/fuse/Makefile Tue Sep 13 18:01:05 2016 (r422050) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fuse -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}-emulator/${PORTNAME}/${PORTVERSION} Modified: head/emulators/fuse/distinfo ============================================================================== --- head/emulators/fuse/distinfo Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/fuse/distinfo Tue Sep 13 18:01:05 2016 (r422050) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469225012 -SHA256 (fuse-1.2.1.tar.gz) = 42762dfe94225bc24f7b269727d589842396f4032250c0fdb0b510f0af60743c -SIZE (fuse-1.2.1.tar.gz) = 1629755 +TIMESTAMP = 1473711228 +SHA256 (fuse-1.2.2.tar.gz) = c56b00abc9c9627738abfcc5b6647ce966d6627051643b6b640797b315e5fde6 +SIZE (fuse-1.2.2.tar.gz) = 1628909 Modified: head/emulators/libspectrum/Makefile ============================================================================== --- head/emulators/libspectrum/Makefile Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/libspectrum/Makefile Tue Sep 13 18:01:05 2016 (r422050) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libspectrum -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= emulators devel MASTER_SITES= SF/fuse-emulator/${PORTNAME}/${PORTVERSION} Modified: head/emulators/libspectrum/distinfo ============================================================================== --- head/emulators/libspectrum/distinfo Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/libspectrum/distinfo Tue Sep 13 18:01:05 2016 (r422050) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469224688 -SHA256 (libspectrum-1.2.1.tar.gz) = b8044549e07cb138563476c5822c560a70b32da4bfe757247db8719d022fccba -SIZE (libspectrum-1.2.1.tar.gz) = 510294 +TIMESTAMP = 1473711073 +SHA256 (libspectrum-1.2.2.tar.gz) = 1f8a365df30d7cb2bb5c289163cf122241660cae6dc2cb70687064c847ad12d1 +SIZE (libspectrum-1.2.2.tar.gz) = 517799 Modified: head/emulators/libspectrum/pkg-plist ============================================================================== --- head/emulators/libspectrum/pkg-plist Tue Sep 13 17:59:22 2016 (r422049) +++ head/emulators/libspectrum/pkg-plist Tue Sep 13 18:01:05 2016 (r422050) @@ -2,7 +2,7 @@ include/libspectrum.h lib/libspectrum.a lib/libspectrum.so lib/libspectrum.so.8 -lib/libspectrum.so.8.3.1 +lib/libspectrum.so.8.4.2 man/man3/libspectrum.3.gz %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog From owner-svn-ports-head@freebsd.org Tue Sep 13 18:09:34 2016 Return-Path: Delivered-To: svn-ports-head@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 A1DB5BD9E27; Tue, 13 Sep 2016 18:09:34 +0000 (UTC) (envelope-from marino@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 58E7BA42; Tue, 13 Sep 2016 18:09:34 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DI9Xs0087369; Tue, 13 Sep 2016 18:09:33 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DI9XvM087367; Tue, 13 Sep 2016 18:09:33 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131809.u8DI9XvM087367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 18:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422051 - head/security/proxytunnel/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:09:34 -0000 Author: marino Date: Tue Sep 13 18:09:33 2016 New Revision: 422051 URL: https://svnweb.freebsd.org/changeset/ports/422051 Log: security/proxytunnel: Fix all SSL configuration, fix no SSLv3 (LibreSSL) Approved by: SSL blanket Added: head/security/proxytunnel/files/ head/security/proxytunnel/files/patch-Makefile (contents, props changed) head/security/proxytunnel/files/patch-ptstream.c (contents, props changed) Added: head/security/proxytunnel/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/proxytunnel/files/patch-Makefile Tue Sep 13 18:09:33 2016 (r422051) @@ -0,0 +1,16 @@ +--- Makefile.orig 2012-01-23 18:13:41 UTC ++++ Makefile +@@ -46,9 +46,11 @@ OPTFLAGS += -DSO_REUSEPORT + + # END system dependant block + +-SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null) +-ifeq ($(SSL_LIBS),) + SSL_LIBS := $(shell pkg-config --libs openssl 2>/dev/null) ++CFLAGS += $(shell pkg-config --cflags openssl 2>/dev/null) ++ifeq ($(SSL_LIBS),) ++SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null) ++CFLAGS += $(shell pkg-config --cflags libssl 2>/dev/null) + endif + ifeq ($(SSL_LIBS),) + SSL_LIBS := -lssl -lcrypto Added: head/security/proxytunnel/files/patch-ptstream.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/proxytunnel/files/patch-ptstream.c Tue Sep 13 18:09:33 2016 (r422051) @@ -0,0 +1,14 @@ +--- ptstream.c.orig 2012-01-23 18:13:41 UTC ++++ ptstream.c +@@ -151,7 +151,11 @@ int stream_enable_ssl(PTSTREAM *pts) { + + /* Initialise the connection */ + SSLeay_add_ssl_algorithms(); ++#ifndef OPENSSL_NO_SSL3 + meth = SSLv3_client_method(); ++#else ++ meth = SSLv23_client_method(); ++#endif + SSL_load_error_strings(); + + ctx = SSL_CTX_new (meth); From owner-svn-ports-head@freebsd.org Tue Sep 13 18:10:13 2016 Return-Path: Delivered-To: svn-ports-head@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 91465BD9E82; Tue, 13 Sep 2016 18:10:13 +0000 (UTC) (envelope-from kwm@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 49653B3F; Tue, 13 Sep 2016 18:10:13 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DIACUH087527; Tue, 13 Sep 2016 18:10:12 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DIACnn087525; Tue, 13 Sep 2016 18:10:12 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201609131810.u8DIACnn087525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Tue, 13 Sep 2016 18:10:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422052 - in head/multimedia/libv4l: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:10:13 -0000 Author: kwm Date: Tue Sep 13 18:10:12 2016 New Revision: 422052 URL: https://svnweb.freebsd.org/changeset/ports/422052 Log: Apply the "old" dvb fontend.h ioctl hack to the dvbv5 version. So the ioctl doesn't error out. Submitted by: hselasky@, Rozhuk Ivan Added: head/multimedia/libv4l/files/patch-lib_include_libdvbv5_dvb-frontend.h (contents, props changed) Modified: head/multimedia/libv4l/Makefile Modified: head/multimedia/libv4l/Makefile ============================================================================== --- head/multimedia/libv4l/Makefile Tue Sep 13 18:09:33 2016 (r422051) +++ head/multimedia/libv4l/Makefile Tue Sep 13 18:10:12 2016 (r422052) @@ -4,7 +4,7 @@ PORTNAME?= libv4l PORTVERSION= 1.6.3 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= multimedia MASTER_SITES= http://linuxtv.org/downloads/v4l-utils/:master \ LOCAL/kwm:local Added: head/multimedia/libv4l/files/patch-lib_include_libdvbv5_dvb-frontend.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libv4l/files/patch-lib_include_libdvbv5_dvb-frontend.h Tue Sep 13 18:10:12 2016 (r422052) @@ -0,0 +1,17 @@ +--- ./lib/include/libdvbv5/dvb-frontend.h.orig 2016-09-13 19:57:29.863954000 +0200 ++++ ./lib/include/libdvbv5/dvb-frontend.h 2016-09-13 19:58:07.703108000 +0200 +@@ -553,7 +553,13 @@ + }; + + #define FE_SET_PROPERTY _IOW('o', 82, struct dtv_properties) +-#define FE_GET_PROPERTY _IOR('o', 83, struct dtv_properties) ++/* ++ * This is broken on linux as well but they workaround it in the driver. ++ * Since this is impossible to do on FreeBSD fix the header instead. ++ * Detailed and discussion : ++ * http://lists.freebsd.org/pipermail/freebsd-multimedia/2010-April/010958.html ++ */ ++#define FE_GET_PROPERTY _IOW('o', 83, struct dtv_properties) + + + /** From owner-svn-ports-head@freebsd.org Tue Sep 13 18:23:16 2016 Return-Path: Delivered-To: svn-ports-head@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 CAED5BD9424; Tue, 13 Sep 2016 18:23:16 +0000 (UTC) (envelope-from olivierd@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 9D8FC797; Tue, 13 Sep 2016 18:23:16 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DINFoC094804; Tue, 13 Sep 2016 18:23:15 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DINF2m094802; Tue, 13 Sep 2016 18:23:15 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609131823.u8DINF2m094802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Tue, 13 Sep 2016 18:23:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422053 - head/x11-fm/doublecmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:23:16 -0000 Author: olivierd Date: Tue Sep 13 18:23:15 2016 New Revision: 422053 URL: https://svnweb.freebsd.org/changeset/ports/422053 Log: Update to 0.7.5 Changelog: http://doublecmd.sourceforge.net/mantisbt/changelog_page.php?version_id=46 PR: 212600 Submitted by: Beñat Gonzalez Etxepare(maintainer) Modified: head/x11-fm/doublecmd/Makefile head/x11-fm/doublecmd/distinfo Modified: head/x11-fm/doublecmd/Makefile ============================================================================== --- head/x11-fm/doublecmd/Makefile Tue Sep 13 18:10:12 2016 (r422052) +++ head/x11-fm/doublecmd/Makefile Tue Sep 13 18:23:15 2016 (r422053) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= doublecmd -PORTVERSION= 0.7.4 +PORTVERSION= 0.7.5 CATEGORIES= x11-fm MASTER_SITES= SF/${PORTNAME}/Double%20Commander%20Source DISTNAME= ${PORTNAME}-${PORTVERSION}-src Modified: head/x11-fm/doublecmd/distinfo ============================================================================== --- head/x11-fm/doublecmd/distinfo Tue Sep 13 18:10:12 2016 (r422052) +++ head/x11-fm/doublecmd/distinfo Tue Sep 13 18:23:15 2016 (r422053) @@ -1,5 +1,5 @@ -TIMESTAMP = 1471711575 -SHA256 (doublecmd-0.7.4-src.tar.gz) = ae9cf126a4ce9998ef578896ffb26d7def3721483cdde01c9bef17073537884b -SIZE (doublecmd-0.7.4-src.tar.gz) = 6669910 +TIMESTAMP = 1473665081 +SHA256 (doublecmd-0.7.5-src.tar.gz) = b92fcd6a29cb0ed4eedb4e209c44fc6614f1b3455e0d9a9721be21f5b6bf725b +SIZE (doublecmd-0.7.5-src.tar.gz) = 6675706 SHA256 (doublecmd-help-0.6.0-src.tar.gz) = d50a58f0e8c25c07720f2afd987213f330dfce268e2aef349d1da3de2eef1c39 SIZE (doublecmd-help-0.6.0-src.tar.gz) = 11514996 From owner-svn-ports-head@freebsd.org Tue Sep 13 18:23:46 2016 Return-Path: Delivered-To: svn-ports-head@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 92F66BD9486; Tue, 13 Sep 2016 18:23:46 +0000 (UTC) (envelope-from rene@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 6EA658A3; Tue, 13 Sep 2016 18:23:46 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DINjOZ095065; Tue, 13 Sep 2016 18:23:45 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DINjoI095058; Tue, 13 Sep 2016 18:23:45 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609131823.u8DINjoI095058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 18:23:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422054 - in head: . devel devel/php5-msgpack sysutils sysutils/rsyslog7 textproc textproc/asciinema www www/mediawiki124 www/moodle28 x11-toolkits x11-toolkits/qtada X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:23:46 -0000 Author: rene Date: Tue Sep 13 18:23:44 2016 New Revision: 422054 URL: https://svnweb.freebsd.org/changeset/ports/422054 Log: Remove expired ports: 2016-08-23 www/mediawiki124: EOL upstream 2016-08-23 sysutils/rsyslog7: Upgrade to rsyslog 8 2016-08-24 www/moodle28: EOL upstream 2016-08-31 devel/php5-msgpack: This is an older version of the software, please use devel/pecl-msgpack. 2016-09-02 textproc/asciinema: use textproc/py3-asciinema instead 2016-09-09 x11-toolkits/qtada: No development since 2012, usefulness unclear Deleted: head/devel/php5-msgpack/ head/sysutils/rsyslog7/ head/textproc/asciinema/ head/www/mediawiki124/ head/www/moodle28/ head/x11-toolkits/qtada/ Modified: head/MOVED head/devel/Makefile head/sysutils/Makefile head/textproc/Makefile head/www/Makefile head/x11-toolkits/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Tue Sep 13 18:23:15 2016 (r422053) +++ head/MOVED Tue Sep 13 18:23:44 2016 (r422054) @@ -8623,3 +8623,9 @@ emulators/kqemu-kmod-devel||2016-08-26|N www/varnish-libvmod-saintmode|www/varnish-modules|2016-09-01|Upstream moved this module into the varnish-modules collection security/letskencrypt|security/acme-client|2016-09-02|Upstream renamed the project net/asterisk||2016-09-12|Has expired: Asterisk 1.8 reached EOL on 2015-10-21 +www/mediawiki124||2016-09-13|Has expired: EOL upstream +sysutils/rsyslog7|sysutils/rsyslog8|2016-09-13|Has expired: Upgrade to rsyslog 8 +www/moodle28||2016-09-13|Has expired: EOL upstream +devel/php5-msgpack|devel/pecl-msgpack|2016-09-13|Has expired: This is an older version of the software, please use devel/pecl-msgpack. +textproc/asciinema|textproc/py3-asciinema|2016-09-13|Has expired: use textproc/py3-asciinema instead +x11-toolkits/qtada||2016-09-13|Has expired: No development since 2012, usefulness unclear Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 13 18:23:15 2016 (r422053) +++ head/devel/Makefile Tue Sep 13 18:23:44 2016 (r422054) @@ -3817,7 +3817,6 @@ SUBDIR += php5-dav SUBDIR += php5-geshi SUBDIR += php5-ice - SUBDIR += php5-msgpack SUBDIR += php5-pinba SUBDIR += php5-thrift SUBDIR += php55-gettext Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Sep 13 18:23:15 2016 (r422053) +++ head/sysutils/Makefile Tue Sep 13 18:23:44 2016 (r422054) @@ -912,7 +912,6 @@ SUBDIR += rsnapshot SUBDIR += rsyncbackup SUBDIR += rsyncrypto - SUBDIR += rsyslog7 SUBDIR += rsyslog8 SUBDIR += rtty SUBDIR += ruby-quota Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Sep 13 18:23:15 2016 (r422053) +++ head/textproc/Makefile Tue Sep 13 18:23:44 2016 (r422054) @@ -39,7 +39,6 @@ SUBDIR += archmage SUBDIR += artha SUBDIR += asciidoc - SUBDIR += asciinema SUBDIR += asm-xml SUBDIR += asm2html SUBDIR += aspell Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Sep 13 18:23:15 2016 (r422053) +++ head/www/Makefile Tue Sep 13 18:23:44 2016 (r422054) @@ -389,7 +389,6 @@ SUBDIR += mathjax SUBDIR += mathopd SUBDIR += mediawiki123 - SUBDIR += mediawiki124 SUBDIR += mediawiki125 SUBDIR += mediawiki126 SUBDIR += mediawiki127 @@ -508,7 +507,6 @@ SUBDIR += monast SUBDIR += mongoose SUBDIR += mongrel2 - SUBDIR += moodle28 SUBDIR += moodle29 SUBDIR += moodle30 SUBDIR += moodle31 Modified: head/x11-toolkits/Makefile ============================================================================== --- head/x11-toolkits/Makefile Tue Sep 13 18:23:15 2016 (r422053) +++ head/x11-toolkits/Makefile Tue Sep 13 18:23:44 2016 (r422054) @@ -225,7 +225,6 @@ SUBDIR += qt5-quickcontrols SUBDIR += qt5-uiplugin SUBDIR += qt5-widgets - SUBDIR += qtada SUBDIR += qtermwidget SUBDIR += qwt5 SUBDIR += qwt5-designerplugin From owner-svn-ports-head@freebsd.org Tue Sep 13 18:40:22 2016 Return-Path: Delivered-To: svn-ports-head@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 6F1A2BD9783; Tue, 13 Sep 2016 18:40:22 +0000 (UTC) (envelope-from marino@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 3F427E38; Tue, 13 Sep 2016 18:40:22 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DIeLIl099500; Tue, 13 Sep 2016 18:40:21 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DIeL3R099499; Tue, 13 Sep 2016 18:40:21 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131840.u8DIeL3R099499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 18:40:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422056 - head/www/tomcat-native X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:40:22 -0000 Author: marino Date: Tue Sep 13 18:40:21 2016 New Revision: 422056 URL: https://svnweb.freebsd.org/changeset/ports/422056 Log: www/tomcat-native: remove USE_OPENSSL_PORT and IGNORE LibreSSL Even with LibreSSL using the OpenSSL 1.0.2 compatibility definitions, there are numerous unreferenced symbols during linking. It doesn't seem trivial to fix so IGNORE when SSL_DEFAULT=libressl* This version of Tomcat also requires OpenSSL version 1.0.2 which is not available in FreeBSD 9 base nor FreeBSD 10 base. Set IGNORE when base SSL libraries are used for those 2 platforms. Approved by: SSL blanket Modified: head/www/tomcat-native/Makefile Modified: head/www/tomcat-native/Makefile ============================================================================== --- head/www/tomcat-native/Makefile Tue Sep 13 18:37:43 2016 (r422055) +++ head/www/tomcat-native/Makefile Tue Sep 13 18:40:21 2016 (r422056) @@ -16,9 +16,7 @@ LIB_DEPENDS= libapr-1.so:devel/apr1 WRKSRC= ${WRKDIR}/${DISTNAME}/native -USES= libtool -USE_OPENSSL= yes -WITH_OPENSSL_PORT= yes +USES= libtool ssl USE_JAVA= yes USE_LDCONFIG= yes JAVA_VERSION= 1.6+ @@ -35,4 +33,15 @@ PLIST_FILES= lib/libtcnative-1.a \ post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtcnative-1.so.0.2.7 -.include +.include + +.if ${SSL_DEFAULT} == base +IGNORE_FreeBSD_9= Requires OpenSSL 1.0.2 (set SSL_DEFAULT=openssl) +IGNORE_FreeBSD_10= Requires OpenSSL 1.0.2 (set_SSL_DEFAULT=openssl) +.endif + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Detected LibreSSL (missing numerous symbols during linking) +.endif + +.include From owner-svn-ports-head@freebsd.org Tue Sep 13 18:49:13 2016 Return-Path: Delivered-To: svn-ports-head@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 0398CBD9922; Tue, 13 Sep 2016 18:49:13 +0000 (UTC) (envelope-from amdmi3@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 B8496376; Tue, 13 Sep 2016 18:49:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DInBJP003500; Tue, 13 Sep 2016 18:49:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DInBQ8003499; Tue, 13 Sep 2016 18:49:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131849.u8DInBQ8003499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 18:49:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422058 - head/audio/audacity X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:49:13 -0000 Author: amdmi3 Date: Tue Sep 13 18:49:11 2016 New Revision: 422058 URL: https://svnweb.freebsd.org/changeset/ports/422058 Log: - Fix LICENSE - Switch to options helpers Approved by: portmgr blanket Modified: head/audio/audacity/Makefile Modified: head/audio/audacity/Makefile ============================================================================== --- head/audio/audacity/Makefile Tue Sep 13 18:41:08 2016 (r422057) +++ head/audio/audacity/Makefile Tue Sep 13 18:49:11 2016 (r422058) @@ -11,7 +11,7 @@ DISTNAME= Audacity-${PORTVERSION} MAINTAINER= xxjack12xx@gmail.com COMMENT= GUI editor for digital audio waveforms -LICENSE= GPLv2 +LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= autogen:devel/autogen \ @@ -143,8 +143,10 @@ CXXFLAGS+= -std=c++11 .endif post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include From owner-svn-ports-head@freebsd.org Tue Sep 13 18:49:53 2016 Return-Path: Delivered-To: svn-ports-head@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 ED3D2BD995B; Tue, 13 Sep 2016 18:49:53 +0000 (UTC) (envelope-from amdmi3@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 A397766A; Tue, 13 Sep 2016 18:49:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DInqko003651; Tue, 13 Sep 2016 18:49:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DInqn5003648; Tue, 13 Sep 2016 18:49:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131849.u8DInqn5003648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 18:49:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422059 - head/mail/notmuch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:49:54 -0000 Author: amdmi3 Date: Tue Sep 13 18:49:52 2016 New Revision: 422059 URL: https://svnweb.freebsd.org/changeset/ports/422059 Log: - Update to 0.22.2 - While here, cosmetic fixes PR: 212588 Submitted by: mp39590@gmail.com (maintainer) Modified: head/mail/notmuch/Makefile head/mail/notmuch/distinfo head/mail/notmuch/pkg-descr Modified: head/mail/notmuch/Makefile ============================================================================== --- head/mail/notmuch/Makefile Tue Sep 13 18:49:11 2016 (r422058) +++ head/mail/notmuch/Makefile Tue Sep 13 18:49:52 2016 (r422059) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= notmuch -PORTVERSION= 0.22.1 -PORTREVISION= 1 +PORTVERSION= 0.22.2 CATEGORIES= mail MASTER_SITES= http://notmuchmail.org/releases/ @@ -46,7 +45,7 @@ USE_LDCONFIG= yes MAKE_ENV+= PYTHONCMD=${PYTHON_CMD} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.4.3.0 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.4.3.0 .include Modified: head/mail/notmuch/distinfo ============================================================================== --- head/mail/notmuch/distinfo Tue Sep 13 18:49:11 2016 (r422058) +++ head/mail/notmuch/distinfo Tue Sep 13 18:49:52 2016 (r422059) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469017581 -SHA256 (notmuch-0.22.1.tar.gz) = e739457794f3c2b363beffa3ed9e8a2786921031c80672f5b06d0880876a974b -SIZE (notmuch-0.22.1.tar.gz) = 683286 +TIMESTAMP = 1473408075 +SHA256 (notmuch-0.22.2.tar.gz) = 6cd19c61634079981b2d8f4b7cb4eb953cba2a36272520603682d813d2bd7ed1 +SIZE (notmuch-0.22.2.tar.gz) = 683796 Modified: head/mail/notmuch/pkg-descr ============================================================================== --- head/mail/notmuch/pkg-descr Tue Sep 13 18:49:11 2016 (r422058) +++ head/mail/notmuch/pkg-descr Tue Sep 13 18:49:52 2016 (r422059) @@ -1,3 +1,3 @@ Notmuch - thread-based email index, search and tagging. -WWW: http://notmuchmail.org +WWW: http://notmuchmail.org/ From owner-svn-ports-head@freebsd.org Tue Sep 13 18:54:39 2016 Return-Path: Delivered-To: svn-ports-head@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 A9611BD9B1B; Tue, 13 Sep 2016 18:54:39 +0000 (UTC) (envelope-from amdmi3@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 77069A72; Tue, 13 Sep 2016 18:54:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DIsc6Y007419; Tue, 13 Sep 2016 18:54:38 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DIscUx007417; Tue, 13 Sep 2016 18:54:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131854.u8DIscUx007417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 18:54:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422060 - head/editors/dkns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:54:39 -0000 Author: amdmi3 Date: Tue Sep 13 18:54:38 2016 New Revision: 422060 URL: https://svnweb.freebsd.org/changeset/ports/422060 Log: - Update to 1.96 - Add LICENSE - Add NO_ARCH PR: 212526 Submitted by: jimmy@mammothcheese.ca (maintainer) MFH: 2016Q3 Modified: head/editors/dkns/Makefile head/editors/dkns/distinfo Modified: head/editors/dkns/Makefile ============================================================================== --- head/editors/dkns/Makefile Tue Sep 13 18:49:52 2016 (r422059) +++ head/editors/dkns/Makefile Tue Sep 13 18:54:38 2016 (r422060) @@ -2,16 +2,20 @@ # $FreeBSD$ PORTNAME= dkns -PORTVERSION= 1.95 +PORTVERSION= 1.96 CATEGORIES= editors MASTER_SITES= http://www.mammothcheese.ca/ MAINTAINER= jimmy@mammothcheese.ca COMMENT= Simple console text editor +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + RUN_DEPENDS= munger:lang/munger MAKE_ENV= INSTALL_MAN="${INSTALL_MAN}" INSTALL_SCRIPT="${INSTALL_SCRIPT}" +NO_ARCH= yes PLIST_FILES= bin/dkns \ man/man1/dkns.1.gz Modified: head/editors/dkns/distinfo ============================================================================== --- head/editors/dkns/distinfo Tue Sep 13 18:49:52 2016 (r422059) +++ head/editors/dkns/distinfo Tue Sep 13 18:54:38 2016 (r422060) @@ -1,2 +1,3 @@ -SHA256 (dkns-1.95.tar.gz) = c6da8f43a2f4ad4e92bf24f719622ed46499d2e26b159b72df7081cbb327240e -SIZE (dkns-1.95.tar.gz) = 34261 +TIMESTAMP = 1473429476 +SHA256 (dkns-1.96.tar.gz) = e96187e044366a3b56736fdff7570756edb82e99c97ddbf65d1528db1ccc8918 +SIZE (dkns-1.96.tar.gz) = 35298 From owner-svn-ports-head@freebsd.org Tue Sep 13 18:58:42 2016 Return-Path: Delivered-To: svn-ports-head@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 5B7C7BD9C8B; Tue, 13 Sep 2016 18:58:42 +0000 (UTC) (envelope-from mr@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 F36FECE0; Tue, 13 Sep 2016 18:58:41 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DIwfQe007814; Tue, 13 Sep 2016 18:58:41 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DIwelq007807; Tue, 13 Sep 2016 18:58:40 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201609131858.u8DIwelq007807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Tue, 13 Sep 2016 18:58:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422061 - in head/comms/uhd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 18:58:42 -0000 Author: mr Date: Tue Sep 13 18:58:40 2016 New Revision: 422061 URL: https://svnweb.freebsd.org/changeset/ports/422061 Log: Add the latest stable Ettus-Research USRP Hardware Driver (UHD) Software and firmware images. In contrast to comms/usrp it compiles only the host part and not the images. The images are the binaries from ettus. While the port compiles cleanly it doesn't fully work for my B200 but this could be a local HW problem since the B* series is picky about the USB3 HW... Therefore this port is currently not connected to gnuradio. Added: head/comms/uhd/ head/comms/uhd/Makefile (contents, props changed) head/comms/uhd/distinfo (contents, props changed) head/comms/uhd/files/ head/comms/uhd/files/patch-CMakeLists.txt (contents, props changed) head/comms/uhd/files/patch-examples_CMakeLists.txt (contents, props changed) head/comms/uhd/pkg-descr (contents, props changed) head/comms/uhd/pkg-plist (contents, props changed) Added: head/comms/uhd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/uhd/Makefile Tue Sep 13 18:58:40 2016 (r422061) @@ -0,0 +1,65 @@ +# $FreeBSD$ + +PORTNAME= uhd +PORTVERSION= 3.9.5 +#PORTREVISION= 1 +CATEGORIES= comms hamradio +MASTER_SITES= http://files.ettus.com/binaries/images/ +DISTFILES= ${IMAGE_FILE} +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${DISTFILES} + +MAINTAINER= mr@FreeBSD.org +COMMENT= Ettus Research UHD driver framework + +USE_GITHUB= yes +GH_ACCOUNT= EttusResearch +GH_TAGNAME= ${UHD_COMMIT} + +UHD_COMMIT= 32951af2f3e7b1ddb56486c9f15b2e1033605bd6 + +CONFLICTS= usrp-[0-9]* + +LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs +BUILD_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:${PORTSDIR}/devel/boost-libs \ + cheetah-analyze:${PORTSDIR}/devel/py-cheetah \ + rst2html:${PORTSDIR}/textproc/py-docutils \ + orcc:${PORTSDIR}/devel/orc \ + ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako + +USES= compiler:c++0x cmake:outsource gmake pkgconfig dos2unix python:2.7 +COMPILER_FEATURES= libc++ +USE_LDCONFIG= yes +CMAKE_SOURCE_PATH= ${WRKSRC}/host +MAKE_JOBS_UNSAFE= yes + +CMAKE_ARGS+= -DPKG_LIB_DIR:STRING="share/uhd" -DUHD_TXRX_DEBUG_PRINTS="yes" +# for excruciating debug use this -db +#CMAKE_ARGS+= --debug-output --trace +DOCSDIR= share/doc/uhd + +IMAGE_FILE= uhd-images_003.009.005-release.zip + +.include + +.if ${OSVERSION} < 800000 +IGNORE= needs libusb 1.0 +.endif + +.if ${PORT_OPTIONS:MDOCS} +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen +CMAKE_ARGS+= -DENABLE_DOXYGEN:STRING="ON" +HAVEDOCS= YES +.endif + +do-install: +# install host component +# hack the install prefix now + @${REINPLACE_CMD} -e "s|/usr/local|${STAGEDIR}${PREFIX}|g" \ + ${CONFIGURE_WRKSRC}/cmake_install.cmake + cd ${CONFIGURE_WRKSRC} && ${MAKE} install +.for subdir in images + ${CP} -Rp ${WRKDIR}/${IMAGE_FILE:S|.zip||}/share/uhd/${subdir} ${STAGEDIR}${DATADIR} +.endfor + +.include Added: head/comms/uhd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/uhd/distinfo Tue Sep 13 18:58:40 2016 (r422061) @@ -0,0 +1,5 @@ +TIMESTAMP = 1473787348 +SHA256 (uhd/uhd-images_003.009.005-release.zip) = bfbf45f90ba856f02e73f11ed7879a218ece22b493eb417b7ab0f48aac245995 +SIZE (uhd/uhd-images_003.009.005-release.zip) = 26266935 +SHA256 (uhd/EttusResearch-uhd-3.9.5-32951af2f3e7b1ddb56486c9f15b2e1033605bd6_GH0.tar.gz) = fa65c64a2874507124738dee74c82339bcda92c4362157b17a8316ef93ef17bb +SIZE (uhd/EttusResearch-uhd-3.9.5-32951af2f3e7b1ddb56486c9f15b2e1033605bd6_GH0.tar.gz) = 2454574 Added: head/comms/uhd/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/uhd/files/patch-CMakeLists.txt Tue Sep 13 18:58:40 2016 (r422061) @@ -0,0 +1,9 @@ +--- host/CMakeLists.txt.orig 2015-11-14 16:31:04.552639000 +0000 ++++ host/CMakeLists.txt 2015-11-14 17:26:43.452033000 +0000 +@@ -350,5 +350,5 @@ + UHD_INSTALL( + FILES ${CMAKE_CURRENT_BINARY_DIR}/uhd.pc +- DESTINATION ${LIBRARY_DIR}/pkgconfig ++ DESTINATION libdata/pkgconfig + COMPONENT "devel" + ) Added: head/comms/uhd/files/patch-examples_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/uhd/files/patch-examples_CMakeLists.txt Tue Sep 13 18:58:40 2016 (r422061) @@ -0,0 +1,8 @@ +--- host/examples/CMakeLists.txt.orig 2015-11-14 16:31:04.640272000 +0000 ++++ host/examples/CMakeLists.txt 2015-11-14 17:26:27.512820000 +0000 +@@ -50,4 +50,5 @@ + UHD_INSTALL(TARGETS ${example_name} RUNTIME DESTINATION ${PKG_LIB_DIR}/examples COMPONENT examples) + ENDFOREACH(example_source) ++TARGET_LINK_LIBRARIES(network_relay -pthread) + + ######################################################################## Added: head/comms/uhd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/uhd/pkg-descr Tue Sep 13 18:58:40 2016 (r422061) @@ -0,0 +1,15 @@ +UHD is the "Universal Software Radio Peripheral" (USRP) Hardware Driver. It +works on all major platforms (Linux, Windows, and Mac); and can be built with +GCC, Clang, and MSVC compilers. + +The goal of UHD is to provide a host driver and API for current and +future Ettus Research products. Users will be able to use the UHD driver +standalone or with third-party applications such as: + + GNU Radio + LabVIEW + Simulink + OpenBTS + + +WWW: http://ettus-apps.sourcerepo.com/redmine/ettus/projects/uhd/wiki Added: head/comms/uhd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/uhd/pkg-plist Tue Sep 13 18:58:40 2016 (r422061) @@ -0,0 +1,1521 @@ +bin/octoclock_firmware_burner +bin/uhd_cal_rx_iq_balance +bin/uhd_cal_tx_dc_offset +bin/uhd_cal_tx_iq_balance +bin/uhd_find_devices +bin/uhd_image_loader +bin/uhd_usrp_probe +bin/usrp_n2xx_simple_net_burner +bin/usrp_x3xx_fpga_burner +include/uhd.h +include/uhd/config.h +include/uhd/config.hpp +include/uhd/convert.hpp +include/uhd/deprecated.hpp +include/uhd/device.hpp +include/uhd/device_deprecated.ipp +include/uhd/error.h +include/uhd/exception.hpp +include/uhd/property_tree.hpp +include/uhd/property_tree.ipp +include/uhd/stream.hpp +include/uhd/transport/bounded_buffer.hpp +include/uhd/transport/bounded_buffer.ipp +include/uhd/transport/buffer_pool.hpp +include/uhd/transport/chdr.hpp +include/uhd/transport/if_addrs.hpp +include/uhd/transport/tcp_zero_copy.hpp +include/uhd/transport/udp_constants.hpp +include/uhd/transport/udp_simple.hpp +include/uhd/transport/udp_zero_copy.hpp +include/uhd/transport/usb_control.hpp +include/uhd/transport/usb_device_handle.hpp +include/uhd/transport/usb_zero_copy.hpp +include/uhd/transport/vrt_if_packet.hpp +include/uhd/transport/zero_copy.hpp +include/uhd/types/byte_vector.hpp +include/uhd/types/clock_config.hpp +include/uhd/types/device_addr.hpp +include/uhd/types/dict.hpp +include/uhd/types/dict.ipp +include/uhd/types/direction.hpp +include/uhd/types/endianness.hpp +include/uhd/types/filters.hpp +include/uhd/types/io_type.hpp +include/uhd/types/mac_addr.hpp +include/uhd/types/metadata.h +include/uhd/types/metadata.hpp +include/uhd/types/otw_type.hpp +include/uhd/types/ranges.h +include/uhd/types/ranges.hpp +include/uhd/types/ref_vector.hpp +include/uhd/types/sensors.h +include/uhd/types/sensors.hpp +include/uhd/types/serial.hpp +include/uhd/types/sid.hpp +include/uhd/types/stream_cmd.hpp +include/uhd/types/string_vector.h +include/uhd/types/time_spec.hpp +include/uhd/types/tune_request.h +include/uhd/types/tune_request.hpp +include/uhd/types/tune_result.h +include/uhd/types/tune_result.hpp +include/uhd/types/usrp_info.h +include/uhd/types/wb_iface.hpp +include/uhd/usrp/dboard_base.hpp +include/uhd/usrp/dboard_eeprom.h +include/uhd/usrp/dboard_eeprom.hpp +include/uhd/usrp/dboard_id.hpp +include/uhd/usrp/dboard_iface.hpp +include/uhd/usrp/dboard_manager.hpp +include/uhd/usrp/gps_ctrl.hpp +include/uhd/usrp/mboard_eeprom.h +include/uhd/usrp/mboard_eeprom.hpp +include/uhd/usrp/multi_usrp.hpp +include/uhd/usrp/subdev_spec.h +include/uhd/usrp/subdev_spec.hpp +include/uhd/usrp/usrp.h +include/uhd/usrp_clock/multi_usrp_clock.hpp +include/uhd/usrp_clock/octoclock_eeprom.hpp +include/uhd/usrp_clock/usrp_clock.h +include/uhd/utils/algorithm.hpp +include/uhd/utils/assert_has.hpp +include/uhd/utils/assert_has.ipp +include/uhd/utils/atomic.hpp +include/uhd/utils/byteswap.hpp +include/uhd/utils/byteswap.ipp +include/uhd/utils/cast.hpp +include/uhd/utils/csv.hpp +include/uhd/utils/fp_compare_delta.ipp +include/uhd/utils/fp_compare_epsilon.ipp +include/uhd/utils/gain_group.hpp +include/uhd/utils/log.hpp +include/uhd/utils/math.hpp +include/uhd/utils/msg.hpp +include/uhd/utils/msg_task.hpp +include/uhd/utils/paths.hpp +include/uhd/utils/pimpl.hpp +include/uhd/utils/platform.hpp +include/uhd/utils/safe_call.hpp +include/uhd/utils/safe_main.hpp +include/uhd/utils/static.hpp +include/uhd/utils/tasks.hpp +include/uhd/utils/thread_priority.h +include/uhd/utils/thread_priority.hpp +include/uhd/version.hpp +lib/cmake/uhd/UHDConfig.cmake +lib/cmake/uhd/UHDConfigVersion.cmake +lib/libuhd.so +lib/libuhd.so.003 +lib/libuhd.so.003.009 +libdata/pkgconfig/uhd.pc +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/Ettus_Logo.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/N2xx-JTAG.jpg +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/TRRS.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/algorithm_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/algorithm_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/algorithm_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/annotated.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/annotated_dup.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/arrowdown.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/arrowright.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/atomic_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/atomic_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/atomic_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bc_s.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bdwn.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/buffer__pool_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/buffer__pool_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/build_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byte__vector_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byte__vector_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byte__vector_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/c__api_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/calibration_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/cast_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/cast_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/cast_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/chdr_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/chdr_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/chdr_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classes.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1__log_1_1log-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1__log_1_1log.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1__log_1_1log.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1atomic__uint32__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1atomic__uint32__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1atomic__uint32__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1convert_1_1converter-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1convert_1_1converter.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1convert_1_1converter.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dict-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dict.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dict.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dirty__tracked-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dirty__tracked.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dirty__tracked.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1io__type__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1io__type__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1io__type__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1mac__addr__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1mac__addr__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1mac__addr__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__delta-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__delta.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__delta.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__epsilon-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__epsilon.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__epsilon.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg_1_1__msg-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg_1_1__msg.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg_1_1__msg.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1range__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1range__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1range__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1ref__vector-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1ref__vector.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1ref__vector.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1reusable__barrier-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1reusable__barrier.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1reusable__barrier.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1sid__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1sid__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1sid__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1simple__claimer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1simple__claimer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1simple__claimer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1spi__iface-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1spi__iface.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1spi__iface.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1uart__iface-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1uart__iface.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1uart__iface.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface-members.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/clock__config_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/clock__config_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/closed.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/coding_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8h.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/configuration_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/convert_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/convert_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/convert_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/converters_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/csv_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/csv_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/csv_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__base_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__base_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8h.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__id_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__id_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__id_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__iface_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__iface_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__manager_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__manager_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboards_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/deprecated_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/deprecated_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__addr_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__addr_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__addr_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__deprecated_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__deprecated_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/devices_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_196057fa9aeefd8591ddec7c908f5e43.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_196057fa9aeefd8591ddec7c908f5e43.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_72c1d58d372b837697c1167a99ca9c7a.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_72c1d58d372b837697c1167a99ca9c7a.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_7461a2958eedf41f0cc2e50ee75b14b0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_7461a2958eedf41f0cc2e50ee75b14b0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9b536c30bc5a9db2084d75e9c271ba6f.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9b536c30bc5a9db2084d75e9c271ba6f.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9d0dbe074bd16ac5601986e81b7402cf.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9d0dbe074bd16ac5601986e81b7402cf.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_f4b37310477eb290db01b88b258ae379.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_f4b37310477eb290db01b88b258ae379.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/direction_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/direction_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/direction_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dirty__tracked_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dirty__tracked_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/doc.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/doxygen.css +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/doxygen.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dynsections.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_fp_overlay.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_gpio_conn.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_imu_demo.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_jtag_conn.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_rp_overlay.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3xx_conn_photo.jpg +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/endianness_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/endianness_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/endianness_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/error_8h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/error_8h.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/error_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/exception_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/exception_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/exception_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/files.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/files.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/filters_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/filters_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/filters_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/folderclosed.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/folderopen.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__delta_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__delta_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__epsilon_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__epsilon_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_a.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_b.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_c.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_d.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_dup.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_e.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_enum.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_eval.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_f.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_a.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_b.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_c.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_d.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_e.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_f.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_g.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_i.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_k.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_l.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_m.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_n.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_o.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_p.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_r.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_s.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_u.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_v.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_w.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_x.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_~.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_g.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_i.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_k.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_l.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_m.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_n.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_o.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_p.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_r.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_s.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_t.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_type.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_u.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_v.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_vars.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_w.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_x.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_~.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gain__group_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gain__group_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/general_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_b.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_defs.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_dup.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_enum.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_eval.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func_r.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func_s.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func_u.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_g.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_i.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_r.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_s.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_type.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_u.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_vars.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_x.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpio__api_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gps__ctrl_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gps__ctrl_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpsdo_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpsdo__b2x0_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpsdo__x3x0_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/hierarchy.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/identification_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/if__addrs_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/if__addrs_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/if__addrs_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/image__loader_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/image__loader_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/images_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/index.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/index.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/install_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/io__type_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/io__type_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/log_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/log_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/log_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mac__addr_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mac__addr_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mainpage_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/math_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/math_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/math_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8h.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8h.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg__task_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg__task_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp__clock_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp__clock_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multiple_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_enum.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_eval.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_func.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_type.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaces.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaces.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1__log.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1__log.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1cast.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1convert.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1convert.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1csv.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math_1_1fp__compare.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math_1_1fp__compare.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1msg.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1msg.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1soft__reg__field.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport_1_1vrt.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport_1_1vrt.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport_1_1vrt_1_1chdr.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp__clock.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp__clock.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/nav_f.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/nav_g.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/nav_h.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtree.css +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtree.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreedata.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex1.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex2.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex3.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex4.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex5.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex6.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex7.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex8.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex9.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ni__rio__kernel_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/octoclock_8dox.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/octoclock__eeprom_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/octoclock__eeprom_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/open.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/otw__type_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/otw__type_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_build_guide.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_c_api.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_calibration.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_coding.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_coding.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_configuration.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_converters.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_dboards.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_devices.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_devices.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_general.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpio_api.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpsdo.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpsdo_b2x0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpsdo_x3x0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_identification.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_images.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_install.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_multiple.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_ni_rio_kernel.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_octoclock.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_rtp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_stream.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_sync.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_transport.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_uhd.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_uhd.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp1.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp2.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp2.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_b100.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_b200.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_b200.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_e1x0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_e1x0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_e3x0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_x3x0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_x3x0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_x3x0_config.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pages.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/paths_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/paths_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/paths_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pimpl_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pimpl_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pimpl_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/platform_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/platform_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/platform_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8ipp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8ipp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8h.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8h.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8h_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ref__vector_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ref__vector_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/resize.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__call_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__call_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__call_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__main_8hpp.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__main_8hpp.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__main_8hpp_source.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_1.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_1.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_10.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_10.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_11.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_11.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_12.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_12.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_13.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_13.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_14.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_14.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_15.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_15.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_16.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_16.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_17.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_17.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_18.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_18.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_2.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_2.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_3.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_3.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_4.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_4.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_5.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_5.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_6.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_6.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_7.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_7.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_8.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_8.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_9.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_9.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_a.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_a.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_b.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_b.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_c.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_c.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_d.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_d.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_e.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_e.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_f.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_f.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_1.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_1.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_10.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_10.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_11.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_11.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_12.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_12.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_13.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_13.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_14.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_14.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_15.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_15.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_16.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_16.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_2.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_2.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_3.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_3.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_4.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_4.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_5.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_5.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_6.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_6.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_7.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_7.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_8.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_8.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_9.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_9.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_a.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_a.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_b.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_b.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_c.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_c.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_d.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_d.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_e.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_e.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_f.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_f.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/close.png +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_1.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_1.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_2.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_2.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_3.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_3.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_4.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_4.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_5.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_5.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_0.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_0.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_1.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_1.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_2.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_2.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_3.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_3.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_4.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_4.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_5.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_5.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_6.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_6.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_7.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_7.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_8.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_8.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_9.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_9.js +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_a.html +%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_a.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Sep 13 19:00:42 2016 Return-Path: Delivered-To: svn-ports-head@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 7D199BD9D40; Tue, 13 Sep 2016 19:00:42 +0000 (UTC) (envelope-from mr@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 4AF50EA3; Tue, 13 Sep 2016 19:00:42 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJ0fx9008014; Tue, 13 Sep 2016 19:00:41 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJ0fYu008013; Tue, 13 Sep 2016 19:00:41 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201609131900.u8DJ0fYu008013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Tue, 13 Sep 2016 19:00:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422062 - head/comms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:00:42 -0000 Author: mr Date: Tue Sep 13 19:00:41 2016 New Revision: 422062 URL: https://svnweb.freebsd.org/changeset/ports/422062 Log: Add uhd Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Tue Sep 13 18:58:40 2016 (r422061) +++ head/comms/Makefile Tue Sep 13 19:00:41 2016 (r422062) @@ -178,6 +178,7 @@ SUBDIR += twpsk SUBDIR += uarduno SUBDIR += uartlirc + SUBDIR += uhd SUBDIR += uird SUBDIR += unixcw SUBDIR += usbmuxd From owner-svn-ports-head@freebsd.org Tue Sep 13 19:06:36 2016 Return-Path: Delivered-To: svn-ports-head@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 2A521BD9FBF; Tue, 13 Sep 2016 19:06:36 +0000 (UTC) (envelope-from marino@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 EEAC4750; Tue, 13 Sep 2016 19:06:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJ6ZWm011665; Tue, 13 Sep 2016 19:06:35 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJ6ZL0011664; Tue, 13 Sep 2016 19:06:35 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131906.u8DJ6ZL0011664@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 19:06:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422063 - head/net-mgmt/zabbix3-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:06:36 -0000 Author: marino Date: Tue Sep 13 19:06:34 2016 New Revision: 422063 URL: https://svnweb.freebsd.org/changeset/ports/422063 Log: net-mgmt/zabbix3-server: Simplify FreeBSD 9 SSL check, ignore LibreSSL Zabbix3-server can't be built by LibreSSL because it uses PSK. It also can't be built by FreeBSD 9 base OpenSSL. The latter was documented, but the solution in the notification was incorrect, so improve all that. Approved by: SSL blanket Modified: head/net-mgmt/zabbix3-server/Makefile Modified: head/net-mgmt/zabbix3-server/Makefile ============================================================================== --- head/net-mgmt/zabbix3-server/Makefile Tue Sep 13 19:00:41 2016 (r422062) +++ head/net-mgmt/zabbix3-server/Makefile Tue Sep 13 19:06:34 2016 (r422063) @@ -152,8 +152,12 @@ POLARSSL_LIB_DEPENDS= libmbedtls.so:secu .include -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 && ${SSL_DEFAULT} == base -IGNORE= OpenSSL from the base system is too old, add DEFAULT_VERSIONS+=ssl=openssl to your /etc/make.conf and rebuild everything that needs SSL. +.if ${SSL_DEFAULT} == base +IGNORE_FreeBSD_9= Requires newer OpenSSL (set SSL_DEFAULT=openssl) +.endif + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Requires PSK which is unsupported by the selected LibreSSL .endif post-patch: From owner-svn-ports-head@freebsd.org Tue Sep 13 19:10:32 2016 Return-Path: Delivered-To: svn-ports-head@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 62ECFBD8272; Tue, 13 Sep 2016 19:10:32 +0000 (UTC) (envelope-from marino@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 333309AD; Tue, 13 Sep 2016 19:10:32 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJAVKA011922; Tue, 13 Sep 2016 19:10:31 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJAVt6011921; Tue, 13 Sep 2016 19:10:31 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609131910.u8DJAVt6011921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 19:10:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422064 - head/net-mgmt/nsca-ng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:10:32 -0000 Author: marino Date: Tue Sep 13 19:10:31 2016 New Revision: 422064 URL: https://svnweb.freebsd.org/changeset/ports/422064 Log: net-mgmt/nsca-ng(-client): IGNORE FreeBSD 9 base openSSL I think the original makefile was starting that the FreeBSD 9 base OpenSSL isn't good enough. My previous commit lost that information, so put the equivalent check back again. Modified: head/net-mgmt/nsca-ng/Makefile Modified: head/net-mgmt/nsca-ng/Makefile ============================================================================== --- head/net-mgmt/nsca-ng/Makefile Tue Sep 13 19:06:34 2016 (r422063) +++ head/net-mgmt/nsca-ng/Makefile Tue Sep 13 19:10:31 2016 (r422064) @@ -35,6 +35,10 @@ PORTDOCS= NEWS COPYING README PROTOCOL T .include +.if ${SSL_DEFAULT} == base +IGNORE_FreeBSD_9= Requires newer OpenSSL (set SSL_DEFAULT=openssl) +.endif + .if ${SSL_DEFAULT:Mlibressl*} IGNORE= Requires PSK which is unsupported by the selected LibreSSL .endif From owner-svn-ports-head@freebsd.org Tue Sep 13 19:10:34 2016 Return-Path: Delivered-To: svn-ports-head@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 8D0EBBD828F; Tue, 13 Sep 2016 19:10:34 +0000 (UTC) (envelope-from rene@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 511CDA4C; Tue, 13 Sep 2016 19:10:34 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJAXBg012017; Tue, 13 Sep 2016 19:10:33 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJAXpK012013; Tue, 13 Sep 2016 19:10:33 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609131910.u8DJAXpK012013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 19:10:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422065 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:10:34 -0000 Author: rene Date: Tue Sep 13 19:10:33 2016 New Revision: 422065 URL: https://svnweb.freebsd.org/changeset/ports/422065 Log: Add vulnerabilities for www/chromium < 53.0.2785.92 Obtained from: https://googlechromereleases.blogspot.nl/2016/08/stable-channel-update-for-desktop_31.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Sep 13 19:10:31 2016 (r422064) +++ head/security/vuxml/vuln.xml Tue Sep 13 19:10:33 2016 (r422065) @@ -58,6 +58,99 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + chromium -- multiple vulnerabilities + + + chromium + chromium-npapi + chromium-pulse + 53.0.2785.92 + + + + +

Google Chrome Releases reports:

+
+

33 security fixes in this release, including:

+
    +
  • [628942] High CVE-2016-5147: Universal XSS in Blink. Credit to + anonymous
  • +
  • [621362] High CVE-2016-5148: Universal XSS in Blink. Credit to + anonymous
  • +
  • [573131] High CVE-2016-5149: Script injection in extensions. + Credit to Max Justicz (http://web.mit.edu/maxj/www/)
  • +
  • [637963] High CVE-2016-5150: Use after free in Blink. Credit to + anonymous
  • +
  • [634716] High CVE-2016-5151: Use after free in PDFium. Credit to + anonymous
  • +
  • [629919] High CVE-2016-5152: Heap overflow in PDFium. Credit to + GiWan Go of Stealien
  • +
  • [631052] High CVE-2016-5153: Use after destruction in Blink. + Credit to Atte Kettunen of OUSPG
  • +
  • [633002] High CVE-2016-5154: Heap overflow in PDFium. Credit to + anonymous
  • +
  • [630662] High CVE-2016-5155: Address bar spoofing. Credit to + anonymous
  • +
  • [625404] High CVE-2016-5156: Use after free in event bindings. + Credit to jinmo123
  • +
  • [632622] High CVE-2016-5157: Heap overflow in PDFium. Credit to + anonymous
  • +
  • [628890] High CVE-2016-5158: Heap overflow in PDFium. Credit to + GiWan Go of Stealien
  • +
  • [628304] High CVE-2016-5159: Heap overflow in PDFium. Credit to + GiWan Go of Stealien
  • +
  • [622420] Medium CVE-2016-5161: Type confusion in Blink. Credit + to 62600BCA031B9EB5CB4A74ADDDD6771E working with Trend Micro's + Zero Day Initiative
  • +
  • [589237] Medium CVE-2016-5162: Extensions web accessible + resources bypass. Credit to Nicolas Golubovic
  • +
  • [609680] Medium CVE-2016-5163: Address bar spoofing. Credit to + Rafay Baloch PTCL Etisalat (http://rafayhackingarticles.net)
  • +
  • [637594] Medium CVE-2016-5164: Universal XSS using DevTools. + Credit to anonymous
  • +
  • [618037] Medium CVE-2016-5165: Script injection in DevTools. + Credit to Gregory Panakkal
  • +
  • [616429] Medium CVE-2016-5166: SMB Relay Attack via Save Page + As. Credit to Gregory Panakkal
  • +
  • [576867] Low CVE-2016-5160: Extensions web accessible resources + bypass. Credit to @l33terally, FogMarks.com (@FogMarks)
  • +
  • [642598] CVE-2016-5167: Various fixes from internal audits, + fuzzing and other initiatives.
  • +
+
+ +
+ + CVE-2016-5147 + CVE-2016-5148 + CVE-2016-5149 + CVE-2016-5150 + CVE-2016-5151 + CVE-2016-5152 + CVE-2016-5153 + CVE-2016-5154 + CVE-2016-5155 + CVE-2016-5156 + CVE-2016-5157 + CVE-2016-5158 + CVE-2016-5159 + CVE-2016-5160 + CVE-2016-5161 + CVE-2016-5162 + CVE-2016-5163 + CVE-2016-5164 + CVE-2016-5165 + CVE-2016-5166 + CVE-2016-5167 + https://googlechromereleases.blogspot.nl/2016/08/stable-channel-update-for-desktop_31.html + + + 2016-08-31 + 2016-09-13 + +
+ chromium -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Tue Sep 13 19:12:57 2016 Return-Path: Delivered-To: svn-ports-head@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 A6C28BD84F6; Tue, 13 Sep 2016 19:12:57 +0000 (UTC) (envelope-from amdmi3@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 68693EE2; Tue, 13 Sep 2016 19:12:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJCuVC015690; Tue, 13 Sep 2016 19:12:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJCusE015687; Tue, 13 Sep 2016 19:12:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131912.u8DJCusE015687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 19:12:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422067 - head/www/piwigo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:12:57 -0000 Author: amdmi3 Date: Tue Sep 13 19:12:56 2016 New Revision: 422067 URL: https://svnweb.freebsd.org/changeset/ports/422067 Log: - Update to 2.8.2 - Add NO_ARCH PR: 212570 Submitted by: tremere@cainites.net (maintainer) Modified: head/www/piwigo/Makefile head/www/piwigo/distinfo head/www/piwigo/pkg-plist Modified: head/www/piwigo/Makefile ============================================================================== --- head/www/piwigo/Makefile Tue Sep 13 19:11:39 2016 (r422066) +++ head/www/piwigo/Makefile Tue Sep 13 19:12:56 2016 (r422067) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= piwigo -PORTVERSION= 2.8.1 +PORTVERSION= 2.8.2 CATEGORIES= www MASTER_SITES= http://piwigo.org/download/dlcounter.php?code=${PORTVERSION}&/ @@ -13,6 +13,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/doc/COPYING NO_BUILD= yes +NO_ARCH= yes USE_PHP= calendar ctype dom exif filter gd gettext hash iconv json \ mbstring mcrypt mysql mysqli openssl pcre pdf pdo posix \ session simplexml sockets spl tokenizer xml xmlreader \ Modified: head/www/piwigo/distinfo ============================================================================== --- head/www/piwigo/distinfo Tue Sep 13 19:11:39 2016 (r422066) +++ head/www/piwigo/distinfo Tue Sep 13 19:12:56 2016 (r422067) @@ -1,2 +1,3 @@ -SHA256 (piwigo-2.8.1.zip) = f3f33725d608cf0bbaa0e35ddb993a7d804d08d9542e7b98a308286311675018 -SIZE (piwigo-2.8.1.zip) = 7564220 +TIMESTAMP = 1473541475 +SHA256 (piwigo-2.8.2.zip) = 9716b4890a519ec3b1159d35623af8981af9b6870589e2c3aeacc18311362e3c +SIZE (piwigo-2.8.2.zip) = 7570310 Modified: head/www/piwigo/pkg-plist ============================================================================== --- head/www/piwigo/pkg-plist Tue Sep 13 19:11:39 2016 (r422066) +++ head/www/piwigo/pkg-plist Tue Sep 13 19:12:56 2016 (r422067) @@ -56,6 +56,7 @@ %%WWWDIR%%/admin/include/pclzip.lib.php %%WWWDIR%%/admin/include/photos_add_direct_prepare.inc.php %%WWWDIR%%/admin/include/plugins.class.php +%%WWWDIR%%/include/srand.php %%WWWDIR%%/admin/include/tabsheet.class.php %%WWWDIR%%/admin/include/themes.class.php %%WWWDIR%%/admin/include/updates.class.php @@ -1249,6 +1250,7 @@ %%WWWDIR%%/language/id_ID/common.lang.php %%WWWDIR%%/language/id_ID/id_ID.jpg %%WWWDIR%%/language/id_ID/index.php +%%WWWDIR%%/language/id_ID/install.lang.php %%WWWDIR%%/language/id_ID/iso.txt %%WWWDIR%%/language/index.php %%WWWDIR%%/language/is_IS/about.html @@ -3333,6 +3335,7 @@ %%WWWDIR%%/themes/smartpocket/template/menubar_tags.tpl %%WWWDIR%%/themes/smartpocket/template/navigation_bar.tpl %%WWWDIR%%/themes/smartpocket/template/notification.tpl +%%WWWDIR%%/themes/smartpocket/template/password.tpl %%WWWDIR%%/themes/smartpocket/template/picture.tpl %%WWWDIR%%/themes/smartpocket/template/picture_content.tpl %%WWWDIR%%/themes/smartpocket/template/picture_nav_buttons.tpl From owner-svn-ports-head@freebsd.org Tue Sep 13 19:14:51 2016 Return-Path: Delivered-To: svn-ports-head@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 8D20BBD8663; Tue, 13 Sep 2016 19:14:51 +0000 (UTC) (envelope-from amdmi3@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 59D671E4; Tue, 13 Sep 2016 19:14:51 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJEoUw015892; Tue, 13 Sep 2016 19:14:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJEoFI015890; Tue, 13 Sep 2016 19:14:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131914.u8DJEoFI015890@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 19:14:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422068 - head/textproc/igor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:14:51 -0000 Author: amdmi3 Date: Tue Sep 13 19:14:50 2016 New Revision: 422068 URL: https://svnweb.freebsd.org/changeset/ports/422068 Log: - Update to 1.595 PR: 212533 Submitted by: wblock@FreeBSD.org (maintainer) Modified: head/textproc/igor/Makefile head/textproc/igor/distinfo Modified: head/textproc/igor/Makefile ============================================================================== --- head/textproc/igor/Makefile Tue Sep 13 19:12:56 2016 (r422067) +++ head/textproc/igor/Makefile Tue Sep 13 19:14:50 2016 (r422068) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= igor -PORTVERSION= 1.589 +PORTVERSION= 1.595 CATEGORIES= textproc MASTER_SITES= http://docscripts.glenbarber.us/tags/${PORTNAME}/${PORTVERSION}/ Modified: head/textproc/igor/distinfo ============================================================================== --- head/textproc/igor/distinfo Tue Sep 13 19:12:56 2016 (r422067) +++ head/textproc/igor/distinfo Tue Sep 13 19:14:50 2016 (r422068) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470397138 -SHA256 (igor-1.589.tar.gz) = d897fca9b19dfcede58811b8f886d7a61bf78c3770eb12c4f57f2aadc47199e8 -SIZE (igor-1.589.tar.gz) = 44306 +TIMESTAMP = 1473788169 +SHA256 (igor-1.595.tar.gz) = f0e1895235d6dac23f94759dd013a8bcb9b8d0235bfe44fb65f3a19c804810a4 +SIZE (igor-1.595.tar.gz) = 44626 From owner-svn-ports-head@freebsd.org Tue Sep 13 19:16:28 2016 Return-Path: Delivered-To: svn-ports-head@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 B1C50BD86CE; Tue, 13 Sep 2016 19:16:28 +0000 (UTC) (envelope-from amdmi3@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 6C0E039C; Tue, 13 Sep 2016 19:16:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DJGRDv016076; Tue, 13 Sep 2016 19:16:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DJGRct016074; Tue, 13 Sep 2016 19:16:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609131916.u8DJGRct016074@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 19:16:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422069 - head/mail/getmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 19:16:28 -0000 Author: amdmi3 Date: Tue Sep 13 19:16:27 2016 New Revision: 422069 URL: https://svnweb.freebsd.org/changeset/ports/422069 Log: - Update to 4.51.0 - While here, add LICENSE_FILE, switch to options helpers and fix PYTHON_SITELIBDIR/PYTHONPREFIX_SITELIBDIR misuse PR: 212602 Submitted by: jrm@ftfl.ca (maintainer) Modified: head/mail/getmail/Makefile head/mail/getmail/distinfo Modified: head/mail/getmail/Makefile ============================================================================== --- head/mail/getmail/Makefile Tue Sep 13 19:14:50 2016 (r422068) +++ head/mail/getmail/Makefile Tue Sep 13 19:16:27 2016 (r422069) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= getmail -PORTVERSION= 4.50.0 +PORTVERSION= 4.51.0 CATEGORIES= mail python MASTER_SITES= http://pyropus.ca/software/getmail/old-versions/ @@ -10,18 +10,24 @@ MAINTAINER= jrm@ftfl.ca COMMENT= POP3/IMAP4 mail retriever with Maildir and command delivery LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/docs/COPYING USES= python:2 USE_PYTHON= distutils +NO_ARCH= yes PORTDOCS= README BUGS CHANGELOG THANKS TODO *.txt *.html *.css OPTIONS_DEFINE= DOCS EXAMPLES post-install: - @${CHMOD} -R 644 ${STAGEDIR}${PYTHON_SITELIBDIR}/getmailcore/* + @${CHMOD} -R 644 ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/getmailcore/* + +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/docs/getmailrc-examples ${STAGEDIR}${EXAMPLESDIR} + +post-install-DOCS-on: @${CP} ${WRKSRC}/README ${WRKSRC}/docs/ @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${STAGEDIR}${DOCSDIR} Modified: head/mail/getmail/distinfo ============================================================================== --- head/mail/getmail/distinfo Tue Sep 13 19:14:50 2016 (r422068) +++ head/mail/getmail/distinfo Tue Sep 13 19:16:27 2016 (r422069) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468515462 -SHA256 (getmail-4.50.0.tar.gz) = fcbc77b9a14a2798a50725af9488d292bc97e983997947df1b9dcd9a0e288bc1 -SIZE (getmail-4.50.0.tar.gz) = 150892 +TIMESTAMP = 1473683166 +SHA256 (getmail-4.51.0.tar.gz) = bc2254f6f0f23eb65c69df343a743048b8ce93cc51fc8ee0c2e7652a4c95eddb +SIZE (getmail-4.51.0.tar.gz) = 190612 From owner-svn-ports-head@freebsd.org Tue Sep 13 20:00:38 2016 Return-Path: Delivered-To: svn-ports-head@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 4498FBD79F2; Tue, 13 Sep 2016 20:00:38 +0000 (UTC) (envelope-from amdmi3@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 0A141686; Tue, 13 Sep 2016 20:00:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DK0bJc032024; Tue, 13 Sep 2016 20:00:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DK0bOm032021; Tue, 13 Sep 2016 20:00:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609132000.u8DK0bOm032021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 20:00:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422072 - head/x11-themes/qt5-style-Kvantum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:00:38 -0000 Author: amdmi3 Date: Tue Sep 13 20:00:36 2016 New Revision: 422072 URL: https://svnweb.freebsd.org/changeset/ports/422072 Log: - Update to 0.10.2 PR: 212585 Submitted by: matthew@reztek.cz (maintainer) Modified: head/x11-themes/qt5-style-Kvantum/Makefile head/x11-themes/qt5-style-Kvantum/distinfo head/x11-themes/qt5-style-Kvantum/pkg-plist Modified: head/x11-themes/qt5-style-Kvantum/Makefile ============================================================================== --- head/x11-themes/qt5-style-Kvantum/Makefile Tue Sep 13 20:00:05 2016 (r422071) +++ head/x11-themes/qt5-style-Kvantum/Makefile Tue Sep 13 20:00:36 2016 (r422072) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Kvantum -PORTVERSION= 0.10.1 +PORTVERSION= 0.10.2 DISTVERSIONPREFIX= V CATEGORIES= x11-themes PKGNAMEPREFIX= qt5-style- Modified: head/x11-themes/qt5-style-Kvantum/distinfo ============================================================================== --- head/x11-themes/qt5-style-Kvantum/distinfo Tue Sep 13 20:00:05 2016 (r422071) +++ head/x11-themes/qt5-style-Kvantum/distinfo Tue Sep 13 20:00:36 2016 (r422072) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470827444 -SHA256 (tsujan-Kvantum-V0.10.1_GH0.tar.gz) = ac4e702ef26c0e77dc921b943e42a13e1260fe3d7414d8fdac4aec3e12ccdfb5 -SIZE (tsujan-Kvantum-V0.10.1_GH0.tar.gz) = 1122666 +TIMESTAMP = 1473512363 +SHA256 (tsujan-Kvantum-V0.10.2_GH0.tar.gz) = 6913ee5f351a852d34eabe1f2eb2dcba1ba7fcc69ad864c160a72030d9b16642 +SIZE (tsujan-Kvantum-V0.10.2_GH0.tar.gz) = 1186271 Modified: head/x11-themes/qt5-style-Kvantum/pkg-plist ============================================================================== --- head/x11-themes/qt5-style-Kvantum/pkg-plist Tue Sep 13 20:00:05 2016 (r422071) +++ head/x11-themes/qt5-style-Kvantum/pkg-plist Tue Sep 13 20:00:36 2016 (r422072) @@ -1,6 +1,12 @@ bin/kvantummanager bin/kvantumpreview %%QT_PLUGINDIR%%/styles/libkvantum.so +%%DATADIR%%/KvAmbiance/KvAmbiance.kvconfig +%%DATADIR%%/KvAmbiance/KvAmbiance.svg +%%DATADIR%%/KvAmbience/KvAmbience.kvconfig +%%DATADIR%%/KvAmbience/KvAmbience.svg +%%DATADIR%%/KvArc/KvArc.kvconfig +%%DATADIR%%/KvArc/KvArc.svg %%DATADIR%%/KvBeige/KvBeige.kvconfig %%DATADIR%%/KvBeige/KvBeige.svg %%DATADIR%%/KvCurves/KvCurves.kvconfig @@ -41,6 +47,8 @@ bin/kvantumpreview %%DATADIR%%/KvSimplicityDark/KvSimplicityDark.svg %%DATADIR%%/KvantumAlt/KvantumAlt.kvconfig share/applications/kvantummanager.desktop +share/apps/color-schemes/KvAmbience.colors +share/apps/color-schemes/KvArc.colors share/apps/color-schemes/KvBeige.colors share/apps/color-schemes/KvCurves.colors share/apps/color-schemes/KvCurvesLight.colors @@ -56,6 +64,8 @@ share/apps/color-schemes/KvOxygen.colors share/apps/color-schemes/KvRoughGlass.colors share/apps/color-schemes/KvSimplicity.colors share/apps/color-schemes/KvSimplicityDark.colors +share/color-schemes/KvAmbience.colors +share/color-schemes/KvArc.colors share/color-schemes/KvBeige.colors share/color-schemes/KvCurves.colors share/color-schemes/KvCurvesLight.colors @@ -73,6 +83,57 @@ share/color-schemes/KvSimplicity.colors share/color-schemes/KvSimplicityDark.colors share/color-schemes/Kvantum.colors share/icons/hicolor/scalable/apps/kvantum.svg +share/themes/KvAmbiance/openbox-3/close.xbm +share/themes/KvAmbiance/openbox-3/close_hover.xbm +share/themes/KvAmbiance/openbox-3/close_pressed.xbm +share/themes/KvAmbiance/openbox-3/desk.xbm +share/themes/KvAmbiance/openbox-3/desk_hover.xbm +share/themes/KvAmbiance/openbox-3/desk_toggled.xbm +share/themes/KvAmbiance/openbox-3/iconify.xbm +share/themes/KvAmbiance/openbox-3/iconify_hover.xbm +share/themes/KvAmbiance/openbox-3/iconify_pressed.xbm +share/themes/KvAmbiance/openbox-3/max.xbm +share/themes/KvAmbiance/openbox-3/max_hover.xbm +share/themes/KvAmbiance/openbox-3/max_pressed.xbm +share/themes/KvAmbiance/openbox-3/max_toggled.xbm +share/themes/KvAmbiance/openbox-3/shade.xbm +share/themes/KvAmbiance/openbox-3/shade_hover.xbm +share/themes/KvAmbiance/openbox-3/shade_pressed.xbm +share/themes/KvAmbiance/openbox-3/themerc +share/themes/KvAmbience/openbox-3/close.xbm +share/themes/KvAmbience/openbox-3/close_hover.xbm +share/themes/KvAmbience/openbox-3/close_pressed.xbm +share/themes/KvAmbience/openbox-3/desk.xbm +share/themes/KvAmbience/openbox-3/desk_hover.xbm +share/themes/KvAmbience/openbox-3/desk_toggled.xbm +share/themes/KvAmbience/openbox-3/iconify.xbm +share/themes/KvAmbience/openbox-3/iconify_hover.xbm +share/themes/KvAmbience/openbox-3/iconify_pressed.xbm +share/themes/KvAmbience/openbox-3/max.xbm +share/themes/KvAmbience/openbox-3/max_hover.xbm +share/themes/KvAmbience/openbox-3/max_pressed.xbm +share/themes/KvAmbience/openbox-3/max_toggled.xbm +share/themes/KvAmbience/openbox-3/shade.xbm +share/themes/KvAmbience/openbox-3/shade_hover.xbm +share/themes/KvAmbience/openbox-3/shade_pressed.xbm +share/themes/KvAmbience/openbox-3/themerc +share/themes/KvArc/openbox-3/close.xbm +share/themes/KvArc/openbox-3/close_hover.xbm +share/themes/KvArc/openbox-3/close_pressed.xbm +share/themes/KvArc/openbox-3/desk.xbm +share/themes/KvArc/openbox-3/desk_hover.xbm +share/themes/KvArc/openbox-3/desk_toggled.xbm +share/themes/KvArc/openbox-3/iconify.xbm +share/themes/KvArc/openbox-3/iconify_hover.xbm +share/themes/KvArc/openbox-3/iconify_pressed.xbm +share/themes/KvArc/openbox-3/max.xbm +share/themes/KvArc/openbox-3/max_hover.xbm +share/themes/KvArc/openbox-3/max_pressed.xbm +share/themes/KvArc/openbox-3/max_toggled.xbm +share/themes/KvArc/openbox-3/shade.xbm +share/themes/KvArc/openbox-3/shade_hover.xbm +share/themes/KvArc/openbox-3/shade_pressed.xbm +share/themes/KvArc/openbox-3/themerc share/themes/KvBeige/openbox-3/close.xbm share/themes/KvBeige/openbox-3/close_hover.xbm share/themes/KvBeige/openbox-3/close_pressed.xbm From owner-svn-ports-head@freebsd.org Tue Sep 13 20:06:30 2016 Return-Path: Delivered-To: svn-ports-head@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 058B9BD7C9D; Tue, 13 Sep 2016 20:06:30 +0000 (UTC) (envelope-from tcberner@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 D2A7CBB5; Tue, 13 Sep 2016 20:06:29 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DK6TVY035890; Tue, 13 Sep 2016 20:06:29 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DK6SqP035886; Tue, 13 Sep 2016 20:06:28 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609132006.u8DK6SqP035886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 13 Sep 2016 20:06:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422073 - in head/databases: . sqlitebrowser sqlitebrowser-qt5 sqlitebrowser-qt5/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:06:30 -0000 Author: tcberner Date: Tue Sep 13 20:06:28 2016 New Revision: 422073 URL: https://svnweb.freebsd.org/changeset/ports/422073 Log: Add new port databases/sqlitebrowser-qt5 as slaveport of databases/sqlitebrowser Add a new port databases/sqlitebrowser-qt5 as slaveport of the existing databases/sqlitebrowser. PR: 211217 Reviewed by: mat Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7253 Added: head/databases/sqlitebrowser-qt5/ - copied from r422070, head/databases/sqlitebrowser/ Deleted: head/databases/sqlitebrowser-qt5/distinfo head/databases/sqlitebrowser-qt5/files/ head/databases/sqlitebrowser-qt5/pkg-descr head/databases/sqlitebrowser-qt5/pkg-plist Modified: head/databases/Makefile head/databases/sqlitebrowser-qt5/Makefile head/databases/sqlitebrowser/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Sep 13 20:00:36 2016 (r422072) +++ head/databases/Makefile Tue Sep 13 20:06:28 2016 (r422073) @@ -964,6 +964,7 @@ SUBDIR += sqlite2 SUBDIR += sqlite3 SUBDIR += sqlitebrowser + SUBDIR += sqlitebrowser-qt5 SUBDIR += sqliteman SUBDIR += sqlitemanager SUBDIR += sqliteodbc Modified: head/databases/sqlitebrowser-qt5/Makefile ============================================================================== --- head/databases/sqlitebrowser/Makefile Tue Sep 13 19:22:41 2016 (r422070) +++ head/databases/sqlitebrowser-qt5/Makefile Tue Sep 13 20:06:28 2016 (r422073) @@ -1,30 +1,12 @@ -# Created by: loïc bartoletti +# Created by: Tobias C. Berner # $FreeBSD$ PORTNAME= sqlitebrowser -PORTVERSION= 3.8.0 -DISTVERSIONPREFIX= v -CATEGORIES= databases +PORTREVERSION= 0 +PKGNAMESUFFIX= -qt5 -MAINTAINER= coder@tuxfamily.org -COMMENT= DB Browser for SQLite is a visual tool to manage SQLite databases +CONFLICTS_INSTALL= ${PORTNAME}-3.* -LICENSE= MPL GPLv3 -LICENSE_COMB= dual +MASTERDIR= ${.CURDIR:H}/sqlitebrowser -USE_GITHUB= yes - -USES= cmake desktop-file-utils sqlite -USE_QT4= corelib network gui qmake_build linguisttools_build \ - moc_build uic_build rcc_build - -INSTALLS_ICONS= yes - -post-patch: - @${ECHO} ${DATADIR} - @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \ - ${WRKSRC}/src/PreferencesDialog.cpp - @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \ - ${WRKSRC}/src/Application.cpp - -.include +.include "${MASTERDIR}/Makefile" Modified: head/databases/sqlitebrowser/Makefile ============================================================================== --- head/databases/sqlitebrowser/Makefile Tue Sep 13 20:00:36 2016 (r422072) +++ head/databases/sqlitebrowser/Makefile Tue Sep 13 20:06:28 2016 (r422073) @@ -4,24 +4,32 @@ PORTNAME= sqlitebrowser PORTVERSION= 3.8.0 DISTVERSIONPREFIX= v +PORTREVISION?= 1 CATEGORIES= databases MAINTAINER= coder@tuxfamily.org COMMENT= DB Browser for SQLite is a visual tool to manage SQLite databases +CONFLICTS_INSTALL?= ${PORTNAME}-qt5-* + LICENSE= MPL GPLv3 LICENSE_COMB= dual USE_GITHUB= yes USES= cmake desktop-file-utils sqlite + +.if empty(PKGNAMESUFFIX) USE_QT4= corelib network gui qmake_build linguisttools_build \ moc_build uic_build rcc_build - -INSTALLS_ICONS= yes +CMAKE_ARGS+= -DUSE_QT5:BOOL=FALSE +.else +USE_QT5= core gui network printsupport testlib widgets \ + buildtools_build linguisttools_build qmake_build +CMAKE_ARGS+= -DUSE_QT5:BOOL=TRUE +.endif post-patch: - @${ECHO} ${DATADIR} @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \ ${WRKSRC}/src/PreferencesDialog.cpp @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \ From owner-svn-ports-head@freebsd.org Tue Sep 13 20:09:19 2016 Return-Path: Delivered-To: svn-ports-head@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 C59CCBD7D5F; Tue, 13 Sep 2016 20:09:19 +0000 (UTC) (envelope-from brnrd@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 9E66DD22; Tue, 13 Sep 2016 20:09:19 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DK9Iko036239; Tue, 13 Sep 2016 20:09:18 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DK9IBW036232; Tue, 13 Sep 2016 20:09:18 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609132009.u8DK9IBW036232@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 13 Sep 2016 20:09:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422074 - in head: . security security/dehydrated security/dehydrated/files security/letsencrypt.sh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:09:19 -0000 Author: brnrd Date: Tue Sep 13 20:09:17 2016 New Revision: 422074 URL: https://svnweb.freebsd.org/changeset/ports/422074 Log: security/dehydrated: Rename from letsencrypt.sh - Add entry to MOVED - Rename/move entry in security/Makefile - Update to 0.3.1 - Replace all filenames and paths containing letsencrypt - Fix error in periodic file (su -m + _flags) - Improve text in periodic file (_deploy) - Add warning to periodic script and pkg-message Added: head/security/dehydrated/ - copied from r422073, head/security/letsencrypt.sh/ head/security/dehydrated/files/000.dehydrated.in - copied, changed from r422070, head/security/letsencrypt.sh/files/000.letsencrypt.sh.in Deleted: head/security/dehydrated/files/000.letsencrypt.sh.in head/security/letsencrypt.sh/ Modified: head/MOVED head/security/Makefile head/security/dehydrated/Makefile head/security/dehydrated/distinfo head/security/dehydrated/files/pkg-message.in head/security/dehydrated/pkg-descr Modified: head/MOVED ============================================================================== --- head/MOVED Tue Sep 13 20:06:28 2016 (r422073) +++ head/MOVED Tue Sep 13 20:09:17 2016 (r422074) @@ -8629,3 +8629,4 @@ www/moodle28||2016-09-13|Has expired: EO devel/php5-msgpack|devel/pecl-msgpack|2016-09-13|Has expired: This is an older version of the software, please use devel/pecl-msgpack. textproc/asciinema|textproc/py3-asciinema|2016-09-13|Has expired: use textproc/py3-asciinema instead x11-toolkits/qtada||2016-09-13|Has expired: No development since 2012, usefulness unclear +security/letsencrypt.sh|security/dehydrated|2016-09-13|Upstream renamed the project Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Sep 13 20:06:28 2016 (r422073) +++ head/security/Makefile Tue Sep 13 20:09:17 2016 (r422074) @@ -102,6 +102,7 @@ SUBDIR += d0_blind_id SUBDIR += dcetest SUBDIR += ddos_scan + SUBDIR += dehydrated SUBDIR += denyhosts SUBDIR += destroy SUBDIR += digest @@ -290,7 +291,6 @@ SUBDIR += l5 SUBDIR += lasso SUBDIR += lastpass-cli - SUBDIR += letsencrypt.sh SUBDIR += libadacrypt SUBDIR += libargon2 SUBDIR += libassuan Modified: head/security/dehydrated/Makefile ============================================================================== --- head/security/letsencrypt.sh/Makefile Tue Sep 13 20:06:28 2016 (r422073) +++ head/security/dehydrated/Makefile Tue Sep 13 20:09:17 2016 (r422074) @@ -1,7 +1,7 @@ # $FreeBSD$ -PORTNAME= letsencrypt.sh -PORTVERSION= 0.3.0 +PORTNAME= dehydrated +PORTVERSION= 0.3.1 DISTVERSIONPREFIX= v CATEGORIES= security @@ -31,33 +31,33 @@ BASH_RUN_DEPENDS= bash:shells/bash ZSH_RUN_DEPENDS= zsh:shells/zsh PERIODIC_DIRS= etc/periodic/weekly -PERIODIC_FILES= 000.letsencrypt.sh +PERIODIC_FILES= 000.dehydrated PLIST_DIRS= %%ETCDIR%%/.acme-challenges \ - www/letsencrypt -PLIST_FILES= bin/letsencrypt.sh \ + www/dehydrated +PLIST_FILES= bin/dehydrated \ %%ETCDIR%%/config.example \ %%ETCDIR%%/hook.sh.example \ %%ETCDIR%%/domains.txt.example \ - ${PERIODIC_DIRS}/000.letsencrypt.sh + ${PERIODIC_DIRS}/000.dehydrated PORTDOCS_PLIST_FILES= %%PORTDOCS%%%%DOCSDIR%%/README.md -SUB_FILES= 000.letsencrypt.sh pkg-message +SUB_FILES= 000.dehydrated pkg-message SUB_LIST= PORTNAME=${PORTNAME} PORTDOCS= README.md dns-verification.md domains_txt.md ecc.md hook_chain.md \ import-from-official-client.md per-certificate-config.md staging.md \ troubleshooting.md wellknown.md -SHEBANG_FILES= docs/examples/hook.sh letsencrypt.sh +SHEBANG_FILES= docs/examples/hook.sh dehydrated post-patch: -. for f in docs/examples/config letsencrypt.sh - ${REINPLACE_CMD} 's|/var/www/letsencrypt|${PREFIX}/www/letsencrypt|' \ +. for f in docs/examples/config dehydrated + ${REINPLACE_CMD} 's|/var/www/dehydrated|${PREFIX}/www/dehydrated|' \ ${WRKSRC}/${f} . endfor post-patch-ZSH-on: -. for p in docs/examples/config docs/examples/hook.sh letsencrypt.sh +. for p in docs/examples/config docs/examples/hook.sh dehydrated ${REINPLACE_CMD} '1 s/bash/zsh/' ${WRKSRC}/${p} . endfor @@ -77,6 +77,6 @@ do-install: . endfor post-stage: - ${MKDIR} ${STAGEDIR}${PREFIX}/www/letsencrypt + ${MKDIR} ${STAGEDIR}${PREFIX}/www/dehydrated .include Modified: head/security/dehydrated/distinfo ============================================================================== --- head/security/letsencrypt.sh/distinfo Tue Sep 13 20:06:28 2016 (r422073) +++ head/security/dehydrated/distinfo Tue Sep 13 20:09:17 2016 (r422074) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473333268 -SHA256 (lukas2511-letsencrypt.sh-v0.3.0_GH0.tar.gz) = c04ada782c93082e760c89122c9fdf68802c67c86a38b3fd5a83bb66dc0701d0 -SIZE (lukas2511-letsencrypt.sh-v0.3.0_GH0.tar.gz) = 21530 +TIMESTAMP = 1473795613 +SHA256 (lukas2511-dehydrated-v0.3.1_GH0.tar.gz) = 7c9b9475b442dd19dbc33a26426444054781e14a2f122d2a2405f81093484239 +SIZE (lukas2511-dehydrated-v0.3.1_GH0.tar.gz) = 71375 Copied and modified: head/security/dehydrated/files/000.dehydrated.in (from r422070, head/security/letsencrypt.sh/files/000.letsencrypt.sh.in) ============================================================================== --- head/security/letsencrypt.sh/files/000.letsencrypt.sh.in Tue Sep 13 19:22:41 2016 (r422070, copy source) +++ head/security/dehydrated/files/000.dehydrated.in Tue Sep 13 20:09:17 2016 (r422074) @@ -11,23 +11,41 @@ export PATH case "$weekly_letsencrypt_enable" in [Yy][Ee][Ss]) + echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' + echo '!! WARNING: letsencrypt.sh has been renamed to dehydrated !!' + echo '!! rename all weekly_letsencrypt_* periodic variables !!' + echo '!! to weekly_dehydrated_* in your periodic.conf !!' + echo '|| and mv /usr/local/etc/{letsencrypt,dehydrated} ||' + echo '|| default challenge path has been renamed as well ||' + echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' + : ${weekly_dehydrated_enable:=$weekly_letsencrypt_enable} + : ${weekly_dehydrated_user:=$weekly_letsencrypt_user} + : ${weekly_dehydrated_flags:=$weekly_letsencrypt_flags} + : ${weekly_dehydrated_deployscript:=$weekly_letsencrypt_deployscript} + ;; + *) + ;; +esac + +case "$weekly_dehydrated_enable" in + [Yy][Ee][Ss]) echo echo "Checking Let's Encrypt certificate status:" - if [ -z "$weekly_letsencrypt_user" ] + if [ -z "$weekly_dehydrated_user" ] then - %%PREFIX%%/bin/letsencrypt.sh -c $weekly_letsencrypt_flags + %%PREFIX%%/bin/dehydrated -c $weekly_dehydrated_flags else - su -m "$weekly_letsencrypt_user" -c "%%PREFIX%%/bin/letsencrypt.sh -c $daily_status_disks_df_flags" + su -m "$weekly_dehydrated_user" -c "%%PREFIX%%/bin/dehydrated" -c $weekly_dehydrated_flags fi echo "Deploying Let's Encrypt certificates:" - if [ -x "$weekly_letsencrypt_deployscript" ] + if [ -x "$weekly_dehydrated_deployscript" ] then - $weekly_letsencrypt_deployscript + $weekly_dehydrated_deployscript else - echo 'Skipped, deploy script not set.' + echo 'Skipped, deploy script not set or not executable.' fi ;; *) Modified: head/security/dehydrated/files/pkg-message.in ============================================================================== --- head/security/letsencrypt.sh/files/pkg-message.in Tue Sep 13 20:06:28 2016 (r422073) +++ head/security/dehydrated/files/pkg-message.in Tue Sep 13 20:09:17 2016 (r422074) @@ -1,3 +1,10 @@ +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +!! WARNING: letsencrypt.sh has been renamed to dehydrated !! +!! rename all weekly_letsencrypt_* periodic variables !! +!! to weekly_dehydrated_* in your periodic.conf !! +|| and mv /usr/local/etc/{letsencrypt,dehydrated} || +|| default challenge path has been renamed as well || +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! To use this script you should copy the examples in %%PREFIX%%/etc/%%PORTNAME%%/ and at least add a @@ -6,17 +13,17 @@ domain and a contact mail address. In order to run the script regularly to update the certificates add this line to /etc/periodic.conf -weekly_letsencrypt_enable="YES" +weekly_dehydrated_enable="YES" Additionally the following parameters can be added to /etc/periodic.conf To run the certification renenewal as a different user -weekly_letsencrypt_user="_letsencrypt" +weekly_dehydrated_user="_letsencrypt" To run a script after the renewal (as root) -weekly_letsencrypt_deployscript="%%PREFIX%%/etc/%%PORTNAME%%/deploy.sh" +weekly_dehydrated_deployscript="%%PREFIX%%/etc/%%PORTNAME%%/deploy.sh" Additional flags for the periodic run go into -weekly_letsencrypt_flags="-g" +weekly_dehydrated_flags="-g" Modified: head/security/dehydrated/pkg-descr ============================================================================== --- head/security/letsencrypt.sh/pkg-descr Tue Sep 13 20:06:28 2016 (r422073) +++ head/security/dehydrated/pkg-descr Tue Sep 13 20:09:17 2016 (r422074) @@ -1,4 +1,4 @@ -Letencrypt.sh is a pure BASH implementation of the ACME +dehydrated is a pure BASH implementation of the ACME protocol used by Lets Encrypt. -WWW: https://github.com/lukas2511/letsencrypt.sh +WWW: https://github.com/lukas2511/dehydrated From owner-svn-ports-head@freebsd.org Tue Sep 13 20:12:22 2016 Return-Path: Delivered-To: svn-ports-head@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 2A995BD902A; Tue, 13 Sep 2016 20:12:22 +0000 (UTC) (envelope-from rene@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 D4661295; Tue, 13 Sep 2016 20:12:21 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKCLjx039224; Tue, 13 Sep 2016 20:12:21 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKCLZo039223; Tue, 13 Sep 2016 20:12:21 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609132012.u8DKCLZo039223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 20:12:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422076 - head/devel/py-dogpile.core X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:12:22 -0000 Author: rene Date: Tue Sep 13 20:12:20 2016 New Revision: 422076 URL: https://svnweb.freebsd.org/changeset/ports/422076 Log: Manually remove expired devel/py-dogpile.core Deleted: head/devel/py-dogpile.core/ From owner-svn-ports-head@freebsd.org Tue Sep 13 20:14:00 2016 Return-Path: Delivered-To: svn-ports-head@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 DE508BD91F9; Tue, 13 Sep 2016 20:14:00 +0000 (UTC) (envelope-from amdmi3@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 B116E952; Tue, 13 Sep 2016 20:14:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKDxIm040121; Tue, 13 Sep 2016 20:13:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKDxuv040119; Tue, 13 Sep 2016 20:13:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609132013.u8DKDxuv040119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 20:13:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422078 - head/security/pecl-ssh2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:14:01 -0000 Author: amdmi3 Date: Tue Sep 13 20:13:59 2016 New Revision: 422078 URL: https://svnweb.freebsd.org/changeset/ports/422078 Log: - Update to 0.13 - Add LICENSE_FILE - Take maintainership PR: 212506 Submitted by: dbaio@bsd.com.br Modified: head/security/pecl-ssh2/Makefile head/security/pecl-ssh2/distinfo Modified: head/security/pecl-ssh2/Makefile ============================================================================== --- head/security/pecl-ssh2/Makefile Tue Sep 13 20:13:04 2016 (r422077) +++ head/security/pecl-ssh2/Makefile Tue Sep 13 20:13:59 2016 (r422078) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= ssh2 -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.13 CATEGORIES= security pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= PECL extension to the libssh2 library LICENSE= PHP301 +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libssh2.so:security/libssh2 Modified: head/security/pecl-ssh2/distinfo ============================================================================== --- head/security/pecl-ssh2/distinfo Tue Sep 13 20:13:04 2016 (r422077) +++ head/security/pecl-ssh2/distinfo Tue Sep 13 20:13:59 2016 (r422078) @@ -1,2 +1,3 @@ -SHA256 (ssh2-0.12.tgz) = 600c82d2393acf3642f19914f06a7afea57ee05cb8c10e8a5510b32188b97f99 -SIZE (ssh2-0.12.tgz) = 26223 +TIMESTAMP = 1473275266 +SHA256 (ssh2-0.13.tgz) = cb2cb8ab840b5b36bcd8a8df06ea4a970a61e4cb3980f3c0ac5c913522e6c1be +SIZE (ssh2-0.13.tgz) = 28984 From owner-svn-ports-head@freebsd.org Tue Sep 13 20:14:13 2016 Return-Path: Delivered-To: svn-ports-head@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 BA841BD9261; Tue, 13 Sep 2016 20:14:13 +0000 (UTC) (envelope-from rene@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 8B048A70; Tue, 13 Sep 2016 20:14:13 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKECH4040235; Tue, 13 Sep 2016 20:14:12 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKECCD040234; Tue, 13 Sep 2016 20:14:12 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609132014.u8DKECCD040234@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 20:14:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422079 - head/devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:14:13 -0000 Author: rene Date: Tue Sep 13 20:14:12 2016 New Revision: 422079 URL: https://svnweb.freebsd.org/changeset/ports/422079 Log: Do not break INDEX Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 13 20:13:59 2016 (r422078) +++ head/devel/Makefile Tue Sep 13 20:14:12 2016 (r422079) @@ -4096,7 +4096,6 @@ SUBDIR += py-docker-py SUBDIR += py-docopt SUBDIR += py-dogpile.cache - SUBDIR += py-dogpile.core SUBDIR += py-doit SUBDIR += py-durus SUBDIR += py-dynrules From owner-svn-ports-head@freebsd.org Tue Sep 13 20:15:44 2016 Return-Path: Delivered-To: svn-ports-head@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 11728BD9456; Tue, 13 Sep 2016 20:15:44 +0000 (UTC) (envelope-from rene@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 D63ACD84; Tue, 13 Sep 2016 20:15:43 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKFhVp040378; Tue, 13 Sep 2016 20:15:43 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKFh1x040377; Tue, 13 Sep 2016 20:15:43 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609132015.u8DKFh1x040377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 13 Sep 2016 20:15:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422080 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:15:44 -0000 Author: rene Date: Tue Sep 13 20:15:42 2016 New Revision: 422080 URL: https://svnweb.freebsd.org/changeset/ports/422080 Log: Add MOVED entry for devel/py-dogpile.core Modified: head/MOVED Modified: head/MOVED ============================================================================== --- head/MOVED Tue Sep 13 20:14:12 2016 (r422079) +++ head/MOVED Tue Sep 13 20:15:42 2016 (r422080) @@ -8630,3 +8630,4 @@ devel/php5-msgpack|devel/pecl-msgpack|20 textproc/asciinema|textproc/py3-asciinema|2016-09-13|Has expired: use textproc/py3-asciinema instead x11-toolkits/qtada||2016-09-13|Has expired: No development since 2012, usefulness unclear security/letsencrypt.sh|security/dehydrated|2016-09-13|Upstream renamed the project +devel/py-dogpile.core|devel/py-dogpile.cache|2016-09-13|EOL upstream. Merged into devel/py-dogpile.cache since 0.6.0 From owner-svn-ports-head@freebsd.org Tue Sep 13 20:18:02 2016 Return-Path: Delivered-To: svn-ports-head@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 61BC7BD97AD; Tue, 13 Sep 2016 20:18:02 +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 2214D295; Tue, 13 Sep 2016 20:18:02 +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 u8DKI1GD040592; Tue, 13 Sep 2016 20:18:01 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKI02v040588; Tue, 13 Sep 2016 20:18:00 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609132018.u8DKI02v040588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 13 Sep 2016 20:18:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422081 - in head/net/wpa_gui: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:18:02 -0000 Author: pi Date: Tue Sep 13 20:18:00 2016 New Revision: 422081 URL: https://svnweb.freebsd.org/changeset/ports/422081 Log: net/wpa_gui: Several improvements - Adds DEBUG option to simplify troubleshooting - Adds debug logging of wpa_supplicant control interface - Installs the manpage - Adds USE_QT4=corelib - Makes wpa_gui executable setuid to allow it to easily connect to wpa_supplicant control socket - Fixes the problem that wpa_gui sometimes picks up .pid file instead of the control interface PR: 211214 Submitted by: Yuri Victorovich Reviewed by: koobs Added: head/net/wpa_gui/files/patch-wpa_ctrl.c (contents, props changed) head/net/wpa_gui/files/patch-wpagui.cpp (contents, props changed) head/net/wpa_gui/files/pkg-message.in (contents, props changed) Modified: head/net/wpa_gui/Makefile Modified: head/net/wpa_gui/Makefile ============================================================================== --- head/net/wpa_gui/Makefile Tue Sep 13 20:15:42 2016 (r422080) +++ head/net/wpa_gui/Makefile Tue Sep 13 20:18:00 2016 (r422081) @@ -3,6 +3,7 @@ PORTNAME= wpa_gui PORTVERSION= 2.5 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://w1.fi/releases/ \ http://partmedia.users.sourceforge.net/dist/:icons \ @@ -18,19 +19,33 @@ LICENSE= BSD3CLAUSE WRKSRC_SUBDIR= wpa_supplicant/wpa_gui-qt4 -PLIST_FILES= sbin/wpa_gui \ +PLIST_FILES= "@mode 4555" \ + sbin/wpa_gui \ + "@mode" \ share/applications/wpa_gui.desktop \ share/icons/hicolor/16x16/apps/wpa_gui.png \ - share/icons/hicolor/scalable/apps/wpa_gui.svg + share/icons/hicolor/scalable/apps/wpa_gui.svgz \ + man/man8/wpa_gui.8.gz -USE_QT4= gui moc_build rcc_build uic_build +SUB_FILES= pkg-message +SUB_LIST= LOCALBASE=${LOCALBASE} + +USE_QT4= corelib gui moc_build rcc_build uic_build USES= qmake +INSTALLS_ICONS= yes + +OPTIONS_DEFINE= DEBUG post-patch: @${REINPLACE_CMD} -e \ '/^Exec/s|=.*|=${PREFIX}/sbin/wpa_gui|' \ ${WRKSRC}/wpa_gui.desktop +post-patch-DEBUG-on: + @${REINPLACE_CMD} -e \ + 's| release| debug|' \ + ${WRKSRC}/wpa_gui.pro + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/wpa_gui.desktop ${STAGEDIR}${PREFIX}/share/applications @@ -38,7 +53,9 @@ do-install: ${INSTALL_DATA} ${WRKDIR}/icons/hicolor/16x16/apps/wpa_gui.png \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/16x16/apps ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps - ${INSTALL_DATA} ${WRKSRC}/icons/wpa_gui.svg \ - ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps + @${GZIP_CMD} < ${WRKSRC}/icons/wpa_gui.svg \ + > ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/wpa_gui.svgz + @${GZIP_CMD} < ${WRKSRC}/../doc/docbook/wpa_gui.8 \ + > ${STAGEDIR}${PREFIX}/man/man8/wpa_gui.8.gz .include Added: head/net/wpa_gui/files/patch-wpa_ctrl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wpa_gui/files/patch-wpa_ctrl.c Tue Sep 13 20:18:00 2016 (r422081) @@ -0,0 +1,23 @@ +--- ../../src/common/wpa_ctrl.c.orig 2016-07-18 19:31:51.725862000 -0700 ++++ ../../src/common/wpa_ctrl.c +@@ -477,6 +477,10 @@ + char *cmd_buf = NULL; + size_t _cmd_len; + ++#ifndef QT_NO_DEBUG ++ fprintf(stderr, "CMD-SEND: %*s\n", cmd_len, cmd); ++#endif // QT_NO_DEBUG ++ + #ifdef CONFIG_CTRL_IFACE_UDP + if (ctrl->cookie) { + char *pos; +@@ -554,6 +558,9 @@ + continue; + } + *reply_len = res; ++#ifndef QT_NO_DEBUG ++ fprintf(stderr, "CMD-RECV: %*s\n", *reply_len, reply); ++#endif // QT_NO_DEBUG + break; + } else { + return -2; Added: head/net/wpa_gui/files/patch-wpagui.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wpa_gui/files/patch-wpagui.cpp Tue Sep 13 20:18:00 2016 (r422081) @@ -0,0 +1,12 @@ +--- wpagui.cpp.orig 2015-09-27 19:02:05 UTC ++++ wpagui.cpp +@@ -302,7 +302,8 @@ int WpaGui::openCtrlConnection(const cha + #endif /* _DIRENT_HAVE_D_TYPE */ + + if (strcmp(dent->d_name, ".") == 0 || +- strcmp(dent->d_name, "..") == 0) ++ strcmp(dent->d_name, "..") == 0 || ++ (strlen(dent->d_name) > strlen(".pid") && !strcmp(dent->d_name + strlen(dent->d_name) - strlen(".pid"), ".pid"))) + continue; + debug("Selected interface '%s'", + dent->d_name); Added: head/net/wpa_gui/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wpa_gui/files/pkg-message.in Tue Sep 13 20:18:00 2016 (r422081) @@ -0,0 +1,13 @@ +====================================================================== +You installed wpa_gui: Qt frontend for wpa_supplicant. + +It expects the running wpa_supplicant from the port +security/wpa_supplicant. In order to use wpa_gui you need: +* to have the functioning wifi network interface +* to install the wpa_supplicant port security/wpa_supplicant +* to run the wpa_supplicant: + # sysrc wpa_supplicant_enable="YES" + # sysrc wpa_supplicant_program="%%PREFIX%%/sbin/wpa_supplicant" + and possibly + # service wpa_supplicant start wlan0 +====================================================================== From owner-svn-ports-head@freebsd.org Tue Sep 13 20:28:18 2016 Return-Path: Delivered-To: svn-ports-head@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 76A74BD9A49; Tue, 13 Sep 2016 20:28:18 +0000 (UTC) (envelope-from tcberner@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 42735A50; Tue, 13 Sep 2016 20:28:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKSHPo044356; Tue, 13 Sep 2016 20:28:17 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKSHH2044355; Tue, 13 Sep 2016 20:28:17 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609132028.u8DKSHH2044355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 13 Sep 2016 20:28:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422082 - head/devel/libkolab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:28:18 -0000 Author: tcberner Date: Tue Sep 13 20:28:17 2016 New Revision: 422082 URL: https://svnweb.freebsd.org/changeset/ports/422082 Log: Define PORTSCOUT in devel/libkolab. devel/libkolab needs version 0.*, as 1.* is against Qt5. Approved by: rakuco (mentor) Modified: head/devel/libkolab/Makefile Modified: head/devel/libkolab/Makefile ============================================================================== --- head/devel/libkolab/Makefile Tue Sep 13 20:18:00 2016 (r422081) +++ head/devel/libkolab/Makefile Tue Sep 13 20:28:17 2016 (r422082) @@ -13,6 +13,8 @@ COMMENT= Advanced Kolab Object Handling # itself to be LGPL3-licensed (and so are all the installed headers). LICENSE= LGPL3 +PORTSCOUT= limit=^0\. + LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ From owner-svn-ports-head@freebsd.org Tue Sep 13 20:29:56 2016 Return-Path: Delivered-To: svn-ports-head@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 1F4D2BD9AA1; Tue, 13 Sep 2016 20:29:56 +0000 (UTC) (envelope-from bapt@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 E451DB62; Tue, 13 Sep 2016 20:29:55 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKTt1k044522; Tue, 13 Sep 2016 20:29:55 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKTtYb044520; Tue, 13 Sep 2016 20:29:55 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609132029.u8DKTtYb044520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 13 Sep 2016 20:29:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422083 - in head/ports-mgmt/pkg: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:29:56 -0000 Author: bapt Date: Tue Sep 13 20:29:54 2016 New Revision: 422083 URL: https://svnweb.freebsd.org/changeset/ports/422083 Log: Add javavmwrapper 2.5_1 to the list of buggy scripts Modified: head/ports-mgmt/pkg/Makefile head/ports-mgmt/pkg/files/patch-javavmwrapper Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Tue Sep 13 20:28:17 2016 (r422082) +++ head/ports-mgmt/pkg/Makefile Tue Sep 13 20:29:54 2016 (r422083) @@ -3,7 +3,7 @@ PORTNAME= pkg DISTVERSION= 1.8.7 _PKG_VERSION= ${DISTVERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ports-mgmt MASTER_SITES= \ http://files.etoilebsd.net/${PORTNAME}/ \ Modified: head/ports-mgmt/pkg/files/patch-javavmwrapper ============================================================================== --- head/ports-mgmt/pkg/files/patch-javavmwrapper Tue Sep 13 20:28:17 2016 (r422082) +++ head/ports-mgmt/pkg/files/patch-javavmwrapper Tue Sep 13 20:29:54 2016 (r422083) @@ -2,7 +2,7 @@ diff --git libpkg/pkg_add.c libpkg/pkg_a index 87fb248..778336c 100644 --- libpkg/pkg_add.c +++ libpkg/pkg_add.c -@@ -859,14 +859,20 @@ pkg_add_cleanup_old(struct pkgdb *db, struct pkg *old, struct pkg *new, int flag +@@ -859,14 +859,21 @@ pkg_add_cleanup_old(struct pkgdb *db, struct pkg *old, struct pkg *new, int flag * Execute pre deinstall scripts */ if ((flags & PKG_ADD_NOSCRIPT) == 0) { @@ -16,7 +16,8 @@ index 87fb248..778336c 100644 - ret = EPKG_OK; + bool buggydeinstall = false; + if (strcmp(old->name, "javavmwrapper") == 0 && -+ strcmp(old->version, "2.5") == 0) ++ (strcmp(old->version, "2.5") == 0 || ++ strcmp(old->version, "2.5_1") == 0)) + buggydeinstall = true; + if (!buggydeinstall) { + if ((flags & PKG_ADD_USE_UPGRADE_SCRIPTS) == PKG_ADD_USE_UPGRADE_SCRIPTS) From owner-svn-ports-head@freebsd.org Tue Sep 13 20:35:35 2016 Return-Path: Delivered-To: svn-ports-head@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 A5812BD9D9F; Tue, 13 Sep 2016 20:35:35 +0000 (UTC) (envelope-from kwm@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 78478F3D; Tue, 13 Sep 2016 20:35:35 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKZYPe048198; Tue, 13 Sep 2016 20:35:34 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKZY73048197; Tue, 13 Sep 2016 20:35:34 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201609132035.u8DKZY73048197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Tue, 13 Sep 2016 20:35:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422084 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:35:35 -0000 Author: kwm Date: Tue Sep 13 20:35:34 2016 New Revision: 422084 URL: https://svnweb.freebsd.org/changeset/ports/422084 Log: Add ncurses suggestion to qa.sh. Approved by: portmgr (mat@) Differential Revision: https://reviews.freebsd.org/D7885 Modified: head/Mk/Scripts/qa.sh Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Tue Sep 13 20:29:54 2016 (r422083) +++ head/Mk/Scripts/qa.sh Tue Sep 13 20:35:34 2016 (r422084) @@ -558,6 +558,9 @@ proxydeps_suggest_uses() { # motif elif [ ${pkg} = "x11-toolkits/lesstif" -o ${pkg} = "x11-toolkits/open-motif" ]; then warn "you need USES+=motif" + # ncurses + elif [ ${pkg} = "devel/ncurses" ]; then + warn "you need USES+=ncurses" # objc elif [ ${pkg} = "lang/libobjc2" ]; then warn "you need USES+=objc" From owner-svn-ports-head@freebsd.org Tue Sep 13 20:49:11 2016 Return-Path: Delivered-To: svn-ports-head@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 BA6E3BD91E8; Tue, 13 Sep 2016 20:49:11 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 723DD167E; Tue, 13 Sep 2016 20:49:11 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 4DF0EBDC9A; Tue, 13 Sep 2016 22:49:09 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 2F54FBDC5A; Tue, 13 Sep 2016 22:49:09 +0200 (CEST) Subject: Re: svn commit: r422061 - in head/comms/uhd: . files To: Michael Reifenberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609131858.u8DIwelq007807@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <2fc3d1fd-f23a-e895-6595-f2cfda0967ff@FreeBSD.org> Date: Tue, 13 Sep 2016 22:49:08 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609131858.u8DIwelq007807@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="MLAAe3xqqefKNAJnxoIV3eVkEGf5PRUXR" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:49:11 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --MLAAe3xqqefKNAJnxoIV3eVkEGf5PRUXR Content-Type: multipart/mixed; boundary="7BA9sUhX5q3iBUTpkWth02UXARJ0lev78"; protected-headers="v1" From: Mathieu Arnold To: Michael Reifenberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <2fc3d1fd-f23a-e895-6595-f2cfda0967ff@FreeBSD.org> Subject: Re: svn commit: r422061 - in head/comms/uhd: . files References: <201609131858.u8DIwelq007807@repo.freebsd.org> In-Reply-To: <201609131858.u8DIwelq007807@repo.freebsd.org> --7BA9sUhX5q3iBUTpkWth02UXARJ0lev78 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 13/09/2016 =C3=A0 20:58, Michael Reifenberger a =C3=A9crit : > +EXTRACT_ONLY=3D ${DISTFILES} That is not needed, it is the default. > +GH_TAGNAME=3D ${UHD_COMMIT} > + > +UHD_COMMIT=3D 32951af2f3e7b1ddb56486c9f15b2e1033605bd6 I'm not sure using a second variable only once is needed. > +COMPILER_FEATURES=3D libc++ That variable is *read-only*, writing to it makes no sense. > +MAKE_JOBS_UNSAFE=3D yes When adding MAKE_JOBS_UNSAFE, you have to say why it does not build with make -j. > +DOCSDIR=3D share/doc/uhd This is the default and not needed. > +.if ${OSVERSION} < 800000 > +IGNORE=3D needs libusb 1.0 > +.endif Adding that OSVERSION check makes no sense, no release before 9 will work with the current ports tree. > +.if ${PORT_OPTIONS:MDOCS} > +BUILD_DEPENDS+=3D doxygen:${PORTSDIR}/devel/doxygen > +CMAKE_ARGS+=3D -DENABLE_DOXYGEN:STRING=3D"ON" > +HAVEDOCS=3D YES > +.endif Do not add doxygen as a dependency with a DOCS option, use a DOXYGEN one.= > +- DESTINATION ${LIBRARY_DIR}/pkgconfig > ++ DESTINATION libdata/pkgconfig This is handled by USES=3Dpathfix. --=20 Mathieu Arnold --7BA9sUhX5q3iBUTpkWth02UXARJ0lev78-- --MLAAe3xqqefKNAJnxoIV3eVkEGf5PRUXR Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2GZEXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I3ssP/jsMD1AOmSjdegknKuV1qmng zEjF0Qsla39Io8YDyQGmEWvMD2jDIooOp8BAbXiZWMmDDs14zBuXWnYLhsNKvo3d w/h0yfJ7UH/01d76Pw5L5RuUjlMgXnxln0PXb9Au1Ok83lEnHJQf38/2TJ60Tkju 8A1pwWk5aJ/oYJ8UhcM/0mXanwuZxpHZaM+sPMdT1u9kxPw1p86I9TL+ZZO+uWjQ gCWlqvhjN8hCKIlK1XqxRxqzjohrRK2J0y7egoEBMdO1mI/giDddkeGlNxOMydxw 8mcDdeUeGyv6OyNOsFtZi3ZzbUHAsFiabhTs1A7+T0n8wgaFVHwBlzeTrfiBTXV0 YOFK/SJXJCwqW7siKEZWa7bF9Gse6n5ErJvegRcAEOIPqELHspd//X45Z1jRsz+3 7XIdxIxeHgseD9MMtjP3FrwnYoZinkJoIHyWFRkn1iswd/hTwunaJ4f0x5HbUS/4 vVCgf/k9Z8dGDM2m9tlELhM6zZElXiB6DehYT9eyPHcp02Mn2Ou7r3CsyMAt2I3B 3xKwGPw85WENwoq2IyAJXtxGIPrwLIVaUYSk+8ulUGcVo6arsrXEXUgUkIsTqzIF rYPaj3t9+hbho51wJbz8SIBiOA0xrA4l+MtyyLB1n8uRZJvs4bgW8kEK3ygzIsJG kSZ6ekuRMuGpHLOUdamh =0dMG -----END PGP SIGNATURE----- --MLAAe3xqqefKNAJnxoIV3eVkEGf5PRUXR-- From owner-svn-ports-head@freebsd.org Tue Sep 13 20:54:47 2016 Return-Path: Delivered-To: svn-ports-head@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 617D0BD959C; Tue, 13 Sep 2016 20:54:47 +0000 (UTC) (envelope-from tcberner@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 2181C1A7F; Tue, 13 Sep 2016 20:54:47 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKskQg055753; Tue, 13 Sep 2016 20:54:46 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKsjjT055747; Tue, 13 Sep 2016 20:54:45 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609132054.u8DKsjjT055747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 13 Sep 2016 20:54:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422085 - in head/devel: qbs qbs/files qtcreator X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:54:47 -0000 Author: tcberner Date: Tue Sep 13 20:54:45 2016 New Revision: 422085 URL: https://svnweb.freebsd.org/changeset/ports/422085 Log: Update devel/qbs to 1.6.0 and devel/qtcreator to 4.1.0 Summary: * Update devel/qbs to 1.6.0 * Update devel/qtcreator to 4.1.0 * Add the QMAKE_LIBDIR_FLAGS hack we use in bsd.qt.mk for the Qt-ports. This should hopefully make it possible to upgrade qbs & qtcreator without deinstalling them first. * As there is a qtcreator plugin linking against libqbscore.so, change the RUN_- and BUILD_DEPENDS into a LIB_DEPENDS. Test Plan: Tested in poudriere: 9.3 (32&64), 10.3 (32&64), 12 (64) Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7884 Deleted: head/devel/qbs/files/ Modified: head/devel/qbs/Makefile head/devel/qbs/distinfo head/devel/qbs/pkg-plist head/devel/qtcreator/Makefile head/devel/qtcreator/distinfo head/devel/qtcreator/pkg-plist Modified: head/devel/qbs/Makefile ============================================================================== --- head/devel/qbs/Makefile Tue Sep 13 20:35:34 2016 (r422084) +++ head/devel/qbs/Makefile Tue Sep 13 20:54:45 2016 (r422085) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qbs -PORTVERSION= 1.5.2 +PORTVERSION= 1.6.0 DISTVERSIONPREFIX= src- CATEGORIES= devel MASTER_SITES= QT/official_releases/${PORTNAME}/${PORTVERSION} @@ -14,7 +14,7 @@ LICENSE= GPLv3 LGPL21 LICENSE_COMB= dual USES= compiler:c++11-lib qmake:outsource -USE_GL= yes +USE_GL= gl USE_LDCONFIG= yes USE_QT5= buildtools_build core concurrent gui network script testlib \ widgets xml @@ -31,4 +31,15 @@ INSTALL_TARGET= install DOCS_ALL_TARGET= docs DOCS_INSTALL_TARGET= install_docs +pre-configure: +# We piggyback on QMAKE_LIBDIR_FLAGS to make sure -L${WRKSRC}/lib is passed to +# the linker before -L/usr/local/lib. By default, the opposite happens, which +# is a problem when a Qt port is being upgraded, since an existing library +# would end up being picked up instead of those built in ${WRKSRC}/lib. Since +# qmake appends the value of QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, we can use the +# latter to get the linker path order right. qmake is smart enough to strip +# occurrences of ${WRKSRC}/lib from .pc and .prl files when installing them. +# See QTBUG-40825 and ports bugs 194088, 195105 and 198720. + ${ECHO_CMD} 'QMAKE_LIBDIR_FLAGS = -L${WRKSRC}/lib' >> ${WRKSRC}/.qmake.cache + .include Modified: head/devel/qbs/distinfo ============================================================================== --- head/devel/qbs/distinfo Tue Sep 13 20:35:34 2016 (r422084) +++ head/devel/qbs/distinfo Tue Sep 13 20:54:45 2016 (r422085) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467899190 -SHA256 (KDE/Qt/qbs/qbs-src-1.5.2.tar.gz) = 059b4f64c1f599379a17bbf859dd9658fafe8cb2b65b31634974ff1c381928c1 -SIZE (KDE/Qt/qbs/qbs-src-1.5.2.tar.gz) = 902972 +TIMESTAMP = 1472157751 +SHA256 (KDE/Qt/qbs/qbs-src-1.6.0.tar.gz) = ae850e957e4a811a193b02a067321722dd0e5fc50b7c370ec34273c1565e78ab +SIZE (KDE/Qt/qbs/qbs-src-1.6.0.tar.gz) = 928684 Modified: head/devel/qbs/pkg-plist ============================================================================== --- head/devel/qbs/pkg-plist Tue Sep 13 20:35:34 2016 (r422084) +++ head/devel/qbs/pkg-plist Tue Sep 13 20:54:45 2016 (r422085) @@ -33,16 +33,17 @@ include/qbs/tools/qbs_export.h include/qbs/tools/settings.h include/qbs/tools/settingsmodel.h include/qbs/tools/setupprojectparameters.h +include/qbs/tools/toolchains.h include/qbs/use_installed_corelib.pri include/qbs/use_installed_qtprofilesetup.pri lib/libqbscore.so lib/libqbscore.so.1 -lib/libqbscore.so.1.5 -lib/libqbscore.so.1.5.2 +lib/libqbscore.so.1.6 +lib/libqbscore.so.1.6.0 lib/libqbsqtprofilesetup.so lib/libqbsqtprofilesetup.so.1 -lib/libqbsqtprofilesetup.so.1.5 -lib/libqbsqtprofilesetup.so.1.5.2 +lib/libqbsqtprofilesetup.so.1.6 +lib/libqbsqtprofilesetup.so.1.6.0 lib/qbs/plugins/libqbs_cpp_scanner.so lib/qbs/plugins/libqbs_qt_scanner.so %%PORTDOCS%%%%DOCSDIR%%/html/android-ndk-module.html @@ -94,6 +95,7 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%PORTDOCS%%%%DOCSDIR%%/html/jsextension-utilities.html %%PORTDOCS%%%%DOCSDIR%%/html/jsextensions-general.html %%PORTDOCS%%%%DOCSDIR%%/html/language-introduction.html +%%PORTDOCS%%%%DOCSDIR%%/html/lex-yacc-module.html %%PORTDOCS%%%%DOCSDIR%%/html/list-of-builtin-services.html %%PORTDOCS%%%%DOCSDIR%%/html/list-of-items.html %%PORTDOCS%%%%DOCSDIR%%/html/list-of-modules.html @@ -126,7 +128,6 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%PORTDOCS%%%%DOCSDIR%%/html/style/offline.css %%PORTDOCS%%%%DOCSDIR%%/html/subproject-item.html %%PORTDOCS%%%%DOCSDIR%%/html/system-requirements.html -%%PORTDOCS%%%%DOCSDIR%%/html/transformer-item.html %%PORTDOCS%%%%DOCSDIR%%/html/typescript-module.html %%PORTDOCS%%%%DOCSDIR%%/html/usage.html %%PORTDOCS%%%%DOCSDIR%%/html/wix-module.html @@ -199,8 +200,10 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%DATADIR%%/imports/qbs/Probes/AndroidSdkProbe.qbs %%DATADIR%%/imports/qbs/Probes/BinaryProbe.qbs %%DATADIR%%/imports/qbs/Probes/FrameworkProbe.qbs +%%DATADIR%%/imports/qbs/Probes/GccProbe.qbs %%DATADIR%%/imports/qbs/Probes/IncludeProbe.qbs %%DATADIR%%/imports/qbs/Probes/JdkProbe.qbs +%%DATADIR%%/imports/qbs/Probes/MsvcProbe.qbs %%DATADIR%%/imports/qbs/Probes/NodeJsProbe.qbs %%DATADIR%%/imports/qbs/Probes/NpmProbe.qbs %%DATADIR%%/imports/qbs/Probes/PathProbe.qbs @@ -247,11 +250,12 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%DATADIR%%/modules/cpp/CppModule.qbs %%DATADIR%%/modules/cpp/DarwinGCC.qbs %%DATADIR%%/modules/cpp/GenericGCC.qbs +%%DATADIR%%/modules/cpp/LinuxGCC.qbs %%DATADIR%%/modules/cpp/UnixGCC.qbs +%%DATADIR%%/modules/cpp/android-gcc.qbs %%DATADIR%%/modules/cpp/gcc.js %%DATADIR%%/modules/cpp/genericunix-gcc.qbs %%DATADIR%%/modules/cpp/ios-gcc.qbs -%%DATADIR%%/modules/cpp/linux-gcc.qbs %%DATADIR%%/modules/cpp/macos-gcc.qbs %%DATADIR%%/modules/cpp/msvc.js %%DATADIR%%/modules/cpp/tvos-gcc.qbs @@ -267,10 +271,14 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%DATADIR%%/modules/java/io/qt/qbs/ArtifactListWriter.java %%DATADIR%%/modules/java/io/qt/qbs/ArtifactListXmlWriter.java %%DATADIR%%/modules/java/io/qt/qbs/tools/JavaCompilerScannerTool.java +%%DATADIR%%/modules/java/io/qt/qbs/tools/utils/ArtifactProcessor.java +%%DATADIR%%/modules/java/io/qt/qbs/tools/utils/ArtifactScanner.java %%DATADIR%%/modules/java/io/qt/qbs/tools/utils/JavaCompilerOptions.java %%DATADIR%%/modules/java/io/qt/qbs/tools/utils/JavaCompilerScanner.java %%DATADIR%%/modules/java/io/qt/qbs/tools/utils/NullFileObject.java %%DATADIR%%/modules/java/utils.js +%%DATADIR%%/modules/lex_yacc/lexyacc.js +%%DATADIR%%/modules/lex_yacc/lexyacc.qbs %%DATADIR%%/modules/nodejs/NodeJS.qbs %%DATADIR%%/modules/nodejs/nodejs.js %%DATADIR%%/modules/nsis/NSISModule.qbs Modified: head/devel/qtcreator/Makefile ============================================================================== --- head/devel/qtcreator/Makefile Tue Sep 13 20:35:34 2016 (r422084) +++ head/devel/qtcreator/Makefile Tue Sep 13 20:54:45 2016 (r422085) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qtcreator -DISTVERSION= 4.0.3 +DISTVERSION= 4.1.0 CATEGORIES= devel MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION} DISTNAME= qt-creator-opensource-src-${DISTVERSION} @@ -12,8 +12,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= C++ and QML IDE for Qt development # depend on the split out qbs -BUILD_DEPENDS= qbs:devel/qbs -RUN_DEPENDS= qbs:devel/qbs +LIB_DEPENDS= libqbscore.so:devel/qbs USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME} USES= qmake compiler:c++11-lib @@ -58,4 +57,16 @@ post-patch: ${REINPLACE_CMD} -e 's|/usr/bin/ant|${LOCALBASE}/bin/ant|' \ ${WRKSRC}/src/plugins/android/androidsettingswidget.cpp +pre-configure: +# We piggyback on QMAKE_LIBDIR_FLAGS to make sure -L${WRKSRC}/lib is passed to +# the linker before -L/usr/local/lib. By default, the opposite happens, which +# is a problem when a Qt port is being upgraded, since an existing library +# would end up being picked up instead of those built in ${WRKSRC}/lib. Since +# qmake appends the value of QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, we can use the +# latter to get the linker path order right. qmake is smart enough to strip +# occurrences of ${WRKSRC}/lib from .pc and .prl files when installing them. +# See QTBUG-40825 and ports bugs 194088, 195105 and 198720. + ${ECHO_CMD} 'QMAKE_LIBDIR_FLAGS = -L${WRKSRC}/lib' >> ${WRKSRC}/.qmake.cache + + .include Modified: head/devel/qtcreator/distinfo ============================================================================== --- head/devel/qtcreator/distinfo Tue Sep 13 20:35:34 2016 (r422084) +++ head/devel/qtcreator/distinfo Tue Sep 13 20:54:45 2016 (r422085) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467899547 -SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-4.0.3.tar.gz) = a213a9b66e7e0eb906036a1587256fc0f7bac33912d9ae5e6117459231f56449 -SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-4.0.3.tar.gz) = 21972901 +TIMESTAMP = 1472157703 +SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-4.1.0.tar.gz) = 412c0223dbfd86983b39e10e2c7cb42b530995cfe2f3aa3529ea3f1b00ffb403 +SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-4.1.0.tar.gz) = 22342296 Modified: head/devel/qtcreator/pkg-plist ============================================================================== --- head/devel/qtcreator/pkg-plist Tue Sep 13 20:35:34 2016 (r422084) +++ head/devel/qtcreator/pkg-plist Tue Sep 13 20:54:45 2016 (r422085) @@ -1,60 +1,60 @@ bin/qtcreator lib/qtcreator/libAggregation.so -lib/qtcreator/libAggregation.so.1 -lib/qtcreator/libAggregation.so.1.0 -lib/qtcreator/libAggregation.so.1.0.0 +lib/qtcreator/libAggregation.so.4 +lib/qtcreator/libAggregation.so.4.1 +lib/qtcreator/libAggregation.so.4.1.0 lib/qtcreator/libCPlusPlus.so -lib/qtcreator/libCPlusPlus.so.1 -lib/qtcreator/libCPlusPlus.so.1.0 -lib/qtcreator/libCPlusPlus.so.1.0.0 +lib/qtcreator/libCPlusPlus.so.4 +lib/qtcreator/libCPlusPlus.so.4.1 +lib/qtcreator/libCPlusPlus.so.4.1.0 lib/qtcreator/libClangbackendipc.so -lib/qtcreator/libClangbackendipc.so.1 -lib/qtcreator/libClangbackendipc.so.1.0 -lib/qtcreator/libClangbackendipc.so.1.0.0 +lib/qtcreator/libClangbackendipc.so.4 +lib/qtcreator/libClangbackendipc.so.4.1 +lib/qtcreator/libClangbackendipc.so.4.1.0 lib/qtcreator/libExtensionSystem.so -lib/qtcreator/libExtensionSystem.so.1 -lib/qtcreator/libExtensionSystem.so.1.0 -lib/qtcreator/libExtensionSystem.so.1.0.0 +lib/qtcreator/libExtensionSystem.so.4 +lib/qtcreator/libExtensionSystem.so.4.1 +lib/qtcreator/libExtensionSystem.so.4.1.0 lib/qtcreator/libGLSL.so -lib/qtcreator/libGLSL.so.1 -lib/qtcreator/libGLSL.so.1.0 -lib/qtcreator/libGLSL.so.1.0.0 +lib/qtcreator/libGLSL.so.4 +lib/qtcreator/libGLSL.so.4.1 +lib/qtcreator/libGLSL.so.4.1.0 lib/qtcreator/libLanguageUtils.so -lib/qtcreator/libLanguageUtils.so.1 -lib/qtcreator/libLanguageUtils.so.1.0 -lib/qtcreator/libLanguageUtils.so.1.0.0 +lib/qtcreator/libLanguageUtils.so.4 +lib/qtcreator/libLanguageUtils.so.4.1 +lib/qtcreator/libLanguageUtils.so.4.1.0 lib/qtcreator/libModeling.so -lib/qtcreator/libModeling.so.1 -lib/qtcreator/libModeling.so.1.0 -lib/qtcreator/libModeling.so.1.0.0 +lib/qtcreator/libModeling.so.4 +lib/qtcreator/libModeling.so.4.1 +lib/qtcreator/libModeling.so.4.1.0 lib/qtcreator/libQmlDebug.so -lib/qtcreator/libQmlDebug.so.1 -lib/qtcreator/libQmlDebug.so.1.0 -lib/qtcreator/libQmlDebug.so.1.0.0 +lib/qtcreator/libQmlDebug.so.4 +lib/qtcreator/libQmlDebug.so.4.1 +lib/qtcreator/libQmlDebug.so.4.1.0 lib/qtcreator/libQmlEditorWidgets.so -lib/qtcreator/libQmlEditorWidgets.so.1 -lib/qtcreator/libQmlEditorWidgets.so.1.0 -lib/qtcreator/libQmlEditorWidgets.so.1.0.0 +lib/qtcreator/libQmlEditorWidgets.so.4 +lib/qtcreator/libQmlEditorWidgets.so.4.1 +lib/qtcreator/libQmlEditorWidgets.so.4.1.0 lib/qtcreator/libQmlJS.so -lib/qtcreator/libQmlJS.so.1 -lib/qtcreator/libQmlJS.so.1.0 -lib/qtcreator/libQmlJS.so.1.0.0 +lib/qtcreator/libQmlJS.so.4 +lib/qtcreator/libQmlJS.so.4.1 +lib/qtcreator/libQmlJS.so.4.1.0 lib/qtcreator/libQtcSsh.so -lib/qtcreator/libQtcSsh.so.1 -lib/qtcreator/libQtcSsh.so.1.0 -lib/qtcreator/libQtcSsh.so.1.0.0 +lib/qtcreator/libQtcSsh.so.4 +lib/qtcreator/libQtcSsh.so.4.1 +lib/qtcreator/libQtcSsh.so.4.1.0 lib/qtcreator/libSqlite.so -lib/qtcreator/libSqlite.so.1 -lib/qtcreator/libSqlite.so.1.0 -lib/qtcreator/libSqlite.so.1.0.0 +lib/qtcreator/libSqlite.so.4 +lib/qtcreator/libSqlite.so.4.1 +lib/qtcreator/libSqlite.so.4.1.0 lib/qtcreator/libTimeline.so -lib/qtcreator/libTimeline.so.1 -lib/qtcreator/libTimeline.so.1.0 -lib/qtcreator/libTimeline.so.1.0.0 +lib/qtcreator/libTimeline.so.4 +lib/qtcreator/libTimeline.so.4.1 +lib/qtcreator/libTimeline.so.4.1.0 lib/qtcreator/libUtils.so -lib/qtcreator/libUtils.so.1 -lib/qtcreator/libUtils.so.1.0 -lib/qtcreator/libUtils.so.1.0.0 +lib/qtcreator/libUtils.so.4 +lib/qtcreator/libUtils.so.4.1 +lib/qtcreator/libUtils.so.4.1.0 lib/qtcreator/plugins/libAndroid.so lib/qtcreator/plugins/libAutoTest.so lib/qtcreator/plugins/libAutotoolsProjectManager.so @@ -87,6 +87,7 @@ lib/qtcreator/plugins/libIos.so lib/qtcreator/plugins/libMacros.so lib/qtcreator/plugins/libMercurial.so lib/qtcreator/plugins/libModelEditor.so +lib/qtcreator/plugins/libNim.so lib/qtcreator/plugins/libPerforce.so lib/qtcreator/plugins/libProjectExplorer.so lib/qtcreator/plugins/libPythonEditor.so @@ -97,7 +98,6 @@ lib/qtcreator/plugins/libQmlDesigner.so lib/qtcreator/plugins/libQmlJSEditor.so lib/qtcreator/plugins/libQmlJSTools.so lib/qtcreator/plugins/libQmlProfiler.so -lib/qtcreator/plugins/libQmlProfilerExtension.so lib/qtcreator/plugins/libQmlProjectManager.so lib/qtcreator/plugins/libQnx.so lib/qtcreator/plugins/libQtSupport.so @@ -150,6 +150,10 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/externaltools/qmlviewer.xml %%DATADIR%%/externaltools/sort.xml %%DATADIR%%/externaltools/vi.xml +%%DATADIR%%/fonts/SourceCodePro-Bold.ttf +%%DATADIR%%/fonts/SourceCodePro-It.ttf +%%DATADIR%%/fonts/SourceCodePro-Regular.ttf +%%DATADIR%%/fonts/SourceCodePro.txt %%DATADIR%%/generic-highlighter/alert.xml %%DATADIR%%/generic-highlighter/autoconf.xml %%DATADIR%%/generic-highlighter/bash.xml @@ -372,6 +376,7 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomCheckBoxStyle.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomComboBoxStyle.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/CustomSpinBoxStyle.qml +%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/DoubleSpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExpandingSpacer.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/ExtendedFunctionButton.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/FlickableSection.qml @@ -390,36 +395,13 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/SecondColumnLayout.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/Section.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/SectionLayout.qml -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/SliderSpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/SpinBox.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/Tab.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/TabView.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/ToolTipArea.qml %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/UrlChooser.qml -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentbottom-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentbottom-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentcenterh-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentcenterh-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentleft-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentleft-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentmiddle-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentmiddle-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentright-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmentright-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmenttop-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/alignmenttop-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-bottom.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-fill.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-horizontal.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-left.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-right.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-top.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/anchor-vertical.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/apply.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/bold-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/bold-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/cancel.png +%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/checkers.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/down-arrow.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/down-arrow@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/expression.png @@ -427,16 +409,10 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/icon_color_gradient.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/icon_color_none.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/icon_color_solid.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/italic-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/italic-icon.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/placeholder.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/placeholder@2x.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/strikeout-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/strikeout-icon.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/submenu.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/submenu@2x.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/underline-h-icon.png -%%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/underline-icon.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/up-arrow.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/images/up-arrow@2x.png %%DATADIR%%/qmldesigner/propertyEditorQmlSources/HelperWidgets/qmldir @@ -479,8 +455,6 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/qmldesigner/statesEditorQmlSources/DesignerTextFieldStyle.qml %%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesDelegate.qml %%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesList.qml -%%DATADIR%%/qmldesigner/statesEditorQmlSources/images/darkclose.png -%%DATADIR%%/qmldesigner/statesEditorQmlSources/images/plus.png %%DATADIR%%/qmlicons/Qt/16x16/BorderImage.png %%DATADIR%%/qmlicons/Qt/16x16/BusyIndicator.png %%DATADIR%%/qmlicons/Qt/16x16/Button.png @@ -539,11 +513,15 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/snippets/cpp.xml %%DATADIR%%/snippets/qml.xml %%DATADIR%%/snippets/text.xml +%%DATADIR%%/styles/creator-dark.xml %%DATADIR%%/styles/dark.xml %%DATADIR%%/styles/default.xml %%DATADIR%%/styles/grayscale.xml %%DATADIR%%/styles/inkpot.xml %%DATADIR%%/styles/intellij.xml +%%DATADIR%%/styles/modnokai_night_shift_v2.xml +%%DATADIR%%/styles/solarized-dark.xml +%%DATADIR%%/styles/solarized-light.xml %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_collection.cpp %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_collection.h %%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_plugin.pro @@ -560,17 +538,19 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/templates/qt4project/mywidget_form.cpp %%DATADIR%%/templates/qt4project/mywidget_form.h %%DATADIR%%/templates/qt4project/widget.ui -%%DATADIR%%/templates/shared/qrcdeployment.pri %%DATADIR%%/templates/wizards/README.txt -%%DATADIR%%/templates/wizards/autotest/auto.pro %%DATADIR%%/templates/wizards/autotest/autotest_24.png -%%DATADIR%%/templates/wizards/autotest/main.cpp -%%DATADIR%%/templates/wizards/autotest/src.pro -%%DATADIR%%/templates/wizards/autotest/tests.pro -%%DATADIR%%/templates/wizards/autotest/tmp.pro -%%DATADIR%%/templates/wizards/autotest/tst.pro -%%DATADIR%%/templates/wizards/autotest/tst_src.cpp -%%DATADIR%%/templates/wizards/autotest/wizard.xml +%%DATADIR%%/templates/wizards/autotest/files/auto.pro +%%DATADIR%%/templates/wizards/autotest/files/gtest_dependency.pri +%%DATADIR%%/templates/wizards/autotest/files/main.cpp +%%DATADIR%%/templates/wizards/autotest/files/src.pro +%%DATADIR%%/templates/wizards/autotest/files/tests.pro +%%DATADIR%%/templates/wizards/autotest/files/tmp.pro +%%DATADIR%%/templates/wizards/autotest/files/tst.pro +%%DATADIR%%/templates/wizards/autotest/files/tst_main.cpp +%%DATADIR%%/templates/wizards/autotest/files/tst_src.cpp +%%DATADIR%%/templates/wizards/autotest/files/tst_src.h +%%DATADIR%%/templates/wizards/autotest/wizard.json %%DATADIR%%/templates/wizards/classes/cpp/file.cpp %%DATADIR%%/templates/wizards/classes/cpp/file.h %%DATADIR%%/templates/wizards/classes/cpp/wizard.json @@ -609,22 +589,29 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/templates/wizards/files/js/wizard.json %%DATADIR%%/templates/wizards/files/modeling/file.qmodel %%DATADIR%%/templates/wizards/files/modeling/wizard.json +%%DATADIR%%/templates/wizards/files/nim/file.nim +%%DATADIR%%/templates/wizards/files/nim/icon.png +%%DATADIR%%/templates/wizards/files/nim/wizard.json %%DATADIR%%/templates/wizards/files/python/file.py %%DATADIR%%/templates/wizards/files/python/wizard.json %%DATADIR%%/templates/wizards/files/qrc/file.qrc %%DATADIR%%/templates/wizards/files/qrc/wizard.json -%%DATADIR%%/templates/wizards/files/qtquick1/file.qml.tpl -%%DATADIR%%/templates/wizards/files/qtquick1/wizard.json %%DATADIR%%/templates/wizards/files/qtquick2/file.qml.tpl %%DATADIR%%/templates/wizards/files/qtquick2/wizard.json %%DATADIR%%/templates/wizards/files/scratch/file.txt %%DATADIR%%/templates/wizards/files/scratch/wizard.json +%%DATADIR%%/templates/wizards/files/scxml/file.scxml +%%DATADIR%%/templates/wizards/files/scxml/wizard.json %%DATADIR%%/templates/wizards/files/text/file.txt %%DATADIR%%/templates/wizards/files/text/wizard.json %%DATADIR%%/templates/wizards/global/consoleapplication.png %%DATADIR%%/templates/wizards/global/genericfilewizard.png %%DATADIR%%/templates/wizards/global/guiapplication.png %%DATADIR%%/templates/wizards/projects/git.ignore +%%DATADIR%%/templates/wizards/projects/nim/file.nimproject +%%DATADIR%%/templates/wizards/projects/nim/icon.png +%%DATADIR%%/templates/wizards/projects/nim/main.nim +%%DATADIR%%/templates/wizards/projects/nim/wizard.json %%DATADIR%%/templates/wizards/projects/plainc/CMakeLists.txt %%DATADIR%%/templates/wizards/projects/plainc/file.pro %%DATADIR%%/templates/wizards/projects/plainc/file.qbs @@ -716,6 +703,8 @@ share/icons/hicolor/64x64/apps/QtProject %%DATADIR%%/templates/wizards/qtquick2-extension/wizard.xml %%DATADIR%%/themes/dark.creatortheme %%DATADIR%%/themes/default.creatortheme +%%DATADIR%%/themes/flat-dark.creatortheme +%%DATADIR%%/themes/flat-light.creatortheme %%DATADIR%%/themes/flat.creatortheme %%DATADIR%%/translations/qtcreator_cs.qm %%DATADIR%%/translations/qtcreator_de.qm From owner-svn-ports-head@freebsd.org Tue Sep 13 20:55:12 2016 Return-Path: Delivered-To: svn-ports-head@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 EA83DBD95EA; Tue, 13 Sep 2016 20:55:12 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 86CA61B88; Tue, 13 Sep 2016 20:55:12 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id BD10CBDCE3; Tue, 13 Sep 2016 22:55:10 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 9DDD4BDCE0; Tue, 13 Sep 2016 22:55:10 +0200 (CEST) Subject: Re: svn commit: r422081 - in head/net/wpa_gui: . files To: Kurt Jaeger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609132018.u8DKI02v040588@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <3e81f6ed-9f90-b70c-c218-439946dcebca@FreeBSD.org> Date: Tue, 13 Sep 2016 22:55:09 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609132018.u8DKI02v040588@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="9ummQnaJT5K65NP8tRM0ifiDFUsAqO9qr" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:55:13 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --9ummQnaJT5K65NP8tRM0ifiDFUsAqO9qr Content-Type: multipart/mixed; boundary="4a6WOv5i3kCSF3TumPe8AmkaRNM6gQVW5"; protected-headers="v1" From: Mathieu Arnold To: Kurt Jaeger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <3e81f6ed-9f90-b70c-c218-439946dcebca@FreeBSD.org> Subject: Re: svn commit: r422081 - in head/net/wpa_gui: . files References: <201609132018.u8DKI02v040588@repo.freebsd.org> In-Reply-To: <201609132018.u8DKI02v040588@repo.freebsd.org> --4a6WOv5i3kCSF3TumPe8AmkaRNM6gQVW5 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 13/09/2016 =C3=A0 22:18, Kurt Jaeger a =C3=A9crit : > Author: pi > Date: Tue Sep 13 20:18:00 2016 > New Revision: 422081 > URL: https://svnweb.freebsd.org/changeset/ports/422081 > > Log: > net/wpa_gui: Several improvements > =20 > - Adds DEBUG option to simplify troubleshooting > - Adds debug logging of wpa_supplicant control interface > - Installs the manpage > - Adds USE_QT4=3Dcorelib > - Makes wpa_gui executable setuid to allow it to easily connect to > wpa_supplicant control socket > - Fixes the problem that wpa_gui sometimes picks up .pid file instead= > of the control interface > =20 > PR: 211214 > Submitted by: Yuri Victorovich > Reviewed by: koobs > > Added: > head/net/wpa_gui/files/patch-wpa_ctrl.c (contents, props changed) > head/net/wpa_gui/files/patch-wpagui.cpp (contents, props changed) > head/net/wpa_gui/files/pkg-message.in (contents, props changed) > Modified: > head/net/wpa_gui/Makefile > > Modified: head/net/wpa_gui/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/net/wpa_gui/Makefile Tue Sep 13 20:15:42 2016 (r422080) > +++ head/net/wpa_gui/Makefile Tue Sep 13 20:18:00 2016 (r422081) > @@ -3,6 +3,7 @@ > =20 > PORTNAME=3D wpa_gui > PORTVERSION=3D 2.5 > +PORTREVISION=3D 1 > CATEGORIES=3D net > MASTER_SITES=3D http://w1.fi/releases/ \ > http://partmedia.users.sourceforge.net/dist/:icons \ > @@ -18,19 +19,33 @@ LICENSE=3D BSD3CLAUSE > =20 > WRKSRC_SUBDIR=3D wpa_supplicant/wpa_gui-qt4 > =20 > -PLIST_FILES=3D sbin/wpa_gui \ > +PLIST_FILES=3D "@mode 4555" \ > + sbin/wpa_gui \ > + "@mode" \ This is better written "@(,,4555) sbin/wpa_gui". (Well, it is better being written in a pkg-plist file, but...) --=20 Mathieu Arnold --4a6WOv5i3kCSF3TumPe8AmkaRNM6gQVW5-- --9ummQnaJT5K65NP8tRM0ifiDFUsAqO9qr Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2GeuXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IGRcP/3PFtDxQTalQTeJ4hY+HTSB/ q/pcgkQRFkG65OYsApBZXsyi/ei65mDBUibjEYsNbRbEIhcZX2jsCQSFkHFZKN+S kpqH3GI7oohS/KOcTH+kPA3/flFwS6MsNI2MARPvahlhRr8NMZPifkHbjXt8uxNm K++arkjNXtLmk7moxBI6QvrT6rn4jMJeHpQXyPTrUu/hxZtVYaoRTa0zD9UKXjwr yzuDCVSSKuE8/Vj8fY8hAdLPArQpGT5B3FS++znFqHvoMUWyz3UYNIE7c/jiAnCr K+gga9YpQCNZvrkqdVjf1BIkyQQ1UwPTj4XJmz/+dS120q9UTdIhQz/OFTzlxTAv YqPTbBHNPDzXvCFJdmx7iNgonsSvLCGzQuztsqkv51Rfcz6onHrWWdbd+Bu1nyDW ak/ZpLU1xgVM4Z7D8rhKnNxMnmFla4N1M7d2gKov2EIdXKyAdeeVyW6p5I2iiBd/ fdPvIdbkDUkw6if40ZoIlywXPln38T+DF2J3mTWSiWmHEqCYjoXtAG22LQpuo6y2 tzeVEM06A+wQxzoJ7g43w9/DPbmH7AFRRGhGydZGeLXpwYsuca3EKwf/sjq2X2k2 eWspoBCyiS6EZ5yyH65feuqYNvRIiPPJpHcSt4EAnvY4oxvEH6JBFxZPS3oijLrM qPVH8Bv2Zs/RXPi8lvVF =SUJH -----END PGP SIGNATURE----- --9ummQnaJT5K65NP8tRM0ifiDFUsAqO9qr-- From owner-svn-ports-head@freebsd.org Tue Sep 13 20:58:27 2016 Return-Path: Delivered-To: svn-ports-head@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 EE6B1BD971C; Tue, 13 Sep 2016 20:58:27 +0000 (UTC) (envelope-from marino@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 BBDC51DB2; Tue, 13 Sep 2016 20:58:27 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DKwRLg056097; Tue, 13 Sep 2016 20:58:27 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DKwQn9056092; Tue, 13 Sep 2016 20:58:26 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609132058.u8DKwQn9056092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 13 Sep 2016 20:58:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422086 - in head/misc: . fortune_strfile fortune_strfile/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:58:28 -0000 Author: marino Date: Tue Sep 13 20:58:26 2016 New Revision: 422086 URL: https://svnweb.freebsd.org/changeset/ports/422086 Log: Add new port misc/fortune_strfile This is a copy of strfile(8) with a "fortune_" prefix. It's intended to replace the /usr/games/strfile runtime dependency for fortune ports that require the games distribution to be installed. Added: head/misc/fortune_strfile/ head/misc/fortune_strfile/Makefile (contents, props changed) head/misc/fortune_strfile/files/ head/misc/fortune_strfile/files/strfile.c (contents, props changed) head/misc/fortune_strfile/files/strfile.h (contents, props changed) head/misc/fortune_strfile/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Sep 13 20:54:45 2016 (r422085) +++ head/misc/Makefile Tue Sep 13 20:58:26 2016 (r422086) @@ -98,6 +98,7 @@ SUBDIR += fortune-mod-ferengi_rules_of_acquisition SUBDIR += fortune-mod-futurama SUBDIR += fortune-mod-psalms + SUBDIR += fortune_strfile SUBDIR += fortuneit SUBDIR += fpc-chm SUBDIR += freebsd-doc-all Added: head/misc/fortune_strfile/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/fortune_strfile/Makefile Tue Sep 13 20:58:26 2016 (r422086) @@ -0,0 +1,24 @@ +# Created by: marino@FreeBSD.org +# $FreeBSD$ + +PORTNAME= fortune_strfile +PORTVERSION= 1.0 +CATEGORIES= misc +MASTER_SITES= # none +DISTFILES= # none + +MAINTAINER= marino@FreeBSD.org +COMMENT= Duplicate of strfile(8) + +PROGRAM= fortune_strfile +PLIST_FILES= bin/${PROGRAM} + +do-build: + ${MKDIR} ${WRKSRC} + ${CC} ${CFLAGS} -o ${WRKSRC}/${PROGRAM} ${FILESDIR}/strfile.c + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PROGRAM} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/misc/fortune_strfile/files/strfile.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/fortune_strfile/files/strfile.c Tue Sep 13 20:58:26 2016 (r422086) @@ -0,0 +1,441 @@ +/*- + * Copyright (c) 1989, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Ken Arnold. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. + * @(#)strfile.c 8.1 (Berkeley) 5/31/93 + * $FreeBSD: src/games/fortune/strfile/strfile.c,v 1.15.2.2 2001/03/05 11:52:37 kris Exp $ + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "strfile.h" + +/* + * This program takes a file composed of strings separated by + * lines starting with two consecutive delimiting character (default + * character is '%') and creates another file which consists of a table + * describing the file (structure from "strfile.h"), a table of seek + * pointers to the start of the strings, and the strings, each terminated + * by a null byte. Usage: + * + * % strfile [-iorsx] [ -cC ] sourcefile [ datafile ] + * + * C - Allow comments marked by a double delimiter at line's beginning + * c - Change delimiting character from '%' to 'C' + * s - Silent. Give no summary of data processed at the end of + * the run. + * o - order the strings in alphabetic order + * i - if ordering, ignore case + * r - randomize the order of the strings + * x - set rotated bit + * + * Ken Arnold Sept. 7, 1978 -- + * + * Added ordering options. + */ + +#define STORING_PTRS (Oflag || Rflag) +#define CHUNKSIZE 512 + +#define ALLOC(ptr, sz) do { \ + if (ptr == NULL) \ + ptr = malloc((unsigned int)(CHUNKSIZE * sizeof(*ptr))); \ + else if (((sz) + 1) % CHUNKSIZE == 0) \ + ptr = realloc(ptr, ((unsigned int)((sz) + CHUNKSIZE) * sizeof(*ptr))); \ + if (ptr == NULL) { \ + fprintf(stderr, "out of space\n"); \ + exit(1); \ + } \ + } while (0) + +typedef struct { + char first; + long pos; +} STR; + +static char *Infile = NULL; /* input file name */ +static char Outfile[MAXPATHLEN] = ""; /* output file name */ +static char Delimch = '%'; /* delimiting character */ + +static int Cflag = false; /* embedded comments */ +static int Sflag = false; /* silent run flag */ +static int Oflag = false; /* ordering flag */ +static int Iflag = false; /* ignore case flag */ +static int Rflag = false; /* randomize order flag */ +static int Xflag = false; /* set rotated bit */ +static long Num_pts = 0; /* number of pointers/strings */ + +static long *Seekpts; + +static FILE *Sort_1, *Sort_2; /* pointers for sorting */ + +static STRFILE Tbl; /* statistics table */ + +static STR *Firstch; /* first chars of each string */ + +static void add_offset(FILE *, long); +static int cmp_str(const void *, const void *); +static int collate_range_cmp(int, int); +static void do_order(void); +static void getargs(int, char **); +static void randomize(void); +static void usage(void); + +/* + * main: + * Drive the sucker. There are two main modes -- either we store + * the seek pointers, if the table is to be sorted or randomized, + * or we write the pointer directly to the file, if we are to stay + * in file order. If the former, we allocate and re-allocate in + * CHUNKSIZE blocks; if the latter, we just write each pointer, + * and then seek back to the beginning to write in the table. + */ +int +main(int argc, char *argv[]) +{ + char *sp, *nsp, dc; + FILE *inf, *outf; + long last_off, length, pos, *p; + int first, cnt; + STR *fp; + static char string[257]; + + setlocale(LC_ALL, ""); + + getargs(argc, argv); /* evalute arguments */ + dc = Delimch; + if ((inf = fopen(Infile, "r")) == NULL) { + perror(Infile); + exit(1); + } + + if ((outf = fopen(Outfile, "w")) == NULL) { + perror(Outfile); + exit(1); + } + if (!STORING_PTRS) + fseek(outf, sizeof(Tbl), SEEK_SET); + + /* + * Write the strings onto the file + */ + + Tbl.str_longlen = 0; + Tbl.str_shortlen = ~((unsigned long)0); + Tbl.str_delim = dc; + Tbl.str_version = VERSION; + first = Oflag; + add_offset(outf, ftell(inf)); + last_off = 0; + do { + sp = fgets(string, 256, inf); + if (sp == NULL || (sp[0] == dc && sp[1] == '\n')) { + pos = ftell(inf); + length = pos - last_off - (sp ? strlen(sp) : 0); + last_off = pos; + if (!length) + continue; + add_offset(outf, pos); + if (Tbl.str_longlen < (unsigned long)length) + Tbl.str_longlen = length; + if (Tbl.str_shortlen > (unsigned long)length) + Tbl.str_shortlen = length; + first = Oflag; + } + else if (first) { + for (nsp = sp; !isalnum((unsigned char)*nsp); nsp++) + continue; + ALLOC(Firstch, Num_pts); + fp = &Firstch[Num_pts - 1]; + if (Iflag && isupper((unsigned char)*nsp)) + fp->first = tolower((unsigned char)*nsp); + else + fp->first = *nsp; + fp->pos = Seekpts[Num_pts - 1]; + first = false; + } + } while (sp != NULL); + + /* + * write the tables in + */ + + fclose(inf); + Tbl.str_numstr = Num_pts - 1; + + if (Cflag) + Tbl.str_flags |= STR_COMMENTS; + + if (Oflag) + do_order(); + else if (Rflag) + randomize(); + + if (Xflag) + Tbl.str_flags |= STR_ROTATED; + + if (!Sflag) { + printf("\"%s\" created\n", Outfile); + if (Num_pts == 2) + puts("There was 1 string"); + else + printf("There were %ld strings\n", Num_pts - 1); + printf("Longest string: %lu byte%s\n", Tbl.str_longlen, + Tbl.str_longlen == 1 ? "" : "s"); + printf("Shortest string: %lu byte%s\n", Tbl.str_shortlen, + Tbl.str_shortlen == 1 ? "" : "s"); + } + + rewind(outf); + Tbl.str_version = htonl(Tbl.str_version); + Tbl.str_numstr = htonl(Tbl.str_numstr); + Tbl.str_longlen = htonl(Tbl.str_longlen); + Tbl.str_shortlen = htonl(Tbl.str_shortlen); + Tbl.str_flags = htonl(Tbl.str_flags); + fwrite((char *)&Tbl, sizeof(Tbl), 1, outf); + if (STORING_PTRS) { + for (p = Seekpts, cnt = Num_pts; cnt--; ++p) + *p = htonl(*p); + fwrite((char *)Seekpts, sizeof(*Seekpts), (int)Num_pts, outf); + } + fclose(outf); + exit(0); +} + +/* + * This routine evaluates arguments from the command line + */ +void +getargs(int argc, char **argv) +{ + int ch; + + while ((ch = getopt(argc, argv, "Cc:iorsx")) != -1) + switch(ch) { + case 'C': /* embedded comments */ + Cflag++; + break; + case 'c': /* new delimiting char */ + Delimch = *optarg; + if (!isascii(Delimch)) { + printf("bad delimiting character: '\\%o\n'", + (unsigned char)Delimch); + } + break; + case 'i': /* ignore case in ordering */ + Iflag++; + break; + case 'o': /* order strings */ + Oflag++; + break; + case 'r': /* randomize pointers */ + Rflag++; + break; + case 's': /* silent */ + Sflag++; + break; + case 'x': /* set the rotated bit */ + Xflag++; + break; + case '?': + default: + usage(); + } + argv += optind; + + if (*argv) { + Infile = *argv; + if (*++argv) + strcpy(Outfile, *argv); + } + if (!Infile) { + puts("No input file name"); + usage(); + } + if (*Outfile == '\0') { + strcpy(Outfile, Infile); + strcat(Outfile, ".dat"); + } +} + +void +usage(void) +{ + fprintf(stderr, + "strfile [-Ciorsx] [-c char] source_file [output_file]\n"); + exit(1); +} + +/* + * add_offset: + * Add an offset to the list, or write it out, as appropriate. + */ +void +add_offset(FILE *fp, long off) +{ + long net; + + if (!STORING_PTRS) { + net = htonl(off); + fwrite(&net, 1, sizeof(net), fp); + } else { + ALLOC(Seekpts, Num_pts + 1); + Seekpts[Num_pts] = off; + } + Num_pts++; +} + +/* + * do_order: + * Order the strings alphabetically (possibly ignoring case). + */ +void +do_order(void) +{ + int i; + long *lp; + STR *fp; + + Sort_1 = fopen(Infile, "r"); + Sort_2 = fopen(Infile, "r"); + qsort((char *)Firstch, (int)Tbl.str_numstr, sizeof(*Firstch), cmp_str); + i = Tbl.str_numstr; + lp = Seekpts; + fp = Firstch; + while (i--) + *lp++ = fp++->pos; + fclose(Sort_1); + fclose(Sort_2); + Tbl.str_flags |= STR_ORDERED; +} + +static int +collate_range_cmp (int c1, int c2) +{ + static char s1[2], s2[2]; + int ret; + + s1[0] = c1; + s2[0] = c2; + if ((ret = strcoll(s1, s2)) != 0) + return (ret); + return (c1 - c2); +} + +/* + * cmp_str: + * Compare two strings in the file + */ +int +cmp_str(const void *s1, const void *s2) +{ + const STR *p1, *p2; + int c1, c2, n1, n2, r; + +#define SET_N(nf,ch) (nf = (ch == '\n')) +#define IS_END(ch,nf) (ch == EOF || (ch == (unsigned char)Delimch && nf)) + + p1 = (const STR *)s1; + p2 = (const STR *)s2; + + c1 = (unsigned char)p1->first; + c2 = (unsigned char)p2->first; + if ((r = collate_range_cmp(c1, c2)) != 0) + return r; + + fseek(Sort_1, p1->pos, SEEK_SET); + fseek(Sort_2, p2->pos, SEEK_SET); + + n1 = false; + n2 = false; + while (!isalnum(c1 = getc(Sort_1)) && c1 != '\0' && c1 != EOF) + SET_N(n1, c1); + while (!isalnum(c2 = getc(Sort_2)) && c2 != '\0' && c2 != EOF) + SET_N(n2, c2); + + while (!IS_END(c1, n1) && !IS_END(c2, n2)) { + if (Iflag) { + if (isupper(c1)) + c1 = tolower(c1); + if (isupper(c2)) + c2 = tolower(c2); + } + if ((r = collate_range_cmp(c1, c2)) != 0) + return r; + SET_N(n1, c1); + SET_N(n2, c2); + c1 = getc(Sort_1); + c2 = getc(Sort_2); + } + if (IS_END(c1, n1)) + c1 = 0; + if (IS_END(c2, n2)) + c2 = 0; + + return (collate_range_cmp(c1, c2)); +} + +/* + * randomize: + * Randomize the order of the string table. We must be careful + * not to randomize across delimiter boundaries. All + * randomization is done within each block. + */ +void +randomize(void) +{ + uint32_t cnt, i; + long tmp; + long *sp; + + Tbl.str_flags |= STR_RANDOM; + cnt = Tbl.str_numstr; + + /* + * move things around randomly + */ + + for (sp = Seekpts; cnt > 0; cnt--, sp++) { + i = arc4random_uniform(cnt); + tmp = sp[0]; + sp[0] = sp[i]; + sp[i] = tmp; + } +} Added: head/misc/fortune_strfile/files/strfile.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/fortune_strfile/files/strfile.h Tue Sep 13 20:58:26 2016 (r422086) @@ -0,0 +1,52 @@ +/*- + * Copyright (c) 1991, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Ken Arnold. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * @(#)strfile.h 8.1 (Berkeley) 5/31/93 + */ +/* $FreeBSD: src/games/fortune/strfile/strfile.h,v 1.3 1999/10/02 12:33:37 dcs Exp $ */ + +#define STR_ENDSTRING(line,tbl) \ + (((unsigned char)(line)[0]) == (tbl).str_delim && (line)[1] == '\n') + +typedef struct { /* information table */ +#define VERSION 1 + unsigned long str_version; /* version number */ + unsigned long str_numstr; /* # of strings in the file */ + unsigned long str_longlen; /* length of longest string */ + unsigned long str_shortlen; /* length of shortest string */ +#define STR_RANDOM 0x1 /* randomized pointers */ +#define STR_ORDERED 0x2 /* ordered pointers */ +#define STR_ROTATED 0x4 /* rot-13'd text */ +#define STR_COMMENTS 0x8 /* embedded comments */ + unsigned long str_flags; /* bit field for flags */ + unsigned char stuff[4]; /* long aligned space */ +#define str_delim stuff[0] /* delimiting character */ +} STRFILE; Added: head/misc/fortune_strfile/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/fortune_strfile/pkg-descr Tue Sep 13 20:58:26 2016 (r422086) @@ -0,0 +1,4 @@ +This is a duplicate of strfile(8). + +It exists to make it possible to have fortune ports without first having +to install the games distribution. From owner-svn-ports-head@freebsd.org Tue Sep 13 21:06:25 2016 Return-Path: Delivered-To: svn-ports-head@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 27EEABD9AA4; Tue, 13 Sep 2016 21:06:25 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E34C6695; Tue, 13 Sep 2016 21:06:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id ACF06BDD30; Tue, 13 Sep 2016 23:06:22 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 6D744BDCF6; Tue, 13 Sep 2016 23:06:22 +0200 (CEST) Subject: Re: svn commit: r422086 - in head/misc: . fortune_strfile fortune_strfile/files To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609132058.u8DKwQn9056092@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <7c79ba8d-0ff1-b155-2b1d-566089fc5c9a@FreeBSD.org> Date: Tue, 13 Sep 2016 23:06:20 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609132058.u8DKwQn9056092@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="li7lqMqGrQMaBH6Hdum8o8lTgCfs4MCLw" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 21:06:25 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --li7lqMqGrQMaBH6Hdum8o8lTgCfs4MCLw Content-Type: multipart/mixed; boundary="BCDPKg7vddCOlIAm2tdkNnqRJbj88TfFW"; protected-headers="v1" From: Mathieu Arnold To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <7c79ba8d-0ff1-b155-2b1d-566089fc5c9a@FreeBSD.org> Subject: Re: svn commit: r422086 - in head/misc: . fortune_strfile fortune_strfile/files References: <201609132058.u8DKwQn9056092@repo.freebsd.org> In-Reply-To: <201609132058.u8DKwQn9056092@repo.freebsd.org> --BCDPKg7vddCOlIAm2tdkNnqRJbj88TfFW Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 13/09/2016 =C3=A0 22:58, John Marino a =C3=A9crit : > +do-install: > + ${MKDIR} ${STAGEDIR}${PREFIX}/bin > + ${INSTALL_PROGRAM} ${WRKSRC}/${PROGRAM} ${STAGEDIR}${PREFIX}/bin Is the MKDIR really needed ? It should be created for you at that point. --=20 Mathieu Arnold --BCDPKg7vddCOlIAm2tdkNnqRJbj88TfFW-- --li7lqMqGrQMaBH6Hdum8o8lTgCfs4MCLw Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2GpNXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IWnwQAKLkNcA7SQWF3vwDy1/oT9sb dHjSi2KjSe8T8ju2nPzBdZ4GbNUdL07CMkNrNmCqzcFy0m37HMbecswFnKQz25Eh XykDztvj4/yhUEJ5PDJLMqU1HXZs+JPmZ88nKbT6yYwScfDDNiNYtFUt1glvKmHc JgF2yNm7OzAXQaoEA8PiSLd2A9LkZ4bBUIS7TIAscj4F/3bVjEAusMHQmaXESmH5 9RFaw8JK0JAAmj7L74I99rdqUtCqtlDXXBc4B2021VvxWc5WjbxEfEGVsnBgWuDs LnYI7Bpc3Rhf61ZIOuIUkpazHbtXL4LIxzbefMPYkIObSc3WizuWCMfXAVUuKdaF irD6+7B41dzlim8H0kziDbhVVm9kUsMH7u1WbS5o6lxoxDg9y+8nVWmN3CffMALC +2CVrbBTFss6oXCAuG/Vd91pBIjMXJlw743oYtwRPmSn2QnIjMjtc8oexYXhi3JA zaEd+T+G/MxE42dfX2TstErUvd9eQv7tAnyV8ohFsZbZqgiYasv+pCHx6WUIM72x /kJNETpEdVXpYvSo650Dj/mRCxj+RSBD/zR44y1Kp0ML7Gbxz2lg//9I7J35KpRi bGQ4+hDog+RskT4cp+FyZWX0lFwqZbewz6vQyPOWSHUcGHPRzzcZQKfxKknuvl4s yXGnoP54ojQ+0RiWCheJ =Aa9u -----END PGP SIGNATURE----- --li7lqMqGrQMaBH6Hdum8o8lTgCfs4MCLw-- From owner-svn-ports-head@freebsd.org Tue Sep 13 22:34:30 2016 Return-Path: Delivered-To: svn-ports-head@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 25318BD9384; Tue, 13 Sep 2016 22:34:30 +0000 (UTC) (envelope-from amdmi3@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 EBF537D7; Tue, 13 Sep 2016 22:34:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DMYTNA093371; Tue, 13 Sep 2016 22:34:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DMYTH6093370; Tue, 13 Sep 2016 22:34:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609132234.u8DMYTH6093370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Sep 2016 22:34:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422087 - head/games/pioneer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 22:34:30 -0000 Author: amdmi3 Date: Tue Sep 13 22:34:28 2016 New Revision: 422087 URL: https://svnweb.freebsd.org/changeset/ports/422087 Log: - Switch to newly supported CC licenses Submitted by: lightside@gmx.com (maintainer via private email) Modified: head/games/pioneer/Makefile Modified: head/games/pioneer/Makefile ============================================================================== --- head/games/pioneer/Makefile Tue Sep 13 20:58:26 2016 (r422086) +++ head/games/pioneer/Makefile Tue Sep 13 22:34:28 2016 (r422087) @@ -8,21 +8,19 @@ CATEGORIES= games MAINTAINER= lightside@gmx.com COMMENT= Space adventure game set in the Milky Way galaxy -LICENSE= APACHE20 GPLv3 MIT ZLIB CCBYSAv3 DejaVu GLEW IUP SIL +LICENSE= APACHE20 GPLv3 MIT ZLIB CC-BY-SA-3.0 DejaVu GLEW IUP SIL LICENSE_COMB= multi -LICENSE_NAME_CCBYSAv3= Creative Commons Attribution-ShareAlike 3.0 Unported license LICENSE_NAME_DejaVu= Bitstream Vera and Arev fonts license LICENSE_NAME_GLEW= The OpenGL Extension Wrangler Library license LICENSE_NAME_IUP= Galaxy colour image use policy LICENSE_NAME_SIL= SIL open font license version 1.1 LICENSE_FILE_APACHE20= ${WRKSRC}/licenses/Apache-2.0.txt -LICENSE_FILE_CCBYSAv3= ${WRKSRC}/licenses/CC-BY-SA-3.0.txt +LICENSE_FILE_CC-BY-SA-3.0= ${WRKSRC}/licenses/CC-BY-SA-3.0.txt LICENSE_FILE_DejaVu= ${WRKSRC}/licenses/DejaVu-license.txt LICENSE_FILE_GLEW= ${WRKSRC}/licenses/GLEW.txt LICENSE_FILE_GPLv3= ${WRKSRC}/licenses/GPL-3.txt LICENSE_FILE_IUP= ${WRKSRC}/licenses/Image\ Use\ Policy\ -\ NASA\ Spitzer\ Space\ Telescope.html LICENSE_FILE_SIL= ${WRKSRC}/licenses/SIL-1.1.txt -LICENSE_PERMS_CCBYSAv3= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_PERMS_DejaVu= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_PERMS_GLEW= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_PERMS_IUP= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept From owner-svn-ports-head@freebsd.org Tue Sep 13 23:34:06 2016 Return-Path: Delivered-To: svn-ports-head@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 345AFBD9787; Tue, 13 Sep 2016 23:34:06 +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 01E17C26; Tue, 13 Sep 2016 23:34:05 +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 u8DNY59B016012; Tue, 13 Sep 2016 23:34:05 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DNY5ew016010; Tue, 13 Sep 2016 23:34:05 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609132334.u8DNY5ew016010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 13 Sep 2016 23:34:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422088 - head/german/wordpress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 23:34:06 -0000 Author: wen Date: Tue Sep 13 23:34:04 2016 New Revision: 422088 URL: https://svnweb.freebsd.org/changeset/ports/422088 Log: - Update to 4.6.1 PR: 212643 Submitted by: joneum@bsdproject.de(maintainer) Modified: head/german/wordpress/Makefile head/german/wordpress/distinfo Modified: head/german/wordpress/Makefile ============================================================================== --- head/german/wordpress/Makefile Tue Sep 13 22:34:28 2016 (r422087) +++ head/german/wordpress/Makefile Tue Sep 13 23:34:04 2016 (r422088) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.6 +PORTVERSION= 4.6.1 DISTVERSIONSUFFIX= -de_DE CATEGORIES= german www MASTER_SITES= http://de.wordpress.org/ Modified: head/german/wordpress/distinfo ============================================================================== --- head/german/wordpress/distinfo Tue Sep 13 22:34:28 2016 (r422087) +++ head/german/wordpress/distinfo Tue Sep 13 23:34:04 2016 (r422088) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471524832 -SHA256 (wordpress-4.6-de_DE.tar.gz) = a6b46fd39489bef34e4e9d6d9ea0e4d491b88976c7001e6899db1f28e78a26a2 -SIZE (wordpress-4.6-de_DE.tar.gz) = 8402176 +TIMESTAMP = 1473772317 +SHA256 (wordpress-4.6.1-de_DE.tar.gz) = 3325f1aa7a96d02746f67a517ed944ad8eeb2cca962cfb4205116a7075fd8de2 +SIZE (wordpress-4.6.1-de_DE.tar.gz) = 8405409 From owner-svn-ports-head@freebsd.org Wed Sep 14 00:09:46 2016 Return-Path: Delivered-To: svn-ports-head@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 A0C3CBDA40D; Wed, 14 Sep 2016 00:09:46 +0000 (UTC) (envelope-from cpm@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 739C6E85; Wed, 14 Sep 2016 00:09:46 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E09jVE027514; Wed, 14 Sep 2016 00:09:45 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E09jrx027513; Wed, 14 Sep 2016 00:09:45 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609140009.u8E09jrx027513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 14 Sep 2016 00:09:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422089 - head/textproc/ml1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 00:09:46 -0000 Author: cpm Date: Wed Sep 14 00:09:45 2016 New Revision: 422089 URL: https://svnweb.freebsd.org/changeset/ports/422089 Log: - Update MASTER_SITES - Add LICENSE PR: 212598 Submitted by: bob@eager.cx (maintainer) Reviewed by: amdmi3 (mentor) Approved by: amdmi3 (mentor) MFH: 2016Q3 Modified: head/textproc/ml1/Makefile Modified: head/textproc/ml1/Makefile ============================================================================== --- head/textproc/ml1/Makefile Tue Sep 13 23:34:04 2016 (r422088) +++ head/textproc/ml1/Makefile Wed Sep 14 00:09:45 2016 (r422089) @@ -4,12 +4,14 @@ PORTNAME= ml1 PORTVERSION= 4.11 CATEGORIES= textproc -MASTER_SITES= http://www.ml1.org.uk/tgz/ \ - http://www.ancientgeek.org.uk/tgz/ +MASTER_SITES= http://www.ml1.org.uk/distfiles/ \ + http://www.ancientgeek.org.uk/distfiles/ MAINTAINER= bob@eager.cx COMMENT= Original general purpose macro processor +LICENSE= BSD3CLAUSE + PLIST_FILES= bin/ml1 man/man1/ml1.1.gz do-install: From owner-svn-ports-head@freebsd.org Wed Sep 14 00:25:32 2016 Return-Path: Delivered-To: svn-ports-head@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 E2E08BDA6A8; Wed, 14 Sep 2016 00:25:32 +0000 (UTC) (envelope-from stephen@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 9594E85A; Wed, 14 Sep 2016 00:25:32 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E0PVjf034754; Wed, 14 Sep 2016 00:25:31 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E0PV78034753; Wed, 14 Sep 2016 00:25:31 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201609140025.u8E0PV78034753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Wed, 14 Sep 2016 00:25:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422090 - head/math/vtk6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 00:25:33 -0000 Author: stephen Date: Wed Sep 14 00:25:31 2016 New Revision: 422090 URL: https://svnweb.freebsd.org/changeset/ports/422090 Log: - Corrections to pkg-plist for when option "EXAMPLES" is OFF. PR: ports/212315 Submitted by: ice@extreme.hu Modified: head/math/vtk6/pkg-plist Modified: head/math/vtk6/pkg-plist ============================================================================== --- head/math/vtk6/pkg-plist Wed Sep 14 00:09:45 2016 (r422089) +++ head/math/vtk6/pkg-plist Wed Sep 14 00:25:31 2016 (r422090) @@ -368,7 +368,7 @@ %%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkInteractionImageTCL-%%VER2%%.a %%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkInteractionStyleTCL-%%VER2%%.a %%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkInteractionWidgetsTCL-%%VER2%%.a -%%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkLocalExampleTCL-%%VER2%%.a +%%EXAMPLES%%%%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkLocalExampleTCL-%%VER2%%.a %%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkParallelCoreTCL-%%VER2%%.a %%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkRenderingAnnotationTCL-%%VER2%%.a %%NO_SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkRenderingContextIIDTCL-%%VER2%%.a @@ -1415,8 +1415,8 @@ %%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkInteractionStyleTCL-%%VER2%%.so.1 %%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkInteractionWidgetsTCL-%%VER2%%.so %%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkInteractionWidgetsTCL-%%VER2%%.so.1 -%%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkLocalExampleTCL-%%VER2%%.so -%%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkLocalExampleTCL-%%VER2%%.so.1 +%%EXAMPLES%%%%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkLocalExampleTCL-%%VER2%%.so +%%EXAMPLES%%%%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkLocalExampleTCL-%%VER2%%.so.1 %%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkParallelCoreTCL-%%VER2%%.so %%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkParallelCoreTCL-%%VER2%%.so.1 %%SHARED%%%%TCLTK%%lib/vtk-%%VER2%%/libvtkRenderingAnnotationTCL-%%VER2%%.so From owner-svn-ports-head@freebsd.org Wed Sep 14 01:01:46 2016 Return-Path: Delivered-To: svn-ports-head@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 0D135BDAC18; Wed, 14 Sep 2016 01:01:46 +0000 (UTC) (envelope-from amdmi3@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 D1552777; Wed, 14 Sep 2016 01:01:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E11jAr048203; Wed, 14 Sep 2016 01:01:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E11iYv048201; Wed, 14 Sep 2016 01:01:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140101.u8E11iYv048201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 01:01:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422091 - head/astro/gpsprune X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:01:46 -0000 Author: amdmi3 Date: Wed Sep 14 01:01:44 2016 New Revision: 422091 URL: https://svnweb.freebsd.org/changeset/ports/422091 Log: - Update to 18.5 Modified: head/astro/gpsprune/Makefile head/astro/gpsprune/distinfo Modified: head/astro/gpsprune/Makefile ============================================================================== --- head/astro/gpsprune/Makefile Wed Sep 14 00:25:31 2016 (r422090) +++ head/astro/gpsprune/Makefile Wed Sep 14 01:01:44 2016 (r422091) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpsprune -PORTVERSION= 17.2 +PORTVERSION= 18.5 CATEGORIES= astro java MASTER_SITES= http://activityworkshop.net/software/${PORTNAME}/ \ http://mirror.amdmi3.ru/distfiles/ @@ -33,7 +33,7 @@ JAVA3D_DESC= Support for 3D view of trac JAVA3D_RUN_DEPENDS= java3d>=1.5.2:java/java3d do-install: - ${MKDIR} ${STAGEDIR}${JAVAJARDIR}/ + @${MKDIR} ${STAGEDIR}${JAVAJARDIR}/ ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${STAGEDIR}${JAVAJARDIR}/ ${INSTALL_SCRIPT} ${WRKDIR}/gpsprune.sh ${STAGEDIR}${PREFIX}/bin/gpsprune Modified: head/astro/gpsprune/distinfo ============================================================================== --- head/astro/gpsprune/distinfo Wed Sep 14 00:25:31 2016 (r422090) +++ head/astro/gpsprune/distinfo Wed Sep 14 01:01:44 2016 (r422091) @@ -1,2 +1,3 @@ -SHA256 (gpsprune_17.2.jar) = 85af45a553ab1b39b582fcdbee399beff99c0b4f1e349010bd8de0e03fb453ee -SIZE (gpsprune_17.2.jar) = 1080602 +TIMESTAMP = 1473707651 +SHA256 (gpsprune_18.5.jar) = 16b6fb2bc4be8d84a9a32987ecfc000924a0e95eed1b183d0c24169dcf3aa975 +SIZE (gpsprune_18.5.jar) = 1165487 From owner-svn-ports-head@freebsd.org Wed Sep 14 01:12:36 2016 Return-Path: Delivered-To: svn-ports-head@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 5B5E4BDAF97; Wed, 14 Sep 2016 01:12:36 +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 2E414C79; Wed, 14 Sep 2016 01:12:36 +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 u8E1CZIe053409; Wed, 14 Sep 2016 01:12:35 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E1CZU0053407; Wed, 14 Sep 2016 01:12:35 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609140112.u8E1CZU0053407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 14 Sep 2016 01:12:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422092 - head/devel/p5-Config-Model X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:12:36 -0000 Author: wen Date: Wed Sep 14 01:12:35 2016 New Revision: 422092 URL: https://svnweb.freebsd.org/changeset/ports/422092 Log: - Update to 2.091 Changes: http://search.cpan.org/src/DDUMONT/Config-Model-2.091/Changes Modified: head/devel/p5-Config-Model/Makefile head/devel/p5-Config-Model/distinfo Modified: head/devel/p5-Config-Model/Makefile ============================================================================== --- head/devel/p5-Config-Model/Makefile Wed Sep 14 01:01:44 2016 (r422091) +++ head/devel/p5-Config-Model/Makefile Wed Sep 14 01:12:35 2016 (r422092) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Config-Model -PORTVERSION= 2.089 +PORTVERSION= 2.091 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Config-Model/distinfo ============================================================================== --- head/devel/p5-Config-Model/distinfo Wed Sep 14 01:01:44 2016 (r422091) +++ head/devel/p5-Config-Model/distinfo Wed Sep 14 01:12:35 2016 (r422092) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473159218 -SHA256 (Config-Model-2.089.tar.gz) = 3e17fb604f59d4254d31fe378cff2a00770d6efb040cf92c7cac48dfbe3b0d9b -SIZE (Config-Model-2.089.tar.gz) = 331193 +TIMESTAMP = 1473809667 +SHA256 (Config-Model-2.091.tar.gz) = bf19746f722e525672ad042c896b0c96d48e12ef4f0dd56fd630f408297d2af5 +SIZE (Config-Model-2.091.tar.gz) = 331489 From owner-svn-ports-head@freebsd.org Wed Sep 14 01:16:10 2016 Return-Path: Delivered-To: svn-ports-head@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 155A2BDA0B8; Wed, 14 Sep 2016 01:16:10 +0000 (UTC) (envelope-from amdmi3@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 C69ADDAF; Wed, 14 Sep 2016 01:16:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E1G91d053665; Wed, 14 Sep 2016 01:16:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E1G8eg053661; Wed, 14 Sep 2016 01:16:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140116.u8E1G8eg053661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 01:16:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422093 - head/games/crrcsim X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:16:10 -0000 Author: amdmi3 Date: Wed Sep 14 01:16:08 2016 New Revision: 422093 URL: https://svnweb.freebsd.org/changeset/ports/422093 Log: - Update to 0.9.13 - Add LICENSE - Switch to USES=localbase Added: head/games/crrcsim/pkg-plist (contents, props changed) Modified: head/games/crrcsim/Makefile head/games/crrcsim/distinfo head/games/crrcsim/pkg-descr Modified: head/games/crrcsim/Makefile ============================================================================== --- head/games/crrcsim/Makefile Wed Sep 14 01:12:35 2016 (r422092) +++ head/games/crrcsim/Makefile Wed Sep 14 01:16:08 2016 (r422093) @@ -2,31 +2,32 @@ # $FreeBSD$ PORTNAME= crrcsim -PORTVERSION= 0.9.11 -PORTREVISION= 5 +PORTVERSION= 0.9.13 CATEGORIES= games -MASTER_SITES= BERLIOS +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Model-airplane flight simulation program +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib LIB_DEPENDS= libportaudio.so:audio/portaudio GNU_CONFIGURE= yes -USES= gmake jpeg +USES= gettext gmake jpeg localbase USE_SDL= sdl USE_GL= gl glu +USE_XORG= x11 -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -lintl -PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz PORTDOCS= * PORTDATA= * DESKTOP_ENTRIES="CRRCsim" \ - "Model-airplane flight simulation program" \ + "" \ "${DATADIR}/icons/crrcsim.png" \ "crrcsim" \ "Game;Simulation;" \ Modified: head/games/crrcsim/distinfo ============================================================================== --- head/games/crrcsim/distinfo Wed Sep 14 01:12:35 2016 (r422092) +++ head/games/crrcsim/distinfo Wed Sep 14 01:16:08 2016 (r422093) @@ -1,2 +1,3 @@ -SHA256 (crrcsim-0.9.11.tar.gz) = 3f42582623613ebc112b9c124d2905da4b90789b48c6c930052201737b7ce99b -SIZE (crrcsim-0.9.11.tar.gz) = 6779165 +TIMESTAMP = 1473646750 +SHA256 (crrcsim-0.9.13.tar.gz) = abe59b35ebb4322f3c48e6aca57dbf27074282d4928d66c0caa40d7a97391698 +SIZE (crrcsim-0.9.13.tar.gz) = 8337392 Modified: head/games/crrcsim/pkg-descr ============================================================================== --- head/games/crrcsim/pkg-descr Wed Sep 14 01:12:35 2016 (r422092) +++ head/games/crrcsim/pkg-descr Wed Sep 14 01:16:08 2016 (r422093) @@ -8,4 +8,4 @@ aircraft. Stalls are properly modelled a possible with your own rc transmitter, or any input device such as joystick, mouse, keyboard. -WWW: http://crrcsim.berlios.de/wiki/ +WWW: https://sourceforge.net/projects/crrcsim/ Added: head/games/crrcsim/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/crrcsim/pkg-plist Wed Sep 14 01:16:08 2016 (r422093) @@ -0,0 +1,6 @@ +bin/crrcsim +man/man1/crrcsim.1.gz +share/locale/cs/LC_MESSAGES/crrcsim.mo +share/locale/de/LC_MESSAGES/crrcsim.mo +share/locale/fr/LC_MESSAGES/crrcsim.mo +share/locale/it/LC_MESSAGES/crrcsim.mo From owner-svn-ports-head@freebsd.org Wed Sep 14 01:16:14 2016 Return-Path: Delivered-To: svn-ports-head@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 35181BDA0DE; Wed, 14 Sep 2016 01:16:14 +0000 (UTC) (envelope-from amdmi3@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 DCF89DC9; Wed, 14 Sep 2016 01:16:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E1GDoN053784; Wed, 14 Sep 2016 01:16:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E1GC8e053782; Wed, 14 Sep 2016 01:16:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140116.u8E1GC8e053782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 01:16:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422094 - head/games/teeworlds X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:16:14 -0000 Author: amdmi3 Date: Wed Sep 14 01:16:12 2016 New Revision: 422094 URL: https://svnweb.freebsd.org/changeset/ports/422094 Log: - Update to 0.6.3 - Switch to options helpers Modified: head/games/teeworlds/Makefile head/games/teeworlds/distinfo Modified: head/games/teeworlds/Makefile ============================================================================== --- head/games/teeworlds/Makefile Wed Sep 14 01:16:08 2016 (r422093) +++ head/games/teeworlds/Makefile Wed Sep 14 01:16:12 2016 (r422094) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= teeworlds -PORTVERSION= 0.6.2 -PORTREVISION= 3 +PORTVERSION= 0.6.3 CATEGORIES= games -MASTER_SITES= https://www.teeworlds.com/files/ \ +MASTER_SITES= https://downloads.teeworlds.com/ \ http://mirror.amdmi3.ru/distfiles/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-source +DISTNAME= ${PORTNAME}-${PORTVERSION}-src DISTFILES= ${DISTNAME}${EXTRACT_SUFX} bam-${BAM_VERSION}${EXTRACT_SUFX} MAINTAINER= amdmi3@FreeBSD.org @@ -74,11 +73,11 @@ do-build: ${BAM_WRKSRC}/bam -n -a -v ${_MAKE_JOBS:C/-j/-j /} ${BAM_TARGET} do-install: -.if ! ${PORT_OPTIONS:MSERVER_ONLY} - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ -.endif ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}_srv ${STAGEDIR}${PREFIX}/bin/ @cd ${WRKSRC}/data && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/other/icons/Teeworlds.ico ${STAGEDIR}${DATADIR}/ +do-install-SERVER_ONLY-off: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + .include Modified: head/games/teeworlds/distinfo ============================================================================== --- head/games/teeworlds/distinfo Wed Sep 14 01:16:08 2016 (r422093) +++ head/games/teeworlds/distinfo Wed Sep 14 01:16:12 2016 (r422094) @@ -1,4 +1,5 @@ -SHA256 (teeworlds-0.6.2-source.tar.gz) = 00061b30377597a61810eda3dc5de0caad439ca851cb8eebbe4152e4f861e2af -SIZE (teeworlds-0.6.2-source.tar.gz) = 9179568 +TIMESTAMP = 1473635828 +SHA256 (teeworlds-0.6.3-src.tar.gz) = 490ee7c372898761c609af8d7b0c6bd55942c6c6fcd7f361eefa00abfc70077b +SIZE (teeworlds-0.6.3-src.tar.gz) = 13101446 SHA256 (bam-0.4.0.tar.gz) = 5e4e4920b4d265da582f66774e9b1ec8ddfbe75ddc028fba86c12f686ea18db3 SIZE (bam-0.4.0.tar.gz) = 206780 From owner-svn-ports-head@freebsd.org Wed Sep 14 01:17:29 2016 Return-Path: Delivered-To: svn-ports-head@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 7B57CBDA12F; Wed, 14 Sep 2016 01:17:29 +0000 (UTC) (envelope-from amdmi3@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 579B1F64; Wed, 14 Sep 2016 01:17:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E1HSJT054147; Wed, 14 Sep 2016 01:17:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E1HSD5054142; Wed, 14 Sep 2016 01:17:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140117.u8E1HSD5054142@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 01:17:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422095 - in head/games: . endless-sky-high-dpi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:17:29 -0000 Author: amdmi3 Date: Wed Sep 14 01:17:27 2016 New Revision: 422095 URL: https://svnweb.freebsd.org/changeset/ports/422095 Log: This is a collection of double-resolution sprites for Endless Sky. These sprites will only be used if: - you have set the "zoom factor" to higher than 100% in the preferences, or - you have a high-DPI monitor. WWW: https://github.com/endless-sky/endless-sky-high-dpi Added: head/games/endless-sky-high-dpi/ head/games/endless-sky-high-dpi/Makefile (contents, props changed) head/games/endless-sky-high-dpi/distinfo (contents, props changed) head/games/endless-sky-high-dpi/pkg-descr (contents, props changed) head/games/endless-sky-high-dpi/pkg-message (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Wed Sep 14 01:16:12 2016 (r422094) +++ head/games/Makefile Wed Sep 14 01:17:27 2016 (r422095) @@ -233,6 +233,7 @@ SUBDIR += endgame-singularity SUBDIR += endgame-singularity-music SUBDIR += endless-sky + SUBDIR += endless-sky-high-dpi SUBDIR += enigma SUBDIR += ensemblist SUBDIR += entombed Added: head/games/endless-sky-high-dpi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/endless-sky-high-dpi/Makefile Wed Sep 14 01:17:27 2016 (r422095) @@ -0,0 +1,32 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= high-dpi +PORTVERSION= 0.9.2 +DISTVERSIONPREFIX= v +CATEGORIES= games +PKGNAMEPREFIX= endless-sky- + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= High-DPI graphics for Endless Sky + +LICENSE= CC-BY-3.0 CC-BY-SA-3.0 CC-BY-SA-4.0 PD +LICENSE_COMB= multi + +RUN_DEPENDS= endless-sky:games/endless-sky + +USE_GITHUB= yes +GH_ACCOUNT= endless-sky +GH_PROJECT= endless-sky-${PORTNAME} + +DATADIR= ${PREFIX}/share/endless-sky/plugins/${PORTNAME} + +NO_BUILD= yes +NO_ARCH= yes + +PORTDATA= * + +do-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} "images" ${STAGEDIR}${DATADIR} + +.include Added: head/games/endless-sky-high-dpi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/endless-sky-high-dpi/distinfo Wed Sep 14 01:17:27 2016 (r422095) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473578328 +SHA256 (endless-sky-endless-sky-high-dpi-v0.9.2_GH0.tar.gz) = 6e463830d6c563c10b8ba66cef38e6ed647ecbeed4b03dee56381e20e5a2ac96 +SIZE (endless-sky-endless-sky-high-dpi-v0.9.2_GH0.tar.gz) = 107831057 Added: head/games/endless-sky-high-dpi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/endless-sky-high-dpi/pkg-descr Wed Sep 14 01:17:27 2016 (r422095) @@ -0,0 +1,7 @@ +This is a collection of double-resolution sprites for Endless Sky. +These sprites will only be used if: + +- you have set the "zoom factor" to higher than 100% in the preferences, or +- you have a high-DPI monitor. + +WWW: https://github.com/endless-sky/endless-sky-high-dpi Added: head/games/endless-sky-high-dpi/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/endless-sky-high-dpi/pkg-message Wed Sep 14 01:17:27 2016 (r422095) @@ -0,0 +1,4 @@ +Note that high-dpi sprites will only be used if: + +- you have set the "zoom factor" to higher than 100% in the preferences, or +- you have a high-DPI monitor. From owner-svn-ports-head@freebsd.org Wed Sep 14 01:45:33 2016 Return-Path: Delivered-To: svn-ports-head@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 BAD58BDA57C; Wed, 14 Sep 2016 01:45:33 +0000 (UTC) (envelope-from amdmi3@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 7C327B9F; Wed, 14 Sep 2016 01:45:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E1jW5g065159; Wed, 14 Sep 2016 01:45:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E1jWr2065155; Wed, 14 Sep 2016 01:45:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140145.u8E1jWr2065155@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 01:45:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422096 - in head/games/osgg: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:45:33 -0000 Author: amdmi3 Date: Wed Sep 14 01:45:32 2016 New Revision: 422096 URL: https://svnweb.freebsd.org/changeset/ports/422096 Log: - Update to 1.0 - Add LICENSE - Add .desktop file - Simplify makefile Added: head/games/osgg/files/patch-Makefile (contents, props changed) Modified: head/games/osgg/Makefile head/games/osgg/distinfo head/games/osgg/files/patch-main.cpp Modified: head/games/osgg/Makefile ============================================================================== --- head/games/osgg/Makefile Wed Sep 14 01:17:27 2016 (r422095) +++ head/games/osgg/Makefile Wed Sep 14 01:45:32 2016 (r422096) @@ -2,36 +2,32 @@ # $FreeBSD$ PORTNAME= osgg -PORTVERSION= 0.99 -PORTREVISION= 9 +PORTVERSION= 1.0 CATEGORIES= games MASTER_SITES= SF MAINTAINER= amdmi3@FreeBSD.org COMMENT= OldSkool Gravity Game +LICENSE= GPLv3+ + USES= tar:bzip2 USE_SDL= sdl image ttf mixer -USE_GL= yes - -WRKSRC= ${WRKDIR}/${PORTNAME} +USE_GL= gl +MAKE_ENV= DATADIR="${DATADIR}/" PLIST_FILES= bin/${PORTNAME} PORTDATA= * -post-extract: - @${FIND} -d ${WRKSRC} -name .svn -exec ${RM} -rf {} \; +DESKTOP_ENTRIES="Osgg" \ + "" \ + "${DATADIR}/icon.png" \ + "osgg" \ + "Game;ArcadeGame;" \ + "" -post-patch: - @${RM} -f ${WRKSRC}/osgg - @${REINPLACE_CMD} -e 's|"[a-z]*.txt"|DATADIR&|; s|endian.h|sys/&|' \ - ${WRKSRC}/main.cpp - -do-build: - cd ${WRKSRC} && ${CXX} ${CXXFLAGS} `${SDL_CONFIG} --libs --cflags` \ - -lGL -lSDL_image -lSDL_ttf -lSDL_mixer -o ${PORTNAME} \ - -DDATADIR="\"${DATADIR}/\"" \ - main.cpp text.cpp sound.cpp +post-extract: + @${RM} -f ${WRKSRC}/osgg ${WRKSRC}/launcher/launcher do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ Modified: head/games/osgg/distinfo ============================================================================== --- head/games/osgg/distinfo Wed Sep 14 01:17:27 2016 (r422095) +++ head/games/osgg/distinfo Wed Sep 14 01:45:32 2016 (r422096) @@ -1,2 +1,3 @@ -SHA256 (osgg-0.99.tar.bz2) = d186294f490437e8bfce1f5947673932f57fc5719fa10dac5153aa7be8ed3f86 -SIZE (osgg-0.99.tar.bz2) = 2664753 +TIMESTAMP = 1471280939 +SHA256 (osgg-1.0.tar.bz2) = 59654b2a845883078071eca847a1fd07f0084302c1555a4d9d239155f29d758c +SIZE (osgg-1.0.tar.bz2) = 300614 Added: head/games/osgg/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/osgg/files/patch-Makefile Wed Sep 14 01:45:32 2016 (r422096) @@ -0,0 +1,37 @@ +--- Makefile.orig 2016-08-13 02:07:57 UTC ++++ Makefile +@@ -1,26 +1,26 @@ + DATADIR?=./ + +-CC=g++ -DDATADIR="\"$(DATADIR)\"" ++CXX?=g++ + +-CFLAGS+=-Wall `sdl-config --cflags` ++CXXFLAGS+=-Wall `sdl-config --cflags` -DDATADIR="\"$(DATADIR)\"" + +-LIBS+=-lGL `sdl-config --libs` -lSDL_ttf -lSDL_image -lSDL_mixer ++LIBS+=`sdl-config --libs` -lSDL_ttf -lSDL_image -lSDL_mixer -lGL -lm + + SOURCES=main.cpp text.cpp sound.cpp +-OBJECTS=$(SOURCES:.c=.o) ++OBJECTS=$(SOURCES:.cpp=.o) + + EXECUTABLE=osgg + + all: $(SOURCES) $(EXECUTABLE) + + server: server.cpp +- $(CC) $(LDFLAGS) server.cpp $(LIBS) -o $@ +- ++ $(CXX) $(CXXFLAGS) $(LDFLAGS) server.cpp $(LIBS) -o $@ ++ + $(EXECUTABLE): $(OBJECTS) +- $(CC) $(LDFLAGS) $(OBJECTS) $(LIBS) -o $@ ++ $(CXX) $(LDFLAGS) $(OBJECTS) $(LIBS) -o $@ + + .cpp.o: +- $(CC) $(CFLAGS) $< -o $@ ++ $(CXX) $(CXXFLAGS) -c $< -o $@ + + clean: + rm -f *.o $(EXECUTABLE) Modified: head/games/osgg/files/patch-main.cpp ============================================================================== --- head/games/osgg/files/patch-main.cpp Wed Sep 14 01:17:27 2016 (r422095) +++ head/games/osgg/files/patch-main.cpp Wed Sep 14 01:45:32 2016 (r422096) @@ -1,6 +1,6 @@ ---- main.cpp.orig 2009-03-14 01:46:04.000000000 +0300 -+++ main.cpp 2013-12-21 03:29:52.401817465 +0400 -@@ -26,6 +26,7 @@ +--- main.cpp.orig 2016-08-13 02:07:57 UTC ++++ main.cpp +@@ -27,15 +27,18 @@ #include #include #include @@ -8,7 +8,21 @@ #include -@@ -340,6 +341,7 @@ +-#ifndef WIN32 +- #include +-#else ++#if defined(WIN32) + typedef unsigned int uint; + #include + #include ++#elif defined(__FreeBSD__) ++ #include ++#else ++ #include + #endif + + +@@ -348,6 +351,7 @@ bool classBullets::col(vector targ } } } @@ -16,3 +30,25 @@ } void classBullets::shoot(entity owner, gPs velocity) +@@ -1826,9 +1830,9 @@ int main(int argc, char **argv) + + GLfloat scale; + +- readEnt("ship.txt", gameInfo.shipStaticVerts); +- readEnt("base.txt", gameInfo.baseStaticVerts); +- readEnt("enemy.txt", gameInfo.enemyStaticVerts); ++ readEnt(DATADIR "ship.txt", gameInfo.shipStaticVerts); ++ readEnt(DATADIR "base.txt", gameInfo.baseStaticVerts); ++ readEnt(DATADIR "enemy.txt", gameInfo.enemyStaticVerts); + + //Enter Main loop + while(gameState != GameStateQuit) +@@ -1958,7 +1962,7 @@ int main(int argc, char **argv) + break; + + case SDLK_d: +- saveMap(polys, ents, "verts.txt"); ++ saveMap(polys, ents, DATADIR "verts.txt"); + break; + + case SDLK_s: From owner-svn-ports-head@freebsd.org Wed Sep 14 01:52:55 2016 Return-Path: Delivered-To: svn-ports-head@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 EF3E7BDA6EF; Wed, 14 Sep 2016 01:52:55 +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 C143CC2; Wed, 14 Sep 2016 01:52:55 +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 u8E1qt4p069105; Wed, 14 Sep 2016 01:52:55 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E1qs6Q069103; Wed, 14 Sep 2016 01:52:54 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609140152.u8E1qs6Q069103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 14 Sep 2016 01:52:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422097 - head/devel/p5-Test-Deep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 01:52:56 -0000 Author: wen Date: Wed Sep 14 01:52:54 2016 New Revision: 422097 URL: https://svnweb.freebsd.org/changeset/ports/422097 Log: - Update to 1.123 Changes: http://cpansearch.perl.org/src/RJBS/Test-Deep-1.123/Changes Modified: head/devel/p5-Test-Deep/Makefile head/devel/p5-Test-Deep/distinfo Modified: head/devel/p5-Test-Deep/Makefile ============================================================================== --- head/devel/p5-Test-Deep/Makefile Wed Sep 14 01:45:32 2016 (r422096) +++ head/devel/p5-Test-Deep/Makefile Wed Sep 14 01:52:54 2016 (r422097) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Deep -PORTVERSION= 1.120 +PORTVERSION= 1.123 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Deep/distinfo ============================================================================== --- head/devel/p5-Test-Deep/distinfo Wed Sep 14 01:45:32 2016 (r422096) +++ head/devel/p5-Test-Deep/distinfo Wed Sep 14 01:52:54 2016 (r422097) @@ -1,2 +1,3 @@ -SHA256 (Test-Deep-1.120.tar.gz) = 207ef8ea71291e5cf8258d1a4d98d360b9b5870989d187b3e2ff3c0fb201becd -SIZE (Test-Deep-1.120.tar.gz) = 38973 +TIMESTAMP = 1473815626 +SHA256 (Test-Deep-1.123.tar.gz) = 15784c85b972f7497888db1b26bfa2b028d9c0636ade6d8a4a97fbb832a53db0 +SIZE (Test-Deep-1.123.tar.gz) = 40933 From owner-svn-ports-head@freebsd.org Wed Sep 14 03:14:45 2016 Return-Path: Delivered-To: svn-ports-head@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 3A5DBBD95F6; Wed, 14 Sep 2016 03:14:45 +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 F3FCA31C; Wed, 14 Sep 2016 03:14:44 +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 u8E3Ei7e099804; Wed, 14 Sep 2016 03:14:44 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E3EipL099802; Wed, 14 Sep 2016 03:14:44 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201609140314.u8E3EipL099802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 14 Sep 2016 03:14:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422098 - head/finance/prestashop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 03:14:45 -0000 Author: wen Date: Wed Sep 14 03:14:43 2016 New Revision: 422098 URL: https://svnweb.freebsd.org/changeset/ports/422098 Log: - Update to 1.6.1.7 Modified: head/finance/prestashop/Makefile head/finance/prestashop/distinfo Modified: head/finance/prestashop/Makefile ============================================================================== --- head/finance/prestashop/Makefile Wed Sep 14 01:52:54 2016 (r422097) +++ head/finance/prestashop/Makefile Wed Sep 14 03:14:43 2016 (r422098) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= prestashop -PORTVERSION= 1.6.1.6 +PORTVERSION= 1.6.1.7 CATEGORIES= finance www MASTER_SITES= http://www.prestashop.com/download/old/ DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/finance/prestashop/distinfo ============================================================================== --- head/finance/prestashop/distinfo Wed Sep 14 01:52:54 2016 (r422097) +++ head/finance/prestashop/distinfo Wed Sep 14 03:14:43 2016 (r422098) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466992900 -SHA256 (prestashop_1.6.1.6.zip) = ba82383447c103801419d58f7c2dbc6d3ab43797f019a30ab2058bd5528b6e9d -SIZE (prestashop_1.6.1.6.zip) = 21529488 +TIMESTAMP = 1473820559 +SHA256 (prestashop_1.6.1.7.zip) = 58e086359406cecda2b6fad6d8ca7740443d25c3bc28673a51bf117ec5f62d8b +SIZE (prestashop_1.6.1.7.zip) = 21656066 From owner-svn-ports-head@freebsd.org Wed Sep 14 03:37:10 2016 Return-Path: Delivered-To: svn-ports-head@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 15D27BD9B44; Wed, 14 Sep 2016 03:37:10 +0000 (UTC) (envelope-from marino@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 DC7BBDD1; Wed, 14 Sep 2016 03:37:09 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E3b9rL007580; Wed, 14 Sep 2016 03:37:09 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E3b9As007579; Wed, 14 Sep 2016 03:37:09 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140337.u8E3b9As007579@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 03:37:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422099 - head/misc/fortune_strfile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 03:37:10 -0000 Author: marino Date: Wed Sep 14 03:37:08 2016 New Revision: 422099 URL: https://svnweb.freebsd.org/changeset/ports/422099 Log: misc/fortune_strfile: Remove redundant mkdir command Modified: head/misc/fortune_strfile/Makefile Modified: head/misc/fortune_strfile/Makefile ============================================================================== --- head/misc/fortune_strfile/Makefile Wed Sep 14 03:14:43 2016 (r422098) +++ head/misc/fortune_strfile/Makefile Wed Sep 14 03:37:08 2016 (r422099) @@ -18,7 +18,6 @@ do-build: ${CC} ${CFLAGS} -o ${WRKSRC}/${PROGRAM} ${FILESDIR}/strfile.c do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/${PROGRAM} ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@freebsd.org Wed Sep 14 04:07:01 2016 Return-Path: Delivered-To: svn-ports-head@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 F0E24BD8071; Wed, 14 Sep 2016 04:07:00 +0000 (UTC) (envelope-from vanilla@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 A986C9EA; Wed, 14 Sep 2016 04:07:00 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E46x3f019352; Wed, 14 Sep 2016 04:06:59 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E46xcm019346; Wed, 14 Sep 2016 04:06:59 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609140406.u8E46xcm019346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 14 Sep 2016 04:06:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422100 - in head/www: . fabio fabio/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 04:07:01 -0000 Author: vanilla Date: Wed Sep 14 04:06:59 2016 New Revision: 422100 URL: https://svnweb.freebsd.org/changeset/ports/422100 Log: Add fabio 1.2.1, zero-conf load balancing HTTP(S) router managed by Consul. PR: 210540 Submitted by: stl@ossuary.net Added: head/www/fabio/ head/www/fabio/Makefile (contents, props changed) head/www/fabio/distinfo (contents, props changed) head/www/fabio/files/ head/www/fabio/files/fabio.in (contents, props changed) head/www/fabio/pkg-descr (contents, props changed) head/www/fabio/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Sep 14 03:37:08 2016 (r422099) +++ head/www/Makefile Wed Sep 14 04:06:59 2016 (r422100) @@ -154,6 +154,7 @@ SUBDIR += erwn SUBDIR += eventum SUBDIR += extjs + SUBDIR += fabio SUBDIR += fancybox SUBDIR += faup SUBDIR += fcgi Added: head/www/fabio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fabio/Makefile Wed Sep 14 04:06:59 2016 (r422100) @@ -0,0 +1,44 @@ +# $FreeBSD$ + +PORTNAME= fabio +PORTVERSION= 1.2.1 +DISTVERSIONPREFIX= v +CATEGORIES= www + +MAINTAINER= stl@ossuary.net +COMMENT= Zero-conf load balancing HTTP(S) router managed by Consul + +LICENSE= MIT + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= eBay:DEFAULT +GH_PROJECT= fabio + +USE_RC_SUBR= fabio + +USERS= nobody +GROUPS= nobody + +do-build: + @${MKDIR} ${WRKSRC}/src/github.com/eBay/fabio + +.for src in .gitignore .travis.yml CHANGELOG.md Dockerfile LICENSE Makefile \ + README.md Vagrantfile admin build cert config demo exit fabio.png \ + fabio.properties listen.go listen_test.go main.go metrics proxy \ + registry route routes.txt vendor + @${MV} ${WRKSRC}/${src} \ + ${WRKSRC}/src/github.com/eBay/fabio +.endfor + + @cd ${WRKSRC}/src/github.com/eBay/fabio; \ + ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x \ + -ldflags "-X main.GitDescribe=v${PORTVERSION}" -o bin/fabio + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/eBay/fabio/bin/fabio \ + ${STAGEDIR}${PREFIX}/sbin/fabio + ${INSTALL_DATA} ${WRKSRC}/src/github.com/eBay/fabio/fabio.properties \ + ${STAGEDIR}${PREFIX}/etc/fabio.properties.sample + +.include Added: head/www/fabio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fabio/distinfo Wed Sep 14 04:06:59 2016 (r422100) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473153824 +SHA256 (eBay-fabio-v1.2.1_GH0.tar.gz) = aaac0db2ca606f1029d6fab9364f06850de620d1b73fe8bd459b524ed739f780 +SIZE (eBay-fabio-v1.2.1_GH0.tar.gz) = 368826 Added: head/www/fabio/files/fabio.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fabio/files/fabio.in Wed Sep 14 04:06:59 2016 (r422100) @@ -0,0 +1,43 @@ +#!/bin/sh + +# +# PROVIDE: fabio +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# fabio_enable (bool): Set to NO by default. +# Set it to YES to enable fabio. +# fabio_user (user): Set user to run fabio. +# Default is "nobody". +# fabio_group (group): Set group to run fabio. +# Default is "nobody". + +. /etc/rc.subr + +name=fabio +rcvar=fabio_enable + +load_rc_config $name + +: ${fabio_enable:="NO"} +: ${fabio_user:="nobody"} +: ${fabio_group:="nobody"} + +pidfile=/var/run/fabio.pid +procname="%%PREFIX%%/sbin/fabio" +command="/usr/sbin/daemon" +command_args="-f -p ${pidfile} ${procname} -cfg %%PREFIX%%/etc/fabio.properties" + +start_precmd=fabio_startprecmd + +fabio_startprecmd() +{ + if [ ! -e ${pidfile} ]; then + install -o ${fabio_user} -g ${fabio_group} /dev/null ${pidfile}; + fi +} + +run_rc_command "$1" Added: head/www/fabio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fabio/pkg-descr Wed Sep 14 04:06:59 2016 (r422100) @@ -0,0 +1,4 @@ +A fast, modern, zero-conf load balancing HTTP(S) router for deploying +microservices managed by consul. + +https://github.com/eBay/fabio Added: head/www/fabio/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fabio/pkg-plist Wed Sep 14 04:06:59 2016 (r422100) @@ -0,0 +1,2 @@ +@sample etc/fabio.properties.sample +sbin/fabio From owner-svn-ports-head@freebsd.org Wed Sep 14 04:20:55 2016 Return-Path: Delivered-To: svn-ports-head@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 AC150BD8391; Wed, 14 Sep 2016 04:20:55 +0000 (UTC) (envelope-from marino@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 77F5DE64; Wed, 14 Sep 2016 04:20:55 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E4KsUs024264; Wed, 14 Sep 2016 04:20:54 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E4KsOV024263; Wed, 14 Sep 2016 04:20:54 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140420.u8E4KsOV024263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 04:20:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422101 - head/misc/fortune-mod-bible X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 04:20:55 -0000 Author: marino Date: Wed Sep 14 04:20:54 2016 New Revision: 422101 URL: https://svnweb.freebsd.org/changeset/ports/422101 Log: misc/fortune-mod-bible: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. While here, unsuppress build and installation commands and pet portlint. Approved by: general blanket Modified: head/misc/fortune-mod-bible/Makefile Modified: head/misc/fortune-mod-bible/Makefile ============================================================================== --- head/misc/fortune-mod-bible/Makefile Wed Sep 14 04:06:59 2016 (r422100) +++ head/misc/fortune-mod-bible/Makefile Wed Sep 14 04:20:54 2016 (r422101) @@ -7,32 +7,28 @@ PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= SF/fortunebible/fortunebible/Genesis DISTNAME= bible +DIST_SUBDIR= ${PORTNAME} MAINTAINER= doug@polands.org COMMENT= King James V Bible in fortune file format -DIST_SUBDIR= ${PORTNAME} +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile + NO_WRKSUBDIR= yes PKGMESSAGE= ${WRKDIR}/pkg-message USES= tar:bzip2 SUB_FILES+= pkg-message -.if exists(/usr/games/strfile) -_STRFILE= /usr/games/strfile -.elif exists(/usr/bin/strfile) -_STRFILE= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +_STRFILE= ${LOCALBASE}/bin/fortune_strfile post-extract: ${RM} ${WRKSRC}/bible.dat do-build: - @cd ${WRKSRC} && ${_STRFILE} -C bible + (cd ${WRKSRC} && ${_STRFILE} -C bible) do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/bible* ${STAGEDIR}${PREFIX}/share/games/fortune - + ${INSTALL_DATA} ${WRKSRC}/bible* \ + ${STAGEDIR}${PREFIX}/share/games/fortune .include From owner-svn-ports-head@freebsd.org Wed Sep 14 04:24:23 2016 Return-Path: Delivered-To: svn-ports-head@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 D70A6BD84EF; Wed, 14 Sep 2016 04:24:23 +0000 (UTC) (envelope-from tota@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 8E2B318C; Wed, 14 Sep 2016 04:24:23 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E4OMCp027319; Wed, 14 Sep 2016 04:24:22 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E4OMdf027314; Wed, 14 Sep 2016 04:24:22 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201609140424.u8E4OMdf027314@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 14 Sep 2016 04:24:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422102 - in head/devel: . R-cran-sourcetools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 04:24:23 -0000 Author: tota Date: Wed Sep 14 04:24:22 2016 New Revision: 422102 URL: https://svnweb.freebsd.org/changeset/ports/422102 Log: - Add new port: devel/R-cran-sourcetools Tools for the reading and tokenization of R code. The 'sourcetools' package provides both an R and C++ interface for the tokenization of R code, and helpers for interacting with the tokenized representation of R code. WWW: https://cran.r-project.org/web/packages/sourcetools/ Added: head/devel/R-cran-sourcetools/ head/devel/R-cran-sourcetools/Makefile (contents, props changed) head/devel/R-cran-sourcetools/distinfo (contents, props changed) head/devel/R-cran-sourcetools/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Sep 14 04:20:54 2016 (r422101) +++ head/devel/Makefile Wed Sep 14 04:24:22 2016 (r422102) @@ -43,6 +43,7 @@ SUBDIR += R-cran-reshape2 SUBDIR += R-cran-rngtools SUBDIR += R-cran-rstudioapi + SUBDIR += R-cran-sourcetools SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr SUBDIR += SpecTcl Added: head/devel/R-cran-sourcetools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-sourcetools/Makefile Wed Sep 14 04:24:22 2016 (r422102) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= sourcetools +PORTVERSION= 0.1.2 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Tools for the Reading and Tokenization of R Code + +LICENSE= MIT + +USES= cran:auto-plist,compiles + +.include Added: head/devel/R-cran-sourcetools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-sourcetools/distinfo Wed Sep 14 04:24:22 2016 (r422102) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473656218 +SHA256 (sourcetools_0.1.2.tar.gz) = 7a3222bf91d62a1aa028a9b87c3307e1980ea361bcc03a1ab81b99d6c7535f0e +SIZE (sourcetools_0.1.2.tar.gz) = 16227 Added: head/devel/R-cran-sourcetools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-sourcetools/pkg-descr Wed Sep 14 04:24:22 2016 (r422102) @@ -0,0 +1,6 @@ +Tools for the reading and tokenization of R code. The 'sourcetools' +package provides both an R and C++ interface for the tokenization +of R code, and helpers for interacting with the tokenized representation +of R code. + +WWW: https://cran.r-project.org/web/packages/sourcetools/ From owner-svn-ports-head@freebsd.org Wed Sep 14 04:29:14 2016 Return-Path: Delivered-To: svn-ports-head@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 A08D3BD8647; Wed, 14 Sep 2016 04:29:14 +0000 (UTC) (envelope-from marino@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 736CD3CD; Wed, 14 Sep 2016 04:29:14 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E4TDLH027688; Wed, 14 Sep 2016 04:29:13 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E4TDbc027687; Wed, 14 Sep 2016 04:29:13 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140429.u8E4TDbc027687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 04:29:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422103 - head/misc/fortuneit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 04:29:14 -0000 Author: marino Date: Wed Sep 14 04:29:13 2016 New Revision: 422103 URL: https://svnweb.freebsd.org/changeset/ports/422103 Log: misc/fortuneit: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. Approved by: general blanket Modified: head/misc/fortuneit/Makefile Modified: head/misc/fortuneit/Makefile ============================================================================== --- head/misc/fortuneit/Makefile Wed Sep 14 04:24:22 2016 (r422102) +++ head/misc/fortuneit/Makefile Wed Sep 14 04:29:13 2016 (r422103) @@ -10,13 +10,8 @@ DISTNAME= fortune-it-${PORTVERSION} MAINTAINER= gmarco@gufi.org COMMENT= Funny fortune file in Italian -.if exists(/usr/games/strfile) -STRCMD= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRCMD= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRCMD= ${LOCALBASE}/bin/fortune_strfile FORTUNEFILES= adams banner computer definizioni formiche italia itatrek \ jackfr leggi luke luttazzi norm paolotedeschi zuse \ From owner-svn-ports-head@freebsd.org Wed Sep 14 04:49:44 2016 Return-Path: Delivered-To: svn-ports-head@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 82A34BD8A4B; Wed, 14 Sep 2016 04:49:44 +0000 (UTC) (envelope-from marino@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 6094BC4B; Wed, 14 Sep 2016 04:49:44 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E4nh2Z035366; Wed, 14 Sep 2016 04:49:43 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E4nhE0035364; Wed, 14 Sep 2016 04:49:43 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140449.u8E4nhE0035364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 04:49:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422104 - head/misc/fortune-mod-culmea-culmilor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 04:49:44 -0000 Author: marino Date: Wed Sep 14 04:49:43 2016 New Revision: 422104 URL: https://svnweb.freebsd.org/changeset/ports/422104 Log: misc/fortune-mod-culmea-culmilor: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. While here, unsuppress build and installation commands for all ports that pull in generic makefile fragment. Unfortunately the tecnik93.com server is down. I don't know if its transient or if its been down a long time, but mark the port BROKEN (unfetchable) as a result. Approved by: general blanket Modified: head/misc/fortune-mod-culmea-culmilor/Makefile head/misc/fortune-mod-culmea-culmilor/Makefile.fortune Modified: head/misc/fortune-mod-culmea-culmilor/Makefile ============================================================================== --- head/misc/fortune-mod-culmea-culmilor/Makefile Wed Sep 14 04:29:13 2016 (r422103) +++ head/misc/fortune-mod-culmea-culmilor/Makefile Wed Sep 14 04:49:43 2016 (r422104) @@ -9,5 +9,7 @@ MASTER_SITES= http://T32.TecNik93.com/Fr MAINTAINER= itetcu@FreeBSD.org COMMENT= Romanian "Culmea culmilor" jokes (in Romanian) +BROKEN= unfetchable (tecnik93.com is down) + .include "${.CURDIR}/../../misc/fortune-mod-culmea-culmilor/Makefile.fortune" .include Modified: head/misc/fortune-mod-culmea-culmilor/Makefile.fortune ============================================================================== --- head/misc/fortune-mod-culmea-culmilor/Makefile.fortune Wed Sep 14 04:29:13 2016 (r422103) +++ head/misc/fortune-mod-culmea-culmilor/Makefile.fortune Wed Sep 14 04:49:43 2016 (r422104) @@ -2,13 +2,9 @@ NO_WRKSUBDIR= yes -.if exists(/usr/games/strfile) -_STRFILE= /usr/games/strfile -.elif exists(/usr/bin/strfile) -_STRFILE= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +_STRFILE= ${LOCALBASE}/bin/fortune_strfile +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile + _STRFILE_ARGS?= -C _FORTUNE_DIR= share/games/fortune FORTUNE_DIR= ${PREFIX}/${_FORTUNE_DIR} @@ -29,19 +25,22 @@ post-extract: PKGMESSAGE= ${WRKDIR}/pkg-message do-build: - @cd ${WRKSRC} && ${_STRFILE} ${_STRFILE_ARGS} ${PORTNAME} - @if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ + (cd ${WRKSRC} && ${_STRFILE} ${_STRFILE_ARGS} ${PORTNAME}) + if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ cd ${WRKSRC} && ${_STRFILE} ${_STRFILE_ARGS} ${PORTNAME}-o; \ fi + do-install: @${MKDIR} ${STAGEDIR}${FORTUNE_DIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.dat ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE}.dat + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} \ + ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.dat \ + ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE}.dat if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-o ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE_O}; \ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-o.dat ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE_O}.dat; \ fi - @if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ + if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ ${ECHO_CMD} ${_FORTUNE_DIR}/${FORTUNE_FILE_O} >> ${TMPPLIST}; \ ${ECHO_CMD} ${_FORTUNE_DIR}/${FORTUNE_FILE_O}.dat >> ${TMPPLIST}; \ fi From owner-svn-ports-head@freebsd.org Wed Sep 14 04:56:00 2016 Return-Path: Delivered-To: svn-ports-head@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 C96D7BD8CF4; Wed, 14 Sep 2016 04:56:00 +0000 (UTC) (envelope-from marino@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 9A3A189; Wed, 14 Sep 2016 04:56:00 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E4txSh038965; Wed, 14 Sep 2016 04:55:59 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E4txcx038964; Wed, 14 Sep 2016 04:55:59 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140455.u8E4txcx038964@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 04:55:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422105 - head/misc/fortune-mod-ferengi_rules_of_acquisition X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 04:56:00 -0000 Author: marino Date: Wed Sep 14 04:55:59 2016 New Revision: 422105 URL: https://svnweb.freebsd.org/changeset/ports/422105 Log: Mark misc/fortune-mod-fereng_rules_of_acquisition BROKEN (unfetchable) The technic93.com MASTER_SITE server is not accessible. Modified: head/misc/fortune-mod-ferengi_rules_of_acquisition/Makefile Modified: head/misc/fortune-mod-ferengi_rules_of_acquisition/Makefile ============================================================================== --- head/misc/fortune-mod-ferengi_rules_of_acquisition/Makefile Wed Sep 14 04:49:43 2016 (r422104) +++ head/misc/fortune-mod-ferengi_rules_of_acquisition/Makefile Wed Sep 14 04:55:59 2016 (r422105) @@ -10,5 +10,7 @@ MASTER_SITES= http://sce-tindy.tecnik93. MAINTAINER= itetcu@FreeBSD.org COMMENT= Star Trek: The Ferengi Rules of Acquisition +BROKEN= Unfetchable (tecnik93.com is down) + .include "${.CURDIR}/../../misc/fortune-mod-culmea-culmilor/Makefile.fortune" .include From owner-svn-ports-head@freebsd.org Wed Sep 14 05:01:27 2016 Return-Path: Delivered-To: svn-ports-head@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 41436BD8F2C; Wed, 14 Sep 2016 05:01:27 +0000 (UTC) (envelope-from marino@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 13EF56D6; Wed, 14 Sep 2016 05:01:27 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E51Qap039285; Wed, 14 Sep 2016 05:01:26 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E51QhD039284; Wed, 14 Sep 2016 05:01:26 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140501.u8E51QhD039284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:01:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422106 - head/misc/fortune-mod-futurama X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:01:27 -0000 Author: marino Date: Wed Sep 14 05:01:26 2016 New Revision: 422106 URL: https://svnweb.freebsd.org/changeset/ports/422106 Log: misc/fortune-mod-futurama: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. Approved by: general blanket Modified: head/misc/fortune-mod-futurama/Makefile Modified: head/misc/fortune-mod-futurama/Makefile ============================================================================== --- head/misc/fortune-mod-futurama/Makefile Wed Sep 14 04:55:59 2016 (r422105) +++ head/misc/fortune-mod-futurama/Makefile Wed Sep 14 05:01:26 2016 (r422106) @@ -11,24 +11,20 @@ MASTER_SITES= http://www.netmeister.org/ MAINTAINER= freebsd@skysmurf.nl COMMENT= Compilation of quotes from the TV series "Futurama" +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile + USES= tar:bzip2 SUB_FILES= pkg-message +STRFILE= ${LOCALBASE}/bin/fortune_strfile PLIST_FILES= share/games/fortune/futurama share/games/fortune/futurama.dat -.if exists(/usr/games/strfile) -STRFILE= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRFILE= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif - do-build: - @${STRFILE} ${WRKSRC}/futurama + ${STRFILE} ${WRKSRC}/futurama do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/futurama* ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/futurama* \ + ${STAGEDIR}${PREFIX}/share/games/fortune .include From owner-svn-ports-head@freebsd.org Wed Sep 14 05:09:13 2016 Return-Path: Delivered-To: svn-ports-head@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 A5F1BBD8F9C; Wed, 14 Sep 2016 05:09:13 +0000 (UTC) (envelope-from marino@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 7890A90D; Wed, 14 Sep 2016 05:09:13 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E59CJQ042972; Wed, 14 Sep 2016 05:09:12 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E59CcW042971; Wed, 14 Sep 2016 05:09:12 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140509.u8E59CcW042971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:09:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422107 - head/misc/fortune-mod-epictetus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:09:13 -0000 Author: marino Date: Wed Sep 14 05:09:12 2016 New Revision: 422107 URL: https://svnweb.freebsd.org/changeset/ports/422107 Log: misc/fortune-mod-epictetus: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. Approved by: general blanket Modified: head/misc/fortune-mod-epictetus/Makefile Modified: head/misc/fortune-mod-epictetus/Makefile ============================================================================== --- head/misc/fortune-mod-epictetus/Makefile Wed Sep 14 05:01:26 2016 (r422106) +++ head/misc/fortune-mod-epictetus/Makefile Wed Sep 14 05:09:12 2016 (r422107) @@ -12,25 +12,21 @@ COMMENT= Quotes from Epictetus LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRFILE= ${LOCALBASE}/bin/fortune_strfile + USE_GITHUB= yes GH_ACCOUNT= akosela PLIST_FILES= share/games/fortune/epictetus \ share/games/fortune/epictetus.dat -.if exists(/usr/games/strfile) -STRFILE= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRFILE= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif - do-build: - @(cd ${WRKSRC} && ${STRFILE} epictetus) + (cd ${WRKSRC} && ${STRFILE} epictetus) do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/epictetus* ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/epictetus* \ + ${STAGEDIR}${PREFIX}/share/games/fortune .include From owner-svn-ports-head@freebsd.org Wed Sep 14 05:16:29 2016 Return-Path: Delivered-To: svn-ports-head@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 B6468BD915A; Wed, 14 Sep 2016 05:16:29 +0000 (UTC) (envelope-from marino@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 885A2C7D; Wed, 14 Sep 2016 05:16:29 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5GSSj046988; Wed, 14 Sep 2016 05:16:28 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5GS6u046987; Wed, 14 Sep 2016 05:16:28 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140516.u8E5GS6u046987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:16:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422108 - head/misc/fortune-mod-bofh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:16:29 -0000 Author: marino Date: Wed Sep 14 05:16:28 2016 New Revision: 422108 URL: https://svnweb.freebsd.org/changeset/ports/422108 Log: misc/fortune-mod-bofh: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. Approved by: general blanket Modified: head/misc/fortune-mod-bofh/Makefile Modified: head/misc/fortune-mod-bofh/Makefile ============================================================================== --- head/misc/fortune-mod-bofh/Makefile Wed Sep 14 05:09:12 2016 (r422107) +++ head/misc/fortune-mod-bofh/Makefile Wed Sep 14 05:16:28 2016 (r422108) @@ -12,24 +12,20 @@ DISTFILES= bofh-fortune-mod${PORTVERSION MAINTAINER= onatan@gmail.com COMMENT= Compilation of excuses from the "Bastard Operator From Hell" +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRFILE= ${LOCALBASE}/bin/fortune_strfile + WRKSRC= ${WRKDIR}/bofh-fortune-mod2.0 PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message -.if exists(/usr/games/strfile) -STRFILE= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRFILE= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif - do-build: - @${STRFILE} ${WRKSRC}/bofh + ${STRFILE} ${WRKSRC}/bofh do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/bofh* ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/bofh* \ + ${STAGEDIR}${PREFIX}/share/games/fortune .include From owner-svn-ports-head@freebsd.org Wed Sep 14 05:23:53 2016 Return-Path: Delivered-To: svn-ports-head@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 60AFEBD93A5; Wed, 14 Sep 2016 05:23:53 +0000 (UTC) (envelope-from marino@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 33747FB1; Wed, 14 Sep 2016 05:23:53 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5NqgG050621; Wed, 14 Sep 2016 05:23:52 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5Nqk1050620; Wed, 14 Sep 2016 05:23:52 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140523.u8E5Nqk1050620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:23:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422109 - head/chinese/fortune X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:23:53 -0000 Author: marino Date: Wed Sep 14 05:23:52 2016 New Revision: 422109 URL: https://svnweb.freebsd.org/changeset/ports/422109 Log: chinese/fortune: Use fortune_strfile instead of strfile(8) and mark BROKEN This removes the dependency on the games distribution. Unfortunately, it's also unfetchable (Google Code site) so it's also been marked BROKEN for this reason. Approved by: general blanket Modified: head/chinese/fortune/Makefile Modified: head/chinese/fortune/Makefile ============================================================================== --- head/chinese/fortune/Makefile Wed Sep 14 05:16:28 2016 (r422108) +++ head/chinese/fortune/Makefile Wed Sep 14 05:23:52 2016 (r422109) @@ -11,21 +11,17 @@ DISTNAME= fortune-mod-zh-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Classic fortune file in Chinese +BROKEN= unfetchable (Google Code site) + RUN_DEPENDS= autob5:chinese/autoconvert +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRFILE= ${LOCALBASE}/bin/fortune_strfile PROJECTHOST= chinese-fortune NO_BUILD= yes USES= tar:bzip2 gmake SUB_FILES= pkg-message -.if exists(/usr/games/strfile) -STRFILE= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRFILE= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif - post-patch: @${REINPLACE_CMD} -e "s|/usr/|${PREFIX}/|" \ -e "s|strfile|${STRFILE}|" \ From owner-svn-ports-head@freebsd.org Wed Sep 14 05:34:02 2016 Return-Path: Delivered-To: svn-ports-head@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 AEEB8BD9538; Wed, 14 Sep 2016 05:34:02 +0000 (UTC) (envelope-from marino@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 6922A3A7; Wed, 14 Sep 2016 05:34:02 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5Y1dX054343; Wed, 14 Sep 2016 05:34:01 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5Y1c4054342; Wed, 14 Sep 2016 05:34:01 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140534.u8E5Y1c4054342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:34:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422110 - head/russian/fortuneru X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:34:02 -0000 Author: marino Date: Wed Sep 14 05:34:01 2016 New Revision: 422110 URL: https://svnweb.freebsd.org/changeset/ports/422110 Log: russian/fortuneru: Use fortune_strfile instead of strfile(8) and mark BROKEN This removes the dependency on the games distribution. Unfortunately, it's also unfetchable (both sites time out) so it's also been marked BROKEN for this reason. Approved by: general blanket Modified: head/russian/fortuneru/Makefile Modified: head/russian/fortuneru/Makefile ============================================================================== --- head/russian/fortuneru/Makefile Wed Sep 14 05:23:52 2016 (r422109) +++ head/russian/fortuneru/Makefile Wed Sep 14 05:34:01 2016 (r422110) @@ -5,29 +5,27 @@ PORTNAME= fortuneru PORTVERSION= 20090524 PORTREVISION= 1 CATEGORIES= russian -MASTER_SITES= ftp://bestia.kiev.ua/pub/files/ ftp://hosting.cvu.kiev.ua/pub/files/ +MASTER_SITES= ftp://bestia.kiev.ua/pub/files/ \ + ftp://hosting.cvu.kiev.ua/pub/files/ DISTNAME= fortune.ru-${PORTVERSION} MAINTAINER= obezpalko@gmail.com COMMENT= Fortunes in Russian -PKGMESSAGE= ${WRKDIR}/pkg-message +BROKEN= unfetchable -.if exists(/usr/games/strfile) -STRCMD= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRCMD= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRCMD= ${LOCALBASE}/bin/fortune_strfile +PKGMESSAGE= ${WRKDIR}/pkg-message do-build: - @for fortune in ${WRKSRC}/* ; do \ + for fortune in ${WRKSRC}/* ; do \ ${STRCMD} $$fortune ; \ done do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune/rus - ${INSTALL_DATA} ${WRKSRC}/* ${STAGEDIR}${PREFIX}/share/games/fortune/rus + ${INSTALL_DATA} ${WRKSRC}/* \ + ${STAGEDIR}${PREFIX}/share/games/fortune/rus .include From owner-svn-ports-head@freebsd.org Wed Sep 14 05:39:42 2016 Return-Path: Delivered-To: svn-ports-head@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 BF926BD95E2; Wed, 14 Sep 2016 05:39:42 +0000 (UTC) (envelope-from marino@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 8F9EE75B; Wed, 14 Sep 2016 05:39:42 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5dfol054643; Wed, 14 Sep 2016 05:39:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5dfCL054642; Wed, 14 Sep 2016 05:39:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140539.u8E5dfCL054642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:39:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422111 - head/polish/fortunepl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:39:42 -0000 Author: marino Date: Wed Sep 14 05:39:41 2016 New Revision: 422111 URL: https://svnweb.freebsd.org/changeset/ports/422111 Log: polish/fortunepl: Use fortune_strfile instead of strfile(8) and mark BROKEN This removes the dependency on the games distribution. Unfortunately, it's also unfetchable so it's also been marked BROKEN for this reason. Modified: head/polish/fortunepl/Makefile Modified: head/polish/fortunepl/Makefile ============================================================================== --- head/polish/fortunepl/Makefile Wed Sep 14 05:34:01 2016 (r422110) +++ head/polish/fortunepl/Makefile Wed Sep 14 05:39:41 2016 (r422111) @@ -14,13 +14,11 @@ PATCHFILES= fortunes-pl_${PORTVERSION}.f MAINTAINER= ports@FreeBSD.org COMMENT= Lot of funny Polish fortune files -.if exists(/usr/games/strfile) -STRCMD= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRCMD= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +BROKEN= unfetchable + +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRCMD= ${LOCALBASE}/bin/fortune_strfile + WRKSRC= ${WRKDIR}/fortunes-pl-${PORTVERSION}.orig FORTUNES= 7thguard advocacy apcoh argante bajki bok cnp cows \ @@ -35,12 +33,14 @@ FORTUNES= 7thguard advocacy apcoh argant znaki_zodiaku do-patch: - ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.freebsd.pl ${WRKSRC}/freebsd.pl - ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.filozofia ${WRKSRC}/filozofia + ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.freebsd.pl \ + ${WRKSRC}/freebsd.pl + ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.filozofia \ + ${WRKSRC}/filozofia do-build: .for FILE in ${FORTUNES} - @${STRCMD} ${WRKSRC}/${FILE} + ${STRCMD} ${WRKSRC}/${FILE} .endfor do-install: From owner-svn-ports-head@freebsd.org Wed Sep 14 05:43:14 2016 Return-Path: Delivered-To: svn-ports-head@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 6FDA9BD979F; Wed, 14 Sep 2016 05:43:14 +0000 (UTC) (envelope-from antoine@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 41D81BDB; Wed, 14 Sep 2016 05:43:14 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5hDAS058374; Wed, 14 Sep 2016 05:43:13 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5hDJ7058373; Wed, 14 Sep 2016 05:43:13 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609140543.u8E5hDJ7058373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 05:43:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422112 - in head/www/webkit2-gtk3: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:43:14 -0000 Author: antoine Date: Wed Sep 14 05:43:13 2016 New Revision: 422112 URL: https://svnweb.freebsd.org/changeset/ports/422112 Log: Revert r422019, patch fails to apply PR: 207275 Reported by: pkg-fallout Deleted: head/www/webkit2-gtk3/files/patch-Source_WTF_wtf_Platform.h head/www/webkit2-gtk3/files/patch-Source_bmalloc_bmalloc_BPlatform.h Modified: head/www/webkit2-gtk3/Makefile Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Wed Sep 14 05:39:41 2016 (r422111) +++ head/www/webkit2-gtk3/Makefile Wed Sep 14 05:43:13 2016 (r422112) @@ -55,10 +55,6 @@ DEBUG_CMAKE_OFF= -DCMAKE_BUILD_TYPE=Rele .include -.if ${ARCH} == armv6 -CMAKE_ARGS+= -DENABLE_JIT:BOOL=OFF -.endif - .if ${ARCH} == powerpc64 CFLAGS+= -mminimal-toc .endif From owner-svn-ports-head@freebsd.org Wed Sep 14 05:44:02 2016 Return-Path: Delivered-To: svn-ports-head@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 ADE92BD9802; Wed, 14 Sep 2016 05:44:02 +0000 (UTC) (envelope-from marino@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 7EDB2CD8; Wed, 14 Sep 2016 05:44:02 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5i1fi058531; Wed, 14 Sep 2016 05:44:01 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5i1wQ058530; Wed, 14 Sep 2016 05:44:01 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140544.u8E5i1wQ058530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:44:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422113 - head/french/fortune-mod-zarathoustra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:44:02 -0000 Author: marino Date: Wed Sep 14 05:44:01 2016 New Revision: 422113 URL: https://svnweb.freebsd.org/changeset/ports/422113 Log: french/fortune-mod-zarathoustra: Use fortune_strfile instead of strfile(8) This removes the dependency on the games distribution. Approved by: general blanket Modified: head/french/fortune-mod-zarathoustra/Makefile Modified: head/french/fortune-mod-zarathoustra/Makefile ============================================================================== --- head/french/fortune-mod-zarathoustra/Makefile Wed Sep 14 05:43:13 2016 (r422112) +++ head/french/fortune-mod-zarathoustra/Makefile Wed Sep 14 05:44:01 2016 (r422113) @@ -11,19 +11,15 @@ COMMENT= Compilation of quotes from Niet SUB_FILES= pkg-message -.if exists(/usr/games/strfile) -STRCMD= /usr/games/strfile -.elif exists(/usr/bin/strfile) -STRCMD= /usr/bin/strfile -.else -IGNORE= needs strfile command. Please install games distribution of base system -.endif +BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile +STRCMD= ${LOCALBASE}/bin/fortune_strfile do-build: - @cd ${WRKSRC} && ${STRCMD} zarathoustra + (cd ${WRKSRC} && ${STRCMD} zarathoustra) do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/zarathoustra* ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/zarathoustra* \ + ${STAGEDIR}${PREFIX}/share/games/fortune .include From owner-svn-ports-head@freebsd.org Wed Sep 14 05:45:41 2016 Return-Path: Delivered-To: svn-ports-head@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 4CA66BD98E1; Wed, 14 Sep 2016 05:45:41 +0000 (UTC) (envelope-from marino@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 1CEECE19; Wed, 14 Sep 2016 05:45:41 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E5jeFC058687; Wed, 14 Sep 2016 05:45:40 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E5jeBH058686; Wed, 14 Sep 2016 05:45:40 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609140545.u8E5jeBH058686@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 14 Sep 2016 05:45:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422114 - head/misc/fortune_strfile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 05:45:41 -0000 Author: marino Date: Wed Sep 14 05:45:40 2016 New Revision: 422114 URL: https://svnweb.freebsd.org/changeset/ports/422114 Log: misc/fortune_strfile: Release maintainership This port is too simple to need a maintainer. It's a shared resource for all fortune ports Modified: head/misc/fortune_strfile/Makefile Modified: head/misc/fortune_strfile/Makefile ============================================================================== --- head/misc/fortune_strfile/Makefile Wed Sep 14 05:44:01 2016 (r422113) +++ head/misc/fortune_strfile/Makefile Wed Sep 14 05:45:40 2016 (r422114) @@ -7,7 +7,7 @@ CATEGORIES= misc MASTER_SITES= # none DISTFILES= # none -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Duplicate of strfile(8) PROGRAM= fortune_strfile From owner-svn-ports-head@freebsd.org Wed Sep 14 06:02:34 2016 Return-Path: Delivered-To: svn-ports-head@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 3ECE3BD9DBA; Wed, 14 Sep 2016 06:02:34 +0000 (UTC) (envelope-from riggs@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 02A8B81B; Wed, 14 Sep 2016 06:02:33 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E62XPK066019; Wed, 14 Sep 2016 06:02:33 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E62XaJ066017; Wed, 14 Sep 2016 06:02:33 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609140602.u8E62XaJ066017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Wed, 14 Sep 2016 06:02:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422115 - head/www/drood X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 06:02:34 -0000 Author: riggs Date: Wed Sep 14 06:02:32 2016 New Revision: 422115 URL: https://svnweb.freebsd.org/changeset/ports/422115 Log: Update to upstream version 5.32 PR: 212522 Submitted by: jimmy@mammothcheese.ca (maintainer) Modified: head/www/drood/Makefile head/www/drood/distinfo Modified: head/www/drood/Makefile ============================================================================== --- head/www/drood/Makefile Wed Sep 14 05:45:40 2016 (r422114) +++ head/www/drood/Makefile Wed Sep 14 06:02:32 2016 (r422115) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drood -PORTVERSION= 5.25 +PORTVERSION= 5.32 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ @@ -16,8 +16,8 @@ LIB_DEPENDS= libserver.so:devel/libserve USE_LDCONFIG= yes -USE_OPENSSL= yes -WITH_OPENSSL_PORT= yes +USES= ssl +DEFAULT_VERSIONS+= ssl=openssl MAKE_ENV= INSTALL_PROGRAM="${INSTALL_PROGRAM}" INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" INSTALL_MAN="${INSTALL_MAN}" \ Modified: head/www/drood/distinfo ============================================================================== --- head/www/drood/distinfo Wed Sep 14 05:45:40 2016 (r422114) +++ head/www/drood/distinfo Wed Sep 14 06:02:32 2016 (r422115) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465130079 -SHA256 (drood-5.25.tar.gz) = 0afa9279b4ff8277d951421ac9fd10474b8db8596ed4112e121b2192a1cd7cc3 -SIZE (drood-5.25.tar.gz) = 69549 +TIMESTAMP = 1473519763 +SHA256 (drood-5.32.tar.gz) = 6ceefa32aa66c34682831f04bfa9fa43d95111fb973e17a28c41d1a15e60233b +SIZE (drood-5.32.tar.gz) = 70755 From owner-svn-ports-head@freebsd.org Wed Sep 14 06:44:31 2016 Return-Path: Delivered-To: svn-ports-head@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 A00AABDA653; Wed, 14 Sep 2016 06:44:31 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2FA48BCD; Wed, 14 Sep 2016 06:44:31 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 26DA9BDC56; Wed, 14 Sep 2016 08:44:29 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 0B609BDC30; Wed, 14 Sep 2016 08:44:29 +0200 (CEST) Subject: Re: svn commit: r422100 - in head/www: . fabio fabio/files To: "Vanilla I. Shu" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140406.u8E46xcm019346@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <8698eae2-29e9-c4f4-1c8e-4ce21afc2b6b@FreeBSD.org> Date: Wed, 14 Sep 2016 08:44:27 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609140406.u8E46xcm019346@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="MolT52lTEJ4qLl87pAGPk6Fga2nQLWhgr" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 06:44:31 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --MolT52lTEJ4qLl87pAGPk6Fga2nQLWhgr Content-Type: multipart/mixed; boundary="UOLfi4wWHjUIodvKAIgAoqcw2H0fUhc4n"; protected-headers="v1" From: Mathieu Arnold To: "Vanilla I. Shu" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <8698eae2-29e9-c4f4-1c8e-4ce21afc2b6b@FreeBSD.org> Subject: Re: svn commit: r422100 - in head/www: . fabio fabio/files References: <201609140406.u8E46xcm019346@repo.freebsd.org> In-Reply-To: <201609140406.u8E46xcm019346@repo.freebsd.org> --UOLfi4wWHjUIodvKAIgAoqcw2H0fUhc4n Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 06:06, Vanilla I. Shu a =C3=A9crit : > +GH_ACCOUNT=3D eBay:DEFAULT You can drop the :DEFAULT, it is the, well, default. > +GH_PROJECT=3D fabio You can remove this one, it is the default. > +USERS=3D nobody > +GROUPS=3D nobody I am pretty sure nothing should belong, or run, as nobody, and you should create a user for this. As a side note, this user and group already exist on all FreeBSD installations and they do not need to be added here. > +do-build: > + @${MKDIR} ${WRKSRC}/src/github.com/eBay/fabio > + > +.for src in .gitignore .travis.yml CHANGELOG.md Dockerfile LICENSE Mak= efile \ > + README.md Vagrantfile admin build cert config demo exit fabio.png \ > + fabio.properties listen.go listen_test.go main.go metrics proxy \ > + registry route routes.txt vendor > + @${MV} ${WRKSRC}/${src} \ > + ${WRKSRC}/src/github.com/eBay/fabio > +.endfor All this, firstly, belong to the extract phase, and can be done better as= : GH_SUBDIR=3D src/github.com/eBay/fabio --=20 Mathieu Arnold --UOLfi4wWHjUIodvKAIgAoqcw2H0fUhc4n-- --MolT52lTEJ4qLl87pAGPk6Fga2nQLWhgr Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2PHMXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IX7wQAJe+DV2l1PP6nZUNWOUCyWy6 8jgUTax1pTweo4t3M8F8DakoiUcamwwll6ftOm9NLF8+l5ilEQJyQ0rebBWneNb/ JpF9JramvgDlqd8EDiDUJ2teHEsIT9tLrm5cJgW6a2qJNQFCvHi2McymySqTKd+R U2aYWtY5Bas2nFwRU9gqbcYZ5WlOlB4Alt7x4sgG47l7ItJkc+JOcjEoK3kVwldV sTt+QJd4xskS6OgqzfgqBYNyTef8ged2+kibgAn/wYbFbWmLk4Nt4kbkWqaUXFGx GDUADmvjDiwSdJnQLd3JWuUlq6DY8Ypji1bXcSlGj6q5TbuKXIBbOVMbDqOp+t8D W+As6czOYb3B+EAEZxETjVU5tzZZC5SYClqeAqQl3iFed1OdCQ5Lq+Bu3Vum1gYk X54IuHzYivOyYu+BMUbc69S98uuj/giItB2stYRZ+7nd4S8jeAEzqX4jHsSKHkXC +ZK+G090K3iv94ESL1IBdyNfzVJ2+S4udNx+WjfH6VNipemwshV6hJ+AEkewyh0j a3MveMYB2wlQA1dkVARIBNt4Uzxye7Kz7+p00QFg08WFPGERif84/wQktaOSKHEx A40y01Vcvj1bq1rBvNkW7b6t5dyKGk7/MtuZzdLc8M7vw0hIFycLk5yHLWqxU4Xe JW4fFHyAxEeXaeiBnZbP =yfjn -----END PGP SIGNATURE----- --MolT52lTEJ4qLl87pAGPk6Fga2nQLWhgr-- From owner-svn-ports-head@freebsd.org Wed Sep 14 06:56:33 2016 Return-Path: Delivered-To: svn-ports-head@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 D5452BDA8B7; Wed, 14 Sep 2016 06:56:33 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 98696269; Wed, 14 Sep 2016 06:56:33 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id D56EDBDC56; Wed, 14 Sep 2016 08:56:30 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 5251EBDC30; Wed, 14 Sep 2016 08:56:27 +0200 (CEST) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Wed, 14 Sep 2016 08:56:25 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609140545.u8E5jeBH058686@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="bfgQrkoMwklAgqlQ5ACoowOOJl2RmCVP1" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 06:56:33 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --bfgQrkoMwklAgqlQ5ACoowOOJl2RmCVP1 Content-Type: multipart/mixed; boundary="S9WlAUDg0QHGDEKUJhwokoTaJVFJ3kP9W"; protected-headers="v1" From: Mathieu Arnold To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422114 - head/misc/fortune_strfile References: <201609140545.u8E5jeBH058686@repo.freebsd.org> In-Reply-To: <201609140545.u8E5jeBH058686@repo.freebsd.org> --S9WlAUDg0QHGDEKUJhwokoTaJVFJ3kP9W Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 07:45, John Marino a =C3=A9crit : > Author: marino > Date: Wed Sep 14 05:45:40 2016 > New Revision: 422114 > URL: https://svnweb.freebsd.org/changeset/ports/422114 > > Log: > misc/fortune_strfile: Release maintainership > =20 > This port is too simple to need a maintainer. It's a shared resource= > for all fortune ports You know, we do have a policy about not adding a port without a maintaine= r. Adding a port with a maintainer and dropping maintainership in the first 24 hours is about the same as adding it without a maintainer. --=20 Mathieu Arnold --S9WlAUDg0QHGDEKUJhwokoTaJVFJ3kP9W-- --bfgQrkoMwklAgqlQ5ACoowOOJl2RmCVP1 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2PSaXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I5w0P/jm940n6zXHMVbowGvCek/gN 4IBo3kYz8Yn7D7FChTGI7KnJrHXjwK3VJzmO+4st906AFBjk2Y9FKKKfCBlWl4xH 7UN32UP9+n0C1iy2YXPdtsqFb//YYzOc6c3OG9J/Bt0qMqm+aW1ozYStTPoBTP2H ilxo1dRPt4ezTykKHJitvCUJM+9WrMKeFgYJMcv6LVFMC8IqiB8kFCdMrtOK93AP +qt0ov4Xt9+g1tLMx7+ddpm0D1Dg6U8xsVfl/TQGv9n2hVhPQCr/xSDqu4/W/6Gw dEkw2rbQP2486gJ3eMNr+1bJVzOgxkecfhCYezIF9F6L/IBIdgWCw6ZzBMpTd3+t TUjuWzfirC/pxManljbHY3cpE5qn2Y+9jFJ4E4sKvyiw7p3CmEVJV5uqo4g76atl fvwXZNvV8HsJ23S8N33yhlfnXpInz0Av5543LeMQZ+KTplZVVR17SoPPllL9Lc7Z xYBe0xhaJfrywqwfpsEq1wUI0fDZnUN4eLBHbV14f6QOcl4yimFS/r/j66s1Gpys rDOGnI6gtVbnyov4zAwxCihEtCKjedu0vTUXcxRiHtNRZk9bbiI2VsL/5jtLe/IH ePPewP0O/Vn347ejIdHUoNC0yLmQDM2fsMYukFdt0cCUWj7ZqmJTuk8XcXV8NIjN 7GV0bduQarCVNovwbKBr =YG2n -----END PGP SIGNATURE----- --bfgQrkoMwklAgqlQ5ACoowOOJl2RmCVP1-- From owner-svn-ports-head@freebsd.org Wed Sep 14 07:07:58 2016 Return-Path: Delivered-To: svn-ports-head@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 D67C0BDABD7; Wed, 14 Sep 2016 07:07:58 +0000 (UTC) (envelope-from brnrd@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 A919F959; Wed, 14 Sep 2016 07:07:58 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E77vXH088806; Wed, 14 Sep 2016 07:07:57 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E77v0v088804; Wed, 14 Sep 2016 07:07:57 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609140707.u8E77v0v088804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 07:07:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422116 - head/databases/mariadb55-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 07:07:58 -0000 Author: brnrd Date: Wed Sep 14 07:07:57 2016 New Revision: 422116 URL: https://svnweb.freebsd.org/changeset/ports/422116 Log: databases/mariadb55-server: Upgrade to 5.5.52 - Upstream bugfix update Modified: head/databases/mariadb55-server/Makefile head/databases/mariadb55-server/distinfo Modified: head/databases/mariadb55-server/Makefile ============================================================================== --- head/databases/mariadb55-server/Makefile Wed Sep 14 06:02:32 2016 (r422115) +++ head/databases/mariadb55-server/Makefile Wed Sep 14 07:07:57 2016 (r422116) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 5.5.51 +PORTVERSION= 5.5.52 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ http://mirrors.supportex.net/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ Modified: head/databases/mariadb55-server/distinfo ============================================================================== --- head/databases/mariadb55-server/distinfo Wed Sep 14 06:02:32 2016 (r422115) +++ head/databases/mariadb55-server/distinfo Wed Sep 14 07:07:57 2016 (r422116) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470908705 -SHA256 (mariadb-5.5.51.tar.gz) = 877268e7056067aff1dd365249b7a7c87f3fa80aadd7a4f118c9595d665967e9 -SIZE (mariadb-5.5.51.tar.gz) = 45747820 +TIMESTAMP = 1473836056 +SHA256 (mariadb-5.5.52.tar.gz) = e142f9459507b97c5848042863b313ce70750118446bb4e35e5c07fe66007293 +SIZE (mariadb-5.5.52.tar.gz) = 45745859 From owner-svn-ports-head@freebsd.org Wed Sep 14 07:28:09 2016 Return-Path: Delivered-To: svn-ports-head@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 13790BDAFCB; Wed, 14 Sep 2016 07:28:09 +0000 (UTC) (envelope-from brnrd@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 AD55A28A; Wed, 14 Sep 2016 07:28:08 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E7S7u0096519; Wed, 14 Sep 2016 07:28:07 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E7S7vX096515; Wed, 14 Sep 2016 07:28:07 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609140728.u8E7S7vX096515@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 07:28:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422117 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 07:28:09 -0000 Author: brnrd Date: Wed Sep 14 07:28:07 2016 New Revision: 422117 URL: https://svnweb.freebsd.org/changeset/ports/422117 Log: ftp/curl: Document integer overflow vuln Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Sep 14 07:07:57 2016 (r422116) +++ head/security/vuxml/vuln.xml Wed Sep 14 07:28:07 2016 (r422117) @@ -58,6 +58,41 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + cURL -- Escape and unescape integer overflows + + + curl + 7.11.1 + 7.50.3 + + + + +

The cURL project reports

+
+

The four libcurl functions curl_escape(), curl_easy_escape(), + curl_unescape and curl_easy_unescape perform string URL percent + escaping and unescaping. They accept custom string length inputs + in signed integer arguments.

+

The provided string length arguments were not properly checked + and due to arithmetic in the functions, passing in the length + 0xffffffff (2^32-1 or UINT_MAX or even just -1) would end up + causing an allocation of zero bytes of heap memory that curl + would attempt to write gigabytes of data into.

+
+ +
+ + https://curl.haxx.se/docs/adv_20160914.html + CVE-2016-7167 + + + 2016-09-14 + 2016-09-14 + +
+ chromium -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Wed Sep 14 08:52:38 2016 Return-Path: Delivered-To: svn-ports-head@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 48760BDA6CE; Wed, 14 Sep 2016 08:52:38 +0000 (UTC) (envelope-from mr@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 00FA8A2B; Wed, 14 Sep 2016 08:52:37 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E8qbvE030132; Wed, 14 Sep 2016 08:52:37 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E8qbGp030130; Wed, 14 Sep 2016 08:52:37 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201609140852.u8E8qbGp030130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Wed, 14 Sep 2016 08:52:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422118 - in head/comms/uhd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 08:52:38 -0000 Author: mr Date: Wed Sep 14 08:52:36 2016 New Revision: 422118 URL: https://svnweb.freebsd.org/changeset/ports/422118 Log: Some fixes for better ports compatibility suggested my Mathieu. Submitted by: mat@ Deleted: head/comms/uhd/files/patch-CMakeLists.txt Modified: head/comms/uhd/Makefile head/comms/uhd/pkg-plist Modified: head/comms/uhd/Makefile ============================================================================== --- head/comms/uhd/Makefile Wed Sep 14 07:28:07 2016 (r422117) +++ head/comms/uhd/Makefile Wed Sep 14 08:52:36 2016 (r422118) @@ -7,16 +7,13 @@ CATEGORIES= comms hamradio MASTER_SITES= http://files.ettus.com/binaries/images/ DISTFILES= ${IMAGE_FILE} DIST_SUBDIR= ${PORTNAME} -EXTRACT_ONLY= ${DISTFILES} MAINTAINER= mr@FreeBSD.org COMMENT= Ettus Research UHD driver framework USE_GITHUB= yes GH_ACCOUNT= EttusResearch -GH_TAGNAME= ${UHD_COMMIT} - -UHD_COMMIT= 32951af2f3e7b1ddb56486c9f15b2e1033605bd6 +GH_TAGNAME= 32951af2f3e7b1ddb56486c9f15b2e1033605bd6 CONFLICTS= usrp-[0-9]* @@ -27,26 +24,20 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boos orcc:${PORTSDIR}/devel/orc \ ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako -USES= compiler:c++0x cmake:outsource gmake pkgconfig dos2unix python:2.7 -COMPILER_FEATURES= libc++ +USES= compiler:c++0x cmake:outsource gmake pkgconfig dos2unix python:2.7 pathfix USE_LDCONFIG= yes CMAKE_SOURCE_PATH= ${WRKSRC}/host -MAKE_JOBS_UNSAFE= yes +#MAKE_JOBS_UNSAFE= yes CMAKE_ARGS+= -DPKG_LIB_DIR:STRING="share/uhd" -DUHD_TXRX_DEBUG_PRINTS="yes" # for excruciating debug use this -db #CMAKE_ARGS+= --debug-output --trace -DOCSDIR= share/doc/uhd IMAGE_FILE= uhd-images_003.009.005-release.zip .include -.if ${OSVERSION} < 800000 -IGNORE= needs libusb 1.0 -.endif - -.if ${PORT_OPTIONS:MDOCS} +.if ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen CMAKE_ARGS+= -DENABLE_DOXYGEN:STRING="ON" HAVEDOCS= YES Modified: head/comms/uhd/pkg-plist ============================================================================== --- head/comms/uhd/pkg-plist Wed Sep 14 07:28:07 2016 (r422117) +++ head/comms/uhd/pkg-plist Wed Sep 14 08:52:36 2016 (r422118) @@ -108,7 +108,6 @@ lib/cmake/uhd/UHDConfigVersion.cmake lib/libuhd.so lib/libuhd.so.003 lib/libuhd.so.003.009 -libdata/pkgconfig/uhd.pc %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README.md %%PORTDOCS%%%%DOCSDIR%%/doxygen/html/Ettus_Logo.png From owner-svn-ports-head@freebsd.org Wed Sep 14 08:52:49 2016 Return-Path: Delivered-To: svn-ports-head@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 2F111BDA6FD; Wed, 14 Sep 2016 08:52:49 +0000 (UTC) (envelope-from mike@reifenberger.com) Received: from mail.eeeit.de (mail.eeeit.de [37.120.160.187]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED4F3B01; Wed, 14 Sep 2016 08:52:48 +0000 (UTC) (envelope-from mike@reifenberger.com) Received: from localhost (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mike@reifenberger.com) by mail.eeeit.de (Postfix) with ESMTPSA id 671995D04; Wed, 14 Sep 2016 10:52:45 +0200 (CEST) Received: from ppp-62-216-197-106.dynamic.mnet-online.de (ppp-62-216-197-106.dynamic.mnet-online.de [62.216.197.106]) by mail.eeeit.de (Horde Framework) with HTTPS; Wed, 14 Sep 2016 10:52:45 +0200 Date: Wed, 14 Sep 2016 10:52:45 +0200 Message-ID: <20160914105245.Horde.cp5oX9evYBLUL3LRGKjxK-b@mail.eeeit.de> From: Michael Reifenberger To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422061 - in head/comms/uhd: . files References: <201609131858.u8DIwelq007807@repo.freebsd.org> <2fc3d1fd-f23a-e895-6595-f2cfda0967ff@FreeBSD.org> In-Reply-To: <2fc3d1fd-f23a-e895-6595-f2cfda0967ff@FreeBSD.org> User-Agent: Horde Application Framework 5 Content-Type: text/plain; charset=utf-8; format=flowed; DelSp=Yes MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 08:52:49 -0000 Hi, first a big thanks for your hints and suggestions! Zitat von Mathieu Arnold : > Le 13/09/2016 à 20:58, Michael Reifenberger a écrit : >> +EXTRACT_ONLY= ${DISTFILES} > > That is not needed, it is the default. > >> +GH_TAGNAME= ${UHD_COMMIT} >> + >> +UHD_COMMIT= 32951af2f3e7b1ddb56486c9f15b2e1033605bd6 > Merged. > I'm not sure using a second variable only once is needed. > >> +COMPILER_FEATURES= libc++ > Deleted. > That variable is *read-only*, writing to it makes no sense. > >> +MAKE_JOBS_UNSAFE= yes > Deleted. Seems to be unnecessary. > When adding MAKE_JOBS_UNSAFE, you have to say why it does not build with > make -j. > >> +DOCSDIR= share/doc/uhd > > This is the default and not needed. > >> +.if ${OSVERSION} < 800000 >> +IGNORE= needs libusb 1.0 >> +.endif > > Adding that OSVERSION check makes no sense, no release before 9 will > work with the current ports tree. > Deleted. >> +.if ${PORT_OPTIONS:MDOCS} >> +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen >> +CMAKE_ARGS+= -DENABLE_DOXYGEN:STRING="ON" >> +HAVEDOCS= YES >> +.endif > > Do not add doxygen as a dependency with a DOCS option, use a DOXYGEN one. > You mean like this: .if ${PORT_OPTIONS:MDOXYGEN} ... .endif >> +- DESTINATION ${LIBRARY_DIR}/pkgconfig >> ++ DESTINATION libdata/pkgconfig > > This is handled by USES=pathfix. > Done. > > -- > Mathieu Arnold Again, thanks alot for your tips! Greetings --- mike Gruß --- Michael Reifenberger From owner-svn-ports-head@freebsd.org Wed Sep 14 09:01:36 2016 Return-Path: Delivered-To: svn-ports-head@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 1A86DBDAADC; Wed, 14 Sep 2016 09:01:36 +0000 (UTC) (envelope-from amdmi3@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 DFC9E1CA; Wed, 14 Sep 2016 09:01:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E91Zmt031905; Wed, 14 Sep 2016 09:01:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E91ZOn031904; Wed, 14 Sep 2016 09:01:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140901.u8E91ZOn031904@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 09:01:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422119 - head/databases/wfb2sql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 09:01:36 -0000 Author: amdmi3 Date: Wed Sep 14 09:01:34 2016 New Revision: 422119 URL: https://svnweb.freebsd.org/changeset/ports/422119 Log: - Add LICENSE - Add NO_ARCH - Switch to options helpers Modified: head/databases/wfb2sql/Makefile Modified: head/databases/wfb2sql/Makefile ============================================================================== --- head/databases/wfb2sql/Makefile Wed Sep 14 08:52:36 2016 (r422118) +++ head/databases/wfb2sql/Makefile Wed Sep 14 09:01:34 2016 (r422119) @@ -10,23 +10,31 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= CIA World Fact Book to SQL Conversion Utility +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= p5-Config-General>=0:devel/p5-Config-General RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix +SHEBANG_FILES= wfb2sql NO_BUILD= yes - -OPTION_DEFINE= DOCS EXAMPLES +NO_ARCH= yes PLIST_FILES= bin/wfb2sql PORTDOCS= wfb2sql.html PORTEXAMPLES= wfb2sqlrc -SHEBANG_FILES= wfb2sql + +OPTIONS_DEFINE= DOCS EXAMPLES do-install: ${INSTALL_SCRIPT} ${WRKSRC}/wfb2sql ${STAGEDIR}${PREFIX}/bin + +do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/wfb2sqlrc ${STAGEDIR}${EXAMPLESDIR} + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/wfb2sql.html ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Wed Sep 14 09:04:22 2016 Return-Path: Delivered-To: svn-ports-head@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 8AE29BDAC0E for ; Wed, 14 Sep 2016 09:04:22 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: from mail-yw0-x22f.google.com (mail-yw0-x22f.google.com [IPv6:2607:f8b0:4002:c05::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 450113D8 for ; Wed, 14 Sep 2016 09:04:22 +0000 (UTC) (envelope-from vanilla@fatpipi.com) Received: by mail-yw0-x22f.google.com with SMTP id g192so10265410ywh.1 for ; Wed, 14 Sep 2016 02:04:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fatpipi-com.20150623.gappssmtp.com; s=20150623; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc; bh=ztBsIPlD03GYjV+ZaktH8E2kol1twMINmlNPBcDO8jM=; b=okrtAVYzZKYnQMbAzsJqEdIHJFJEnonPyrvmASG5Yf9EN05tOPlzypQKEwAAlTZ3FJ 79doVq1uka9aOurTaMjeMt672YnLCv94l8pOXUPZRVWi4z5aD1IF2sW45m73f9e0/56u bE+pTPz+YYnPJKB0AcA6tsfJOmWBdTO7egR7IrWcGuqvMD3oqV12Uwt+5+P1NW8PASxj +bP5CGsshgKTW1k3znSlbG9ubQN1V0gHLqRzWCEaBKI2Ak4+4V0v6sJmswy4sDcQZGkb NG4BRPu0TiYUo6zje9NUOp0JCMXGLjmK63QkRMRkLl5CBk8Nt2sQMvwO3gfteBdllqcQ zC9g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :from:date:message-id:subject:to:cc; bh=ztBsIPlD03GYjV+ZaktH8E2kol1twMINmlNPBcDO8jM=; b=fe1WW9aK5V5dx2obwfw826hk4RnKBTmyHUcu64XPw30hmzj8g69uQfe2N3JsiOB3An uzm5KLyRcKs0bs2XEXkf65FkLGhcYiLlzlP2CFcIATbM4cAPSfV6+q6LNTS+5AQe0N3N W8TSrpk0BLYXSr+Yo1rlLIufSM6NhdB6H4QAHqL6J5esBxc23dgcY3svcqUHD6Abqwom ynMLRZTglGJ9fWt2ffGCxyW10SsqFP+jX9U+H2ArfcAS+zlYQTy4p6cPx8aiopXXjewq lvfzxDGmC+ZTaX0sX9TEj4lp9Koen1TreO75stwKYlWqcP/LYlGqReVn4J3Lwy1LgITL 2GNA== X-Gm-Message-State: AE9vXwNoX9Yc/Tjj+G4W0ImW6IBrsdyg3UoXPanxPKxejQGZP9PEQ7wq1HTrkY2uT5yZqW5FqBylSY8evNlICw== X-Received: by 10.13.227.129 with SMTP id m123mr1231925ywe.90.1473843861338; Wed, 14 Sep 2016 02:04:21 -0700 (PDT) MIME-Version: 1.0 Received: by 10.31.173.129 with HTTP; Wed, 14 Sep 2016 02:04:20 -0700 (PDT) Reply-To: v@fatpipi.com In-Reply-To: <8698eae2-29e9-c4f4-1c8e-4ce21afc2b6b@FreeBSD.org> References: <201609140406.u8E46xcm019346@repo.freebsd.org> <8698eae2-29e9-c4f4-1c8e-4ce21afc2b6b@FreeBSD.org> From: Vanilla Hsu Date: Wed, 14 Sep 2016 17:04:20 +0800 Message-ID: Subject: Re: svn commit: r422100 - in head/www: . fabio fabio/files To: Mathieu Arnold Cc: "Vanilla I. Shu" , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 09:04:22 -0000 Got it, thanks for your suggestion. 2016-09-14 14:44 GMT+08:00 Mathieu Arnold : > Le 14/09/2016 =C3=A0 06:06, Vanilla I. Shu a =C3=A9crit : > > +GH_ACCOUNT=3D eBay:DEFAULT > > You can drop the :DEFAULT, it is the, well, default. > > > +GH_PROJECT=3D fabio > > You can remove this one, it is the default. > > +USERS=3D nobody > > +GROUPS=3D nobody > > I am pretty sure nothing should belong, or run, as nobody, and you > should create a user for this. As a side note, this user and group > already exist on all FreeBSD installations and they do not need to be > added here. > > > +do-build: > > + @${MKDIR} ${WRKSRC}/src/github.com/eBay/fabio > > + > > +.for src in .gitignore .travis.yml CHANGELOG.md Dockerfile LICENSE > Makefile \ > > + README.md Vagrantfile admin build cert config demo exit fabio.png= \ > > + fabio.properties listen.go listen_test.go main.go metrics proxy \ > > + registry route routes.txt vendor > > + @${MV} ${WRKSRC}/${src} \ > > + ${WRKSRC}/src/github.com/eBay/fabio > > +.endfor > > All this, firstly, belong to the extract phase, and can be done better as= : > > GH_SUBDIR=3D src/github.com/eBay/fabio > > -- > Mathieu Arnold > > > From owner-svn-ports-head@freebsd.org Wed Sep 14 09:06:31 2016 Return-Path: Delivered-To: svn-ports-head@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 E34C1BDACC1; Wed, 14 Sep 2016 09:06:31 +0000 (UTC) (envelope-from vanilla@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 B44147F1; Wed, 14 Sep 2016 09:06:31 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E96UPZ034176; Wed, 14 Sep 2016 09:06:30 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E96Udg034175; Wed, 14 Sep 2016 09:06:30 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609140906.u8E96Udg034175@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 14 Sep 2016 09:06:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422120 - head/www/fabio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 09:06:32 -0000 Author: vanilla Date: Wed Sep 14 09:06:30 2016 New Revision: 422120 URL: https://svnweb.freebsd.org/changeset/ports/422120 Log: Remove uneeded parts. Submitted by: mat@ Modified: head/www/fabio/Makefile Modified: head/www/fabio/Makefile ============================================================================== --- head/www/fabio/Makefile Wed Sep 14 09:01:34 2016 (r422119) +++ head/www/fabio/Makefile Wed Sep 14 09:06:30 2016 (r422120) @@ -12,25 +12,13 @@ LICENSE= MIT USES= go USE_GITHUB= yes -GH_ACCOUNT= eBay:DEFAULT +GH_ACCOUNT= eBay GH_PROJECT= fabio +GH_SUBDIR= src/github.com/eBay/fabio USE_RC_SUBR= fabio -USERS= nobody -GROUPS= nobody - do-build: - @${MKDIR} ${WRKSRC}/src/github.com/eBay/fabio - -.for src in .gitignore .travis.yml CHANGELOG.md Dockerfile LICENSE Makefile \ - README.md Vagrantfile admin build cert config demo exit fabio.png \ - fabio.properties listen.go listen_test.go main.go metrics proxy \ - registry route routes.txt vendor - @${MV} ${WRKSRC}/${src} \ - ${WRKSRC}/src/github.com/eBay/fabio -.endfor - @cd ${WRKSRC}/src/github.com/eBay/fabio; \ ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} go build -v -x \ -ldflags "-X main.GitDescribe=v${PORTVERSION}" -o bin/fabio From owner-svn-ports-head@freebsd.org Wed Sep 14 09:10:47 2016 Return-Path: Delivered-To: svn-ports-head@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 AA096BDADC2; Wed, 14 Sep 2016 09:10:47 +0000 (UTC) (envelope-from amdmi3@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 7A8DAAF0; Wed, 14 Sep 2016 09:10:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E9Aku8034494; Wed, 14 Sep 2016 09:10:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E9AktA034493; Wed, 14 Sep 2016 09:10:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609140910.u8E9AktA034493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 09:10:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422121 - head/games/endless-sky X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 09:10:47 -0000 Author: amdmi3 Date: Wed Sep 14 09:10:46 2016 New Revision: 422121 URL: https://svnweb.freebsd.org/changeset/ports/422121 Log: - Fix LICENSE_FILE Submitted by: lightside@gmx.com via private email Modified: head/games/endless-sky/Makefile Modified: head/games/endless-sky/Makefile ============================================================================== --- head/games/endless-sky/Makefile Wed Sep 14 09:06:30 2016 (r422120) +++ head/games/endless-sky/Makefile Wed Sep 14 09:10:46 2016 (r422121) @@ -11,7 +11,7 @@ COMMENT= Space exploration and combat ga LICENSE= GPLv3+ CC-BY-4.0 CC-BY-SA-3.0 CC-BY-SA-4.0 PD LICENSE_COMB= multi -LICENSE_FILE_GPLv3= ${WRKSRC}/license.txt +LICENSE_FILE_GPLv3+ = ${WRKSRC}/license.txt LIB_DEPENDS= libpng.so:graphics/png From owner-svn-ports-head@freebsd.org Wed Sep 14 09:27:15 2016 Return-Path: Delivered-To: svn-ports-head@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 92055BD8418; Wed, 14 Sep 2016 09:27:15 +0000 (UTC) (envelope-from brnrd@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 5F8DEB01; Wed, 14 Sep 2016 09:27:15 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E9REOr041946; Wed, 14 Sep 2016 09:27:14 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E9REln041944; Wed, 14 Sep 2016 09:27:14 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609140927.u8E9REln041944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 09:27:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422122 - head/www/h2o X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 09:27:15 -0000 Author: brnrd Date: Wed Sep 14 09:27:14 2016 New Revision: 422122 URL: https://svnweb.freebsd.org/changeset/ports/422122 Log: www/h2o: Update to 2.0.4 (Fixes vulnerability) - Update to version 2.0.4 PR: 211892 Submitted by: Dave Cottlehuber (maintainer) Reviewed by: brnrd MFH: 2016Q3 Security: 08664d42-7989-11e6-b7a8-74d02b9a84d5 Modified: head/www/h2o/Makefile head/www/h2o/distinfo Modified: head/www/h2o/Makefile ============================================================================== --- head/www/h2o/Makefile Wed Sep 14 09:10:46 2016 (r422121) +++ head/www/h2o/Makefile Wed Sep 14 09:27:14 2016 (r422122) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= h2o -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.4 DISTVERSIONPREFIX= v CATEGORIES= www Modified: head/www/h2o/distinfo ============================================================================== --- head/www/h2o/distinfo Wed Sep 14 09:10:46 2016 (r422121) +++ head/www/h2o/distinfo Wed Sep 14 09:27:14 2016 (r422122) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467186334 -SHA256 (h2o-h2o-v2.0.1_GH0.tar.gz) = c53d11589c8c76491cf3a940b649d0a9cb27c36eb276963811ac1bc16cd2bf2c -SIZE (h2o-h2o-v2.0.1_GH0.tar.gz) = 15012563 +TIMESTAMP = 1473753131 +SHA256 (h2o-h2o-v2.0.4_GH0.tar.gz) = c0efa18f0ffb0f68ee4b60a6ed1feb54c770458c59e48baa2d9d0906ef9c68c0 +SIZE (h2o-h2o-v2.0.4_GH0.tar.gz) = 15015392 From owner-svn-ports-head@freebsd.org Wed Sep 14 09:31:36 2016 Return-Path: Delivered-To: svn-ports-head@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 54F72BD8561; Wed, 14 Sep 2016 09:31:36 +0000 (UTC) (envelope-from brnrd@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 2493CE2A; Wed, 14 Sep 2016 09:31:36 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8E9VZQw045511; Wed, 14 Sep 2016 09:31:35 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8E9VZrn045509; Wed, 14 Sep 2016 09:31:35 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201609140931.u8E9VZrn045509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 14 Sep 2016 09:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422123 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 09:31:36 -0000 Author: brnrd Date: Wed Sep 14 09:31:35 2016 New Revision: 422123 URL: https://svnweb.freebsd.org/changeset/ports/422123 Log: security/vuxml: Document www/h2o vulnerability PR: 211892 Submitted by: Dave Cottlehuber (maintainer) Reviewed by: brnrd MFH: 2016Q3 Security: 08664d42-7989-11e6-b7a8-74d02b9a84d5 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Sep 14 09:27:14 2016 (r422122) +++ head/security/vuxml/vuln.xml Wed Sep 14 09:31:35 2016 (r422123) @@ -58,6 +58,32 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + h2o -- fix DoS attack vector + + + h2o + + 2.0.4 + + + + + +

Frederik Deweerdt reported a denial-of-service attack vector + due to an unhandled error condition during socket connection.

+ +
+ + https://github.com/h2o/h2o/issues/1077 + CVE-2016-4864 + + + 2016-06-09 + 2016-09-14 + +
+ cURL -- Escape and unescape integer overflows From owner-svn-ports-head@freebsd.org Wed Sep 14 10:02:16 2016 Return-Path: Delivered-To: svn-ports-head@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 27C67BD8DCB; Wed, 14 Sep 2016 10:02:16 +0000 (UTC) (envelope-from cy@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 E8125DFE; Wed, 14 Sep 2016 10:02:15 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EA2F6P056647; Wed, 14 Sep 2016 10:02:15 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EA2FP7056645; Wed, 14 Sep 2016 10:02:15 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201609141002.u8EA2FP7056645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 14 Sep 2016 10:02:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422124 - head/security/krb5-114 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 10:02:16 -0000 Author: cy Date: Wed Sep 14 10:02:14 2016 New Revision: 422124 URL: https://svnweb.freebsd.org/changeset/ports/422124 Log: Update 1.14.3 --> 1.14.4. Modified: head/security/krb5-114/Makefile head/security/krb5-114/distinfo Modified: head/security/krb5-114/Makefile ============================================================================== --- head/security/krb5-114/Makefile Wed Sep 14 09:31:35 2016 (r422123) +++ head/security/krb5-114/Makefile Wed Sep 14 10:02:14 2016 (r422124) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= krb5 -PORTVERSION= 1.14.3 +PORTVERSION= 1.14.4 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ .if !defined(MASTERDIR) Modified: head/security/krb5-114/distinfo ============================================================================== --- head/security/krb5-114/distinfo Wed Sep 14 09:31:35 2016 (r422123) +++ head/security/krb5-114/distinfo Wed Sep 14 10:02:14 2016 (r422124) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469146014 -SHA256 (krb5-1.14.3.tar.gz) = cd4620d520cf0df0dd8791309912df2bb20fcba76790b9fba4e25c1da08ff2c9 -SIZE (krb5-1.14.3.tar.gz) = 12279888 +TIMESTAMP = 1473847039 +SHA256 (krb5-1.14.4.tar.gz) = 03a61a4280c9161771fb39019085dbe6a57aa602080515ff93b43cd6137e0b95 +SIZE (krb5-1.14.4.tar.gz) = 12283989 From owner-svn-ports-head@freebsd.org Wed Sep 14 11:07:24 2016 Return-Path: Delivered-To: svn-ports-head@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 09868AC4258; Wed, 14 Sep 2016 11:07:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C30A91A68; Wed, 14 Sep 2016 11:07:23 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id D5E65BDC9A; Wed, 14 Sep 2016 13:07:20 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id AB4E3BDC5A; Wed, 14 Sep 2016 13:07:20 +0200 (CEST) Subject: Re: svn commit: r422124 - head/security/krb5-114 To: Cy Schubert , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141002.u8EA2FP7056645@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <905e2928-6204-796b-dd55-faf863cd7600@FreeBSD.org> Date: Wed, 14 Sep 2016 13:07:18 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609141002.u8EA2FP7056645@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="vIXMW6jMIKpN2kPAiSLWGDHoqRwCD24uN" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 11:07:24 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --vIXMW6jMIKpN2kPAiSLWGDHoqRwCD24uN Content-Type: multipart/mixed; boundary="tEujJU5vTxsw9xceVEQUIgMkXTM8T8mE6"; protected-headers="v1" From: Mathieu Arnold To: Cy Schubert , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <905e2928-6204-796b-dd55-faf863cd7600@FreeBSD.org> Subject: Re: svn commit: r422124 - head/security/krb5-114 References: <201609141002.u8EA2FP7056645@repo.freebsd.org> In-Reply-To: <201609141002.u8EA2FP7056645@repo.freebsd.org> --tEujJU5vTxsw9xceVEQUIgMkXTM8T8mE6 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 12:02, Cy Schubert a =C3=A9crit : > PORTNAME=3D krb5 > -PORTVERSION=3D 1.14.3 > +PORTVERSION=3D 1.14.4 > CATEGORIES=3D security > MASTER_SITES=3D http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVE= RSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ It took me a while to get what this is doing, you seem to have rewritten what :R does. --=20 Mathieu Arnold --tEujJU5vTxsw9xceVEQUIgMkXTM8T8mE6-- --vIXMW6jMIKpN2kPAiSLWGDHoqRwCD24uN Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2S9oXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IZZsQAKQb2Dc85dlwa8d44BVxUm4c o3ei93qOcOY+jwBTGBV2FxODDC3I+2jGAMracwfjklcTecxJB/ttFLZC9FTU2/0U BIwhPQ/q/nGUG6nn1YYVJvCo9+UwoqQY+pHqOOZy7SthEuBN6UexA67HBSangpPC zOyPJF2rHSGbI16vLZjGM4sAuFbAyFD6BjCJluUkMTP2F+Z8c8q8lf2jB/yjO66k VqeP4Rv5srzxaDhGoXbJMHhWMXV0dYWOGh8ic8C2J5g6JGndO+hGV5wMI6fvdNIN 6NMfENMFre0DVD005ICweD6aA1WbOZgR/MrYSK/Kx3Yc3rk8SJOtUrI0braZ02G3 LjHYZFR11S+PkNnXGq8kL4lAm0FHkPfKRH3ieBZwmLKVUEKqQU6LWOpUmU8ET6Rm OcHh3oUZOQzpFt2CFEZRxRGh2yfCcnpC2IVJ42NM3/AhTcIK9W10fqC6JW1Giyil YFTyeN2OOpPZUMiZem6UxWe48fgkZQ6VYdj87lxbRMah+1aj0id4GLi1rJ6VCCTc yjnV6CV3luc+APxnbOKnfR3nM68RPC6Tre/jjxmtCPI1DI8Hd9qs7EoUwNg4Qq9V M854R47iuKifcwewLSYfOGw9T6tvdrzaIwjK9PJnX56lY7xY73achypwXExdzH6C l52RfbWdf9WvfNOBcTHi =eDat -----END PGP SIGNATURE----- --vIXMW6jMIKpN2kPAiSLWGDHoqRwCD24uN-- From owner-svn-ports-head@freebsd.org Wed Sep 14 11:20:43 2016 Return-Path: Delivered-To: svn-ports-head@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 6C1C6AC4511; Wed, 14 Sep 2016 11:20:43 +0000 (UTC) (envelope-from olivierd@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 3CE771014; Wed, 14 Sep 2016 11:20:43 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EBKgO8083155; Wed, 14 Sep 2016 11:20:42 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EBKgKY083154; Wed, 14 Sep 2016 11:20:42 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609141120.u8EBKgKY083154@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 14 Sep 2016 11:20:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422125 - head/x11-themes/greybird-theme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 11:20:43 -0000 Author: olivierd Date: Wed Sep 14 11:20:42 2016 New Revision: 422125 URL: https://svnweb.freebsd.org/changeset/ports/422125 Log: - Add LICENSE - Tell PORTSCOUT to monitor only 3.18.x releases Modified: head/x11-themes/greybird-theme/Makefile Modified: head/x11-themes/greybird-theme/Makefile ============================================================================== --- head/x11-themes/greybird-theme/Makefile Wed Sep 14 10:02:14 2016 (r422124) +++ head/x11-themes/greybird-theme/Makefile Wed Sep 14 11:20:42 2016 (r422125) @@ -10,8 +10,13 @@ PKGNAMESUFFIX= -theme MAINTAINER= olivierd@FreeBSD.org COMMENT= Gtk and xfwm4 themes for the Xfce Desktop +LICENSE= GPLv2 CC-BY-SA-3.0 +LICENSE_COMB= dual + RUN_DEPENDS= gtk-murrine-engine>=0.98.1:x11-themes/gtk-murrine-engine +PORTSCOUT= limit:^3\.18\. + GH_ACCOUNT= shimmerproject GH_PROJECT= Greybird From owner-svn-ports-head@freebsd.org Wed Sep 14 11:41:52 2016 Return-Path: Delivered-To: svn-ports-head@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 D6F4FAC4D74; Wed, 14 Sep 2016 11:41:52 +0000 (UTC) (envelope-from olivierd@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 8E17A1E1D; Wed, 14 Sep 2016 11:41:52 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EBfpUS094011; Wed, 14 Sep 2016 11:41:51 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EBfpWT094008; Wed, 14 Sep 2016 11:41:51 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609141141.u8EBfpWT094008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 14 Sep 2016 11:41:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422126 - in head: . deskutils/xfce4-volumed-pulse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 11:41:52 -0000 Author: olivierd Date: Wed Sep 14 11:41:51 2016 New Revision: 422126 URL: https://svnweb.freebsd.org/changeset/ports/422126 Log: Update to 0.2.2 Modified: head/UPDATING head/deskutils/xfce4-volumed-pulse/Makefile head/deskutils/xfce4-volumed-pulse/distinfo Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Sep 14 11:20:42 2016 (r422125) +++ head/UPDATING Wed Sep 14 11:41:51 2016 (r422126) @@ -5,6 +5,16 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20160914: + AFFECTS: users of deskutils/xfce4-volumed-pulse + AUTHOR: olivierd@FreeBSD.org + + The port has been updated to the latest stable version 0.2.2. + Support of xfce4-mixer has been removed, so you can delete + its properties with the following command: + + xfconf-query -c xfce4-mixer -p / -rR + 20160910: AFFECTS: users of security/letsencrypt.sh AUTHOR: riggs@FreeBSD.org Modified: head/deskutils/xfce4-volumed-pulse/Makefile ============================================================================== --- head/deskutils/xfce4-volumed-pulse/Makefile Wed Sep 14 11:20:42 2016 (r422125) +++ head/deskutils/xfce4-volumed-pulse/Makefile Wed Sep 14 11:41:51 2016 (r422126) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-volumed-pulse -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= deskutils xfce MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 Modified: head/deskutils/xfce4-volumed-pulse/distinfo ============================================================================== --- head/deskutils/xfce4-volumed-pulse/distinfo Wed Sep 14 11:20:42 2016 (r422125) +++ head/deskutils/xfce4-volumed-pulse/distinfo Wed Sep 14 11:41:51 2016 (r422126) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473606537 -SHA256 (xfce4/xfce4-volumed-pulse-0.2.1.tar.bz2) = d7400f027854d202dafe43e0d0e15e7529dc89e963ded8706e8359703bd49083 -SIZE (xfce4/xfce4-volumed-pulse-0.2.1.tar.bz2) = 310534 +TIMESTAMP = 1473843770 +SHA256 (xfce4/xfce4-volumed-pulse-0.2.2.tar.bz2) = 0ec315cd87943466e35c0572541bf4239730604236e5d793e4d9f46856d04c76 +SIZE (xfce4/xfce4-volumed-pulse-0.2.2.tar.bz2) = 312703 From owner-svn-ports-head@freebsd.org Wed Sep 14 11:52:29 2016 Return-Path: Delivered-To: svn-ports-head@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 30534BDA243; Wed, 14 Sep 2016 11:52:29 +0000 (UTC) (envelope-from olivierd@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 D7F03135D; Wed, 14 Sep 2016 11:52:28 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EBqSnT097752; Wed, 14 Sep 2016 11:52:28 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EBqS5a097751; Wed, 14 Sep 2016 11:52:28 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609141152.u8EBqS5a097751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Wed, 14 Sep 2016 11:52:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422127 - head/x11/xfce4-goodies X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 11:52:29 -0000 Author: olivierd Date: Wed Sep 14 11:52:27 2016 New Revision: 422127 URL: https://svnweb.freebsd.org/changeset/ports/422127 Log: Change default option group (from *_UNOFFICIAL to *_APPLICATIONS) for deskutils/xfce4-volumed-pulse Modified: head/x11/xfce4-goodies/Makefile Modified: head/x11/xfce4-goodies/Makefile ============================================================================== --- head/x11/xfce4-goodies/Makefile Wed Sep 14 11:41:51 2016 (r422126) +++ head/x11/xfce4-goodies/Makefile Wed Sep 14 11:52:27 2016 (r422127) @@ -25,7 +25,8 @@ OPTIONS_GROUP= APPLICATIONS PANELPLUGINS OPTIONS_GROUP_APPLICATIONS= DASHBOARD DICTIONARY GIGOLO MIDORI PAROLE \ POWERMANAGER RISTRETTO SCREENSHOOTER \ - TASKMANAGER TERMINAL XFBURN XFMPC + TASKMANAGER TERMINAL VOLUMEDPULSE XFBURN \ + XFMPC DASHBOARD_DESC= GNOME shell like dashboard for the Xfce desktop DICTIONARY_DESC= Xfce4 plugin to query different dictionaries GIGOLO_DESC= Frontend to easily manage filesystem connections @@ -36,6 +37,7 @@ RISTRETTO_DESC= Image viewer with Xfce SCREENSHOOTER_DESC= Application and panel plugin to take screenshots TASKMANAGER_DESC= Task manager for the Xfce desktop TERMINAL_DESC= Terminal emulator for the X windowing system +VOLUMEDPULSE_DESC= Volume management daemon for Xfce using PulseAudio XFBURN_DESC= CD/DVD burning tool for Xfce XFMPC_DESC= Graphical MPD client focusing on low footprint @@ -49,6 +51,7 @@ RISTRETTO_RUN_DEPENDS= ristretto>=0:gra SCREENSHOOTER_RUN_DEPENDS= xfce4-screenshooter-plugin>=0:x11/xfce4-screenshooter-plugin TASKMANAGER_RUN_DEPENDS= xfce4-taskmanager>=0:x11/xfce4-taskmanager TERMINAL_RUN_DEPENDS= xfce4-terminal>=0:x11/xfce4-terminal +VOLUMEDPULSE_RUN_DEPENDS= xfce4-volumed-pulse>=0:deskutils/xfce4-volumed-pulse XFBURN_RUN_DEPENDS= xfburn>=0:sysutils/xfburn XFMPC_RUN_DEPENDS= xfmpc>=0:audio/xfmpc @@ -124,7 +127,7 @@ MEDIATAGS_RUN_DEPENDS= thunar-media-tag VCS_RUN_DEPENDS= thunar-vcs-plugin>=0:devel/thunar-vcs-plugin OPTIONS_GROUP_UNOFFICIAL= BSDCPUFREQ EQUAKE MIXER PRINT THEMES \ - VALA VFS VOLUMED VOLUMEDPULSE + VALA VFS VOLUMED BSDCPUFREQ_DESC= Display the CPU clock frequency in Xfce panel EQUAKE_DESC= Earthquake monitor plugin for the Xfce panel MIXER_DESC= Volume control for the Xfce desktop @@ -143,6 +146,5 @@ THEMES_RUN_DEPENDS= xfce4-wm-themes>=0: VALA_RUN_DEPENDS= xfce4-vala>=0:devel/xfce4-vala VFS_RUN_DEPENDS= thunar-vfs>=0:x11-fm/thunar-vfs VOLUMED_RUN_DEPENDS= xfce4-volumed>=0:deskutils/xfce4-volumed -VOLUMEDPULSE_RUN_DEPENDS= xfce4-volumed-pulse>=0:deskutils/xfce4-volumed-pulse .include From owner-svn-ports-head@freebsd.org Wed Sep 14 12:21:19 2016 Return-Path: Delivered-To: svn-ports-head@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 CEB7ABD918E; Wed, 14 Sep 2016 12:21:19 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABA471322; Wed, 14 Sep 2016 12:21:18 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 3BF9043CD3; Wed, 14 Sep 2016 07:21:08 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> Date: Wed, 14 Sep 2016 07:21:08 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:21:19 -0000 On 9/14/2016 01:56, Mathieu Arnold wrote: > Le 14/09/2016 à 07:45, John Marino a écrit : >> Author: marino >> Date: Wed Sep 14 05:45:40 2016 >> New Revision: 422114 >> URL: https://svnweb.freebsd.org/changeset/ports/422114 >> >> Log: >> misc/fortune_strfile: Release maintainership >> >> This port is too simple to need a maintainer. It's a shared resource >> for all fortune ports > > You know, we do have a policy about not adding a port without a maintainer. > Adding a port with a maintainer and dropping maintainership in the first > 24 hours is about the same as adding it without a maintainer. Except that it's not. I met the requirements of the policy. Moreover, others have committed new ports without a maintainer for various questionable reasons and nobody said much about that. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 12:24:18 2016 Return-Path: Delivered-To: svn-ports-head@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 AF34CBD9323; Wed, 14 Sep 2016 12:24:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 622FC1743; Wed, 14 Sep 2016 12:24:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id A0AF5BDC86; Wed, 14 Sep 2016 14:24:15 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 79057BDC71; Wed, 14 Sep 2016 14:24:15 +0200 (CEST) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> Date: Wed, 14 Sep 2016 14:24:11 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="oVS2tuTvS4uUN9ERtorbbCsKAmvgEn5LP" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:24:18 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --oVS2tuTvS4uUN9ERtorbbCsKAmvgEn5LP Content-Type: multipart/mixed; boundary="JH69AqssrTeI47HO9Pwq8R78kdH4X6xWr"; protected-headers="v1" From: Mathieu Arnold To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> Subject: Re: svn commit: r422114 - head/misc/fortune_strfile References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> In-Reply-To: <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> --JH69AqssrTeI47HO9Pwq8R78kdH4X6xWr Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 14:21, John Marino a =C3=A9crit : > On 9/14/2016 01:56, Mathieu Arnold wrote: >> Le 14/09/2016 =C3=A0 07:45, John Marino a =C3=A9crit : >>> Author: marino >>> Date: Wed Sep 14 05:45:40 2016 >>> New Revision: 422114 >>> URL: https://svnweb.freebsd.org/changeset/ports/422114 >>> >>> Log: >>> misc/fortune_strfile: Release maintainership >>> >>> This port is too simple to need a maintainer. It's a shared resour= ce >>> for all fortune ports >> >> You know, we do have a policy about not adding a port without a >> maintainer. >> Adding a port with a maintainer and dropping maintainership in the fir= st >> 24 hours is about the same as adding it without a maintainer. > > Except that it's not. I met the requirements of the policy.=20 > Moreover, others have committed new ports without a maintainer for > various questionable reasons and nobody said much about that. I am sorry that I do not notice all the errors that are made, some I see, some I do not. When I see them, I report them. --=20 Mathieu Arnold --JH69AqssrTeI47HO9Pwq8R78kdH4X6xWr-- --oVS2tuTvS4uUN9ERtorbbCsKAmvgEn5LP Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2UFtXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IQFQQAJgkNx8GMWE/vcjOEfg0jGoa Fzj8NmOeutnQmDRnDzKoujXduHjBHS6iA2dsabLZv/ebanXoP2bXcEVLk9bSIK1e hPFNO+fr7W/mH6XxPi+/1pYjmRX5cLU45N+W/x3PKaXgB5vdNk/AQat9iIFnsOmQ e5/L8pI7BRjyUWe7oMhedXcraY5yHIcdDYFMiT4zdflKcPFbGHcDAYp1fqiEIEgM AfR81+90KLygXM+M2Zoji1Wmrv3voosJltLNt542T34J25F9jS08SfKkcYoz2oBR fQwgBwedswFONEz1kLK/HlaCyLOh2KkvDZLfRbKMTWZ9J8/TKVW5RcNA+J7eRFlz oe8/P4jUnUu3wm8yWh02w71Mp/TDkY7sH86uwEEMsrKB3kqk/v++cfx1qByjkNbh S6d0gBwU6g29qBDAaHvX6xzhdprlXJmWGJVj+9wwZll367nxKXYu3E6NyGYLPkAn ZAgCTKYYLFgysTbbJ4WNtvup3u2CAk768Pt4H2marFFhPaZSmIXQFFdpnCy7X/JF mA9P2TlSIY/Kvk78XmBv9fUFYcp9nQcO1Ah3H9x4i7axcHaW7G5zKE/Fs92UVI1D RdW0JEOqmZpvn4wzFjiHHQGiZzYRl/wcAycPGnpTIzU+sYt8AcPbDz3AOt2Qb0ws Mosdxexxg/v7pzVvHSEA =QyNh -----END PGP SIGNATURE----- --oVS2tuTvS4uUN9ERtorbbCsKAmvgEn5LP-- From owner-svn-ports-head@freebsd.org Wed Sep 14 12:27:35 2016 Return-Path: Delivered-To: svn-ports-head@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 37CECBD9440; Wed, 14 Sep 2016 12:27:35 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 137BF197A; Wed, 14 Sep 2016 12:27:35 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 7DD9A43CD3; Wed, 14 Sep 2016 07:27:30 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: Mathieu Arnold , marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> Date: Wed, 14 Sep 2016 07:27:30 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:27:35 -0000 On 9/14/2016 07:24, Mathieu Arnold wrote: > Le 14/09/2016 à 14:21, John Marino a écrit : >> On 9/14/2016 01:56, Mathieu Arnold wrote: >>> Le 14/09/2016 à 07:45, John Marino a écrit : >>>> Author: marino >>>> Date: Wed Sep 14 05:45:40 2016 >>>> New Revision: 422114 >>>> URL: https://svnweb.freebsd.org/changeset/ports/422114 >>>> >>>> Log: >>>> misc/fortune_strfile: Release maintainership >>>> >>>> This port is too simple to need a maintainer. It's a shared resource >>>> for all fortune ports >>> >>> You know, we do have a policy about not adding a port without a >>> maintainer. >>> Adding a port with a maintainer and dropping maintainership in the first >>> 24 hours is about the same as adding it without a maintainer. >> >> Except that it's not. I met the requirements of the policy. >> Moreover, others have committed new ports without a maintainer for >> various questionable reasons and nobody said much about that. > > I am sorry that I do not notice all the errors that are made, some I > see, some I do not. When I see them, I report them. > But this is NOT an error. You see it as a violation of the "spirit" of the policy, but it's not a violation of the policy itself. If you think there should be a minimum ownership period then work on adjusting the policy (through consensus hopefully). I met the requirements and it was all very intentionally on my part, no error at all, and certainly not without precedent. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 12:31:33 2016 Return-Path: Delivered-To: svn-ports-head@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 49C23BD9547; Wed, 14 Sep 2016 12:31:33 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [192.108.105.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "StartCom Class 2 IV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D5D11C2B; Wed, 14 Sep 2016 12:31:31 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (bones.soaustin.net [192.108.105.22]) by mail.soaustin.net (Postfix) with ESMTPSA id 8F7C820EC; Wed, 14 Sep 2016 07:31:29 -0500 (CDT) Date: Wed, 14 Sep 2016 07:31:28 -0500 From: Mark Linimon To: marino@freebsd.org Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422114 - head/misc/fortune_strfile Message-ID: <20160914123128.GA32707@lonesome.com> References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:31:33 -0000 On Wed, Sep 14, 2016 at 07:21:08AM -0500, John Marino wrote: > I met the requirements of the policy. IMHO, yes, you have. But I remember when we discussed the policy, the idea was to prevent this number from growing: Number of ports with no maintainer: 4814 (18.4%) Note that that number does not include group-maintained ports (e.g. gnome@, perl@). That's just ports@ per se. My own opinion is that 4814 is way too many. And, I don't buy the argument that some have made that "unmaintained ports are better maintained than some maintained ports". My own personal belief, stated at the time when I was on portmgr, was that unmaintained ports contributed to bitrot. Obligatory disclaimer: I am no longer on portmgr. mcl From owner-svn-ports-head@freebsd.org Wed Sep 14 12:33:49 2016 Return-Path: Delivered-To: svn-ports-head@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 F3C37BD97AE; Wed, 14 Sep 2016 12:33:48 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [192.108.105.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "StartCom Class 2 IV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D591B1FAD; Wed, 14 Sep 2016 12:33:48 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (bones.soaustin.net [192.108.105.22]) by mail.soaustin.net (Postfix) with ESMTPSA id B8C5120EC; Wed, 14 Sep 2016 07:33:47 -0500 (CDT) Date: Wed, 14 Sep 2016 07:33:46 -0500 From: Mark Linimon To: marino@freebsd.org Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422114 - head/misc/fortune_strfile Message-ID: <20160914123346.GB32707@lonesome.com> References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:33:49 -0000 On Wed, Sep 14, 2016 at 07:27:30AM -0500, John Marino wrote: > If you think there should be a minimum ownership period then work on > adjusting the policy If FreeBSD goes down this route it will have a 100-page policy document, and all we'll do is argue over it. > (through consensus hopefully). My experience on portmgr suggested that community consensus on every issue was technically impossible. mcl From owner-svn-ports-head@freebsd.org Wed Sep 14 12:39:22 2016 Return-Path: Delivered-To: svn-ports-head@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 3E1C9BD9C9F; Wed, 14 Sep 2016 12:39:22 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19F41159F; Wed, 14 Sep 2016 12:39:21 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 5475243CD3; Wed, 14 Sep 2016 07:39:17 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: Mark Linimon References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <20160914123128.GA32707@lonesome.com> Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: Date: Wed, 14 Sep 2016 07:39:17 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20160914123128.GA32707@lonesome.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:39:22 -0000 On 9/14/2016 07:31, Mark Linimon wrote: > On Wed, Sep 14, 2016 at 07:21:08AM -0500, John Marino wrote: >> I met the requirements of the policy. > > IMHO, yes, you have. > > But I remember when we discussed the policy, the idea was to prevent > this number from growing: > > Number of ports with no maintainer: 4814 (18.4%) > > Note that that number does not include group-maintained ports (e.g. > gnome@, perl@). That's just ports@ per se. > > My own opinion is that 4814 is way too many. And, I don't buy the > argument that some have made that "unmaintained ports are better > maintained than some maintained ports". > > My own personal belief, stated at the time when I was on portmgr, > was that unmaintained ports contributed to bitrot. > > Obligatory disclaimer: I am no longer on portmgr. > That's all fine but everyone need to take this in context. 1) I'm a maintainer of 70 other ports 2) I frequently commit to literally thousands of other ports 3) This particular part is only used for fortune ports. It should have been done years ago and maintained by one of the fortune port maintainers (IMO) 4) After all that, more than half the fortune ports have been marked BROKEN because they don't fetch. So the thing this helper program is supporting isn't even maintained. In context, nobody should be upset about this. I removed the requirement to have a games distribution installed to build very simple ports and that was a nice benefit. If the price is that there's a tiny new unmaintained port, you'd pay that price every single day and twice on Sunday. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 12:55:19 2016 Return-Path: Delivered-To: svn-ports-head@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 9F1E6BDA3F8; Wed, 14 Sep 2016 12:55:19 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from smtp-out-so.shaw.ca (smtp-out-so.shaw.ca [64.59.136.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 49A281F51; Wed, 14 Sep 2016 12:55:18 +0000 (UTC) (envelope-from cy.schubert@komquats.com) Received: from spqr.komquats.com ([96.50.22.10]) by shaw.ca with SMTP id k9g7bLgYFgdalk9g8bOdQY; Wed, 14 Sep 2016 06:52:42 -0600 X-Authority-Analysis: v=2.2 cv=Q++Q2M+a c=1 sm=1 tr=0 a=jvE2nwUzI0ECrNeyr98KWA==:117 a=jvE2nwUzI0ECrNeyr98KWA==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=GW1xBdLrtEIA:10 a=6I5d2MoRAAAA:8 a=Gz7s5_CCAAAA:8 a=YxBL1-UpAAAA:8 a=XJezfFV4BxiqMX0xukwA:9 a=CjuIK1q_8ugA:10 a=IjZwj45LgO3ly-622nXo:22 a=6fe-E0B8uWJSDHmAgaur:22 a=Ia-lj3WSrqcvXOmTRaiG:22 Received: from slippy.cwsent.com (slippy [10.1.1.91]) by spqr.komquats.com (Postfix) with ESMTPS id B89D6C4; Wed, 14 Sep 2016 05:52:39 -0700 (PDT) Received: from slippy (localhost [127.0.0.1]) by slippy.cwsent.com (8.15.2/8.15.2) with ESMTP id u8ECqc8T061149; Wed, 14 Sep 2016 05:52:39 -0700 (PDT) (envelope-from Cy.Schubert@cschubert.com) Message-Id: <201609141252.u8ECqc8T061149@slippy.cwsent.com> X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.6 Reply-to: Cy Schubert From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.cschubert.com/ To: Mathieu Arnold cc: Cy Schubert , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422124 - head/security/krb5-114 In-Reply-To: Message from Mathieu Arnold of "Wed, 14 Sep 2016 13:07:18 +0200." <905e2928-6204-796b-dd55-faf863cd7600@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Sep 2016 05:52:38 -0700 X-CMAE-Envelope: MS4wfMcJLXMRnleFWBt8pTAPlaEvYxKSw3Hzn+0w0nHNqtDYdwWEa7j3qD/LzIvAxgCbcVEqeIN8Df8XNAOntgCRfIV14xe+EMuUxyn0j4Z7BHRNRgh/p7/h AabjMBXmvOgf6BF8UW5BORAC8cf4lIQrwMIxI21qDakelZGPBd4LqvCTEE1/H2nSI+ePS4hN8b2TFPxW8tgKLBA+C1WhoONF2lGQi9tEFUMgwCsGzZDLhuq3 +MfuK8yTzApVWLapgjuMNvFrUZAxaIhwymrlCAOAkBcbav82L55YITq1/FtgFBRRZ7QUhdu5SezWWVHLluyLLw== X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:55:19 -0000 In message <905e2928-6204-796b-dd55-faf863cd7600@FreeBSD.org>, Mathieu Arnold w rites: > Le 14/09/2016 =C3=A0 12:02, Cy Schubert a =C3=A9crit : > > PORTNAME=3D krb5 > > -PORTVERSION=3D 1.14.3 > > +PORTVERSION=3D 1.14.4 > > CATEGORIES=3D security > > MASTER_SITES=3D http://web.mit.edu/kerberos/dist/${PORTNAME}/${ > PORTVE= > RSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ > It took me a while to get what this is doing, you seem to have rewritten > what :R does. This has been there for almost forever. If I can simplify it, bonous! I'll test it out and update the three krb5 ports. Thanks. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. From owner-svn-ports-head@freebsd.org Wed Sep 14 13:02:58 2016 Return-Path: Delivered-To: svn-ports-head@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 15D57BDA874; Wed, 14 Sep 2016 13:02:58 +0000 (UTC) (envelope-from olgeni@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 CF2071579; Wed, 14 Sep 2016 13:02:57 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ED2vJY024073; Wed, 14 Sep 2016 13:02:57 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ED2ueA024065; Wed, 14 Sep 2016 13:02:56 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609141302.u8ED2ueA024065@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 14 Sep 2016 13:02:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422128 - in head/lang: erlang erlang-java erlang-runtime19 erlang-wx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:02:58 -0000 Author: olgeni Date: Wed Sep 14 13:02:56 2016 New Revision: 422128 URL: https://svnweb.freebsd.org/changeset/ports/422128 Log: Update Erlang ports to version 19.0.6. Remove GCC option: clang works just fine, and using gcc on FreeBSD gives a few errors (and seems to be mostly untested upstream). Modified: head/lang/erlang-java/Makefile head/lang/erlang-java/distinfo head/lang/erlang-runtime19/Makefile head/lang/erlang-runtime19/distinfo head/lang/erlang-wx/Makefile head/lang/erlang-wx/distinfo head/lang/erlang/Makefile head/lang/erlang/distinfo Modified: head/lang/erlang-java/Makefile ============================================================================== --- head/lang/erlang-java/Makefile Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang-java/Makefile Wed Sep 14 13:02:56 2016 (r422128) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.5 +PORTVERSION= 19.0.6 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -15,7 +15,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang interface for Java Modified: head/lang/erlang-java/distinfo ============================================================================== --- head/lang/erlang-java/distinfo Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang-java/distinfo Wed Sep 14 13:02:56 2016 (r422128) @@ -1,4 +1,4 @@ -TIMESTAMP = 1471444975 +TIMESTAMP = 1473846791 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_html_19.0.tar.gz) = b6f7c4e964673333f6c3eea8530dd988b41339b8912ae293f6f1b429489159ff @@ -13,3 +13,5 @@ SHA256 (erlang/patch-otp-19.0.4) = fa4c2 SIZE (erlang/patch-otp-19.0.4) = 6337 SHA256 (erlang/patch-otp-19.0.5) = 7d5d45dc6b20518be966bffb496354838b44d1f59bf094a41d9341c10bfedb92 SIZE (erlang/patch-otp-19.0.5) = 6437 +SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 +SIZE (erlang/patch-otp-19.0.6) = 6592 Modified: head/lang/erlang-runtime19/Makefile ============================================================================== --- head/lang/erlang-runtime19/Makefile Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang-runtime19/Makefile Wed Sep 14 13:02:56 2016 (r422128) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.5 +PORTVERSION= 19.0.6 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -17,7 +17,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -33,7 +33,7 @@ SUB_LIST= ERLANG_LIB=${ERLANG_LIB} MAKE_JOBS_UNSAFE=yes -OPTIONS_DEFINE= DIRTY DOCS DTRACE GCC GS HIPE JAVA KQUEUE NATIVE ODBC OPENSSL SCTP SMP THREADS WX +OPTIONS_DEFINE= DIRTY DOCS DTRACE GS HIPE JAVA KQUEUE NATIVE ODBC OPENSSL SCTP SMP THREADS WX DIRTY_DESC= Enable Dirty schedulers (experimental) DTRACE_DESC= Enable DTrace support @@ -68,8 +68,8 @@ DISTFILES+= ${ERLANG_DOCS}:erlangorg # respectively)" you probably misconfigured DTrace in some way. .if ${OSVERSION} < 1000000 -.if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} && ! ${PORT_OPTIONS:MGCC} -IGNORE= support for DTrace on amd64 requires GCC option +.if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} +IGNORE= support for DTrace on amd64 requires at least FreeBSD 10 .endif .endif @@ -77,10 +77,6 @@ IGNORE= support for DTrace on amd64 req CFLAGS+= -DMAP_NORESERVE=0 .endif -.if ${PORT_OPTIONS:MGCC} -USE_GCC?= yes -.endif - .if ${PORT_OPTIONS:MDTRACE} CONFIGURE_ARGS+=--with-dynamic-trace=dtrace CFLAGS+= -fno-omit-frame-pointer @@ -221,7 +217,7 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.3 + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.4 ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0 ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/compiler-7.0/* \ Modified: head/lang/erlang-runtime19/distinfo ============================================================================== --- head/lang/erlang-runtime19/distinfo Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang-runtime19/distinfo Wed Sep 14 13:02:56 2016 (r422128) @@ -1,4 +1,4 @@ -TIMESTAMP = 1471439958 +TIMESTAMP = 1473846966 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_man_19.0.tar.gz) = c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e @@ -15,3 +15,5 @@ SHA256 (erlang/patch-otp-19.0.4) = fa4c2 SIZE (erlang/patch-otp-19.0.4) = 6337 SHA256 (erlang/patch-otp-19.0.5) = 7d5d45dc6b20518be966bffb496354838b44d1f59bf094a41d9341c10bfedb92 SIZE (erlang/patch-otp-19.0.5) = 6437 +SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 +SIZE (erlang/patch-otp-19.0.6) = 6592 Modified: head/lang/erlang-wx/Makefile ============================================================================== --- head/lang/erlang-wx/Makefile Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang-wx/Makefile Wed Sep 14 13:02:56 2016 (r422128) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.5 +PORTVERSION= 19.0.6 CATEGORIES= lang parallel MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -15,7 +15,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang bindings for wxWindows Modified: head/lang/erlang-wx/distinfo ============================================================================== --- head/lang/erlang-wx/distinfo Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang-wx/distinfo Wed Sep 14 13:02:56 2016 (r422128) @@ -1,4 +1,4 @@ -TIMESTAMP = 1471444972 +TIMESTAMP = 1473846787 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_html_19.0.tar.gz) = b6f7c4e964673333f6c3eea8530dd988b41339b8912ae293f6f1b429489159ff @@ -13,3 +13,5 @@ SHA256 (erlang/patch-otp-19.0.4) = fa4c2 SIZE (erlang/patch-otp-19.0.4) = 6337 SHA256 (erlang/patch-otp-19.0.5) = 7d5d45dc6b20518be966bffb496354838b44d1f59bf094a41d9341c10bfedb92 SIZE (erlang/patch-otp-19.0.5) = 6437 +SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 +SIZE (erlang/patch-otp-19.0.6) = 6592 Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang/Makefile Wed Sep 14 13:02:56 2016 (r422128) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.5 +PORTVERSION= 19.0.6 PORTEPOCH= 3 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ @@ -21,7 +21,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -38,7 +38,7 @@ PLIST_SUB= ERLANG_LIB=${ERLANG_LIB} MAKE_JOBS_UNSAFE=yes -OPTIONS_DEFINE= DIRTY DOCS DTRACE GCC GS HIPE JAVA KQUEUE NATIVE ODBC OPENSSL SCTP SMP THREADS WX +OPTIONS_DEFINE= DIRTY DOCS DTRACE GS HIPE JAVA KQUEUE NATIVE ODBC OPENSSL SCTP SMP THREADS WX DIRTY_DESC= Enable Dirty schedulers (experimental) DTRACE_DESC= Enable DTrace support @@ -85,8 +85,8 @@ DOC_DISTFILES= armstrong_thesis_2003.pdf # respectively)" you probably misconfigured DTrace in some way. .if ${OSVERSION} < 1000000 -.if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} && ! ${PORT_OPTIONS:MGCC} -IGNORE= support for DTrace on amd64 requires GCC option +.if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} +IGNORE= support for DTrace on amd64 requires at least FreeBSD 10 .endif .endif @@ -94,10 +94,6 @@ IGNORE= support for DTrace on amd64 req CFLAGS+= -DMAP_NORESERVE=0 .endif -.if ${PORT_OPTIONS:MGCC} -USE_GCC?= yes -.endif - .if ${PORT_OPTIONS:MDTRACE} CONFIGURE_ARGS+=--with-dynamic-trace=dtrace CFLAGS+= -fno-omit-frame-pointer @@ -243,7 +239,7 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.3 + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.4 ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0 ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/compiler-7.0/* \ Modified: head/lang/erlang/distinfo ============================================================================== --- head/lang/erlang/distinfo Wed Sep 14 11:52:27 2016 (r422127) +++ head/lang/erlang/distinfo Wed Sep 14 13:02:56 2016 (r422128) @@ -1,4 +1,4 @@ -TIMESTAMP = 1471444967 +TIMESTAMP = 1473846700 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_man_19.0.tar.gz) = c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e @@ -27,3 +27,5 @@ SHA256 (erlang/patch-otp-19.0.4) = fa4c2 SIZE (erlang/patch-otp-19.0.4) = 6337 SHA256 (erlang/patch-otp-19.0.5) = 7d5d45dc6b20518be966bffb496354838b44d1f59bf094a41d9341c10bfedb92 SIZE (erlang/patch-otp-19.0.5) = 6437 +SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 +SIZE (erlang/patch-otp-19.0.6) = 6592 From owner-svn-ports-head@freebsd.org Wed Sep 14 13:17:26 2016 Return-Path: Delivered-To: svn-ports-head@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 51551BDAD4E; Wed, 14 Sep 2016 13:17:26 +0000 (UTC) (envelope-from tz@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 20E531AE2; Wed, 14 Sep 2016 13:17:26 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EDHPf3028161; Wed, 14 Sep 2016 13:17:25 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EDHO1a028152; Wed, 14 Sep 2016 13:17:24 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201609141317.u8EDHO1a028152@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 14 Sep 2016 13:17:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422129 - in head/net-mgmt/zabbix22-server: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:17:26 -0000 Author: tz Date: Wed Sep 14 13:17:24 2016 New Revision: 422129 URL: https://svnweb.freebsd.org/changeset/ports/422129 Log: net-mgmt/zabbix22-server: Update from 2.2.12 to 2.2.14 - http://www.zabbix.com/rn2.2.13.php - http://www.zabbix.com/rn2.2.14.php Also: - Fix default path to PID - Fix rc.d scripts to correct use PID file - Remove IGNORE_WITH_PHP and IGNORE_WITH_MYSQL because the ignored versions no longer exists PR: 209891 Submitted by: pg@pakhom.spb.ru (maintainer) Approved by: pi (mentor) Added: head/net-mgmt/zabbix22-server/files/patch-src_zabbix__agent_zabbix__agentd.c (contents, props changed) head/net-mgmt/zabbix22-server/files/patch-src_zabbix__proxy_proxy.c (contents, props changed) head/net-mgmt/zabbix22-server/files/patch-src_zabbix__server_server.c (contents, props changed) Modified: head/net-mgmt/zabbix22-server/Makefile head/net-mgmt/zabbix22-server/distinfo head/net-mgmt/zabbix22-server/files/pkg-message.in head/net-mgmt/zabbix22-server/files/zabbix_agentd.in head/net-mgmt/zabbix22-server/files/zabbix_proxy.in head/net-mgmt/zabbix22-server/files/zabbix_server.in Modified: head/net-mgmt/zabbix22-server/Makefile ============================================================================== --- head/net-mgmt/zabbix22-server/Makefile Wed Sep 14 13:02:56 2016 (r422128) +++ head/net-mgmt/zabbix22-server/Makefile Wed Sep 14 13:17:24 2016 (r422129) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= zabbix22 -PORTVERSION= 2.2.12 -PORTREVISION= 0 +PORTVERSION= 2.2.14 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server @@ -14,14 +13,8 @@ COMMENT= Enterprise-class open source di LICENSE= GPLv2 -CONFLICTS= ${PKGBASE}-1.[0-8]* - -IGNORE_WITH_PHP= 52 -IGNORE_WITH_MYSQL= 41 - -.if ${PKGNAMESUFFIX} != "-agent" -CONFLICTS+= ${PORTNAME}-1.[0-8]* -.endif +CONFLICTS= zabbix2${PKGNAMESUFFIX}-[0-9]* zabbix24${PKGNAMESUFFIX}[0-9]* zabbix3${PKGNAMESUFFIX}-[0-9]* +LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//} @@ -60,7 +53,6 @@ CONFIGURE_ARGS+= --enable-${ZABBIX_BUILD --with-iconv=${ICONV_PREFIX} .if ${ZABBIX_BUILD} != "agent" -LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp USES+= execinfo CPPFLAGS+= ${EXECINFO_CPPFLAGS} @@ -71,7 +63,7 @@ SUB_FILES= pkg-message CONFIGURE_ARGS+= --with-net-snmp OPTIONS_DEFINE= IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP JAVAGW LIBXML2 -OPTIONS_DEFAULT= MYSQL FPING JABBER CURL UNIXODBC +OPTIONS_DEFAULT= MYSQL IPV6 FPING JABBER CURL UNIXODBC OPTIONS_SUB= yes CURL_DESC= Support for web monitoring @@ -90,13 +82,13 @@ OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE OR OPTIONS_SINGLE_ODBC= IODBC UNIXODBC MYSQL_CONFIGURE_WITH= mysql -MYSQL_USE= MYSQL=yes +USES+= mysql PGSQL_CONFIGURE_WITH= postgresql -PGSQL_USES= pgsql +USES+= pgsql SQLITE_CONFIGURE_WITH= sqlite3 -SQLITE_USES= sqlite:3 +USES+= sqlite:3 ORACLE_CONFIGURE_WITH= oracle @@ -156,9 +148,19 @@ post-patch: ${WRKSRC}/src/zabbix_${ZABBIX_BUILD}/Makefile.in @${FIND} ${WRKSRC} -type f \( -name '*.bak' -or -name '*.orig' \) -exec ${RM} -f {} + -post-install: -.if ${PORT_OPTIONS:MJAVAGW} - @${MV} ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh.sample +.if ${ZABBIX_BUILD} == "server" + @${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_server.pid#PidFile=/var/run/zabbix/zabbix_server.pid#g' \ + ${WRKSRC}/conf/zabbix_server*.conf +.endif + +.if ${ZABBIX_BUILD} == "proxy" + @${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_proxy.pid#PidFile=/var/run/zabbix/zabbix_proxy.pid#g' \ + ${WRKSRC}/conf/zabbix_proxy*.conf +.endif + +.if ${ZABBIX_BUILD} == "agent" + @${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_agentd.pid#PidFile=/var/run/zabbix/zabbix_agentd.pid#g' \ + ${WRKSRC}/conf/zabbix_agentd.conf .endif .if ${ZABBIX_BUILD} != "agent" @@ -168,4 +170,9 @@ post-install: .endif .endif +post-install: +.if ${PORT_OPTIONS:MJAVAGW} + @${MV} ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh ${STAGEDIR}${PREFIX}/sbin/zabbix_java/settings.sh.sample +.endif + .include Modified: head/net-mgmt/zabbix22-server/distinfo ============================================================================== --- head/net-mgmt/zabbix22-server/distinfo Wed Sep 14 13:02:56 2016 (r422128) +++ head/net-mgmt/zabbix22-server/distinfo Wed Sep 14 13:17:24 2016 (r422129) @@ -1,2 +1,3 @@ -SHA256 (zabbix-2.2.12.tar.gz) = 7481021c2d62fa7d090f8401c87e99107c3e0227e5b10406380c4ac5a768e9e9 -SIZE (zabbix-2.2.12.tar.gz) = 15467504 +TIMESTAMP = 1473858962 +SHA256 (zabbix-2.2.14.tar.gz) = 76fa3f45168946b9fb4a22840b4b06054f1a09da93c910969eacd04217fa21c8 +SIZE (zabbix-2.2.14.tar.gz) = 15481807 Added: head/net-mgmt/zabbix22-server/files/patch-src_zabbix__agent_zabbix__agentd.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/zabbix22-server/files/patch-src_zabbix__agent_zabbix__agentd.c Wed Sep 14 13:17:24 2016 (r422129) @@ -0,0 +1,11 @@ +--- src/zabbix_agent/zabbix_agentd.c.orig 2016-09-13 16:27:58 UTC ++++ src/zabbix_agent/zabbix_agentd.c +@@ -271,7 +271,7 @@ static void set_defaults(void) + + #ifdef USE_PID_FILE + if (NULL == CONFIG_PID_FILE) +- CONFIG_PID_FILE = "/tmp/zabbix_agentd.pid"; ++ CONFIG_PID_FILE = "/var/run/zabbix/zabbix_agentd.pid"; + #endif + } + Added: head/net-mgmt/zabbix22-server/files/patch-src_zabbix__proxy_proxy.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/zabbix22-server/files/patch-src_zabbix__proxy_proxy.c Wed Sep 14 13:17:24 2016 (r422129) @@ -0,0 +1,11 @@ +--- src/zabbix_proxy/proxy.c.orig 2016-09-13 16:28:16 UTC ++++ src/zabbix_proxy/proxy.c +@@ -256,7 +256,7 @@ static void zbx_set_defaults() + CONFIG_SNMPTRAP_FILE = zbx_strdup(CONFIG_SNMPTRAP_FILE, "/tmp/zabbix_traps.tmp"); + + if (NULL == CONFIG_PID_FILE) +- CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/tmp/zabbix_proxy.pid"); ++ CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/var/run/zabbix/zabbix_proxy.pid"); + + if (NULL == CONFIG_TMPDIR) + CONFIG_TMPDIR = zbx_strdup(CONFIG_TMPDIR, "/tmp"); Added: head/net-mgmt/zabbix22-server/files/patch-src_zabbix__server_server.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/zabbix22-server/files/patch-src_zabbix__server_server.c Wed Sep 14 13:17:24 2016 (r422129) @@ -0,0 +1,11 @@ +--- src/zabbix_server/server.c.orig 2016-09-13 16:28:31 UTC ++++ src/zabbix_server/server.c +@@ -226,7 +226,7 @@ static void zbx_set_defaults() + CONFIG_SNMPTRAP_FILE = zbx_strdup(CONFIG_SNMPTRAP_FILE, "/tmp/zabbix_traps.tmp"); + + if (NULL == CONFIG_PID_FILE) +- CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/tmp/zabbix_server.pid"); ++ CONFIG_PID_FILE = zbx_strdup(CONFIG_PID_FILE, "/var/run/zabbix/zabbix_server.pid"); + + if (NULL == CONFIG_ALERT_SCRIPTS_PATH) + CONFIG_ALERT_SCRIPTS_PATH = zbx_strdup(CONFIG_ALERT_SCRIPTS_PATH, DATADIR "/zabbix/alertscripts"); Modified: head/net-mgmt/zabbix22-server/files/pkg-message.in ============================================================================== --- head/net-mgmt/zabbix22-server/files/pkg-message.in Wed Sep 14 13:02:56 2016 (r422128) +++ head/net-mgmt/zabbix22-server/files/pkg-message.in Wed Sep 14 13:17:24 2016 (r422129) @@ -39,7 +39,7 @@ Upgrade notes for 2.2.0 Accepted data limit when using Zabbix protocol was changed from 128MB to 64MB. New upgrade procedure -There are no upgrade SQL scripts anymore - database upgrade is performed by the Zabbix server. +There are no upgrade SQL scripts anymore - database upgrade is performed by the Zabbix server. To upgrade an existing database, see the scripts in Upgrade notes for 2.2.0 https://www.zabbix.com/documentation/2.2/manual/installation/upgrade_notes_220 Modified: head/net-mgmt/zabbix22-server/files/zabbix_agentd.in ============================================================================== --- head/net-mgmt/zabbix22-server/files/zabbix_agentd.in Wed Sep 14 13:02:56 2016 (r422128) +++ head/net-mgmt/zabbix22-server/files/zabbix_agentd.in Wed Sep 14 13:17:24 2016 (r422129) @@ -9,10 +9,10 @@ # # zabbix_agentd_enable (bool): Set to NO by default. Set it to YES to # enable zabbix_agentd. -# zabbix_agentd_paths (string): Set to standard path by default. Set a search -# if you have custom userparams that need binaries elsewhere. # zabbix_agentd_config (string): Set to the standard config file path by # default. +# zabbix_agentd_pidfile (string): Location of the zabbix_agentd pid file +# Default is /var/run/zabbix/zabbix_agentd.pid # . /etc/rc.subr @@ -22,22 +22,27 @@ rcvar=zabbix_agentd_enable load_rc_config $name -: ${zabbix_agentd_enable="NO"} -: ${zabbix_agentd_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin} -: ${zabbix_agentd_config="%%ETCDIR%%/${name}.conf"} +: ${zabbix_agentd_enable:=NO} +: ${zabbix_agentd_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_agentd_pidfile:=/var/run/zabbix/zabbix_agentd.pid} command="%%PREFIX%%/sbin/${name}" required_files="${zabbix_agentd_config}" -start_precmd="find_pidfile" -status_precmd="find_pidfile" -stop_precmd="find_pidfile" -find_pidfile() +start_precmd=zabbix_agentd_precmd +status_precmd=zabbix_agentd_precmd +stop_precmd=zabbix_agentd_precmd + +zabbix_agentd_precmd() { if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then pidfile="$_pidfile_from_conf" else - pidfile="/tmp/${name}.pid" + pidfile=${zabbix_agentd_pidfile} + local rundir=${zabbix_agentd_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi fi # This shouldn't be necessary with pidfile, but empirically it was the @@ -47,6 +52,4 @@ find_pidfile() rc_pid=$(check_pidfile ${pidfile} ${command}) } -export PATH="${zabbix_agentd_paths}" - run_rc_command "$1" Modified: head/net-mgmt/zabbix22-server/files/zabbix_proxy.in ============================================================================== --- head/net-mgmt/zabbix22-server/files/zabbix_proxy.in Wed Sep 14 13:02:56 2016 (r422128) +++ head/net-mgmt/zabbix22-server/files/zabbix_proxy.in Wed Sep 14 13:17:24 2016 (r422129) @@ -11,10 +11,10 @@ # # zabbix_proxy_enable (bool): Set to NO by default. Set it to YES to # enable zabbix_proxy. -# zabbix_proxy_paths (string): Set to standard path by default. Set a search -# if you have custom externals that need binaries elsewhere. # zabbix_proxy_config (string): Set to the standard config file path by # default. +# zabbix_proxy_pidfile (string): Location of the zabbix_proxy pid file +# Default is /var/run/zabbix/zabbix_proxy.pid # . /etc/rc.subr @@ -24,22 +24,27 @@ rcvar=zabbix_proxy_enable load_rc_config $name -: ${zabbix_proxy_enable="NO"} -: ${zabbix_proxy_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin} -: ${zabbix_proxy_config="%%ETCDIR%%/${name}.conf"} +: ${zabbix_proxy_enable:=NO} +: ${zabbix_proxy_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_proxy_pidfile:=/var/run/zabbix/zabbix_proxy.pid} command="%%PREFIX%%/sbin/${name}" required_files="${zabbix_proxy_config}" -start_precmd="find_pidfile" -status_precmd="find_pidfile" -stop_precmd="find_pidfile" -find_pidfile() +start_precmd=zabbix_proxy_precmd +status_precmd=zabbix_proxy_precmd +stop_precmd=zabbix_proxy_precmd + +zabbix_proxy_precmd() { - if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then + if get_pidfile_from_conf PidFile ${zabbix_proxy_config}; then pidfile="$_pidfile_from_conf" else - pidfile="/tmp/${name}.pid" + pidfile=${zabbix_proxy_pidfile} + local rundir=${zabbix_proxy_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi fi # This shouldn't be necessary with pidfile, but empirically it was the @@ -49,6 +54,4 @@ find_pidfile() rc_pid=$(check_pidfile ${pidfile} ${command}) } -export PATH="${zabbix_proxy_paths}" - run_rc_command "$1" Modified: head/net-mgmt/zabbix22-server/files/zabbix_server.in ============================================================================== --- head/net-mgmt/zabbix22-server/files/zabbix_server.in Wed Sep 14 13:02:56 2016 (r422128) +++ head/net-mgmt/zabbix22-server/files/zabbix_server.in Wed Sep 14 13:17:24 2016 (r422129) @@ -11,10 +11,10 @@ # # zabbix_server_enable (bool): Set to NO by default. Set it to YES to # enable zabbix_server. -# zabbix_server_paths (string): Set to standard path by default. Set a search -# if you have custom externals that need binaries elsewhere. # zabbix_server_config (string): Set to the standard config file path by # default. +# zabbix_server_pidfile (string): Location of the zabbix_server pid file +# Default is /var/run/zabbix/zabbix_server.pid # . /etc/rc.subr @@ -24,22 +24,27 @@ rcvar=zabbix_server_enable load_rc_config $name -: ${zabbix_server_enable="NO"} -: ${zabbix_server_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin} -: ${zabbix_server_config="%%ETCDIR%%/${name}.conf"} +: ${zabbix_server_enable:=NO} +: ${zabbix_server_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_server_pidfile:=/var/run/zabbix/zabbix_server.pid} command="%%PREFIX%%/sbin/${name}" required_files="${zabbix_server_config}" -start_precmd="find_pidfile" -status_precmd="find_pidfile" -stop_precmd="find_pidfile" -find_pidfile() +start_precmd=zabbix_server_precmd +status_precmd=zabbix_server_precmd +stop_precmd=zabbix_server_precmd + +zabbix_server_precmd() { - if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then + if get_pidfile_from_conf PidFile ${zabbix_server_config}; then pidfile="$_pidfile_from_conf" else - pidfile="/tmp/${name}.pid" + pidfile=${zabbix_server_pidfile} + local rundir=${zabbix_server_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi fi # This shouldn't be necessary with pidfile, but empirically it was the @@ -49,6 +54,4 @@ find_pidfile() rc_pid=$(check_pidfile ${pidfile} ${command}) } -export PATH="${zabbix_server_paths}" - run_rc_command "$1" From owner-svn-ports-head@freebsd.org Wed Sep 14 13:26:49 2016 Return-Path: Delivered-To: svn-ports-head@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 3E23CBD90B6; Wed, 14 Sep 2016 13:26:49 +0000 (UTC) (envelope-from bsam@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 0DBED105D; Wed, 14 Sep 2016 13:26:48 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EDQmRH032377; Wed, 14 Sep 2016 13:26:48 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EDQmDu032375; Wed, 14 Sep 2016 13:26:48 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201609141326.u8EDQmDu032375@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Wed, 14 Sep 2016 13:26:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422130 - head/java/intellij X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:26:49 -0000 Author: bsam Date: Wed Sep 14 13:26:47 2016 New Revision: 422130 URL: https://svnweb.freebsd.org/changeset/ports/422130 Log: java/intellij: Update to version 2016.2.4. PR: 212686 Submitted by: Sergey Brunov Modified: head/java/intellij/Makefile head/java/intellij/distinfo Modified: head/java/intellij/Makefile ============================================================================== --- head/java/intellij/Makefile Wed Sep 14 13:17:24 2016 (r422129) +++ head/java/intellij/Makefile Wed Sep 14 13:26:47 2016 (r422130) @@ -5,7 +5,7 @@ # Vadim Zhukov PORTNAME= intellij -PORTVERSION= 2016.2.3 +PORTVERSION= 2016.2.4 CATEGORIES= java devel MASTER_SITES= https://download.jetbrains.com/idea/ \ http://download.jetbrains.com/idea/ @@ -25,7 +25,7 @@ JAVA_VERSION= 1.7+ NO_ARCH= yes NO_BUILD= yes -WRKDIST= ${WRKDIR}/idea-IC-162.1812.17 +WRKDIST= ${WRKDIR}/idea-IC-162.2032.8 .include "common.mk" Modified: head/java/intellij/distinfo ============================================================================== --- head/java/intellij/distinfo Wed Sep 14 13:17:24 2016 (r422129) +++ head/java/intellij/distinfo Wed Sep 14 13:26:47 2016 (r422130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472738655 -SHA256 (ideaIC-2016.2.3.tar.gz) = 3a3fde46e4eefad4a4f0bf3ebabf1a67f27f6e5a157d1b2ee416b1df5d6b8e04 -SIZE (ideaIC-2016.2.3.tar.gz) = 336280568 +TIMESTAMP = 1473856384 +SHA256 (ideaIC-2016.2.4.tar.gz) = bfd1bc75386d22bf9f0559b4894b547689383bd69c4038a1516a6e2c00f96742 +SIZE (ideaIC-2016.2.4.tar.gz) = 336281885 From owner-svn-ports-head@freebsd.org Wed Sep 14 13:36:22 2016 Return-Path: Delivered-To: svn-ports-head@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 0096FBD956B; Wed, 14 Sep 2016 13:36:22 +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 C4F851743; Wed, 14 Sep 2016 13:36:21 +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 u8EDaKX5036099; Wed, 14 Sep 2016 13:36:20 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EDaKP5036097; Wed, 14 Sep 2016 13:36:20 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609141336.u8EDaKP5036097@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 14 Sep 2016 13:36:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422131 - head/net-p2p/sonarr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:36:22 -0000 Author: feld Date: Wed Sep 14 13:36:20 2016 New Revision: 422131 URL: https://svnweb.freebsd.org/changeset/ports/422131 Log: net-p2p/sonarr: Update to 2.0.0.4326 Modified: head/net-p2p/sonarr/Makefile head/net-p2p/sonarr/distinfo Modified: head/net-p2p/sonarr/Makefile ============================================================================== --- head/net-p2p/sonarr/Makefile Wed Sep 14 13:26:47 2016 (r422130) +++ head/net-p2p/sonarr/Makefile Wed Sep 14 13:36:20 2016 (r422131) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sonarr -PORTVERSION= 2.0.0.4323 +PORTVERSION= 2.0.0.4326 PORTREVISION= 0 CATEGORIES= net-p2p MASTER_SITES= http://download.sonarr.tv/v2/master/mono/ Modified: head/net-p2p/sonarr/distinfo ============================================================================== --- head/net-p2p/sonarr/distinfo Wed Sep 14 13:26:47 2016 (r422130) +++ head/net-p2p/sonarr/distinfo Wed Sep 14 13:36:20 2016 (r422131) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473608492 -SHA256 (NzbDrone.master.2.0.0.4323.mono.tar.gz) = 9d042272003583552e233d2a748ec87d7f45cf3289291b8b7577d4c9d9f9a0b0 -SIZE (NzbDrone.master.2.0.0.4323.mono.tar.gz) = 6436479 +TIMESTAMP = 1473859962 +SHA256 (NzbDrone.master.2.0.0.4326.mono.tar.gz) = f934aa799f9e4a0a17d72e424c88ac4e31456b5313f4fb0dce55cb553ce72ed3 +SIZE (NzbDrone.master.2.0.0.4326.mono.tar.gz) = 6437502 From owner-svn-ports-head@freebsd.org Wed Sep 14 13:41:17 2016 Return-Path: Delivered-To: svn-ports-head@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 E99D3BD9769; Wed, 14 Sep 2016 13:41:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A724719A9; Wed, 14 Sep 2016 13:41:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id EF4D2BDE10; Wed, 14 Sep 2016 15:41:14 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id B4F94BDE18; Wed, 14 Sep 2016 15:41:14 +0200 (CEST) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> Date: Wed, 14 Sep 2016 15:41:11 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="VebGXCxoungsN5oSjGA7ITmJxtFdCFd0h" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:41:18 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --VebGXCxoungsN5oSjGA7ITmJxtFdCFd0h Content-Type: multipart/mixed; boundary="FjpPB0t6Ij9AOF8jNK2cAOGIV1VEPN2eh"; protected-headers="v1" From: Mathieu Arnold To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> Subject: Re: svn commit: r422114 - head/misc/fortune_strfile References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> In-Reply-To: <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> --FjpPB0t6Ij9AOF8jNK2cAOGIV1VEPN2eh Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 14:27, John Marino a =C3=A9crit : > On 9/14/2016 07:24, Mathieu Arnold wrote: >> Le 14/09/2016 =C3=A0 14:21, John Marino a =C3=A9crit : >>> On 9/14/2016 01:56, Mathieu Arnold wrote: >>>> Le 14/09/2016 =C3=A0 07:45, John Marino a =C3=A9crit : >>>>> Author: marino >>>>> Date: Wed Sep 14 05:45:40 2016 >>>>> New Revision: 422114 >>>>> URL: https://svnweb.freebsd.org/changeset/ports/422114 >>>>> >>>>> Log: >>>>> misc/fortune_strfile: Release maintainership >>>>> >>>>> This port is too simple to need a maintainer. It's a shared >>>>> resource >>>>> for all fortune ports >>>> >>>> You know, we do have a policy about not adding a port without a >>>> maintainer. >>>> Adding a port with a maintainer and dropping maintainership in the >>>> first >>>> 24 hours is about the same as adding it without a maintainer. >>> >>> Except that it's not. I met the requirements of the policy. >>> Moreover, others have committed new ports without a maintainer for >>> various questionable reasons and nobody said much about that. >> >> I am sorry that I do not notice all the errors that are made, some I >> see, some I do not. When I see them, I report them. >> > > But this is NOT an error. You see it as a violation of the "spirit" > of the policy, but it's not a violation of the policy itself. If you > think there should be a minimum ownership period then work on > adjusting the policy (through consensus hopefully). I met the > requirements and it was all very intentionally on my part, no error at > all, and certainly not without precedent. And you are ranting with legalese talk again. Our policies are for normal people, not lawyers, and thus, require you to extrapolate a bit and use common sense. This is why, for example, the porter's handbook is 350 pages long, not 25000, with 42 annexes. Now, to the subject at hand, new ports must have a maintainer, in this case, you did not follow the policy, it is a new port, and it does not have maintainer. --=20 Mathieu Arnold --FjpPB0t6Ij9AOF8jNK2cAOGIV1VEPN2eh-- --VebGXCxoungsN5oSjGA7ITmJxtFdCFd0h Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2VN5XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IEcIQAKyUkv3bEEksGL29VwIdPToU +e5ig+RT5xvuiy3wF6dEq2lam60UvMr2A/tHnWDRT97+5YnKEoKxH2yFtKmACAfH 7nQgUC0a204wZpd2Rqvh199SGaJD1i1TgJ8czeNzwR9T3RasVlWJy0PRnpLDVURd K7n6fKitbF8IRNuL2crRNWF6+bZrl/YzW7cC/GdXTy8PkKPytrJ6qWg3a+oaYeV3 BzEMNoLVdeNfFfJiq+47+OSkn8LKsDru3CkTRjG172VJdVMFCNe4Kc8P4Ice0Q8n JKk/3DnuIWk2rKf5pRk3cscbAKLBRFu9wh2tevGPAO4N0mCqWGMRg7dpeEI2Ubgv d4N1IqO6bTj4J2Ejqqg4Zdq+lDRu/cr6ELUKwFOPGjQQ701liGiZc9mxIo4YRZaE +rR1QhY445VIDwNSa4IIlwrX5U+fNJDiHz7o7NwPEnoJ8ZYfldiIaHcWBFx7u90d Qite7NLLopckdMGeeFibUHXlZ8eqo4BvlsqiLYv5wXSmngY88iaDhqZFLIWVQVhR WMQe9hi580022bpPxX6bJSrjYw4vBLm1GTKM74R9bvmCYpwMldvUxWsECp+u8RYt 6zUXDHGJGPaXTVGVYLmejedPCzcaux/r3R4dXSOjo1hZmwotzo68cSz9XC1cfNZI z1zCBJ7PbYgKpXCBrCv2 =Aw7i -----END PGP SIGNATURE----- --VebGXCxoungsN5oSjGA7ITmJxtFdCFd0h-- From owner-svn-ports-head@freebsd.org Wed Sep 14 13:49:44 2016 Return-Path: Delivered-To: svn-ports-head@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 87C0BBD99D8; Wed, 14 Sep 2016 13:49:44 +0000 (UTC) (envelope-from tz@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 5A9111FCD; Wed, 14 Sep 2016 13:49:44 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EDnhsw039915; Wed, 14 Sep 2016 13:49:43 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EDnhhF039913; Wed, 14 Sep 2016 13:49:43 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201609141349.u8EDnhhF039913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 14 Sep 2016 13:49:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422132 - head/www/wordpress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:49:44 -0000 Author: tz Date: Wed Sep 14 13:49:43 2016 New Revision: 422132 URL: https://svnweb.freebsd.org/changeset/ports/422132 Log: www/wordpress: Update from 4.6 to 4.6.1 Changes: https://codex.wordpress.org/Version_4.6.1 MFH: 2016Q3 PR: 212627 Submitted by: Jochen Neumeister (maintainer) Approved by: swills (mentor) Modified: head/www/wordpress/Makefile head/www/wordpress/distinfo Modified: head/www/wordpress/Makefile ============================================================================== --- head/www/wordpress/Makefile Wed Sep 14 13:36:20 2016 (r422131) +++ head/www/wordpress/Makefile Wed Sep 14 13:49:43 2016 (r422132) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.6 +PORTVERSION= 4.6.1 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://wordpress.org/ Modified: head/www/wordpress/distinfo ============================================================================== --- head/www/wordpress/distinfo Wed Sep 14 13:36:20 2016 (r422131) +++ head/www/wordpress/distinfo Wed Sep 14 13:49:43 2016 (r422132) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471435446 -SHA256 (wordpress-4.6.tar.gz) = c1856cf969b1e73025ba2c681491908c3a4a6c5a2333f4531bf9bfb90f634380 -SIZE (wordpress-4.6.tar.gz) = 7961192 +TIMESTAMP = 1473265458 +SHA256 (wordpress-4.6.1.tar.gz) = 873f562cdea14d6305b9ad2f41f18a557d99cd8694b4a0056a33970e127abfee +SIZE (wordpress-4.6.1.tar.gz) = 7961036 From owner-svn-ports-head@freebsd.org Wed Sep 14 13:52:31 2016 Return-Path: Delivered-To: svn-ports-head@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 C7B09BD9C3A; Wed, 14 Sep 2016 13:52:31 +0000 (UTC) (envelope-from cbssports@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A27BC151E; Wed, 14 Sep 2016 13:52:31 +0000 (UTC) (envelope-from cbssports@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 7643A43CF0; Wed, 14 Sep 2016 08:52:26 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: Mathieu Arnold , marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> From: John Marino Organization: Bayern Wolfpack Message-ID: <7c0af911-8103-bfaf-65cd-da6f490c0137@marino.st> Date: Wed, 14 Sep 2016 08:52:28 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:52:31 -0000 On 9/14/2016 08:41, Mathieu Arnold wrote: > Le 14/09/2016 à 14:27, John Marino a écrit : >> >> But this is NOT an error. You see it as a violation of the "spirit" >> of the policy, but it's not a violation of the policy itself. If you >> think there should be a minimum ownership period then work on >> adjusting the policy (through consensus hopefully). I met the >> requirements and it was all very intentionally on my part, no error at >> all, and certainly not without precedent. > > And you are ranting with legalese talk again. Our policies are for > normal people, not lawyers, and thus, require you to extrapolate a bit > and use common sense. > This is why, for example, the porter's handbook is 350 pages long, not > 25000, with 42 annexes. > > Now, to the subject at hand, new ports must have a maintainer, in this > case, you did not follow the policy, it is a new port, and it does not > have maintainer. > I followed the "law". I maintained the port long enough to ensure that it fulfilled its purpose. Lawyers and judges exist for a reason, to interpret badly written laws and policies. Again, if there is a MINIMUM time to maintain a port, please add it to the policy. And yes, you're welcome for the unsolicited but beneficial work that I did on fortune ports that neither interest nor concern me. Geez. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 13:55:17 2016 Return-Path: Delivered-To: svn-ports-head@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 4CEB5BD9CB4; Wed, 14 Sep 2016 13:55:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0832E1689; Wed, 14 Sep 2016 13:55:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 53B9FBDEBA; Wed, 14 Sep 2016 15:55:14 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 0E078BDEB9; Wed, 14 Sep 2016 15:55:14 +0200 (CEST) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: John Marino , marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> <7c0af911-8103-bfaf-65cd-da6f490c0137@marino.st> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Wed, 14 Sep 2016 15:55:12 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <7c0af911-8103-bfaf-65cd-da6f490c0137@marino.st> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Stxs4A749lT1exbpdfC2BblC6uliiPNsP" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 13:55:17 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Stxs4A749lT1exbpdfC2BblC6uliiPNsP Content-Type: multipart/mixed; boundary="6cBApeQjF1oFWrqTStmfeLmsqWLDTlRdT"; protected-headers="v1" From: Mathieu Arnold To: John Marino , marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422114 - head/misc/fortune_strfile References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> <7c0af911-8103-bfaf-65cd-da6f490c0137@marino.st> In-Reply-To: <7c0af911-8103-bfaf-65cd-da6f490c0137@marino.st> --6cBApeQjF1oFWrqTStmfeLmsqWLDTlRdT Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 15:52, John Marino a =C3=A9crit : > On 9/14/2016 08:41, Mathieu Arnold wrote: >> Le 14/09/2016 =C3=A0 14:27, John Marino a =C3=A9crit : >>> >>> But this is NOT an error. You see it as a violation of the "spirit" >>> of the policy, but it's not a violation of the policy itself. If you= >>> think there should be a minimum ownership period then work on >>> adjusting the policy (through consensus hopefully). I met the >>> requirements and it was all very intentionally on my part, no error a= t >>> all, and certainly not without precedent. >> >> And you are ranting with legalese talk again. Our policies are for >> normal people, not lawyers, and thus, require you to extrapolate a bit= >> and use common sense. >> This is why, for example, the porter's handbook is 350 pages long, not= >> 25000, with 42 annexes. >> >> Now, to the subject at hand, new ports must have a maintainer, in this= >> case, you did not follow the policy, it is a new port, and it does not= >> have maintainer. >> > > I followed the "law". I maintained the port long enough to ensure > that it fulfilled its purpose. > > Lawyers and judges exist for a reason, to interpret badly written laws > and policies. Again, if there is a MINIMUM time to maintain a port, > please add it to the policy. Here, we are maintaining an operating system, it is not a tribunal. And no, there will not be a hard definition of how long a port is considered new, like I said, common sense, less than six months but more than a week, or something. --=20 Mathieu Arnold --6cBApeQjF1oFWrqTStmfeLmsqWLDTlRdT-- --Stxs4A749lT1exbpdfC2BblC6uliiPNsP Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2VbBXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85Iu/MP/A1CbrlrY1rUU/OWmhJ+liY1 6enIwpTcaS5FOwmBH84TuEbPAJMwwDSPQa+oAfQhUMUYRQxPv28diqBlFag6Pi0l ap5TT+CfR9py941B4GPOX/mV4mkdMP/sdMbrR/Bw2K5+OFtQdDQGvbSmb0ryZGXz Wa7rK6kIIyKHbwsZy9+WCj9I7HZUi/aT1HLg+rj5PbgVgRpObxB7/73mBw5rkV4i gFm0pocdynH6R4KfJO2trvCRzlwz99Jp+uKbAxRuy2zDET33aBX/6THwmkWizPym RVSZpNasJ6bj/5AffmeBac6aUUTpcvh1ysce7O7JuWKeWfHAEY9dS7zveW/2xnSX mL8qdRFrR6UlyUnTtH2xDOb9yJQS1JTrQX6f3jwP9hjmth7hf2gSMtx81kCvIX+9 zuwdafAnzfOfdbhLwJSCeRRgtrpqLmeuOG8iT9qcl5jnR7ersrzU/Kin5shAcHXJ KK5KiShbRumGCSGO8Vg7Ma9YCMcRwwdoOp4FBGsBadnqno9pu6Fkt1xQ8FpcB02m Mfz+QfHGewo/8tcJ9rotYx8CHvsPHkXJwJZpIaF8djoMt0lNAXBChh5sCFLxccAI Br0As8zcI0fedI1l5ROv4ZlILctgGegkRQrNDyR+R7HcW1GOCb/W61Bhi8t2sox9 +zg3cAA9cYRR6FCA501j =tzeH -----END PGP SIGNATURE----- --Stxs4A749lT1exbpdfC2BblC6uliiPNsP-- From owner-svn-ports-head@freebsd.org Wed Sep 14 14:01:00 2016 Return-Path: Delivered-To: svn-ports-head@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 96196BD9F8D; Wed, 14 Sep 2016 14:01:00 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from theravensnest.org (theraven.freebsd.your.org [216.14.102.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cloud.theravensnest.org", Issuer "StartCom Class 1 DV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 74AD51B3D; Wed, 14 Sep 2016 14:01:00 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from [192.168.1.65] (host31-51-138-47.range31-51.btcentralplus.com [31.51.138.47]) (authenticated bits=0) by theravensnest.org (8.15.2/8.15.2) with ESMTPSA id u8EE0pvl022367 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 14 Sep 2016 14:00:52 GMT (envelope-from theraven@FreeBSD.org) X-Authentication-Warning: theravensnest.org: Host host31-51-138-47.range31-51.btcentralplus.com [31.51.138.47] claimed to be [192.168.1.65] Content-Type: multipart/signed; boundary="Apple-Mail=_818ED04B-AF3E-43C7-B18E-C3A9FDE035EF"; protocol="application/pkcs7-signature"; micalg=sha1 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile From: David Chisnall In-Reply-To: <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> Date: Wed, 14 Sep 2016 15:00:45 +0100 Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-Id: <9A314BC7-F54B-4C82-AFB7-82953DC47D35@FreeBSD.org> References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> To: marino@freebsd.org X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:01:00 -0000 --Apple-Mail=_818ED04B-AF3E-43C7-B18E-C3A9FDE035EF Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 On 14 Sep 2016, at 13:27, John Marino wrote: >=20 > I met the requirements and it was all very intentionally on my part, = no error at all, and certainly not without precedent. If you need to carefully read the rules so that you can follow them = precisely to the letter, that=E2=80=99s usually a good clue that = you=E2=80=99re trying to circumvent the intent of the rules. The rules = in a community like FreeBSD are intended to be codifications of the = intent of the community, not rigid programs that prescribe permitted = behaviour. David --Apple-Mail=_818ED04B-AF3E-43C7-B18E-C3A9FDE035EF Content-Disposition: attachment; filename=smime.p7s Content-Type: application/pkcs7-signature; name=smime.p7s Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIK5jCCBPww ggPkoAMCAQICECJrrb9nBol9MHok/UZg/AYwDQYJKoZIhvcNAQELBQAwdTELMAkGA1UEBhMCSUwx FjAUBgNVBAoTDVN0YXJ0Q29tIEx0ZC4xKTAnBgNVBAsTIFN0YXJ0Q29tIENlcnRpZmljYXRpb24g QXV0aG9yaXR5MSMwIQYDVQQDExpTdGFydENvbSBDbGFzcyAxIENsaWVudCBDQTAeFw0xNjA0MTkw OTI3NDJaFw0xNzA0MTkwOTI3NDJaMEQxHTAbBgNVBAMMFHRoZXJhdmVuQGZyZWVic2Qub3JnMSMw IQYJKoZIhvcNAQkBFhR0aGVyYXZlbkBmcmVlYnNkLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBALsL5pEhrGjrswHVdMHWhgxb8ARKDYRePSqpDLmjJ40bpx+n1zrvIwjC2Vk2IpoD 04rg5Pog2IrhnX+Qk2NSXzBXWj2JAaTc9OtSeAY0BtgJYXONGONQbRKVy97QBdzd1SbMEzDrOgH5 UDI+5sF1PboOTmLyTAPI9273XdfZ0BnstUXs8NXr/7p9E5CWJOsO1iQcINbm4XiwC1PLNMeWUknE Nji/hFKwcE8IFtaUe1ymbw6yA3rBpDu3KewIRD1T66FPTZJeIzvUoBIqWd+GAOfCBG2QYmbc3y/x K2hCtcXThcB1uVFA2q39koLKA8wHyqv4Jhm3wzhAqKDsWK4bGW0CAwEAAaOCAbcwggGzMA4GA1Ud DwEB/wQEAwIEsDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwCQYDVR0TBAIwADAdBgNV HQ4EFgQU5J3Kc8GeW8pEGxBkcMoA7eUOPRwwHwYDVR0jBBgwFoAUJIFsOWG+SQ+PtxtGK8kotSdI bWgwbwYIKwYBBQUHAQEEYzBhMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5zdGFydHNzbC5jb20w OQYIKwYBBQUHMAKGLWh0dHA6Ly9haWEuc3RhcnRzc2wuY29tL2NlcnRzL3NjYS5jbGllbnQxLmNy dDA4BgNVHR8EMTAvMC2gK6AphidodHRwOi8vY3JsLnN0YXJ0c3NsLmNvbS9zY2EtY2xpZW50MS5j cmwwHwYDVR0RBBgwFoEUdGhlcmF2ZW5AZnJlZWJzZC5vcmcwIwYDVR0SBBwwGoYYaHR0cDovL3d3 dy5zdGFydHNzbC5jb20vMEYGA1UdIAQ/MD0wOwYLKwYBBAGBtTcBAgUwLDAqBggrBgEFBQcCARYe aHR0cDovL3d3dy5zdGFydHNzbC5jb20vcG9saWN5MA0GCSqGSIb3DQEBCwUAA4IBAQBSBDH+kZf5 bZkNFcMSPdfnGC7F8utBIxs2bi3JQjsBoQTm1vnXdwgINSfO9At6iQZHoEyj8ZE6PcMFuEU0+bk0 aE8aYcW59WnxfWx943upZoMhX0YVaJcFK01EHFrddRAP44sh7Eu6JtdFuAG+6btDReMcg35Qm65X 7/280aVm7awadJ+IQs8r9qBVk2NFqkvHCETtJjNWXd7M6mcsfXstvykbubPQH/VNW/zrX6yzIcI4 aoz+Sn8RJmHNkk6cImqe1KvsdDLXmqCoeoMwos62pT18RaI//jwTdmnf5EHFMlevnxOr7rzA++71 OSZfdYf6+nvHOod1F721rNuy6lxFMIIF4jCCA8qgAwIBAgIQa6eKfQrXiNZRCvlZ5Oe04TANBgkq hkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UE CxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20g Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTUxMjE2MDEwMDA1WhcNMzAxMjE2MDEwMDA1WjB1 MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjEpMCcGA1UECxMgU3RhcnRDb20g Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIzAhBgNVBAMTGlN0YXJ0Q29tIENsYXNzIDEgQ2xpZW50 IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvX3a98OifYP2W4L921tfrh4bdcC1 Ga+YJKy7V3nYNewJHnzMlBsK0Hb8Dm4Wo3FZpylcYa1MJGT10QMGWaLER3xCIuRR+8eklf/EqeZW RLojJ7zBRtjMywPOCelrOU+DX12dKp+Ez4J6919rz1UudTO1GvZyCYJ/I7062uHsskM8b7gPxmcC oO1UHwwpgkvpCArJWGFoFzjLdsZbErJcS3HtAhlkbE/BKTMrdYg35Uo12SLBO5tbk8h2imbKTC8i Ms+pskrvI/AVlh6QoTTXk6xboVX6zgMgzxSVVLymQiygYYm0y5aMsvi2raFhC643SOGvErWWPPnS EfbeAD1xswIDAQABo4IBZDCCAWAwDgYDVR0PAQH/BAQDAgEGMB0GA1UdJQQWMBQGCCsGAQUFBwMC BggrBgEFBQcDBDASBgNVHRMBAf8ECDAGAQH/AgEAMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9j cmwuc3RhcnRzc2wuY29tL3Nmc2NhLmNybDBmBggrBgEFBQcBAQRaMFgwJAYIKwYBBQUHMAGGGGh0 dHA6Ly9vY3NwLnN0YXJ0c3NsLmNvbTAwBggrBgEFBQcwAoYkaHR0cDovL2FpYS5zdGFydHNzbC5j b20vY2VydHMvY2EuY3J0MB0GA1UdDgQWBBQkgWw5Yb5JD4+3G0YrySi1J0htaDAfBgNVHSMEGDAW gBROC+8apEBbpRdphzDKNGhD0EGu8jA/BgNVHSAEODA2MDQGBFUdIAAwLDAqBggrBgEFBQcCARYe aHR0cDovL3d3dy5zdGFydHNzbC5jb20vcG9saWN5MA0GCSqGSIb3DQEBCwUAA4ICAQCL4/eH7AGL hK0PAQJbnOEjJyMEvTTwcAJuUh/bodjQl06u4putYOxdSyIjSP/sKt+31LmjG8+IO1WqykE4H/Lm 7NKezWVnCHuwb3ptgFmlwbMbGkU2MOZBtwzfKXdYUhFLhaE2uw5jXhXvLYitQay962wP5uPI6eAI hV4L8aaya1u4s7MnrTq0Rz25FuGNO79vTHYWj797tSRC8rM16js4yGKOLFpQvIg0F8IElv57b1st p+C7omqM5Qn15dePbSnqr8Jb65WtmJJbnv6rlqfY/aLuE/zmNAlzLmPgfMDStKIXdg+EoYBZTEo8 wBUaBxihfNbJ069ndQOxMNNqBelEMgpAtmjTbCuXFjqIwWq+XOx6ZV/Wh2FAmaLsSHlNvEjjSQMZ wE4EeHCdo66ZmEs/5JYlCeOkulKVQ6P3m5/XOj2jP17Q2AgmjP+11+sHN7PvrG0OwrQp9QMe3X+r n0G8MjtFfqBWvR9CgLIxzM3MJNxFdgdjS2rYnShP5uxvqwfZvhZVYCIkqdJhpYON0DvSodfiar0w iM79mySZJjzC0CTbiisBzS/BeBhqeo2wFfli/iw3hn1XKvAx0ty6w/scmBF0AYqmRHYj1TjMSw0l Al7AztLglqWjUPI+sukvadMRPxmtKXlS2nVR4an/Z16imsZ69+fFYH68c1CK7zmjozGCA04wggNK AgEBMIGJMHUxCzAJBgNVBAYTAklMMRYwFAYDVQQKEw1TdGFydENvbSBMdGQuMSkwJwYDVQQLEyBT dGFydENvbSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEjMCEGA1UEAxMaU3RhcnRDb20gQ2xhc3Mg MSBDbGllbnQgQ0ECECJrrb9nBol9MHok/UZg/AYwCQYFKw4DAhoFAKCCAZkwGAYJKoZIhvcNAQkD MQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTYwOTE0MTQwMDQ2WjAjBgkqhkiG9w0BCQQx FgQUXdQ4BWpv8hojqz2StlC5LzSVwsgwgZoGCSsGAQQBgjcQBDGBjDCBiTB1MQswCQYDVQQGEwJJ TDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjEpMCcGA1UECxMgU3RhcnRDb20gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkxIzAhBgNVBAMTGlN0YXJ0Q29tIENsYXNzIDEgQ2xpZW50IENBAhAia62/ZwaJ fTB6JP1GYPwGMIGcBgsqhkiG9w0BCRACCzGBjKCBiTB1MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN U3RhcnRDb20gTHRkLjEpMCcGA1UECxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkx IzAhBgNVBAMTGlN0YXJ0Q29tIENsYXNzIDEgQ2xpZW50IENBAhAia62/ZwaJfTB6JP1GYPwGMA0G CSqGSIb3DQEBAQUABIIBADfAi4qTIB4xyXee9HvtV0vu10snUUjhAwN9/tdugWtnbQTYTn9zUqzY kiZ5SN6D21X9gC+Ufa/iQiqaYAwsxNLo+Kz4aOU3nouHe8TJBxlT27w931C+bsKR+Ds9/foAoPTc ywSGs9N2DXCSGvFzzhDNWXxxE4ksRvDBo3+KEdc8vAiVnQi0GP7Mq8AbPM+gTX5EeOFsvm0bLy4E QSyfPkbZZ57xhl8AP+IJy0wg6AT3VOLRcf+bmTvUwghDgGqrySo7kxOXVl8SpyLnPsdwIPysngHR Gcm8M4nPhEQ/XiCDOCMReehCvny3z7tfshOjIs/Lzg4fDYFia4XbZPcx3u0AAAAAAAA= --Apple-Mail=_818ED04B-AF3E-43C7-B18E-C3A9FDE035EF-- From owner-svn-ports-head@freebsd.org Wed Sep 14 14:01:59 2016 Return-Path: Delivered-To: svn-ports-head@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 8A7E2BD9FEF; Wed, 14 Sep 2016 14:01:59 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2084D1DC1; Wed, 14 Sep 2016 14:01:58 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 5821943C21; Wed, 14 Sep 2016 09:01:54 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <26e04c98-fb1c-b7fa-0551-d1d7048a267e@FreeBSD.org> <7c0af911-8103-bfaf-65cd-da6f490c0137@marino.st> Reply-To: marino@freebsd.org From: John Marino Message-ID: <7cc95ce4-7fe7-c05c-b666-09b7d2317b58@marino.st> Date: Wed, 14 Sep 2016 09:01:56 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:01:59 -0000 On 9/14/2016 08:55, Mathieu Arnold wrote: > Le 14/09/2016 à 15:52, John Marino a écrit : >> On 9/14/2016 08:41, Mathieu Arnold wrote: >>> Le 14/09/2016 à 14:27, John Marino a écrit : >>>> >>>> But this is NOT an error. You see it as a violation of the "spirit" >>>> of the policy, but it's not a violation of the policy itself. If you >>>> think there should be a minimum ownership period then work on >>>> adjusting the policy (through consensus hopefully). I met the >>>> requirements and it was all very intentionally on my part, no error at >>>> all, and certainly not without precedent. >>> >>> And you are ranting with legalese talk again. Our policies are for >>> normal people, not lawyers, and thus, require you to extrapolate a bit >>> and use common sense. >>> This is why, for example, the porter's handbook is 350 pages long, not >>> 25000, with 42 annexes. >>> >>> Now, to the subject at hand, new ports must have a maintainer, in this >>> case, you did not follow the policy, it is a new port, and it does not >>> have maintainer. >>> >> >> I followed the "law". I maintained the port long enough to ensure >> that it fulfilled its purpose. >> >> Lawyers and judges exist for a reason, to interpret badly written laws >> and policies. Again, if there is a MINIMUM time to maintain a port, >> please add it to the policy. > > Here, we are maintaining an operating system, it is not a tribunal. And > no, there will not be a hard definition of how long a port is considered > new, like I said, common sense, less than six months but more than a > week, or something. > The fact is that I followed policy, and there is NO time definition at all. If there's not going to be a time definition, then you really have to cause tell me I interpreted this wrong. Again, there have been recent cases on this very list where people pushed unmaintained ports that were asked about once and the answer was a lot weaker than the one I gave and nobody questioned it And there are COUNTLESS examples of maintainership being dropped < 6 months. The bottom line is that I did NOTHING wrong and you don't have any justification for continuing to hound me on this. Fix the policy or live with the obvious loophole. Since you said the former isn't going to happen, we're in the latter case. JOhn --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 14:06:05 2016 Return-Path: Delivered-To: svn-ports-head@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 B81CEBDA31E; Wed, 14 Sep 2016 14:06:05 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 923C91285; Wed, 14 Sep 2016 14:06:05 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id D413E43C25; Wed, 14 Sep 2016 09:06:00 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: David Chisnall , marino@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <9A314BC7-F54B-4C82-AFB7-82953DC47D35@FreeBSD.org> Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: Date: Wed, 14 Sep 2016 09:06:03 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <9A314BC7-F54B-4C82-AFB7-82953DC47D35@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:06:05 -0000 On 9/14/2016 09:00, David Chisnall wrote: > If you need to carefully read the rules so that you can follow them > precisely to the letter, that’s usually a good clue that you’re > trying to circumvent the intent of the rules. The rules in a > community like FreeBSD are intended to be codifications of the intent > of the community, not rigid programs that prescribe permitted > behaviour. I've got 3226 commits to date. I've already explained the context of this particular commit and if you guys have only found one "misstep" in that many commits, then chances are that I'm behaving very, very well. John P.S. I've been using llvm38 on gnustep for months now via local patch, maybe you can update the framework from falling back to llvm34? --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 14:09:13 2016 Return-Path: Delivered-To: svn-ports-head@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 54C0ABDA496; Wed, 14 Sep 2016 14:09:13 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from theravensnest.org (theraven.freebsd.your.org [216.14.102.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cloud.theravensnest.org", Issuer "StartCom Class 1 DV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 325C7142A; Wed, 14 Sep 2016 14:09:12 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from [192.168.1.65] (host31-51-138-47.range31-51.btcentralplus.com [31.51.138.47]) (authenticated bits=0) by theravensnest.org (8.15.2/8.15.2) with ESMTPSA id u8EE99J2022394 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 14 Sep 2016 14:09:10 GMT (envelope-from theraven@FreeBSD.org) X-Authentication-Warning: theravensnest.org: Host host31-51-138-47.range31-51.btcentralplus.com [31.51.138.47] claimed to be [192.168.1.65] Content-Type: multipart/signed; boundary="Apple-Mail=_E259ADDE-DBF2-44F4-BF92-DA1B4D093134"; protocol="application/pkcs7-signature"; micalg=sha1 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile From: David Chisnall In-Reply-To: Date: Wed, 14 Sep 2016 15:09:03 +0100 Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-Id: References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <9A314BC7-F54B-4C82-AFB7-82953DC47D35@FreeBSD.org> To: marino@freebsd.org X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:09:13 -0000 --Apple-Mail=_E259ADDE-DBF2-44F4-BF92-DA1B4D093134 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 On 14 Sep 2016, at 15:06, John Marino wrote: >=20 > I've got 3226 commits to date. I've already explained the context of = this particular commit and if you guys have only found one "misstep" in = that many commits, then chances are that I'm behaving very, very well. If this were the only thing, I doubt anyone would bother. I=E2=80=99m = no longer on core, but that doesn=E2=80=99t mean that I don=E2=80=99t = remember things that happened when I was. > John >=20 > P.S. I've been using llvm38 on gnustep for months now via local patch, = maybe you can update the framework from falling back to llvm34? Is the patch somewhere for review? If it=E2=80=99s tested, I=E2=80=99m = very happy for you to commit it. David --Apple-Mail=_E259ADDE-DBF2-44F4-BF92-DA1B4D093134 Content-Disposition: attachment; filename=smime.p7s Content-Type: application/pkcs7-signature; name=smime.p7s Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIK5jCCBPww ggPkoAMCAQICECJrrb9nBol9MHok/UZg/AYwDQYJKoZIhvcNAQELBQAwdTELMAkGA1UEBhMCSUwx FjAUBgNVBAoTDVN0YXJ0Q29tIEx0ZC4xKTAnBgNVBAsTIFN0YXJ0Q29tIENlcnRpZmljYXRpb24g QXV0aG9yaXR5MSMwIQYDVQQDExpTdGFydENvbSBDbGFzcyAxIENsaWVudCBDQTAeFw0xNjA0MTkw OTI3NDJaFw0xNzA0MTkwOTI3NDJaMEQxHTAbBgNVBAMMFHRoZXJhdmVuQGZyZWVic2Qub3JnMSMw IQYJKoZIhvcNAQkBFhR0aGVyYXZlbkBmcmVlYnNkLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBALsL5pEhrGjrswHVdMHWhgxb8ARKDYRePSqpDLmjJ40bpx+n1zrvIwjC2Vk2IpoD 04rg5Pog2IrhnX+Qk2NSXzBXWj2JAaTc9OtSeAY0BtgJYXONGONQbRKVy97QBdzd1SbMEzDrOgH5 UDI+5sF1PboOTmLyTAPI9273XdfZ0BnstUXs8NXr/7p9E5CWJOsO1iQcINbm4XiwC1PLNMeWUknE Nji/hFKwcE8IFtaUe1ymbw6yA3rBpDu3KewIRD1T66FPTZJeIzvUoBIqWd+GAOfCBG2QYmbc3y/x K2hCtcXThcB1uVFA2q39koLKA8wHyqv4Jhm3wzhAqKDsWK4bGW0CAwEAAaOCAbcwggGzMA4GA1Ud DwEB/wQEAwIEsDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwCQYDVR0TBAIwADAdBgNV HQ4EFgQU5J3Kc8GeW8pEGxBkcMoA7eUOPRwwHwYDVR0jBBgwFoAUJIFsOWG+SQ+PtxtGK8kotSdI bWgwbwYIKwYBBQUHAQEEYzBhMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5zdGFydHNzbC5jb20w OQYIKwYBBQUHMAKGLWh0dHA6Ly9haWEuc3RhcnRzc2wuY29tL2NlcnRzL3NjYS5jbGllbnQxLmNy dDA4BgNVHR8EMTAvMC2gK6AphidodHRwOi8vY3JsLnN0YXJ0c3NsLmNvbS9zY2EtY2xpZW50MS5j cmwwHwYDVR0RBBgwFoEUdGhlcmF2ZW5AZnJlZWJzZC5vcmcwIwYDVR0SBBwwGoYYaHR0cDovL3d3 dy5zdGFydHNzbC5jb20vMEYGA1UdIAQ/MD0wOwYLKwYBBAGBtTcBAgUwLDAqBggrBgEFBQcCARYe aHR0cDovL3d3dy5zdGFydHNzbC5jb20vcG9saWN5MA0GCSqGSIb3DQEBCwUAA4IBAQBSBDH+kZf5 bZkNFcMSPdfnGC7F8utBIxs2bi3JQjsBoQTm1vnXdwgINSfO9At6iQZHoEyj8ZE6PcMFuEU0+bk0 aE8aYcW59WnxfWx943upZoMhX0YVaJcFK01EHFrddRAP44sh7Eu6JtdFuAG+6btDReMcg35Qm65X 7/280aVm7awadJ+IQs8r9qBVk2NFqkvHCETtJjNWXd7M6mcsfXstvykbubPQH/VNW/zrX6yzIcI4 aoz+Sn8RJmHNkk6cImqe1KvsdDLXmqCoeoMwos62pT18RaI//jwTdmnf5EHFMlevnxOr7rzA++71 OSZfdYf6+nvHOod1F721rNuy6lxFMIIF4jCCA8qgAwIBAgIQa6eKfQrXiNZRCvlZ5Oe04TANBgkq hkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UE CxMiU2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20g Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTUxMjE2MDEwMDA1WhcNMzAxMjE2MDEwMDA1WjB1 MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjEpMCcGA1UECxMgU3RhcnRDb20g Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIzAhBgNVBAMTGlN0YXJ0Q29tIENsYXNzIDEgQ2xpZW50 IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvX3a98OifYP2W4L921tfrh4bdcC1 Ga+YJKy7V3nYNewJHnzMlBsK0Hb8Dm4Wo3FZpylcYa1MJGT10QMGWaLER3xCIuRR+8eklf/EqeZW RLojJ7zBRtjMywPOCelrOU+DX12dKp+Ez4J6919rz1UudTO1GvZyCYJ/I7062uHsskM8b7gPxmcC oO1UHwwpgkvpCArJWGFoFzjLdsZbErJcS3HtAhlkbE/BKTMrdYg35Uo12SLBO5tbk8h2imbKTC8i Ms+pskrvI/AVlh6QoTTXk6xboVX6zgMgzxSVVLymQiygYYm0y5aMsvi2raFhC643SOGvErWWPPnS EfbeAD1xswIDAQABo4IBZDCCAWAwDgYDVR0PAQH/BAQDAgEGMB0GA1UdJQQWMBQGCCsGAQUFBwMC BggrBgEFBQcDBDASBgNVHRMBAf8ECDAGAQH/AgEAMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9j cmwuc3RhcnRzc2wuY29tL3Nmc2NhLmNybDBmBggrBgEFBQcBAQRaMFgwJAYIKwYBBQUHMAGGGGh0 dHA6Ly9vY3NwLnN0YXJ0c3NsLmNvbTAwBggrBgEFBQcwAoYkaHR0cDovL2FpYS5zdGFydHNzbC5j b20vY2VydHMvY2EuY3J0MB0GA1UdDgQWBBQkgWw5Yb5JD4+3G0YrySi1J0htaDAfBgNVHSMEGDAW gBROC+8apEBbpRdphzDKNGhD0EGu8jA/BgNVHSAEODA2MDQGBFUdIAAwLDAqBggrBgEFBQcCARYe aHR0cDovL3d3dy5zdGFydHNzbC5jb20vcG9saWN5MA0GCSqGSIb3DQEBCwUAA4ICAQCL4/eH7AGL hK0PAQJbnOEjJyMEvTTwcAJuUh/bodjQl06u4putYOxdSyIjSP/sKt+31LmjG8+IO1WqykE4H/Lm 7NKezWVnCHuwb3ptgFmlwbMbGkU2MOZBtwzfKXdYUhFLhaE2uw5jXhXvLYitQay962wP5uPI6eAI hV4L8aaya1u4s7MnrTq0Rz25FuGNO79vTHYWj797tSRC8rM16js4yGKOLFpQvIg0F8IElv57b1st p+C7omqM5Qn15dePbSnqr8Jb65WtmJJbnv6rlqfY/aLuE/zmNAlzLmPgfMDStKIXdg+EoYBZTEo8 wBUaBxihfNbJ069ndQOxMNNqBelEMgpAtmjTbCuXFjqIwWq+XOx6ZV/Wh2FAmaLsSHlNvEjjSQMZ wE4EeHCdo66ZmEs/5JYlCeOkulKVQ6P3m5/XOj2jP17Q2AgmjP+11+sHN7PvrG0OwrQp9QMe3X+r n0G8MjtFfqBWvR9CgLIxzM3MJNxFdgdjS2rYnShP5uxvqwfZvhZVYCIkqdJhpYON0DvSodfiar0w iM79mySZJjzC0CTbiisBzS/BeBhqeo2wFfli/iw3hn1XKvAx0ty6w/scmBF0AYqmRHYj1TjMSw0l Al7AztLglqWjUPI+sukvadMRPxmtKXlS2nVR4an/Z16imsZ69+fFYH68c1CK7zmjozGCA04wggNK AgEBMIGJMHUxCzAJBgNVBAYTAklMMRYwFAYDVQQKEw1TdGFydENvbSBMdGQuMSkwJwYDVQQLEyBT dGFydENvbSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEjMCEGA1UEAxMaU3RhcnRDb20gQ2xhc3Mg MSBDbGllbnQgQ0ECECJrrb9nBol9MHok/UZg/AYwCQYFKw4DAhoFAKCCAZkwGAYJKoZIhvcNAQkD MQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTYwOTE0MTQwOTA0WjAjBgkqhkiG9w0BCQQx FgQU7sQGZOsND2QTjYGaHe/bu39FTZQwgZoGCSsGAQQBgjcQBDGBjDCBiTB1MQswCQYDVQQGEwJJ TDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjEpMCcGA1UECxMgU3RhcnRDb20gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkxIzAhBgNVBAMTGlN0YXJ0Q29tIENsYXNzIDEgQ2xpZW50IENBAhAia62/ZwaJ fTB6JP1GYPwGMIGcBgsqhkiG9w0BCRACCzGBjKCBiTB1MQswCQYDVQQGEwJJTDEWMBQGA1UEChMN U3RhcnRDb20gTHRkLjEpMCcGA1UECxMgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkx IzAhBgNVBAMTGlN0YXJ0Q29tIENsYXNzIDEgQ2xpZW50IENBAhAia62/ZwaJfTB6JP1GYPwGMA0G CSqGSIb3DQEBAQUABIIBAJLLRgkvRWjqmZSQICZXMCbRGD5UANE2hPoCVdmfB+U3R+JZ6DQoLe3X 8zCSGeENSv0cD/v0NT1mSccgMREhMN2CceG5XYt1htIachs+VgGeE4nO1NYP39LPyfwhzsqPBnT7 Bgj8oAvzupX/hpu8dKZxULPPZi+KCsdjIsPnHiUJFpZms+5LT7LDA999fhyHYiCs4hZEQ7kG51/V 6pQcgV4rC91KkKedveJWNMxOUKW2BVdQu+bJpK9cvwOZicwf3iCWznm1QbBH6poIpFxSeZOHqjD9 cxQmxY67dP0xci/Tv66wotkrUliYxs7TL9V2tyCctCD/JNYWxmzpDjVID3gAAAAAAAA= --Apple-Mail=_E259ADDE-DBF2-44F4-BF92-DA1B4D093134-- From owner-svn-ports-head@freebsd.org Wed Sep 14 14:29:32 2016 Return-Path: Delivered-To: svn-ports-head@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 EC2E4BDAA35; Wed, 14 Sep 2016 14:29:32 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4C821ED3; Wed, 14 Sep 2016 14:29:32 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id A60B943CED; Wed, 14 Sep 2016 09:29:27 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: David Chisnall , marino@freebsd.org References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <9063296a-9793-4cb3-1857-f5baf51cfbee@FreeBSD.org> <51b77b4e-8061-e183-ec68-d434d50bd0b2@marino.st> <9A314BC7-F54B-4C82-AFB7-82953DC47D35@FreeBSD.org> Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: John Marino Reply-To: marino@freebsd.org Message-ID: <930d4ab0-2d54-8419-31d5-832b235aeeec@marino.st> Date: Wed, 14 Sep 2016 09:29:29 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160913-3, 09/13/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:29:33 -0000 On 9/14/2016 09:09, David Chisnall wrote: > On 14 Sep 2016, at 15:06, John Marino > wrote: >> >> I've got 3226 commits to date. I've already explained the context >> of this particular commit and if you guys have only found one >> "misstep" in that many commits, then chances are that I'm behaving >> very, very well. > > If this were the only thing, I doubt anyone would bother. I’m no > longer on core, but that doesn’t mean that I don’t remember things > that happened when I was. Anything you "remember" has nothing to do with dropping port maintainership nor looking for loopholes to "circumvent" policies with bad intentions. That comment suggests that it does and are willing to discuss a private matter of a private list in public? Isn't that comment out of line? >> P.S. I've been using llvm38 on gnustep for months now via local >> patch, maybe you can update the framework from falling back to >> llvm34? > > Is the patch somewhere for review? If it’s tested, I’m very happy > for you to commit it. It seems that the code moved to Uses/objc.mk around line 50. IIRC gnustep is the main user of USES=objc but technically it's not yours, I just remember it that way. There's similar code in Uses/compiler.mk. That's definitely not yours, but part of a related conversion about when devel/llvm34 is going to be moved out of ports. In DPorts we changed this to llvm38 months ago without any issues. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 14:55:13 2016 Return-Path: Delivered-To: svn-ports-head@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 62F69BDA299; Wed, 14 Sep 2016 14:55:13 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from olgeni.olgeni.com (host-156-246-171-31.cloudsigma.net [31.171.246.156]) by mx1.freebsd.org (Postfix) with ESMTP id 275061FB0; Wed, 14 Sep 2016 14:55:12 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from [10.0.2.15] (unknown [5.8.101.242]) by olgeni.olgeni.com (Postfix) with ESMTPSA id F1AD5D7917; Wed, 14 Sep 2016 16:55:04 +0200 (CEST) Date: Wed, 14 Sep 2016 16:55:04 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: olgeni@backoffice.olgeni.com To: Mathieu Arnold cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r421218 - in head/lang: erlang erlang-java erlang-wx In-Reply-To: <805e58aa-6288-30eb-56b4-53f575a7437a@FreeBSD.org> Message-ID: References: <201609011401.u81E11fu093598@repo.freebsd.org> <805e58aa-6288-30eb-56b4-53f575a7437a@FreeBSD.org> User-Agent: Alpine 2.20 (BSF 67 2015-01-07) X-OpenPGP-KeyID: 0xFCDB3E82F778D8D7 X-OpenPGP-Fingerprint: EE37 B427 91C5 7707 EC54 064A FCDB 3E82 F778 D8D7 X-OpenPGP-URL: http://olgeni.olgeni.com/~olgeni/pgp/olgeni@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 14:55:13 -0000 Hi, On Thu, 8 Sep 2016, Mathieu Arnold wrote: > Le 08/09/2016 à 21:37, Jimmy Olgeni a écrit : > > Hi, > > > > On Thu, 8 Sep 2016, Mathieu Arnold wrote: > > > >> Hi, > >> > >> Le 01/09/2016 à 16:01, Jimmy Olgeni a écrit : > >>> Update Erlang ports to version 19.0.5. > >> After this update, it is impossible to build WITH=THREADS on 9, 10 and 11: > >> > >> pthread/ethread.c: In function 'ethr_setname': > >> pthread/ethread.c:487:5: error: implicit declaration of function 'pthread_set_name_np' [-Werror=implicit-function-declaration] > >> pthread_set_name_np(ethr_self(), name); > >> ^ > >> cc1: some warnings being treated as errors > > How did you build it exactly? I saw a patch floating around to fix > > this, but I'm unable to reproduce it myself so far on poudriere and > > live boxes. > > > The build log is available there: > http://pkg.absolight.net/data/11amd64-pkgng-default/20160908T130409Z/logs/errors/erlang-19.0.5,3.log This was definitely GCC, which was not enabled in the default build but had this (and other) compile issues. It is no longer required and I removed the option - you should see the next build working fine. -- jimmy From owner-svn-ports-head@freebsd.org Wed Sep 14 15:23:28 2016 Return-Path: Delivered-To: svn-ports-head@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 77B09BDAF04; Wed, 14 Sep 2016 15:23:28 +0000 (UTC) (envelope-from olgeni@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 3A35B102F; Wed, 14 Sep 2016 15:23:28 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EFNRp8078078; Wed, 14 Sep 2016 15:23:27 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EFNQX6078070; Wed, 14 Sep 2016 15:23:26 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609141523.u8EFNQX6078070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 14 Sep 2016 15:23:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422137 - in head/lang: erlang erlang-java erlang-runtime19 erlang-wx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 15:23:28 -0000 Author: olgeni Date: Wed Sep 14 15:23:26 2016 New Revision: 422137 URL: https://svnweb.freebsd.org/changeset/ports/422137 Log: Replace the short lived Erlang 19.0.6 with 19.0.7. Modified: head/lang/erlang-java/Makefile head/lang/erlang-java/distinfo head/lang/erlang-runtime19/Makefile head/lang/erlang-runtime19/distinfo head/lang/erlang-wx/Makefile head/lang/erlang-wx/distinfo head/lang/erlang/Makefile head/lang/erlang/distinfo Modified: head/lang/erlang-java/Makefile ============================================================================== --- head/lang/erlang-java/Makefile Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang-java/Makefile Wed Sep 14 15:23:26 2016 (r422137) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.6 +PORTVERSION= 19.0.7 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -15,7 +15,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 \ + patch-otp-19.0.7 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang interface for Java Modified: head/lang/erlang-java/distinfo ============================================================================== --- head/lang/erlang-java/distinfo Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang-java/distinfo Wed Sep 14 15:23:26 2016 (r422137) @@ -1,4 +1,4 @@ -TIMESTAMP = 1473846791 +TIMESTAMP = 1473865695 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_html_19.0.tar.gz) = b6f7c4e964673333f6c3eea8530dd988b41339b8912ae293f6f1b429489159ff @@ -15,3 +15,5 @@ SHA256 (erlang/patch-otp-19.0.5) = 7d5d4 SIZE (erlang/patch-otp-19.0.5) = 6437 SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 SIZE (erlang/patch-otp-19.0.6) = 6592 +SHA256 (erlang/patch-otp-19.0.7) = 51cc21e56666922c55aca45df6d480bcbad8aba980b810d0096cd57a80602e8e +SIZE (erlang/patch-otp-19.0.7) = 5592 Modified: head/lang/erlang-runtime19/Makefile ============================================================================== --- head/lang/erlang-runtime19/Makefile Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang-runtime19/Makefile Wed Sep 14 15:23:26 2016 (r422137) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.6 +PORTVERSION= 19.0.7 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -17,7 +17,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 \ + patch-otp-19.0.7 MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -217,7 +218,7 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.4 + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.5 ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0 ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/compiler-7.0/* \ Modified: head/lang/erlang-runtime19/distinfo ============================================================================== --- head/lang/erlang-runtime19/distinfo Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang-runtime19/distinfo Wed Sep 14 15:23:26 2016 (r422137) @@ -1,4 +1,4 @@ -TIMESTAMP = 1473846966 +TIMESTAMP = 1473865734 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_man_19.0.tar.gz) = c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e @@ -17,3 +17,5 @@ SHA256 (erlang/patch-otp-19.0.5) = 7d5d4 SIZE (erlang/patch-otp-19.0.5) = 6437 SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 SIZE (erlang/patch-otp-19.0.6) = 6592 +SHA256 (erlang/patch-otp-19.0.7) = 51cc21e56666922c55aca45df6d480bcbad8aba980b810d0096cd57a80602e8e +SIZE (erlang/patch-otp-19.0.7) = 5592 Modified: head/lang/erlang-wx/Makefile ============================================================================== --- head/lang/erlang-wx/Makefile Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang-wx/Makefile Wed Sep 14 15:23:26 2016 (r422137) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.6 +PORTVERSION= 19.0.7 CATEGORIES= lang parallel MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -15,7 +15,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 \ + patch-otp-19.0.7 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang bindings for wxWindows Modified: head/lang/erlang-wx/distinfo ============================================================================== --- head/lang/erlang-wx/distinfo Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang-wx/distinfo Wed Sep 14 15:23:26 2016 (r422137) @@ -1,4 +1,4 @@ -TIMESTAMP = 1473846787 +TIMESTAMP = 1473865675 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_html_19.0.tar.gz) = b6f7c4e964673333f6c3eea8530dd988b41339b8912ae293f6f1b429489159ff @@ -15,3 +15,5 @@ SHA256 (erlang/patch-otp-19.0.5) = 7d5d4 SIZE (erlang/patch-otp-19.0.5) = 6437 SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 SIZE (erlang/patch-otp-19.0.6) = 6592 +SHA256 (erlang/patch-otp-19.0.7) = 51cc21e56666922c55aca45df6d480bcbad8aba980b810d0096cd57a80602e8e +SIZE (erlang/patch-otp-19.0.7) = 5592 Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang/Makefile Wed Sep 14 15:23:26 2016 (r422137) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.0.6 +PORTVERSION= 19.0.7 PORTEPOCH= 3 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ @@ -21,7 +21,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni PATCHFILES= patch-otp-19.0.1 patch-otp-19.0.2 patch-otp-19.0.3 \ - patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 + patch-otp-19.0.4 patch-otp-19.0.5 patch-otp-19.0.6 \ + patch-otp-19.0.7 MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -239,7 +240,7 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.4 + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0.5 ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.0 ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/compiler-7.0/* \ Modified: head/lang/erlang/distinfo ============================================================================== --- head/lang/erlang/distinfo Wed Sep 14 14:54:41 2016 (r422136) +++ head/lang/erlang/distinfo Wed Sep 14 15:23:26 2016 (r422137) @@ -1,4 +1,4 @@ -TIMESTAMP = 1473846700 +TIMESTAMP = 1473865652 SHA256 (erlang/otp_src_19.0.tar.gz) = 3fdc27a2a826e7f3d9cda43302d27d98704d6b41ce29a8a5df747a161da53bb1 SIZE (erlang/otp_src_19.0.tar.gz) = 68022550 SHA256 (erlang/otp_doc_man_19.0.tar.gz) = c7a3d6d85a5a2b96d844297a3fa1bee448c3dd86237734688466249fd5a1401e @@ -29,3 +29,5 @@ SHA256 (erlang/patch-otp-19.0.5) = 7d5d4 SIZE (erlang/patch-otp-19.0.5) = 6437 SHA256 (erlang/patch-otp-19.0.6) = 88c7d9dbc1883d92dae050ad68677bb0ecedf95ba5a592ceb01a7c6095be7650 SIZE (erlang/patch-otp-19.0.6) = 6592 +SHA256 (erlang/patch-otp-19.0.7) = 51cc21e56666922c55aca45df6d480bcbad8aba980b810d0096cd57a80602e8e +SIZE (erlang/patch-otp-19.0.7) = 5592 From owner-svn-ports-head@freebsd.org Wed Sep 14 15:35:42 2016 Return-Path: Delivered-To: svn-ports-head@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 0EF55BDA249; Wed, 14 Sep 2016 15:35:42 +0000 (UTC) (envelope-from pawel@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 D26B416B5; Wed, 14 Sep 2016 15:35:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EFZfOq081909; Wed, 14 Sep 2016 15:35:41 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EFZeaA081907; Wed, 14 Sep 2016 15:35:40 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609141535.u8EFZeaA081907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 14 Sep 2016 15:35:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422138 - head/security/py-pyotp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 15:35:42 -0000 Author: pawel Date: Wed Sep 14 15:35:40 2016 New Revision: 422138 URL: https://svnweb.freebsd.org/changeset/ports/422138 Log: Update to version 2.2.1 PR: 212294 Submitted by: Vladimir Krstulja (maintainer) Modified: head/security/py-pyotp/Makefile head/security/py-pyotp/distinfo (contents, props changed) Modified: head/security/py-pyotp/Makefile ============================================================================== --- head/security/py-pyotp/Makefile Wed Sep 14 15:23:26 2016 (r422137) +++ head/security/py-pyotp/Makefile Wed Sep 14 15:35:40 2016 (r422138) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pyotp -PORTVERSION= 2.1.1 +PORTVERSION= 2.2.1 DISTVERSIONPREFIX= v CATEGORIES= security PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/security/py-pyotp/distinfo ============================================================================== --- head/security/py-pyotp/distinfo Wed Sep 14 15:23:26 2016 (r422137) +++ head/security/py-pyotp/distinfo Wed Sep 14 15:35:40 2016 (r422138) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464469746 -SHA256 (pyotp-pyotp-v2.1.1_GH0.tar.gz) = 470037f1fa10bd2af30ecf680e543a06d3fa7e2f8fc33758d3d789c0448cb0c0 -SIZE (pyotp-pyotp-v2.1.1_GH0.tar.gz) = 12946 +TIMESTAMP = 1472669133 +SHA256 (pyotp-pyotp-v2.2.1_GH0.tar.gz) = 43044e689f55ea5271b562e8e021f57dc00f0c8e31883cbbbc3a794971398e2a +SIZE (pyotp-pyotp-v2.2.1_GH0.tar.gz) = 15110 From owner-svn-ports-head@freebsd.org Wed Sep 14 15:45:42 2016 Return-Path: Delivered-To: svn-ports-head@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 974ABBDA483; Wed, 14 Sep 2016 15:45:42 +0000 (UTC) (envelope-from tcberner@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 540131B03; Wed, 14 Sep 2016 15:45:42 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EFjfq9085628; Wed, 14 Sep 2016 15:45:41 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EFjfoX085627; Wed, 14 Sep 2016 15:45:41 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609141545.u8EFjfoX085627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Wed, 14 Sep 2016 15:45:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422139 - head/devel/libkolab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 15:45:42 -0000 Author: tcberner Date: Wed Sep 14 15:45:41 2016 New Revision: 422139 URL: https://svnweb.freebsd.org/changeset/ports/422139 Log: Use the correct syntax for PORTSCOUT. Approved by: rakuco (mentor) Modified: head/devel/libkolab/Makefile Modified: head/devel/libkolab/Makefile ============================================================================== --- head/devel/libkolab/Makefile Wed Sep 14 15:35:40 2016 (r422138) +++ head/devel/libkolab/Makefile Wed Sep 14 15:45:41 2016 (r422139) @@ -13,7 +13,7 @@ COMMENT= Advanced Kolab Object Handling # itself to be LGPL3-licensed (and so are all the installed headers). LICENSE= LGPL3 -PORTSCOUT= limit=^0\. +PORTSCOUT= limit:^0\. LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libcurl.so:ftp/curl \ From owner-svn-ports-head@freebsd.org Wed Sep 14 15:59:45 2016 Return-Path: Delivered-To: svn-ports-head@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 8A509BDA85F; Wed, 14 Sep 2016 15:59:45 +0000 (UTC) (envelope-from mat@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 095FB10C1; Wed, 14 Sep 2016 15:59:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EFxisR096966; Wed, 14 Sep 2016 15:59:44 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EFxYX2096865; Wed, 14 Sep 2016 15:59:34 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609141559.u8EFxYX2096865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 14 Sep 2016 15:59:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422140 - in head: archivers/php5-snappy archivers/snappy-java archivers/xar astro/fowsr astro/gmapcatcher audio/aureal-kmod audio/cueplayer audio/last-cmus audio/libofa audio/mehdiapla... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 15:59:45 -0000 Author: mat Date: Wed Sep 14 15:59:34 2016 New Revision: 422140 URL: https://svnweb.freebsd.org/changeset/ports/422140 Log: GOOGLE_CODE has gone away. - If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight Modified: head/archivers/php5-snappy/Makefile (contents, props changed) head/archivers/snappy-java/Makefile (contents, props changed) head/archivers/xar/Makefile (contents, props changed) head/astro/fowsr/Makefile (contents, props changed) head/astro/gmapcatcher/Makefile (contents, props changed) head/audio/aureal-kmod/Makefile (contents, props changed) head/audio/cueplayer/Makefile (contents, props changed) head/audio/last-cmus/Makefile (contents, props changed) head/audio/libofa/Makefile (contents, props changed) head/audio/mehdiaplayer/Makefile (contents, props changed) head/audio/osd-lyrics/Makefile (contents, props changed) head/audio/pidgin-musictracker/Makefile (contents, props changed) head/audio/spek/Makefile (contents, props changed) head/audio/squeezeboxserver-superdatetime/Makefile (contents, props changed) head/audio/wxguitar/Makefile (contents, props changed) head/audio/xpi-musicpm/Makefile (contents, props changed) head/benchmarks/httperf/Makefile (contents, props changed) head/biology/treeviewx/Makefile (contents, props changed) head/chinese/autoconvert/Makefile (contents, props changed) head/chinese/fcitx-googlepinyin/Makefile (contents, props changed) head/chinese/fortune/Makefile (contents, props changed) head/chinese/fqterm/Makefile (contents, props changed) head/chinese/ibus-pinyin/Makefile (contents, props changed) head/chinese/ibus-table-chinese/Makefile (contents, props changed) head/chinese/libgooglepinyin/Makefile (contents, props changed) head/chinese/p5-cconv/Makefile (contents, props changed) head/chinese/php-cconv/Makefile (contents, props changed) head/chinese/py-cconv/Makefile (contents, props changed) head/chinese/pyzy/Makefile (contents, props changed) head/chinese/ydict/Makefile (contents, props changed) head/comms/esmska/Makefile (contents, props changed) head/comms/wy60/Makefile (contents, props changed) head/converters/drg2sbg/Makefile (contents, props changed) head/databases/akonadi-googledata/Makefile (contents, props changed) head/databases/credis/Makefile (contents, props changed) head/databases/jdbm2/Makefile (contents, props changed) head/databases/luadbi/Makefile (contents, props changed) head/databases/memcached/Makefile (contents, props changed) head/databases/memcacheq/Makefile (contents, props changed) head/databases/mysqlbackup/Makefile (contents, props changed) head/databases/openark-kit/Makefile (contents, props changed) head/databases/pg_rman/Makefile (contents, props changed) head/databases/powerarchitect/Makefile (contents, props changed) head/deskutils/epoch/Makefile (contents, props changed) head/deskutils/libgcal/Makefile (contents, props changed) head/deskutils/nagaina/Makefile (contents, props changed) head/deskutils/pinot/Makefile (contents, props changed) head/deskutils/plasma-applet-playwolf/Makefile (contents, props changed) head/deskutils/simplegroupware/Makefile (contents, props changed) head/deskutils/superswitcher/Makefile (contents, props changed) head/deskutils/vboxgtk/Makefile (contents, props changed) head/devel/arduino-glcd/Makefile (contents, props changed) head/devel/bmkdep/Makefile (contents, props changed) head/devel/bncsutil-ghost++/Makefile (contents, props changed) head/devel/bunny/Makefile (contents, props changed) head/devel/c-unit/Makefile (contents, props changed) head/devel/ccons/Makefile (contents, props changed) head/devel/checkheaders/Makefile (contents, props changed) head/devel/cityhash/Makefile (contents, props changed) head/devel/cld/Makefile (contents, props changed) head/devel/dissy/Makefile (contents, props changed) head/devel/distcc/Makefile (contents, props changed) head/devel/freeocl/Makefile (contents, props changed) head/devel/fuel/Makefile (contents, props changed) head/devel/gitinspector/Makefile (contents, props changed) head/devel/google-gdata/Makefile (contents, props changed) head/devel/google-sparsehash/Makefile (contents, props changed) head/devel/google-styleguide/Makefile (contents, props changed) head/devel/guichan/Makefile (contents, props changed) head/devel/guiloader-c++/Makefile (contents, props changed) head/devel/guiloader/Makefile (contents, props changed) head/devel/libdasm/Makefile (contents, props changed) head/devel/libfreefare/Makefile (contents, props changed) head/devel/liblouisxml/Makefile (contents, props changed) head/devel/libmpsse/Makefile (contents, props changed) head/devel/libnxt/Makefile (contents, props changed) head/devel/libsysinfo/Makefile (contents, props changed) head/devel/nglogc/Makefile (contents, props changed) head/devel/nxt-python/Makefile (contents, props changed) head/devel/plan9port/Makefile (contents, props changed) head/devel/privman/Makefile (contents, props changed) head/devel/protobuf25/Makefile (contents, props changed) head/devel/py-argparse/Makefile (contents, props changed) head/devel/py-binplist/Makefile (contents, props changed) head/devel/py-cmdln/Makefile (contents, props changed) head/devel/py-coil/Makefile (contents, props changed) head/devel/py-fsm/Makefile (contents, props changed) head/devel/py-gdata/Makefile (contents, props changed) head/devel/py-gflags/Makefile (contents, props changed) head/devel/py-iniparse/Makefile (contents, props changed) head/devel/py-levenshtein/Makefile (contents, props changed) head/devel/py-px/Makefile (contents, props changed) head/devel/py-pydasm/Makefile (contents, props changed) head/devel/qtscriptgenerator/Makefile (contents, props changed) head/devel/rlog/Makefile (contents, props changed) head/devel/safe-iop/Makefile (contents, props changed) head/devel/spdict/Makefile (contents, props changed) head/devel/stormlib-ghost++/Makefile (contents, props changed) head/devel/streamhtmlparser/Makefile (contents, props changed) head/devel/stringencoders/Makefile (contents, props changed) head/devel/ucpp/Makefile (contents, props changed) head/devel/winpdb/Makefile (contents, props changed) head/devel/yaml-cpp03/Makefile (contents, props changed) head/dns/dnswall/Makefile (contents, props changed) head/dns/hostdb/Makefile (contents, props changed) head/dns/py-adns/Makefile (contents, props changed) head/dns/py-bonjour/Makefile (contents, props changed) head/dns/py-namebench/Makefile (contents, props changed) head/editors/gwrite/Makefile (contents, props changed) head/emulators/gngeo/Makefile (contents, props changed) head/emulators/snes9x-gtk/Makefile (contents, props changed) head/emulators/wxmupen64plus/Makefile (contents, props changed) head/ftp/plasma-applet-ftpmonitor/Makefile (contents, props changed) head/ftp/py-pyftpdlib/Makefile (contents, props changed) head/games/cave9/Makefile (contents, props changed) head/games/dcross/Makefile (contents, props changed) head/games/endgame-singularity-music/Makefile (contents, props changed) head/games/endgame-singularity/Makefile (contents, props changed) head/games/hexglass/Makefile (contents, props changed) head/games/libfov/Makefile (contents, props changed) head/games/lostfeathers/Makefile (contents, props changed) head/games/pingus/Makefile (contents, props changed) head/games/pink-pony/Makefile (contents, props changed) head/games/quadra/Makefile (contents, props changed) head/games/robocalypto/Makefile (contents, props changed) head/games/supertux/Makefile (contents, props changed) head/games/tinymux/Makefile (contents, props changed) head/graphics/delaboratory/Makefile (contents, props changed) head/graphics/grafx2/Makefile (contents, props changed) head/graphics/iulib/Makefile (contents, props changed) head/graphics/lib3ds/Makefile (contents, props changed) head/graphics/ocropus/Makefile (contents, props changed) head/graphics/processing/Makefile (contents, props changed) head/graphics/py-gchartwrapper/Makefile (contents, props changed) head/graphics/py-graph-core/Makefile (contents, props changed) head/graphics/py-graph-dot/Makefile (contents, props changed) head/graphics/py-graphy/Makefile (contents, props changed) head/graphics/py-pyggel/Makefile (contents, props changed) head/graphics/py-pyglet/Makefile (contents, props changed) head/graphics/py-pyproj/Makefile (contents, props changed) head/graphics/qiviewer/Makefile (contents, props changed) head/graphics/sam2p/Makefile (contents, props changed) head/graphics/seam-carving-gui/Makefile (contents, props changed) head/graphics/sk1libs/Makefile (contents, props changed) head/graphics/squish/Makefile (contents, props changed) head/graphics/svgfig/Makefile (contents, props changed) head/graphics/tif22pnm/Makefile (contents, props changed) head/graphics/uniconvertor/Makefile (contents, props changed) head/graphics/uniconvw/Makefile (contents, props changed) head/irc/dircproxy/Makefile (contents, props changed) head/irc/dxirc/Makefile (contents, props changed) head/irc/py-gozerbot/Makefile (contents, props changed) head/irc/tircd/Makefile (contents, props changed) head/japanese/dbskkd-cdb/Makefile (contents, props changed) head/japanese/ibus-anthy/Makefile (contents, props changed) head/japanese/mecab-ipadic/Makefile (contents, props changed) head/japanese/mecab/Makefile (contents, props changed) head/japanese/nhocr/Makefile (contents, props changed) head/japanese/p5-MeCab/Makefile (contents, props changed) head/japanese/py-mecab/Makefile (contents, props changed) head/japanese/ruby-mecab/Makefile (contents, props changed) head/korean/hunspell/Makefile (contents, props changed) head/korean/imhangul/Makefile (contents, props changed) head/korean/libhangul/Makefile (contents, props changed) head/korean/nabi/Makefile (contents, props changed) head/lang/csharp-mode.el/Makefile (contents, props changed) head/lang/mosh/Makefile (contents, props changed) head/lang/ofc/Makefile (contents, props changed) head/lang/picoc/Makefile (contents, props changed) head/lang/tinypy/Makefile (contents, props changed) head/lang/ypsilon/Makefile (contents, props changed) head/mail/gnome-gmail-notifier/Makefile (contents, props changed) head/mail/qmail/Makefile (contents, props changed) head/math/bargraph/Makefile (contents, props changed) head/math/carve/Makefile (contents, props changed) head/math/foma/Makefile (contents, props changed) head/math/libjbigi/Makefile (contents, props changed) head/math/py-gmpy/Makefile (contents, props changed) head/misc/openr2/Makefile (contents, props changed) head/misc/py-progressbar/Makefile (contents, props changed) head/misc/terraform/Makefile (contents, props changed) head/misc/xdelta/Makefile (contents, props changed) head/misc/xsw/Makefile (contents, props changed) head/multimedia/abby/Makefile (contents, props changed) head/multimedia/avbin/Makefile (contents, props changed) head/multimedia/bangarang/Makefile (contents, props changed) head/multimedia/cclive/Makefile (contents, props changed) head/multimedia/flvmeta/Makefile (contents, props changed) head/multimedia/freetuxtv/Makefile (contents, props changed) head/multimedia/gcap/Makefile (contents, props changed) head/multimedia/gmtk/Makefile (contents, props changed) head/multimedia/gnome-mplayer/Makefile (contents, props changed) head/multimedia/grake/Makefile (contents, props changed) head/multimedia/libkate/Makefile (contents, props changed) head/multimedia/mp4v2/Makefile (contents, props changed) head/multimedia/opencinematools/Makefile (contents, props changed) head/multimedia/p5-Umph-Prompt/Makefile (contents, props changed) head/multimedia/py-periscope/Makefile (contents, props changed) head/multimedia/umph/Makefile (contents, props changed) head/multimedia/vstream-client/Makefile (contents, props changed) head/multimedia/winff/Makefile (contents, props changed) head/net-im/jabber-pyicq/Makefile (contents, props changed) head/net-im/linux-instantbird/Makefile (contents, props changed) head/net-im/mbpurple/Makefile (contents, props changed) head/net-im/naim/Makefile (contents, props changed) head/net-im/pidgin-privacy-please/Makefile (contents, props changed) head/net-im/pidgin-skype/Makefile (contents, props changed) head/net-im/pwytter/Makefile (contents, props changed) head/net-im/qwit-devel/Makefile (contents, props changed) head/net-im/qwit/Makefile (contents, props changed) head/net-mgmt/flow-tools-ng/Makefile (contents, props changed) head/net-mgmt/flowd/Makefile (contents, props changed) head/net-mgmt/hastmon/Makefile (contents, props changed) head/net-mgmt/p5-SNMP_Session/Makefile (contents, props changed) head/net-mgmt/py-flowtools/Makefile (contents, props changed) head/net-mgmt/py-pyang/Makefile (contents, props changed) head/net-p2p/eiskaltdcpp-lib/Makefile (contents, props changed) head/net-p2p/rtgui/Makefile (contents, props changed) head/net-p2p/transmission-remote-gui/Makefile (contents, props changed) head/net-p2p/unworkable/Makefile (contents, props changed) head/net/clamz/Makefile (contents, props changed) head/net/googlecl/Makefile (contents, props changed) head/net/kippo/Makefile (contents, props changed) head/net/libdnet/Makefile (contents, props changed) head/net/opendpi/Makefile (contents, props changed) head/net/openpgm/Makefile (contents, props changed) head/net/py-amqplib/Makefile (contents, props changed) head/net/py-dpkt/Makefile (contents, props changed) head/net/py-pybeanstalk/Makefile (contents, props changed) head/net/py-pypcap/Makefile (contents, props changed) head/net/py-pysendfile/Makefile (contents, props changed) head/net/py-smbpasswd/Makefile (contents, props changed) head/net/samplicator/Makefile (contents, props changed) head/net/splatd/Makefile (contents, props changed) head/net/sqtop/Makefile (contents, props changed) head/net/tucan/Makefile (contents, props changed) head/polish/kadu/Makefile (contents, props changed) head/ports-mgmt/porttree/Makefile (contents, props changed) head/print/foo2zjs/Makefile (contents, props changed) head/science/py-pydicom/Makefile (contents, props changed) head/security/cmd5checkpw/Makefile (contents, props changed) head/security/fuzzdb/Makefile (contents, props changed) head/security/munge/Makefile (contents, props changed) head/security/nmapsi4/Makefile (contents, props changed) head/security/openvpn-auth-ldap/Makefile (contents, props changed) head/security/orthrus/Makefile (contents, props changed) head/security/pkcs11-dump/Makefile (contents, props changed) head/security/pssh/Makefile (contents, props changed) head/security/pwauth/Makefile (contents, props changed) head/security/py-bcrypt/Makefile (contents, props changed) head/security/py-yara-editor/Makefile (contents, props changed) head/security/radamsa/Makefile (contents, props changed) head/security/ratproxy/Makefile (contents, props changed) head/security/skipfish/Makefile (contents, props changed) head/security/truecrack/Makefile (contents, props changed) head/sysutils/bsdcrashtar/Makefile (contents, props changed) head/sysutils/devstat/Makefile (contents, props changed) head/sysutils/diskscrub/Makefile (contents, props changed) head/sysutils/farbot/Makefile (contents, props changed) head/sysutils/flyback/Makefile (contents, props changed) head/sysutils/fusefs-afuse/Makefile (contents, props changed) head/sysutils/fusefs-chironfs/Makefile (contents, props changed) head/sysutils/fusefs-lkl/Makefile (contents, props changed) head/sysutils/fusefs-rar2fs/Makefile (contents, props changed) head/sysutils/fusefs-zip/Makefile (contents, props changed) head/sysutils/gather/Makefile (contents, props changed) head/sysutils/grok/Makefile (contents, props changed) head/sysutils/hatop/Makefile (contents, props changed) head/sysutils/i7z/Makefile (contents, props changed) head/sysutils/ldapenter/Makefile (contents, props changed) head/sysutils/lfm/Makefile (contents, props changed) head/sysutils/logstalgia/Makefile (contents, props changed) head/sysutils/msktutil/Makefile (contents, props changed) head/sysutils/pdsh/Makefile (contents, props changed) head/sysutils/plasma-applet-apcups/Makefile (contents, props changed) head/sysutils/pp/Makefile (contents, props changed) head/sysutils/py-danzfs/Makefile (contents, props changed) head/sysutils/py-drmaa/Makefile (contents, props changed) head/sysutils/rsyncbackup/Makefile (contents, props changed) head/sysutils/scanmem/Makefile (contents, props changed) head/sysutils/sievelog/Makefile (contents, props changed) head/sysutils/slack/Makefile (contents, props changed) head/sysutils/sshsudo/Makefile (contents, props changed) head/sysutils/watchmen/Makefile (contents, props changed) head/textproc/chm2pdf/Makefile (contents, props changed) head/textproc/dtdinst/Makefile (contents, props changed) head/textproc/extract_url/Makefile (contents, props changed) head/textproc/fex/Makefile (contents, props changed) head/textproc/ibus-m17n/Makefile (contents, props changed) head/textproc/ibus-table/Makefile (contents, props changed) head/textproc/iksemel/Makefile (contents, props changed) head/textproc/jing/Makefile (contents, props changed) head/textproc/libroxml/Makefile (contents, props changed) head/textproc/mysqlviz/Makefile (contents, props changed) head/textproc/py-xmltv/Makefile (contents, props changed) head/textproc/stardict-rptts/Makefile (contents, props changed) head/textproc/stardict3/Makefile (contents, props changed) head/textproc/trang/Makefile (contents, props changed) head/textproc/txt2tags/Makefile (contents, props changed) head/textproc/uchardet/Makefile (contents, props changed) head/textproc/uim-el/Makefile (contents, props changed) head/textproc/uim/Makefile (contents, props changed) head/www/arora/Makefile (contents, props changed) head/www/caudium14/Makefile (contents, props changed) head/www/closure-compiler/Makefile (contents, props changed) head/www/closure-linter/Makefile (contents, props changed) head/www/feedonfeeds/Makefile (contents, props changed) head/www/gaeo/Makefile (contents, props changed) head/www/gecko-mediaplayer/Makefile (contents, props changed) head/www/google-sitemapgen/Makefile (contents, props changed) head/www/htmlcompressor/Makefile (contents, props changed) head/www/httpsqs/Makefile (contents, props changed) head/www/jspacker/Makefile (contents, props changed) head/www/mod_authn_otp/Makefile (contents, props changed) head/www/mod_authnz_external22/Makefile (contents, props changed) head/www/mod_authnz_external24/Makefile (contents, props changed) head/www/mod_authz_unixgroup22/Makefile (contents, props changed) head/www/mod_authz_unixgroup24/Makefile (contents, props changed) head/www/mod_jail/Makefile (contents, props changed) head/www/mod_log_firstbyte/Makefile (contents, props changed) head/www/mod_memcache/Makefile (contents, props changed) head/www/mod_myvhost/Makefile (contents, props changed) head/www/nginx-devel/Makefile (contents, props changed) head/www/nginx/Makefile (contents, props changed) head/www/php-plurk-api/Makefile (contents, props changed) head/www/py-apachelog/Makefile (contents, props changed) head/www/py-django-app-plugins/Makefile (contents, props changed) head/www/py-formalchemy/Makefile (contents, props changed) head/www/py-jswebkit/Makefile (contents, props changed) head/www/py-postmarkup/Makefile (contents, props changed) head/www/py-pywebdav/Makefile (contents, props changed) head/www/py-webkitgtk/Makefile (contents, props changed) head/www/py-wikitools/Makefile (contents, props changed) head/www/pylot/Makefile (contents, props changed) head/www/squidstats/Makefile (contents, props changed) head/www/sventon/Makefile (contents, props changed) head/www/tengine/Makefile (contents, props changed) head/www/ttf2eot/Makefile (contents, props changed) head/www/twms/Makefile (contents, props changed) head/www/xpi-pencil/Makefile (contents, props changed) head/www/xpi-pentadactyl/Makefile (contents, props changed) head/x11-fonts/font-manager/Makefile (contents, props changed) head/x11-themes/gnome-icons-faenza/Makefile (contents, props changed) head/x11-themes/gtk-qt4-engine/Makefile (contents, props changed) head/x11-toolkits/tktray/Makefile (contents, props changed) head/x11-wm/euclid-wm/Makefile (contents, props changed) head/x11-wm/obkey/Makefile (contents, props changed) head/x11-wm/wmii-devel/Makefile (contents, props changed) head/x11/bmpanel2/Makefile (contents, props changed) head/x11/hotwire-shell/Makefile (contents, props changed) head/x11/keynav/Makefile (contents, props changed) head/x11/metalock/Makefile (contents, props changed) head/x11/wbar/Makefile (contents, props changed) Modified: head/archivers/php5-snappy/Makefile ============================================================================== --- head/archivers/php5-snappy/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/archivers/php5-snappy/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= PHP extension for the snappy co LICENSE= BSD2CLAUSE +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libsnappy.so:archivers/snappy USES= php:ext Modified: head/archivers/snappy-java/Makefile ============================================================================== --- head/archivers/snappy-java/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/archivers/snappy-java/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -23,6 +23,8 @@ COMMENT= Fast compressor/decompressor li LICENSE= APACHE20 +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= ${LOCALBASE}/share/java/maven3/bin/mvn:devel/maven3 USE_GITHUB= yes Modified: head/archivers/xar/Makefile ============================================================================== --- head/archivers/xar/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/archivers/xar/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -5,7 +5,7 @@ PORTNAME= xar PORTVERSION= 1.5.2 PORTREVISION= 2 CATEGORIES= archivers -MASTER_SITES= GOOGLE_CODE GENTOO +MASTER_SITES= GENTOO MAINTAINER= ports@FreeBSD.org COMMENT= OpenDarwin XML eXtensible ARchiver Modified: head/astro/fowsr/Makefile ============================================================================== --- head/astro/fowsr/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/astro/fowsr/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Fine Offset Weather Station Rea LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + FILEVER= 1.0 FILEDATE= 20100718 WRKSRC= ${WRKDIR}/${PORTNAME}-${FILEVER} Modified: head/astro/gmapcatcher/Makefile ============================================================================== --- head/astro/gmapcatcher/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/astro/gmapcatcher/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ DISTNAME= mapcatcher_${PORTVERSION} MAINTAINER= kevlo@FreeBSD.org COMMENT= Offline map viewer +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 Modified: head/audio/aureal-kmod/Makefile ============================================================================== --- head/audio/aureal-kmod/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/aureal-kmod/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ DISTNAME= au88x0-${PORTVERSION}_4 MAINTAINER= c.kworr@gmail.com COMMENT= Driver for Aureal Vortex based soundcards +BROKEN= Unfetchable (google code has gone away) + ONLY_FOR_ARCHS= i386 STRAYFILES= au88x0.h au88x0.c asp10.o asp20.o asp30.o Modified: head/audio/cueplayer/Makefile ============================================================================== --- head/audio/cueplayer/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/cueplayer/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= vg@FreeBSD.org COMMENT= CUE player +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libnotify.so:devel/libnotify USES= pkgconfig qmake Modified: head/audio/last-cmus/Makefile ============================================================================== --- head/audio/last-cmus/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/last-cmus/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ EXTRACT_SUFX= # none MAINTAINER= ports@FreeBSD.org COMMENT= Cmus plugin for submitting songs into last.fm +BROKEN= Unfetchable (google code has gone away) + USES= python SUB_FILES= pkg-message NO_BUILD= yes Modified: head/audio/libofa/Makefile ============================================================================== --- head/audio/libofa/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/libofa/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= jhale@FreeBSD.org COMMENT= The Open Fingerprint Architecture Library +BROKEN= Unfetchable (google code has gone away) + LICENSE= APL1 GPLv2 LICENSE_COMB= dual LICENSE_GROUPS_APL1= OSI Modified: head/audio/mehdiaplayer/Makefile ============================================================================== --- head/audio/mehdiaplayer/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/mehdiaplayer/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= vg@FreeBSD.org COMMENT= Simple media player using Qt/Phonon +BROKEN= Unfetchable (google code has gone away) + USES= tar:bzip2 qmake USE_QT4= gui xml uic_build moc_build \ rcc_build phonon Modified: head/audio/osd-lyrics/Makefile ============================================================================== --- head/audio/osd-lyrics/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/osd-lyrics/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= On-screen lyrics display progra LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libnotify.so:devel/libnotify \ libdbus-glib-1.so:devel/dbus-glib \ libcurl.so:ftp/curl Modified: head/audio/pidgin-musictracker/Makefile ============================================================================== --- head/audio/pidgin-musictracker/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/pidgin-musictracker/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Plugin for Pidgin to displays t LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= ${LOCALBASE}/include/pidgin/pidgin.h:net-im/pidgin RUN_DEPENDS= pidgin:net-im/pidgin LIB_DEPENDS= libpcre.so:devel/pcre Modified: head/audio/spek/Makefile ============================================================================== --- head/audio/spek/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/spek/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Acoustic spectrum analyser LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg USES= tar:xz gmake pkgconfig desktop-file-utils compiler:c++11-lib desktop-file-utils Modified: head/audio/squeezeboxserver-superdatetime/Makefile ============================================================================== --- head/audio/squeezeboxserver-superdatetime/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/squeezeboxserver-superdatetime/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ DIST_SUBDIR= squeezeboxserver MAINTAINER= tdb@FreeBSD.org COMMENT= Squeezebox Server plugin to display weather conditions and forecasts +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= softsqueeze:audio/squeezeboxserver PROJECTHOST= grebrown-projects Modified: head/audio/wxguitar/Makefile ============================================================================== --- head/audio/wxguitar/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/wxguitar/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ MASTER_SITES= GOOGLE_CODE \ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Simple guitar tuning assistant +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= wavplay:audio/wavplay USES= compiler:c++11-lib Modified: head/audio/xpi-musicpm/Makefile ============================================================================== --- head/audio/xpi-musicpm/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/audio/xpi-musicpm/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ DISTNAME= mpm_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Music Player Minion +BROKEN= Unfetchable (google code has gone away) + XPI_ID= Music_Player_Minion@code.google.com XPI_FILES= chrome/minion.jar chrome.manifest install.js install.rdf XPI_DIRS= chrome Modified: head/benchmarks/httperf/Makefile ============================================================================== --- head/benchmarks/httperf/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/benchmarks/httperf/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -4,7 +4,6 @@ PORTNAME= httperf PORTVERSION= 0.9.0.1 CATEGORIES= benchmarks www -#MASTER_SITES= GOOGLE_CODE MAINTAINER= jlaffaye@FreeBSD.org COMMENT= Tool for measuring webserver performance Modified: head/biology/treeviewx/Makefile ============================================================================== --- head/biology/treeviewx/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/biology/treeviewx/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Phylogenetic tree viewer LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= Unfetchable (google code has gone away) + USE_WX= 2.8 WX_COMPS= wx contrib USES= gmake Modified: head/chinese/autoconvert/Makefile ============================================================================== --- head/chinese/autoconvert/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/autoconvert/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${ MAINTAINER= ports@FreeBSD.org COMMENT= Intelligent Chinese encoding converter +BROKEN= Unfetchable (google code has gone away) + LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual Modified: head/chinese/fcitx-googlepinyin/Makefile ============================================================================== --- head/chinese/fcitx-googlepinyin/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/fcitx-googlepinyin/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Libgooglepinyin support for Fci LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libfcitx-config.so:chinese/fcitx \ libgooglepinyin.so:chinese/libgooglepinyin Modified: head/chinese/fortune/Makefile ============================================================================== --- head/chinese/fortune/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/fortune/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,7 +11,7 @@ DISTNAME= fortune-mod-zh-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Classic fortune file in Chinese -BROKEN= unfetchable (Google Code site) +BROKEN= Unfetchable (google code has gone away) RUN_DEPENDS= autob5:chinese/autoconvert BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile Modified: head/chinese/fqterm/Makefile ============================================================================== --- head/chinese/fqterm/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/fqterm/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ MASTER_SITES= GOOGLE_CODE/${PORTNAME} MAINTAINER= darcsis@gmail.com COMMENT= BBS client for BSD/Linux +BROKEN= Unfetchable (google code has gone away) + USES= cmake:outsource dos2unix zip USE_XORG= x11 ice xext xt xaw xpm xi xproto xextproto USE_QT4= gui network script qt3support imageformats \ Modified: head/chinese/ibus-pinyin/Makefile ============================================================================== --- head/chinese/ibus-pinyin/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/ibus-pinyin/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= PinYin engine for IBus LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg \ ${LOCALBASE}/share/gir-1.0/IBus-1.0.gir:textproc/ibus LIB_DEPENDS= libpyzy-1.0.so:chinese/pyzy \ Modified: head/chinese/ibus-table-chinese/Makefile ============================================================================== --- head/chinese/ibus-table-chinese/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/ibus-table-chinese/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-Sou MAINTAINER= dennylin93@hs.ntnu.edu.tw COMMENT= Chinese input tables for IBus +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= ${LOCALBASE}/share/cmake/Modules/ManageEnvironment.cmake:devel/cmake-fedora \ ibus-daemon:textproc/ibus \ ${LOCALBASE}/libexec/ibus-engine-table:textproc/ibus-table Modified: head/chinese/libgooglepinyin/Makefile ============================================================================== --- head/chinese/libgooglepinyin/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/libgooglepinyin/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -9,6 +9,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= lichray@gmail.com COMMENT= Fork of Google Pinyin IME on Android +BROKEN= Unfetchable (google code has gone away) + LICENSE= APACHE20 USE_LDCONFIG= yes Modified: head/chinese/p5-cconv/Makefile ============================================================================== --- head/chinese/p5-cconv/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/p5-cconv/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Perl wrapper for chinese/cconv LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libcconv.so:chinese/cconv USE_PERL5= configure Modified: head/chinese/php-cconv/Makefile ============================================================================== --- head/chinese/php-cconv/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/php-cconv/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= PHP wrapper for chinese/cconv LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libcconv.so:chinese/cconv CONFIGURE_ARGS= --with-cconv-dir=${LOCALBASE} Modified: head/chinese/py-cconv/Makefile ============================================================================== --- head/chinese/py-cconv/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/py-cconv/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Python wrapper for chinese/ccon LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libcconv.so:chinese/cconv USE_PYTHON= autoplist concurrent distutils Modified: head/chinese/pyzy/Makefile ============================================================================== --- head/chinese/pyzy/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/pyzy/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= The Chinese PinYin and Bopomofo LICENSE= LGPL21 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libsqlite3.so:databases/sqlite3 USES= compiler:c++11-lib gmake libtool pkgconfig python:build shebangfix Modified: head/chinese/ydict/Makefile ============================================================================== --- head/chinese/ydict/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/chinese/ydict/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ COMMENT= Command line tool of Yahoo! Dic LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + USES= python:2,run shebangfix NO_BUILD= yes Modified: head/comms/esmska/Makefile ============================================================================== --- head/comms/esmska/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/comms/esmska/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -9,6 +9,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= gamato@users.sf.net COMMENT= Program for sending SMS over the Internet +BROKEN= Unfetchable (google code has gone away) + USE_JAVA= yes JAVA_VERSION= 1.6+ Modified: head/comms/wy60/Makefile ============================================================================== --- head/comms/wy60/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/comms/wy60/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -8,6 +8,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= naddy@FreeBSD.org COMMENT= Curses-based emulator for the Wyse 60 terminal +BROKEN= Unfetchable (google code has gone away) + USES= ncurses GNU_CONFIGURE= yes MAKE_ARGS= etc_DATA=wy60.rc.sample Modified: head/converters/drg2sbg/Makefile ============================================================================== --- head/converters/drg2sbg/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/converters/drg2sbg/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ COMMENT= Convert propiatary .drg file fo LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + GNU_CONFIGURE= yes PLIST_FILES= bin/drg2sbg bin/drgbuilder man/man1/drg2sbg.1.gz \ Modified: head/databases/akonadi-googledata/Makefile ============================================================================== --- head/databases/akonadi-googledata/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/akonadi-googledata/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= http://libgcal.googlecode. MAINTAINER= ports@FreeBSD.org COMMENT= Akonadi Resources for Google Contacts and Calendar +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libgcal.so:deskutils/libgcal USES= cmake gettext kde:4 tar:bzip2 Modified: head/databases/credis/Makefile ============================================================================== --- head/databases/credis/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/credis/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ COMMENT= Library for communicating with LICENSE= BSD3CLAUSE +BROKEN= Unfetchable (google code has gone away) + USES= gmake USE_LDCONFIG= yes Modified: head/databases/jdbm2/Makefile ============================================================================== --- head/databases/jdbm2/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/jdbm2/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ COMMENT= Fast, simple, and transactional LICENSE= APACHE20 +BROKEN= Unfetchable (google code has gone away) + OPTIONS_DEFINE= DOCS EXAMPLES USES= zip Modified: head/databases/luadbi/Makefile ============================================================================== --- head/databases/luadbi/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/luadbi/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= LuaDBI driver LICENSE= MIT +BROKEN= Unfetchable (google code has gone away) + NO_WRKSUBDIR= yes USES= gmake lua:51 shebangfix Modified: head/databases/memcached/Makefile ============================================================================== --- head/databases/memcached/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/memcached/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -5,7 +5,6 @@ PORTNAME= memcached PORTVERSION= 1.4.25 CATEGORIES= databases MASTER_SITES= http://www.memcached.org/files/ \ - GOOGLE_CODE \ GENTOO MAINTAINER= swills@FreeBSD.org Modified: head/databases/memcacheq/Makefile ============================================================================== --- head/databases/memcacheq/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/memcacheq/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -5,8 +5,7 @@ PORTNAME= memcacheq PORTVERSION= 0.2.0 PORTREVISION= 4 CATEGORIES= databases -MASTER_SITES= GOOGLE_CODE \ - GENTOO +MASTER_SITES= GENTOO MAINTAINER= m.tsatsenko@gmail.com COMMENT= Simple queue service over Memcache Modified: head/databases/mysqlbackup/Makefile ============================================================================== --- head/databases/mysqlbackup/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/mysqlbackup/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Creates MySQL backups on a peri LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN= Unfetchable (google code has gone away) + USE_MYSQL= yes NO_BUILD= yes Modified: head/databases/openark-kit/Makefile ============================================================================== --- head/databases/openark-kit/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/openark-kit/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ COMMENT= Common utilities for MySQL LICENSE= BSD3CLAUSE +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:databases/py-MySQLdb PROJECTHOST= openarkkit Modified: head/databases/pg_rman/Makefile ============================================================================== --- head/databases/pg_rman/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/pg_rman/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -9,6 +9,8 @@ MASTER_SITES= http://pg-rman.googlecode. MAINTAINER= kuriyama@FreeBSD.org COMMENT= Online backup and restore tool for PostgreSQL +BROKEN= Unfetchable (google code has gone away) + USES= gmake pgsql:9.2- WANT_PGSQL= client server MAKE_ARGS= USE_PGXS=1 Modified: head/databases/powerarchitect/Makefile ============================================================================== --- head/databases/powerarchitect/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/databases/powerarchitect/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Data modeling and profiling too LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + OPTIONS_DEFINE= ORACLE_JDBC MYSQL_JDBC PGSQL_JDBC ORACLE_JDBC_RUN_DEPENDS= ${JAVALIBDIR}/ojdbc-10.2.0.5.jar:databases/jdbc-oracle10g Modified: head/deskutils/epoch/Makefile ============================================================================== --- head/deskutils/epoch/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/epoch/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Small and handy timeline applic LINCENSE= GPLv3 PROJECTHOST= gepoch +BROKEN= Unfetchable (google code has gone away) + USES= qmake zip USE_QT4= gui moc_build rcc_build Modified: head/deskutils/libgcal/Makefile ============================================================================== --- head/deskutils/libgcal/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/libgcal/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Library allowing communication LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libcurl.so:ftp/curl \ libxml2.so:textproc/libxml2 Modified: head/deskutils/nagaina/Makefile ============================================================================== --- head/deskutils/nagaina/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/nagaina/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Notes-taking application based LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libpthread-stubs.so:devel/libpthread-stubs \ libpcre.so:devel/pcre \ libpng.so:graphics/png \ Modified: head/deskutils/pinot/Makefile ============================================================================== --- head/deskutils/pinot/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/pinot/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Personal search and metasearch LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= desktop-file-install:devel/desktop-file-utils \ update-mime-database:misc/shared-mime-info LIB_DEPENDS= libxapian.so:databases/xapian-core \ Modified: head/deskutils/plasma-applet-playwolf/Makefile ============================================================================== --- head/deskutils/plasma-applet-playwolf/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/plasma-applet-playwolf/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Amarok 2.x plasma applet for KD LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= Unfetchable (google code has gone away) + USES= cmake kde:4 tar:bzip2 USE_KDE= automoc4 kdelibs USE_QT4= gui dbus network opengl phonon svg webkit xml xmlpatterns \ Modified: head/deskutils/simplegroupware/Makefile ============================================================================== --- head/deskutils/simplegroupware/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/simplegroupware/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -4,8 +4,7 @@ PORTNAME= simplegroupware PORTVERSION= 0.745 CATEGORIES= deskutils -MASTER_SITES= SF/simplgroup/${PORTNAME}/${PORTVERSION}/ \ - GOOGLE_CODE +MASTER_SITES= SF/simplgroup/${PORTNAME}/${PORTVERSION}/ DISTNAME= SimpleGroupware_${PORTVERSION} MAINTAINER= ports@FreeBSD.org Modified: head/deskutils/superswitcher/Makefile ============================================================================== --- head/deskutils/superswitcher/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/superswitcher/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Alt-Tab replacement LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib USES= gmake pkgconfig Modified: head/deskutils/vboxgtk/Makefile ============================================================================== --- head/deskutils/vboxgtk/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/deskutils/vboxgtk/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org COMMENT= GTK frontend for VirtualBox +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xpcom/vboxxpcom.py:emulators/virtualbox-ose USES= python Modified: head/devel/arduino-glcd/Makefile ============================================================================== --- head/devel/arduino-glcd/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/arduino-glcd/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= GLCD Graphical LCD Library LICENSE= LGPL21 +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= arduino:devel/arduino WRKSRC= ${WRKDIR}/glcd Modified: head/devel/bmkdep/Makefile ============================================================================== --- head/devel/bmkdep/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/bmkdep/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -9,6 +9,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= trociny@FreeBSD.org COMMENT= Construct Makefile dependency list +BROKEN= Unfetchable (google code has gone away) + USES= uidfix MAKE_ENV= PKGDIR="${PKGDIR}" NO_OBJ=YES Modified: head/devel/bncsutil-ghost++/Makefile ============================================================================== --- head/devel/bncsutil-ghost++/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/bncsutil-ghost++/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Utility library for Battle.net LICENSE= APACHE20 +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libgmp.so:math/gmp PROJECTHOST= ghostplusplus Modified: head/devel/bunny/Makefile ============================================================================== --- head/devel/bunny/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/bunny/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Closed loop, high-performance, LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= Unfetchable (google code has gone away) + USES= ssl tar:tgz LDFLAGS+= -L${OPENSSLLIB} CFLAGS+= -I${OPENSSLINC} Modified: head/devel/c-unit/Makefile ============================================================================== --- head/devel/c-unit/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/c-unit/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Unit testing framework for C LICENSE= LGPL20 +BROKEN= Unfetchable (google code has gone away) + CONFLICTS= cunit-[0-9]* GNU_CONFIGURE= yes Modified: head/devel/ccons/Makefile ============================================================================== --- head/devel/ccons/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/ccons/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Interactive Console for the C P LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= llvm-config33:devel/llvm33 \ clang++33:lang/clang33 RUN_DEPENDS= clang++33:lang/clang33 Modified: head/devel/checkheaders/Makefile ============================================================================== --- head/devel/checkheaders/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/checkheaders/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -9,6 +9,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org COMMENT= Checks headers in C/C++ programs +BROKEN= Unfetchable (google code has gone away) + USES= gmake zip MAKE_ARGS= CXX="${CXX}" Modified: head/devel/cityhash/Makefile ============================================================================== --- head/devel/cityhash/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/cityhash/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Family of hash functions LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= Unfetchable (google code has gone away) + USES= cpe libtool CPE_VENDOR= google GNU_CONFIGURE= yes Modified: head/devel/cld/Makefile ============================================================================== --- head/devel/cld/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/cld/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ DISTNAME= compact-language-detector-${PO MAINTAINER= demon@FreeBSD.org COMMENT= Chromium compact language detector library +BROKEN= Unfetchable (google code has gone away) + USES= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/devel/dissy/Makefile ============================================================================== --- head/devel/dissy/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/dissy/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Graphical frontend to the objdu LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gtk2>0:x11-toolkits/py-gtk2 \ ${PYTHON_PKGNAMEPREFIX}webkitgtk>0:www/py-webkitgtk LIB_DEPENDS= librsvg-2.so:graphics/librsvg2 Modified: head/devel/distcc/Makefile ============================================================================== --- head/devel/distcc/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/distcc/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Distribute compilation of C(++) LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libpopt.so:devel/popt GNU_CONFIGURE= yes Modified: head/devel/freeocl/Makefile ============================================================================== --- head/devel/freeocl/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/freeocl/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Free Open Computing Language (O LICENSE= LGPL3 +BROKEN= Unfetchable (google code has gone away) + BROKEN_powerpc64= Does not build BUILD_DEPENDS= ${LOCALBASE}/lib/libatomic_ops.a:devel/libatomic_ops \ Modified: head/devel/fuel/Makefile ============================================================================== --- head/devel/fuel/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/fuel/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ COMMENT= GUI front-end to fossil SCM too LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${LOCALBASE}/bin/fossil:devel/fossil USES= qmake Modified: head/devel/gitinspector/Makefile ============================================================================== --- head/devel/gitinspector/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/gitinspector/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ COMMENT= Statistical analysis tool for g LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= zip python Modified: head/devel/google-gdata/Makefile ============================================================================== --- head/devel/google-gdata/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/google-gdata/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= DOT NET library for the Google LICENSE= APACHE20 +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/Newtonsoft.Json.pc:devel/newtonsoft-json USES= dos2unix gmake mono Modified: head/devel/google-sparsehash/Makefile ============================================================================== --- head/devel/google-sparsehash/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/google-sparsehash/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ DISTNAME= sparsehash-${PORTVERSION} MAINTAINER= vd@FreeBSD.org COMMENT= Extremely memory-efficient hash_map implementation +BROKEN= Unfetchable (google code has gone away) + GNU_CONFIGURE= yes USES= compiler:c++11-lang Modified: head/devel/google-styleguide/Makefile ============================================================================== --- head/devel/google-styleguide/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/google-styleguide/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= leeym@FreeBSD.org COMMENT= Tool to assist with Google style guide compliance +BROKEN= Unfetchable (google code has gone away) + USES= python NO_BUILD= yes NO_WRKSUBDIR= yes Modified: head/devel/guichan/Makefile ============================================================================== --- head/devel/guichan/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/guichan/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Small, efficient C++ GUI librar LICENSE= BSD3CLAUSE +BROKEN= Unfetchable (google code has gone away) + GNU_CONFIGURE= yes USE_LDCONFIG= yes USES= gmake pathfix libtool Modified: head/devel/guiloader-c++/Makefile ============================================================================== --- head/devel/guiloader-c++/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/guiloader-c++/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org COMMENT= C++ binding to the GuiLoader library +BROKEN= Unfetchable (google code has gone away) + BUILD_DEPENDS= ${LOCALBASE}/include/boost/format.hpp:devel/boost-libs LIB_DEPENDS= libguiloader.so:devel/guiloader \ libgtkmm-2.4.so:x11-toolkits/gtkmm24 Modified: head/devel/guiloader/Makefile ============================================================================== --- head/devel/guiloader/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/guiloader/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org COMMENT= High-performance and compact GuiXml loader library +BROKEN= Unfetchable (google code has gone away) + PROJECTHOST= nothing-personal USES= gettext gmake libtool pathfix pkgconfig tar:bzip2 USE_GNOME= gtk20 Modified: head/devel/libdasm/Makefile ============================================================================== --- head/devel/libdasm/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/libdasm/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Simple x86 disassembly library LICENSE= BSD2CLAUSE +BROKEN= Unfetchable (google code has gone away) + MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PREFIX="${STAGEDIR}${PREFIX}" USE_LDCONFIG= yes Modified: head/devel/libfreefare/Makefile ============================================================================== --- head/devel/libfreefare/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/libfreefare/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -11,6 +11,8 @@ MASTER_SITES= http://${PORTNAME}.googlec MAINTAINER= romain@FreeBSD.org COMMENT= MIFARE contactless tag access library +BROKEN= Unfetchable (google code has gone away) + LIB_DEPENDS= libnfc.so:devel/libnfc GNU_CONFIGURE= yes Modified: head/devel/liblouisxml/Makefile ============================================================================== --- head/devel/liblouisxml/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/liblouisxml/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Library Provide Complete Braill LICENSE= LGPL3+ GPLv3+ LICENSE_COMB= multi +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash LIB_DEPENDS= liblouis.so:devel/liblouis Modified: head/devel/libmpsse/Makefile ============================================================================== --- head/devel/libmpsse/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/libmpsse/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ LICENSE= GPLv2 BUILD_DEPENDS= swig2.0:devel/swig20 LIB_DEPENDS= libftdi.so:devel/libftdi +BROKEN= Unfetchable (google code has gone away) + USES= gmake pkgconfig python:2 USE_AUTOTOOLS= autoconf USE_LDCONFIG= yes Modified: head/devel/libnxt/Makefile ============================================================================== --- head/devel/libnxt/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/libnxt/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -9,6 +9,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= bacon4000@gmail.com COMMENT= Lego NXT library +BROKEN= Unfetchable (google code has gone away) + SUB_FILES= pkg-message USES= python:build scons shebangfix USE_LDCONFIG= yes Modified: head/devel/libsysinfo/Makefile ============================================================================== --- head/devel/libsysinfo/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/libsysinfo/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= GNU libc's sysinfo port for Fre LICENSE= BSD3CLAUSE +BROKEN= Unfetchable (google code has gone away) + USES= uidfix USE_LDCONFIG= yes PROJECTHOST= sysinfo-bsd Modified: head/devel/nglogc/Makefile ============================================================================== --- head/devel/nglogc/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/nglogc/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -10,6 +10,8 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= vg@FreeBSD.org COMMENT= Flexible C logging API +BROKEN= Unfetchable (google code has gone away) + USES= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/devel/nxt-python/Makefile ============================================================================== --- head/devel/nxt-python/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/nxt-python/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Python interface for the Lego M LICENSE= GPLv3 +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}usb>=0:devel/py-usb USES= python Modified: head/devel/plan9port/Makefile ============================================================================== --- head/devel/plan9port/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/plan9port/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -15,6 +15,8 @@ LICENSE_NAME= Lucent Public License Vers LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN= Unfetchable (google code has gone away) + BROKEN_ia64= does not install: cleanname not found BROKEN_sparc64= does not install: cleanname not found Modified: head/devel/privman/Makefile ============================================================================== --- head/devel/privman/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/privman/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Library that makes it easy for LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN= Unfetchable (google code has gone away) + USES= autoreconf libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/devel/protobuf25/Makefile ============================================================================== --- head/devel/protobuf25/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/protobuf25/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -15,6 +15,8 @@ COMMENT= Data interchange format library LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING.txt +BROKEN= Unfetchable (google code has gone away) + GNU_CONFIGURE= yes GNU_CONFIGURE_PREFIX= ${PREFIX}/protobuf25 USE_LDCONFIG= yes Modified: head/devel/py-argparse/Makefile ============================================================================== --- head/devel/py-argparse/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-argparse/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Optparse-inspired command-line LICENSE= PSFL +BROKEN= Unfetchable (google code has gone away) + USES= python USE_PYTHON= distutils autoplist Modified: head/devel/py-binplist/Makefile ============================================================================== --- head/devel/py-binplist/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-binplist/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= Binary plist parser LICENSE= APACHE20 +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz USES= python Modified: head/devel/py-cmdln/Makefile ============================================================================== --- head/devel/py-cmdln/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-cmdln/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Python module for easily buildi LICENSE= MIT +BROKEN= Unfetchable (google code has gone away) + USES= python:2 zip USE_PYTHON= distutils Modified: head/devel/py-coil/Makefile ============================================================================== --- head/devel/py-coil/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-coil/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -13,6 +13,8 @@ COMMENT= Powerful configuration language LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN= Unfetchable (google code has gone away) + USES= python USE_PYTHON= distutils Modified: head/devel/py-fsm/Makefile ============================================================================== --- head/devel/py-fsm/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-fsm/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Pure Python Implementation of a LICENSE= BSD3CLAUSE +BROKEN= Unfetchable (google code has gone away) + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygraphviz>=1.0:graphics/py-pygraphviz USES= python Modified: head/devel/py-gdata/Makefile ============================================================================== --- head/devel/py-gdata/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-gdata/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -12,6 +12,8 @@ COMMENT= GData Python Client Library LICENSE= APACHE20 +BROKEN= Unfetchable (google code has gone away) + PROJECTHOST= gdata-python-client USES= python:2 USE_PYTHON= distutils Modified: head/devel/py-gflags/Makefile ============================================================================== --- head/devel/py-gflags/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-gflags/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Commandline flags module for Py LICENSE= BSD3CLAUSE +BROKEN= Unfetchable (google code has gone away) + USES= python:2 shebangfix USE_PYTHON= autoplist distutils Modified: head/devel/py-iniparse/Makefile ============================================================================== --- head/devel/py-iniparse/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-iniparse/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -5,8 +5,7 @@ PORTNAME= iniparse PORTVERSION= 0.4 PORTREVISION= 1 CATEGORIES= devel python -MASTER_SITES= GOOGLE_CODE \ - CHEESESHOP +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org Modified: head/devel/py-levenshtein/Makefile ============================================================================== --- head/devel/py-levenshtein/Makefile Wed Sep 14 15:45:41 2016 (r422139) +++ head/devel/py-levenshtein/Makefile Wed Sep 14 15:59:34 2016 (r422140) @@ -14,6 +14,8 @@ COMMENT= Python extension computing stri LICENSE= GPLv2 +BROKEN= Unfetchable (google code has gone away) + PLIST_FILES= %%PYTHON_SITELIBDIR%%/Levenshtein.so *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Wed Sep 14 16:07:57 2016 Return-Path: Delivered-To: svn-ports-head@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 046D0BDADEF; Wed, 14 Sep 2016 16:07:57 +0000 (UTC) (envelope-from pawel@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 C49BF19CB; Wed, 14 Sep 2016 16:07:56 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EG7tMS001155; Wed, 14 Sep 2016 16:07:55 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EG7tO7001153; Wed, 14 Sep 2016 16:07:55 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609141607.u8EG7tO7001153@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 14 Sep 2016 16:07:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422141 - head/japanese/wordpress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 16:07:57 -0000 Author: pawel Date: Wed Sep 14 16:07:55 2016 New Revision: 422141 URL: https://svnweb.freebsd.org/changeset/ports/422141 Log: Update to version 4.6.1 PR: 212675 Submitted by: Jochen Neumeister (maintainer) Modified: head/japanese/wordpress/Makefile head/japanese/wordpress/distinfo Modified: head/japanese/wordpress/Makefile ============================================================================== --- head/japanese/wordpress/Makefile Wed Sep 14 15:59:34 2016 (r422140) +++ head/japanese/wordpress/Makefile Wed Sep 14 16:07:55 2016 (r422141) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.6 +PORTVERSION= 4.6.1 DISTVERSIONSUFFIX= -ja CATEGORIES= japanese www MASTER_SITES= http://ja.wordpress.org/ Modified: head/japanese/wordpress/distinfo ============================================================================== --- head/japanese/wordpress/distinfo Wed Sep 14 15:59:34 2016 (r422140) +++ head/japanese/wordpress/distinfo Wed Sep 14 16:07:55 2016 (r422141) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471537055 -SHA256 (wordpress-4.6-ja.tar.gz) = 675d14b5be3f8dfc8360468a244e51d15aede1ed47bb4acb6e293d355530d2ed -SIZE (wordpress-4.6-ja.tar.gz) = 8421826 +TIMESTAMP = 1473833740 +SHA256 (wordpress-4.6.1-ja.tar.gz) = 674d6c26e62d7e124a66c9472b375164f3d11c341f6217f479e7d64074e545b7 +SIZE (wordpress-4.6.1-ja.tar.gz) = 8402893 From owner-svn-ports-head@freebsd.org Wed Sep 14 16:08:45 2016 Return-Path: Delivered-To: svn-ports-head@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 5C3BDBDAEF8; Wed, 14 Sep 2016 16:08:45 +0000 (UTC) (envelope-from mat@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 2AA431D42; Wed, 14 Sep 2016 16:08:45 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EG8il0001356; Wed, 14 Sep 2016 16:08:44 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EG8it8001354; Wed, 14 Sep 2016 16:08:44 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609141608.u8EG8it8001354@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 14 Sep 2016 16:08:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422142 - in head: devel/py-binplist www/py-pywebdav X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 16:08:45 -0000 Author: mat Date: Wed Sep 14 16:08:44 2016 New Revision: 422142 URL: https://svnweb.freebsd.org/changeset/ports/422142 Log: Messed up those two. Pointy hat: mat Sponsored by: Absolight Modified: head/devel/py-binplist/Makefile (contents, props changed) head/www/py-pywebdav/Makefile (contents, props changed) Modified: head/devel/py-binplist/Makefile ============================================================================== --- head/devel/py-binplist/Makefile Wed Sep 14 16:07:55 2016 (r422141) +++ head/devel/py-binplist/Makefile Wed Sep 14 16:08:44 2016 (r422142) @@ -4,7 +4,7 @@ PORTNAME= binplist PORTVERSION= 0.1.4 CATEGORIES= devel python -MASTER_SITES= CHEESESHOP GOOGLE_CODE +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= antoine@FreeBSD.org @@ -12,8 +12,6 @@ COMMENT= Binary plist parser LICENSE= APACHE20 -BROKEN= Unfetchable (google code has gone away) - RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz USES= python Modified: head/www/py-pywebdav/Makefile ============================================================================== --- head/www/py-pywebdav/Makefile Wed Sep 14 16:07:55 2016 (r422141) +++ head/www/py-pywebdav/Makefile Wed Sep 14 16:08:44 2016 (r422142) @@ -5,14 +5,12 @@ PORTNAME= PyWebDAV PORTVERSION= 0.9.8 PORTREVISION= 1 CATEGORIES= www net python -MASTER_SITES= GOOGLE_CODE CHEESESHOP +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= WebDAV Library and Server for Python -BROKEN= Unfetchable (google code has gone away) - USES= python USE_PYTHON= distutils autoplist From owner-svn-ports-head@freebsd.org Wed Sep 14 16:14:37 2016 Return-Path: Delivered-To: svn-ports-head@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 9F28ABDB18D; Wed, 14 Sep 2016 16:14:37 +0000 (UTC) (envelope-from pawel@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 6FC4111B1; Wed, 14 Sep 2016 16:14:37 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EGEa57004972; Wed, 14 Sep 2016 16:14:36 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EGEaxQ004970; Wed, 14 Sep 2016 16:14:36 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609141614.u8EGEaxQ004970@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 14 Sep 2016 16:14:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422143 - head/chinese/wordpress-zh_TW X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 16:14:37 -0000 Author: pawel Date: Wed Sep 14 16:14:36 2016 New Revision: 422143 URL: https://svnweb.freebsd.org/changeset/ports/422143 Log: Update to version 4.6.1 PR: 212676 Submitted by: Jochen Neumeister (maintainer) Modified: head/chinese/wordpress-zh_TW/Makefile head/chinese/wordpress-zh_TW/distinfo Modified: head/chinese/wordpress-zh_TW/Makefile ============================================================================== --- head/chinese/wordpress-zh_TW/Makefile Wed Sep 14 16:08:44 2016 (r422142) +++ head/chinese/wordpress-zh_TW/Makefile Wed Sep 14 16:14:36 2016 (r422143) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.6 +PORTVERSION= 4.6.1 DISTVERSIONSUFFIX= -zh_TW CATEGORIES= chinese www MASTER_SITES= http://tw.wordpress.org/ Modified: head/chinese/wordpress-zh_TW/distinfo ============================================================================== --- head/chinese/wordpress-zh_TW/distinfo Wed Sep 14 16:08:44 2016 (r422142) +++ head/chinese/wordpress-zh_TW/distinfo Wed Sep 14 16:14:36 2016 (r422143) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471587805 -SHA256 (wordpress-4.6-zh_TW.tar.gz) = b7e16dda7414d2094fa0f11251515e165f5de7aa0e47a6cc8e5f29d2cc6050e2 -SIZE (wordpress-4.6-zh_TW.tar.gz) = 8386028 +TIMESTAMP = 1473834324 +SHA256 (wordpress-4.6.1-zh_TW.tar.gz) = f27fd9d160242aa1dcc66781c1b8bd7d3508848aeded4a2ed5ce9314fab6cd1d +SIZE (wordpress-4.6.1-zh_TW.tar.gz) = 8383651 From owner-svn-ports-head@freebsd.org Wed Sep 14 16:40:37 2016 Return-Path: Delivered-To: svn-ports-head@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 9EE5BBDB7A3; Wed, 14 Sep 2016 16:40:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from fc.opsec.eu (fc.opsec.eu [IPv6:2001:14f8:200:4::4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 498141CA7; Wed, 14 Sep 2016 16:40:28 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from pi by fc.opsec.eu with local (Exim 4.87 (FreeBSD)) (envelope-from ) id 1bkDES-0009SU-P0; Wed, 14 Sep 2016 18:40:20 +0200 Date: Wed, 14 Sep 2016 18:40:20 +0200 From: Kurt Jaeger To: Mark Linimon Cc: marino@freebsd.org, Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422114 - head/misc/fortune_strfile Message-ID: <20160914164020.GD23634@fc.opsec.eu> References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <20160914123128.GA32707@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160914123128.GA32707@lonesome.com> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 16:40:37 -0000 Hi! > My own opinion is that 4814 is way too many. And, I don't buy the > argument that some have made that "unmaintained ports are better > maintained than some maintained ports". We have the data to go from opinion to knowledge by analyzing the commit logs etc. Analyzing it is difficult, but maybe it helps to find out where we stand. -- pi@FreeBSD.org +49 171 3101372 4 years to go ! From owner-svn-ports-head@freebsd.org Wed Sep 14 16:49:57 2016 Return-Path: Delivered-To: svn-ports-head@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 A3E3BBDBB36; Wed, 14 Sep 2016 16:49:57 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F04813E3; Wed, 14 Sep 2016 16:49:56 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 6AE0443CD3; Wed, 14 Sep 2016 11:49:51 -0500 (CDT) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile To: Kurt Jaeger , Mark Linimon References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <20160914123128.GA32707@lonesome.com> <20160914164020.GD23634@fc.opsec.eu> Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: John Marino Reply-To: marino@freebsd.org Message-ID: <7829a82e-7f83-33d1-54b5-fca53d072f4f@marino.st> Date: Wed, 14 Sep 2016 11:49:53 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20160914164020.GD23634@fc.opsec.eu> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-0, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 16:49:57 -0000 On 9/14/2016 11:40, Kurt Jaeger wrote: > Hi! > >> My own opinion is that 4814 is way too many. And, I don't buy the >> argument that some have made that "unmaintained ports are better >> maintained than some maintained ports". > > We have the data to go from opinion to knowledge by analyzing > the commit logs etc. Analyzing it is difficult, but maybe it helps > to find out where we stand. I don't think that's necessary to get the actual numbers. While it's clearly true that some unmaintained ports (aka maintained by ports@FreeBSD.org) are better maintained than a significant number of maintained ports, I think most people would agree having a maintainer is the best situation. In this particular case: 1) I don't maintain any fortune ports 2) I don't use any fortune ports 3) I don't care if all the fortune ports are deleted 4) The port is about as trivial as they come. I was only fixing a problem that I identified that should have been fixed long before. If there was a rule that said I had to maintain the port for 1-week or 1-month or even 6-months, then I'm just dropping the port the next day after the expiration period. It's better to give somebody that actually does care a chance to adopt it (the most likely being one of the fortune port maintainers). Finally, most of the games ports are intentionally unmaintained. Since strfile has its origin in games, I really didn't see a distinction with fortune_strfile and any of those games. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 17:04:18 2016 Return-Path: Delivered-To: svn-ports-head@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 08073BDBECA; Wed, 14 Sep 2016 17:04:18 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 783B81DA1; Wed, 14 Sep 2016 17:04:16 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id 45c4872f TLS version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO; Wed, 14 Sep 2016 11:04:09 -0600 (MDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r422114 - head/misc/fortune_strfile From: Adam Weinberger In-Reply-To: <7829a82e-7f83-33d1-54b5-fca53d072f4f@marino.st> Date: Wed, 14 Sep 2016 11:04:07 -0600 Cc: Kurt Jaeger , Mark Linimon , Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <0057723D-3DDE-4B15-BD4D-CFEF5D247F98@adamw.org> References: <201609140545.u8E5jeBH058686@repo.freebsd.org> <40537f68-1d2b-194c-55d5-b133d743ed3e@marino.st> <20160914123128.GA32707@lonesome.com> <20160914164020.GD23634@fc.opsec.eu> <7829a82e-7f83-33d1-54b5-fca53d072f4f@marino.st> To: marino@freebsd.org X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 17:04:18 -0000 > On 14 Sep, 2016, at 10:49, John Marino = wrote: >=20 > On 9/14/2016 11:40, Kurt Jaeger wrote: >> Hi! >>=20 >>> My own opinion is that 4814 is way too many. And, I don't buy the >>> argument that some have made that "unmaintained ports are better >>> maintained than some maintained ports". >>=20 >> We have the data to go from opinion to knowledge by analyzing >> the commit logs etc. Analyzing it is difficult, but maybe it helps >> to find out where we stand. >=20 >=20 > I don't think that's necessary to get the actual numbers. > While it's clearly true that some unmaintained ports (aka maintained = by ports@FreeBSD.org) are better maintained than a significant number of = maintained ports, I think most people would agree having a maintainer is = the best situation. >=20 > In this particular case: > 1) I don't maintain any fortune ports > 2) I don't use any fortune ports > 3) I don't care if all the fortune ports are deleted > 4) The port is about as trivial as they come. >=20 > I was only fixing a problem that I identified that should have been = fixed long before. >=20 > If there was a rule that said I had to maintain the port for 1-week or = 1-month or even 6-months, then I'm just dropping the port the next day = after the expiration period. It's better to give somebody that actually = does care a chance to adopt it (the most likely being one of the fortune = port maintainers). >=20 > Finally, most of the games ports are intentionally unmaintained. = Since strfile has its origin in games, I really didn't see a distinction = with fortune_strfile and any of those games. Hi, This whole argument is kindof silly. John is being told that ports = should be maintained for a minimum arbitrary amount of time that's up to = the committer, but that he didn't pick the right minimum arbitrary = amount of time that was up to him. I agree with Mark that the PHB doesn't need to be an endless collection = of rules that cover every possibility, but I disagree that this = particular issue doesn't belong in there. I will agree with Mat that 1 day is not enough time, because somebody = needs to have ownership if users report problems that the committer = didn't think of. That said, John is very responsive and if users = reported problems I have no doubt that he'd address it quickly and = properly. The PHB should say: The right amount of time that a new port should be maintained is at = least long enough to verify that there are no build failures on any = platforms, and that end-users have had a chance to report failures that = they encounter in real-world use. # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-svn-ports-head@freebsd.org Wed Sep 14 17:26:46 2016 Return-Path: Delivered-To: svn-ports-head@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 6F48AAC4961; Wed, 14 Sep 2016 17:26:46 +0000 (UTC) (envelope-from antoine@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 3F753192C; Wed, 14 Sep 2016 17:26:46 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EHQjcq031358; Wed, 14 Sep 2016 17:26:45 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EHQjDK031356; Wed, 14 Sep 2016 17:26:45 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141726.u8EHQjDK031356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 17:26:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422144 - head/devel/py-gflags X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 17:26:46 -0000 Author: antoine Date: Wed Sep 14 17:26:45 2016 New Revision: 422144 URL: https://svnweb.freebsd.org/changeset/ports/422144 Log: - Unbreak by using CHEESESHOP, distfile differs from 1 line in SOURCES.txt - Remove dependency on the python2 metaport MFH: 2016Q3 (rerolled distfile) Modified: head/devel/py-gflags/Makefile head/devel/py-gflags/distinfo Modified: head/devel/py-gflags/Makefile ============================================================================== --- head/devel/py-gflags/Makefile Wed Sep 14 16:14:36 2016 (r422143) +++ head/devel/py-gflags/Makefile Wed Sep 14 17:26:45 2016 (r422144) @@ -3,9 +3,9 @@ PORTNAME= gflags PORTVERSION= 2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= python-gflags-${PORTVERSION} @@ -14,9 +14,7 @@ COMMENT= Commandline flags module for Py LICENSE= BSD3CLAUSE -BROKEN= Unfetchable (google code has gone away) - -USES= python:2 shebangfix +USES= python:2.7 shebangfix USE_PYTHON= autoplist distutils SHEBANG_FILES= gflags2man.py Modified: head/devel/py-gflags/distinfo ============================================================================== --- head/devel/py-gflags/distinfo Wed Sep 14 16:14:36 2016 (r422143) +++ head/devel/py-gflags/distinfo Wed Sep 14 17:26:45 2016 (r422144) @@ -1,2 +1,3 @@ -SHA256 (python-gflags-2.0.tar.gz) = 311066217acb8cd8519a4c872cb3fe64f02bcf105802bb761ab0de55c2386cd6 -SIZE (python-gflags-2.0.tar.gz) = 64929 +TIMESTAMP = 1473873529 +SHA256 (python-gflags-2.0.tar.gz) = 0dff6360423f3ec08cbe3bfaf37b339461a54a21d13be0dd5d9c9999ce531078 +SIZE (python-gflags-2.0.tar.gz) = 65094 From owner-svn-ports-head@freebsd.org Wed Sep 14 17:52:06 2016 Return-Path: Delivered-To: svn-ports-head@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 64E7BBD515C; Wed, 14 Sep 2016 17:52:06 +0000 (UTC) (envelope-from antoine@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 37B6A1898; Wed, 14 Sep 2016 17:52:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EHq5XJ040519; Wed, 14 Sep 2016 17:52:05 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EHq55M040516; Wed, 14 Sep 2016 17:52:05 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141752.u8EHq55M040516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 17:52:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422146 - head/net/libdnet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 17:52:06 -0000 Author: antoine Date: Wed Sep 14 17:52:05 2016 New Revision: 422146 URL: https://svnweb.freebsd.org/changeset/ports/422146 Log: Unbreak by switching to USE_GITHUB Modified: head/net/libdnet/Makefile head/net/libdnet/distinfo Modified: head/net/libdnet/Makefile ============================================================================== --- head/net/libdnet/Makefile Wed Sep 14 17:31:34 2016 (r422145) +++ head/net/libdnet/Makefile Wed Sep 14 17:52:05 2016 (r422146) @@ -4,8 +4,8 @@ PORTNAME= libdnet PORTVERSION= 1.12 PORTREVISION= 1 +DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES?= net -MASTER_SITES= GOOGLE_CODE MAINTAINER?= onatan@gmail.com COMMENT= Simple interface to low level networking routines @@ -13,11 +13,12 @@ COMMENT= Simple interface to low level n LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN= Unfetchable (google code has gone away) +USE_GITHUB= yes +GH_ACCOUNT= dugsong GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_dnet_bsd_bpf=yes -USES+= libtool tar:tgz +USES+= libtool .if !defined(LIBDNET_SLAVE) CONFIGURE_ARGS+= --without-python Modified: head/net/libdnet/distinfo ============================================================================== --- head/net/libdnet/distinfo Wed Sep 14 17:31:34 2016 (r422145) +++ head/net/libdnet/distinfo Wed Sep 14 17:52:05 2016 (r422146) @@ -1,2 +1,3 @@ -SHA256 (libdnet-1.12.tgz) = 83b33039787cf99990e977cef7f18a5d5e7aaffc4505548a83d31bd3515eb026 -SIZE (libdnet-1.12.tgz) = 970125 +TIMESTAMP = 1473875381 +SHA256 (dugsong-libdnet-libdnet-1.12_GH0.tar.gz) = b6360659c93fa2e3cde9e0a1fc9c07bc4111f3448c5de856e095eb98315dd424 +SIZE (dugsong-libdnet-libdnet-1.12_GH0.tar.gz) = 959945 From owner-svn-ports-head@freebsd.org Wed Sep 14 18:18:23 2016 Return-Path: Delivered-To: svn-ports-head@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 DF159BD59CA; Wed, 14 Sep 2016 18:18:23 +0000 (UTC) (envelope-from amdmi3@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 B1D2B15E1; Wed, 14 Sep 2016 18:18:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EIIMuK050087; Wed, 14 Sep 2016 18:18:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EIIMtP050086; Wed, 14 Sep 2016 18:18:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609141818.u8EIIMtP050086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 14 Sep 2016 18:18:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422147 - head/devel/py-nose X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 18:18:24 -0000 Author: amdmi3 Date: Wed Sep 14 18:18:22 2016 New Revision: 422147 URL: https://svnweb.freebsd.org/changeset/ports/422147 Log: - Switch to new test framework Approved by: portmgr blanket Modified: head/devel/py-nose/Makefile Modified: head/devel/py-nose/Makefile ============================================================================== --- head/devel/py-nose/Makefile Wed Sep 14 17:52:05 2016 (r422146) +++ head/devel/py-nose/Makefile Wed Sep 14 18:18:22 2016 (r422147) @@ -18,7 +18,7 @@ USE_PYTHON= autoplist concurrent distuti .include -regression-test: build +do-test: # Extra tests for python 3, added in by setup3lib.py .if ${PYTHON_REL} >= 3000 @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} build_tests From owner-svn-ports-head@freebsd.org Wed Sep 14 18:37:41 2016 Return-Path: Delivered-To: svn-ports-head@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 94E96BD5F4F; Wed, 14 Sep 2016 18:37:41 +0000 (UTC) (envelope-from zeising@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 489D01F80; Wed, 14 Sep 2016 18:37:41 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EIbeeC058149; Wed, 14 Sep 2016 18:37:40 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EIbeSU058146; Wed, 14 Sep 2016 18:37:40 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201609141837.u8EIbeSU058146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Wed, 14 Sep 2016 18:37:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422149 - head/graphics/feh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 18:37:41 -0000 Author: zeising Date: Wed Sep 14 18:37:40 2016 New Revision: 422149 URL: https://svnweb.freebsd.org/changeset/ports/422149 Log: Update to 2.17.1 While this port installs icons, do not use INSTALLS_ICONS= to avoid bringing in a bunch of dependencies to this very light weight port. [0] ChangeLog: http://feh.finalrewind.org/archive/2.17/ http://feh.finalrewind.org/archive/2.17.1/ Discussed with: kwm [0] Modified: head/graphics/feh/Makefile head/graphics/feh/distinfo head/graphics/feh/pkg-plist Modified: head/graphics/feh/Makefile ============================================================================== --- head/graphics/feh/Makefile Wed Sep 14 18:37:22 2016 (r422148) +++ head/graphics/feh/Makefile Wed Sep 14 18:37:40 2016 (r422149) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= feh -PORTVERSION= 2.16.2 +PORTVERSION= 2.17.1 CATEGORIES= graphics MASTER_SITES= http://feh.finalrewind.org/ \ LOCAL/uqs Modified: head/graphics/feh/distinfo ============================================================================== --- head/graphics/feh/distinfo Wed Sep 14 18:37:22 2016 (r422148) +++ head/graphics/feh/distinfo Wed Sep 14 18:37:40 2016 (r422149) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471786699 -SHA256 (feh-2.16.2.tar.bz2) = aa37124ae010e7dac7d101d5c66f3d49da79e96c7ce21d77bfe3c9322ed2e7ca -SIZE (feh-2.16.2.tar.bz2) = 2125888 +TIMESTAMP = 1473009514 +SHA256 (feh-2.17.1.tar.bz2) = a9e818a4ad6ab427597e1799527a7576856c233525e67afb1eb2cb3ae709d853 +SIZE (feh-2.17.1.tar.bz2) = 2126936 Modified: head/graphics/feh/pkg-plist ============================================================================== --- head/graphics/feh/pkg-plist Wed Sep 14 18:37:22 2016 (r422148) +++ head/graphics/feh/pkg-plist Wed Sep 14 18:37:40 2016 (r422149) @@ -2,6 +2,8 @@ bin/feh %%CAM%%bin/feh-cam %%CAM%%bin/gen-cam-menu share/applications/feh.desktop +share/icons/hicolor/48x48/apps/feh.png +share/icons/hicolor/scalable/apps/feh.svg %%CAM%%man/man1/feh-cam.1.gz man/man1/feh.1.gz %%CAM%%man/man1/gen-cam-menu.1.gz From owner-svn-ports-head@freebsd.org Wed Sep 14 18:44:00 2016 Return-Path: Delivered-To: svn-ports-head@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 6760EBD626E; Wed, 14 Sep 2016 18:44:00 +0000 (UTC) (envelope-from johans@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 3A1241340; Wed, 14 Sep 2016 18:44:00 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EIhxQr061715; Wed, 14 Sep 2016 18:43:59 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EIhxKI061714; Wed, 14 Sep 2016 18:43:59 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201609141843.u8EIhxKI061714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Wed, 14 Sep 2016 18:43:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422150 - head/www/caudium14 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 18:44:00 -0000 Author: johans Date: Wed Sep 14 18:43:59 2016 New Revision: 422150 URL: https://svnweb.freebsd.org/changeset/ports/422150 Log: - Change primary site from Google Code to Google Code Archive; Not perfect, but it's linked from www.caudium.net and works fine - Add my own site as backup - Remove BROKEN Modified: head/www/caudium14/Makefile Modified: head/www/caudium14/Makefile ============================================================================== --- head/www/caudium14/Makefile Wed Sep 14 18:37:40 2016 (r422149) +++ head/www/caudium14/Makefile Wed Sep 14 18:43:59 2016 (r422150) @@ -6,14 +6,13 @@ PORTVERSION= ${DISTVERSION}.${PIKEVERSIO DISTVERSION= 1.4.18 PORTREVISION= 2 CATEGORIES= www -MASTER_SITES= http://caudium.googlecode.com/files/ +MASTER_SITES= https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/caudium/ \ + ftp://ftp.stack.nl/pub/users/johans/caudium/ DISTNAME= Caudium-${DISTVERSION} MAINTAINER= johans@FreeBSD.org COMMENT= Free webserver based on the Roxen Challenger 1.3 code base -BROKEN= Unfetchable (google code has gone away) - BUILD_DEPENDS= pike78:lang/pike78 LIB_DEPENDS= libsablot.so:textproc/sablotron RUN_DEPENDS= lsof:sysutils/lsof @@ -49,7 +48,7 @@ post-patch: -e 's,/etc/caudium,${PREFIX}&,' ${WRKSRC}/Makefile.in post-install: - @${INSTALL_SCRIPT} ${WRKDIR}/caudium ${STAGEDIR}${PREFIX}/etc/rc.d/ + ${INSTALL_SCRIPT} ${WRKDIR}/caudium ${STAGEDIR}${PREFIX}/etc/rc.d/ .include From owner-svn-ports-head@freebsd.org Wed Sep 14 19:13:08 2016 Return-Path: Delivered-To: svn-ports-head@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 84A1ABD6BB6; Wed, 14 Sep 2016 19:13:08 +0000 (UTC) (envelope-from madpilot@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 53E6B127B; Wed, 14 Sep 2016 19:13:08 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJD7MH073093; Wed, 14 Sep 2016 19:13:07 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJD7pP073092; Wed, 14 Sep 2016 19:13:07 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201609141913.u8EJD7pP073092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 14 Sep 2016 19:13:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422151 - head/devel/php70-APCu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:13:08 -0000 Author: madpilot Date: Wed Sep 14 19:13:07 2016 New Revision: 422151 URL: https://svnweb.freebsd.org/changeset/ports/422151 Log: Add PHP_DEFAULT=7.0 so that a package is build on the cluster with default ports configuration. PR: 212684 Submitted by: joshruehlig at gmail.com Approved by: Daniel Ylitalo (maintainer) Modified: head/devel/php70-APCu/Makefile Modified: head/devel/php70-APCu/Makefile ============================================================================== --- head/devel/php70-APCu/Makefile Wed Sep 14 18:43:59 2016 (r422150) +++ head/devel/php70-APCu/Makefile Wed Sep 14 19:13:07 2016 (r422151) @@ -16,6 +16,7 @@ LICENSE= PHP301 CONFLICTS= pecl-APC-[0-9]* IGNORE_WITH_PHP= 55 56 +PHP_DEFAULT= 7.0 USES= localbase php:ext tar:tgz PHP_MODNAME= ${PORTNAME:tl} From owner-svn-ports-head@freebsd.org Wed Sep 14 19:17:09 2016 Return-Path: Delivered-To: svn-ports-head@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 F1E9CBD6DF3; Wed, 14 Sep 2016 19:17:09 +0000 (UTC) (envelope-from antoine@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 A736F1695; Wed, 14 Sep 2016 19:17:09 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJH8L1073352; Wed, 14 Sep 2016 19:17:08 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJH8HX073350; Wed, 14 Sep 2016 19:17:08 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141917.u8EJH8HX073350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 19:17:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422152 - head/net/py-dpkt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:17:10 -0000 Author: antoine Date: Wed Sep 14 19:17:08 2016 New Revision: 422152 URL: https://svnweb.freebsd.org/changeset/ports/422152 Log: Unbreak by updating to 1.8.8 and switching to CHEESESHOP Modified: head/net/py-dpkt/Makefile head/net/py-dpkt/distinfo Modified: head/net/py-dpkt/Makefile ============================================================================== --- head/net/py-dpkt/Makefile Wed Sep 14 19:13:07 2016 (r422151) +++ head/net/py-dpkt/Makefile Wed Sep 14 19:17:08 2016 (r422152) @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= dpkt -PORTVERSION= 1.8 +PORTVERSION= 1.8.8 CATEGORIES= net python -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sbz@FreeBSD.org @@ -12,23 +12,15 @@ COMMENT= Python fast, simple packet crea LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN= Unfetchable (google code has gone away) - USES= python USE_PYTHON= distutils autoplist pythonprefix OPTIONS_DEFINE= DOCS EXAMPLES -PORTDOCS= AUTHORS CHANGES HACKING PKG-INFO README -PORTEXAMPLES= * +PORTDOCS= AUTHORS CHANGES PKG-INFO README.rst post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) - -regression-test: extract - @(cd ${WRKSRC} && ${PYTHON_CMD} tests/test-perf2.py) .include Modified: head/net/py-dpkt/distinfo ============================================================================== --- head/net/py-dpkt/distinfo Wed Sep 14 19:13:07 2016 (r422151) +++ head/net/py-dpkt/distinfo Wed Sep 14 19:17:08 2016 (r422152) @@ -1,2 +1,3 @@ -SHA256 (dpkt-1.8.tar.gz) = c56de2f9dc2f4654a356de0f0d458bb7b1c86c374988e8b4f358556f7dbe0507 -SIZE (dpkt-1.8.tar.gz) = 76311 +TIMESTAMP = 1473874463 +SHA256 (dpkt-1.8.8.tar.gz) = d99525e534266818ecd122052f4086c684a88491c8073a848193bbf13ed69800 +SIZE (dpkt-1.8.8.tar.gz) = 102074 From owner-svn-ports-head@freebsd.org Wed Sep 14 19:19:29 2016 Return-Path: Delivered-To: svn-ports-head@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 8B462BD6E7E; Wed, 14 Sep 2016 19:19:29 +0000 (UTC) (envelope-from antoine@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 5C55D17AC; Wed, 14 Sep 2016 19:19:29 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJJS6s073514; Wed, 14 Sep 2016 19:19:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJJSsS073513; Wed, 14 Sep 2016 19:19:28 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141919.u8EJJSsS073513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 19:19:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422153 - head/net/py-dpkt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:19:29 -0000 Author: antoine Date: Wed Sep 14 19:19:28 2016 New Revision: 422153 URL: https://svnweb.freebsd.org/changeset/ports/422153 Log: There are no more examples Modified: head/net/py-dpkt/Makefile Modified: head/net/py-dpkt/Makefile ============================================================================== --- head/net/py-dpkt/Makefile Wed Sep 14 19:17:08 2016 (r422152) +++ head/net/py-dpkt/Makefile Wed Sep 14 19:19:28 2016 (r422153) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= python USE_PYTHON= distutils autoplist pythonprefix -OPTIONS_DEFINE= DOCS EXAMPLES +OPTIONS_DEFINE= DOCS PORTDOCS= AUTHORS CHANGES PKG-INFO README.rst From owner-svn-ports-head@freebsd.org Wed Sep 14 19:25:20 2016 Return-Path: Delivered-To: svn-ports-head@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 B8FC0BDA29E; Wed, 14 Sep 2016 19:25:20 +0000 (UTC) (envelope-from bdrewery@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 880721ED1; Wed, 14 Sep 2016 19:25:20 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJPJTd077088; Wed, 14 Sep 2016 19:25:19 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJPJb8077087; Wed, 14 Sep 2016 19:25:19 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201609141925.u8EJPJb8077087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Wed, 14 Sep 2016 19:25:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422154 - head/misc/fortune_strfile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:25:20 -0000 Author: bdrewery Date: Wed Sep 14 19:25:19 2016 New Revision: 422154 URL: https://svnweb.freebsd.org/changeset/ports/422154 Log: Mark deprecated as it has no maintainer and is already in base. With hat: portmgr Modified: head/misc/fortune_strfile/Makefile Modified: head/misc/fortune_strfile/Makefile ============================================================================== --- head/misc/fortune_strfile/Makefile Wed Sep 14 19:19:28 2016 (r422153) +++ head/misc/fortune_strfile/Makefile Wed Sep 14 19:25:19 2016 (r422154) @@ -13,6 +13,9 @@ COMMENT= Duplicate of strfile(8) PROGRAM= fortune_strfile PLIST_FILES= bin/${PROGRAM} +DEPRECATED= unmaintained and duplicated from base +EXPIRATION_DATE= 2016-10-14 + do-build: ${MKDIR} ${WRKSRC} ${CC} ${CFLAGS} -o ${WRKSRC}/${PROGRAM} ${FILESDIR}/strfile.c From owner-svn-ports-head@freebsd.org Wed Sep 14 19:28:00 2016 Return-Path: Delivered-To: svn-ports-head@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 9C79BBDA3D8; Wed, 14 Sep 2016 19:28:00 +0000 (UTC) (envelope-from antoine@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 6CD131105; Wed, 14 Sep 2016 19:28:00 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJRxai077261; Wed, 14 Sep 2016 19:27:59 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJRxm4077260; Wed, 14 Sep 2016 19:27:59 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141927.u8EJRxm4077260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 19:27:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422155 - head/devel/py-argparse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:28:00 -0000 Author: antoine Date: Wed Sep 14 19:27:59 2016 New Revision: 422155 URL: https://svnweb.freebsd.org/changeset/ports/422155 Log: Unbreak by switching to CHEESESHOP Modified: head/devel/py-argparse/Makefile Modified: head/devel/py-argparse/Makefile ============================================================================== --- head/devel/py-argparse/Makefile Wed Sep 14 19:25:19 2016 (r422154) +++ head/devel/py-argparse/Makefile Wed Sep 14 19:27:59 2016 (r422155) @@ -5,7 +5,7 @@ PORTNAME= argparse PORTVERSION= 1.2.1 PORTREVISION= 1 CATEGORIES= devel python -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= lwhsu@FreeBSD.org @@ -13,8 +13,6 @@ COMMENT= Optparse-inspired command-line LICENSE= PSFL -BROKEN= Unfetchable (google code has gone away) - USES= python USE_PYTHON= distutils autoplist From owner-svn-ports-head@freebsd.org Wed Sep 14 19:28:44 2016 Return-Path: Delivered-To: svn-ports-head@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 60674BDA434; Wed, 14 Sep 2016 19:28:44 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A4B711FD; Wed, 14 Sep 2016 19:28:43 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id E13BF43CD3; Wed, 14 Sep 2016 14:28:38 -0500 (CDT) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> Date: Wed, 14 Sep 2016 14:28:40 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <201609141925.u8EJPJb8077087@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-0, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:28:44 -0000 On 9/14/2016 14:25, Bryan Drewery wrote: > Author: bdrewery > Date: Wed Sep 14 19:25:19 2016 > New Revision: 422154 > URL: https://svnweb.freebsd.org/changeset/ports/422154 > > Log: > Mark deprecated as it has no maintainer and is already in base. > > With hat: portmgr > Really? Very mature and classy. I solved a problem and you're flexing muscles. Are all portmanagers on board with this? John P.S. If you want, I'll get into a commit war and take it back. You'll win. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 19:38:59 2016 Return-Path: Delivered-To: svn-ports-head@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 E032CBDA77F; Wed, 14 Sep 2016 19:38:59 +0000 (UTC) (envelope-from pawel@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 AFFCD17CF; Wed, 14 Sep 2016 19:38:59 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJcwDI081141; Wed, 14 Sep 2016 19:38:58 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJcwkC081135; Wed, 14 Sep 2016 19:38:58 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609141938.u8EJcwkC081135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 14 Sep 2016 19:38:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422156 - in head/biology: seqan seqan-apps X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:39:00 -0000 Author: pawel Date: Wed Sep 14 19:38:58 2016 New Revision: 422156 URL: https://svnweb.freebsd.org/changeset/ports/422156 Log: - Update biology/seqan and bilogy/seqan-apps to version 2.2.0 [1] - Fix spelling in pkg-descr PR: 212682 [1] Submitted by: Hannes Hauswedell (maintainer) [1] Modified: head/biology/seqan-apps/Makefile head/biology/seqan-apps/distinfo head/biology/seqan-apps/pkg-descr head/biology/seqan/Makefile head/biology/seqan/distinfo head/biology/seqan/pkg-plist Modified: head/biology/seqan-apps/Makefile ============================================================================== --- head/biology/seqan-apps/Makefile Wed Sep 14 19:27:59 2016 (r422155) +++ head/biology/seqan-apps/Makefile Wed Sep 14 19:38:58 2016 (r422156) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seqan-apps -PORTVERSION= 2.1.1 +PORTVERSION= 2.2.0 DISTVERSIONPREFIX= seqan-v CATEGORIES= biology Modified: head/biology/seqan-apps/distinfo ============================================================================== --- head/biology/seqan-apps/distinfo Wed Sep 14 19:27:59 2016 (r422155) +++ head/biology/seqan-apps/distinfo Wed Sep 14 19:38:58 2016 (r422156) @@ -1,2 +1,3 @@ -SHA256 (seqan-seqan-seqan-v2.1.1_GH0.tar.gz) = df083d5939d7e73fd00bbc6bb291ac7ea7b8d446cf89a9758fdffdc0eca9ec1c -SIZE (seqan-seqan-seqan-v2.1.1_GH0.tar.gz) = 110874831 +TIMESTAMP = 1473848209 +SHA256 (seqan-seqan-seqan-v2.2.0_GH0.tar.gz) = 6add074932c2723ef1fb658c88f906bdd6ced1fc34cb16a7410251ffc4cb8cc8 +SIZE (seqan-seqan-seqan-v2.2.0_GH0.tar.gz) = 110936119 Modified: head/biology/seqan-apps/pkg-descr ============================================================================== --- head/biology/seqan-apps/pkg-descr Wed Sep 14 19:27:59 2016 (r422155) +++ head/biology/seqan-apps/pkg-descr Wed Sep 14 19:38:58 2016 (r422156) @@ -5,7 +5,7 @@ focus on biological data. This port contains applications built on SeqAn and developed within the SeqAn project. Among them are famous read mappers like RazerS and Yara, as well as many other tools. Some -applications are packaged seperately and the library +applications are packaged separately and the library can be found at biology/seqan. WWW: http://www.seqan.de/ Modified: head/biology/seqan/Makefile ============================================================================== --- head/biology/seqan/Makefile Wed Sep 14 19:27:59 2016 (r422155) +++ head/biology/seqan/Makefile Wed Sep 14 19:38:58 2016 (r422156) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= seqan -PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTVERSION= 2.2.0 CATEGORIES= biology MASTER_SITES= http://packages.seqan.de/seqan-library/ DISTNAME= ${PORTNAME}-library-${PORTVERSION} Modified: head/biology/seqan/distinfo ============================================================================== --- head/biology/seqan/distinfo Wed Sep 14 19:27:59 2016 (r422155) +++ head/biology/seqan/distinfo Wed Sep 14 19:38:58 2016 (r422156) @@ -1,2 +1,3 @@ -SHA256 (seqan-library-2.1.1.tar.xz) = 8926f91fec5ce57e8efc70ac16cbf041bde0e0be463685b86e0d2e1e6a8169d7 -SIZE (seqan-library-2.1.1.tar.xz) = 5238884 +TIMESTAMP = 1473846790 +SHA256 (seqan-library-2.2.0.tar.xz) = b5c036a3d2fc2fe5f2d57dcd4d7c523a6df146ab7b44bc789f42004b058d72fd +SIZE (seqan-library-2.2.0.tar.xz) = 5223004 Modified: head/biology/seqan/pkg-plist ============================================================================== --- head/biology/seqan/pkg-plist Wed Sep 14 19:27:59 2016 (r422155) +++ head/biology/seqan/pkg-plist Wed Sep 14 19:38:58 2016 (r422156) @@ -2,12 +2,14 @@ include/seqan/align.h include/seqan/align/align_base.h include/seqan/align/align_cols.h include/seqan/align/align_config.h +include/seqan/align/align_interface_wrapper.h include/seqan/align/align_iterator_base.h include/seqan/align/align_metafunctions.h include/seqan/align/align_traceback.h include/seqan/align/alignment_algorithm_tags.h include/seqan/align/alignment_operations.h include/seqan/align/dp_algorithm_impl.h +include/seqan/align/dp_align_simd_helper.h include/seqan/align/dp_band.h include/seqan/align/dp_cell.h include/seqan/align/dp_cell_affine.h @@ -27,6 +29,7 @@ include/seqan/align/dp_matrix_sparse.h include/seqan/align/dp_meta_info.h include/seqan/align/dp_profile.h include/seqan/align/dp_scout.h +include/seqan/align/dp_scout_simd.h include/seqan/align/dp_setup.h include/seqan/align/dp_trace_segment.h include/seqan/align/dp_traceback_adaptor.h @@ -336,6 +339,10 @@ include/seqan/index/find_pigeonhole.h include/seqan/index/find_quasar.h include/seqan/index/find_swift.h include/seqan/index/index_base.h +include/seqan/index/index_bidirectional.h +include/seqan/index/index_bidirectional_stree.h +include/seqan/index/index_bifm.h +include/seqan/index/index_bifm_stree.h include/seqan/index/index_bwt.h include/seqan/index/index_childtab.h include/seqan/index/index_device.h @@ -348,7 +355,6 @@ include/seqan/index/index_esa_stree.h include/seqan/index/index_fm.h include/seqan/index/index_fm_compressed_sa.h include/seqan/index/index_fm_compressed_sa_iterator.h -include/seqan/index/index_fm_device.h include/seqan/index/index_fm_dox.h include/seqan/index/index_fm_lf_table.h include/seqan/index/index_fm_rank_dictionary_base.h @@ -444,7 +450,6 @@ include/seqan/misc/accumulators.h include/seqan/misc/base.h include/seqan/misc/bit_twiddling.h include/seqan/misc/bit_twiddling_functors.h -include/seqan/misc/cuda.h include/seqan/misc/dequeue.h include/seqan/misc/edit_environment.h include/seqan/misc/interval_tree.h @@ -464,6 +469,7 @@ include/seqan/modifier/modifier_alphabet include/seqan/modifier/modifier_cyclic_shape.h include/seqan/modifier/modifier_functors.h include/seqan/modifier/modifier_iterator.h +include/seqan/modifier/modifier_padding.h include/seqan/modifier/modifier_position.h include/seqan/modifier/modifier_reverse.h include/seqan/modifier/modifier_shortcuts.h @@ -505,10 +511,6 @@ include/seqan/pipe/pool_base.h include/seqan/pipe/pool_mapper.h include/seqan/pipe/pool_sorter.h include/seqan/platform.h -include/seqan/platform/platform_gcc.h -include/seqan/platform/platform_icc.h -include/seqan/platform/platform_nvcc.h -include/seqan/platform/platform_windows.h include/seqan/random.h include/seqan/random/random_base.h include/seqan/random/random_beta.h @@ -536,7 +538,9 @@ include/seqan/score/score_base.h include/seqan/score/score_edit.h include/seqan/score/score_matrix.h include/seqan/score/score_matrix_data.h +include/seqan/score/score_matrix_dyn.h include/seqan/score/score_matrix_io.h +include/seqan/score/score_simd_wrapper.h include/seqan/score/score_simple.h include/seqan/seeds.h include/seqan/seeds/banded_chain_alignment.h @@ -569,7 +573,6 @@ include/seqan/seq_io/sequence_file.h include/seqan/sequence.h include/seqan/sequence/adapt_array_pointer.h include/seqan/sequence/adapt_stl_container.h -include/seqan/sequence/adapt_thrust_vector.h include/seqan/sequence/container_view.h include/seqan/sequence/container_view_zip.h include/seqan/sequence/iter_concat_virtual.h @@ -594,7 +597,6 @@ include/seqan/sequence/string_set_base.h include/seqan/sequence/string_set_concat_direct.h include/seqan/sequence/string_set_dependent_generous.h include/seqan/sequence/string_set_dependent_tight.h -include/seqan/sequence/string_set_device.h include/seqan/sequence/string_set_owner.h include/seqan/sequence/string_set_segment.h include/seqan/sequence/string_set_view.h @@ -649,12 +651,8 @@ include/seqan/system/file_directory.h include/seqan/system/file_forwards.h include/seqan/system/file_sync.h include/seqan/system/system_base.h -include/seqan/system/system_condition.h -include/seqan/system/system_critical_section.h -include/seqan/system/system_event.h +include/seqan/system/system_event_win.h include/seqan/system/system_forwards.h -include/seqan/system/system_mutex.h -include/seqan/system/system_thread.h include/seqan/tabix_io.h include/seqan/tabix_io/tabix_index_tbi.h include/seqan/translation.h @@ -705,6 +703,7 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/class_BedRecord.html %%PORTDOCS%%%%DOCSDIR%%/html/class_BedRgb.html %%PORTDOCS%%%%DOCSDIR%%/html/class_BetaDistribution.html +%%PORTDOCS%%%%DOCSDIR%%/html/class_BidirectionalIndex.html %%PORTDOCS%%%%DOCSDIR%%/html/class_BlastIOContext.html %%PORTDOCS%%%%DOCSDIR%%/html/class_BlastMatch.html %%PORTDOCS%%%%DOCSDIR%%/html/class_BlastMatchField.html @@ -805,6 +804,7 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/class_RankSupportBitString.html %%PORTDOCS%%%%DOCSDIR%%/html/class_ReadStoreElement.html %%PORTDOCS%%%%DOCSDIR%%/html/class_Repeat.html +%%PORTDOCS%%%%DOCSDIR%%/html/class_RevTextFibre.html %%PORTDOCS%%%%DOCSDIR%%/html/class_RightArrayBinaryTree.html %%PORTDOCS%%%%DOCSDIR%%/html/class_RuntimeError.html %%PORTDOCS%%%%DOCSDIR%%/html/class_Score.html @@ -1042,6 +1042,7 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/demos/dox/stream/lexical_cast.cpp.stdout %%PORTDOCS%%%%DOCSDIR%%/html/demos/tutorial/sam_and_bam_io/example.sam %%PORTDOCS%%%%DOCSDIR%%/html/demos/tutorial/sam_and_bam_io/solution1.cpp +%%PORTDOCS%%%%DOCSDIR%%/html/enum_AminoAcidScoreMatrixID.html %%PORTDOCS%%%%DOCSDIR%%/html/enum_ArgParseArgument_58_58ArgumentType.html %%PORTDOCS%%%%DOCSDIR%%/html/enum_ArgumentParser_58_58ParseResult.html %%PORTDOCS%%%%DOCSDIR%%/html/enum_BamFlags.html @@ -1291,6 +1292,7 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_RnaStringComplement.html %%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_RnaStringReverse.html %%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_RnaStringReverseComplement.html +%%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_SelectableAminoAcidMatrix.html %%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_SimpleScoreTypedef.html %%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_TraceBack.html %%PORTDOCS%%%%DOCSDIR%%/html/global_typedef_UnicodeString.html @@ -1390,8 +1392,10 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/js/lang_entities.js %%PORTDOCS%%%%DOCSDIR%%/html/js/less.min.js %%PORTDOCS%%%%DOCSDIR%%/html/js/link.data.js +%%PORTDOCS%%%%DOCSDIR%%/html/js/module_tree.js %%PORTDOCS%%%%DOCSDIR%%/html/js/rubydoc_custom.js %%PORTDOCS%%%%DOCSDIR%%/html/js/search.data.js +%%PORTDOCS%%%%DOCSDIR%%/html/js/search.data.module.js %%PORTDOCS%%%%DOCSDIR%%/html/js/search.engine.js %%PORTDOCS%%%%DOCSDIR%%/html/js/version.js %%PORTDOCS%%%%DOCSDIR%%/html/lib/3L/3L.less @@ -1424,6 +1428,8 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap-multiselect/knockout-examples.html %%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap-multiselect/less/bootstrap-multiselect.less %%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap-multiselect/tests.html +%%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap-treeview/css/bootstrap-treeview.css +%%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap-treeview/js/bootstrap-treeview.js %%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap/css/bootstrap.css %%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap/css/bootstrap.min.css %%PORTDOCS%%%%DOCSDIR%%/html/lib/bootstrap/fonts/glyphicons-halflings-regular.eot @@ -1652,20 +1658,23 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/lib/jquery-bbq/unit/unit.js %%PORTDOCS%%%%DOCSDIR%%/html/lib/styles.less %%PORTDOCS%%%%DOCSDIR%%/html/list.html -%%PORTDOCS%%%%DOCSDIR%%/html/macro_PLATFORM_95CUDA.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_COMPILER_95CLANG.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_COMPILER_95GCC.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_COMPILER_95LINTEL.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_COMPILER_95MSVC.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_COMPILER_95WINTEL.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_PLATFORM_95GCC.html -%%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95DEVICE.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95ENABLE_95PARALLELISM.html -%%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95GLOBAL.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95HAS_95BZIP2.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95HAS_95ZLIB.html -%%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95HOST.html -%%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95HOST_95DEVICE.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95IS_9532_95BIT.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95IS_9564_95BIT.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95OMP_95PRAGMA.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95PATH_95TO_95ROOT.html %%PORTDOCS%%%%DOCSDIR%%/html/macro_SEQAN_95TEMP_95FILENAME.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_STDLIB_95GNU.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_STDLIB_95LLVM.html +%%PORTDOCS%%%%DOCSDIR%%/html/macro_STDLIB_95VS.html %%PORTDOCS%%%%DOCSDIR%%/html/page_DemoConstraintIterator.html %%PORTDOCS%%%%DOCSDIR%%/html/page_DemoIndexCountChildren.html %%PORTDOCS%%%%DOCSDIR%%/html/page_DemoMaximalRepeats.html @@ -1784,6 +1793,8 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/specialization_MaxRepeatsIterator.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModCyclicShapeModifiedIterator.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModCyclicShapeModifiedString.html +%%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModPaddingIterator.html +%%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModPaddingString.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModReverseIterator.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModReverseString.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_ModViewModifiedIterator.html @@ -1829,6 +1840,7 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/specialization_RoiFileIn.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_RoiFileOut.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_Sampler.html +%%PORTDOCS%%%%DOCSDIR%%/html/specialization_ScoreSimdWrapper.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_SeqFileIn.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_SeqFileOut.html %%PORTDOCS%%%%DOCSDIR%%/html/specialization_SetHorspoolPattern.html @@ -1899,5 +1911,3 @@ share/cmake/Modules/FindSeqAn.cmake %%PORTDOCS%%%%DOCSDIR%%/html/tag_Nothing.html %%PORTDOCS%%%%DOCSDIR%%/html/variable_BAM_95FLAG_95SUPPLEMENTARY_32_61_320x0800.html %%PORTDOCS%%%%DOCSDIR%%/html/variable_LibraryStoreElementstd.html -%%PORTDOCS%%@dir %%DOCSDIR%%/html/docs/seqan -%%PORTDOCS%%@dir %%DOCSDIR%%/html/lists From owner-svn-ports-head@freebsd.org Wed Sep 14 19:43:30 2016 Return-Path: Delivered-To: svn-ports-head@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 85850BDA96A; Wed, 14 Sep 2016 19:43:30 +0000 (UTC) (envelope-from stephen@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 558241B45; Wed, 14 Sep 2016 19:43:30 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJhTcw084693; Wed, 14 Sep 2016 19:43:29 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJhTej084691; Wed, 14 Sep 2016 19:43:29 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201609141943.u8EJhTej084691@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Wed, 14 Sep 2016 19:43:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422157 - head/math/octave-forge-io X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:43:30 -0000 Author: stephen Date: Wed Sep 14 19:43:29 2016 New Revision: 422157 URL: https://svnweb.freebsd.org/changeset/ports/422157 Log: - Update to 2.4.3. Modified: head/math/octave-forge-io/Makefile head/math/octave-forge-io/distinfo Modified: head/math/octave-forge-io/Makefile ============================================================================== --- head/math/octave-forge-io/Makefile Wed Sep 14 19:38:58 2016 (r422156) +++ head/math/octave-forge-io/Makefile Wed Sep 14 19:43:29 2016 (r422157) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-io -PORTVERSION= 2.4.2 +PORTVERSION= 2.4.3 PORTEPOCH= 1 CATEGORIES= math Modified: head/math/octave-forge-io/distinfo ============================================================================== --- head/math/octave-forge-io/distinfo Wed Sep 14 19:38:58 2016 (r422156) +++ head/math/octave-forge-io/distinfo Wed Sep 14 19:43:29 2016 (r422157) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467931651 -SHA256 (octave-forge/io-2.4.2.tar.gz) = 24f57d9f226e0a95daad9c53ff021ec8c17ebcb2098acf040042e1a2a8503a47 -SIZE (octave-forge/io-2.4.2.tar.gz) = 203600 +TIMESTAMP = 1473881962 +SHA256 (octave-forge/io-2.4.3.tar.gz) = 0d1db61eee15c69a96b893b4c2b3930e832a41ffd6f60294a4b55471ab1ae491 +SIZE (octave-forge/io-2.4.3.tar.gz) = 204482 From owner-svn-ports-head@freebsd.org Wed Sep 14 19:44:11 2016 Return-Path: Delivered-To: svn-ports-head@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 67497BDA9BE; Wed, 14 Sep 2016 19:44:11 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4A7431C40; Wed, 14 Sep 2016 19:44:11 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 433D01FFE; Wed, 14 Sep 2016 19:44:11 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 085CA22B24; Wed, 14 Sep 2016 19:44:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id XZjrWS2XqX7M; Wed, 14 Sep 2016 19:44:08 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com BE02A22B1D To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> From: Bryan Drewery Organization: FreeBSD Message-ID: Date: Wed, 14 Sep 2016 12:44:06 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="emG2rOEqtsG9x0fvgrKJwpB6pxExPDw9S" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:44:11 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --emG2rOEqtsG9x0fvgrKJwpB6pxExPDw9S Content-Type: multipart/mixed; boundary="ucHSeIkhxVWJpa6xr5Ii32TBekF3fcswp"; protected-headers="v1" From: Bryan Drewery To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> In-Reply-To: <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> --ucHSeIkhxVWJpa6xr5Ii32TBekF3fcswp Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/14/16 12:28 PM, John Marino wrote: > On 9/14/2016 14:25, Bryan Drewery wrote: >> Author: bdrewery >> Date: Wed Sep 14 19:25:19 2016 >> New Revision: 422154 >> URL: https://svnweb.freebsd.org/changeset/ports/422154 >> >> Log: >> Mark deprecated as it has no maintainer and is already in base. >> >> With hat: portmgr >> >=20 >=20 > Really? >=20 > Very mature and classy. > I solved a problem and you're flexing muscles. >=20 > Are all portmanagers on board with this? >=20 > John >=20 > P.S. If you want, I'll get into a commit war and take it back. You'll = win. >=20 Ports need maintainers. It is standard practice to deprecate ports without a maintainer, though usually after a much longer time frame. We can either do this right away or let this rot for that period and waste time on the package build cluster. Portmgr's who have weighed in on this are in agreement that the port never should have been committing and dropped like it was, and there is growing consensus that it should just be deleted. So I've marked it deprecated. It's also questionable why we need this at all since it is in base already and is not receiving updates. If we had a packaged base system it would perhaps make sense to have a port, but we're not there yet. I have not seen any valid justification for the port in the first place. Also, there are no "laws" here except for the CoC. There are only conventions and guidelines, and portmgr has the ultimate say over ports as a whole. This clearly was committed/dropped against the spirit of the conventions, regardless of any pedantic reading of any guideline. --=20 Regards, Bryan Drewery --ucHSeIkhxVWJpa6xr5Ii32TBekF3fcswp-- --emG2rOEqtsG9x0fvgrKJwpB6pxExPDw9S Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2aiHAAoJEDXXcbtuRpfP4HQIAKLvt/mWDp/nJiElYSR3YTlW k0UrXKCVlPC/cNiPMi2Yaiz5ajCxJccZlOFjCIWXd8hPlywJK14Nw0j1vx8JL5yW VbXrmZxmcIGLwSI8g8FnT0i4MillxwqJtYWwVbELBIKj/zgMqFu6/Ulcp0IhDpXi ZsLNg6D5zIAq4Q5NJ+2euqql3WpMbwPKpIsMytL09WzrJjRx72b5Q5x8fSbpoDie PcTegx6A9grbkKBtVk/MRB4jRezWQeK+p5CW0/qJorU7pZyYutQv/dibKINn0RRk DOV8uO22S+KZGuYiOisobA4AOnZnAuEhZFdpW1/Qu7shZJn6AmZoVmWXqo4MuVM= =MMc8 -----END PGP SIGNATURE----- --emG2rOEqtsG9x0fvgrKJwpB6pxExPDw9S-- From owner-svn-ports-head@freebsd.org Wed Sep 14 19:44:55 2016 Return-Path: Delivered-To: svn-ports-head@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 96535BDAA0D; Wed, 14 Sep 2016 19:44:55 +0000 (UTC) (envelope-from tijl@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 66C9A1D27; Wed, 14 Sep 2016 19:44:55 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJisvm084848; Wed, 14 Sep 2016 19:44:54 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJisbn084847; Wed, 14 Sep 2016 19:44:54 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201609141944.u8EJisbn084847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 14 Sep 2016 19:44:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422158 - head/www/seamonkey-i18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:44:55 -0000 Author: tijl Date: Wed Sep 14 19:44:54 2016 New Revision: 422158 URL: https://svnweb.freebsd.org/changeset/ports/422158 Log: Fix extract broken in r421615. Modified: head/www/seamonkey-i18n/Makefile Modified: head/www/seamonkey-i18n/Makefile ============================================================================== --- head/www/seamonkey-i18n/Makefile Wed Sep 14 19:43:29 2016 (r422157) +++ head/www/seamonkey-i18n/Makefile Wed Sep 14 19:44:54 2016 (r422158) @@ -50,7 +50,7 @@ pre-everything:: do-extract: @${MKDIR} ${WRKSRC} @for lang in ${SEAMONKEY_I18N_}; do \ - if ! (${UNZIP_CMD} -qo ${_DISTDIR}/seamonkey-${PORTVERSION}.$$lang.langpack.xpi -d ${WRKSRC}/langpack-$$lang@seamonkey.mozilla.org);\ + if ! (${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/seamonkey-${PORTVERSION}.$$lang.langpack.xpi -d ${WRKSRC}/langpack-$$lang@seamonkey.mozilla.org);\ then \ exit 1; \ fi; \ From owner-svn-ports-head@freebsd.org Wed Sep 14 19:46:39 2016 Return-Path: Delivered-To: svn-ports-head@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 5699BBDAACD; Wed, 14 Sep 2016 19:46:39 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C0D01E2D; Wed, 14 Sep 2016 19:46:38 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 979FEBDDFF; Wed, 14 Sep 2016 21:46:36 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 79353BDDF8; Wed, 14 Sep 2016 21:46:36 +0200 (CEST) Subject: Re: svn commit: r422151 - head/devel/php70-APCu To: Guido Falsi , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141913.u8EJD7pP073092@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> Date: Wed, 14 Sep 2016 21:46:34 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609141913.u8EJD7pP073092@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="kEllQMEBlU67UaXWX3lIv1A4LlnWc5TGb" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:46:39 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --kEllQMEBlU67UaXWX3lIv1A4LlnWc5TGb Content-Type: multipart/mixed; boundary="uEOeGfIKrxkiqwQqOBdlc6bGCAF90Rd15"; protected-headers="v1" From: Mathieu Arnold To: Guido Falsi , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> Subject: Re: svn commit: r422151 - head/devel/php70-APCu References: <201609141913.u8EJD7pP073092@repo.freebsd.org> In-Reply-To: <201609141913.u8EJD7pP073092@repo.freebsd.org> --uEOeGfIKrxkiqwQqOBdlc6bGCAF90Rd15 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 21:13, Guido Falsi a =C3=A9crit : > Author: madpilot > Date: Wed Sep 14 19:13:07 2016 > New Revision: 422151 > URL: https://svnweb.freebsd.org/changeset/ports/422151 > > Log: > Add PHP_DEFAULT=3D7.0 so that a package is build on the cluster with > default ports configuration. > =20 > PR: 212684 > Submitted by: joshruehlig at gmail.com > Approved by: Daniel Ylitalo (maintainer) > Please, revert this. We do not force PHP versions of modules/extensions, either you have the right default version, and it will build and work, or you don't have the right default version and it will be a two leg stool. --=20 Mathieu Arnold --uEOeGfIKrxkiqwQqOBdlc6bGCAF90Rd15-- --kEllQMEBlU67UaXWX3lIv1A4LlnWc5TGb Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2akcXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IHTIP/3HJkNp0Rjsaki9sOZ/EF/VD YM5aC+7yt6L+kn9yj1tpR+lLoObNHwOAefcb0tzgrxVrGhB8xtrMQH2bADyM7lON UhLnxqTuXQyMdsXrKApcL3ZWoZ42ELyI6zzvavB5Mxm3l3D2wfXp4Gv9uacNq6c0 D83bptm86QjblzqfeI+wlI1M+G0kJ7gAmCtZ9lOIVDkHWJpv+boqhDr0DkgLpTpL PuKwrZfYRhord40EAl9imwGVpEzAl8j0A+c1SCjO2jS30cUXfzJpYed/Yfe1Ehh1 rflPBC4gRmapu1HIMg0HssaHA6Y2PG3G5NXMAyneqGZBukKF1o5LMyWMRq0ZsXyN gHHpARPTp9Xc6rhSob1Cv9ZM6ICbkJIJZ0BE3RFcQR9mX6IkY2jqvlJFTR9jDB7F 7YhDEBA+PFBmJtFoX4rSFUlkJCFC3ihbeglfpwrRjAgp9IKqbDgH7Aozhdk6NdOl sZj2Biafm9EMftpv+uBdwkRt6h4DchjApt7VWeTAcwzmTItOMW72PodsxFUS0MU2 1GKSKGGX9hEFSuf9phMBXiKl0viWx9LntiuiFJOI2JE3YboZQ94LL1T+zVYGOe5P MTXV17tsb6oQWWIO6v1dCDFxGLzLO3oVCursWUXJSVFN2J5XpBFUUy+QPdgE4hrX OKLetJslfslc3neHLSo1 =1tuj -----END PGP SIGNATURE----- --kEllQMEBlU67UaXWX3lIv1A4LlnWc5TGb-- From owner-svn-ports-head@freebsd.org Wed Sep 14 19:47:44 2016 Return-Path: Delivered-To: svn-ports-head@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 CF594BDAB80; Wed, 14 Sep 2016 19:47:44 +0000 (UTC) (envelope-from pawel@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 9F796102C; Wed, 14 Sep 2016 19:47:44 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJlhrl085073; Wed, 14 Sep 2016 19:47:43 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJlhvQ085071; Wed, 14 Sep 2016 19:47:43 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609141947.u8EJlhvQ085071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 14 Sep 2016 19:47:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422159 - head/net/py-s3transfer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:47:44 -0000 Author: pawel Date: Wed Sep 14 19:47:43 2016 New Revision: 422159 URL: https://svnweb.freebsd.org/changeset/ports/422159 Log: Update to version 0.1.4 Changelog: https://github.com/boto/s3transfer/blob/0.1.4/CHANGELOG.rst PR: 212685 Submitted by: Bradley T. Hughes (maintainer) Modified: head/net/py-s3transfer/Makefile head/net/py-s3transfer/distinfo Modified: head/net/py-s3transfer/Makefile ============================================================================== --- head/net/py-s3transfer/Makefile Wed Sep 14 19:44:54 2016 (r422158) +++ head/net/py-s3transfer/Makefile Wed Sep 14 19:47:43 2016 (r422159) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= s3transfer -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.4 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-s3transfer/distinfo ============================================================================== --- head/net/py-s3transfer/distinfo Wed Sep 14 19:44:54 2016 (r422158) +++ head/net/py-s3transfer/distinfo Wed Sep 14 19:47:43 2016 (r422159) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473665178 -SHA256 (s3transfer-0.1.3.tar.gz) = af2e541ac584a1e88d3bca9529ae784d2b25e5d448685e0ee64f4c0e1e017ed2 -SIZE (s3transfer-0.1.3.tar.gz) = 83873 +TIMESTAMP = 1473844853 +SHA256 (s3transfer-0.1.4.tar.gz) = c41d039ab9204e9eea72a6098ca5092ed001f2820274b80be622dbe582ab2d41 +SIZE (s3transfer-0.1.4.tar.gz) = 87620 From owner-svn-ports-head@freebsd.org Wed Sep 14 19:48:53 2016 Return-Path: Delivered-To: svn-ports-head@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 C9F28BDAC39; Wed, 14 Sep 2016 19:48:53 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6A1F1144; Wed, 14 Sep 2016 19:48:53 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id ACCB643CF9; Wed, 14 Sep 2016 14:48:48 -0500 (CDT) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> Reply-To: marino@freebsd.org From: John Marino Message-ID: Date: Wed, 14 Sep 2016 14:48:50 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-0, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:48:53 -0000 On 9/14/2016 14:44, Bryan Drewery wrote: > On 9/14/16 12:28 PM, John Marino wrote: >> On 9/14/2016 14:25, Bryan Drewery wrote: >>> Author: bdrewery >>> Date: Wed Sep 14 19:25:19 2016 >>> New Revision: 422154 >>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>> >>> Log: >>> Mark deprecated as it has no maintainer and is already in base. >>> >>> With hat: portmgr >>> >> >> >> Really? >> >> Very mature and classy. >> I solved a problem and you're flexing muscles. >> >> Are all portmanagers on board with this? >> >> John >> >> P.S. If you want, I'll get into a commit war and take it back. You'll win. >> > > Ports need maintainers. It is standard practice to deprecate ports > without a maintainer, though usually after a much longer time frame. We > can either do this right away or let this rot for that period and waste > time on the package build cluster. Portmgr's who have weighed in on > this are in agreement that the port never should have been committing > and dropped like it was, and there is growing consensus that it should > just be deleted. So I've marked it deprecated. > > It's also questionable why we need this at all since it is in base > already and is not receiving updates. If we had a packaged base system > it would perhaps make sense to have a port, but we're not there yet. I > have not seen any valid justification for the port in the first place. > > Also, there are no "laws" here except for the CoC. There are only > conventions and guidelines, and portmgr has the ultimate say over ports > as a whole. This clearly was committed/dropped against the spirit of > the conventions, regardless of any pedantic reading of any guideline. > I find it extremely doubtful you don't understand the point of the fix. I'm trying to decide whether or not to start shucking off many more (all?) of the 70 ports that I current maintain because I really don't need this vindictive grief. I thought we were past all this. JOhn --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 19:50:48 2016 Return-Path: Delivered-To: svn-ports-head@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 F240DBDADAC; Wed, 14 Sep 2016 19:50:48 +0000 (UTC) (envelope-from antoine@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 C084B13D1; Wed, 14 Sep 2016 19:50:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EJolGx085396; Wed, 14 Sep 2016 19:50:47 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EJolO7085386; Wed, 14 Sep 2016 19:50:47 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609141950.u8EJolO7085386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 19:50:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:50:49 -0000 Author: antoine Date: Wed Sep 14 19:50:46 2016 New Revision: 422160 URL: https://svnweb.freebsd.org/changeset/ports/422160 Log: Revert recent strfile changes, strfile is already in base With hat: portmgr Modified: head/chinese/fortune/Makefile head/french/fortune-mod-zarathoustra/Makefile head/misc/fortune-mod-bible/Makefile head/misc/fortune-mod-bofh/Makefile head/misc/fortune-mod-culmea-culmilor/Makefile.fortune head/misc/fortune-mod-epictetus/Makefile head/misc/fortune-mod-futurama/Makefile head/misc/fortuneit/Makefile head/polish/fortunepl/Makefile head/russian/fortuneru/Makefile Modified: head/chinese/fortune/Makefile ============================================================================== --- head/chinese/fortune/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/chinese/fortune/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -14,14 +14,20 @@ COMMENT= Classic fortune file in Chinese BROKEN= Unfetchable (google code has gone away) RUN_DEPENDS= autob5:chinese/autoconvert -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRFILE= ${LOCALBASE}/bin/fortune_strfile PROJECTHOST= chinese-fortune NO_BUILD= yes USES= tar:bzip2 gmake SUB_FILES= pkg-message +.if exists(/usr/games/strfile) +STRFILE= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRFILE= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif + post-patch: @${REINPLACE_CMD} -e "s|/usr/|${PREFIX}/|" \ -e "s|strfile|${STRFILE}|" \ Modified: head/french/fortune-mod-zarathoustra/Makefile ============================================================================== --- head/french/fortune-mod-zarathoustra/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/french/fortune-mod-zarathoustra/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -11,15 +11,19 @@ COMMENT= Compilation of quotes from Niet SUB_FILES= pkg-message -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRCMD= ${LOCALBASE}/bin/fortune_strfile +.if exists(/usr/games/strfile) +STRCMD= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRCMD= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif do-build: - (cd ${WRKSRC} && ${STRCMD} zarathoustra) + @cd ${WRKSRC} && ${STRCMD} zarathoustra do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/zarathoustra* \ - ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/zarathoustra* ${STAGEDIR}${PREFIX}/share/games/fortune .include Modified: head/misc/fortune-mod-bible/Makefile ============================================================================== --- head/misc/fortune-mod-bible/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/misc/fortune-mod-bible/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -7,28 +7,32 @@ PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= SF/fortunebible/fortunebible/Genesis DISTNAME= bible -DIST_SUBDIR= ${PORTNAME} MAINTAINER= doug@polands.org COMMENT= King James V Bible in fortune file format -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile - +DIST_SUBDIR= ${PORTNAME} NO_WRKSUBDIR= yes PKGMESSAGE= ${WRKDIR}/pkg-message USES= tar:bzip2 SUB_FILES+= pkg-message -_STRFILE= ${LOCALBASE}/bin/fortune_strfile +.if exists(/usr/games/strfile) +_STRFILE= /usr/games/strfile +.elif exists(/usr/bin/strfile) +_STRFILE= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif post-extract: ${RM} ${WRKSRC}/bible.dat do-build: - (cd ${WRKSRC} && ${_STRFILE} -C bible) + @cd ${WRKSRC} && ${_STRFILE} -C bible do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/bible* \ - ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/bible* ${STAGEDIR}${PREFIX}/share/games/fortune + .include Modified: head/misc/fortune-mod-bofh/Makefile ============================================================================== --- head/misc/fortune-mod-bofh/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/misc/fortune-mod-bofh/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -12,20 +12,24 @@ DISTFILES= bofh-fortune-mod${PORTVERSION MAINTAINER= onatan@gmail.com COMMENT= Compilation of excuses from the "Bastard Operator From Hell" -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRFILE= ${LOCALBASE}/bin/fortune_strfile - WRKSRC= ${WRKDIR}/bofh-fortune-mod2.0 PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message +.if exists(/usr/games/strfile) +STRFILE= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRFILE= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif + do-build: - ${STRFILE} ${WRKSRC}/bofh + @${STRFILE} ${WRKSRC}/bofh do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/bofh* \ - ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/bofh* ${STAGEDIR}${PREFIX}/share/games/fortune .include Modified: head/misc/fortune-mod-culmea-culmilor/Makefile.fortune ============================================================================== --- head/misc/fortune-mod-culmea-culmilor/Makefile.fortune Wed Sep 14 19:47:43 2016 (r422159) +++ head/misc/fortune-mod-culmea-culmilor/Makefile.fortune Wed Sep 14 19:50:46 2016 (r422160) @@ -2,9 +2,13 @@ NO_WRKSUBDIR= yes -_STRFILE= ${LOCALBASE}/bin/fortune_strfile -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile - +.if exists(/usr/games/strfile) +_STRFILE= /usr/games/strfile +.elif exists(/usr/bin/strfile) +_STRFILE= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif _STRFILE_ARGS?= -C _FORTUNE_DIR= share/games/fortune FORTUNE_DIR= ${PREFIX}/${_FORTUNE_DIR} @@ -25,22 +29,19 @@ post-extract: PKGMESSAGE= ${WRKDIR}/pkg-message do-build: - (cd ${WRKSRC} && ${_STRFILE} ${_STRFILE_ARGS} ${PORTNAME}) - if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ + @cd ${WRKSRC} && ${_STRFILE} ${_STRFILE_ARGS} ${PORTNAME} + @if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ cd ${WRKSRC} && ${_STRFILE} ${_STRFILE_ARGS} ${PORTNAME}-o; \ fi - do-install: @${MKDIR} ${STAGEDIR}${FORTUNE_DIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} \ - ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.dat \ - ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE}.dat + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.dat ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE}.dat if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-o ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE_O}; \ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-o.dat ${STAGEDIR}${FORTUNE_DIR}/${FORTUNE_FILE_O}.dat; \ fi - if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ + @if [ -f ${WRKSRC}/${PORTNAME}-o ]; then \ ${ECHO_CMD} ${_FORTUNE_DIR}/${FORTUNE_FILE_O} >> ${TMPPLIST}; \ ${ECHO_CMD} ${_FORTUNE_DIR}/${FORTUNE_FILE_O}.dat >> ${TMPPLIST}; \ fi Modified: head/misc/fortune-mod-epictetus/Makefile ============================================================================== --- head/misc/fortune-mod-epictetus/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/misc/fortune-mod-epictetus/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -12,21 +12,25 @@ COMMENT= Quotes from Epictetus LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRFILE= ${LOCALBASE}/bin/fortune_strfile - USE_GITHUB= yes GH_ACCOUNT= akosela PLIST_FILES= share/games/fortune/epictetus \ share/games/fortune/epictetus.dat +.if exists(/usr/games/strfile) +STRFILE= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRFILE= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif + do-build: - (cd ${WRKSRC} && ${STRFILE} epictetus) + @(cd ${WRKSRC} && ${STRFILE} epictetus) do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/epictetus* \ - ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/epictetus* ${STAGEDIR}${PREFIX}/share/games/fortune .include Modified: head/misc/fortune-mod-futurama/Makefile ============================================================================== --- head/misc/fortune-mod-futurama/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/misc/fortune-mod-futurama/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -11,20 +11,24 @@ MASTER_SITES= http://www.netmeister.org/ MAINTAINER= freebsd@skysmurf.nl COMMENT= Compilation of quotes from the TV series "Futurama" -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile - USES= tar:bzip2 SUB_FILES= pkg-message -STRFILE= ${LOCALBASE}/bin/fortune_strfile PLIST_FILES= share/games/fortune/futurama share/games/fortune/futurama.dat +.if exists(/usr/games/strfile) +STRFILE= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRFILE= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif + do-build: - ${STRFILE} ${WRKSRC}/futurama + @${STRFILE} ${WRKSRC}/futurama do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune - ${INSTALL_DATA} ${WRKSRC}/futurama* \ - ${STAGEDIR}${PREFIX}/share/games/fortune + ${INSTALL_DATA} ${WRKSRC}/futurama* ${STAGEDIR}${PREFIX}/share/games/fortune .include Modified: head/misc/fortuneit/Makefile ============================================================================== --- head/misc/fortuneit/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/misc/fortuneit/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -10,8 +10,13 @@ DISTNAME= fortune-it-${PORTVERSION} MAINTAINER= gmarco@gufi.org COMMENT= Funny fortune file in Italian -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRCMD= ${LOCALBASE}/bin/fortune_strfile +.if exists(/usr/games/strfile) +STRCMD= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRCMD= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif FORTUNEFILES= adams banner computer definizioni formiche italia itatrek \ jackfr leggi luke luttazzi norm paolotedeschi zuse \ Modified: head/polish/fortunepl/Makefile ============================================================================== --- head/polish/fortunepl/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/polish/fortunepl/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -14,11 +14,13 @@ PATCHFILES= fortunes-pl_${PORTVERSION}.f MAINTAINER= ports@FreeBSD.org COMMENT= Lot of funny Polish fortune files -BROKEN= unfetchable - -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRCMD= ${LOCALBASE}/bin/fortune_strfile - +.if exists(/usr/games/strfile) +STRCMD= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRCMD= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif WRKSRC= ${WRKDIR}/fortunes-pl-${PORTVERSION}.orig FORTUNES= 7thguard advocacy apcoh argante bajki bok cnp cows \ @@ -33,14 +35,12 @@ FORTUNES= 7thguard advocacy apcoh argant znaki_zodiaku do-patch: - ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.freebsd.pl \ - ${WRKSRC}/freebsd.pl - ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.filozofia \ - ${WRKSRC}/filozofia + ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.freebsd.pl ${WRKSRC}/freebsd.pl + ${CP} ${DISTDIR}/fortunes-pl_${PORTVERSION}.filozofia ${WRKSRC}/filozofia do-build: .for FILE in ${FORTUNES} - ${STRCMD} ${WRKSRC}/${FILE} + @${STRCMD} ${WRKSRC}/${FILE} .endfor do-install: Modified: head/russian/fortuneru/Makefile ============================================================================== --- head/russian/fortuneru/Makefile Wed Sep 14 19:47:43 2016 (r422159) +++ head/russian/fortuneru/Makefile Wed Sep 14 19:50:46 2016 (r422160) @@ -5,27 +5,29 @@ PORTNAME= fortuneru PORTVERSION= 20090524 PORTREVISION= 1 CATEGORIES= russian -MASTER_SITES= ftp://bestia.kiev.ua/pub/files/ \ - ftp://hosting.cvu.kiev.ua/pub/files/ +MASTER_SITES= ftp://bestia.kiev.ua/pub/files/ ftp://hosting.cvu.kiev.ua/pub/files/ DISTNAME= fortune.ru-${PORTVERSION} MAINTAINER= obezpalko@gmail.com COMMENT= Fortunes in Russian -BROKEN= unfetchable - -BUILD_DEPENDS= fortune_strfile:misc/fortune_strfile -STRCMD= ${LOCALBASE}/bin/fortune_strfile PKGMESSAGE= ${WRKDIR}/pkg-message +.if exists(/usr/games/strfile) +STRCMD= /usr/games/strfile +.elif exists(/usr/bin/strfile) +STRCMD= /usr/bin/strfile +.else +IGNORE= needs strfile command. Please install games distribution of base system +.endif + do-build: - for fortune in ${WRKSRC}/* ; do \ + @for fortune in ${WRKSRC}/* ; do \ ${STRCMD} $$fortune ; \ done do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune/rus - ${INSTALL_DATA} ${WRKSRC}/* \ - ${STAGEDIR}${PREFIX}/share/games/fortune/rus + ${INSTALL_DATA} ${WRKSRC}/* ${STAGEDIR}${PREFIX}/share/games/fortune/rus .include From owner-svn-ports-head@freebsd.org Wed Sep 14 19:51:17 2016 Return-Path: Delivered-To: svn-ports-head@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 7283BBDADFC; Wed, 14 Sep 2016 19:51:17 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5824E1577; Wed, 14 Sep 2016 19:51:17 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 4845316AD; Wed, 14 Sep 2016 19:51:17 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 1DA5F22BDE; Wed, 14 Sep 2016 19:51:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id r1Munk9fqjbE; Wed, 14 Sep 2016 19:51:14 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com CEDF122BBA To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> From: Bryan Drewery Organization: FreeBSD Message-ID: Date: Wed, 14 Sep 2016 12:51:03 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Uwu6Nuea6eSU3CHQWncv4E5SF4OMhSN1c" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:51:17 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Uwu6Nuea6eSU3CHQWncv4E5SF4OMhSN1c Content-Type: multipart/mixed; boundary="H1dddGKoWF9sbhbP75ifkvrtD8Gg1N4fD"; protected-headers="v1" From: Bryan Drewery To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> In-Reply-To: --H1dddGKoWF9sbhbP75ifkvrtD8Gg1N4fD Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/14/16 12:48 PM, John Marino wrote: > On 9/14/2016 14:44, Bryan Drewery wrote: >> On 9/14/16 12:28 PM, John Marino wrote: >>> On 9/14/2016 14:25, Bryan Drewery wrote: >>>> Author: bdrewery >>>> Date: Wed Sep 14 19:25:19 2016 >>>> New Revision: 422154 >>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>>> >>>> Log: >>>> Mark deprecated as it has no maintainer and is already in base. >>>> >>>> With hat: portmgr >>>> >>> >>> >>> Really? >>> >>> Very mature and classy. >>> I solved a problem and you're flexing muscles. >>> >>> Are all portmanagers on board with this? >>> >>> John >>> >>> P.S. If you want, I'll get into a commit war and take it back. >>> You'll win. >>> >> >> Ports need maintainers. It is standard practice to deprecate ports >> without a maintainer, though usually after a much longer time frame. = We >> can either do this right away or let this rot for that period and wast= e >> time on the package build cluster. Portmgr's who have weighed in on >> this are in agreement that the port never should have been committing >> and dropped like it was, and there is growing consensus that it should= >> just be deleted. So I've marked it deprecated. >> >> It's also questionable why we need this at all since it is in base >> already and is not receiving updates. If we had a packaged base syste= m >> it would perhaps make sense to have a port, but we're not there yet. = I >> have not seen any valid justification for the port in the first place.= >> >> Also, there are no "laws" here except for the CoC. There are only >> conventions and guidelines, and portmgr has the ultimate say over port= s >> as a whole. This clearly was committed/dropped against the spirit of >> the conventions, regardless of any pedantic reading of any guideline. >> >=20 > I find it extremely doubtful you don't understand the point of the fix.= > I'm trying to decide whether or not to start shucking off many more > (all?) of the 70 ports that I current maintain because I really don't > need this vindictive grief. I thought we were past all this. >=20 > JOhn >=20 John, Please take a deep breath. This is not personal, please do not make it s= o. Please review https://www.freebsd.org/internal/code-of-conduct.html "Do not make it personal. Do not take it personally." --=20 Regards, Bryan Drewery --H1dddGKoWF9sbhbP75ifkvrtD8Gg1N4fD-- --Uwu6Nuea6eSU3CHQWncv4E5SF4OMhSN1c Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2aonAAoJEDXXcbtuRpfPYQ4H+QHGmnSEMrITMkBpr7m8TmOb 72uAO632iVjuMmYfNvWEZvGtsCD911Ksf8vIC9G73VPGHQQevLHKuDaRAn6XUJOr OHUBx3ynDqWBtXZ/9rWa3fpFUXMXUM0xC0B91oZs4G5OKv+Gb+LsZAml5SlFH/j8 a/9Qwdrq5AEGhO9fFkbHHGFIjCnGzjj1Si8O+0Fys/g8qW8q3CVURolQzmLJ+I4b /nCZYtQNSvNQRd2avduTK+HNZbIyccy6qI/G+8SAi+L5zmIupDJGgozU3au6GeJ7 Kx8Vf+IQtO9pigQwLDEzVH1lpqw5EL5h3Rlft7uzO30DegUNes3I6Vl9uz8Jc0U= =d0gi -----END PGP SIGNATURE----- --Uwu6Nuea6eSU3CHQWncv4E5SF4OMhSN1c-- From owner-svn-ports-head@freebsd.org Wed Sep 14 19:53:08 2016 Return-Path: Delivered-To: svn-ports-head@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 B5911BDA04F; Wed, 14 Sep 2016 19:53:08 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90C4F18C7; Wed, 14 Sep 2016 19:53:08 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id AEF8E43CF9; Wed, 14 Sep 2016 14:53:03 -0500 (CDT) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Bryan Drewery , marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> Reply-To: marino@freebsd.org From: John Marino Message-ID: <82525c0e-187a-eebf-c1b5-5d86175bd3d4@marino.st> Date: Wed, 14 Sep 2016 14:53:05 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-0, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 19:53:08 -0000 On 9/14/2016 14:51, Bryan Drewery wrote: > On 9/14/16 12:48 PM, John Marino wrote: >> On 9/14/2016 14:44, Bryan Drewery wrote: >>> On 9/14/16 12:28 PM, John Marino wrote: >>>> On 9/14/2016 14:25, Bryan Drewery wrote: >>>>> Author: bdrewery >>>>> Date: Wed Sep 14 19:25:19 2016 >>>>> New Revision: 422154 >>>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>>>> >>>>> Log: >>>>> Mark deprecated as it has no maintainer and is already in base. >>>>> >>>>> With hat: portmgr >>>>> >>>> >>>> >>>> Really? >>>> >>>> Very mature and classy. >>>> I solved a problem and you're flexing muscles. >>>> >>>> Are all portmanagers on board with this? >>>> >>>> John >>>> >>>> P.S. If you want, I'll get into a commit war and take it back. >>>> You'll win. >>>> >>> >>> Ports need maintainers. It is standard practice to deprecate ports >>> without a maintainer, though usually after a much longer time frame. We >>> can either do this right away or let this rot for that period and waste >>> time on the package build cluster. Portmgr's who have weighed in on >>> this are in agreement that the port never should have been committing >>> and dropped like it was, and there is growing consensus that it should >>> just be deleted. So I've marked it deprecated. >>> >>> It's also questionable why we need this at all since it is in base >>> already and is not receiving updates. If we had a packaged base system >>> it would perhaps make sense to have a port, but we're not there yet. I >>> have not seen any valid justification for the port in the first place. >>> >>> Also, there are no "laws" here except for the CoC. There are only >>> conventions and guidelines, and portmgr has the ultimate say over ports >>> as a whole. This clearly was committed/dropped against the spirit of >>> the conventions, regardless of any pedantic reading of any guideline. >>> >> >> I find it extremely doubtful you don't understand the point of the fix. >> I'm trying to decide whether or not to start shucking off many more >> (all?) of the 70 ports that I current maintain because I really don't >> need this vindictive grief. I thought we were past all this. >> >> JOhn >> > > John, > > Please take a deep breath. This is not personal, please do not make it so. > > Please review https://www.freebsd.org/internal/code-of-conduct.html > > "Do not make it personal. Do not take it personally." > > I think you and Antoine might have just made my decision for me. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 20:33:03 2016 Return-Path: Delivered-To: svn-ports-head@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 8FDF9BDB036; Wed, 14 Sep 2016 20:33:03 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward4m.cmail.yandex.net (forward4m.cmail.yandex.net [IPv6:2a02:6b8:b030::1b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E6821F5B; Wed, 14 Sep 2016 20:33:02 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from smtp2h.mail.yandex.net (smtp2h.mail.yandex.net [IPv6:2a02:6b8:0:f05::116]) by forward4m.cmail.yandex.net (Yandex) with ESMTP id DEA2420CD5; Wed, 14 Sep 2016 23:32:49 +0300 (MSK) Received: from smtp2h.mail.yandex.net (localhost.localdomain [127.0.0.1]) by smtp2h.mail.yandex.net (Yandex) with ESMTP id 24EEA780CD6; Wed, 14 Sep 2016 23:32:47 +0300 (MSK) Received: by smtp2h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id TjdgtMp4FL-Wluu6xu4; Wed, 14 Sep 2016 23:32:47 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) X-Yandex-Suid-Status: 1 0,1 0,1 0,1 0 Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> From: Boris Samorodov Message-ID: <74591600-69ee-7219-c878-5ae7366b42b8@passap.ru> Date: Wed, 14 Sep 2016 23:32:46 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:33:03 -0000 14.09.2016 22:44, Bryan Drewery пишет: > Ports need maintainers. Agreed. But _need_ is not _must have_. > It is standard practice to deprecate ports without a maintainer Then it is a bad practice. Unless you say "... to deprecate *broken/unwanted/etc* ports ...". But you did not. -- WBR, bsam From owner-svn-ports-head@freebsd.org Wed Sep 14 20:36:19 2016 Return-Path: Delivered-To: svn-ports-head@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 8B641BDB10B; Wed, 14 Sep 2016 20:36:19 +0000 (UTC) (envelope-from antoine@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 66BAB10A8; Wed, 14 Sep 2016 20:36:19 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EKaIi9004501; Wed, 14 Sep 2016 20:36:18 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EKaIFl004497; Wed, 14 Sep 2016 20:36:18 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609142036.u8EKaIFl004497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 14 Sep 2016 20:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422161 - head/sysutils/libfvde X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:36:19 -0000 Author: antoine Date: Wed Sep 14 20:36:18 2016 New Revision: 422161 URL: https://svnweb.freebsd.org/changeset/ports/422161 Log: - Update to 20160801 - Update MASTER_SITES, making fetchable again - Take maintainership - Clarify LICENSE - Add some missing dependencies - Build python extension - Update WWW PR: 212567 Approved by: maintainer Modified: head/sysutils/libfvde/Makefile head/sysutils/libfvde/distinfo head/sysutils/libfvde/pkg-descr head/sysutils/libfvde/pkg-plist Modified: head/sysutils/libfvde/Makefile ============================================================================== --- head/sysutils/libfvde/Makefile Wed Sep 14 19:50:46 2016 (r422160) +++ head/sysutils/libfvde/Makefile Wed Sep 14 20:36:18 2016 (r422161) @@ -2,20 +2,24 @@ # $FreeBSD$ PORTNAME= libfvde -PORTVERSION= 20130305 -PORTREVISION= 2 +PORTVERSION= 20160801 +DISTVERSIONPREFIX= experimental- CATEGORIES= sysutils -MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSLUVJYl9XRWhKSjg/ -DISTFILES= ${PORTNAME}-experimental-${PORTVERSION}${EXTRACT_SUFX} +MASTER_SITES= https://github.com/libyal/libfvde/releases/download/${PORTVERSION}/ \ + LOCAL/antoine -MAINTAINER= koobs@FreeBSD.org +MAINTAINER= antoine@FreeBSD.org COMMENT= Library and tools for reading FileVault (FVDE) encrypted volumes -LICENSE= LGPL3 +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING -USES= libtool pathfix pkgconfig -USE_GNOME= libxml2 -USE_LDCONFIG= yes GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-python +USES= fuse gettext libtool pathfix pkgconfig python ssl +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip +LIBS+= -L${OPENSSLLIB} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} .include Modified: head/sysutils/libfvde/distinfo ============================================================================== --- head/sysutils/libfvde/distinfo Wed Sep 14 19:50:46 2016 (r422160) +++ head/sysutils/libfvde/distinfo Wed Sep 14 20:36:18 2016 (r422161) @@ -1,2 +1,3 @@ -SHA256 (libfvde-experimental-20130305.tar.gz) = 01a85c864c4d7e6da3d0f9ed7e342201e482c597a9efefdfa32556d54c8eff0c -SIZE (libfvde-experimental-20130305.tar.gz) = 1345886 +TIMESTAMP = 1470500654 +SHA256 (libfvde-experimental-20160801.tar.gz) = cc30ed778df6e182632128d59ffde874f0d0f09e59fff205db5cac742860c432 +SIZE (libfvde-experimental-20160801.tar.gz) = 1642939 Modified: head/sysutils/libfvde/pkg-descr ============================================================================== --- head/sysutils/libfvde/pkg-descr Wed Sep 14 19:50:46 2016 (r422160) +++ head/sysutils/libfvde/pkg-descr Wed Sep 14 20:36:18 2016 (r422161) @@ -11,4 +11,4 @@ Supported protection methods: password recovery password -WWW: https://code.google.com/p/libfvde/ +WWW: https://github.com/libyal/libfvde Modified: head/sysutils/libfvde/pkg-plist ============================================================================== --- head/sysutils/libfvde/pkg-plist Wed Sep 14 19:50:46 2016 (r422160) +++ head/sysutils/libfvde/pkg-plist Wed Sep 14 20:36:18 2016 (r422161) @@ -1,5 +1,6 @@ bin/fvdeinfo bin/fvdemount +bin/fvdewipekey include/libfvde.h include/libfvde/codepage.h include/libfvde/definitions.h @@ -11,6 +12,8 @@ lib/libfvde.a lib/libfvde.so lib/libfvde.so.1 lib/libfvde.so.1.0.0 +%%PYTHON_SITELIBDIR%%/pyfvde.a +%%PYTHON_SITELIBDIR%%/pyfvde.so libdata/pkgconfig/libfvde.pc man/man1/fvdeinfo.1.gz man/man1/fvdemount.1.gz From owner-svn-ports-head@freebsd.org Wed Sep 14 20:45:37 2016 Return-Path: Delivered-To: svn-ports-head@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 3FDE9BDB3FC; Wed, 14 Sep 2016 20:45:37 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B10DF1592; Wed, 14 Sep 2016 20:45:36 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id 0828e819 TLS version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO; Wed, 14 Sep 2016 14:45:34 -0600 (MDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... From: Adam Weinberger In-Reply-To: <201609141950.u8EJolO7085386@repo.freebsd.org> Date: Wed, 14 Sep 2016 14:45:32 -0600 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> References: <201609141950.u8EJolO7085386@repo.freebsd.org> To: Antoine Brodin X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:45:37 -0000 > On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: >=20 > Author: antoine > Date: Wed Sep 14 19:50:46 2016 > New Revision: 422160 > URL: https://svnweb.freebsd.org/changeset/ports/422160 >=20 > Log: > Revert recent strfile changes, strfile is already in base >=20 > With hat: portmgr John's changes did have merit---not everybody has the games distribution installed. Perhaps a Uses/strfile.mk would be better here? It could allow for /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the = strfile port otherwise. Best of both world and everybody wins. # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-svn-ports-head@freebsd.org Wed Sep 14 20:52:06 2016 Return-Path: Delivered-To: svn-ports-head@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 C43C4BDB65A; Wed, 14 Sep 2016 20:52:06 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-it0-x229.google.com (mail-it0-x229.google.com [IPv6:2607:f8b0:4001:c0b::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8BD0D1B0F; Wed, 14 Sep 2016 20:52:06 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-it0-x229.google.com with SMTP id o3so64081279ita.1; Wed, 14 Sep 2016 13:52:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=Ng6rSllFIuyb+Prfqsn08wu7RPAg+56sL5YWuFzFQus=; b=FcuuQcNKWlgsOzBdjOzXRs97cLxxi1jt7TVI9+FwxkJeU2aBkPie7/1HKPtL+1E9VG 0nBR1qUCQJuhC2sssZRozg4nw7ceZU1MX2hGjbWt542hV5etTRtP6Rb/Kmhe3g4dedxS HxRmyvqpVfDtG6wybuld8mgkSUin+MyHN8tpQkGAAzSn7v4slwjWS3hMaEbjHP1q2fLy Q8A872n1r/d0ZHZY63OhTqENYj4OXWk88xvzNL2vXWUXmMaC8Vo6JATqfK1ESZV9egTz n2TEexAfqgNcZLhR3lOa0vSzFYxX0fzDXI4UqRALahdv79gFp7eJxm5pIGCs3ym60QKO ecwA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=Ng6rSllFIuyb+Prfqsn08wu7RPAg+56sL5YWuFzFQus=; b=XQVwwd23ONr7e3X1FcFEyyrkusnk+zFnhnY1y/E3butaC4H/5U8/qFJV1R3FxTdK+N YmpUMLL7/27mfgrAghLsiR/2UHN9hLZmwSCc0rOo7d7U//MkDlr2kIKFma3THe1P8ThA z+zIxa0y9RcrZQjSiergvpk0/phjTR+gcCBbhSVYYk8qeyqI2fJA/npgHGq730FQGwWC U3bKBJ/lM0tB+JR5lSvKIgeMvE5XvaT92XxfWF83HDsIImFcuG00knrQhM6UwbVUCfWF veK0g5/6cOsAUU4s+t8Wpy4jBSkxulgOFiQLOjdX2eNVr98/sAohc7Zfbw4YDkKvQ4UB fxEw== X-Gm-Message-State: AE9vXwPAvhrR7XB3OSkifpN84O8fNVgsCqzoi8mq+X+R8KBF2Iz8mchmogSVEO1DSCXtgTdjxtDBnRImxLt4ww== X-Received: by 10.107.197.69 with SMTP id v66mr11642260iof.119.1473886325893; Wed, 14 Sep 2016 13:52:05 -0700 (PDT) MIME-Version: 1.0 Sender: antoine.brodin.freebsd@gmail.com Received: by 10.107.55.68 with HTTP; Wed, 14 Sep 2016 13:52:04 -0700 (PDT) In-Reply-To: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> From: Antoine Brodin Date: Wed, 14 Sep 2016 22:52:04 +0200 X-Google-Sender-Auth: I7CCBnwITdjQk_41FFA5yz6y5IA Message-ID: Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Adam Weinberger Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:52:06 -0000 On Wed, Sep 14, 2016 at 10:45 PM, Adam Weinberger wrote: >> On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: >> >> Author: antoine >> Date: Wed Sep 14 19:50:46 2016 >> New Revision: 422160 >> URL: https://svnweb.freebsd.org/changeset/ports/422160 >> >> Log: >> Revert recent strfile changes, strfile is already in base >> >> With hat: portmgr > > John's changes did have merit---not everybody has the games distribution > installed. > > Perhaps a Uses/strfile.mk would be better here? It could allow for > /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the strfile port otherwise. Best of both world and everybody wins. Hi, In FreeBSD 11, there is no more games distribution. strfile is always installed. And I couldn't find any user complaining about this in bugzilla for previous releases. Cheers, Antoine From owner-svn-ports-head@freebsd.org Wed Sep 14 20:53:04 2016 Return-Path: Delivered-To: svn-ports-head@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 626A2BDB6F6; Wed, 14 Sep 2016 20:53:04 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 509ED1C97; Wed, 14 Sep 2016 20:53:04 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from FreeBSD.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by freefall.freebsd.org (Postfix) with ESMTP id B6F6B19D0; Wed, 14 Sep 2016 20:53:02 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Date: Wed, 14 Sep 2016 20:53:01 +0000 From: Glen Barber To: Adam Weinberger Cc: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... Message-ID: <20160914205301.GC35413@FreeBSD.org> References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="6zdv2QT/q3FMhpsV" Content-Disposition: inline In-Reply-To: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event X-PEKBAC-Definition: Problem Exists, Keyboard Between Admin/Computer User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:53:04 -0000 --6zdv2QT/q3FMhpsV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 14, 2016 at 02:45:32PM -0600, Adam Weinberger wrote: > > On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: > >=20 > > Author: antoine > > Date: Wed Sep 14 19:50:46 2016 > > New Revision: 422160 > > URL: https://svnweb.freebsd.org/changeset/ports/422160 > >=20 > > Log: > > Revert recent strfile changes, strfile is already in base > >=20 > > With hat: portmgr >=20 > John's changes did have merit---not everybody has the games distribution > installed. >=20 > Perhaps a Uses/strfile.mk would be better here? It could allow for > /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the st= rfile port otherwise. Best of both world and everybody wins. >=20 Related to this comment (not the thread, I don't have time to be involved in a bikeshed), but the 'games' distribution set is no longer a thing in 11.x and 12.x. What was provided in games.txz is now part of the general base.txz distribution archive. Glen --6zdv2QT/q3FMhpsV Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJX2bitAAoJEAMUWKVHj+KTbxEP/A7Kr84gVr7EBKD9JjCb6KED WY37PdbBCV5ZdronPNVvwgydgJxxRreuYVA83lmE9pm4MEAXNJ4Xq103JYJYTy37 OuU5xw2u7G9Rror0VbCMqFjwrTWhhztgyY7V/Or+P6l12pZCEAhQfVUBc/S3Rloc yWO1V8ZPlDRKRGS8uXQy+xe7THOqS2D0rghGVD02lhPaY9zjjEbq12b7TndBjKIE LWQMfBZiBucYRmHF3AqZIj7JeiGM3H5hCFG0XwNExqC1fSKEz8/a2wSLF9fcpUIP uiNfxr2DhqNGmQvMZqlNGM4a4G95hbNwSnqAGj5KbYcU4ho8E6rxBYOSKrJYhHcz p2+ZMqNheMuXGVbQRRJRpMPk8gKT1j2Kjht8wJ8c7LLGGcN8iIKd1xlkmg3Rm1OX URAfoRxUcZAVyjUsX8308KVae5IID3BDK6sXhg4QIm0v58xgXcA5SMEJ/dXpEmD+ 48q/qi5HwyO5wir4M9NGTrLqw4q3FkcC3DIGeboTu4u6TSeAkkmMi9oJhRQokPM1 xwvZBk73yPcLV3w26W/LK56YZWTJcbczT/vvNhk3Cj9uK1hk4cq1sGFExZUGAKEn NacSloDq4W0W0RyGAze5rNxs6uVr9YE7S8nlvzH1o2jJXtf6nYFBvKPoZBCeWVJT R6zVuAAVVtQGIVyZROzH =5M8J -----END PGP SIGNATURE----- --6zdv2QT/q3FMhpsV-- From owner-svn-ports-head@freebsd.org Wed Sep 14 20:57:40 2016 Return-Path: Delivered-To: svn-ports-head@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 66935BDB825; Wed, 14 Sep 2016 20:57:40 +0000 (UTC) (envelope-from cbssports@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 414A91FAF; Wed, 14 Sep 2016 20:57:39 +0000 (UTC) (envelope-from cbssports@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 8E78F43CF9; Wed, 14 Sep 2016 15:57:34 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Glen Barber , Adam Weinberger References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <20160914205301.GC35413@FreeBSD.org> Cc: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: John Marino Organization: Bayern Wolfpack Message-ID: Date: Wed, 14 Sep 2016 15:57:36 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20160914205301.GC35413@FreeBSD.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:57:40 -0000 On 9/14/2016 15:53, Glen Barber wrote: > On Wed, Sep 14, 2016 at 02:45:32PM -0600, Adam Weinberger wrote: >>> On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: >>> >>> Author: antoine >>> Date: Wed Sep 14 19:50:46 2016 >>> New Revision: 422160 >>> URL: https://svnweb.freebsd.org/changeset/ports/422160 >>> >>> Log: >>> Revert recent strfile changes, strfile is already in base >>> >>> With hat: portmgr >> >> John's changes did have merit---not everybody has the games distribution >> installed. >> >> Perhaps a Uses/strfile.mk would be better here? It could allow for >> /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the strfile port otherwise. Best of both world and everybody wins. >> > > Related to this comment (not the thread, I don't have time to be > involved in a bikeshed), but the 'games' distribution set is no longer > a thing in 11.x and 12.x. What was provided in games.txz is now part of > the general base.txz distribution archive. > > Glen > So this is no longer a valid build option? https://svnweb.freebsd.org/base/head/tools/build/options/WITHOUT_GAMES John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 20:57:46 2016 Return-Path: Delivered-To: svn-ports-head@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 444F2BDB848; Wed, 14 Sep 2016 20:57:46 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 072011003; Wed, 14 Sep 2016 20:57:46 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id A820A1CF8; Wed, 14 Sep 2016 20:57:45 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 625DE22E44; Wed, 14 Sep 2016 20:57:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id fdtgMroYkB81; Wed, 14 Sep 2016 20:57:42 +0000 (UTC) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com C6FB522E3F To: Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Bryan Drewery Organization: FreeBSD Message-ID: Date: Wed, 14 Sep 2016 13:57:38 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="RSqoXPaq0hxSQI4E4V7Uo2tIobaHG1lFU" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 20:57:46 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --RSqoXPaq0hxSQI4E4V7Uo2tIobaHG1lFU Content-Type: multipart/mixed; boundary="AofaPDSqPcOVR0sG9DxsqVaNwk2OAQiN6"; protected-headers="v1" From: Bryan Drewery To: Adam Weinberger , Antoine Brodin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> In-Reply-To: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> --AofaPDSqPcOVR0sG9DxsqVaNwk2OAQiN6 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 9/14/16 1:45 PM, Adam Weinberger wrote: >> On 14 Sep, 2016, at 13:50, Antoine Brodin wrote:= >> >> Author: antoine >> Date: Wed Sep 14 19:50:46 2016 >> New Revision: 422160 >> URL: https://svnweb.freebsd.org/changeset/ports/422160 >> >> Log: >> Revert recent strfile changes, strfile is already in base >> >> With hat: portmgr >=20 > John's changes did have merit---not everybody has the games distributio= n > installed. >=20 You could say this about every option in base. That does not justify adding everything in base into the ports tree again. It means the user should enable that option in base if they want that functionality. We really do not need 2 versions of strfile, which has gone unchanged for a long time. Optional pieces of base being in ports make sense when they are getting frequent updates, such as Kerberos or OpenSSL or OpenSSH. If a user wants these game ports, they would want the game distribution in base as well, so they should already have strfile. The truth here seems to be closer to that this is just for DragonFly. My large vision is that we move a lot of base into "ports"/packages (not what we have today). In that case we would have just 1 version of OpenSSL, fortune, strfile, etc. In that world we move/merge most of base with their port versions. We're not anywhere near that today. Now, removing the games from base entirely and moving them to ports is a different discussion. I personally am open to that, but not duplicating everything for the sake of non-default setups without frequent updates. > Perhaps a Uses/strfile.mk would be better here? It could allow for > /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the = strfile port otherwise. Best of both world and everybody wins. >=20 --=20 Regards, Bryan Drewery --AofaPDSqPcOVR0sG9DxsqVaNwk2OAQiN6-- --RSqoXPaq0hxSQI4E4V7Uo2tIobaHG1lFU Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2bnDAAoJEDXXcbtuRpfP3SkH/2yQO0noQ9h7h4FeDXTKvZAN Czjkg7R0hDQJniZcHGE56CKquNniZBc1HZWNIMoQnmDzibyf8v07JSz8z/ZI3LdZ yoNp3yR6rGCfFuTqPUsYPmxAmnUYeO/Y8oOx6fNEo6kSD/dytq8rZQvaE+BZ52GS veZLBnL83sZZRSZUC/SvALp7B+I/FsDp4Ugmxkizfh6ICZ9u4+kqF6X5UOmJTuKL cQ2c4zWPjKiTtzAP2CkQEqzFaJEoBO1LpsYU/3sBIm16wIA+O3gBFxt3u6RNMYE7 LodyAH4VdnIvRVdyUxEeqwEayBwjj/PchJpCrV8aRPgkbBvY5mLh86YNipr3cog= =KOx4 -----END PGP SIGNATURE----- --RSqoXPaq0hxSQI4E4V7Uo2tIobaHG1lFU-- From owner-svn-ports-head@freebsd.org Wed Sep 14 21:01:24 2016 Return-Path: Delivered-To: svn-ports-head@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 4D909BDB97D; Wed, 14 Sep 2016 21:01:24 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 273A913C7; Wed, 14 Sep 2016 21:01:23 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id CC73B43CFC; Wed, 14 Sep 2016 16:01:19 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Bryan Drewery , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: Date: Wed, 14 Sep 2016 16:01:21 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:01:24 -0000 On 9/14/2016 15:57, Bryan Drewery wrote: > On 9/14/16 1:45 PM, Adam Weinberger wrote: >>> On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: >>> >>> Author: antoine >>> Date: Wed Sep 14 19:50:46 2016 >>> New Revision: 422160 >>> URL: https://svnweb.freebsd.org/changeset/ports/422160 >>> >>> Log: >>> Revert recent strfile changes, strfile is already in base >>> >>> With hat: portmgr >> >> John's changes did have merit---not everybody has the games distribution >> installed. >> > > You could say this about every option in base. That does not justify > adding everything in base into the ports tree again. It means the user > should enable that option in base if they want that functionality. We > really do not need 2 versions of strfile, which has gone unchanged for a > long time. > > Optional pieces of base being in ports make sense when they are getting > frequent updates, such as Kerberos or OpenSSL or OpenSSH. > > If a user wants these game ports, they would want the game distribution > in base as well, so they should already have strfile. > > The truth here seems to be closer to that this is just for DragonFly. > > My large vision is that we move a lot of base into "ports"/packages (not > what we have today). In that case we would have just 1 version of > OpenSSL, fortune, strfile, etc. In that world we move/merge most of > base with their port versions. We're not anywhere near that today. > > Now, removing the games from base entirely and moving them to ports is a > different discussion. I personally am open to that, but not duplicating > everything for the sake of non-default setups without frequent updates. > >> Perhaps a Uses/strfile.mk would be better here? It could allow for >> /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the strfile port otherwise. Best of both world and everybody wins. >> > > this is all ridiculous. It's a 400-line C program that is strictly a BUILD_DEPENDS. It caused no significant burden and solved problems. Ports have gone unmaintained for YEARS but somehow you can justify deprecating this one in 3 hours, and then claim you are treating all ports the same. You just aren't. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 21:03:05 2016 Return-Path: Delivered-To: svn-ports-head@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 1DA30BDBBA5; Wed, 14 Sep 2016 21:03:05 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 880401741; Wed, 14 Sep 2016 21:03:04 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id 3d708625 TLS version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO; Wed, 14 Sep 2016 15:03:03 -0600 (MDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... From: Adam Weinberger In-Reply-To: Date: Wed, 14 Sep 2016 15:03:01 -0600 Cc: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <56BE29EC-8948-4167-8D3C-7E8A8EC9976B@adamw.org> References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> To: Bryan Drewery X-Mailer: Apple Mail (2.3124) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:03:05 -0000 > On 14 Sep, 2016, at 14:57, Bryan Drewery wrote: >=20 > On 9/14/16 1:45 PM, Adam Weinberger wrote: >>> On 14 Sep, 2016, at 13:50, Antoine Brodin = wrote: >>>=20 >>> Author: antoine >>> Date: Wed Sep 14 19:50:46 2016 >>> New Revision: 422160 >>> URL: https://svnweb.freebsd.org/changeset/ports/422160 >>>=20 >>> Log: >>> Revert recent strfile changes, strfile is already in base >>>=20 >>> With hat: portmgr >>=20 >> John's changes did have merit---not everybody has the games = distribution >> installed. >>=20 >=20 > You could say this about every option in base. That does not justify > adding everything in base into the ports tree again. It means the = user > should enable that option in base if they want that functionality. We > really do not need 2 versions of strfile, which has gone unchanged for = a > long time. Ah! In a display of how little attention I pay, I didn't realize that = the future of strfile is a src.conf knob, not being in a separate = package as it has been.=20 # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-svn-ports-head@freebsd.org Wed Sep 14 21:03:38 2016 Return-Path: Delivered-To: svn-ports-head@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 4ABADBDBC0C; Wed, 14 Sep 2016 21:03:38 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 38184184C; Wed, 14 Sep 2016 21:03:38 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from FreeBSD.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by freefall.freebsd.org (Postfix) with ESMTP id DDD9811FC; Wed, 14 Sep 2016 21:03:36 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Date: Wed, 14 Sep 2016 21:03:35 +0000 From: Glen Barber To: John Marino Cc: Adam Weinberger , Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... Message-ID: <20160914210335.GE35413@FreeBSD.org> References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <20160914205301.GC35413@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="JBi0ZxuS5uaEhkUZ" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-CURRENT amd64 X-SCUD-Definition: Sudden Completely Unexpected Dataloss X-SULE-Definition: Sudden Unexpected Learning Event X-PEKBAC-Definition: Problem Exists, Keyboard Between Admin/Computer User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:03:38 -0000 --JBi0ZxuS5uaEhkUZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 14, 2016 at 03:57:36PM -0500, John Marino wrote: > On 9/14/2016 15:53, Glen Barber wrote: > >On Wed, Sep 14, 2016 at 02:45:32PM -0600, Adam Weinberger wrote: > >>>On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: > >>> > >>>Author: antoine > >>>Date: Wed Sep 14 19:50:46 2016 > >>>New Revision: 422160 > >>>URL: https://svnweb.freebsd.org/changeset/ports/422160 > >>> > >>>Log: > >>> Revert recent strfile changes, strfile is already in base > >>> > >>> With hat: portmgr > >> > >>John's changes did have merit---not everybody has the games distribution > >>installed. > >> > >>Perhaps a Uses/strfile.mk would be better here? It could allow for > >>/usr/bin/strfile or /usr/games/strfile if they exist, or depend on the = strfile port otherwise. Best of both world and everybody wins. > >> > > > >Related to this comment (not the thread, I don't have time to be > >involved in a bikeshed), but the 'games' distribution set is no longer > >a thing in 11.x and 12.x. What was provided in games.txz is now part of > >the general base.txz distribution archive. > > > >Glen > > >=20 > So this is no longer a valid build option? > https://svnweb.freebsd.org/base/head/tools/build/options/WITHOUT_GAMES >=20 It is still valid. From head/usr.bin/Makefile: 204 SUBDIR.${MK_FINGER}+=3D>>>finger$ 205 SUBDIR.${MK_FTP}+=3D>>>>>>ftp$ 206 SUBDIR.${MK_GAMES}+=3D>>>>caesar$ 207 SUBDIR.${MK_GAMES}+=3D>>>>factor$ 208 SUBDIR.${MK_GAMES}+=3D>>>>fortune$ Glen --JBi0ZxuS5uaEhkUZ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJX2bsnAAoJEAMUWKVHj+KTJJIP/i4pdKch5CnZ+E6XeX19qXX+ kWNOZSsNsj2pY+xhsm3PMDUo3T7MHre5V0RMNADSEaFJvR5l8xHnte+WNZDlYa0+ bV/DfcDz3EZOlcJww+YFwQzgRrMbBR7Xh1iHXEUxaPnXdkv/8LP+mYB06WgRxC97 JOQhVYeBtt4s/4XmwWw76FmhhnlnqcEaj6xhWr2SDquKd69BUHRISvMorMKbQapj fO0h9TQNqEDbdvYi+R3NL+1NB0XpPfvcfEdJC8JpaySeqWRN+qiwNajyZKWO61ud 74t1tdNfOh3AYVvyQb+nT2WNO7YMK8gLTspYVpTGBe3mlDLSIKOKtlW5Q7Cn11Ud MGM25skMhc5Xd8wNOPBO8I7Ht3z0zwdU5E6ODySuSBJ80XINMIqpLT66yRr9ukRB q18+R5nTDORbu8IqMHJJDFQxAxGek+caW/C3k9/qFCRonBtap1cz/s4+3xIKFfLC DnwLweBMjJ8MnXxf1SDLXJLvfkJ4nyuxU9Alq3jU2K56h/brLaLkTWfPR1DenYhN Zssm3+mxDYUxxFpbCa2a5hTh3pbK5Z43B5LS78U2B0MuW7lt4unFrGnpeRVAlJX4 0Nim6kCct0JwM1M0PWj0Adp7kjOLxA3QoMU4WjmqZF9StwegAXmROtwA+a9Fnss0 xgSa8tFhc3KzxKDqkk1u =UTg5 -----END PGP SIGNATURE----- --JBi0ZxuS5uaEhkUZ-- From owner-svn-ports-head@freebsd.org Wed Sep 14 21:14:24 2016 Return-Path: Delivered-To: svn-ports-head@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 27A35B96229; Wed, 14 Sep 2016 21:14:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D33741EAB; Wed, 14 Sep 2016 21:14:23 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 074DCBDD2D; Wed, 14 Sep 2016 23:14:22 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id D8DB8BDC2E; Wed, 14 Sep 2016 23:14:21 +0200 (CEST) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> Date: Wed, 14 Sep 2016 23:14:20 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="qPCpoC8LcEdaOPqKMiS8fe3r5Es49eOPS" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:14:24 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --qPCpoC8LcEdaOPqKMiS8fe3r5Es49eOPS Content-Type: multipart/mixed; boundary="UqmGKbWw0HxhUuLh5ruiKt1eQF9eoNtx7"; protected-headers="v1" From: Mathieu Arnold To: Adam Weinberger , Antoine Brodin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> In-Reply-To: <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> --UqmGKbWw0HxhUuLh5ruiKt1eQF9eoNtx7 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 22:45, Adam Weinberger a =C3=A9crit : >> On 14 Sep, 2016, at 13:50, Antoine Brodin wrote:= >> >> Author: antoine >> Date: Wed Sep 14 19:50:46 2016 >> New Revision: 422160 >> URL: https://svnweb.freebsd.org/changeset/ports/422160 >> >> Log: >> Revert recent strfile changes, strfile is already in base >> >> With hat: portmgr > John's changes did have merit---not everybody has the games distributio= n > installed. > > Perhaps a Uses/strfile.mk would be better here? It could allow for > /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the = strfile port otherwise. Best of both world and everybody wins. The thing is, either fortune is installed in the base system, and strfile is there, and there is no problem, or both are not there, and there's no point in installing a fortune file, as, well, fortune is not there. --=20 Mathieu Arnold --UqmGKbWw0HxhUuLh5ruiKt1eQF9eoNtx7-- --qPCpoC8LcEdaOPqKMiS8fe3r5Es49eOPS Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2b2tXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IHIUQALCOMd91A/yzJA386bClRB9c bgGw1TKco73TXboAUnwQnwXfv238H96MSKJ1LSwYVlFC+4QR7KQi/UGV5dLxqZPr JYwSpkEPjKlqf6rOO+hs1vuvHSwvHMpSoOTT8Lp1lLJAwDbfuLhiGanKqbh1j8c3 K4RtNxx044brm5ruawesp9y6hiycqJj7W/Mv85dcxlaGZfCGXYwKNp0QPchL7UxW yNHnRLpm2JxkwsuqjbsbBkMCZXIytTeRH6ft9z2VSyb7EWJlvnWhOJjSyAjhZCFl /tgbeC0wzFV7a6QdMroctuYgrsL+A1J7kplu68+6SiY6cvVJCe50iQ/OcuYl2HV9 FD51EsHLESMf3gqcnWCGxpp1kRhjuTmWFxk/IXW3IH7vwrqOMU9pT5cTm6XsFIYp w5uP0rpMWFX+G4GWmAxTukrvjjdXoI8hHpGrP76O8U8BZrErUJzdwWS0pH9JfiI/ WrxVt971BwOwY9JmHlkdJgB1t4WnWlRpcC0oy1ubUI0FSaQ2Su5u/MoodD/4+Cyb RmkC5hDNQuD7Ve2kTRhwAcHTARCgGKGl7hq/YGFQDcGHwnNDrUW25a61v8p8fCIj JXv7T2NMChGIankd1tszDPu6zTOsDxO5qdP+4G6jR/tGIQeX8P59/XH0QtXaaqGE 6NB5f7bL3CAQhU92HRBq =Mhw5 -----END PGP SIGNATURE----- --qPCpoC8LcEdaOPqKMiS8fe3r5Es49eOPS-- From owner-svn-ports-head@freebsd.org Wed Sep 14 21:17:52 2016 Return-Path: Delivered-To: svn-ports-head@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 47394B96312; Wed, 14 Sep 2016 21:17:52 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 219261149; Wed, 14 Sep 2016 21:17:51 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 893ED43CFC; Wed, 14 Sep 2016 16:17:47 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> Date: Wed, 14 Sep 2016 16:17:49 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:17:52 -0000 On 9/14/2016 16:14, Mathieu Arnold wrote: > Le 14/09/2016 à 22:45, Adam Weinberger a écrit : >>> On 14 Sep, 2016, at 13:50, Antoine Brodin wrote: >>> >>> Author: antoine >>> Date: Wed Sep 14 19:50:46 2016 >>> New Revision: 422160 >>> URL: https://svnweb.freebsd.org/changeset/ports/422160 >>> >>> Log: >>> Revert recent strfile changes, strfile is already in base >>> >>> With hat: portmgr >> John's changes did have merit---not everybody has the games distribution >> installed. >> >> Perhaps a Uses/strfile.mk would be better here? It could allow for >> /usr/bin/strfile or /usr/games/strfile if they exist, or depend on the strfile port otherwise. Best of both world and everybody wins. > > The thing is, either fortune is installed in the base system, and > strfile is there, and there is no problem, or both are not there, and > there's no point in installing a fortune file, as, well, fortune is not > there. > Or the system that builds packages doesn't have fortune installed in the jail, but still needs to build packages for systems that do. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 21:23:56 2016 Return-Path: Delivered-To: svn-ports-head@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 D4FDCB9662A; Wed, 14 Sep 2016 21:23:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9D51716AE; Wed, 14 Sep 2016 21:23:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from [10.0.1.69] (cpe-071-065-239-148.nc.res.rr.com [71.65.239.148] (may be forged)) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id u8ELNdta023099 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Wed, 14 Sep 2016 21:23:48 GMT (envelope-from swills@FreeBSD.org) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Steve Wills Message-ID: Date: Wed, 14 Sep 2016 17:23:39 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Wed, 14 Sep 2016 21:23:49 +0000 (UTC) X-Spam-Status: No, score=-1.0 required=4.5 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.1 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:23:56 -0000 On 09/14/2016 17:17, John Marino wrote: > > Or the system that builds packages doesn't have fortune installed in the > jail, but still needs to build packages for systems that do. > It's a 400 line C program, but it can't be installed on the package builder? I don't get it. Steve From owner-svn-ports-head@freebsd.org Wed Sep 14 21:28:05 2016 Return-Path: Delivered-To: svn-ports-head@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 76176B9676E; Wed, 14 Sep 2016 21:28:05 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E8FC1913; Wed, 14 Sep 2016 21:28:04 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 1A9D643C27; Wed, 14 Sep 2016 16:28:00 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Steve Wills , marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> Date: Wed, 14 Sep 2016 16:28:02 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:28:05 -0000 On 9/14/2016 16:23, Steve Wills wrote: > On 09/14/2016 17:17, John Marino wrote: >> >> Or the system that builds packages doesn't have fortune installed in the >> jail, but still needs to build packages for systems that do. >> > > It's a 400 line C program, but it can't be installed on the package > builder? I don't get it. > tldr: the problem was solved, but portmgr wanted to show people who's boss so the work was reverted for no good reason and no warning. I would have stayed as a passive maintainer if I knew that was going to be pulled. The fact is that the scenario above is legitimate and it was fixed. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 21:51:58 2016 Return-Path: Delivered-To: svn-ports-head@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 A27AAB96E69; Wed, 14 Sep 2016 21:51:58 +0000 (UTC) (envelope-from jkim@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 7DF901379; Wed, 14 Sep 2016 21:51:58 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ELpvCv033968; Wed, 14 Sep 2016 21:51:57 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ELpvlh033965; Wed, 14 Sep 2016 21:51:57 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609142151.u8ELpvlh033965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 14 Sep 2016 21:51:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422162 - in head/korean/hunspell: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:51:58 -0000 Author: jkim Date: Wed Sep 14 21:51:57 2016 New Revision: 422162 URL: https://svnweb.freebsd.org/changeset/ports/422162 Log: Unbreak the port and modernize. Added: head/korean/hunspell/files/patch-tests_runtest.py (contents, props changed) Deleted: head/korean/hunspell/files/patch-Makefile Modified: head/korean/hunspell/Makefile head/korean/hunspell/distinfo Modified: head/korean/hunspell/Makefile ============================================================================== --- head/korean/hunspell/Makefile Wed Sep 14 20:36:18 2016 (r422161) +++ head/korean/hunspell/Makefile Wed Sep 14 21:51:57 2016 (r422162) @@ -2,32 +2,42 @@ PORTNAME= hunspell PORTVERSION= 0.5.6 +PORTREVISION= 1 CATEGORIES= korean textproc -MASTER_SITES= GOOGLE_CODE -DISTNAME= ${PORTNAME}-dict-ko-${PORTVERSION} MAINTAINER= jkim@FreeBSD.org COMMENT= Korean hunspell dictionaries -LICENSE= GPLv2 LGPL21 MPL +LICENSE= GPLv2+ LGPL21+ MPL LICENSE_COMB= dual +LICENSE_FILE_GPLv2+ = ${WRKSRC}/LICENSE.GPL +LICENSE_FILE_LGPL21+ = ${WRKSRC}/LICENSE.LGPL +LICENSE_FILE_MPL= ${WRKSRC}/LICENSE.MPL + +BUILD_DEPENDS= py${PYTHON_SUFFIX}-lxml>=0:devel/py-lxml +TEST_DEPENDS= hunspell:textproc/hunspell + +GH_ACCOUNT= changwoo +GH_PROJECT= ${PORTNAME}-dict-ko +USE_GITHUB= yes -BROKEN= Unfetchable (google code has gone away) - -BUILD_DEPENDS+= py*-lxml>=0:devel/py-lxml - -USES= gmake python:build tar:xz +NO_ARCH= yes +USES= python:build,test PLIST_FILES= %%DATADIR%%/ko_KR.aff \ %%DATADIR%%/ko_KR.dic -PROJECTHOST= spellcheck-ko - -MAKE_ENV+= PYTHON=${PYTHON_CMD} - +do-build: + @(cd ${WRKSRC} && ${PYTHON_CMD} make-aff-dic.py ko_KR.aff ko_KR.dic \ + dict-ko-builtins.xml dict-ko-galkwi.xml) + +do-test: + @(cd ${WRKSRC}/tests && for T in $$(ls -1 *.test); do \ + echo "Testing $$T..."; \ + ${PYTHON_CMD} runtest.py $$T || exit 1; done) do-install: ${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/ko.aff ${STAGEDIR}${DATADIR}/ko_KR.aff - ${INSTALL_DATA} ${WRKSRC}/ko.dic ${STAGEDIR}${DATADIR}/ko_KR.dic + ${INSTALL_DATA} ${WRKSRC}/ko_KR.aff ${WRKSRC}/ko_KR.dic \ + ${STAGEDIR}${DATADIR} .include Modified: head/korean/hunspell/distinfo ============================================================================== --- head/korean/hunspell/distinfo Wed Sep 14 20:36:18 2016 (r422161) +++ head/korean/hunspell/distinfo Wed Sep 14 21:51:57 2016 (r422162) @@ -1,2 +1,3 @@ -SHA256 (hunspell-dict-ko-0.5.6.tar.xz) = 20d5774956504fafbe4be1b225ce9a264d8582648886790a3ad2f6efbdea3a1c -SIZE (hunspell-dict-ko-0.5.6.tar.xz) = 336100 +TIMESTAMP = 1473875379 +SHA256 (changwoo-hunspell-dict-ko-0.5.6_GH0.tar.gz) = 2caf3b0775d8d6c49866be2682cdf17b2c76d4c151bd1923adbe0b5661b94ee8 +SIZE (changwoo-hunspell-dict-ko-0.5.6_GH0.tar.gz) = 457791 Added: head/korean/hunspell/files/patch-tests_runtest.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/korean/hunspell/files/patch-tests_runtest.py Wed Sep 14 21:51:57 2016 (r422162) @@ -0,0 +1,11 @@ +--- tests/runtest.py.orig 2012-10-06 23:29:32 UTC ++++ tests/runtest.py +@@ -19,7 +19,7 @@ def main(): + hunspell_cmd = './hunspell' + else: + hunspell_cmd = 'hunspell' +- hunspell = subprocess.Popen([hunspell_cmd, '-i', 'UTF-8', '-a', '-d', '../ko'], ++ hunspell = subprocess.Popen([hunspell_cmd, '-i', 'UTF-8', '-a', '-d', '../ko_KR'], + stdin=subprocess.PIPE, stdout=subprocess.PIPE) + hunspell.stdout.readline() # the first line "Hunspell 1.2.8 ..." + lineno = 0 From owner-svn-ports-head@freebsd.org Wed Sep 14 21:55:37 2016 Return-Path: Delivered-To: svn-ports-head@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 5DDF1B96F58; Wed, 14 Sep 2016 21:55:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 22BEB1649; Wed, 14 Sep 2016 21:55:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from [10.0.1.69] (cpe-071-065-239-148.nc.res.rr.com [71.65.239.148] (may be forged)) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id u8ELtPQC023415 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Wed, 14 Sep 2016 21:55:34 GMT (envelope-from swills@FreeBSD.org) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Steve Wills Message-ID: <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> Date: Wed, 14 Sep 2016 17:55:25 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Wed, 14 Sep 2016 21:55:35 +0000 (UTC) X-Spam-Status: No, score=-1.0 required=4.5 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.1 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 21:55:37 -0000 On 09/14/2016 17:28, John Marino wrote: > The fact is that the scenario above is legitimate and it was fixed. I'm not sure I agree. There are exceptions, but ports hasn't typically accommodated all the things that can be disabled in base. Looks like there are 179 WITHOUT_* knobs. I'm probably missing something, but it looks like ports only currently accommodates WITHOUT_NLS and WITHOUT_SSP. Not all of the WITHOUT_* knobs would affect ports, but adding support for all the WITHOUT_* knobs would still be a big decision and a big job. Adding support for WITHOUT_GAMES would have been different from what was done. Steve From owner-svn-ports-head@freebsd.org Wed Sep 14 22:01:42 2016 Return-Path: Delivered-To: svn-ports-head@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 B1BF3BDA279; Wed, 14 Sep 2016 22:01:42 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 893781D05; Wed, 14 Sep 2016 22:01:41 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 5517C43CC0; Wed, 14 Sep 2016 17:01:36 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Steve Wills , marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <55840821-5f88-54b6-4b99-eb8e09d0ae22@marino.st> Date: Wed, 14 Sep 2016 17:01:38 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:01:42 -0000 On 9/14/2016 16:55, Steve Wills wrote: > On 09/14/2016 17:28, John Marino wrote: >> The fact is that the scenario above is legitimate and it was fixed. > > I'm not sure I agree. There are exceptions, but ports hasn't typically > accommodated all the things that can be disabled in base. > > Looks like there are 179 WITHOUT_* knobs. I'm probably missing > something, but it looks like ports only currently accommodates > WITHOUT_NLS and WITHOUT_SSP. Not all of the WITHOUT_* knobs would affect > ports, but adding support for all the WITHOUT_* knobs would still be a > big decision and a big job. Adding support for WITHOUT_GAMES would have > been different from what was done. > Fact 1) I identified it as a problem Fact 2) I solved the problem. The ports were cleaner as a result. Fact 3) Somebody exerted energy to revert my work There are over 26,000 ports. This one should have caused no one to notice. Half of the fortune ports are currently marked broken because they are unfetchable. Even if you disagree for whatever reason, at *worst* it wasn't hurting anything. The insult to injury it that this stuff was pulled immediately after I spent several days fixing SSL across the entire tree. Trust me, I'm pretty ticked off right now and it is personal for me. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 22:03:25 2016 Return-Path: Delivered-To: svn-ports-head@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 5B424BDA3C8; Wed, 14 Sep 2016 22:03:25 +0000 (UTC) (envelope-from yz@yz.kiev.ua) Received: from nb.yz.kiev.ua (nb.yz.kiev.ua [92.63.99.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 180551E8A; Wed, 14 Sep 2016 22:03:24 +0000 (UTC) (envelope-from yz@yz.kiev.ua) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=yz.kiev.ua; s=dkim; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=9ZtaCnjEdc4qCKp6CLhY/0tq3wb7wxicYg9mgkWiX4c=; b=Cwf1EWhdeE7VHZV4/R8djqzO1h T0FnZeIOrak2rc5Hfws/jifREnN8al65G/BCw+qnZ5tuZdH6Ms03YZE2SCyjx5VZRiUd2K7Zn3V80 A62ImllVPwyiyEFIgABp/defInhJHz/pcUpy33+NXYpOjUA5Y37idzV4aWK8VjSbFjBY=; Received: from yz by nb.yz.kiev.ua with local (Exim 4.87 (FreeBSD)) (envelope-from ) id 1bkHyg-000GYe-3T; Thu, 15 Sep 2016 00:44:22 +0300 Date: Thu, 15 Sep 2016 00:44:22 +0300 From: "George L. Yermulnik" To: Bryan Drewery Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422154 - head/misc/fortune_strfile Message-ID: <20160914214421.GA61341@yz.kiev.ua> References: <201609141925.u8EJPJb8077087@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201609141925.u8EJPJb8077087@repo.freebsd.org> Organization: Earth, Europe, Ukraine, Kiev X-Yz-Mark: yz@nb 20160915 00:40:17 User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:03:25 -0000 Hello! On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: > Author: bdrewery > Date: Wed Sep 14 19:25:19 2016 > New Revision: 422154 > URL: https://svnweb.freebsd.org/changeset/ports/422154 > Log: > Mark deprecated as it has no maintainer and is already in base. Am I using some broken FreeBSD installation? [--- cut ---] 00:41:56 [root#nb][w:2][j:0][~]> uname -srm FreeBSD 10.3-STABLE i386 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf WITHOUT_GAMES=YES 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l 0 [--- cut ---] > With hat: portmgr > Modified: > head/misc/fortune_strfile/Makefile > Modified: head/misc/fortune_strfile/Makefile > ============================================================================== > --- head/misc/fortune_strfile/Makefile Wed Sep 14 19:19:28 2016 (r422153) > +++ head/misc/fortune_strfile/Makefile Wed Sep 14 19:25:19 2016 (r422154) > @@ -13,6 +13,9 @@ COMMENT= Duplicate of strfile(8) > PROGRAM= fortune_strfile > PLIST_FILES= bin/${PROGRAM} > +DEPRECATED= unmaintained and duplicated from base > +EXPIRATION_DATE= 2016-10-14 > + > do-build: > ${MKDIR} ${WRKSRC} > ${CC} ${CFLAGS} -o ${WRKSRC}/${PROGRAM} ${FILESDIR}/strfile.c > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" -- George L. Yermulnik [YZ-RIPE] From owner-svn-ports-head@freebsd.org Wed Sep 14 22:08:05 2016 Return-Path: Delivered-To: svn-ports-head@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 5BD2CBDA52E; Wed, 14 Sep 2016 22:08:05 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4093B110D; Wed, 14 Sep 2016 22:08:05 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 37AA61577; Wed, 14 Sep 2016 22:08:05 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id EA3CB2307E; Wed, 14 Sep 2016 22:08:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id rE3qgKxYkEi1; Wed, 14 Sep 2016 22:07:57 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com C54C923073 To: "George L. Yermulnik" References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Bryan Drewery Organization: FreeBSD Message-ID: <710f0689-e948-6960-1aea-32d84b1089f5@FreeBSD.org> Date: Wed, 14 Sep 2016 15:07:55 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <20160914214421.GA61341@yz.kiev.ua> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ATCBC0eNhCXshgEsOTbjCEMbHTgGbhF8c" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:08:05 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --ATCBC0eNhCXshgEsOTbjCEMbHTgGbhF8c Content-Type: multipart/mixed; boundary="6u2WNWIsfaJ8p88HIRCsSROitPj7igMU1"; protected-headers="v1" From: Bryan Drewery To: "George L. Yermulnik" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <710f0689-e948-6960-1aea-32d84b1089f5@FreeBSD.org> Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> In-Reply-To: <20160914214421.GA61341@yz.kiev.ua> --6u2WNWIsfaJ8p88HIRCsSROitPj7igMU1 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 9/14/16 2:44 PM, George L. Yermulnik wrote: > Hello! >=20 > On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: >=20 >> > Author: bdrewery >> > Date: Wed Sep 14 19:25:19 2016 >> > New Revision: 422154 >> > URL: https://svnweb.freebsd.org/changeset/ports/422154 >> > Log: >> > Mark deprecated as it has no maintainer and is already in base. > Am I using some broken FreeBSD installation? > [--- cut ---] > 00:41:56 [root#nb][w:2][j:0][~]> uname -srm > FreeBSD 10.3-STABLE i386 > 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH > /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: > 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf > WITHOUT_GAMES=3DYES > 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l Why are you trying to install a GAMES port with WITHOUT_GAMES? There is little to be gained from even having WITHOUT_GAMES set. Ports generally only support the default system install. Yes there are exceptions but they are rare and not complete. Disabling options in base will break a lot of ports. --=20 Regards, Bryan Drewery --6u2WNWIsfaJ8p88HIRCsSROitPj7igMU1-- --ATCBC0eNhCXshgEsOTbjCEMbHTgGbhF8c Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2co8AAoJEDXXcbtuRpfPTzIIAK2KoXbFGhIwTVpAv6OIUcUh ZsV+QE37QPD3SNK5fWfdUTj8HVLOObClCB8BKKdQ/BVJVn3bdVaSzoJAL1TGSVXa ZyObCSyo9H6xhZsIP+Sb4+aWE/5662zHBcM4raS0Ms4qjhgKUD6k/7a9ng4LqMo8 43G1n/LvQwyUqdB1GFefKTdhCGbzlF7vwG4jiahBw4HlPsFw3NIUAXnkKZXbtgQQ jWr+BiVZmPsZfvLH1fshDbsPQiNWu3/K6DdR1aCTSA62RL+BgTpxVqPnOQ930ZIL Sxeqar8vgfuL5hawuGO//xczrR7UFsOjT6ZeBhvIv6maCSCCqqFhlra8kciztfQ= =pdsM -----END PGP SIGNATURE----- --ATCBC0eNhCXshgEsOTbjCEMbHTgGbhF8c-- From owner-svn-ports-head@freebsd.org Wed Sep 14 22:09:13 2016 Return-Path: Delivered-To: svn-ports-head@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 55B33BDA58A; Wed, 14 Sep 2016 22:09:13 +0000 (UTC) (envelope-from jkim@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 0D93A11FE; Wed, 14 Sep 2016 22:09:12 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EM9CDu038757; Wed, 14 Sep 2016 22:09:12 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EM9CvY038755; Wed, 14 Sep 2016 22:09:12 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609142209.u8EM9CvY038755@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 14 Sep 2016 22:09:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422163 - in head/korean/libhangul: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:09:13 -0000 Author: jkim Date: Wed Sep 14 22:09:11 2016 New Revision: 422163 URL: https://svnweb.freebsd.org/changeset/ports/422163 Log: Unbreak the port and modernize. Deleted: head/korean/libhangul/files/patch-Makefile.in head/korean/libhangul/files/patch-test head/korean/libhangul/files/patch-tools Modified: head/korean/libhangul/Makefile head/korean/libhangul/distinfo Modified: head/korean/libhangul/Makefile ============================================================================== --- head/korean/libhangul/Makefile Wed Sep 14 21:51:57 2016 (r422162) +++ head/korean/libhangul/Makefile Wed Sep 14 22:09:11 2016 (r422163) @@ -3,36 +3,34 @@ PORTNAME= libhangul PORTVERSION= 0.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= korean -MASTER_SITES= GOOGLE_CODE MAINTAINER= jkim@FreeBSD.org COMMENT= Library for Hangul processing -LICENSE= LGPL21 +LICENSE= LGPL21+ +LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) +TEST_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/check.pc:devel/libcheck + +GH_ACCOUNT= choehwanjin +GH_TAGNAME= 9fe2d4e +USE_GITHUB= yes GNU_CONFIGURE= yes -OPTIONS_DEFINE= NLS -OPTIONS_SUB= NLS +PATHFIX_MAKEFILEIN= Makefile.am +TEST_TARGET= test +TEST_WRKSRC= ${WRKSRC}/test USE_LDCONFIG= yes -USES= iconv libtool pkgconfig +USES= autoreconf iconv libtool pathfix pkgconfig -.include +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes +NLS_CONFIGURE_ENABLE= nls +NLS_USES= gettext -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -CONFIGURE_ARGS= --enable-nls -.else -CONFIGURE_ARGS= --disable-nls -.endif - -.if exists(${LOCALBASE}/libdata/pkgconfig/check.pc) -test: build - @( cd ${WRKSRC}/test && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ) - @( cd ${WRKSRC}/test && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} test && ./test ) -.endif +post-test: + @${TEST_WRKSRC}/test .include Modified: head/korean/libhangul/distinfo ============================================================================== --- head/korean/libhangul/distinfo Wed Sep 14 21:51:57 2016 (r422162) +++ head/korean/libhangul/distinfo Wed Sep 14 22:09:11 2016 (r422163) @@ -1,2 +1,3 @@ -SHA256 (libhangul-0.1.0.tar.gz) = 5905aa5c557d8d46e190fec1afdd75babf3bc086ef286b42007572703658295a -SIZE (libhangul-0.1.0.tar.gz) = 2899845 +TIMESTAMP = 1473878096 +SHA256 (choehwanjin-libhangul-0.1.0-9fe2d4e_GH0.tar.gz) = f7f36f051b9b88f77be4849ab1b2ad13f7812440547e9cd9bf4caed0742e9a2d +SIZE (choehwanjin-libhangul-0.1.0-9fe2d4e_GH0.tar.gz) = 3981418 From owner-svn-ports-head@freebsd.org Wed Sep 14 22:09:53 2016 Return-Path: Delivered-To: svn-ports-head@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 7B338BDA612; Wed, 14 Sep 2016 22:09:53 +0000 (UTC) (envelope-from osa@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 327CF1304; Wed, 14 Sep 2016 22:09:53 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EM9qC7038899; Wed, 14 Sep 2016 22:09:52 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EM9qhp038897; Wed, 14 Sep 2016 22:09:52 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201609142209.u8EM9qhp038897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 14 Sep 2016 22:09:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422164 - head/www/nginx-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:09:53 -0000 Author: osa Date: Wed Sep 14 22:09:52 2016 New Revision: 422164 URL: https://svnweb.freebsd.org/changeset/ports/422164 Log: Upgrade from 1.11.3 to 1.11.4. *) Feature: the $upstream_bytes_received variable. *) Feature: the $bytes_received, $session_time, $protocol, $status, $upstream_addr, $upstream_bytes_sent, $upstream_bytes_received, $upstream_connect_time, $upstream_first_byte_time, and $upstream_session_time variables in the stream module. *) Feature: the ngx_stream_log_module. *) Feature: the "proxy_protocol" parameter of the "listen" directive, the $proxy_protocol_addr and $proxy_protocol_port variables in the stream module. *) Feature: the ngx_stream_realip_module. *) Bugfix: nginx could not be built with the stream module and the ngx_http_ssl_module, but without ngx_stream_ssl_module; the bug had appeared in 1.11.3. *) Feature: the IP_BIND_ADDRESS_NO_PORT socket option was not used; the bug had appeared in 1.11.2. *) Bugfix: in the "ranges" parameter of the "geo" directive. *) Bugfix: an incorrect response might be returned when using the "aio threads" and "sendfile" directives; the bug had appeared in 1.9.13. Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Wed Sep 14 22:09:11 2016 (r422163) +++ head/www/nginx-devel/Makefile Wed Sep 14 22:09:52 2016 (r422164) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nginx -PORTVERSION= 1.11.3 +PORTVERSION= 1.11.4 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ MASTER_SITES+= LOCAL/osa Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Wed Sep 14 22:09:11 2016 (r422163) +++ head/www/nginx-devel/distinfo Wed Sep 14 22:09:52 2016 (r422164) @@ -1,6 +1,6 @@ -TIMESTAMP = 1471018172 -SHA256 (nginx-1.11.3.tar.gz) = 4a667f40f9f3917069db1dea1f2d5baa612f1fa19378aadf71502e846a424610 -SIZE (nginx-1.11.3.tar.gz) = 938045 +TIMESTAMP = 1473890571 +SHA256 (nginx-1.11.4.tar.gz) = 06221c1f43f643bc6bfe5b2c26d19e09f2588d5cde6c65bdb77dfcce7c026b3b +SIZE (nginx-1.11.4.tar.gz) = 949793 SHA256 (nginx-accesskey-2.0.3.tar.gz) = d9e94321e78a02de16c57f3e048fd31059fd8116ed03d6de7180f435c52502b1 SIZE (nginx-accesskey-2.0.3.tar.gz) = 2632 SHA256 (ngx_http_auth_pam_module-1.2.tar.gz) = 5a85970ba61a99f55a26d2536a11d512b39bbd622f5737d25a9a8c10db81efa9 From owner-svn-ports-head@freebsd.org Wed Sep 14 22:11:30 2016 Return-Path: Delivered-To: svn-ports-head@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 BEDEBBDA69B; Wed, 14 Sep 2016 22:11:30 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id A44E714E7; Wed, 14 Sep 2016 22:11:30 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 9E2971851; Wed, 14 Sep 2016 22:11:30 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 62D79230A4; Wed, 14 Sep 2016 22:11:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id cJv2mvA_MvmK; Wed, 14 Sep 2016 22:11:26 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 93F8F2309E To: Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> <74591600-69ee-7219-c878-5ae7366b42b8@passap.ru> From: Bryan Drewery Organization: FreeBSD Message-ID: <86ed1257-e5b7-8e82-ad37-039690a394a1@FreeBSD.org> Date: Wed, 14 Sep 2016 15:11:25 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <74591600-69ee-7219-c878-5ae7366b42b8@passap.ru> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="QUud35N7QdlRvWK4xaNxAGVuU0RaGDugm" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:11:30 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --QUud35N7QdlRvWK4xaNxAGVuU0RaGDugm Content-Type: multipart/mixed; boundary="OK7Q7aBBH1jmcCVEW1BR0cwGeqPt6EX1C"; protected-headers="v1" From: Bryan Drewery To: Boris Samorodov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <86ed1257-e5b7-8e82-ad37-039690a394a1@FreeBSD.org> Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> <74591600-69ee-7219-c878-5ae7366b42b8@passap.ru> In-Reply-To: <74591600-69ee-7219-c878-5ae7366b42b8@passap.ru> --OK7Q7aBBH1jmcCVEW1BR0cwGeqPt6EX1C Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/14/16 1:32 PM, Boris Samorodov wrote: > 14.09.2016 22:44, Bryan Drewery =D0=BF=D0=B8=D1=88=D0=B5=D1=82: >=20 >> Ports need maintainers.=20 >=20 > Agreed. But _need_ is not _must have_. http://www.merriam-webster.com/dictionary/need "a situation in which someone or something must do or have something" >=20 >> It is standard practice to deprecate ports without a maintainer >=20 > Then it is a bad practice. Having ports without a maintainer is a bad practice. It leaves users with no one to support them when things go wrong. A new compiler could easily break this port and no one would be there to support fixing it. > Unless you say "... to deprecate *broken/unwanted/etc* ports ...". But > you did not. >=20 --=20 Regards, Bryan Drewery --OK7Q7aBBH1jmcCVEW1BR0cwGeqPt6EX1C-- --QUud35N7QdlRvWK4xaNxAGVuU0RaGDugm Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2csOAAoJEDXXcbtuRpfPDuEIALjgBHxr82V+b5PNmVvRnbJS ZzqvbXquTutNGL6RdsEsIxpwEDXyn9+SqKSL2jWIfIEwdSRNF/LxlPCFS5NO2BjO CKs13sjckLsFxuTN6pkmQLxpHWN6lk8z84aiD9dhNyKd6nfpMTLkvty0b6fho99p BLYJgJDwlVhn4/U6rs2oIOPf0ibAsMoCD/pnYXHsUWCqCXrVfmi9sQrIi+l42Bqf NtWyk7BYSu23joOxwKxRBmS+SLucA3kWvyXHR08P7vIWKin6s+4H6YbDXp9KQ2vl gbxxuZmMbAoItP8yjRmnXSy1YGSWfGb1eQ3eYMysdhTz8KQPgKUqE0vZ0SAlf2U= =d7Mo -----END PGP SIGNATURE----- --QUud35N7QdlRvWK4xaNxAGVuU0RaGDugm-- From owner-svn-ports-head@freebsd.org Wed Sep 14 22:15:30 2016 Return-Path: Delivered-To: svn-ports-head@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 94478BDAA00; Wed, 14 Sep 2016 22:15:30 +0000 (UTC) (envelope-from osa@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 565CF1949; Wed, 14 Sep 2016 22:15:30 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EMFTvs042532; Wed, 14 Sep 2016 22:15:29 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EMFTse042528; Wed, 14 Sep 2016 22:15:29 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201609142215.u8EMFTse042528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 14 Sep 2016 22:15:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422165 - in head/www: nginx nginx-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:15:30 -0000 Author: osa Date: Wed Sep 14 22:15:29 2016 New Revision: 422165 URL: https://svnweb.freebsd.org/changeset/ports/422165 Log: mod_zip: good-bye googlecode, welcome github! Upgrade to the latest revision. Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo head/www/nginx/Makefile head/www/nginx/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Wed Sep 14 22:09:52 2016 (r422164) +++ head/www/nginx-devel/Makefile Wed Sep 14 22:15:29 2016 (r422165) @@ -732,10 +732,10 @@ CONFIGURE_ARGS+=--with-http_xslt_module .endif .if ${PORT_OPTIONS:MHTTP_ZIP} -NGINX_ZIP_VERSION= 1.1.6 -MASTER_SITES+= http://mod-zip.googlecode.com/files/:zip -BROKEN= Unfetchable (google code has gone away) -DISTFILES+= mod_zip-${NGINX_ZIP_VERSION}.tar.gz:zip +NGINX_ZIP_VERSION= ca0b345 +GH_ACCOUNT+= evanmiller:mod_zip +GH_PROJECT+= mod_zip:mod_zip +GH_TAGNAME+= ${NGINX_ZIP_VERSION}:mod_zip CONFIGURE_ARGS+=--add-module=${WRKDIR}/mod_zip-${NGINX_ZIP_VERSION} .endif Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Wed Sep 14 22:09:52 2016 (r422164) +++ head/www/nginx-devel/distinfo Wed Sep 14 22:15:29 2016 (r422165) @@ -1,4 +1,4 @@ -TIMESTAMP = 1473890571 +TIMESTAMP = 1473890109 SHA256 (nginx-1.11.4.tar.gz) = 06221c1f43f643bc6bfe5b2c26d19e09f2588d5cde6c65bdb77dfcce7c026b3b SIZE (nginx-1.11.4.tar.gz) = 949793 SHA256 (nginx-accesskey-2.0.3.tar.gz) = d9e94321e78a02de16c57f3e048fd31059fd8116ed03d6de7180f435c52502b1 @@ -19,8 +19,6 @@ SHA256 (nginx_upstream_fair-20090923.tar SIZE (nginx_upstream_fair-20090923.tar.gz) = 10024 SHA256 (1.2.4.tar.gz) = f79521a25322cb4f504547a0b0f76fd9d024c14440e5d790e26dda70ea4f701a SIZE (1.2.4.tar.gz) = 120448 -SHA256 (mod_zip-1.1.6.tar.gz) = d30546b4be8308c721df0240ebc38c474c6b577381a110321eded6dbed5104b1 -SIZE (mod_zip-1.1.6.tar.gz) = 21991 SHA256 (modsecurity-2.9.1.tar.gz) = 958cc5a7a7430f93fac0fd6f8b9aa92fc1801efce0cda797d6029d44080a9b24 SIZE (modsecurity-2.9.1.tar.gz) = 4261212 SHA256 (passenger-5.0.30.tar.gz) = f367e0c1d808d7356c3749222194a72ea03efe61a3bf1b682bd05d47f087b4e3 @@ -77,6 +75,8 @@ SHA256 (yaoweibin-nginx_upstream_check_m SIZE (yaoweibin-nginx_upstream_check_module-10782ea_GH0.tar.gz) = 128281 SHA256 (wandenberg-nginx-video-thumbextractor-module-0.7.0_GH0.tar.gz) = 382bb41fa739f471fdab9fbabc5384d8ec7f25b5bb0c45c153f5cc01d428abe2 SIZE (wandenberg-nginx-video-thumbextractor-module-0.7.0_GH0.tar.gz) = 2709351 +SHA256 (evanmiller-mod_zip-ca0b345_GH0.tar.gz) = babab586ebde83d3cf128eabdc3a66f922db740a43c943ffd9cd8b055acf3a5b +SIZE (evanmiller-mod_zip-ca0b345_GH0.tar.gz) = 26035 SHA256 (openresty-drizzle-nginx-module-v0.1.9_GH0.tar.gz) = aafb79d87273eec023025333c34d6d0108026a1ce2e09b20a53e8e2d9bf65080 SIZE (openresty-drizzle-nginx-module-v0.1.9_GH0.tar.gz) = 59024 SHA256 (cubicdaiya-ngx_dynamic_upstream-v0.1.3_GH0.tar.gz) = bf60cf196c86193376d11f8c7a3826994b24a48bb36943bab8a25af6e776af3b Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Wed Sep 14 22:09:52 2016 (r422164) +++ head/www/nginx/Makefile Wed Sep 14 22:15:29 2016 (r422165) @@ -729,10 +729,10 @@ CONFIGURE_ARGS+=--with-http_xslt_module .endif .if ${PORT_OPTIONS:MHTTP_ZIP} -NGINX_ZIP_VERSION= 1.1.6 -MASTER_SITES+= http://mod-zip.googlecode.com/files/:zip -BROKEN= Unfetchable (google code has gone away) -DISTFILES+= mod_zip-${NGINX_ZIP_VERSION}.tar.gz:zip +NGINX_ZIP_VERSION= ca0b345 +GH_ACCOUNT+= evanmiller:mod_zip +GH_PROJECT+= mod_zip:mod_zip +GH_TAGNAME+= ${NGINX_ZIP_VERSION}:mod_zip CONFIGURE_ARGS+=--add-module=${WRKDIR}/mod_zip-${NGINX_ZIP_VERSION} .endif Modified: head/www/nginx/distinfo ============================================================================== --- head/www/nginx/distinfo Wed Sep 14 22:09:52 2016 (r422164) +++ head/www/nginx/distinfo Wed Sep 14 22:15:29 2016 (r422165) @@ -1,4 +1,4 @@ -TIMESTAMP = 1471017379 +TIMESTAMP = 1473890109 SHA256 (nginx-1.10.1.tar.gz) = 1fd35846566485e03c0e318989561c135c598323ff349c503a6c14826487a801 SIZE (nginx-1.10.1.tar.gz) = 909077 SHA256 (nginx-accesskey-2.0.3.tar.gz) = d9e94321e78a02de16c57f3e048fd31059fd8116ed03d6de7180f435c52502b1 @@ -19,8 +19,6 @@ SHA256 (nginx_upstream_fair-20090923.tar SIZE (nginx_upstream_fair-20090923.tar.gz) = 10024 SHA256 (1.2.4.tar.gz) = f79521a25322cb4f504547a0b0f76fd9d024c14440e5d790e26dda70ea4f701a SIZE (1.2.4.tar.gz) = 120448 -SHA256 (mod_zip-1.1.6.tar.gz) = d30546b4be8308c721df0240ebc38c474c6b577381a110321eded6dbed5104b1 -SIZE (mod_zip-1.1.6.tar.gz) = 21991 SHA256 (modsecurity-2.9.1.tar.gz) = 958cc5a7a7430f93fac0fd6f8b9aa92fc1801efce0cda797d6029d44080a9b24 SIZE (modsecurity-2.9.1.tar.gz) = 4261212 SHA256 (passenger-5.0.30.tar.gz) = f367e0c1d808d7356c3749222194a72ea03efe61a3bf1b682bd05d47f087b4e3 @@ -77,6 +75,8 @@ SHA256 (yaoweibin-nginx_upstream_check_m SIZE (yaoweibin-nginx_upstream_check_module-10782ea_GH0.tar.gz) = 128281 SHA256 (wandenberg-nginx-video-thumbextractor-module-0.7.0_GH0.tar.gz) = 382bb41fa739f471fdab9fbabc5384d8ec7f25b5bb0c45c153f5cc01d428abe2 SIZE (wandenberg-nginx-video-thumbextractor-module-0.7.0_GH0.tar.gz) = 2709351 +SHA256 (evanmiller-mod_zip-ca0b345_GH0.tar.gz) = babab586ebde83d3cf128eabdc3a66f922db740a43c943ffd9cd8b055acf3a5b +SIZE (evanmiller-mod_zip-ca0b345_GH0.tar.gz) = 26035 SHA256 (openresty-drizzle-nginx-module-v0.1.9_GH0.tar.gz) = aafb79d87273eec023025333c34d6d0108026a1ce2e09b20a53e8e2d9bf65080 SIZE (openresty-drizzle-nginx-module-v0.1.9_GH0.tar.gz) = 59024 SHA256 (cubicdaiya-ngx_dynamic_upstream-v0.1.3_GH0.tar.gz) = bf60cf196c86193376d11f8c7a3826994b24a48bb36943bab8a25af6e776af3b From owner-svn-ports-head@freebsd.org Wed Sep 14 22:25:08 2016 Return-Path: Delivered-To: svn-ports-head@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 B46E0BDAEDD; Wed, 14 Sep 2016 22:25:08 +0000 (UTC) (envelope-from osa@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 778331FDF; Wed, 14 Sep 2016 22:25:08 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EMP7Bq046264; Wed, 14 Sep 2016 22:25:07 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EMP7KH046261; Wed, 14 Sep 2016 22:25:07 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201609142225.u8EMP7KH046261@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 14 Sep 2016 22:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422166 - in head/www/nginx-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:25:08 -0000 Author: osa Date: Wed Sep 14 22:25:07 2016 New Revision: 422166 URL: https://svnweb.freebsd.org/changeset/ports/422166 Log: Do not littering /var/log by compiled-in error log. Bump PORTREVISION. PR: 212416 Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/files/patch-conf-nginx.conf head/www/nginx-devel/pkg-plist Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Wed Sep 14 22:15:29 2016 (r422165) +++ head/www/nginx-devel/Makefile Wed Sep 14 22:25:07 2016 (r422166) @@ -3,6 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.11.4 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ MASTER_SITES+= LOCAL/osa @@ -244,13 +245,13 @@ RAKE_BIN= ${LOCALBASE}/bin/rake .endif NGINX_VARDIR?= /var -NGINX_LOGDIR?= ${NGINX_VARDIR}/log +NGINX_LOGDIR?= ${NGINX_VARDIR}/log/nginx NGINX_RUNDIR?= ${NGINX_VARDIR}/run NGINX_TMPDIR?= ${NGINX_VARDIR}/tmp/nginx HTTP_PORT?= 80 -NGINX_ACCESSLOG?= ${NGINX_LOGDIR}/nginx-access.log -NGINX_ERRORLOG?= ${NGINX_LOGDIR}/nginx-error.log +NGINX_ACCESSLOG?= ${NGINX_LOGDIR}/access.log +NGINX_ERRORLOG?= ${NGINX_LOGDIR}/error.log CONFLICTS?= nginx-1.* USE_RC_SUBR= nginx @@ -505,7 +506,7 @@ CONFIGURE_ARGS+=--with-http_flv_module .endif .if ${PORT_OPTIONS:MHTTP_JSON_STATUS} -NGINX_JSON_STATUS_VERSION= 1d2f303 +NGINX_JSON_STATUS_VERSION= 1d2f303 GH_ACCOUNT+= nginx-modules:json_status GH_PROJECT+= ngx_http_json_status_module:json_status GH_TAGNAME+= ${NGINX_JSON_STATUS_VERSION}:json_status @@ -658,7 +659,7 @@ CONFIGURE_ARGS+=--with-http_sub_module .endif .if ${PORT_OPTIONS:MHTTP_UPLOAD} -GIT_UPLOAD_VERSION= aba1e3f34c +GIT_UPLOAD_VERSION= aba1e3f34c GH_ACCOUNT+= vkholodkov:upload GH_PROJECT+= nginx-upload-module:upload GH_TAGNAME+= ${GIT_UPLOAD_VERSION}:upload @@ -1111,7 +1112,7 @@ CONFIGURE_ARGS+=--add-module=${WRKSRC_ic EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-calio-iconv-nginx-module-config .endif -PLIST_SUB+= NGINX_TMPDIR=${NGINX_TMPDIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} +PLIST_SUB+= NGINX_TMPDIR=${NGINX_TMPDIR} NGINX_LOGDIR=${NGINX_LOGDIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} USERS?= ${WWWOWN} GROUPS?=${WWWGRP} @@ -1141,7 +1142,8 @@ post-extract: post-patch: @${REINPLACE_CMD} 's!%%HTTP_PORT%%!${HTTP_PORT}!; \ - s!%%PREFIX%%!${PREFIX}!' \ + s!%%PREFIX%%!${PREFIX}!; \ + s!%%NGINX_ERRORLOG%%!${NGINX_ERRORLOG}!' \ ${WRKSRC}/conf/nginx.conf .if ${PORT_OPTIONS:MHTTP_ACCESSKEY} @${REINPLACE_CMD} \ @@ -1247,6 +1249,7 @@ do-install: ${MKDIR} ${STAGEDIR}${MODULESDIR} .endif ${MKDIR} ${STAGEDIR}${NGINX_TMPDIR} + ${MKDIR} ${STAGEDIR}${NGINX_LOGDIR} ${INSTALL_PROGRAM} ${WRKSRC}/objs/nginx ${STAGEDIR}${PREFIX}/sbin .for i in koi-utf koi-win win-utf ${INSTALL_DATA} ${WRKSRC}/conf/${i} ${STAGEDIR}${ETCDIR} Modified: head/www/nginx-devel/files/patch-conf-nginx.conf ============================================================================== --- head/www/nginx-devel/files/patch-conf-nginx.conf Wed Sep 14 22:15:29 2016 (r422165) +++ head/www/nginx-devel/files/patch-conf-nginx.conf Wed Sep 14 22:25:07 2016 (r422166) @@ -1,6 +1,24 @@ ---- conf/nginx.conf.orig Thu Jan 18 10:08:18 2007 -+++ conf/nginx.conf Thu Jun 14 12:57:52 2007 -@@ -33,7 +33,7 @@ +--- conf/nginx.conf.orig 2016-09-06 14:56:32 UTC ++++ conf/nginx.conf +@@ -2,9 +2,14 @@ + #user nobody; + worker_processes 1; + +-#error_log logs/error.log; +-#error_log logs/error.log notice; +-#error_log logs/error.log info; ++# This default error log path is compiled-in to make sure configuration parsing ++# errors are logged somewhere, especially during unattended boot when stderr ++# isn't normally logged anywhere. This path will be touched on every nginx ++# start regardless of error log location configured here. See ++# https://trac.nginx.org/nginx/ticket/147 for more info. ++# ++#error_log %%NGINX_ERRORLOG%%; ++# + + #pid logs/nginx.pid; + +@@ -33,7 +38,7 @@ http { #gzip on; server { @@ -9,7 +27,7 @@ server_name localhost; #charset koi8-r; -@@ -41,7 +41,7 @@ +@@ -41,7 +46,7 @@ http { #access_log logs/host.access.log main; location / { @@ -18,7 +36,7 @@ index index.html index.htm; } -@@ -51,7 +51,7 @@ +@@ -51,7 +56,7 @@ http { # error_page 500 502 503 504 /50x.html; location = /50x.html { Modified: head/www/nginx-devel/pkg-plist ============================================================================== --- head/www/nginx-devel/pkg-plist Wed Sep 14 22:15:29 2016 (r422165) +++ head/www/nginx-devel/pkg-plist Wed Sep 14 22:25:07 2016 (r422166) @@ -15,4 +15,5 @@ %%WWWDATA%%@unexec if [ -L %D/www/nginx ]; then rm -f %D/www/nginx; fi sbin/nginx @dir %%NGINX_TMPDIR%% +@dir %%NGINX_LOGDIR%% man/man8/nginx.8.gz From owner-svn-ports-head@freebsd.org Wed Sep 14 22:28:41 2016 Return-Path: Delivered-To: svn-ports-head@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 9E666BDB018; Wed, 14 Sep 2016 22:28:41 +0000 (UTC) (envelope-from osa@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 7156A1232; Wed, 14 Sep 2016 22:28:41 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EMSePN046478; Wed, 14 Sep 2016 22:28:40 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EMSeQT046477; Wed, 14 Sep 2016 22:28:40 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201609142228.u8EMSeQT046477@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 14 Sep 2016 22:28:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422167 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:28:41 -0000 Author: osa Date: Wed Sep 14 22:28:40 2016 New Revision: 422167 URL: https://svnweb.freebsd.org/changeset/ports/422167 Log: www/nginx-devel: Change default log locations to avoid /var/log pollution The nginx error log default will always be touched regardless of the value of the error_log directive in nginx.conf. This is not a bug. It also breaks shell tab completion for the sane default of /var/log/nginx. This change aligns the compiled-in default and the configuration default of error log to a new default /var/log/nginx directory. PR: 212416 Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Sep 14 22:25:07 2016 (r422166) +++ head/UPDATING Wed Sep 14 22:28:40 2016 (r422167) @@ -6,6 +6,19 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20160914: + AFFECTS: uses of www/nginx-devel + AUTHOR: osa@FreeBSD.org + + Nginx now creates logs under /var/log/nginx/ and changes default log + names from "nginx-access.log" and "nginx-error.log" to "access.log" and + "error.log" respectively. This is important for the error log because + the location is encoded and touched by nginx during startup regardless + of the configured location for the error log. + + See http://trac.nginx.org/nginx/ticket/147 for additional information + on why this happens. + +20160914: AFFECTS: users of deskutils/xfce4-volumed-pulse AUTHOR: olivierd@FreeBSD.org From owner-svn-ports-head@freebsd.org Wed Sep 14 22:30:57 2016 Return-Path: Delivered-To: svn-ports-head@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 2CD85BDB16F; Wed, 14 Sep 2016 22:30:57 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BF1CB1391; Wed, 14 Sep 2016 22:30:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 95E70BDD50; Thu, 15 Sep 2016 00:30:54 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 8268ABDD4F; Thu, 15 Sep 2016 00:30:54 +0200 (CEST) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: "George L. Yermulnik" , Bryan Drewery References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> Date: Thu, 15 Sep 2016 00:30:53 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <20160914214421.GA61341@yz.kiev.ua> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="nxep23ncGq6Fnnrka9l4Xla5mkrvocNGQ" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:30:57 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --nxep23ncGq6Fnnrka9l4Xla5mkrvocNGQ Content-Type: multipart/mixed; boundary="kJKANGOVNX7aoLNAlUsRLcxwirCMjvn4f"; protected-headers="v1" From: Mathieu Arnold To: "George L. Yermulnik" , Bryan Drewery Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> In-Reply-To: <20160914214421.GA61341@yz.kiev.ua> --kJKANGOVNX7aoLNAlUsRLcxwirCMjvn4f Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/09/2016 =C3=A0 23:44, George L. Yermulnik a =C3=A9crit : > Hello! > > On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: > >> Author: bdrewery >> Date: Wed Sep 14 19:25:19 2016 >> New Revision: 422154 >> URL: https://svnweb.freebsd.org/changeset/ports/422154 >> Log: >> Mark deprecated as it has no maintainer and is already in base. > Am I using some broken FreeBSD installation? > [--- cut ---] > 00:41:56 [root#nb][w:2][j:0][~]> uname -srm > FreeBSD 10.3-STABLE i386 > 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH > /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: > 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf > WITHOUT_GAMES=3DYES > 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l > 0 > [--- cut ---] Ok, so, without GAMES, you don't have fortune. You then do not need to have a fortune file, right ? --=20 Mathieu Arnold --kJKANGOVNX7aoLNAlUsRLcxwirCMjvn4f-- --nxep23ncGq6Fnnrka9l4Xla5mkrvocNGQ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2c+eXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IDXAP/jRTh4TqzCRDaID/uRj4P/mJ pPMFFgHTolOQgw00HJkobKzjIDfmfo16tQckBg3pqlsCVCrs4zI9K8JQbyA6DrJm t+rG9jwAnJfauhlC4SUQH6fkti0XxKF/FGSogftqe2otEohvAYVptvE3inDoIqdn K8krWS7wGyhmQH9v5e7yhxFpVcB5Cxmzi0lKVc5JYCdSmBFS40RrAWeGmRe9h11U zTJRYoBMf5PEGCOO4Kz0/F9V9q+KVa2OeUJYIU9A28ckR/fc3yTPPf6+sjdFPxHw uM0q3FMkO7M5gtwSPsculFM9EyVPgq4PfZAxOm0N5DGF9O1T5LYwXNoRaZlMr5Yd rhUuZ6OPYWcxVadpPM9F2J+k7IpGKt0sVCgSkV7JxeacTD/HtZmoLCVafwyxD6p6 muHCJF+D7zoL/qxztbagk5re27cqC1oA6kgKc5tfns3uhtnBf54R1KQj3eKW4ZzM +k/cTAk/qjZ73DS+kRmAjAflPUWJeVJc4hFPA8D/uXx9b+Uvv6LhqqGM0VnrK0Es XcPrTuaKSkqymmISAa/GJ8qU2E3zME+4fLmHL2SvxG7XmGmuwJeQ3YVSLxN1Xfur NNn3RFDrmdDyM3e62aHS8PkKnIoK4sXagQqxiuQE4omnGaLGXxvBQi8wG3pq8XOm Gp7azw2nOLzTEsnsYIER =+X/q -----END PGP SIGNATURE----- --nxep23ncGq6Fnnrka9l4Xla5mkrvocNGQ-- From owner-svn-ports-head@freebsd.org Wed Sep 14 22:33:04 2016 Return-Path: Delivered-To: svn-ports-head@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 E1D7DBDB241; Wed, 14 Sep 2016 22:33:04 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BDA3A1808; Wed, 14 Sep 2016 22:33:04 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 232C143CF4; Wed, 14 Sep 2016 17:33:00 -0500 (CDT) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Mathieu Arnold , "George L. Yermulnik" , Bryan Drewery References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> Date: Wed, 14 Sep 2016 17:33:01 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:33:05 -0000 On 9/14/2016 17:30, Mathieu Arnold wrote: > Le 14/09/2016 à 23:44, George L. Yermulnik a écrit : >> Hello! >> >> On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: >> >>> Author: bdrewery >>> Date: Wed Sep 14 19:25:19 2016 >>> New Revision: 422154 >>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>> Log: >>> Mark deprecated as it has no maintainer and is already in base. >> Am I using some broken FreeBSD installation? >> [--- cut ---] >> 00:41:56 [root#nb][w:2][j:0][~]> uname -srm >> FreeBSD 10.3-STABLE i386 >> 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH >> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: >> 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf >> WITHOUT_GAMES=YES >> 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l >> 0 >> [--- cut ---] > > Ok, so, without GAMES, you don't have fortune. You then do not need to > have a fortune file, right ? > Unless he uses that machine to build a package repository for other machines that do have fortune, which despite any objection, is a legitimate case. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 22:44:20 2016 Return-Path: Delivered-To: svn-ports-head@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 76F2CBDB5E4; Wed, 14 Sep 2016 22:44:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 395921DC9; Wed, 14 Sep 2016 22:44:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from [10.0.1.69] (cpe-071-065-239-148.nc.res.rr.com [71.65.239.148] (may be forged)) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id u8EMhhqR023948 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Wed, 14 Sep 2016 22:44:02 GMT (envelope-from swills@FreeBSD.org) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> <55840821-5f88-54b6-4b99-eb8e09d0ae22@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Steve Wills Message-ID: <0aaad8b7-67f7-1b08-81be-7610d74d5e1c@FreeBSD.org> Date: Wed, 14 Sep 2016 18:43:37 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <55840821-5f88-54b6-4b99-eb8e09d0ae22@marino.st> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Wed, 14 Sep 2016 22:44:05 +0000 (UTC) X-Spam-Status: No, score=-1.0 required=4.5 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.1 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:44:20 -0000 Hi, On 09/14/2016 18:01, John Marino wrote: > Fact 2) I solved the problem. The ports were cleaner as a result. I think the disagreement is here. Not everyone agrees it's cleaner, particularly having an un-maintained copy of fortune_strfile duplicating the one in base. > Fact 3) Somebody exerted energy to revert my work > > There are over 26,000 ports. This one should have caused no one to > notice. Half of the fortune ports are currently marked broken because > they are unfetchable. Even if you disagree for whatever reason, at > *worst* it wasn't hurting anything. But the disagreement is that it is setting a bad precedent, I think. > The insult to injury it that this stuff was pulled immediately after I > spent several days fixing SSL across the entire tree. Trust me, I'm > pretty ticked off right now and it is personal for me. The SSL work is good stuff and I'm sure appreciated by many, including myself. Disagreement over this small issue doesn't negate the positive work on SSL. It's important to keep things in perspective, I think. People don't tend to send mails to say thanks, unfortunately. Also, people tend to do this kind of work for their own reasons, so having it done is it's own reward. I think if you're motivated purely by doing things for the greater good and the appreciation of the community, you may be disappointed. I think exploiting a "loophole" in the rules to add an un-maintained port isn't going to win any kudos. Aside from the above comments, I've tried to keep my communication focused on technical details rather that personal issues to avoid making this more frustrating. Let's get back to the technical issues now. Thanks again for your work, Steve From owner-svn-ports-head@freebsd.org Wed Sep 14 22:46:14 2016 Return-Path: Delivered-To: svn-ports-head@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 96487BDB62E; Wed, 14 Sep 2016 22:46:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7A51F1EBF; Wed, 14 Sep 2016 22:46:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 73F04144B; Wed, 14 Sep 2016 22:46:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 3BE53231EC; Wed, 14 Sep 2016 22:46:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id VHdWWexZOIYk; Wed, 14 Sep 2016 22:46:10 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 71B22231E7 To: marino@freebsd.org, Mathieu Arnold , "George L. Yermulnik" References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Bryan Drewery Organization: FreeBSD Message-ID: <79dee31b-48bb-2f50-34ef-4825e465ccda@FreeBSD.org> Date: Wed, 14 Sep 2016 15:46:09 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Q8RtOHijcfKgLPgUEFvEQaX6Qbd1iJPko" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:46:14 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Q8RtOHijcfKgLPgUEFvEQaX6Qbd1iJPko Content-Type: multipart/mixed; boundary="lDbLl4HBecDih42bw6QowAWQWhipXJNEj"; protected-headers="v1" From: Bryan Drewery To: marino@freebsd.org, Mathieu Arnold , "George L. Yermulnik" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <79dee31b-48bb-2f50-34ef-4825e465ccda@FreeBSD.org> Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> In-Reply-To: <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> --lDbLl4HBecDih42bw6QowAWQWhipXJNEj Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/14/16 3:33 PM, John Marino wrote: > On 9/14/2016 17:30, Mathieu Arnold wrote: >> Le 14/09/2016 =C3=A0 23:44, George L. Yermulnik a =C3=A9crit : >>> Hello! >>> >>> On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: >>> >>>> Author: bdrewery >>>> Date: Wed Sep 14 19:25:19 2016 >>>> New Revision: 422154 >>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>>> Log: >>>> Mark deprecated as it has no maintainer and is already in base. >>> Am I using some broken FreeBSD installation? >>> [--- cut ---] >>> 00:41:56 [root#nb][w:2][j:0][~]> uname -srm >>> FreeBSD 10.3-STABLE i386 >>> 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH >>> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: >>> 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf >>> WITHOUT_GAMES=3DYES >>> 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -= l >>> 0 >>> [--- cut ---] >> >> Ok, so, without GAMES, you don't have fortune. You then do not need to= >> have a fortune file, right ? >> >=20 > Unless he uses that machine to build a package repository for other > machines that do have fortune, which despite any objection, is a > legitimate case. >=20 It's absolutely not. Building packages in a jail should match the target. You cannot build with missing dependencies as many ports will see those dependencies missing in autoconf (or similar) and disable features. Even outside of a jail, the build should be done in a chroot matching the target. It's basic cross-building. --=20 Regards, Bryan Drewery --lDbLl4HBecDih42bw6QowAWQWhipXJNEj-- --Q8RtOHijcfKgLPgUEFvEQaX6Qbd1iJPko Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2dMyAAoJEDXXcbtuRpfPIdcIAMNrklG85nBj9kOaMIOr7yeT uqK6CKa/X2LsRjj4yEEsMseZfkUyVFVv9hyYWmNSwujE9wEhzVr5ELaAKcSJ69Uh WLRzIdv2lOdlWgdF2Lyw+9jPeobZYvSmhQ4AOIsGiVRvY2m/uKobgNHf+QqfjiVs g0Rdbn7cayzX+thPMudTiD8k6UGKMdgUEPAmsJIHC3LIrRSQTmxeetW6xfNlHSB7 6+JS7EizwVLzYliC7zVIwX50eWgun2GOZsinH8081QZc+kRsaUwJ9SFTYXIVqKoJ zkxHfH7FUbbOtVSJKHgNnOcubh3GBtkKxuyWZ5nqFyN/YsUrgxbVKJTXxfo8OeQ= =Ws5Z -----END PGP SIGNATURE----- --Q8RtOHijcfKgLPgUEFvEQaX6Qbd1iJPko-- From owner-svn-ports-head@freebsd.org Wed Sep 14 22:49:43 2016 Return-Path: Delivered-To: svn-ports-head@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 CAB75BDB6B3; Wed, 14 Sep 2016 22:49:43 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A07381FE9; Wed, 14 Sep 2016 22:49:43 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 0149F43C2B; Wed, 14 Sep 2016 17:49:38 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Steve Wills , marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> <55840821-5f88-54b6-4b99-eb8e09d0ae22@marino.st> <0aaad8b7-67f7-1b08-81be-7610d74d5e1c@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: <00cb53dd-c51f-ce2f-378d-9e77d49e830b@marino.st> Date: Wed, 14 Sep 2016 17:49:40 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <0aaad8b7-67f7-1b08-81be-7610d74d5e1c@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:49:43 -0000 On 9/14/2016 17:43, Steve Wills wrote: > Hi, > > On 09/14/2016 18:01, John Marino wrote: >> Fact 2) I solved the problem. The ports were cleaner as a result. > > I think the disagreement is here. Not everyone agrees it's cleaner, > particularly having an un-maintained copy of fortune_strfile duplicating > the one in base. Only something that didn't review the commit would say that. It is cleaner and that's pretty much indisputable. As I said, had I known Antoine and Bryan were going to pull that stunt, I would have put my name back on the port and just squated on it as others do. > >> Fact 3) Somebody exerted energy to revert my work >> >> There are over 26,000 ports. This one should have caused no one to >> notice. Half of the fortune ports are currently marked broken because >> they are unfetchable. Even if you disagree for whatever reason, at >> *worst* it wasn't hurting anything. > > But the disagreement is that it is setting a bad precedent, I think. agree to disagree > > I think exploiting a "loophole" in the rules to add an un-maintained > port isn't going to win any kudos. I wasn't trying to get away with anything. I didn' t think I was doing anything wrong and I still don't. > > Aside from the above comments, I've tried to keep my communication > focused on technical details rather that personal issues to avoid making > this more frustrating. Let's get back to the technical issues now. the problem is none of this is technical. If this was based on technical review, first there would have been a discussion which didn't happen. It's pure emotion. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 22:52:56 2016 Return-Path: Delivered-To: svn-ports-head@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 3CB61BDB8BA; Wed, 14 Sep 2016 22:52:56 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 175BD1418; Wed, 14 Sep 2016 22:52:55 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 4FA9643CF4; Wed, 14 Sep 2016 17:52:51 -0500 (CDT) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Bryan Drewery , marino@freebsd.org, Mathieu Arnold , "George L. Yermulnik" References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> <79dee31b-48bb-2f50-34ef-4825e465ccda@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: Date: Wed, 14 Sep 2016 17:52:53 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <79dee31b-48bb-2f50-34ef-4825e465ccda@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:52:56 -0000 On 9/14/2016 17:46, Bryan Drewery wrote: > On 9/14/16 3:33 PM, John Marino wrote: >> On 9/14/2016 17:30, Mathieu Arnold wrote: >>> Le 14/09/2016 à 23:44, George L. Yermulnik a écrit : >>>> Hello! >>>> >>>> On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: >>>> >>>>> Author: bdrewery >>>>> Date: Wed Sep 14 19:25:19 2016 >>>>> New Revision: 422154 >>>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>>>> Log: >>>>> Mark deprecated as it has no maintainer and is already in base. >>>> Am I using some broken FreeBSD installation? >>>> [--- cut ---] >>>> 00:41:56 [root#nb][w:2][j:0][~]> uname -srm >>>> FreeBSD 10.3-STABLE i386 >>>> 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH >>>> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: >>>> 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf >>>> WITHOUT_GAMES=YES >>>> 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l >>>> 0 >>>> [--- cut ---] >>> >>> Ok, so, without GAMES, you don't have fortune. You then do not need to >>> have a fortune file, right ? >>> >> >> Unless he uses that machine to build a package repository for other >> machines that do have fortune, which despite any objection, is a >> legitimate case. >> > > It's absolutely not. Building packages in a jail should match the > target. You cannot build with missing dependencies as many ports will > see those dependencies missing in autoconf (or similar) and disable > features. Even outside of a jail, the build should be done in a chroot > matching the target. It's basic cross-building. Absolutely false. You don't need fortune to build fortune data files. I've already proven that. You can't possible state that's not true. Only strfile is needed. We're talking about a specific case, not a general one. I understand you are trying to justify rash behavior at this point but I'm not going let misinformation pass by. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 22:55:59 2016 Return-Path: Delivered-To: svn-ports-head@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 6D8A6BDB93F; Wed, 14 Sep 2016 22:55:59 +0000 (UTC) (envelope-from yz@yz.kiev.ua) Received: from nb.yz.kiev.ua (nb.yz.kiev.ua [92.63.99.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 285BE1593; Wed, 14 Sep 2016 22:55:58 +0000 (UTC) (envelope-from yz@yz.kiev.ua) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=yz.kiev.ua; s=dkim; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=DGe+uj2se6y2YPea8x+10h18NSv7flyyYz8G6E1ct2s=; b=NyFG7xulGkMX7GRXOAw/ulYZFT 0paLulW95cNrz57Nns75Ed1QONzUthwzFqktDOSig1wv02lJV9nphuus3fETfa6mkgIzY2f27nhP7 GuDG6FZ8qG46oqTpcSIXzJryN8if3PZB2qce7LXwYa3qldw07f9M2mdkjfmaNxZDJpkw=; Received: from yz by nb.yz.kiev.ua with local (Exim 4.87 (FreeBSD)) (envelope-from ) id 1bkJ5w-000IAI-Rf; Thu, 15 Sep 2016 01:55:56 +0300 Date: Thu, 15 Sep 2016 01:55:56 +0300 From: "George L. Yermulnik" To: Mathieu Arnold Cc: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422154 - head/misc/fortune_strfile Message-ID: <20160914225556.GA67983@yz.kiev.ua> References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> Organization: Earth, Europe, Ukraine, Kiev X-Yz-Mark: yz@nb 20160915 01:51:53 User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:55:59 -0000 Hello! On Thu, 15 Sep 2016 at 00:30:53 (+0200), Mathieu Arnold wrote: > >> Author: bdrewery > >> Date: Wed Sep 14 19:25:19 2016 > >> New Revision: 422154 > >> URL: https://svnweb.freebsd.org/changeset/ports/422154 > >> Log: > >> Mark deprecated as it has no maintainer and is already in base. > > Am I using some broken FreeBSD installation? > > [--- cut ---] > > 00:41:56 [root#nb][w:2][j:0][~]> uname -srm > > FreeBSD 10.3-STABLE i386 > > 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH > > /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: > > 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf > > WITHOUT_GAMES=YES > > 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l > > 0 > > [--- cut ---] > Ok, so, without GAMES, you don't have fortune. You then do not need to > have a fortune file, right ? That's out of my question's scope. I was just wondering why there's no `strfile' if it "is already in base", and why there's `EXTRA' in `EXTRA_DISTRIBUTIONS' for `MK_GAMES' (according to /usr/src/Makefile.inc1) -- George L. Yermulnik [YZ-RIPE] From owner-svn-ports-head@freebsd.org Wed Sep 14 22:56:42 2016 Return-Path: Delivered-To: svn-ports-head@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 68F89BDB97D; Wed, 14 Sep 2016 22:56:42 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4B90F1675; Wed, 14 Sep 2016 22:56:42 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 3E9BB18B3; Wed, 14 Sep 2016 22:56:42 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 06BDC23232; Wed, 14 Sep 2016 22:56:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id 0F2xBl2w6PwU; Wed, 14 Sep 2016 22:56:38 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 05D252322D To: marino@freebsd.org, Mathieu Arnold , "George L. Yermulnik" References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> <79dee31b-48bb-2f50-34ef-4825e465ccda@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Bryan Drewery Organization: FreeBSD Message-ID: Date: Wed, 14 Sep 2016 15:56:37 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="BGGin7cu116BtiCAxTUDaG4iSg00F1BRJ" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:56:42 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --BGGin7cu116BtiCAxTUDaG4iSg00F1BRJ Content-Type: multipart/mixed; boundary="ExhbAvELncmCNoJoepLU2RALqWQ9UraSW"; protected-headers="v1" From: Bryan Drewery To: marino@freebsd.org, Mathieu Arnold , "George L. Yermulnik" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <3a1178ff-952c-c6e6-2253-3f74bdcaaff8@marino.st> <79dee31b-48bb-2f50-34ef-4825e465ccda@FreeBSD.org> In-Reply-To: --ExhbAvELncmCNoJoepLU2RALqWQ9UraSW Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/14/16 3:52 PM, John Marino wrote: > On 9/14/2016 17:46, Bryan Drewery wrote: >> On 9/14/16 3:33 PM, John Marino wrote: >>> On 9/14/2016 17:30, Mathieu Arnold wrote: >>>> Le 14/09/2016 =C3=A0 23:44, George L. Yermulnik a =C3=A9crit : >>>>> Hello! >>>>> >>>>> On Wed, 14 Sep 2016 at 19:25:19 (+0000), Bryan Drewery wrote: >>>>> >>>>>> Author: bdrewery >>>>>> Date: Wed Sep 14 19:25:19 2016 >>>>>> New Revision: 422154 >>>>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>>>>> Log: >>>>>> Mark deprecated as it has no maintainer and is already in base. >>>>> Am I using some broken FreeBSD installation? >>>>> [--- cut ---] >>>>> 00:41:56 [root#nb][w:2][j:0][~]> uname -srm >>>>> FreeBSD 10.3-STABLE i386 >>>>> 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH >>>>> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:= >>>>> 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf >>>>> WITHOUT_GAMES=3DYES >>>>> 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc= -l >>>>> 0 >>>>> [--- cut ---] >>>> >>>> Ok, so, without GAMES, you don't have fortune. You then do not need = to >>>> have a fortune file, right ? >>>> >>> >>> Unless he uses that machine to build a package repository for other >>> machines that do have fortune, which despite any objection, is a >>> legitimate case. >>> >> >> It's absolutely not. Building packages in a jail should match the >> target. You cannot build with missing dependencies as many ports will= >> see those dependencies missing in autoconf (or similar) and disable >> features. Even outside of a jail, the build should be done in a chroo= t >> matching the target. It's basic cross-building. >=20 > Absolutely false. You don't need fortune to build fortune data files. > I've already proven that. You can't possible state that's not true. > Only strfile is needed. We're talking about a specific case, not a > general one. >=20 So why was it in BUILD_DEPENDS? > I understand you are trying to justify rash behavior at this point but > I'm not going let misinformation pass by. >=20 Please respect the CoC. --=20 Regards, Bryan Drewery --ExhbAvELncmCNoJoepLU2RALqWQ9UraSW-- --BGGin7cu116BtiCAxTUDaG4iSg00F1BRJ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2dWlAAoJEDXXcbtuRpfP1XMIANsKLVw2cpadsIZe1G4fVJ/B rYGoo+Huu53L+NwN/fFbzrqz9Ksx9zcuLRI0OIg3m0vDHvfKeuiifm2pyVZ29pyt OpdLDnbsj1j9+bZ742u4YBDnEbS4sxqZ91FjS0UeapOShWwD5WS6wUd4G/8jUIGi cXFFrwifR+jh+wf7qIINnbdpCXe4it7NbX2CoJBrT/j0V5LnFL8V161eabggfEYY 7o/BR1StVAPz6hUImuW551baA1Xxtp/wwvv2nSbFilSyQpVnWZV2fUq2mAWCAVhR e0ylRw6SFGykU0NzFhCgeIz/uocpPEp+5gLybVmyhC6c4XR908act2fh1CIQ29A= =qPDs -----END PGP SIGNATURE----- --BGGin7cu116BtiCAxTUDaG4iSg00F1BRJ-- From owner-svn-ports-head@freebsd.org Wed Sep 14 22:58:00 2016 Return-Path: Delivered-To: svn-ports-head@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 A9762BDB9CD; Wed, 14 Sep 2016 22:58:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 8CA3C175C; Wed, 14 Sep 2016 22:58:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 82AD31994; Wed, 14 Sep 2016 22:58:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 5202C23246; Wed, 14 Sep 2016 22:58:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id BFNIAML3wx-V; Wed, 14 Sep 2016 22:57:57 +0000 (UTC) Subject: Re: svn commit: r422154 - head/misc/fortune_strfile DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 17BEB23240 To: "George L. Yermulnik" , Mathieu Arnold References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <20160914225556.GA67983@yz.kiev.ua> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Bryan Drewery Organization: FreeBSD Message-ID: <0e928151-1b4e-f902-275b-a639679ad4f6@FreeBSD.org> Date: Wed, 14 Sep 2016 15:57:54 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <20160914225556.GA67983@yz.kiev.ua> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="EuXDR0QkiEeBK9MLc7O6PkC8ikl0dnTkA" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:58:00 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --EuXDR0QkiEeBK9MLc7O6PkC8ikl0dnTkA Content-Type: multipart/mixed; boundary="KfsiD5P9townSrVjWq8aDNfVgO3I2knA2"; protected-headers="v1" From: Bryan Drewery To: "George L. Yermulnik" , Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <0e928151-1b4e-f902-275b-a639679ad4f6@FreeBSD.org> Subject: Re: svn commit: r422154 - head/misc/fortune_strfile References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <20160914225556.GA67983@yz.kiev.ua> In-Reply-To: <20160914225556.GA67983@yz.kiev.ua> --KfsiD5P9townSrVjWq8aDNfVgO3I2knA2 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 9/14/16 3:55 PM, George L. Yermulnik wrote: > Hello! >=20 > On Thu, 15 Sep 2016 at 00:30:53 (+0200), Mathieu Arnold wrote: >=20 >>>> Author: bdrewery >>>> Date: Wed Sep 14 19:25:19 2016 >>>> New Revision: 422154 >>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 >>>> Log: >>>> Mark deprecated as it has no maintainer and is already in base. >>> Am I using some broken FreeBSD installation? >>> [--- cut ---] >>> 00:41:56 [root#nb][w:2][j:0][~]> uname -srm >>> FreeBSD 10.3-STABLE i386 >>> 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH >>> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: >>> 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf >>> WITHOUT_GAMES=3DYES >>> 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -= l >>> 0 >>> [--- cut ---] >=20 >> Ok, so, without GAMES, you don't have fortune. You then do not need to= >> have a fortune file, right ? >=20 > That's out of my question's scope. I was just wondering why there's no > `strfile' if it "is already in base", and why there's `EXTRA' in You set WITHOUT_GAMES, that is why it is not there. > `EXTRA_DISTRIBUTIONS' for `MK_GAMES' (according to /usr/src/Makefile.in= c1) >=20 --=20 Regards, Bryan Drewery --KfsiD5P9townSrVjWq8aDNfVgO3I2knA2-- --EuXDR0QkiEeBK9MLc7O6PkC8ikl0dnTkA Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2dXzAAoJEDXXcbtuRpfP8QAIAKadzmTDsI+fM6uhOtEtAw+g COKY2XdyNKPz1E9E6lSwDvSIA3F+hfGclE7UZf+aKvs+9NMoX3FS8eocKlJ9QEhV Yfq1ledV+S8X3Pk0jaTJCQnrYlJ8TkQNeX1ffpBi/TR0d9p62Zpc6x/zRSmrGJAY UjK2UZA1ZxxWokm68vQSZfthxXz8KRlrVpl6xDDUH2rAumLvPvWlvy1eVQu8zQIl wxvTlqatBMs9kDZ/2gJaTaQVsFKdhfVmTfB9m+YQPmo3PNXLOphGE0qoRbsPEfiL 3aI5CaP/+R/2SQn+tcKLzIrimg8fWljgC5la+hdVYB123jaIZlxuim/pBTqEujw= =IfQj -----END PGP SIGNATURE----- --EuXDR0QkiEeBK9MLc7O6PkC8ikl0dnTkA-- From owner-svn-ports-head@freebsd.org Wed Sep 14 23:10:58 2016 Return-Path: Delivered-To: svn-ports-head@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 62E85BDBD10; Wed, 14 Sep 2016 23:10:58 +0000 (UTC) (envelope-from yz@yz.kiev.ua) Received: from nb.yz.kiev.ua (nb.yz.kiev.ua [92.63.99.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0EF11C52; Wed, 14 Sep 2016 23:10:57 +0000 (UTC) (envelope-from yz@yz.kiev.ua) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=yz.kiev.ua; s=dkim; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=EyLWqeuFKPWlaBBjY67J9cd2ri623KPBgoOZOfjsRhc=; b=RHiV7t0DijINnbnwK1YuSNNGHS 0VZa140ZAR7CavYZZaYkVgp0kYNlfettyWoGLVIzkoR3tDciSQZx80YAa7B7SflxobHL/3UOfLVdb 4/2ZWnaEvrbbEON08zNtL0138IKs5M+T8D6QXJucqXRmR/n3YfS0cvv1oue661CDG3YQ=; Received: from yz by nb.yz.kiev.ua with local (Exim 4.87 (FreeBSD)) (envelope-from ) id 1bkJKK-000IVV-D1; Thu, 15 Sep 2016 02:10:49 +0300 Date: Thu, 15 Sep 2016 02:10:45 +0300 From: "George L. Yermulnik" To: Bryan Drewery Cc: Mathieu Arnold , svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r422154 - head/misc/fortune_strfile Message-ID: <20160914231044.GB67983@yz.kiev.ua> References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <20160914214421.GA61341@yz.kiev.ua> <8724052b-ba0a-0e3b-9689-b869ae091e1f@FreeBSD.org> <20160914225556.GA67983@yz.kiev.ua> <0e928151-1b4e-f902-275b-a639679ad4f6@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0e928151-1b4e-f902-275b-a639679ad4f6@FreeBSD.org> Organization: Earth, Europe, Ukraine, Kiev X-Yz-Mark: yz@nb 20160915 02:04:43 User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:10:58 -0000 Hello! On Wed, 14 Sep 2016 at 15:57:54 (-0700), Bryan Drewery wrote: > >>>> Author: bdrewery > >>>> Date: Wed Sep 14 19:25:19 2016 > >>>> New Revision: 422154 > >>>> URL: https://svnweb.freebsd.org/changeset/ports/422154 > >>>> Log: > >>>> Mark deprecated as it has no maintainer and is already in base. > >>> Am I using some broken FreeBSD installation? > >>> [--- cut ---] > >>> 00:41:56 [root#nb][w:2][j:0][~]> uname -srm > >>> FreeBSD 10.3-STABLE i386 > >>> 00:41:57 [root#nb][w:2][j:0][~]> echo $PATH > >>> /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin: > >>> 00:41:59 [root#nb][w:2][j:0][~]> fgrep GAMES /etc/src.conf > >>> WITHOUT_GAMES=YES > >>> 00:42:03 [root#nb][w:2][j:0][~]> which fortune_strfile strfile | wc -l > >>> 0 > >>> [--- cut ---] > >> Ok, so, without GAMES, you don't have fortune. You then do not need to > >> have a fortune file, right ? > > That's out of my question's scope. I was just wondering why there's no > > `strfile' if it "is already in base", and why there's `EXTRA' in > You set WITHOUT_GAMES, that is why it is not there. That is why it is not in _BASE_ (opposite to "and is already in base"). But "Non-base distributions produced by the base system" sounds for me as "GAMES" is non-base distribution. ps: I'm just wondering what is where. > > `EXTRA_DISTRIBUTIONS' for `MK_GAMES' (according to /usr/src/Makefile.inc1) -- George L. Yermulnik [YZ-RIPE] From owner-svn-ports-head@freebsd.org Wed Sep 14 23:20:25 2016 Return-Path: Delivered-To: svn-ports-head@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 75351BDBDF4; Wed, 14 Sep 2016 23:20:25 +0000 (UTC) (envelope-from flo@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 21B4D1FE8; Wed, 14 Sep 2016 23:20:25 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ENKOMD065275; Wed, 14 Sep 2016 23:20:24 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ENKOMj065271; Wed, 14 Sep 2016 23:20:24 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201609142320.u8ENKOMj065271@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Wed, 14 Sep 2016 23:20:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422168 - head/www/phpmyfaq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:20:25 -0000 Author: flo Date: Wed Sep 14 23:20:24 2016 New Revision: 422168 URL: https://svnweb.freebsd.org/changeset/ports/422168 Log: Update to 2.9.5 Modified: head/www/phpmyfaq/Makefile head/www/phpmyfaq/distinfo head/www/phpmyfaq/pkg-plist Modified: head/www/phpmyfaq/Makefile ============================================================================== --- head/www/phpmyfaq/Makefile Wed Sep 14 22:28:40 2016 (r422167) +++ head/www/phpmyfaq/Makefile Wed Sep 14 23:20:24 2016 (r422168) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpmyfaq -PORTVERSION= 2.8.27 +PORTVERSION= 2.9.5 CATEGORIES= www MASTER_SITES= http://www.phpmyfaq.de/download/ DISTNAME= phpMyFAQ-${PORTVERSION} @@ -12,11 +12,10 @@ COMMENT= Multilingual, completely databa WRKSRC= ${WRKDIR}/${PORTNAME} -USES= cpe +USES= cpe php:web USE_PHP= filter json mysql pcre pdf session xml xmlrpc xmlwriter zlib FAQ_DIR= attachments data images inc pdf xml NO_BUILD= YES -WANT_PHP_WEB= YES NO_ARCH= YES do-install: Modified: head/www/phpmyfaq/distinfo ============================================================================== --- head/www/phpmyfaq/distinfo Wed Sep 14 22:28:40 2016 (r422167) +++ head/www/phpmyfaq/distinfo Wed Sep 14 23:20:24 2016 (r422168) @@ -1,2 +1,3 @@ -SHA256 (phpMyFAQ-2.8.27.tar.gz) = 0a5c32abc7c60aa618425dcc62e70fc0b300cf97646821e6bde21fd22e753ee9 -SIZE (phpMyFAQ-2.8.27.tar.gz) = 5801473 +TIMESTAMP = 1473422119 +SHA256 (phpMyFAQ-2.9.5.tar.gz) = 1fd924cae4e20479c5ae6014a39e174f767945de9cef0f7132d225893cfb3bb7 +SIZE (phpMyFAQ-2.9.5.tar.gz) = 6764543 Modified: head/www/phpmyfaq/pkg-plist ============================================================================== --- head/www/phpmyfaq/pkg-plist Wed Sep 14 22:28:40 2016 (r422167) +++ head/www/phpmyfaq/pkg-plist Wed Sep 14 23:20:24 2016 (r422168) @@ -1,6 +1,4 @@ %%WWWDIR%%/_.htaccess -%%WWWDIR%%/_httpd.ini -%%WWWDIR%%/_lighttpd.conf %%WWWDIR%%/_nginx.conf %%WWWDIR%%/add.php %%WWWDIR%%/admin/ajax.attachment.php @@ -9,25 +7,169 @@ %%WWWDIR%%/admin/ajax.comment.php %%WWWDIR%%/admin/ajax.config.php %%WWWDIR%%/admin/ajax.config_list.php +%%WWWDIR%%/admin/ajax.elasticsearch.php %%WWWDIR%%/admin/ajax.group.php +%%WWWDIR%%/admin/ajax.image.php +%%WWWDIR%%/admin/ajax.markdown.php %%WWWDIR%%/admin/ajax.ondemandurl.php %%WWWDIR%%/admin/ajax.records.php %%WWWDIR%%/admin/ajax.search.php -%%WWWDIR%%/admin/ajax.tags_list.php +%%WWWDIR%%/admin/ajax.tags.php %%WWWDIR%%/admin/ajax.trans.php %%WWWDIR%%/admin/ajax.user.php %%WWWDIR%%/admin/ajax.verifyurl.php %%WWWDIR%%/admin/assets/css/style.css -%%WWWDIR%%/admin/assets/css/style.rtl.css -%%WWWDIR%%/admin/assets/font/FontAwesome.otf -%%WWWDIR%%/admin/assets/font/fontawesome-webfont.eot -%%WWWDIR%%/admin/assets/font/fontawesome-webfont.svg -%%WWWDIR%%/admin/assets/font/fontawesome-webfont.ttf -%%WWWDIR%%/admin/assets/font/fontawesome-webfont.woff +%%WWWDIR%%/admin/assets/css/style.min.css +%%WWWDIR%%/admin/assets/fonts/FontAwesome.otf +%%WWWDIR%%/admin/assets/fonts/fontawesome-webfont.eot +%%WWWDIR%%/admin/assets/fonts/fontawesome-webfont.svg +%%WWWDIR%%/admin/assets/fonts/fontawesome-webfont.ttf +%%WWWDIR%%/admin/assets/fonts/fontawesome-webfont.woff +%%WWWDIR%%/admin/assets/fonts/fontawesome-webfont.woff2 +%%WWWDIR%%/admin/assets/fonts/glyphicons-halflings-regular.eot +%%WWWDIR%%/admin/assets/fonts/glyphicons-halflings-regular.svg +%%WWWDIR%%/admin/assets/fonts/glyphicons-halflings-regular.ttf +%%WWWDIR%%/admin/assets/fonts/glyphicons-halflings-regular.woff +%%WWWDIR%%/admin/assets/fonts/glyphicons-halflings-regular.woff2 %%WWWDIR%%/admin/assets/js/category.js +%%WWWDIR%%/admin/assets/js/configuration.js +%%WWWDIR%%/admin/assets/js/editor/plugins/advlist/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/advlist/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/anchor/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/anchor/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/autolink/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/autolink/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/autoresize/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/autoresize/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/autosave/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/autosave/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/bbcode/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/bbcode/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/charmap/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/charmap/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/code/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/code/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/codesample/css/prism.css +%%WWWDIR%%/admin/assets/js/editor/plugins/codesample/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/codesample/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/colorpicker/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/colorpicker/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/contextmenu/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/contextmenu/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/directionality/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/directionality/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-cool.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-cry.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-embarassed.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-foot-in-mouth.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-frown.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-innocent.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-kiss.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-laughing.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-money-mouth.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-sealed.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-smile.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-surprised.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-tongue-out.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-undecided.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-wink.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/img/smiley-yell.gif +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/emoticons/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/fullpage/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/fullpage/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/fullscreen/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/fullscreen/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/hr/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/hr/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/image/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/image/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/imagetools/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/imagetools/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/imageupload/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/importcss/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/importcss/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/insertdatetime/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/insertdatetime/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/layer/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/layer/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/legacyoutput/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/legacyoutput/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/link/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/link/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/lists/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/lists/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/media/moxieplayer.swf +%%WWWDIR%%/admin/assets/js/editor/plugins/media/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/media/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/nonbreaking/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/nonbreaking/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/noneditable/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/noneditable/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/pagebreak/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/pagebreak/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/paste/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/paste/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/phpmyfaq/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/preview/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/preview/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/print/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/print/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/save/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/save/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/searchreplace/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/searchreplace/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/spellchecker/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/spellchecker/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/tabfocus/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/tabfocus/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/table/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/table/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/template/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/template/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/textcolor/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/textcolor/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/textpattern/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/textpattern/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/visualblocks/css/visualblocks.css +%%WWWDIR%%/admin/assets/js/editor/plugins/visualblocks/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/visualblocks/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/visualchars/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/visualchars/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/plugins/wordcount/plugin.js +%%WWWDIR%%/admin/assets/js/editor/plugins/wordcount/plugin.min.js +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/content.inline.min.css +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/content.min.css +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce-small.eot +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce-small.svg +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce-small.ttf +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce-small.woff +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce.eot +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce.svg +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce.ttf +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/fonts/tinymce.woff +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/img/anchor.gif +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/img/loader.gif +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/img/object.gif +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/img/trans.gif +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/skin.ie7.min.css +%%WWWDIR%%/admin/assets/js/editor/skins/lightgray/skin.min.css +%%WWWDIR%%/admin/assets/js/editor/themes/inlite/theme.js +%%WWWDIR%%/admin/assets/js/editor/themes/inlite/theme.min.js +%%WWWDIR%%/admin/assets/js/editor/themes/modern/theme.js +%%WWWDIR%%/admin/assets/js/editor/themes/modern/theme.min.js +%%WWWDIR%%/admin/assets/js/editor/tinymce.min.js +%%WWWDIR%%/admin/assets/js/groups.js +%%WWWDIR%%/admin/assets/js/imageupload.tinymce.plugin.js +%%WWWDIR%%/admin/assets/js/phpmyfaq.tinymce.plugin.js +%%WWWDIR%%/admin/assets/js/plugins/jquery.sparkline.min.js %%WWWDIR%%/admin/assets/js/record.js +%%WWWDIR%%/admin/assets/js/search.js +%%WWWDIR%%/admin/assets/js/sidebar.js +%%WWWDIR%%/admin/assets/js/tags.js %%WWWDIR%%/admin/assets/js/uploadcheck.js %%WWWDIR%%/admin/assets/js/user.js +%%WWWDIR%%/admin/assets/less/colors.less %%WWWDIR%%/admin/assets/less/style.less %%WWWDIR%%/admin/assets/less/style.rtl.less %%WWWDIR%%/admin/att.main.php @@ -45,668 +187,7 @@ %%WWWDIR%%/admin/category.translate.php %%WWWDIR%%/admin/configuration.php %%WWWDIR%%/admin/dashboard.php -%%WWWDIR%%/admin/editor/jquery.tinymce.js -%%WWWDIR%%/admin/editor/langs/de.js -%%WWWDIR%%/admin/editor/langs/en.js -%%WWWDIR%%/admin/editor/license.txt -%%WWWDIR%%/admin/editor/plugins/advhr/css/advhr.css -%%WWWDIR%%/admin/editor/plugins/advhr/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/advhr/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/advhr/js/rule.js -%%WWWDIR%%/admin/editor/plugins/advhr/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/advhr/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/advhr/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/advhr/rule.htm -%%WWWDIR%%/admin/editor/plugins/advimage/css/advimage.css -%%WWWDIR%%/admin/editor/plugins/advimage/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/advimage/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/advimage/image.htm -%%WWWDIR%%/admin/editor/plugins/advimage/img/sample.gif -%%WWWDIR%%/admin/editor/plugins/advimage/js/image.js -%%WWWDIR%%/admin/editor/plugins/advimage/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/advimage/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/advimage/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/advlink/css/advlink.css -%%WWWDIR%%/admin/editor/plugins/advlink/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/advlink/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/advlink/js/advlink.js -%%WWWDIR%%/admin/editor/plugins/advlink/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/advlink/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/advlink/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/advlink/link.htm -%%WWWDIR%%/admin/editor/plugins/advlist/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/advlist/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/_ajax_get_details_listing.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/_ajax_get_thumbnail_listing.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/_ajax_load_folders.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_create_folder.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_delete_file.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_download.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_editor_reset.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_file_copy.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_file_cut.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_file_paste.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_file_upload.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_get_file_listing.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_get_folder_listing.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_image_editor.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_image_save.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_image_thumbnail.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_image_undo.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_login.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_preview.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_save_as_form.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_save_name.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_save_text.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajax_text_editor.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/ajaxfilemanager.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/debug.html -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.auth.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.file.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.history.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.image.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.manager.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.pagination.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.search.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.session.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.sessionaction.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/class.upload.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/config.base.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/config.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/config.tinymce.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/data.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/inc/function.base.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaxfilemanager.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaxfilemanager_c.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaxfileupload.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaximageeditor.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaximageeditor_c.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaxtexteditor.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/ajaxtexteditor_c.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/calendar.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/contextmenu.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/edit_area.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/edit_area_full.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/close.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/fullscreen.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/go_to_line.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/help.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/highlight.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/load.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/move.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/newdocument.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/opacity.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/processing.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/redo.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/reset_highlight.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/save.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/save_as.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/search.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/smooth_selection.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/spacer.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/statusbar_resize.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/images/undo.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/de.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/dk.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/en.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/fr.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/hr.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/it.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/ja.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/nl.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/pl.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/pt.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/langs/zh_cn.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/basic.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/brainfuck.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/c.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/cpp.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/css.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/html.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/js.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/pas.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/php.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/python.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/vb.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/edit_area/reg_syntax/xml.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/for_fckeditor.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/for_form.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/for_stand_alone.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/for_tinymce.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/form.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/interface.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/iresizable.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/iutil.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/jquery.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/media.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/rotate.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/select.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/jscripts/thickbox.js -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/langs/en.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/langs/zh.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/session/gc_counter.ajax.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/session/gc_log.ajax.php -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/ajaximageeditor.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/ajaxtexteditor.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/fckeditor.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/form.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/ie6.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/jqModal.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/jquery-calendar.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/login.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/template.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/thickbox.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/css/tinymce.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/copy.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/copy_flag.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/cut.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/cut_flag.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/delete.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/folder_add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/folder_explore.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/page_add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/paste.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/refresh.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/tickAll.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/uncheckAll.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/unzip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/upload.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/action/zip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileAcrobat.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileCode.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileExcel.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileExe.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileFlash.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileMusic.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/filePicture.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/filePowerpoint.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileRTF.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileText.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileUnknown.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileVideo.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileWord.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileXml.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/fileZip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/big_icon/folderEmpty.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileAcrobat.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileCode.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileExcel.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileExe.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileFlash.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileMusic.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/filePicture.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/filePowerpoint.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileRTF.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileText.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileUnknown.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileVideo.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileWord.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileXml.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/fileZip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/folderEmpty.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/file_type/folderParent.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/pagination/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/pagination/pagination_left.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/pagination/pagination_right.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/ajaxLoading.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/arrow_right.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/button.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/close.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/date_picker.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/flagno.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/flagyes.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/folder_explore.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/go_parent.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/header.jpg -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/info.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/loadingAnimation.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/panel_bg.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/player.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/shadow.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/transparentpixel.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/dark/images/standard/uploadProcessing.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/ajaxfilemanager.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/ajaximageeditor.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/ajaxtexteditor.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/fckeditor.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/form.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/ie6.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/jqModal.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/jquery-calendar.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/login.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/stand_alone.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/template.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/thickbox.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/css/tinymce.css -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/New Folder/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/New Folder/folder_explore.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/copy.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/copy_flag.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/cross.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/cut.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/cut_flag.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/delete.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/folder_add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/folder_explore.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/page_add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/paste.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/refresh.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/tickAll.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/uncheckAll.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/unzip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/upload.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/action/zip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/ajaxLoading.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/arrow_right.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileAcrobat.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileCode.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileExcel.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileExe.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileFlash.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileMusic.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/filePicture.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/filePowerpoint.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileRTF.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileText.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileUnknown.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileVideo.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileWord.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileXml.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/fileZip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/big_icon/folderEmpty.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/button.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/button/grey_lc.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/button/grey_rc.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/close.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/copy.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/copy_flag.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/cut.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/cut_flag.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/date_picker.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/delete.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileAcrobat.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileCode.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileExcel.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileExe.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileFlash.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileMusic.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/filePicture.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/filePowerpoint.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileRTF.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileText.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileUnknown.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileVideo.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileWord.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileXml.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/fileZip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/folderEmpty.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/file_type/folderParent.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/flagYes.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/flagno.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/folder_explore.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/go_parent.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/grey_lc.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/header.jpg -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/info.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/loadingAnimation.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/pagination/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/pagination/pagination_left.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/pagination/pagination_right.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/panel_bg.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/paste.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/player.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/programm2008.jpg -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/refresh.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/shadow.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileAcrobat.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileCode.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileExcel.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileExe.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileFlash.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileMusic.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/filePicture.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/filePowerpoint.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileRTF.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileText.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileUnknown.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileVideo.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileWord.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileXml.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/fileZip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/folderEmpty.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/small_icon/folderParent.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/Thumbs.db -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/add.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/ajaxLoading.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/arrow_right.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/button.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/close.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/date_picker.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/flagno.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/flagyes.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/folder.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/folder_explore.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/go_parent.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/header.jpg -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/info.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/loadingAnimation.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/panel_bg.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/player.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/shadow.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/transparentpixel.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/standard/uploadProcessing.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/tickAll.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/transparentpixel.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/uncheckAll.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/unzip.png -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/uploadProcessing.gif -%%WWWDIR%%/admin/editor/plugins/ajaxfilemanager/theme/default/images/zip.png -%%WWWDIR%%/admin/editor/plugins/autolink/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/autolink/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/autoresize/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/autoresize/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/autosave/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/autosave/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/autosave/langs/en.js -%%WWWDIR%%/admin/editor/plugins/bbcode/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/bbcode/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/compat2x/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/compat2x/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/contextmenu/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/contextmenu/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/directionality/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/directionality/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/emotions/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/emotions/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/emotions/emotions.htm -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-cool.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-cry.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-embarassed.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-foot-in-mouth.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-frown.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-innocent.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-kiss.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-laughing.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-money-mouth.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-sealed.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-smile.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-surprised.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-tongue-out.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-undecided.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-wink.gif -%%WWWDIR%%/admin/editor/plugins/emotions/img/smiley-yell.gif -%%WWWDIR%%/admin/editor/plugins/emotions/js/emotions.js -%%WWWDIR%%/admin/editor/plugins/emotions/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/emotions/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/emotions/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/example/dialog.htm -%%WWWDIR%%/admin/editor/plugins/example/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/example/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/example/img/example.gif -%%WWWDIR%%/admin/editor/plugins/example/js/dialog.js -%%WWWDIR%%/admin/editor/plugins/example/langs/en.js -%%WWWDIR%%/admin/editor/plugins/example/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/fullpage/css/fullpage.css -%%WWWDIR%%/admin/editor/plugins/fullpage/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/fullpage/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/fullpage/fullpage.htm -%%WWWDIR%%/admin/editor/plugins/fullpage/js/fullpage.js -%%WWWDIR%%/admin/editor/plugins/fullpage/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/fullpage/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/fullpage/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/fullscreen/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/fullscreen/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/fullscreen/fullscreen.htm -%%WWWDIR%%/admin/editor/plugins/iespell/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/iespell/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/inlinepopups/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/inlinepopups/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/button.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -%%WWWDIR%%/admin/editor/plugins/inlinepopups/skins/clearlooks2/window.css -%%WWWDIR%%/admin/editor/plugins/inlinepopups/template.htm -%%WWWDIR%%/admin/editor/plugins/insertdatetime/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/insertdatetime/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/layer/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/layer/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/legacyoutput/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/legacyoutput/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/lists/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/lists/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/nonbreaking/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/nonbreaking/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/noneditable/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/noneditable/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/pagebreak/css/content.css -%%WWWDIR%%/admin/editor/plugins/pagebreak/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/pagebreak/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/pagebreak/img/pagebreak.gif -%%WWWDIR%%/admin/editor/plugins/pagebreak/img/trans.gif -%%WWWDIR%%/admin/editor/plugins/paste/blank.htm -%%WWWDIR%%/admin/editor/plugins/paste/css/blank.css -%%WWWDIR%%/admin/editor/plugins/paste/css/pasteword.css -%%WWWDIR%%/admin/editor/plugins/paste/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/paste/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/paste/js/pastetext.js -%%WWWDIR%%/admin/editor/plugins/paste/js/pasteword.js -%%WWWDIR%%/admin/editor/plugins/paste/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/paste/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/paste/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/paste/pastetext.htm -%%WWWDIR%%/admin/editor/plugins/paste/pasteword.htm -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/dialog.php -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/img/phpmyfaq.gif -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/js/dialog.js -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/langs/de.js -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/langs/en.js -%%WWWDIR%%/admin/editor/plugins/phpmyfaq/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/print/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/print/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/safari/blank.htm -%%WWWDIR%%/admin/editor/plugins/safari/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/safari/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/save/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/save/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/css/searchreplace.css -%%WWWDIR%%/admin/editor/plugins/searchreplace/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/js/searchreplace.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/searchreplace/searchreplace.htm -%%WWWDIR%%/admin/editor/plugins/spellchecker/css/content.css -%%WWWDIR%%/admin/editor/plugins/spellchecker/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/spellchecker/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/spellchecker/img/wline.gif -%%WWWDIR%%/admin/editor/plugins/style/css/props.css -%%WWWDIR%%/admin/editor/plugins/style/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/style/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/style/js/props.js -%%WWWDIR%%/admin/editor/plugins/style/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/style/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/style/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/style/props.htm -%%WWWDIR%%/admin/editor/plugins/style/readme.txt -%%WWWDIR%%/admin/editor/plugins/syntaxhl/README -%%WWWDIR%%/admin/editor/plugins/syntaxhl/dialog.htm -%%WWWDIR%%/admin/editor/plugins/syntaxhl/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/img/highlight.gif -%%WWWDIR%%/admin/editor/plugins/syntaxhl/js/dialog.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/langs/de.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/langs/en.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/langs/zh.js -%%WWWDIR%%/admin/editor/plugins/syntaxhl/langs/zh_dlg.js -%%WWWDIR%%/admin/editor/plugins/tabfocus/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/tabfocus/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/table/cell.htm -%%WWWDIR%%/admin/editor/plugins/table/css/cell.css -%%WWWDIR%%/admin/editor/plugins/table/css/row.css -%%WWWDIR%%/admin/editor/plugins/table/css/table.css -%%WWWDIR%%/admin/editor/plugins/table/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/table/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/table/js/cell.js -%%WWWDIR%%/admin/editor/plugins/table/js/merge_cells.js -%%WWWDIR%%/admin/editor/plugins/table/js/row.js -%%WWWDIR%%/admin/editor/plugins/table/js/table.js -%%WWWDIR%%/admin/editor/plugins/table/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/table/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/table/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/table/merge_cells.htm -%%WWWDIR%%/admin/editor/plugins/table/row.htm -%%WWWDIR%%/admin/editor/plugins/table/table.htm -%%WWWDIR%%/admin/editor/plugins/template/blank.htm -%%WWWDIR%%/admin/editor/plugins/template/css/template.css -%%WWWDIR%%/admin/editor/plugins/template/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/template/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/template/js/template.js -%%WWWDIR%%/admin/editor/plugins/template/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/template/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/template/langs/en_dlg.js -%%WWWDIR%%/admin/editor/plugins/template/template.htm -%%WWWDIR%%/admin/editor/plugins/visualblocks/css/visualblocks.css -%%WWWDIR%%/admin/editor/plugins/visualblocks/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/visualblocks/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/visualchars/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/visualchars/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/wordcount/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/wordcount/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/abbr.htm -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/acronym.htm -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/attributes.htm -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/cite.htm -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/css/attributes.css -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/css/popup.css -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/del.htm -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/editor_plugin.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/editor_plugin_src.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/ins.htm -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/abbr.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/acronym.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/attributes.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/cite.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/del.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/element_common.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/js/ins.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/langs/de_dlg.js -%%WWWDIR%%/admin/editor/plugins/xhtmlxtras/langs/en_dlg.js -%%WWWDIR%%/admin/editor/themes/advanced/about.htm -%%WWWDIR%%/admin/editor/themes/advanced/anchor.htm -%%WWWDIR%%/admin/editor/themes/advanced/charmap.htm -%%WWWDIR%%/admin/editor/themes/advanced/color_picker.htm -%%WWWDIR%%/admin/editor/themes/advanced/editor_template.js -%%WWWDIR%%/admin/editor/themes/advanced/editor_template_src.js -%%WWWDIR%%/admin/editor/themes/advanced/image.htm -%%WWWDIR%%/admin/editor/themes/advanced/img/colorpicker.jpg -%%WWWDIR%%/admin/editor/themes/advanced/img/flash.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/icons.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/iframe.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/pagebreak.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/quicktime.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/realmedia.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/shockwave.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/trans.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/video.gif -%%WWWDIR%%/admin/editor/themes/advanced/img/windowsmedia.gif -%%WWWDIR%%/admin/editor/themes/advanced/js/about.js -%%WWWDIR%%/admin/editor/themes/advanced/js/anchor.js -%%WWWDIR%%/admin/editor/themes/advanced/js/charmap.js -%%WWWDIR%%/admin/editor/themes/advanced/js/color_picker.js -%%WWWDIR%%/admin/editor/themes/advanced/js/image.js -%%WWWDIR%%/admin/editor/themes/advanced/js/link.js -%%WWWDIR%%/admin/editor/themes/advanced/js/source_editor.js -%%WWWDIR%%/admin/editor/themes/advanced/langs/cs.js -%%WWWDIR%%/admin/editor/themes/advanced/langs/cs_dlg.js -%%WWWDIR%%/admin/editor/themes/advanced/langs/de.js -%%WWWDIR%%/admin/editor/themes/advanced/langs/de_dlg.js -%%WWWDIR%%/admin/editor/themes/advanced/langs/en.js -%%WWWDIR%%/admin/editor/themes/advanced/langs/en_dlg.js -%%WWWDIR%%/admin/editor/themes/advanced/link.htm -%%WWWDIR%%/admin/editor/themes/advanced/shortcuts.htm -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/content.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/dialog.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/butt2.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/button-bg.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/buttons.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/down_arrow.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/fade-butt.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/icons.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/items.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/menu-arrow.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/menu-check.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/progress.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/tabs.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/img/toolbarbg.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/cirkuit/ui.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/content.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/dialog.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/img/buttons.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/img/items.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/img/menu_arrow.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/img/menu_check.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/img/progress.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/img/tabs.gif -%%WWWDIR%%/admin/editor/themes/advanced/skins/default/ui.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/highcontrast/content.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/highcontrast/dialog.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/highcontrast/ui.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/content.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/dialog.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/img/button_bg.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/img/button_bg_black.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/img/button_bg_silver.png -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/ui.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/ui_black.css -%%WWWDIR%%/admin/editor/themes/advanced/skins/o2k7/ui_silver.css -%%WWWDIR%%/admin/editor/themes/advanced/source_editor.htm -%%WWWDIR%%/admin/editor/themes/simple/editor_template.js -%%WWWDIR%%/admin/editor/themes/simple/editor_template_src.js -%%WWWDIR%%/admin/editor/themes/simple/img/icons.gif -%%WWWDIR%%/admin/editor/themes/simple/langs/cs.js -%%WWWDIR%%/admin/editor/themes/simple/langs/de.js -%%WWWDIR%%/admin/editor/themes/simple/langs/en.js -%%WWWDIR%%/admin/editor/themes/simple/skins/default/content.css -%%WWWDIR%%/admin/editor/themes/simple/skins/default/ui.css -%%WWWDIR%%/admin/editor/themes/simple/skins/o2k7/content.css -%%WWWDIR%%/admin/editor/themes/simple/skins/o2k7/img/button_bg.png -%%WWWDIR%%/admin/editor/themes/simple/skins/o2k7/ui.css -%%WWWDIR%%/admin/editor/tiny_mce.js -%%WWWDIR%%/admin/editor/tiny_mce_popup.js -%%WWWDIR%%/admin/editor/tiny_mce_src.js -%%WWWDIR%%/admin/editor/utils/editable_selects.js -%%WWWDIR%%/admin/editor/utils/form_utils.js -%%WWWDIR%%/admin/editor/utils/mctabs.js -%%WWWDIR%%/admin/editor/utils/validate.js +%%WWWDIR%%/admin/elasticsearch.php %%WWWDIR%%/admin/export.file.php %%WWWDIR%%/admin/export.main.php %%WWWDIR%%/admin/footer.php @@ -715,12 +196,10 @@ %%WWWDIR%%/admin/glossary.main.php %%WWWDIR%%/admin/group.php %%WWWDIR%%/admin/header.php +%%WWWDIR%%/admin/image.browser.php +%%WWWDIR%%/admin/image.upload.php %%WWWDIR%%/admin/images/calendar.png -%%WWWDIR%%/admin/images/chown.png -%%WWWDIR%%/admin/images/indicator.gif -%%WWWDIR%%/admin/images/locked.png -%%WWWDIR%%/admin/images/paste.gif -%%WWWDIR%%/admin/images/translate.png +%%WWWDIR%%/admin/images/phpmyfaq.gif %%WWWDIR%%/admin/images/url-batch1.png %%WWWDIR%%/admin/images/url-batch2.png %%WWWDIR%%/admin/images/url-batch3.png @@ -759,6 +238,7 @@ %%WWWDIR%%/admin/stat.show.php %%WWWDIR%%/admin/stopwordsconfig.main.php %%WWWDIR%%/admin/system.php +%%WWWDIR%%/admin/tags.main.php %%WWWDIR%%/admin/trans.add.php %%WWWDIR%%/admin/trans.edit.php %%WWWDIR%%/admin/trans.list.php @@ -770,83 +250,29 @@ %%WWWDIR%%/ask.php %%WWWDIR%%/assets/img/ajax-loader.gif %%WWWDIR%%/assets/img/bubbles.gif -%%WWWDIR%%/assets/img/delete.gif %%WWWDIR%%/assets/img/digg.png %%WWWDIR%%/assets/img/email.png %%WWWDIR%%/assets/img/facebook.png %%WWWDIR%%/assets/img/feed.png -%%WWWDIR%%/assets/img/glyphicons-halflings-white.png -%%WWWDIR%%/assets/img/glyphicons-halflings.png %%WWWDIR%%/assets/img/logo.png -%%WWWDIR%%/assets/img/more.gif %%WWWDIR%%/assets/img/pdf.png +%%WWWDIR%%/assets/img/phpmyfaq-logo.png %%WWWDIR%%/assets/img/pmfsearch.png %%WWWDIR%%/assets/img/print.png %%WWWDIR%%/assets/img/twitter.png %%WWWDIR%%/assets/img/twitter.signin.png %%WWWDIR%%/assets/js/autosave.js +%%WWWDIR%%/assets/js/category.js +%%WWWDIR%%/assets/js/comments.js %%WWWDIR%%/assets/js/functions.js -%%WWWDIR%%/assets/js/jquery.min.map -%%WWWDIR%%/assets/js/libs/jquery.min.js -%%WWWDIR%%/assets/js/libs/jquery.min.map -%%WWWDIR%%/assets/js/libs/modernizr.min.js +%%WWWDIR%%/assets/js/libs/default.css +%%WWWDIR%%/assets/js/libs/highlight.pack.js +%%WWWDIR%%/assets/js/modernizr.min.js %%WWWDIR%%/assets/js/phpmyfaq.js %%WWWDIR%%/assets/js/phpmyfaq.min.js -%%WWWDIR%%/assets/js/plugins/datePicker/date.js -%%WWWDIR%%/assets/js/plugins/datePicker/datePicker.css -%%WWWDIR%%/assets/js/plugins/datePicker/jquery.datePicker.js -%%WWWDIR%%/assets/js/plugins/jquery.sparkline.min.js -%%WWWDIR%%/assets/js/syntaxhighlighter/LGPL-LICENSE -%%WWWDIR%%/assets/js/syntaxhighlighter/MIT-LICENSE -%%WWWDIR%%/assets/js/syntaxhighlighter/index.html -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shAutoloader.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushAS3.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushAppleScript.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushBash.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushCSharp.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushColdFusion.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushCpp.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushCss.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushDelphi.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushDiff.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushErlang.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushGroovy.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushJScript.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushJava.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushJavaFX.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushPerl.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushPhp.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushPlain.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushPowerShell.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushPython.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushRuby.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushSass.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushScala.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushSql.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushVb.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shBrushXml.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shCore.js -%%WWWDIR%%/assets/js/syntaxhighlighter/scripts/shLegacy.js -%%WWWDIR%%/assets/js/syntaxhighlighter/src/shAutoloader.js -%%WWWDIR%%/assets/js/syntaxhighlighter/src/shCore.js -%%WWWDIR%%/assets/js/syntaxhighlighter/src/shLegacy.js -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCore.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreDefault.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreDjango.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreEclipse.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreEmacs.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreFadeToGrey.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreMDUltra.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreMidnight.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shCoreRDark.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeDefault.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeDjango.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeEclipse.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeEmacs.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeFadeToGrey.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeMDUltra.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeMidnight.css -%%WWWDIR%%/assets/js/syntaxhighlighter/styles/shThemeRDark.css +%%WWWDIR%%/assets/js/records.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Wed Sep 14 23:22:58 2016 Return-Path: Delivered-To: svn-ports-head@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 53EDBBDBFED; Wed, 14 Sep 2016 23:22:58 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D883713C0; Wed, 14 Sep 2016 23:22:57 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3sZHdh5pkgzZrg; Thu, 15 Sep 2016 01:22:48 +0200 (CEST) Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id wsdFCgHFNxvj; Thu, 15 Sep 2016 01:22:46 +0200 (CEST) Received: from tommy.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Thu, 15 Sep 2016 01:22:46 +0200 (CEST) Subject: Re: svn commit: r422151 - head/devel/php70-APCu To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> Cc: portmgr@FreeBSD.org From: Guido Falsi Message-ID: Date: Thu, 15 Sep 2016 01:22:34 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="GqdQJjdLUSDkgBRuuQ9DkuABkrWo4TKqk" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:22:58 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --GqdQJjdLUSDkgBRuuQ9DkuABkrWo4TKqk Content-Type: multipart/mixed; boundary="KcCeVRLOVUUh2VtbwWge3QA42hT77VwNC"; protected-headers="v1" From: Guido Falsi To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Cc: portmgr@FreeBSD.org Message-ID: Subject: Re: svn commit: r422151 - head/devel/php70-APCu References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> In-Reply-To: <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> --KcCeVRLOVUUh2VtbwWge3QA42hT77VwNC Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 09/14/16 21:46, Mathieu Arnold wrote: > Le 14/09/2016 =C3=A0 21:13, Guido Falsi a =C3=A9crit : >> Author: madpilot >> Date: Wed Sep 14 19:13:07 2016 >> New Revision: 422151 >> URL: https://svnweb.freebsd.org/changeset/ports/422151 >> >> Log: >> Add PHP_DEFAULT=3D7.0 so that a package is build on the cluster with= >> default ports configuration. >> =20 >> PR: 212684 >> Submitted by: joshruehlig at gmail.com >> Approved by: Daniel Ylitalo (maintainer) >> >=20 > Please, revert this. >=20 > We do not force PHP versions of modules/extensions, either you have the= > right default version, and it will build and work, or you don't have th= e > right default version and it will be a two leg stool. >=20 The reason I did this is there are already other PHP modules doing this, so I thought it was ok. While I understand what the problem is this is a leaf port and such a change causes no problems and allows the package to be built in the clust= er. Before reverting this I'd like to have an opinion from portmgr (CCed). Meybe some cleaner way to allow php7 parts to be built on the cluster should be made available, although I don't know what that can be right no= w. --=20 Guido Falsi --KcCeVRLOVUUh2VtbwWge3QA42hT77VwNC-- --GqdQJjdLUSDkgBRuuQ9DkuABkrWo4TKqk Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEyBAEBCAAcBQJX2dvGFRxtYWRwaWxvdEBmcmVlYnNkLm9yZwAKCRAa5oYOVsvS k8+MB/9WPTm9oeobpm1vZILRdecr/OcNFuEzWufQ2y7dUHZ3iA2EL5Sk+ObQf4zM E3gSLaJluWwTxxYQzoHV8UmzU+a4uHgbb8L4ZMoiU5jLJwukiaAzaGBNWwoqOJ01 +45CyB/UGBrYzDuz/SscvclsCP619D/YTDizD//8fIPrrlmNrJkeFf9VCfdt6j+Q W+hFqamVQNVH7dyNBE16HVIJLeBe9YC53bbhEu2LYI9bQIzPshwQ25HiKOg4mmuk xcD11fO4Ry9kIpB6ZIXhGdqjMYn3TzXd5pIuZacwVWku1WO4gYJGi/sHFDZMfJOc S8SaJEIYnc7AoQS87TMUZoygVCI5 =gMOp -----END PGP SIGNATURE----- --GqdQJjdLUSDkgBRuuQ9DkuABkrWo4TKqk-- From owner-svn-ports-head@freebsd.org Wed Sep 14 23:23:12 2016 Return-Path: Delivered-To: svn-ports-head@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 5F224BDA07B; Wed, 14 Sep 2016 23:23:12 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 23483155A; Wed, 14 Sep 2016 23:23:12 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from [10.0.1.69] (cpe-071-065-239-148.nc.res.rr.com [71.65.239.148] (may be forged)) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id u8ENN0Mq024386 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Wed, 14 Sep 2016 23:23:08 GMT (envelope-from swills@FreeBSD.org) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> <55840821-5f88-54b6-4b99-eb8e09d0ae22@marino.st> <0aaad8b7-67f7-1b08-81be-7610d74d5e1c@FreeBSD.org> <00cb53dd-c51f-ce2f-378d-9e77d49e830b@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Steve Wills Message-ID: Date: Wed, 14 Sep 2016 19:23:00 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <00cb53dd-c51f-ce2f-378d-9e77d49e830b@marino.st> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Wed, 14 Sep 2016 23:23:10 +0000 (UTC) X-Spam-Status: No, score=-1.0 required=4.5 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.1 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:23:12 -0000 Hi, On 09/14/2016 18:49, John Marino wrote: > Only something that didn't review the commit would say that. It is > cleaner and that's pretty much indisputable. Are you saying that fortune_strfile doesn't duplicate /usr/bin/strfile? Steve From owner-svn-ports-head@freebsd.org Wed Sep 14 23:25:10 2016 Return-Path: Delivered-To: svn-ports-head@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 6EEF3BDA17C; Wed, 14 Sep 2016 23:25:10 +0000 (UTC) (envelope-from jkim@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 4CCD21833; Wed, 14 Sep 2016 23:25:10 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ENP9dv068921; Wed, 14 Sep 2016 23:25:09 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ENP9iT068917; Wed, 14 Sep 2016 23:25:09 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609142325.u8ENP9iT068917@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 14 Sep 2016 23:25:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422169 - in head/korean/imhangul: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:25:10 -0000 Author: jkim Date: Wed Sep 14 23:25:09 2016 New Revision: 422169 URL: https://svnweb.freebsd.org/changeset/ports/422169 Log: - Unbreak and modernize the port. - Switch to GTK3 by default. Added: head/korean/imhangul/files/ head/korean/imhangul/files/patch-Makefile.am (contents, props changed) Modified: head/korean/imhangul/Makefile head/korean/imhangul/distinfo head/korean/imhangul/pkg-plist Modified: head/korean/imhangul/Makefile ============================================================================== --- head/korean/imhangul/Makefile Wed Sep 14 23:20:24 2016 (r422168) +++ head/korean/imhangul/Makefile Wed Sep 14 23:25:09 2016 (r422169) @@ -2,34 +2,44 @@ # $FreeBSD$ PORTNAME= imhangul -PORTVERSION= ${GTKVER}.1.1 -PORTREVISION= 2 +PORTVERSION= ${GTKVER:R}.1.1 +PORTREVISION= 3 CATEGORIES= korean -MASTER_SITES= GOOGLE_CODE MAINTAINER= jkim@FreeBSD.org COMMENT= GTK+ Hangul input module -LICENSE= GPLv2 - -BROKEN= Unfetchable (google code has gone away) +LICENSE= LGPL21+ +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhangul.so:korean/libhangul +GH_ACCOUNT= choehwanjin +USE_GITHUB= yes + GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -PLIST_SUB= GTKVER=${GTKVER}.0 -USE_GNOME= gtk${GTKVER}0 -USES= gmake libtool pkgconfig tar:bzip2 - -OPTIONS_DEFINE= GTK3 NLS +PLIST_SUB= GTKVER=${GTKVER} +USE_GNOME= cairo gdkpixbuf2 gtk${GTKVER:S|.||} +USES= autoreconf gmake libtool pkgconfig + +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT= GTK3 +OPTIONS_SINGLE= GTK +OPTIONS_SINGLE_GTK= GTK2 GTK3 OPTIONS_SUB= yes +GTK_DESC= Select GTK+ version +GTK2_LIB_DEPENDS= libfreetype.so:print/freetype2 +GTK2_LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig +GTK2_VARS= GH_TAGNAME=d2f555d GTKVER=2.0 +GTK3_VARS= GH_TAGNAME=85f6d10 GTKVER=3.0 +NLS_USES= gettext localbase + +post-patch-NLS-off: + @${REINPLACE_CMD} -e '/^SUBDIRS /s| po||' ${WRKSRC}/Makefile.am + @${REINPLACE_CMD} -e '/^po\/Makefile\.in/d' ${WRKSRC}/configure.in -GTK3_VARS= GTKVER=3 -GTK3_VARS_OFF= GTKVER=2 - -NLS_CPPFLAGS= -I${LOCALBASE}/include -NLS_LDFLAGS= -L${LOCALBASE}/lib -NLS_USES= gettext +pre-configure-NLS-on: + @(cd ${WRKSRC} && ${LOCALBASE}/bin/glib-gettextize) .include Modified: head/korean/imhangul/distinfo ============================================================================== --- head/korean/imhangul/distinfo Wed Sep 14 23:20:24 2016 (r422168) +++ head/korean/imhangul/distinfo Wed Sep 14 23:25:09 2016 (r422169) @@ -1,4 +1,5 @@ -SHA256 (imhangul-2.1.1.tar.bz2) = b4860b718b2775ce1e298e80004d5d7b5ac89faa75b30654e51d325643a02e19 -SIZE (imhangul-2.1.1.tar.bz2) = 288452 -SHA256 (imhangul-3.1.1.tar.bz2) = 24f103e55c38f2cd4b708398106ac19760e2ef1834513f46f32b0baf439461e0 -SIZE (imhangul-3.1.1.tar.bz2) = 288236 +TIMESTAMP = 1473877928 +SHA256 (choehwanjin-imhangul-2.1.1-d2f555d_GH0.tar.gz) = e489cb293da229cb1e07d7f301e8fe4b65396cd762aca30aa54cd1555f354288 +SIZE (choehwanjin-imhangul-2.1.1-d2f555d_GH0.tar.gz) = 256752 +SHA256 (choehwanjin-imhangul-3.1.1-85f6d10_GH0.tar.gz) = a2bd9baf56c5b624c035ce6890553fb513feb6404453549a2f523691df86f2cc +SIZE (choehwanjin-imhangul-3.1.1-85f6d10_GH0.tar.gz) = 256731 Added: head/korean/imhangul/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/korean/imhangul/files/patch-Makefile.am Wed Sep 14 23:25:09 2016 (r422169) @@ -0,0 +1,10 @@ +--- Makefile.am.orig 2012-12-31 14:14:19 UTC ++++ Makefile.am +@@ -18,7 +18,6 @@ im_hangul_la_CFLAGS = \ + -DG_DISABLE_DEPRECATED \ + -DGDK_PIXBUF_DISABLE_DEPRECATED \ + -DGDK_DISABLE_DEPRECATED \ +- -DGTK_DISABLE_DEPRECATED \ + $(GTK_CFLAGS) \ + $(LIBHANGUL_CFLAGS) + Modified: head/korean/imhangul/pkg-plist ============================================================================== --- head/korean/imhangul/pkg-plist Wed Sep 14 23:20:24 2016 (r422168) +++ head/korean/imhangul/pkg-plist Wed Sep 14 23:25:09 2016 (r422169) @@ -1,5 +1,5 @@ lib/gtk-%%GTKVER%%/immodules/im-hangul.so -%%NO_GTK3%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul.mo +%%GTK2%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul.mo %%GTK3%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul-%%GTKVER%%.mo @postexec %D/bin/gtk-query-immodules-%%GTKVER%% --update-cache @postunexec %D/bin/gtk-query-immodules-%%GTKVER%% --update-cache From owner-svn-ports-head@freebsd.org Wed Sep 14 23:26:53 2016 Return-Path: Delivered-To: svn-ports-head@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 93BCABDA1E4; Wed, 14 Sep 2016 23:26:53 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68C5A1936; Wed, 14 Sep 2016 23:26:53 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip70-178-28-115.ks.ks.cox.net [70.178.28.115]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 81A5A43CF4; Wed, 14 Sep 2016 18:26:48 -0500 (CDT) Subject: Re: svn commit: r422160 - in head: chinese/fortune french/fortune-mod-zarathoustra misc/fortune-mod-bible misc/fortune-mod-bofh misc/fortune-mod-culmea-culmilor misc/fortune-mod-epictetus misc/fortune-... To: Steve Wills , marino@freebsd.org, Mathieu Arnold , Adam Weinberger , Antoine Brodin References: <201609141950.u8EJolO7085386@repo.freebsd.org> <857FD0DF-6ADA-48F5-B02B-81BCA7135E2C@adamw.org> <03e06c33-6185-334f-bf04-71321aaf2cb7@FreeBSD.org> <9ffe58d7-66b0-b357-1777-6e4d3d4f5297@marino.st> <9d118285-dd65-0b88-59cd-c8130d4d4f6f@marino.st> <087264b0-36ab-e844-f2f9-8389566dd654@FreeBSD.org> <55840821-5f88-54b6-4b99-eb8e09d0ae22@marino.st> <0aaad8b7-67f7-1b08-81be-7610d74d5e1c@FreeBSD.org> <00cb53dd-c51f-ce2f-378d-9e77d49e830b@marino.st> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Reply-To: marino@freebsd.org From: John Marino Message-ID: Date: Wed, 14 Sep 2016 18:26:50 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 160914-2, 09/14/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:26:53 -0000 On 9/14/2016 18:23, Steve Wills wrote: > Hi, > > On 09/14/2016 18:49, John Marino wrote: >> Only something that didn't review the commit would say that. It is >> cleaner and that's pretty much indisputable. > > Are you saying that fortune_strfile doesn't duplicate /usr/bin/strfile? > I'm saying look at the diff. I'm also saying that my solutions works in 100% of the cases the old/reverted form does not. The makefile is cleaner and more performant. The duplication of a tiny utility for build purposes is a red herring. to recap: 1) the fortune makefiles are a lot cleaner 2) it builds fortune ports in more (all) cases It's just superior. There's no technical basis for reverting it. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From owner-svn-ports-head@freebsd.org Wed Sep 14 23:29:39 2016 Return-Path: Delivered-To: svn-ports-head@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 AF844BDA2D4; Wed, 14 Sep 2016 23:29:39 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A5681A76; Wed, 14 Sep 2016 23:29:38 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3sZHnY1clRzZrg; Thu, 15 Sep 2016 01:29:37 +0200 (CEST) Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id CXxHbclJsB79; Thu, 15 Sep 2016 01:29:35 +0200 (CEST) Received: from tommy.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Thu, 15 Sep 2016 01:29:35 +0200 (CEST) Subject: Re: svn commit: r422151 - head/devel/php70-APCu To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> Cc: portmgr@FreeBSD.org From: Guido Falsi Message-ID: <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> Date: Thu, 15 Sep 2016 01:29:34 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="H6fJjBdrOalF9KH6T6MaXjCJE4jABKxeH" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:29:39 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --H6fJjBdrOalF9KH6T6MaXjCJE4jABKxeH Content-Type: multipart/mixed; boundary="vHPE7ocjuDgm8oCVT0bkfxhgQkKUx65HX"; protected-headers="v1" From: Guido Falsi To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Cc: portmgr@FreeBSD.org Message-ID: <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> Subject: Re: svn commit: r422151 - head/devel/php70-APCu References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> In-Reply-To: --vHPE7ocjuDgm8oCVT0bkfxhgQkKUx65HX Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 09/15/16 01:22, Guido Falsi wrote: >=20 > Meybe some cleaner way to allow php7 parts to be built on the cluster > should be made available, although I don't know what that can be right = now. >=20 For example, would such definition be more acceptable if limited to PACKAGE_BUILDING? --=20 Guido Falsi --vHPE7ocjuDgm8oCVT0bkfxhgQkKUx65HX-- --H6fJjBdrOalF9KH6T6MaXjCJE4jABKxeH Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEyBAEBCAAcBQJX2d1fFRxtYWRwaWxvdEBmcmVlYnNkLm9yZwAKCRAa5oYOVsvS kw6LB/4pV1guo5cKgmB0ePUTfT0QbNBhL782p/jdNVimu03gEF7MJZSgLCXFTykU YVs2PZymdMmeCxPr7dflOwv9G/E46V2yRejLQ/NT8R/iFx9oKgzOsJd4qUhX2kkU SFsBT7TG2M4tn4zNj+8HGv4gnLSqaTQojXvnSpJXstpjtYJ9oiJ+jsd5YIzNK5bi b6rfK81+yTMATty625yWtMncoIw2Ty2ofwvrbrBSqeIylGUpykD1vgEUBZ0KdKzr bMbjKdr9kBDuXIMkH4SrDjeg7IZiaQAQuqOMdSojaFvUxgphqBa9fcWU1EWpOD5B ystixIKV0I1q8LpJrZy8FlFhluMu =HqJA -----END PGP SIGNATURE----- --H6fJjBdrOalF9KH6T6MaXjCJE4jABKxeH-- From owner-svn-ports-head@freebsd.org Wed Sep 14 23:39:19 2016 Return-Path: Delivered-To: svn-ports-head@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 065B2BDA697; Wed, 14 Sep 2016 23:39:19 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id DE19E1047; Wed, 14 Sep 2016 23:39:18 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id D625C16D9; Wed, 14 Sep 2016 23:39:18 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 93BDC23382; Wed, 14 Sep 2016 23:39:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id 2OGRTYVtE2hN; Wed, 14 Sep 2016 23:39:15 +0000 (UTC) Subject: Re: svn commit: r422151 - head/devel/php70-APCu DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com B47C123379 To: Guido Falsi , Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> Cc: portmgr@FreeBSD.org From: Bryan Drewery Organization: FreeBSD Message-ID: <0f3a866e-505b-1cbf-32d1-b543949841ee@FreeBSD.org> Date: Wed, 14 Sep 2016 16:39:13 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="8Xd0w8ka7iLWtw2tjq5hLf62NGAGRLudG" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:39:19 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --8Xd0w8ka7iLWtw2tjq5hLf62NGAGRLudG Content-Type: multipart/mixed; boundary="Onk434q0N4sITDfweVXgVJgsQwifpJoAI"; protected-headers="v1" From: Bryan Drewery To: Guido Falsi , Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Cc: portmgr@FreeBSD.org Message-ID: <0f3a866e-505b-1cbf-32d1-b543949841ee@FreeBSD.org> Subject: Re: svn commit: r422151 - head/devel/php70-APCu References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> In-Reply-To: --Onk434q0N4sITDfweVXgVJgsQwifpJoAI Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/14/16 4:22 PM, Guido Falsi wrote: > On 09/14/16 21:46, Mathieu Arnold wrote: >> Le 14/09/2016 =C3=A0 21:13, Guido Falsi a =C3=A9crit : >>> Author: madpilot >>> Date: Wed Sep 14 19:13:07 2016 >>> New Revision: 422151 >>> URL: https://svnweb.freebsd.org/changeset/ports/422151 >>> >>> Log: >>> Add PHP_DEFAULT=3D7.0 so that a package is build on the cluster wit= h >>> default ports configuration. >>> =20 >>> PR: 212684 >>> Submitted by: joshruehlig at gmail.com >>> Approved by: Daniel Ylitalo (maintainer) >>> >> >> Please, revert this. >> >> We do not force PHP versions of modules/extensions, either you have th= e >> right default version, and it will build and work, or you don't have t= he >> right default version and it will be a two leg stool. >> >=20 > The reason I did this is there are already other PHP modules doing this= , > so I thought it was ok. >=20 > While I understand what the problem is this is a leaf port and such a > change causes no problems and allows the package to be built in the clu= ster. >=20 > Before reverting this I'd like to have an opinion from portmgr (CCed). >=20 > Meybe some cleaner way to allow php7 parts to be built on the cluster > should be made available, although I don't know what that can be right = now. >=20 It seems reasonable to me since it is NAMED php70-. Setting the default is done in python ports like this as well. Wrapping an IGNORE in !PACKAGE_BUILDING seems ok to me too. --=20 Regards, Bryan Drewery --Onk434q0N4sITDfweVXgVJgsQwifpJoAI-- --8Xd0w8ka7iLWtw2tjq5hLf62NGAGRLudG Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJX2d+iAAoJEDXXcbtuRpfP/oUIALz83YfXskbeSLSgm0z/xnrI kWfObBMnba97yeOUwNS/VQ3Hxg2WM5gFHpNEZfZVGno9+9vubqd7pGGajL+pucIK GTI7zS4cdlbqMVCJzj04bsESxSrfZSypzNDNqLuP11DScibd6E/GAoyKXb0tCeEm 6lfDpgBkfXvCP9q3SJ2b30F++4T1bamAOlUm9MAvx+zvvlRcuHApYTR/KG9jr0nu VRNXSQG5Zm9N0R0KSy76n7e6yJqL0kXBFrYR6IkY2q5f5qWDnINQG8LwYdeu8rm6 pph7MDq/8lfXO+7DFVpGyMSpqDc3gPuEe1T84duxZZCLPlZvv6G5RwSNqMahVKw= =M3+w -----END PGP SIGNATURE----- --8Xd0w8ka7iLWtw2tjq5hLf62NGAGRLudG-- From owner-svn-ports-head@freebsd.org Wed Sep 14 23:41:40 2016 Return-Path: Delivered-To: svn-ports-head@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 7EFD1BDA8CB; Wed, 14 Sep 2016 23:41:40 +0000 (UTC) (envelope-from bdrewery@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 4FE0712EA; Wed, 14 Sep 2016 23:41:40 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ENfdT0076100; Wed, 14 Sep 2016 23:41:39 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ENfd77076099; Wed, 14 Sep 2016 23:41:39 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201609142341.u8ENfd77076099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Wed, 14 Sep 2016 23:41:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422170 - head/ports-mgmt/pkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 23:41:40 -0000 Author: bdrewery Date: Wed Sep 14 23:41:39 2016 New Revision: 422170 URL: https://svnweb.freebsd.org/changeset/ports/422170 Log: Force a rebuild to bring in libarchive fixes from head r305819. MFH: 2016Q3 Modified: head/ports-mgmt/pkg/Makefile Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Wed Sep 14 23:25:09 2016 (r422169) +++ head/ports-mgmt/pkg/Makefile Wed Sep 14 23:41:39 2016 (r422170) @@ -3,7 +3,7 @@ PORTNAME= pkg DISTVERSION= 1.8.7 _PKG_VERSION= ${DISTVERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= ports-mgmt MASTER_SITES= \ http://files.etoilebsd.net/${PORTNAME}/ \ From owner-svn-ports-head@freebsd.org Thu Sep 15 00:00:57 2016 Return-Path: Delivered-To: svn-ports-head@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 CAA13BDAFA7; Thu, 15 Sep 2016 00:00:57 +0000 (UTC) (envelope-from jkim@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 7E5A71A0D; Thu, 15 Sep 2016 00:00:57 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F00uC4080373; Thu, 15 Sep 2016 00:00:56 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F00uMM080371; Thu, 15 Sep 2016 00:00:56 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609150000.u8F00uMM080371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 15 Sep 2016 00:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422171 - head/korean/nabi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 00:00:57 -0000 Author: jkim Date: Thu Sep 15 00:00:56 2016 New Revision: 422171 URL: https://svnweb.freebsd.org/changeset/ports/422171 Log: Unbreak and modernize the port. Modified: head/korean/nabi/Makefile head/korean/nabi/distinfo Modified: head/korean/nabi/Makefile ============================================================================== --- head/korean/nabi/Makefile Wed Sep 14 23:41:39 2016 (r422170) +++ head/korean/nabi/Makefile Thu Sep 15 00:00:56 2016 (r422171) @@ -3,44 +3,44 @@ PORTNAME= nabi PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= korean gnome -MASTER_SITES= GOOGLE_CODE MAINTAINER= jkim@FreeBSD.org COMMENT= Hangul X Input Method for Everywhere -LICENSE= GPLv2 - -BROKEN= Unfetchable (google code has gone away) +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhangul.so:korean/libhangul +LIB_DEPENDS+= libfreetype.so:print/freetype2 +LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig + +GH_ACCOUNT= choehwanjin +GH_TAGNAME= f08d7d3 +USE_GITHUB= yes -USE_GNOME= gtk20 GNU_CONFIGURE= yes -USES= gmake pathfix pkgconfig +USE_GNOME= cairo gdkpixbuf2 gtk20 +USE_XORG= ice sm x11 +USES= autoreconf gmake pkgconfig OPTIONS_DEFINE= NLS OPTIONS_RADIO= LAYOUT OPTIONS_RADIO_LAYOUT= LAYOUT_390 LAYOUT_FINAL +OPTIONS_SUB= yes LAYOUT_DESC= Select 3-beolsik layout (default: 2-beolsik) LAYOUT_390_DESC= 3-beolsik 390 keyboard LAYOUT_FINAL_DESC= 3-beolsik final keyboard -OPTIONS_SUB= NLS - -.include +LAYOUT_390_CONFIGURE_ON= --with-default-keyboard=39 +LAYOUT_FINAL_CONFIGURE_ON= --with-default-keyboard=3f +NLS_USES= gettext localbase + +post-patch-NLS-off: + @${REINPLACE_CMD} -e '/^SUBDIRS /s| po||' ${WRKSRC}/Makefile.am + @${REINPLACE_CMD} -e '/^po\/Makefile\.in/d' ${WRKSRC}/configure.ac -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -.endif - -.if ${PORT_OPTIONS:MLAYOUT_390} -CONFIGURE_ARGS= --with-default-keyboard=39 -.elif ${PORT_OPTIONS:MLAYOUT_FINAL} -CONFIGURE_ARGS= --with-default-keyboard=3f -.else -CONFIGURE_ARGS= --with-default-keyboard=2 -.endif +pre-configure-NLS-on: + @(cd ${WRKSRC} && ${LOCALBASE}/bin/glib-gettextize) .include Modified: head/korean/nabi/distinfo ============================================================================== --- head/korean/nabi/distinfo Wed Sep 14 23:41:39 2016 (r422170) +++ head/korean/nabi/distinfo Thu Sep 15 00:00:56 2016 (r422171) @@ -1,2 +1,3 @@ -SHA256 (nabi-1.0.0.tar.gz) = 9c59cb3b70b66cbb86d68e4b0debc0c4ebf456da598d22a006671d7e89502a33 -SIZE (nabi-1.0.0.tar.gz) = 868761 +TIMESTAMP = 1473878127 +SHA256 (choehwanjin-nabi-1.0.0-f08d7d3_GH0.tar.gz) = 91438bbb55b22a96099abd0f3bf492e9357c608df939328bf2eed1baf93b71f2 +SIZE (choehwanjin-nabi-1.0.0-f08d7d3_GH0.tar.gz) = 926902 From owner-svn-ports-head@freebsd.org Thu Sep 15 00:13:26 2016 Return-Path: Delivered-To: svn-ports-head@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 DA80DBDB238; Thu, 15 Sep 2016 00:13:26 +0000 (UTC) (envelope-from marino@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 B86401005; Thu, 15 Sep 2016 00:13:26 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F0DP23087616; Thu, 15 Sep 2016 00:13:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F0DPZL087610; Thu, 15 Sep 2016 00:13:25 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609150013.u8F0DPZL087610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 15 Sep 2016 00:13:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422172 - in head/graphics/copperspice: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 00:13:27 -0000 Author: marino Date: Thu Sep 15 00:13:25 2016 New Revision: 422172 URL: https://svnweb.freebsd.org/changeset/ports/422172 Log: graphics/copperspice: upgrade v1.2.2 => v1.3.2, release maintainership I'm not longer evaluating copperspice for use in a project, so release maintainship of it. I upgraded to the latest version first though. Added: head/graphics/copperspice/files/patch-Makefile.in (contents, props changed) head/graphics/copperspice/files/patch-src_webkit_Makefile.in (contents, props changed) Deleted: head/graphics/copperspice/files/patch-configure head/graphics/copperspice/files/patch-df-support Modified: head/graphics/copperspice/Makefile head/graphics/copperspice/distinfo head/graphics/copperspice/pkg-plist Modified: head/graphics/copperspice/Makefile ============================================================================== --- head/graphics/copperspice/Makefile Thu Sep 15 00:00:56 2016 (r422171) +++ head/graphics/copperspice/Makefile Thu Sep 15 00:13:25 2016 (r422172) @@ -2,22 +2,31 @@ # $FreeBSD$ PORTNAME= copperspice -PORTVERSION= 1.2.2 +PORTVERSION= 1.3.2 CATEGORIES= graphics MASTER_SITES= http://download.copperspice.com/copperspice/source/ -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Modern cross-platform C++ GUI library (derived from Qt 4.8) LICENSE= LGPL21 -BUILD_DEPENDS= fc-cache:x11-fonts/fontconfig LIB_DEPENDS= libaudio.so:audio/nas \ - libfreetype.so:print/freetype2 - -USES= compiler:c++11-lib gmake iconv libtool pkgconfig tar:bz2 -USE_XORG= ice sm x11 xcursor xext xi xinerama xrandr -USE_GNOME= glib20 + libdrm.so:graphics/libdrm \ + libexpat.so:textproc/expat2 \ + libffi.so:devel/libffi \ + libfreetype.so:print/freetype2 \ + libglapi.so:graphics/libglapi \ + libgstbase-0.10.so:multimedia/gstreamer \ + libgstreamer-0.10.so:multimedia/gstreamer \ + libpcre.so:devel/pcre \ + libfontconfig.so:x11-fonts/fontconfig + +USES= compiler:c++11-lib gettext-runtime gmake iconv libtool \ + pkgconfig tar:bz2 +USE_XORG= ice sm x11 xau xcb xcursor xdamage xdmcp xext xfixes xi \ + xinerama xrandr xrender xt xxf86vm +USE_GNOME= glib20 libxml2 USE_GL= gl USE_GSTREAMER= yes GNU_CONFIGURE= yes @@ -34,15 +43,17 @@ OVERRIDE_INS= INSTALL_PROGRAM="${INSTALL INSTALL="${INSTALL}" CONFIGURE_ARGS= ${OVERRIDE_INS} MAKE_ARGS= ${OVERRIDE_INS} -PLIST_SUB= SHORT_VER=0 LONG_VER=0.0.0 - -WITH_OPENSSL_PORT= yes +PLIST_SUB= LONG_VER=1.3 BROKEN_FreeBSD_9= PR 193528 (c++11 support is broken) BROKEN_i386= qx11embed_x11.cpp:470:20: non-constant-expression\ cannot be narrowed from type 'unsigned int' to 'long'\ in initializer list [-Wc++11-narrowing] +post-patch: + # fix something wrong with v1.3.2 generatior + ${REINPLACE_CMD} -e '/config.status:/ s/:.*/:/' ${WRKSRC}/Makefile.in + post-configure: ${REINPLACE_CMD} -e '/^hardcode_libdir_flag/ \ s|spec=.*|spec="-Wl,-rpath,${LOCALBASE}/lib"|' \ Modified: head/graphics/copperspice/distinfo ============================================================================== --- head/graphics/copperspice/distinfo Thu Sep 15 00:00:56 2016 (r422171) +++ head/graphics/copperspice/distinfo Thu Sep 15 00:13:25 2016 (r422172) @@ -1,2 +1,3 @@ -SHA256 (copperspice-1.2.2.tar.bz2) = fbcda16ef133a86014875c85f7a829b1049026b1b754eaf6cd262dc6806e20fe -SIZE (copperspice-1.2.2.tar.bz2) = 15225245 +TIMESTAMP = 1473866630 +SHA256 (copperspice-1.3.2.tar.bz2) = 64dc3819b2beec102c21ac9656e3f910d2ff89fda6f20d1472d17c8efea3cba2 +SIZE (copperspice-1.3.2.tar.bz2) = 15311791 Added: head/graphics/copperspice/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/copperspice/files/patch-Makefile.in Thu Sep 15 00:13:25 2016 (r422172) @@ -0,0 +1,47 @@ +--- Makefile.in.orig 2016-09-12 14:20:12 UTC ++++ Makefile.in +@@ -1253,7 +1253,7 @@ AM_V_lt = $(am__v_lt_@AM_V@) + am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) + am__v_lt_0 = --silent + am__v_lt_1 = +-lib_libCsCore@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) \ ++lib_libCsCore@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ + $(lib_libCsCore@BUILD_ABI@_la_OBJCXXFLAGS) $(OBJCXXFLAGS) \ + $(lib_libCsCore@BUILD_ABI@_la_LDFLAGS) $(LDFLAGS) -o $@ +@@ -2326,7 +2326,7 @@ nodist_lib_libCsGui@BUILD_ABI@_la_OBJECT + lib_libCsGui@BUILD_ABI@_la_OBJECTS = \ + $(am_lib_libCsGui@BUILD_ABI@_la_OBJECTS) \ + $(nodist_lib_libCsGui@BUILD_ABI@_la_OBJECTS) +-lib_libCsGui@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) \ ++lib_libCsGui@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ + $(lib_libCsGui@BUILD_ABI@_la_OBJCXXFLAGS) $(OBJCXXFLAGS) \ + $(lib_libCsGui@BUILD_ABI@_la_LDFLAGS) $(LDFLAGS) -o $@ +@@ -2610,7 +2610,7 @@ am_lib_libCsOpenGL@BUILD_ABI@_la_OBJECTS + $(am__objects_79) $(am__objects_80) $(am__objects_81) + lib_libCsOpenGL@BUILD_ABI@_la_OBJECTS = \ + $(am_lib_libCsOpenGL@BUILD_ABI@_la_OBJECTS) +-lib_libCsOpenGL@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) \ ++lib_libCsOpenGL@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ + $(lib_libCsOpenGL@BUILD_ABI@_la_OBJCXXFLAGS) $(OBJCXXFLAGS) \ + $(lib_libCsOpenGL@BUILD_ABI@_la_LDFLAGS) $(LDFLAGS) -o $@ +@@ -3412,7 +3412,7 @@ am__lib_phonon_qt7_la_SOURCES_DIST = \ + @OSTYPE_DARWIN_TRUE@ src/3rdparty/phonon/qt7/lib_phonon_qt7_la-videowidget.lo + lib_phonon_qt7_la_OBJECTS = $(am_lib_phonon_qt7_la_OBJECTS) + lib_phonon_qt7_la_LINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ +- $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ ++ --tag=CXX $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ + $(lib_phonon_qt7_la_OBJCXXFLAGS) $(OBJCXXFLAGS) \ + $(lib_phonon_qt7_la_LDFLAGS) $(LDFLAGS) -o $@ + @OSTYPE_DARWIN_TRUE@am_lib_phonon_qt7_la_rpath = -rpath $(libdir) +@@ -3604,7 +3604,7 @@ am__v_OBJCXX_ = $(am__v_OBJCXX_@AM_DEFAU + am__v_OBJCXX_0 = @echo " OBJCXX " $@; + am__v_OBJCXX_1 = + OBJCXXLD = $(OBJCXX) +-OBJCXXLINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ++OBJCXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + AM_V_OBJCXXLD = $(am__v_OBJCXXLD_@AM_V@) Added: head/graphics/copperspice/files/patch-src_webkit_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/copperspice/files/patch-src_webkit_Makefile.in Thu Sep 15 00:13:25 2016 (r422172) @@ -0,0 +1,65 @@ +--- src/webkit/Makefile.in.orig 2016-09-12 14:20:12 UTC ++++ src/webkit/Makefile.in +@@ -259,7 +259,7 @@ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) + am__v_lt_0 = --silent + am__v_lt_1 = + ______lib_libCsWebKit@BUILD_ABI@_la_LINK = $(LIBTOOL) $(AM_V_lt) \ +- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ ++ $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) --mode=link $(OBJCXXLD) \ + $(______lib_libCsWebKit@BUILD_ABI@_la_OBJCXXFLAGS) \ + $(OBJCXXFLAGS) $(______lib_libCsWebKit@BUILD_ABI@_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +@@ -721,7 +721,7 @@ am_______lib_webkit_libwebkitA_la_OBJECT + ______lib_webkit_libwebkitA_la_OBJECTS = \ + $(am_______lib_webkit_libwebkitA_la_OBJECTS) + ______lib_webkit_libwebkitA_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ +- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ ++ $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(______lib_webkit_libwebkitA_la_CXXFLAGS) $(CXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + @WEBKIT_TRUE@am_______lib_webkit_libwebkitA_la_rpath = +@@ -1400,7 +1400,7 @@ am_______lib_webkit_libwebkitB_la_OBJECT + ______lib_webkit_libwebkitB_la_OBJECTS = \ + $(am_______lib_webkit_libwebkitB_la_OBJECTS) + ______lib_webkit_libwebkitB_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ +- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ ++ $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(______lib_webkit_libwebkitB_la_CXXFLAGS) $(CXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + @WEBKIT_TRUE@am_______lib_webkit_libwebkitB_la_rpath = +@@ -1956,7 +1956,7 @@ am_______lib_webkit_libwebkitC_la_OBJECT + ______lib_webkit_libwebkitC_la_OBJECTS = \ + $(am_______lib_webkit_libwebkitC_la_OBJECTS) + ______lib_webkit_libwebkitC_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ +- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ ++ $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(______lib_webkit_libwebkitC_la_CXXFLAGS) $(CXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + @WEBKIT_TRUE@am_______lib_webkit_libwebkitC_la_rpath = +@@ -2376,7 +2376,7 @@ am_______lib_webkit_libwebkitD_la_OBJECT + ______lib_webkit_libwebkitD_la_OBJECTS = \ + $(am_______lib_webkit_libwebkitD_la_OBJECTS) + ______lib_webkit_libwebkitD_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ +- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ ++ $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(______lib_webkit_libwebkitD_la_CXXFLAGS) $(CXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + @WEBKIT_TRUE@am_______lib_webkit_libwebkitD_la_rpath = +@@ -2386,7 +2386,7 @@ am_______lib_webkit_libwebkitE_la_OBJECT + ______lib_webkit_libwebkitE_la_OBJECTS = \ + $(am_______lib_webkit_libwebkitE_la_OBJECTS) + ______lib_webkit_libwebkitE_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ +- $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ ++ $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ + $(______lib_webkit_libwebkitE_la_CXXFLAGS) $(CXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + @WEBKIT_TRUE@am_______lib_webkit_libwebkitE_la_rpath = +@@ -2453,7 +2453,7 @@ am__v_OBJCXX_ = $(am__v_OBJCXX_@AM_DEFAU + am__v_OBJCXX_0 = @echo " OBJCXX " $@; + am__v_OBJCXX_1 = + OBJCXXLD = $(OBJCXX) +-OBJCXXLINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ++OBJCXXLINK = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) --tag=CXX $(LIBTOOLFLAGS) \ + --mode=link $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ + AM_V_OBJCXXLD = $(am__v_OBJCXXLD_@AM_V@) Modified: head/graphics/copperspice/pkg-plist ============================================================================== --- head/graphics/copperspice/pkg-plist Thu Sep 15 00:00:56 2016 (r422171) +++ head/graphics/copperspice/pkg-plist Thu Sep 15 00:13:25 2016 (r422172) @@ -287,6 +287,10 @@ include/QtCore/QtNamespace include/QtCore/QtPlugin include/QtCore/QtPluginInstanceFunction include/QtCore/cs_build_info.h +include/QtCore/cs_internal.h +include/QtCore/cs_macro.h +include/QtCore/cs_signal.h +include/QtCore/cs_slot.h include/QtCore/csmeta.h include/QtCore/csmeta_callevent.h include/QtCore/csmeta_internal_1.h @@ -2093,40 +2097,16 @@ include/phonon/videowidgetinterfacelates include/phonon/volumefadereffect.h include/phonon/volumefaderinterface.h include/phonon/volumeslider.h -lib/libCsCore1.so -lib/libCsCore1.so.%%LONG_VER%% -lib/libCsCore1.so.%%SHORT_VER%% -lib/libCsGui1.so -lib/libCsGui1.so.%%LONG_VER%% -lib/libCsGui1.so.%%SHORT_VER%% -lib/libCsMultimedia1.so -lib/libCsMultimedia1.so.%%LONG_VER%% -lib/libCsMultimedia1.so.%%SHORT_VER%% -lib/libCsNetwork1.so -lib/libCsNetwork1.so.%%LONG_VER%% -lib/libCsNetwork1.so.%%SHORT_VER%% -lib/libCsOpenGL1.so -lib/libCsOpenGL1.so.%%LONG_VER%% -lib/libCsOpenGL1.so.%%SHORT_VER%% -lib/libCsPhonon1.so -lib/libCsPhonon1.so.%%LONG_VER%% -lib/libCsPhonon1.so.%%SHORT_VER%% -lib/libCsScript1.so -lib/libCsScript1.so.%%LONG_VER%% -lib/libCsScript1.so.%%SHORT_VER%% -lib/libCsSql1.so -lib/libCsSql1.so.%%LONG_VER%% -lib/libCsSql1.so.%%SHORT_VER%% -lib/libCsSvg1.so -lib/libCsSvg1.so.%%LONG_VER%% -lib/libCsSvg1.so.%%SHORT_VER%% -lib/libCsWebKit1.so -lib/libCsWebKit1.so.%%LONG_VER%% -lib/libCsWebKit1.so.%%SHORT_VER%% -lib/libCsXml1.so -lib/libCsXml1.so.%%LONG_VER%% -lib/libCsXml1.so.%%SHORT_VER%% -lib/libCsXmlPatterns1.so -lib/libCsXmlPatterns1.so.%%LONG_VER%% -lib/libCsXmlPatterns1.so.%%SHORT_VER%% +lib/libCsCore%%LONG_VER%%.so +lib/libCsGui%%LONG_VER%%.so +lib/libCsMultimedia%%LONG_VER%%.so +lib/libCsNetwork%%LONG_VER%%.so +lib/libCsOpenGL%%LONG_VER%%.so +lib/libCsPhonon%%LONG_VER%%.so +lib/libCsScript%%LONG_VER%%.so +lib/libCsSql%%LONG_VER%%.so +lib/libCsSvg%%LONG_VER%%.so +lib/libCsWebKit%%LONG_VER%%.so +lib/libCsXml%%LONG_VER%%.so +lib/libCsXmlPatterns%%LONG_VER%%.so lib/phonon_gstreamer.so From owner-svn-ports-head@freebsd.org Thu Sep 15 01:29:43 2016 Return-Path: Delivered-To: svn-ports-head@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 7E82CBDBDF4; Thu, 15 Sep 2016 01:29:43 +0000 (UTC) (envelope-from marino@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 4AB3B17A7; Thu, 15 Sep 2016 01:29:43 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F1TgD6014011; Thu, 15 Sep 2016 01:29:42 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F1TfRP014003; Thu, 15 Sep 2016 01:29:41 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609150129.u8F1TfRP014003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 15 Sep 2016 01:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422173 - in head: cad/ghdl databases/libnvpair devel/afay devel/libuutil lang/modula3 math/ocaml-zarith security/wpa_supplicant textproc/words X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 01:29:43 -0000 Author: marino Date: Thu Sep 15 01:29:41 2016 New Revision: 422173 URL: https://svnweb.freebsd.org/changeset/ports/422173 Log: Release some of my ports back to the heap Modified: head/cad/ghdl/Makefile head/databases/libnvpair/Makefile head/devel/afay/Makefile head/devel/libuutil/Makefile head/lang/modula3/Makefile head/math/ocaml-zarith/Makefile head/security/wpa_supplicant/Makefile head/textproc/words/Makefile Modified: head/cad/ghdl/Makefile ============================================================================== --- head/cad/ghdl/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/cad/ghdl/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -8,7 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= cad DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= GNU VHDL simulator LICENSE= GPLv2 Modified: head/databases/libnvpair/Makefile ============================================================================== --- head/databases/libnvpair/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/databases/libnvpair/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -5,7 +5,7 @@ PORTNAME= libnvpair PORTVERSION= 2.0 CATEGORIES= databases devel -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Illumos name-value pair library LICENSE= CDDL Modified: head/devel/afay/Makefile ============================================================================== --- head/devel/afay/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/devel/afay/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -8,7 +8,7 @@ CATEGORIES= devel MASTER_SITES= http://thiberlog.free.fr/src/ DISTNAME= afay_thiberlog_${PORTVERSION} -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Improved aflex and ayacc Ada 95 scanner and parser generators LICENSE= aflex Modified: head/devel/libuutil/Makefile ============================================================================== --- head/devel/libuutil/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/devel/libuutil/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -5,7 +5,7 @@ PORTNAME= libuutil PORTVERSION= 1.0.3 CATEGORIES= devel -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Illumos userland utilities library LICENSE= CDDL Modified: head/lang/modula3/Makefile ============================================================================== --- head/lang/modula3/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/lang/modula3/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -8,7 +8,7 @@ CATEGORIES= lang MASTER_SITES= http://downloads.dragonlace.net/m3/:boot DISTFILES= ${SRCDISTFILE} ${BOOTDIST} -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Critical Mass Modula-3 compiler LICENSE= DECM3 Modified: head/math/ocaml-zarith/Makefile ============================================================================== --- head/math/ocaml-zarith/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/math/ocaml-zarith/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -7,7 +7,7 @@ CATEGORIES= math MASTER_SITES= http://forge.ocamlcore.org/frs/download.php/1199/ PKGNAMEPREFIX= ocaml- -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= OCaml arithmetic library for arbitrary precision integers LICENSE= GPLv2 Modified: head/security/wpa_supplicant/Makefile ============================================================================== --- head/security/wpa_supplicant/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/security/wpa_supplicant/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -6,7 +6,7 @@ PORTREVISION= 2 CATEGORIES= security net MASTER_SITES= http://w1.fi/releases/ -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Supplicant (client) for WPA/802.1x protocols USES= cpe gmake readline ssl Modified: head/textproc/words/Makefile ============================================================================== --- head/textproc/words/Makefile Thu Sep 15 00:13:25 2016 (r422172) +++ head/textproc/words/Makefile Thu Sep 15 01:29:41 2016 (r422173) @@ -8,7 +8,7 @@ CATEGORIES= textproc MASTER_SITES= http://archives.nd.edu/whitaker/ DISTNAME= ${PORTNAME}all -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Latin-English Dictionary Program LICENSE= PD From owner-svn-ports-head@freebsd.org Thu Sep 15 01:35:59 2016 Return-Path: Delivered-To: svn-ports-head@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 D80FCBDBFC1; Thu, 15 Sep 2016 01:35:59 +0000 (UTC) (envelope-from marino@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 8E2261B34; Thu, 15 Sep 2016 01:35:59 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F1ZwYK017853; Thu, 15 Sep 2016 01:35:58 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F1ZwQ4017850; Thu, 15 Sep 2016 01:35:58 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609150135.u8F1ZwQ4017850@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 15 Sep 2016 01:35:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422174 - in head: lang/spark math/alt-ergo-spark math/why3-spark X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 01:35:59 -0000 Author: marino Date: Thu Sep 15 01:35:58 2016 New Revision: 422174 URL: https://svnweb.freebsd.org/changeset/ports/422174 Log: Drop spark-related ports for removal after 30 Sept Modified: head/lang/spark/Makefile head/math/alt-ergo-spark/Makefile head/math/why3-spark/Makefile Modified: head/lang/spark/Makefile ============================================================================== --- head/lang/spark/Makefile Thu Sep 15 01:29:41 2016 (r422173) +++ head/lang/spark/Makefile Thu Sep 15 01:35:58 2016 (r422174) @@ -10,14 +10,14 @@ DISTNAME= spark-gpl-${PORTVERSION}-src DISTFILES= ${DISTNAME}.tar.gz:main ${IDENTIFICATION}.tar.bz2 EXTRACT_ONLY= ${DISTNAME}.tar.gz -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Technology for engineering high-reliability s/w applications LICENSE= GPLv3 BROKEN= brutally fails test suite - with ICE DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-10-29 +EXPIRATION_DATE= 2016-09-30 BUILD_DEPENDS= gnatcoll>=2014:devel/gnatcoll RUN_DEPENDS= gnatwhy3:math/why3-spark \ Modified: head/math/alt-ergo-spark/Makefile ============================================================================== --- head/math/alt-ergo-spark/Makefile Thu Sep 15 01:29:41 2016 (r422173) +++ head/math/alt-ergo-spark/Makefile Thu Sep 15 01:35:58 2016 (r422174) @@ -7,9 +7,12 @@ MASTER_SITES= http://downloads.dragonlac PKGNAMESUFFIX= -spark DISTNAME= alt-ergo-for-spark-gpl-${PORTVERSION}-src -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Automatic solver for SPARK 2015 +DEPRECATED= Only useful for deprecate lang/spark +EXPIRATION_DATE= 2016-09-30 + LICENSE= CeCILL-C LICENSE_NAME= Ce[a] C[nrs] I[nria] L[ogiciel] L[ibre] C license, version 1 LICENSE_FILE= ${WRKSRC}/LICENSE Modified: head/math/why3-spark/Makefile ============================================================================== --- head/math/why3-spark/Makefile Thu Sep 15 01:29:41 2016 (r422173) +++ head/math/why3-spark/Makefile Thu Sep 15 01:35:58 2016 (r422174) @@ -8,12 +8,15 @@ MASTER_SITES= http://downloads.dragonlac PKGNAMESUFFIX= -spark DISTNAME= why3-for-spark-gpl-${PORTVERSION}-src -MAINTAINER= marino@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Component of SPARK ${PORTVERSION} LICENSE= LGPL21 GPLv3 LICENSE_COMB= multi +DEPRECATED= Only useful for deprecated lang/spark +EXPIRATION_DATE= 2016-09-30 + BUILD_DEPENDS= menhir:devel/menhir \ ocaml-zip>1:archivers/ocaml-zip \ ocaml-zarith>1.2:math/ocaml-zarith \ From owner-svn-ports-head@freebsd.org Thu Sep 15 01:41:39 2016 Return-Path: Delivered-To: svn-ports-head@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 D9C90BDB14B; Thu, 15 Sep 2016 01:41:39 +0000 (UTC) (envelope-from swills@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 8C0981D42; Thu, 15 Sep 2016 01:41:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F1fctH024454; Thu, 15 Sep 2016 01:41:38 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F1fSAE024356; Thu, 15 Sep 2016 01:41:28 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609150141.u8F1fSAE024356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 01:41:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422175 - in head: archivers/pecl-phk archivers/php55-phar archivers/php56-phar audio/xmms-volnorm chinese/wordpress-zh_CN chinese/wordpress-zh_TW comms/atslog comms/hf comms/libcodec2 ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 01:41:40 -0000 Author: swills Date: Thu Sep 15 01:41:28 2016 New Revision: 422175 URL: https://svnweb.freebsd.org/changeset/ports/422175 Log: Unmark broken on powerpc64 These ports built successfully Modified: head/archivers/pecl-phk/Makefile head/archivers/php55-phar/Makefile head/archivers/php56-phar/Makefile head/audio/xmms-volnorm/Makefile head/chinese/wordpress-zh_CN/Makefile head/chinese/wordpress-zh_TW/Makefile head/comms/atslog/Makefile head/comms/hf/Makefile head/comms/libcodec2/Makefile head/converters/pecl-igbinary/Makefile head/databases/mantis/Makefile head/databases/mariadb55-server/Makefile head/databases/mysql55-server/Makefile head/databases/mysqldumper/Makefile head/databases/pecl-memcache/Makefile head/databases/pecl-memcached/Makefile head/databases/pecl-pdo_user/Makefile head/databases/pecl-tokyo_tyrant/Makefile head/databases/percona55-server/Makefile head/databases/pgfouine/Makefile head/databases/php55-pdo_dblib/Makefile head/databases/php55-pdo_mysql/Makefile head/databases/php55-pdo_odbc/Makefile head/databases/php55-pdo_pgsql/Makefile head/databases/php55-pdo_sqlite/Makefile head/databases/php55-redis/Makefile head/databases/php56-pdo_dblib/Makefile head/databases/php56-pdo_mysql/Makefile head/databases/php56-pdo_odbc/Makefile head/databases/php56-pdo_pgsql/Makefile head/databases/php56-pdo_sqlite/Makefile head/databases/php56-redis/Makefile head/databases/phpminiadmin/Makefile head/databases/phpmyadmin/Makefile head/databases/qt4-mysql-plugin/Makefile head/databases/qt4-odbc-plugin/Makefile head/databases/qt4-pgsql-plugin/Makefile head/databases/qt4-sqlite-plugin/Makefile head/databases/qt4-sqlite3-plugin/Makefile head/databases/sqlbuddy/Makefile head/databases/sqlitemanager/Makefile head/databases/vfront/Makefile head/deskutils/myitcrm/Makefile head/deskutils/phpcollab/Makefile head/deskutils/phpicalendar/Makefile head/deskutils/simplegroupware/Makefile head/deskutils/sugarcrm/Makefile head/deskutils/surrealtodo/Makefile head/devel/flyspray/Makefile head/devel/gdcm/Makefile head/devel/guile-lib/Makefile head/devel/libgpkg/Makefile head/devel/libphutil/Makefile head/devel/pear/Makefile head/devel/pecl-event/Makefile head/devel/pecl-json_post/Makefile head/devel/pecl-msgpack/Makefile head/devel/phpsh/Makefile head/devel/poco/Makefile head/devel/qt4-script/Makefile head/devel/rth/Makefile head/devel/thrift-c_glib/Makefile head/devel/truc/Makefile head/devel/websvn/Makefile head/emulators/bochs/Makefile head/finance/prestashop/Makefile head/finance/weberp/Makefile head/ftp/net2ftp/Makefile head/ftp/phpwebftp/Makefile head/games/angband/Makefile head/games/crafty-tablebase-no-pawn/Makefile head/german/wordpress/Makefile head/graphics/jpgraph2/Makefile head/graphics/maim/Makefile head/graphics/pngquant/Makefile head/graphics/sdump/Makefile head/japanese/skkinput3/Makefile head/japanese/wordpress/Makefile head/java/intellij-pty4j/Makefile head/lang/php70/Makefile head/mail/dracmail/Makefile head/mail/nocc/Makefile head/mail/pecl-mailparse/Makefile head/mail/sgwi/Makefile head/mail/squirrelmail/Makefile head/math/gap/Makefile head/net-mgmt/ezradius/Makefile head/net-mgmt/ipplan/Makefile head/net-mgmt/klg/Makefile head/net-mgmt/nagios4/Makefile head/net-mgmt/nedi/Makefile head/net-mgmt/ocsinventory-ng/Makefile head/net-mgmt/phpip/Makefile head/net-mgmt/sx/Makefile head/net/fspd/Makefile head/net/librdkafka/Makefile head/net/nss_ldap/Makefile head/net/phamm/Makefile head/net/php55-soap/Makefile head/net/php55-xmlrpc/Makefile head/net/php56-soap/Makefile head/net/php56-xmlrpc/Makefile head/net/phpldapadmin/Makefile head/net/portfwd/Makefile head/net/rtg/Makefile head/net/self-service-password/Makefile head/net/serveez/Makefile head/net/tshark-lite/Makefile head/net/tshark/Makefile head/security/openvas-libraries/Makefile head/security/pecl-scrypt/Makefile head/security/php-suhosin/Makefile head/security/phpdeadlock/Makefile head/security/webfwlog/Makefile head/sysutils/ldap-account-manager/Makefile head/sysutils/synergy/Makefile head/sysutils/syslog-ng-devel/Makefile head/sysutils/syslog-ng/Makefile head/sysutils/syslog-ng36/Makefile head/sysutils/syslog-ng37/Makefile head/textproc/pecl-syck/Makefile head/textproc/php55-pspell/Makefile head/textproc/php55-wddx/Makefile head/textproc/php55-xmlreader/Makefile head/textproc/php55-xsl/Makefile head/textproc/php56-pspell/Makefile head/textproc/php56-wddx/Makefile head/textproc/php56-xmlreader/Makefile head/textproc/php56-xsl/Makefile head/textproc/qt4-xmlpatterns/Makefile head/www/apache22-peruser-mpm/Makefile head/www/asterisk-stat/Makefile head/www/atutor/Makefile head/www/bblog/Makefile head/www/chems/Makefile head/www/claroline/Makefile head/www/cmsmadesimple/Makefile head/www/codeigniter/Makefile head/www/coppermine/Makefile head/www/dokuwiki/Makefile head/www/dotproject/Makefile head/www/e107/Makefile head/www/efront/Makefile head/www/entrans/Makefile head/www/eventum/Makefile head/www/feedonfeeds/Makefile head/www/fluxbb/Makefile head/www/freeway/Makefile head/www/gregarius/Makefile head/www/groupoffice/Makefile head/www/hastymail/Makefile head/www/hastymail2-devel/Makefile head/www/hastymail2/Makefile head/www/kplaylist/Makefile head/www/lilurl/Makefile head/www/limesurvey/Makefile head/www/lionwiki/Makefile head/www/mod_webkit/Makefile head/www/mysar/Makefile head/www/mythplugin-mythweb/Makefile head/www/netoffice/Makefile head/www/opencart/Makefile head/www/openxmldir/Makefile head/www/orangehrm/Makefile head/www/oscommerce/Makefile head/www/pecl-solr/Makefile head/www/pecl-yar/Makefile head/www/php-plurk-api/Makefile head/www/phpmp/Makefile head/www/phprecipebook/Makefile head/www/phproxy/Makefile head/www/pivotx/Makefile head/www/plexwatchweb/Makefile head/www/pligg/Makefile head/www/pmwiki/Makefile head/www/pydio/Makefile head/www/repos-style/Makefile head/www/revive-adserver/Makefile head/www/rnews/Makefile head/www/sit/Makefile head/www/sitebar/Makefile head/www/testlink/Makefile head/www/textpattern/Makefile head/www/tikiwiki/Makefile head/www/tivoka/Makefile head/www/usermanager/Makefile head/www/wordpress/Makefile head/www/xaraya/Makefile head/www/xoops/Makefile head/www/xshttpd/Makefile head/www/yourls/Makefile head/www/zenphoto/Makefile head/x11/slop/Makefile Modified: head/archivers/pecl-phk/Makefile ============================================================================== --- head/archivers/pecl-phk/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/archivers/pecl-phk/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= PHK is a PHP-oriented package/a LICENSE= PHP301 -BROKEN_powerpc64= Does not build - USES= php:ext tar:tgz USE_PHP= hash:build IGNORE_WITH_PHP= 70 Modified: head/archivers/php55-phar/Makefile ============================================================================== --- head/archivers/php55-phar/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/archivers/php55-phar/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php55 PKGNAMESUFFIX= -phar -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/archivers/php56-phar/Makefile ============================================================================== --- head/archivers/php56-phar/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/archivers/php56-phar/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php56 PKGNAMESUFFIX= -phar -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/audio/xmms-volnorm/Makefile ============================================================================== --- head/audio/xmms-volnorm/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/audio/xmms-volnorm/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -15,8 +15,6 @@ LICENSE= GPLv2 LIB_DEPENDS= libxmms.so:multimedia/xmms -BROKEN_powerpc64= Does not build - USES= libtool USE_GNOME= gtk12 GNU_CONFIGURE= yes Modified: head/chinese/wordpress-zh_CN/Makefile ============================================================================== --- head/chinese/wordpress-zh_CN/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/chinese/wordpress-zh_CN/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= State-of-the-art semantic perso LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/license.txt -BROKEN_powerpc64= Does not build - WRKSRC= ${WRKDIR}/${PORTNAME} USES= php:web Modified: head/chinese/wordpress-zh_TW/Makefile ============================================================================== --- head/chinese/wordpress-zh_TW/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/chinese/wordpress-zh_TW/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= State-of-the-art semantic perso LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/license.txt -BROKEN_powerpc64= Does not build - WRKSRC= ${WRKDIR}/${PORTNAME} USES= php:web Modified: head/comms/atslog/Makefile ============================================================================== --- head/comms/atslog/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/comms/atslog/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ MASTER_SITES= BERLIOS MAINTAINER= ports@FreeBSD.org COMMENT= Software for collecting and analyzing calls from different PBX models -BROKEN_powerpc64= Does not build - OPTIONS_DEFINE= EXAMPLES LIBWRAP WWW WWWGD DOCS OPTIONS_DEFAULT= LIBWRAP MYSQL WWW WWWGD OPTIONS_MULTI= DB Modified: head/comms/hf/Makefile ============================================================================== --- head/comms/hf/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/comms/hf/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Amateur Radio soundcard fsk, pa LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - RUN_DEPENDS= whiptail:devel/newt USE_GNOME= gtk12 Modified: head/comms/libcodec2/Makefile ============================================================================== --- head/comms/libcodec2/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/comms/libcodec2/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Codec 2 speech codec LICENSE= LGPL21 -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libspeexdsp.so:audio/speexdsp USE_LDCONFIG= yes Modified: head/converters/pecl-igbinary/Makefile ============================================================================== --- head/converters/pecl-igbinary/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/converters/pecl-igbinary/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -16,8 +16,6 @@ COMMENT= Replacement for the standard PH LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= does not build - IGNORE_WITH_PHP=70 USES= php:ext tar:tgz Modified: head/databases/mantis/Makefile ============================================================================== --- head/databases/mantis/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/mantis/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= mantisbt-${PORTVERSION} MAINTAINER= dvl@FreeBSD.org COMMENT= Bug tracking system written in PHP -BROKEN_powerpc64= Does not build - NO_BUILD= yes USE_PHP= hash pcre session xml Modified: head/databases/mariadb55-server/Makefile ============================================================================== --- head/databases/mariadb55-server/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/mariadb55-server/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -19,8 +19,6 @@ COMMENT?= Multithreaded SQL database (se LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message Modified: head/databases/mysql55-server/Makefile ============================================================================== --- head/databases/mysql55-server/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/mysql55-server/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT?= Multithreaded SQL database (se LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - SLAVEDIRS= databases/mysql55-client USES= cmake readline shebangfix CXXFLAGS+= ${CPPFLAGS} Modified: head/databases/mysqldumper/Makefile ============================================================================== --- head/databases/mysqldumper/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/mysqldumper/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= p5-DBI>=1.48:databases/p5-DBI -BROKEN_powerpc64= does not build - OPTIONS_DEFINE= APACHE LIGHTTPD OPTIONS_DEFAULT=APACHE Modified: head/databases/pecl-memcache/Makefile ============================================================================== --- head/databases/pecl-memcache/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/pecl-memcache/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -15,8 +15,6 @@ COMMENT= Memcached extension LICENSE= PHP30 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= does not build - OPTIONS_DEFINE= EXAMPLES CONFIGURE_ARGS= --with-zlib-dir=/usr Modified: head/databases/pecl-memcached/Makefile ============================================================================== --- head/databases/pecl-memcached/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/pecl-memcached/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -17,8 +17,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libmemcached.so:databases/libmemcached -BROKEN_powerpc64= does not build - OPTIONS_DEFINE= IGBINARY SASL IGBINARY_DESC= Binary serializer support Modified: head/databases/pecl-pdo_user/Makefile ============================================================================== --- head/databases/pecl-pdo_user/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/pecl-pdo_user/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ DIST_SUBDIR= PECL MAINTAINER= jnlin@freebsd.cs.nctu.edu.tw COMMENT= PECL classes provides a Userspace interface for PDO drivers -BROKEN_powerpc64= Does not build - WRKSRC= ${WRKDIR}/PDO_USER-${PORTVERSION} USES= php:ext Modified: head/databases/pecl-tokyo_tyrant/Makefile ============================================================================== --- head/databases/pecl-tokyo_tyrant/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/pecl-tokyo_tyrant/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= Wrapper to the Tokyo Tyrant cli LICENSE= PHP301 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libtokyotyrant.so:databases/tokyotyrant USES= php:ext pkgconfig tar:tgz Modified: head/databases/percona55-server/Makefile ============================================================================== --- head/databases/percona55-server/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/percona55-server/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= percona-server-${DISTVERSION} MAINTAINER= flo@FreeBSD.org COMMENT?= Multithreaded SQL database (server) -BROKEN_powerpc64= Does not build - SLAVEDIRS= databases/percona55-client USES= bison cmake readline shebangfix Modified: head/databases/pgfouine/Makefile ============================================================================== --- head/databases/pgfouine/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/pgfouine/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ MASTER_SITES= http://pgfoundry.org/frs/d MAINTAINER= pea@raveland.org COMMENT= PostgreSQL log analyzer -BROKEN_powerpc64= Does not build - NO_BUILD= Yes USE_PHP= gd pcre Modified: head/databases/php55-pdo_dblib/Makefile ============================================================================== --- head/databases/php55-pdo_dblib/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php55-pdo_dblib/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php55 PKGNAMESUFFIX= -pdo_dblib -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php55-pdo_mysql/Makefile ============================================================================== --- head/databases/php55-pdo_mysql/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php55-pdo_mysql/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php55 PKGNAMESUFFIX= -pdo_mysql -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php55-pdo_odbc/Makefile ============================================================================== --- head/databases/php55-pdo_odbc/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php55-pdo_odbc/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php55 PKGNAMESUFFIX= -pdo_odbc -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php55-pdo_pgsql/Makefile ============================================================================== --- head/databases/php55-pdo_pgsql/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php55-pdo_pgsql/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php55 PKGNAMESUFFIX= -pdo_pgsql -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php55-pdo_sqlite/Makefile ============================================================================== --- head/databases/php55-pdo_sqlite/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php55-pdo_sqlite/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php55 PKGNAMESUFFIX= -pdo_sqlite -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php55-redis/Makefile ============================================================================== --- head/databases/php55-redis/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php55-redis/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= PHP5-Extension for Redis LICENSE= PHP301 -BROKEN_powerpc64= Does not build - USE_GITHUB= yes GH_ACCOUNT= nicolasff GH_PROJECT= phpredis Modified: head/databases/php56-pdo_dblib/Makefile ============================================================================== --- head/databases/php56-pdo_dblib/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php56-pdo_dblib/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php56 PKGNAMESUFFIX= -pdo_dblib -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php56-pdo_mysql/Makefile ============================================================================== --- head/databases/php56-pdo_mysql/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php56-pdo_mysql/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php56 PKGNAMESUFFIX= -pdo_mysql -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php56-pdo_odbc/Makefile ============================================================================== --- head/databases/php56-pdo_odbc/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php56-pdo_odbc/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php56 PKGNAMESUFFIX= -pdo_odbc -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php56-pdo_pgsql/Makefile ============================================================================== --- head/databases/php56-pdo_pgsql/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php56-pdo_pgsql/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php56 PKGNAMESUFFIX= -pdo_pgsql -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php56-pdo_sqlite/Makefile ============================================================================== --- head/databases/php56-pdo_sqlite/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php56-pdo_sqlite/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -8,6 +8,4 @@ MASTERDIR= ${.CURDIR}/../../lang/php56 PKGNAMESUFFIX= -pdo_sqlite -BROKEN_powerpc64= Does not build - .include "${MASTERDIR}/Makefile" Modified: head/databases/php56-redis/Makefile ============================================================================== --- head/databases/php56-redis/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/php56-redis/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= PHP5 extension for Redis LICENSE= PHP301 -BROKEN_powerpc64= Does not build - USES= php:ext USE_PHP= session:build PHP_DEFAULT= 5.6 Modified: head/databases/phpminiadmin/Makefile ============================================================================== --- head/databases/phpminiadmin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/phpminiadmin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -16,8 +16,6 @@ COMMENT= Lightweight alternative to phpM LICENSE= GPLv2 MIT LICENSE_COMB= dual -BROKEN_powerpc64= Does not build - NO_WRKSUBDIR= yes NO_BUILD= yes USE_PHP= mysql pcre session Modified: head/databases/phpmyadmin/Makefile ============================================================================== --- head/databases/phpmyadmin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/phpmyadmin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= Set of PHP-scripts to manage My LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - USES= cpe php:web tar:xz CPE_PRODUCT= ${PORTNAME:tl} Modified: head/databases/qt4-mysql-plugin/Makefile ============================================================================== --- head/databases/qt4-mysql-plugin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/qt4-mysql-plugin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,6 +10,4 @@ USE_MYSQL= yes CXXFLAGS+= -I${LOCALBASE}/include/mysql LDFLAGS+= -L${LOCALBASE}/lib/mysql -BROKEN_powerpc64= Does not build - .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" Modified: head/databases/qt4-odbc-plugin/Makefile ============================================================================== --- head/databases/qt4-odbc-plugin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/qt4-odbc-plugin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,6 +10,4 @@ LIB_DEPENDS= libodbc.so:databases/unixOD LDFLAGS+= -lodbc -BROKEN_powerpc64= Does not build - .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" Modified: head/databases/qt4-pgsql-plugin/Makefile ============================================================================== --- head/databases/qt4-pgsql-plugin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/qt4-pgsql-plugin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -7,6 +7,4 @@ COMMENT= Qt PostgreSQL database plugin DB= psql USES= pgsql -BROKEN_powerpc64= Does not build - .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" Modified: head/databases/qt4-sqlite-plugin/Makefile ============================================================================== --- head/databases/qt4-sqlite-plugin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/qt4-sqlite-plugin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -7,6 +7,4 @@ COMMENT= Qt SQLite 2 database plugin DB= sqlite2 USES= sqlite:2 -BROKEN_powerpc64= Does not build - .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" Modified: head/databases/qt4-sqlite3-plugin/Makefile ============================================================================== --- head/databases/qt4-sqlite3-plugin/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/qt4-sqlite3-plugin/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -9,6 +9,4 @@ USES= sqlite:3 LDFLAGS+= -lsqlite3 -BROKEN_powerpc64= Does not build - .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" Modified: head/databases/sqlbuddy/Makefile ============================================================================== --- head/databases/sqlbuddy/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/sqlbuddy/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Web based MySQL administration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - USE_GITHUB= yes GH_ACCOUNT= deliciousbrains GH_TAGNAME= b2cdc2b Modified: head/databases/sqlitemanager/Makefile ============================================================================== --- head/databases/sqlitemanager/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/sqlitemanager/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Multilingual web based tool to LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - WRKSRC= ${WRKDIR}/SQLiteManager-${PORTVERSION} USES= dos2unix NO_BUILD= yes Modified: head/databases/vfront/Makefile ============================================================================== --- head/databases/vfront/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/databases/vfront/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= Simple frontend for database da LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/license -BROKEN_powerpc64= Does not build - NO_BUILD= yes NO_ARCH= yes PLIST= ${WRKDIR}/pkg-plist Modified: head/deskutils/myitcrm/Makefile ============================================================================== --- head/deskutils/myitcrm/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/deskutils/myitcrm/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= MyIT CRM is a CRM project desig LICENSE= GPLv3 -BROKEN_powerpc64= Does not build - USES= dos2unix zip USE_PHP= mysqli session xml NO_BUILD= yes Modified: head/deskutils/phpcollab/Makefile ============================================================================== --- head/deskutils/phpcollab/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/deskutils/phpcollab/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ MASTER_SITES= SF/phpcollab/final/${PORTV MAINTAINER= ports@FreeBSD.org COMMENT= PHPcollab is project management and collaboration over the internet -BROKEN_powerpc64= Does not build - USES= zip NO_BUILD= yes WRKSRC= ${WRKDIR}/${PORTNAME} Modified: head/deskutils/phpicalendar/Makefile ============================================================================== --- head/deskutils/phpicalendar/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/deskutils/phpicalendar/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -19,8 +19,6 @@ COMMENT= Webbased calendar with iCal sup LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= Does not build - USES= tar:bz2 NO_BUILD= yes NO_ARCH= yes Modified: head/deskutils/simplegroupware/Makefile ============================================================================== --- head/deskutils/simplegroupware/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/deskutils/simplegroupware/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ DISTNAME= SimpleGroupware_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Simple Groupware is an open source enterprise application -BROKEN_powerpc64= Does not build - NO_BUILD= yes USE_APACHE_RUN= 22 USE_MYSQL= yes Modified: head/deskutils/sugarcrm/Makefile ============================================================================== --- head/deskutils/sugarcrm/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/deskutils/sugarcrm/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ DISTNAME= SugarCE-${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Web based customer relationship management suite -BROKEN_powerpc64= Does not build - USES= zip USE_PHP= gd mysqli session pcre xml zlib mbstring curl imap spl posix \ json ctype zip tokenizer Modified: head/deskutils/surrealtodo/Makefile ============================================================================== --- head/deskutils/surrealtodo/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/deskutils/surrealtodo/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= surrealtodo_v${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Surreal ToDo is an AJAX enabled web 2.0 list manager -BROKEN_powerpc64= Does not build - USES= zip USE_PHP= mysql IGNORE_WITH_PHP= 70 Modified: head/devel/flyspray/Makefile ============================================================================== --- head/devel/flyspray/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/flyspray/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ MASTER_SITES= http://flyspray.org/packed MAINTAINER= ports@FreeBSD.org COMMENT= Simple, easy-to-use web based bug tracking system -BROKEN_powerpc64= Does not build - RUN_DEPENDS= ${LOCALBASE}/share/adodb/adodb.inc.php:databases/adodb USE_PHP= pcre session zlib xml gd Modified: head/devel/gdcm/Makefile ============================================================================== --- head/devel/gdcm/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/gdcm/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Grassroots DICOM library LICENSE= BSD3CLAUSE -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libopenjpeg.so:graphics/openjpeg15 \ libexpat.so:textproc/expat2 Modified: head/devel/guile-lib/Makefile ============================================================================== --- head/devel/guile-lib/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/guile-lib/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -9,8 +9,6 @@ MASTER_SITES= SAVANNAH MAINTAINER= ports@FreeBSD.org COMMENT= Repository of useful code written in Guile Scheme -BROKEN_powerpc64= Does not build - BUILD_DEPENDS= guile:lang/guile RUN_DEPENDS= guile:lang/guile Modified: head/devel/libgpkg/Makefile ============================================================================== --- head/devel/libgpkg/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/libgpkg/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= SQLite 3 extension of minimal O LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= does not build - OPTIONS_DEFINE= GEOS OPTIONS_DEFAULT=GEOS Modified: head/devel/libphutil/Makefile ============================================================================== --- head/devel/libphutil/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/libphutil/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= Collection of PHP utility class LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - PHP_DESTDIR= lib/php/libphutil USE_PHP= xml USE_GITHUB= yes Modified: head/devel/pear/Makefile ============================================================================== --- head/devel/pear/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/pear/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= PEAR framework for PHP LICENSE= PHP301 -BROKEN_powerpc64= Does not build - USES= cpe php:cli tar:bzip2 CPE_VENDOR= php NO_BUILD= yes Modified: head/devel/pecl-event/Makefile ============================================================================== --- head/devel/pecl-event/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/pecl-event/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -17,8 +17,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libevent.so:devel/libevent2 -BROKEN_powerpc64= does not build - USES= php:ext tar:tgz USE_OPENSSL= yes CONFIGURE_ARGS= --with-openssl-dir=${OPENSSLBASE} Modified: head/devel/pecl-json_post/Makefile ============================================================================== --- head/devel/pecl-json_post/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/pecl-json_post/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -15,8 +15,6 @@ COMMENT= JSON POST handler in PHP LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - USES= php:ext tar:tgz USE_PHP= json:build Modified: head/devel/pecl-msgpack/Makefile ============================================================================== --- head/devel/pecl-msgpack/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/pecl-msgpack/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= Provides API for communicating LICENSE= BSD3CLAUSE -BROKEN_powerpc64= Does not build - USES= php:ext tar:tgz IGNORE_WITH_PHP= 70 Modified: head/devel/phpsh/Makefile ============================================================================== --- head/devel/phpsh/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/phpsh/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= Interactive shell for PHP LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - USES= python tar:bzip2 USE_PYTHON= distutils autoplist USE_PHP= pcre posix tokenizer Modified: head/devel/poco/Makefile ============================================================================== --- head/devel/poco/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/poco/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= C++ libraries with a network/in LICENSE= BSL -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libpcre.so:devel/pcre \ libexpat.so:textproc/expat2 Modified: head/devel/qt4-script/Makefile ============================================================================== --- head/devel/qt4-script/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/qt4-script/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -9,8 +9,6 @@ PKGNAMEPREFIX= qt4- MAINTAINER= kde@FreeBSD.org COMMENT= Qt scripting module -BROKEN_powerpc64= Does not build - USES= pkgconfig USE_QT4= qmake_build moc_build corelib QT_DIST= yes Modified: head/devel/rth/Makefile ============================================================================== --- head/devel/rth/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/rth/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Web-based requirement, test, and bugtracking system -BROKEN_powerpc64= Does not build - USES= zip NO_BUILD= yes USE_PHP= mysqli gd Modified: head/devel/thrift-c_glib/Makefile ============================================================================== --- head/devel/thrift-c_glib/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/thrift-c_glib/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ DISTNAME= thrift-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= C glib interface to Thrift -BROKEN_powerpc64= Does not build - PKGNAMESUFFIX= -c_glib BUILDIR= ${WRKDIR}/${DISTNAME}/lib/c_glib Modified: head/devel/truc/Makefile ============================================================================== --- head/devel/truc/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/truc/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= jsi@jules.de COMMENT= Web-based tool for requirement and use case tracking -BROKEN_powerpc64= Does not build - NO_BUILD= yes USE_PHP= mysqli gd Modified: head/devel/websvn/Makefile ============================================================================== --- head/devel/websvn/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/devel/websvn/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= Subversion repository web front LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/license.txt -BROKEN_powerpc64= Does not build - USES= cpe USE_PHP= iconv pcre xml NO_BUILD= yes Modified: head/emulators/bochs/Makefile ============================================================================== --- head/emulators/bochs/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/emulators/bochs/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= IA-32 (x86) PC emulator that ru LICENSE= LGPL21 -BROKEN_powerpc64= Does not build - USES= gmake libtool:keepla pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_alsa_asoundlib_h=no \ Modified: head/finance/prestashop/Makefile ============================================================================== --- head/finance/prestashop/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/finance/prestashop/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= Open-Source e-Commerce Software for Web 2.0 -BROKEN_powerpc64= Does not build - USES= cpe shebangfix zip NO_BUILD= yes PRESTADIR= www/${PORTNAME} Modified: head/finance/weberp/Makefile ============================================================================== --- head/finance/weberp/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/finance/weberp/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Open-Source Web-Based ERP Syste LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - PORTSCOUT= skipv:3.12 USES= gettext shebangfix zip Modified: head/ftp/net2ftp/Makefile ============================================================================== --- head/ftp/net2ftp/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/ftp/net2ftp/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Web-based FTP client written in LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - USES= zip IGNORE_WITH_PHP= 70 NO_BUILD= YES Modified: head/ftp/phpwebftp/Makefile ============================================================================== --- head/ftp/phpwebftp/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/ftp/phpwebftp/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Set of PHP-scripts to manage FT LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - USES= zip NO_BUILD= yes NO_ARCH= yes Modified: head/games/angband/Makefile ============================================================================== --- head/games/angband/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/games/angband/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= Rogue-like game with color, X11 LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - OPTIONS_DEFINE= SDL X11 DOCS OPTIONS_DEFAULT=X11 Modified: head/games/crafty-tablebase-no-pawn/Makefile ============================================================================== --- head/games/crafty-tablebase-no-pawn/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/games/crafty-tablebase-no-pawn/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -45,8 +45,6 @@ EXTRACT_ONLY= MAINTAINER= ports@FreeBSD.org COMMENT= These are the tablebases for crafty, minus the pawn tbs -BROKEN_powerpc64= Does not build - RUN_DEPENDS= crafty:games/crafty NO_BUILD= yes Modified: head/german/wordpress/Makefile ============================================================================== --- head/german/wordpress/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/german/wordpress/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/license.txt -BROKEN_powerpc64= Does not build - CONFLICTS_INSTALL= wordpress-[0-9].* ja-wordpress-[0-9].* ru-wordpress-[0-9].* NO_ARCH= yes Modified: head/graphics/jpgraph2/Makefile ============================================================================== --- head/graphics/jpgraph2/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/graphics/jpgraph2/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -17,8 +17,6 @@ LICENSE_PERMS= dist-mirror dist-sell pkg RUN_DEPENDS= ${LOCALBASE}/share/fonts/dejavu/DejaVuSans.ttf:x11-fonts/dejavu -BROKEN_powerpc64= Does not build - USES= php tar:bzip2 USE_PHP= gd NO_ARCH= yes Modified: head/graphics/maim/Makefile ============================================================================== --- head/graphics/maim/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/graphics/maim/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ COMMENT= Screenshot utility with perform LICENSE= GPLv3 -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libImlib2.so:graphics/imlib2 USE_GITHUB= yes Modified: head/graphics/pngquant/Makefile ============================================================================== --- head/graphics/pngquant/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/graphics/pngquant/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= Converts 32-bit RGBA PNGs into LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libpng.so:graphics/png WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} Modified: head/graphics/sdump/Makefile ============================================================================== --- head/graphics/sdump/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/graphics/sdump/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= Sixel image dumper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libpng.so:graphics/png \ libsixel.so:graphics/libsixel Modified: head/japanese/skkinput3/Makefile ============================================================================== --- head/japanese/skkinput3/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/japanese/skkinput3/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= skkinput-${PORTVERSION} MAINTAINER= koma2@lovepeers.org COMMENT= SKK-like Japanese input method for X11 -BROKEN_powerpc64= Does not build - USES= imake USE_GCC= any USE_CSTD= gnu89 Modified: head/japanese/wordpress/Makefile ============================================================================== --- head/japanese/wordpress/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/japanese/wordpress/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/license.txt -BROKEN_powerpc64= Does not build - CONFLICTS_INSTALL= wordpress-[0-9].* de-wordpress-[0-9].* ru-wordpress-[0-9].* NO_ARCH= yes Modified: head/java/intellij-pty4j/Makefile ============================================================================== --- head/java/intellij-pty4j/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/java/intellij-pty4j/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= FreeBSD-compatible replacement LICENSE= EPL LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= Does not build - USE_GITHUB= yes GH_ACCOUNT= idea4bsd GH_PROJECT= pty4j Modified: head/lang/php70/Makefile ============================================================================== --- head/lang/php70/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/lang/php70/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= PHP Scripting Language LICENSE= PHP301 -BROKEN_powerpc64= Does not build - USES+= tar:xz cpe CPE_PRODUCT= php NO_OPTIONS_SORT=yes Modified: head/mail/dracmail/Makefile ============================================================================== --- head/mail/dracmail/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/mail/dracmail/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ DISTNAME= dracMail-${PORTVERSION}_releas MAINTAINER= ports@FreeBSD.org COMMENT= DracMail is a webmail interface built using PHP -BROKEN_powerpc64= Does not build - USE_PHP+= mysql imap dom tidy iconv mbstring USE_MYSQL= yes IGNORE_WITH_PHP= 70 Modified: head/mail/nocc/Makefile ============================================================================== --- head/mail/nocc/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/mail/nocc/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -9,8 +9,6 @@ MASTER_SITES= SF/${PORTNAME}/NOCC/${PORT MAINTAINER= ale@FreeBSD.org COMMENT= Webmail system which access POP3 and IMAP mail servers -BROKEN_powerpc64= Does not build - OPTIONS_DEFINE= DOCS USE_PHP= ctype iconv imap mbstring pcre session Modified: head/mail/pecl-mailparse/Makefile ============================================================================== --- head/mail/pecl-mailparse/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/mail/pecl-mailparse/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= PECL extension to create and de LICENSE= PHP202 -BROKEN_powerpc64= Does not build - USES= php:ext tar:tgz USE_PHP= mbstring:build IGNORE_WITH_PHP= 70 Modified: head/mail/sgwi/Makefile ============================================================================== --- head/mail/sgwi/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/mail/sgwi/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= PHP web interface to SQLGrey LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - USES= tar:tgz NO_BUILD= yes SUB_FILES+= pkg-message pkg-install Modified: head/mail/squirrelmail/Makefile ============================================================================== --- head/mail/squirrelmail/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/mail/squirrelmail/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= Webmail system which accesses m LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - # This snapshot tarball contains php 5.4 and 5.5 compatibility # patches, but the only guaranteed compatibility is with php 5.3. # If you encounter problems, downgrade to php 5.3. Modified: head/math/gap/Makefile ============================================================================== --- head/math/gap/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/math/gap/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= GAP is a system for computation LIB_DEPENDS= libgmp.so:math/gmp -BROKEN_powerpc64= Does not build - USES= gmake shebangfix tar:bzip2 SHEBANG_FILES= configure \ pkg/GAPDoc-*/*/clean \ Modified: head/net-mgmt/ezradius/Makefile ============================================================================== --- head/net-mgmt/ezradius/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/ezradius/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -13,8 +13,6 @@ COMMENT= EzRADIUS is FreeRADIUS and Chil LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - RUN_DEPENDS= radiusd:net/freeradius2 WRKSRC= ${WRKDIR}/${PORTNAME}-intl Modified: head/net-mgmt/ipplan/Makefile ============================================================================== --- head/net-mgmt/ipplan/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/ipplan/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -10,8 +10,6 @@ MASTER_SITES= SF/iptrack/${PORTNAME}/Rel MAINTAINER= ports@FreeBSD.org COMMENT= IP address management and tracking -BROKEN_powerpc64= Does not build - RUN_DEPENDS= nmap:security/nmap USES= perl5 shebangfix Modified: head/net-mgmt/klg/Makefile ============================================================================== --- head/net-mgmt/klg/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/klg/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= PHP-based looking glass for Cis LICENSE= BSD3CLAUSE -BROKEN_powerpc64= Does not build - USES= tar:txz USE_MYSQL= yes USE_PHP= mysql pcre sockets xml Modified: head/net-mgmt/nagios4/Makefile ============================================================================== --- head/net-mgmt/nagios4/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/nagios4/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= Powerful network monitoring sys LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libltdl.so:devel/libltdl \ libpng16.so:graphics/png \ libgd.so:graphics/gd Modified: head/net-mgmt/nedi/Makefile ============================================================================== --- head/net-mgmt/nedi/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/nedi/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -12,8 +12,6 @@ COMMENT= Network discovery and monitorin LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - RUN_DEPENDS= p5-Net-SNMP>=0:net-mgmt/p5-Net-SNMP \ p5-Net-Telnet-Cisco>=0:net-mgmt/p5-Telnet-Cisco \ p5-Algorithm-Diff>=0:devel/p5-Algorithm-Diff \ Modified: head/net-mgmt/ocsinventory-ng/Makefile ============================================================================== --- head/net-mgmt/ocsinventory-ng/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/ocsinventory-ng/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= Open Computer and Software Inve LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - RUN_DEPENDS= p5-XML-Simple>=0:textproc/p5-XML-Simple \ p5-Compress-Raw-Zlib>=0:archivers/p5-Compress-Raw-Zlib \ p5-DBI>=0:databases/p5-DBI \ Modified: head/net-mgmt/phpip/Makefile ============================================================================== --- head/net-mgmt/phpip/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/phpip/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -14,8 +14,6 @@ COMMENT= Complete IPv4 IPAM (IP address LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= Does not build - SNAPSHOT= 200611081420 NO_BUILD= yes USE_PHP= mysql Modified: head/net-mgmt/sx/Makefile ============================================================================== --- head/net-mgmt/sx/Makefile Thu Sep 15 01:35:58 2016 (r422174) +++ head/net-mgmt/sx/Makefile Thu Sep 15 01:41:28 2016 (r422175) @@ -11,8 +11,6 @@ COMMENT= Skylable Sx is a reliable, full LICENSE= GPLv2 -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libcurl.so:ftp/curl \ libfcgi.so:www/fcgi \ libyajl.so:devel/yajl \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Thu Sep 15 02:02:50 2016 Return-Path: Delivered-To: svn-ports-head@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 AAD17BDB8DD; Thu, 15 Sep 2016 02:02:50 +0000 (UTC) (envelope-from adamw@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 81D6919CC; Thu, 15 Sep 2016 02:02:50 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F22nZm033454; Thu, 15 Sep 2016 02:02:49 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F22mgx033444; Thu, 15 Sep 2016 02:02:48 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201609150202.u8F22mgx033444@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 15 Sep 2016 02:02:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422176 - in head/converters: p5-Sereal p5-Sereal-Decoder p5-Sereal-Encoder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 02:02:50 -0000 Author: adamw Date: Thu Sep 15 02:02:48 2016 New Revision: 422176 URL: https://svnweb.freebsd.org/changeset/ports/422176 Log: Update p5-Sereal and friends to 3.015. While here, a number of Makefile tweaks, including a little more info in the descrs, meta::cpan instead of cpan for WWW, and a number of formatting tweaks. Also, given that p5-Sereal, -Decoder, and -Encoder all have the same tests, it's really no benefit to making -Decoder and -Encoder register TEST_DEPENDS on each other. Tests for just that module work for 'make test', and the full suite can be run by doing 'make test' in the main p5-Sereal port. Also, take maintainership. This is the third PR that's timed out, and I have sent multiple direct emails with each one. kuriyama's last commit to this port was nearly 2 years ago. I am considering this port abandoned. I'd like to thank kuriyama for creating these ports and looking after them for over 3 and a half years! PR: 212316 Approved by: maintainer timeout Modified: head/converters/p5-Sereal-Decoder/Makefile head/converters/p5-Sereal-Decoder/distinfo head/converters/p5-Sereal-Decoder/pkg-descr head/converters/p5-Sereal-Encoder/Makefile head/converters/p5-Sereal-Encoder/distinfo head/converters/p5-Sereal-Encoder/pkg-descr head/converters/p5-Sereal/Makefile head/converters/p5-Sereal/distinfo head/converters/p5-Sereal/pkg-descr Modified: head/converters/p5-Sereal-Decoder/Makefile ============================================================================== --- head/converters/p5-Sereal-Decoder/Makefile Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal-Decoder/Makefile Thu Sep 15 02:02:48 2016 (r422176) @@ -1,22 +1,20 @@ # $FreeBSD$ PORTNAME= Sereal-Decoder -PORTVERSION= 3.014 +PORTVERSION= 3.015 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:YVES PKGNAMEPREFIX= p5- -MAINTAINER= kuriyama@FreeBSD.org -COMMENT= Perl extension for fast, compact, powerful binary deserialization +MAINTAINER= adamw@FreeBSD.org +COMMENT= Perl module for fast, powerful binary deserialization (decoder) LICENSE= ART10 GPLv1 LICENSE_COMB= dual -TEST_DEPENDS= \ - p5-Sereal-Encoder>=3.001:converters/p5-Sereal-Encoder \ - p5-Test-LongString>0:devel/p5-Test-LongString \ - p5-Test-Warn>=0:devel/p5-Test-Warn +TEST_DEPENDS= p5-Test-LongString>0:devel/p5-Test-LongString \ + p5-Test-Warn>=0:devel/p5-Test-Warn USES= perl5 USE_PERL5= configure Modified: head/converters/p5-Sereal-Decoder/distinfo ============================================================================== --- head/converters/p5-Sereal-Decoder/distinfo Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal-Decoder/distinfo Thu Sep 15 02:02:48 2016 (r422176) @@ -1,2 +1,3 @@ -SHA256 (Sereal-Decoder-3.014.tar.gz) = 123cf353865549f7c9e87905c401f68e446fd201a7369d00031122db269dc878 -SIZE (Sereal-Decoder-3.014.tar.gz) = 369546 +TIMESTAMP = 1472755452 +SHA256 (Sereal-Decoder-3.015.tar.gz) = 235f68ea0354b80a5d8aa4d3ade312dfa100f9f3de54c101f0367eb691385b47 +SIZE (Sereal-Decoder-3.015.tar.gz) = 373762 Modified: head/converters/p5-Sereal-Decoder/pkg-descr ============================================================================== --- head/converters/p5-Sereal-Decoder/pkg-descr Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal-Decoder/pkg-descr Thu Sep 15 02:02:48 2016 (r422176) @@ -1,7 +1,7 @@ This library implements a deserializer for an efficient, -compact-output, and feature-rich binary protocol called Sereal. Its -sister module Sereal::Encoder implements an encoder for this format. -The two are released separately to allow for independent and safer -upgrading. +compact-output, and feature-rich binary protocol called Sereal. Its +sister module Sereal::Encoder (converters/p5-Sereal-Encoder) implements +an encoder for this format. The two are released separately to allow for +independent and safer upgrading. -WWW: http://search.cpan.org/dist/Sereal-Decoder/ +WWW: https://metacpan.org/pod/Sereal::Decoder Modified: head/converters/p5-Sereal-Encoder/Makefile ============================================================================== --- head/converters/p5-Sereal-Encoder/Makefile Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal-Encoder/Makefile Thu Sep 15 02:02:48 2016 (r422176) @@ -1,23 +1,21 @@ # $FreeBSD$ PORTNAME= Sereal-Encoder -PORTVERSION= 3.014 +PORTVERSION= 3.015 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:YVES PKGNAMEPREFIX= p5- -MAINTAINER= kuriyama@FreeBSD.org -COMMENT= Perl extension for fast, compact, powerful binary serialization +MAINTAINER= adamw@FreeBSD.org +COMMENT= Perl module for fast, powerful binary serialization (encoder) LICENSE= ART10 GPLv1 LICENSE_COMB= dual -TEST_DEPENDS= \ - p5-Test-Deep>0:devel/p5-Test-Deep \ - p5-Test-LongString>0:devel/p5-Test-LongString \ - p5-Test-Warn>0:devel/p5-Test-Warn \ - p5-Sereal-Decoder>=3.00:converters/p5-Sereal-Decoder +TEST_DEPENDS= p5-Test-Deep>0:devel/p5-Test-Deep \ + p5-Test-LongString>0:devel/p5-Test-LongString \ + p5-Test-Warn>0:devel/p5-Test-Warn USES= perl5 USE_PERL5= configure Modified: head/converters/p5-Sereal-Encoder/distinfo ============================================================================== --- head/converters/p5-Sereal-Encoder/distinfo Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal-Encoder/distinfo Thu Sep 15 02:02:48 2016 (r422176) @@ -1,2 +1,3 @@ -SHA256 (Sereal-Encoder-3.014.tar.gz) = b8f43b56b538ea4fb16618beb5c1b70b645139c3d7da4e18c2fb1e93b454a34d -SIZE (Sereal-Encoder-3.014.tar.gz) = 377995 +TIMESTAMP = 1472755441 +SHA256 (Sereal-Encoder-3.015.tar.gz) = b7b2eb1dac6489308aa2c4dfa3ac31d3d9139bc1a126e4741d11991531440855 +SIZE (Sereal-Encoder-3.015.tar.gz) = 383347 Modified: head/converters/p5-Sereal-Encoder/pkg-descr ============================================================================== --- head/converters/p5-Sereal-Encoder/pkg-descr Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal-Encoder/pkg-descr Thu Sep 15 02:02:48 2016 (r422176) @@ -1,6 +1,7 @@ This library implements an efficient, compact-output, and feature-rich serializer using a binary protocol called Sereal. Its sister module -Sereal::Decoder implements a decoder for this format. The two are -released separately to allow for independent and safer upgrading. +Sereal::Decoder (converts/p5-Sereal-Decoder) implements a decoder for +this format. The two are released separately to allow for independent +and safer upgrading. -WWW: http://search.cpan.org/dist/Sereal-Encoder/ +WWW: https://metacpan.org/pod/Sereal::Encoder Modified: head/converters/p5-Sereal/Makefile ============================================================================== --- head/converters/p5-Sereal/Makefile Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal/Makefile Thu Sep 15 02:02:48 2016 (r422176) @@ -1,29 +1,27 @@ # $FreeBSD$ PORTNAME= Sereal -PORTVERSION= 3.014 +PORTVERSION= 3.015 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:YVES PKGNAMEPREFIX= p5- -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= adamw@FreeBSD.org COMMENT= Perl extension for fast, compact, powerful binary (de-)serialization LICENSE= ART10 GPLv1 LICENSE_COMB= dual -RUN_DEPENDS= \ - p5-Sereal-Decoder>=3.007:converters/p5-Sereal-Decoder \ - p5-Sereal-Encoder>=3.007:converters/p5-Sereal-Encoder -BUILD_DEPENDS:= ${RUN_DEPENDS} -TEST_DEPENDS= \ - p5-Test-Deep>=0:devel/p5-Test-Deep \ - p5-Test-LongString>=0:devel/p5-Test-LongString \ - p5-Test-Warn>=0:devel/p5-Test-Warn +BUILD_DEPENDS= p5-Sereal-Decoder>=${PORTVERSION}:converters/p5-Sereal-Decoder \ + p5-Sereal-Encoder>=${PORTVERSION}:converters/p5-Sereal-Encoder +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Test-LongString>=0:devel/p5-Test-LongString \ + p5-Test-Warn>=0:devel/p5-Test-Warn USES= perl5 USE_PERL5= configure -NO_ARCH= YES +NO_ARCH= yes .include Modified: head/converters/p5-Sereal/distinfo ============================================================================== --- head/converters/p5-Sereal/distinfo Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal/distinfo Thu Sep 15 02:02:48 2016 (r422176) @@ -1,2 +1,3 @@ -SHA256 (Sereal-3.014.tar.gz) = 7337e5ad5706ae87d7ca1191f58969df840a95d4f4e74b6bda232b67c1817f0e -SIZE (Sereal-3.014.tar.gz) = 192185 +TIMESTAMP = 1472755429 +SHA256 (Sereal-3.015.tar.gz) = e6d803c8f3b2c8cb59afe52806283a2381084de1054ccbe7e30f05dc7465c4a9 +SIZE (Sereal-3.015.tar.gz) = 192780 Modified: head/converters/p5-Sereal/pkg-descr ============================================================================== --- head/converters/p5-Sereal/pkg-descr Thu Sep 15 01:41:28 2016 (r422175) +++ head/converters/p5-Sereal/pkg-descr Thu Sep 15 02:02:48 2016 (r422176) @@ -4,4 +4,10 @@ Sereal::Encoder module, the Perl decoder Sereal::Decoder. They are distributed separately to allow for safe upgrading without downtime. -WWW: http://search.cpan.org/dist/Sereal/ +The encoder and decoder modules are available as these two ports: + - converters/p5-Sereal-Encoder + - converters/p5-Sereal-Decoder + +This port will install both of them. + +WWW: https://metacpan.org/pod/Sereal From owner-svn-ports-head@freebsd.org Thu Sep 15 05:04:56 2016 Return-Path: Delivered-To: svn-ports-head@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 75B68BDB768; Thu, 15 Sep 2016 05:04:56 +0000 (UTC) (envelope-from antoine@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 2AE6B1F9D; Thu, 15 Sep 2016 05:04:56 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F54tWU000540; Thu, 15 Sep 2016 05:04:55 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F54tF1000537; Thu, 15 Sep 2016 05:04:55 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609150504.u8F54tF1000537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 15 Sep 2016 05:04:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422177 - head/print/texinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 05:04:56 -0000 Author: antoine Date: Thu Sep 15 05:04:54 2016 New Revision: 422177 URL: https://svnweb.freebsd.org/changeset/ports/422177 Log: Revert texinfo upgrade, it was not tested With hat: portmgr Modified: head/print/texinfo/Makefile head/print/texinfo/distinfo head/print/texinfo/pkg-plist Modified: head/print/texinfo/Makefile ============================================================================== --- head/print/texinfo/Makefile Thu Sep 15 02:02:48 2016 (r422176) +++ head/print/texinfo/Makefile Thu Sep 15 05:04:54 2016 (r422177) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= texinfo -PORTVERSION= 6.3.20160911 +PORTVERSION= 6.1.20160425 +PORTEPOCH= 1 CATEGORIES= print MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/texinfo/${PORTVERSION:E}/ \ http://ftp.stack.nl/pub/users/johans/texinfo/${PORTVERSION:E}/ \ Modified: head/print/texinfo/distinfo ============================================================================== --- head/print/texinfo/distinfo Thu Sep 15 02:02:48 2016 (r422176) +++ head/print/texinfo/distinfo Thu Sep 15 05:04:54 2016 (r422177) @@ -1,9 +1,8 @@ -TIMESTAMP = 1473780269 -SHA256 (texinfo/6.3.20160911/texinfo-6.3.tar.xz) = 246cf3ffa54985118ec2eea2b8d0c71b92114efe6282c2ae90d65029db4cf93a -SIZE (texinfo/6.3.20160911/texinfo-6.3.tar.xz) = 4468048 -SHA256 (texinfo/6.3.20160911/htmlxref.cnf) = d77343dfec47d38a3f029bd42df6ca08e2701f8925be9dffdb07c53a9a0b292d -SIZE (texinfo/6.3.20160911/htmlxref.cnf) = 20137 -SHA256 (texinfo/6.3.20160911/texinfo.tex) = 8f90b32fbe7dd1c225a16d75b19438570f01f8ad3c897e22ff4167766b675d4b -SIZE (texinfo/6.3.20160911/texinfo.tex) = 382999 -SHA256 (texinfo/6.3.20160911/texi2dvi) = 9bec1856dc5a3792d15f7ac3bde9a45eb525430bafdf23ebfd4de6264b6d01e0 -SIZE (texinfo/6.3.20160911/texi2dvi) = 61185 +SHA256 (texinfo/6.1.20160425/texinfo-6.1.tar.xz) = ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 +SIZE (texinfo/6.1.20160425/texinfo-6.1.tar.xz) = 4520376 +SHA256 (texinfo/6.1.20160425/htmlxref.cnf) = b94aace151102c0e5cc49be570b79b513fcfbb54aaff55bd640c6d00fa56968c +SIZE (texinfo/6.1.20160425/htmlxref.cnf) = 20137 +SHA256 (texinfo/6.1.20160425/texinfo.tex) = e829e69d206bfccd1842940e7d3482750b4be975218b2989d15fa355ab544cec +SIZE (texinfo/6.1.20160425/texinfo.tex) = 379272 +SHA256 (texinfo/6.1.20160425/texi2dvi) = 08dee9983848f02fa259413225abce63ec5d70efc8813daeeb15d14287598269 +SIZE (texinfo/6.1.20160425/texi2dvi) = 61068 Modified: head/print/texinfo/pkg-plist ============================================================================== --- head/print/texinfo/pkg-plist Thu Sep 15 02:02:48 2016 (r422176) +++ head/print/texinfo/pkg-plist Thu Sep 15 05:04:54 2016 (r422177) @@ -20,15 +20,11 @@ man/man5/info.5.gz man/man5/texinfo.5.gz %%NLS%%share/locale/ca.us-ascii/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/ca/LC_MESSAGES/texinfo.mo -%%NLS%%share/locale/ca/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/cs/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/da/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/de.us-ascii/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/de/LC_MESSAGES/texinfo.mo -%%NLS%%share/locale/de/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/de_AT/LC_MESSAGES/texinfo.mo -%%NLS%%share/locale/el/LC_MESSAGES/texinfo.mo -%%NLS%%share/locale/el/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/eo/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/eo/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/es/LC_MESSAGES/texinfo.mo @@ -37,7 +33,6 @@ man/man5/texinfo.5.gz %%NLS%%share/locale/fr/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/he/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/hr/LC_MESSAGES/texinfo.mo -%%NLS%%share/locale/hr/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/hu/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/hu/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/id/LC_MESSAGES/texinfo.mo @@ -51,10 +46,8 @@ man/man5/texinfo.5.gz %%NLS%%share/locale/pl/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/pl/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/pt.us-ascii/LC_MESSAGES/texinfo_document.mo -%%NLS%%share/locale/pt/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/pt_BR.us-ascii/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/texinfo.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/texinfo_document.mo %%NLS%%share/locale/ro/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/ru/LC_MESSAGES/texinfo.mo %%NLS%%share/locale/rw/LC_MESSAGES/texinfo.mo @@ -443,7 +436,6 @@ man/man5/texinfo.5.gz %%TEXMF%%/tex/texinfo/txi-hu.tex %%TEXMF%%/tex/texinfo/txi-is.tex %%TEXMF%%/tex/texinfo/txi-it.tex -%%TEXMF%%/tex/texinfo/txi-ja.tex %%TEXMF%%/tex/texinfo/txi-nb.tex %%TEXMF%%/tex/texinfo/txi-nl.tex %%TEXMF%%/tex/texinfo/txi-nn.tex From owner-svn-ports-head@freebsd.org Thu Sep 15 05:06:46 2016 Return-Path: Delivered-To: svn-ports-head@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 60A88BDB83F; Thu, 15 Sep 2016 05:06:46 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-it0-x232.google.com (mail-it0-x232.google.com [IPv6:2607:f8b0:4001:c0b::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2ADA810C4; Thu, 15 Sep 2016 05:06:46 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-it0-x232.google.com with SMTP id 186so57559100itf.0; Wed, 14 Sep 2016 22:06:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=p6iyCf3ZqUG+F6UAxRm/WB2yxbMMRjoV4XAZR9XqFZI=; b=GWPxsEI6BAA0w2Bxrtl4MhoY7OGCYKltVTBjfZPE/G9T0qR81Z7O25Cw3rrVrg81kd bYl74fg51Wdu4B9bXtJAfHRQDwA2jKkzgoY1KpMCk1yrHMSyRilYv+0DgoN27oIf8zAN slTy7n+anPCa066u/BwKwVeSe5QWHw+fBUvS+N8Jc52v2XAmLyMvozCibhWUNzBa0p1C 8INMb+P+cZW87falLiDyLy82c/jxY85Y0m834XHyRgUmLnu+PXgJiUVyP7OB8UkwalBQ gXrIFcVtjdZeS7wsb3fmtrt7HcDwMIVXEE6YPyT0/2TDaUpTBuJatzFSpa87D3QQdLHd q3EQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=p6iyCf3ZqUG+F6UAxRm/WB2yxbMMRjoV4XAZR9XqFZI=; b=Conq2+fsN5qI60QInFWna28FBIapB1K1Tcf4FWb4vni2XBS+hpVNBWQ6oiwZDmDSS+ DgC1q3p1QuItxmlkuulv891ytLxuKHtm2VKsiAU4gVZSurOK61O65staVVvJjb+j2DqL 7CCGrFWhx3qgmb3ji+cCjLsu3QDuwvuH7BIN+CpSTl3B+uGEzzhR6R1q4pKraBpSck3k nOzzcxHhdqXm++DY/igcWFJPNDgNDwbEA9ggvfzJH3vHkFLpYvWG9dskcY0g9+p0pX2C 0ydJJdIA/AiIoHO3sexogcMs1N+fcG9ZyyfGWpGEXP2pozr/5bsMW5PRsrddDB0fQyMH dE1w== X-Gm-Message-State: AE9vXwNj9YwKv7MAHWXq/1mwY3Wcg6xU5IwnT/2UJnmF47tfAMaDSDGHsK2FJDvqBMGUjEw2qa2ZZqTlJyYPIA== X-Received: by 10.107.32.82 with SMTP id g79mr13052617iog.136.1473916005239; Wed, 14 Sep 2016 22:06:45 -0700 (PDT) MIME-Version: 1.0 Sender: antoine.brodin.freebsd@gmail.com Received: by 10.107.55.68 with HTTP; Wed, 14 Sep 2016 22:06:44 -0700 (PDT) In-Reply-To: <201609131532.u8DFWkYv026742@repo.freebsd.org> References: <201609131532.u8DFWkYv026742@repo.freebsd.org> From: Antoine Brodin Date: Thu, 15 Sep 2016 07:06:44 +0200 X-Google-Sender-Auth: 35-slfhXCgeYBrP-HRAm7KFR0fo Message-ID: Subject: Re: svn commit: r422018 - head/print/texinfo To: Johan van Selst Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 05:06:46 -0000 On Tue, Sep 13, 2016 at 5:32 PM, Johan van Selst wrote: > Author: johans > Date: Tue Sep 13 15:32:46 2016 > New Revision: 422018 > URL: https://svnweb.freebsd.org/changeset/ports/422018 > > Log: > Update to Texinfo 6.3 > http://lists.gnu.org/archive/html/info-gnu/2016-09/msg00004.html Hi, I reverted this upgrade as it breaks at least lang/gcc, please request an exp-run. Cheers, Antoine From owner-svn-ports-head@freebsd.org Thu Sep 15 05:11:57 2016 Return-Path: Delivered-To: svn-ports-head@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 6CB01BDBAA8; Thu, 15 Sep 2016 05:11:57 +0000 (UTC) (envelope-from antoine@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 3F62E175F; Thu, 15 Sep 2016 05:11:57 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F5Buv6002925; Thu, 15 Sep 2016 05:11:56 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F5BuPW002902; Thu, 15 Sep 2016 05:11:56 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609150511.u8F5BuPW002902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 15 Sep 2016 05:11:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422178 - head/audio/clementine-player X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 05:11:57 -0000 Author: antoine Date: Thu Sep 15 05:11:56 2016 New Revision: 422178 URL: https://svnweb.freebsd.org/changeset/ports/422178 Log: Do not include bsd.port.pre.mk twice MFH: 2016Q3 Modified: head/audio/clementine-player/Makefile Modified: head/audio/clementine-player/Makefile ============================================================================== --- head/audio/clementine-player/Makefile Thu Sep 15 05:04:54 2016 (r422177) +++ head/audio/clementine-player/Makefile Thu Sep 15 05:11:56 2016 (r422178) @@ -204,4 +204,4 @@ WIIMOTEDEV_CMAKE_OFF= -DENABLE_WIIMOTEDE CXXFLAGS+= -Wno-undefined-var-template .endif -.include +.include From owner-svn-ports-head@freebsd.org Thu Sep 15 07:46:57 2016 Return-Path: Delivered-To: svn-ports-head@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 19BCEBDB25A; Thu, 15 Sep 2016 07:46:57 +0000 (UTC) (envelope-from matthew@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 C59381EFC; Thu, 15 Sep 2016 07:46:56 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F7kust060024; Thu, 15 Sep 2016 07:46:56 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F7ktCn060022; Thu, 15 Sep 2016 07:46:55 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201609150746.u8F7ktCn060022@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 15 Sep 2016 07:46:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422180 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 07:46:57 -0000 Author: matthew Date: Thu Sep 15 07:46:55 2016 New Revision: 422180 URL: https://svnweb.freebsd.org/changeset/ports/422180 Log: Document security problems in dropbear PR: 212699 Submitted by: pkubaj@anongoth.pl Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Sep 15 05:12:40 2016 (r422179) +++ head/security/vuxml/vuln.xml Thu Sep 15 07:46:55 2016 (r422180) @@ -58,6 +58,48 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + dropbear -- multiple vulnerabilities + + + dropbear + 2016.74 + + + + +

Matt Johnston reports:

+
+

If specific usernames including "%" symbols can be created on a system + (validated by getpwnam()) then an attacker could run arbitrary code as root + when connecting to Dropbear server. + + A dbclient user who can control username or host arguments could potentially + run arbitrary code as the dbclient user. This could be a problem if scripts + or webpages pass untrusted input to the dbclient program.

+

dropbearconvert import of OpenSSH keys could run arbitrary code as + the local dropbearconvert user when parsing malicious key files.

+

dbclient could run arbitrary code as the local dbclient user if + particular -m or -c arguments are provided. This could be an issue where + dbclient is used in scripts.

+

dbclient or dropbear server could expose process memory to the + running user if compiled with DEBUG_TRACE and running with -v

+
+ +
+ + "http://www.openwall.com/lists/oss-security/2016/09/15/2" + CVE-2016-7406 + CVE-2016-7407 + CVE-2016-7408 + CVE-2016-7409 + + + 2016-07-12 + 2016-09-15 + +
+ h2o -- fix DoS attack vector From owner-svn-ports-head@freebsd.org Thu Sep 15 08:01:43 2016 Return-Path: Delivered-To: svn-ports-head@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 84123BDB84F; Thu, 15 Sep 2016 08:01:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 234471745; Thu, 15 Sep 2016 08:01:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id BC29EBDD8D; Thu, 15 Sep 2016 10:01:39 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id A89ACBDD68; Thu, 15 Sep 2016 10:01:39 +0200 (CEST) Subject: Re: svn commit: r422151 - head/devel/php70-APCu To: Guido Falsi , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> Cc: portmgr@FreeBSD.org From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Thu, 15 Sep 2016 10:01:37 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="EESBDhrfL79rfwK7PlASHWgCbCSd6ThFv" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 08:01:43 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --EESBDhrfL79rfwK7PlASHWgCbCSd6ThFv Content-Type: multipart/mixed; boundary="8tkwpaDj7VvdcrDip11Vis92rdmktd2hM"; protected-headers="v1" From: Mathieu Arnold To: Guido Falsi , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Cc: portmgr@FreeBSD.org Message-ID: Subject: Re: svn commit: r422151 - head/devel/php70-APCu References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> In-Reply-To: <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> --8tkwpaDj7VvdcrDip11Vis92rdmktd2hM Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 15/09/2016 =C3=A0 01:29, Guido Falsi a =C3=A9crit : > On 09/15/16 01:22, Guido Falsi wrote: > >> Meybe some cleaner way to allow php7 parts to be built on the cluster >> should be made available, although I don't know what that can be right= now. >> > For example, would such definition be more acceptable if limited to > PACKAGE_BUILDING? The problem I have with its usage directly in ports is that it is supposed to be a global user settable variable, saying "I want php XX" (using DEFAULT_VERSIONS+=3Dphp=3DXX in /etc/make.conf). For this port, though, I may have over-reacted, it is named php70- and can only work with 7.0. Now that I have slept on it, I would say leave it like that, with PHP_DEFAULT set. It is the only case where setting it is acceptable. For example, it is not acceptable in a pecl-foo port, because the user will be left to wonder why running "pkg install pecl-foo" removed his php 5.6 installation. --=20 Mathieu Arnold --8tkwpaDj7VvdcrDip11Vis92rdmktd2hM-- --EESBDhrfL79rfwK7PlASHWgCbCSd6ThFv Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2lVjXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IdrwQALQdgRx6y6iGYqCIfKpvUAll Yt54N0SEtlhE7sIgtf0BV8YDUaMLvS1g+76jt75+kzE078x6JnfkdxG+JTvD+iUj tOju6v2JDJZ8x2ufYaqpvZcQjOIOdKFiAxdfgsZpyIrYvoBFxXGczVlBIb5v3De4 Kwuca7n4K4Uxw4TXSdfGSFwrlbrXlh32alIR+3hKAK0wTZbETuiwl2OOPVSc2+fL zYlpcRSci83SnUCqCjmAr1e81iUUERy08LOqD+8IAF/uILIb6SQ2yeBTUZeWtT9s 47obeA3u1zuXriZOLPTnAv69tyfiCGoAJBjDn7sp0FZkkU5TyPWUGIv4xEEneskp 3edJVz66Ynm4WJGffLtp2WRTi1nyQA3Zp5Soj20Cv1fi7yEcCs2bo/WJFaCh/POJ 56sbuoSGx4XZ/+7SJzy2AydHfjm3fMiKg1DcSjnw//II3B2rA8TO3d1c/iSWzStn SSRHDralzm14NH74HD14FRA3AU/KYUhe1kNaO+eCqAVWLMus0vw6gJPJro3orRXp LQBsL+9oF5h5MxYl0srg+rnoWVZMDtwraOB3WCDzyYpjMrBDZ1PlVy2N60Uassmg 3kNNghk8/xuyL62xx33xPnOMWG6hakaxifBqmkg/IOSipAPlHestI2iNln9ZbbE+ 3byG0Bryi/q6mB/OYD+w =Znmv -----END PGP SIGNATURE----- --EESBDhrfL79rfwK7PlASHWgCbCSd6ThFv-- From owner-svn-ports-head@freebsd.org Thu Sep 15 08:22:54 2016 Return-Path: Delivered-To: svn-ports-head@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 1645EBDC0E7; Thu, 15 Sep 2016 08:22:54 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9429D11B8; Thu, 15 Sep 2016 08:22:53 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3sZWcq2P3hzZrg; Thu, 15 Sep 2016 10:22:51 +0200 (CEST) Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id L9tT5m7vxP7G; Thu, 15 Sep 2016 10:22:45 +0200 (CEST) Received: from marvin.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Thu, 15 Sep 2016 10:22:45 +0200 (CEST) Subject: Re: svn commit: r422151 - head/devel/php70-APCu To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> Cc: portmgr@FreeBSD.org From: Guido Falsi Message-ID: Date: Thu, 15 Sep 2016 10:22:31 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="GX1FjLmDlwn0p7DXuiva0PA23CJCxdnKH" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 08:22:54 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --GX1FjLmDlwn0p7DXuiva0PA23CJCxdnKH Content-Type: multipart/mixed; boundary="troLbdosPnEO15qKiwlqEaUHuDjQG3Ida"; protected-headers="v1" From: Guido Falsi To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Cc: portmgr@FreeBSD.org Message-ID: Subject: Re: svn commit: r422151 - head/devel/php70-APCu References: <201609141913.u8EJD7pP073092@repo.freebsd.org> <1ac065a3-8ddb-0e3b-4d21-d35d726fb63e@FreeBSD.org> <8c68d72d-eee6-17ce-55d0-6867bf6c707e@FreeBSD.org> In-Reply-To: --troLbdosPnEO15qKiwlqEaUHuDjQG3Ida Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 09/15/16 10:01, Mathieu Arnold wrote: > Le 15/09/2016 =C3=A0 01:29, Guido Falsi a =C3=A9crit : >> On 09/15/16 01:22, Guido Falsi wrote: >> >>> Meybe some cleaner way to allow php7 parts to be built on the cluster= >>> should be made available, although I don't know what that can be righ= t now. >>> >> For example, would such definition be more acceptable if limited to >> PACKAGE_BUILDING? >=20 > The problem I have with its usage directly in ports is that it is > supposed to be a global user settable variable, saying "I want php XX" > (using DEFAULT_VERSIONS+=3Dphp=3DXX in /etc/make.conf). >=20 > For this port, though, I may have over-reacted, it is named php70- and > can only work with 7.0. Now that I have slept on it, I would say leave > it like that, with PHP_DEFAULT set. It is the only case where setting i= t > is acceptable. >=20 > For example, it is not acceptable in a pecl-foo port, because the user > will be left to wonder why running "pkg install pecl-foo" removed his > php 5.6 installation. >=20 For the record, I was looking at the tree and the other ports doing the same are: www/pecl-http databases/php70-redis databases/php55-redis databases/php56-redis devel/php70-APCu (each setting the relevant PHP version) The only one not respecting your reasoning(which I tend to agree with) is www/pecl-http, which is really a php 7.0 only version, there are ports for older versions supporting only php 5.6 and php 5.5. While the name does not make it perfectly clear, the same reasoning could be applied. Thanks for keeping an eye on commits though, this is the only way to spot real mistakes! --=20 Guido Falsi --troLbdosPnEO15qKiwlqEaUHuDjQG3Ida-- --GX1FjLmDlwn0p7DXuiva0PA23CJCxdnKH Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEyBAEBCAAcBQJX2lpRFRxtYWRwaWxvdEBmcmVlYnNkLm9yZwAKCRAa5oYOVsvS kxODB/9tF8BbcQ8dWNxaSdhHMYv8kLjboVqMfGRoaJW/8ew0TC6P5qShH1kyck4V WU8MYe5mQRlLJhAn8ffnYICKS9qhtVoWWfQnOmUCmF390+pdRKXzi9qcQxcsu1Wu lHcB3xHHAT/o6ODK7NjmcSguQVMI4IW6aleax+XhejFaV0WDL949CI5athFCm7NI XAZ+0BkE7tIi7XSUcu3tMtNWMZ+1zd/BsLJHcP9RUhOgoUCh+X09MGOq3shS84VF nxMpuG22hkfXioUpbZj01yi3ydPz6+Y9DhBenCNAvctFqAvv4sau01oKmrQ8WuDb SS0zYKMJzgdZ9W319osyH3xGTntf =N6by -----END PGP SIGNATURE----- --GX1FjLmDlwn0p7DXuiva0PA23CJCxdnKH-- From owner-svn-ports-head@freebsd.org Thu Sep 15 08:31:11 2016 Return-Path: Delivered-To: svn-ports-head@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 B48AEBDC354; Thu, 15 Sep 2016 08:31:11 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward1o.cmail.yandex.net (forward1o.cmail.yandex.net [IPv6:2a02:6b8:0:1a72::2a1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 737E5185E; Thu, 15 Sep 2016 08:31:10 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward1o.cmail.yandex.net (Yandex) with ESMTP id CE39120C3F; Thu, 15 Sep 2016 11:31:07 +0300 (MSK) Received: from smtp3h.mail.yandex.net (localhost.localdomain [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id AC52B440DD2; Thu, 15 Sep 2016 11:31:05 +0300 (MSK) Received: by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id kNO5ePs5JL-V4pekdc6; Thu, 15 Sep 2016 11:31:04 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) X-Yandex-Suid-Status: 1 0,1 0,1 0,1 0 Subject: Re: svn commit: r422154 - head/misc/fortune_strfile To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609141925.u8EJPJb8077087@repo.freebsd.org> <2be2dfc7-2be7-aaf3-7510-58279dea9e37@marino.st> <74591600-69ee-7219-c878-5ae7366b42b8@passap.ru> <86ed1257-e5b7-8e82-ad37-039690a394a1@FreeBSD.org> From: Boris Samorodov Message-ID: Date: Thu, 15 Sep 2016 11:30:27 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <86ed1257-e5b7-8e82-ad37-039690a394a1@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 08:31:11 -0000 15.09.2016 01:11, Bryan Drewery пишет: > On 9/14/16 1:32 PM, Boris Samorodov wrote: >> 14.09.2016 22:44, Bryan Drewery пишет: >> >>> Ports need maintainers. >> >> Agreed. But _need_ is not _must have_. > > http://www.merriam-webster.com/dictionary/need > "a situation in which someone or something must do or have something" OK. You quoted the "Simple definition". Here is a quote from the "Full definition": "2 a : a lack of something requisite, desirable, or useful" >>> It is standard practice to deprecate ports without a maintainer >> >> Then it is a bad practice. > > Having ports without a maintainer is a bad practice.> It leaves users > with no one to support them when things go wrong. It leaves users with help from the community and any port's committer ability to commit immediately. There are plenty of examples at ports@ ML. > A new compiler could > easily break this port and no one would be there to support fixing it. > >> Unless you say "... to deprecate *broken/unwanted/etc* ports ...". But >> you did not. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-svn-ports-head@freebsd.org Thu Sep 15 09:01:38 2016 Return-Path: Delivered-To: svn-ports-head@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 6D4BABDCDA9; Thu, 15 Sep 2016 09:01:38 +0000 (UTC) (envelope-from amdmi3@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 3FE791DD3; Thu, 15 Sep 2016 09:01:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F91bmD090381; Thu, 15 Sep 2016 09:01:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F91bmJ090380; Thu, 15 Sep 2016 09:01:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609150901.u8F91bmJ090380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 15 Sep 2016 09:01:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422181 - head/graphics/deegree-wps X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 09:01:38 -0000 Author: amdmi3 Date: Thu Sep 15 09:01:37 2016 New Revision: 422181 URL: https://svnweb.freebsd.org/changeset/ports/422181 Log: - Add LICENSE - Switch to options helpers - Cosmetic fixes Modified: head/graphics/deegree-wps/Makefile Modified: head/graphics/deegree-wps/Makefile ============================================================================== --- head/graphics/deegree-wps/Makefile Thu Sep 15 07:46:55 2016 (r422180) +++ head/graphics/deegree-wps/Makefile Thu Sep 15 09:01:37 2016 (r422181) @@ -34,14 +34,14 @@ OPTIONS_DEFINE= DOCS .if ${PORT_OPTIONS:MTOMCAT6} TOMCATVER= apache-tomcat-6.0 -TCPORT= 8180 +TCPORT= 8180 BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat6 RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat6 .endif .if ${PORT_OPTIONS:MTOMCAT7} TOMCATVER= apache-tomcat-7.0 -TCPORT= 8080 +TCPORT= 8080 BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat7 RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:www/tomcat7 .endif @@ -51,8 +51,10 @@ post-extract: @${TAR} xf ${WRKDIR}/deegree-wps.war -C ${WRKDIR}/${PORTDIRNAME} do-install: - ${INSTALL} -d ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME} + @${MKDIR} ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME} @cd ${WRKDIR}/${PORTDIRNAME} && ${COPYTREE_SHARE} \* ${STAGEDIR}${WEBAPPDIR}/${PORTDIRNAME} + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKDIR}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Thu Sep 15 09:28:56 2016 Return-Path: Delivered-To: svn-ports-head@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 15B67BDA2DB; Thu, 15 Sep 2016 09:28:56 +0000 (UTC) (envelope-from amdmi3@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 DC879183D; Thu, 15 Sep 2016 09:28:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8F9St3J098245; Thu, 15 Sep 2016 09:28:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F9StkT098244; Thu, 15 Sep 2016 09:28:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609150928.u8F9StkT098244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 15 Sep 2016 09:28:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422182 - head/mail/elmo-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 09:28:56 -0000 Author: amdmi3 Date: Thu Sep 15 09:28:54 2016 New Revision: 422182 URL: https://svnweb.freebsd.org/changeset/ports/422182 Log: - Deprecate: this is the same as regular mail/elmo, use it instead Modified: head/mail/elmo-devel/Makefile Modified: head/mail/elmo-devel/Makefile ============================================================================== --- head/mail/elmo-devel/Makefile Thu Sep 15 09:01:37 2016 (r422181) +++ head/mail/elmo-devel/Makefile Thu Sep 15 09:28:54 2016 (r422182) @@ -13,6 +13,9 @@ COMMENT= Receive, filter, read, compose, CONFLICTS= elmo-[0-9]* +DEPRECATED= Same version as mail/elmo, use it instead +EXPIRATION_DATE=2016-10-15 + GNU_CONFIGURE= yes USES= iconv ncurses perl5 shebangfix SHEBANG_FILES= src/elmoconf.pl From owner-svn-ports-head@freebsd.org Thu Sep 15 09:45:19 2016 Return-Path: Delivered-To: svn-ports-head@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 0BC0CBDA740; Thu, 15 Sep 2016 09:45:19 +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 C30181FCD; Thu, 15 Sep 2016 09:45:18 +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 u8F9jHpb005772; Thu, 15 Sep 2016 09:45:17 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8F9jHPK005771; Thu, 15 Sep 2016 09:45:17 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201609150945.u8F9jHPK005771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Thu, 15 Sep 2016 09:45:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422183 - head/devel/etcd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 09:45:19 -0000 Author: robak Date: Thu Sep 15 09:45:17 2016 New Revision: 422183 URL: https://svnweb.freebsd.org/changeset/ports/422183 Log: devel/etcd: minor port updates * Switch to USES=go and drop BUILD_DEPENDS * Limit portscout version scans to 2.* version * Correct PORTREVISION placement Modified: head/devel/etcd/Makefile Modified: head/devel/etcd/Makefile ============================================================================== --- head/devel/etcd/Makefile Thu Sep 15 09:28:54 2016 (r422182) +++ head/devel/etcd/Makefile Thu Sep 15 09:45:17 2016 (r422183) @@ -2,8 +2,8 @@ PORTNAME= etcd PORTVERSION= 2.3.7 -PORTREVISION= 1 DISTVERSIONPREFIX= v +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= coreos- @@ -13,10 +13,14 @@ COMMENT= Highly-available key value stor LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${LOCALBASE}/bin/go:lang/go - CONFLICTS_INSTALL=coreos-etcdctl-0.* coreos-etcd3-* +PORTSCOUT= limit:^2.* + +USES= go +GO_PKGNAME= github.com/coreos/etcd +GO_TARGET= github.com/coreos/etcd \ + github.com/coreos/etcd/etcdctl USE_GITHUB= yes GH_ACCOUNT= coreos @@ -27,12 +31,9 @@ PORTDOCS= README.md OPTIONS_DEFINE= DOCS DOCS_DESC= Install etcd README file -do-build: - cd ${WRKSRC}; ${SH} build - do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/etcd ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_PROGRAM} ${WRKSRC}/bin/etcdctl ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/etcd ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/etcdctl ${STAGEDIR}${PREFIX}/bin/ do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Thu Sep 15 10:14:38 2016 Return-Path: Delivered-To: svn-ports-head@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 04F79BDAEEC; Thu, 15 Sep 2016 10:14:38 +0000 (UTC) (envelope-from gerald@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 CA2081CAB; Thu, 15 Sep 2016 10:14:37 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FAEbnb016913; Thu, 15 Sep 2016 10:14:37 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FAEaxo016911; Thu, 15 Sep 2016 10:14:36 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201609151014.u8FAEaxo016911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 15 Sep 2016 10:14:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422184 - head/lang/gcc5-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 10:14:38 -0000 Author: gerald Date: Thu Sep 15 10:14:36 2016 New Revision: 422184 URL: https://svnweb.freebsd.org/changeset/ports/422184 Log: Update to the 20160913 snapshot of GCC 5.4.1. Modified: head/lang/gcc5-devel/Makefile head/lang/gcc5-devel/distinfo Modified: head/lang/gcc5-devel/Makefile ============================================================================== --- head/lang/gcc5-devel/Makefile Thu Sep 15 09:45:17 2016 (r422183) +++ head/lang/gcc5-devel/Makefile Thu Sep 15 10:14:36 2016 (r422184) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 5.4.1.s20160906 +PORTVERSION= 5.4.1.s20160913 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc5-devel/distinfo ============================================================================== --- head/lang/gcc5-devel/distinfo Thu Sep 15 09:45:17 2016 (r422183) +++ head/lang/gcc5-devel/distinfo Thu Sep 15 10:14:36 2016 (r422184) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473273536 -SHA256 (gcc-5-20160906.tar.bz2) = c1a67b48e0833535f68286724771994c0c395c4cd409498ca5ee8f5d4a9640f3 -SIZE (gcc-5-20160906.tar.bz2) = 91685711 +TIMESTAMP = 1473866281 +SHA256 (gcc-5-20160913.tar.bz2) = f9d1993c470ec2c5733e446b51dfd9633f1babb85783cc8bd33abc56cd874466 +SIZE (gcc-5-20160913.tar.bz2) = 91677874 From owner-svn-ports-head@freebsd.org Thu Sep 15 10:25:55 2016 Return-Path: Delivered-To: svn-ports-head@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 42DF0BD8188; Thu, 15 Sep 2016 10:25:55 +0000 (UTC) (envelope-from olgeni@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 108C4202; Thu, 15 Sep 2016 10:25:54 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FAPsZS020657; Thu, 15 Sep 2016 10:25:54 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FAPsN8020656; Thu, 15 Sep 2016 10:25:54 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609151025.u8FAPsN8020656@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 15 Sep 2016 10:25:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422185 - head/devel/etcd3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 10:25:55 -0000 Author: olgeni Date: Thu Sep 15 10:25:53 2016 New Revision: 422185 URL: https://svnweb.freebsd.org/changeset/ports/422185 Log: Restore DOCS option to reduce diff with devel/etcd. Modified: head/devel/etcd3/Makefile Modified: head/devel/etcd3/Makefile ============================================================================== --- head/devel/etcd3/Makefile Thu Sep 15 10:14:36 2016 (r422184) +++ head/devel/etcd3/Makefile Thu Sep 15 10:25:53 2016 (r422185) @@ -26,6 +26,9 @@ PLIST_FILES= bin/etcd \ bin/etcdctl PORTDOCS= README.md +OPTIONS_DEFINE= DOCS +DOCS_DESC= Install etcd README file + post-extract: @${MV} ${WRKSRC}/cmd/vendor ${WRKDIR}/src @${RM} ${GO_WRKDIR_SRC}/github.com/${GH_ACCOUNT}/${PORTNAME} @@ -35,6 +38,8 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/etcd ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_PROGRAM} ${GO_WRKDIR_BIN}/etcdctl ${STAGEDIR}${PREFIX}/bin/ + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Thu Sep 15 11:21:39 2016 Return-Path: Delivered-To: svn-ports-head@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 1FDCABD8E0B; Thu, 15 Sep 2016 11:21:39 +0000 (UTC) (envelope-from olgeni@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 E6B76B27; Thu, 15 Sep 2016 11:21:38 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FBLcw9042137; Thu, 15 Sep 2016 11:21:38 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FBLc1Q042135; Thu, 15 Sep 2016 11:21:38 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609151121.u8FBLc1Q042135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 15 Sep 2016 11:21:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422186 - head/databases/elixir-geo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 11:21:39 -0000 Author: olgeni Date: Thu Sep 15 11:21:37 2016 New Revision: 422186 URL: https://svnweb.freebsd.org/changeset/ports/422186 Log: Update databases/elixir-geo to version 1.1.2. Modified: head/databases/elixir-geo/Makefile head/databases/elixir-geo/distinfo Modified: head/databases/elixir-geo/Makefile ============================================================================== --- head/databases/elixir-geo/Makefile Thu Sep 15 10:25:53 2016 (r422185) +++ head/databases/elixir-geo/Makefile Thu Sep 15 11:21:37 2016 (r422186) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= geo -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= elixir- Modified: head/databases/elixir-geo/distinfo ============================================================================== --- head/databases/elixir-geo/distinfo Thu Sep 15 10:25:53 2016 (r422185) +++ head/databases/elixir-geo/distinfo Thu Sep 15 11:21:37 2016 (r422186) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468941922 -SHA256 (bryanjos-geo-v1.1.1_GH0.tar.gz) = 44d37f605b5f565cca3ca23efb798cf5f3197036ddc19f19f8cf391b5d594524 -SIZE (bryanjos-geo-v1.1.1_GH0.tar.gz) = 18281 +TIMESTAMP = 1473865959 +SHA256 (bryanjos-geo-v1.1.2_GH0.tar.gz) = a7c34b4825c4ee9a44d77a0049a30f2b38cadddb43b227c688e458734c52d692 +SIZE (bryanjos-geo-v1.1.2_GH0.tar.gz) = 18475 From owner-svn-ports-head@freebsd.org Thu Sep 15 11:36:58 2016 Return-Path: Delivered-To: svn-ports-head@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 1B7A8BD9158; Thu, 15 Sep 2016 11:36:58 +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 C81151E4; Thu, 15 Sep 2016 11:36:57 +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 u8FBavSB047055; Thu, 15 Sep 2016 11:36:57 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FBauQE047052; Thu, 15 Sep 2016 11:36:56 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201609151136.u8FBauQE047052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Thu, 15 Sep 2016 11:36:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422187 - head/lang/ypsilon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 11:36:58 -0000 Author: robak Date: Thu Sep 15 11:36:56 2016 New Revision: 422187 URL: https://svnweb.freebsd.org/changeset/ports/422187 Log: lang/ypsilon: Update sources and fix builds - Remove MASTER_SITES and add USE_GITHUB to fetch sources from new location - Add USE_GCC= to fix builds failing with CLANG - Add LICENSE and LICENSE_FILE - Update pkg-descr PR: 212694 Submitted by: Vitaly Magerya (maintainer) Modified: head/lang/ypsilon/Makefile head/lang/ypsilon/distinfo head/lang/ypsilon/pkg-descr Modified: head/lang/ypsilon/Makefile ============================================================================== --- head/lang/ypsilon/Makefile Thu Sep 15 11:21:37 2016 (r422186) +++ head/lang/ypsilon/Makefile Thu Sep 15 11:36:56 2016 (r422187) @@ -3,17 +3,20 @@ PORTNAME= ypsilon PORTVERSION= 0.9.6.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang scheme -MASTER_SITES= GOOGLE_CODE -DISTNAME= ${PORTNAME}-0.9.6.update3 MAINTAINER= vmagerya@gmail.com COMMENT= Scheme implementation for real-time applications -BROKEN= Unfetchable (google code has gone away) +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/license.txt + +USE_GITHUB= yes +GH_TUPLE= fujita-y:ypsilon:0.9.6-update3 USES= gmake +USE_GCC= yes MAKE_ARGS= DATADIR="${DATADIR}" Modified: head/lang/ypsilon/distinfo ============================================================================== --- head/lang/ypsilon/distinfo Thu Sep 15 11:21:37 2016 (r422186) +++ head/lang/ypsilon/distinfo Thu Sep 15 11:36:56 2016 (r422187) @@ -1,2 +1,3 @@ -SHA256 (ypsilon-0.9.6.update3.tar.gz) = 2ca3c901dc3f6bca857a94a9d991d14ecc12727d2833694f0e4f5aa1a8a4064d -SIZE (ypsilon-0.9.6.update3.tar.gz) = 4555843 +TIMESTAMP = 1473879222 +SHA256 (fujita-y-ypsilon-0.9.6.3-0.9.6-update3_GH0.tar.gz) = b4d8536f76b750c873529fa1dc2511ecf335e68bdc892e3f06fa57b4f0e89886 +SIZE (fujita-y-ypsilon-0.9.6.3-0.9.6-update3_GH0.tar.gz) = 3258648 Modified: head/lang/ypsilon/pkg-descr ============================================================================== --- head/lang/ypsilon/pkg-descr Thu Sep 15 11:21:37 2016 (r422186) +++ head/lang/ypsilon/pkg-descr Thu Sep 15 11:36:56 2016 (r422187) @@ -3,4 +3,5 @@ applications, which conforms to the late Ypsilon features mostly concurrent garbage collector optimized for systems with multiple CPUs, and an easy to use FFI. -WWW: http://code.google.com/p/ypsilon/ +WWW: http://www.littlewingpinball.net/mediawiki/index.php/Ypsilon +WWW: https://github.com/fujita-y/ypsilon From owner-svn-ports-head@freebsd.org Thu Sep 15 11:59:45 2016 Return-Path: Delivered-To: svn-ports-head@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 57BB8BD95F4; Thu, 15 Sep 2016 11:59:45 +0000 (UTC) (envelope-from riggs@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 22B98C7B; Thu, 15 Sep 2016 11:59:45 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FBxiol054544; Thu, 15 Sep 2016 11:59:44 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FBxhsk054538; Thu, 15 Sep 2016 11:59:43 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609151159.u8FBxhsk054538@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 15 Sep 2016 11:59:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422188 - in head/multimedia: mencoder mplayer mplayer/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 11:59:45 -0000 Author: riggs Date: Thu Sep 15 11:59:43 2016 New Revision: 422188 URL: https://svnweb.freebsd.org/changeset/ports/422188 Log: Update to recent upstream snapshot as of 2016-09-12 While on it: - Add missing USE_XORG=xext for X11 OPTION - Import patch by bar@ to deal with certain other ports e.g. x11/slim Added: head/multimedia/mplayer/files/patch-gui_wm_ws.c (contents, props changed) Modified: head/multimedia/mencoder/Makefile head/multimedia/mencoder/distinfo head/multimedia/mplayer/Makefile head/multimedia/mplayer/Makefile.common head/multimedia/mplayer/distinfo Modified: head/multimedia/mencoder/Makefile ============================================================================== --- head/multimedia/mencoder/Makefile Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mencoder/Makefile Thu Sep 15 11:59:43 2016 (r422188) @@ -3,7 +3,6 @@ PORTNAME= mencoder PORTVERSION= ${MPLAYER_PORT_VERSION}.${MPLAYER_SNAPSHOT_DATE:S/-//g} -PORTREVISION= 2 CATEGORIES= multimedia audio MAINTAINER= riggs@FreeBSD.org Modified: head/multimedia/mencoder/distinfo ============================================================================== --- head/multimedia/mencoder/distinfo Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mencoder/distinfo Thu Sep 15 11:59:43 2016 (r422188) @@ -1,2 +1,3 @@ -SHA256 (mplayer-1.3.0.20160508.tar.xz) = a7c09980636f27ad2b15186e753736719e99f30e674e6e2c04566f7245a8b627 -SIZE (mplayer-1.3.0.20160508.tar.xz) = 12499244 +TIMESTAMP = 1473848106 +SHA256 (mplayer-1.3.0.20160912.tar.xz) = 8be40d3205c95dbea494ee6250e63a119ee04a785664301b0079e9e97e3c7ec8 +SIZE (mplayer-1.3.0.20160912.tar.xz) = 12736924 Modified: head/multimedia/mplayer/Makefile ============================================================================== --- head/multimedia/mplayer/Makefile Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mplayer/Makefile Thu Sep 15 11:59:43 2016 (r422188) @@ -78,7 +78,7 @@ PLIST_SUB+= GMPLAYER="@comment " .endif #GUI && X11 .if ${PORT_OPTIONS:MX11} -USE_XORG= x11 xproto xscrnsaver +USE_XORG= x11 xext xproto xscrnsaver .if ${PORT_OPTIONS:MXVIDEO} USE_XORG+= xv .else Modified: head/multimedia/mplayer/Makefile.common ============================================================================== --- head/multimedia/mplayer/Makefile.common Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mplayer/Makefile.common Thu Sep 15 11:59:43 2016 (r422188) @@ -5,7 +5,7 @@ # $FreeBSD$ MPLAYER_PORT_VERSION= 1.3.0 -MPLAYER_SNAPSHOT_DATE= 2016-05-08 +MPLAYER_SNAPSHOT_DATE= 2016-09-12 MASTER_SITES= LOCAL/riggs/mplayer DISTNAME= mplayer-${MPLAYER_PORT_VERSION}.${MPLAYER_SNAPSHOT_DATE:S/-//g} WRKSRC= ${WRKDIR}/mplayer-export-${MPLAYER_SNAPSHOT_DATE} Modified: head/multimedia/mplayer/distinfo ============================================================================== --- head/multimedia/mplayer/distinfo Thu Sep 15 11:36:56 2016 (r422187) +++ head/multimedia/mplayer/distinfo Thu Sep 15 11:59:43 2016 (r422188) @@ -1,2 +1,3 @@ -SHA256 (mplayer-1.3.0.20160508.tar.xz) = a7c09980636f27ad2b15186e753736719e99f30e674e6e2c04566f7245a8b627 -SIZE (mplayer-1.3.0.20160508.tar.xz) = 12499244 +TIMESTAMP = 1473836368 +SHA256 (mplayer-1.3.0.20160912.tar.xz) = 8be40d3205c95dbea494ee6250e63a119ee04a785664301b0079e9e97e3c7ec8 +SIZE (mplayer-1.3.0.20160912.tar.xz) = 12736924 Added: head/multimedia/mplayer/files/patch-gui_wm_ws.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mplayer/files/patch-gui_wm_ws.c Thu Sep 15 11:59:43 2016 (r422188) @@ -0,0 +1,23 @@ +--- gui/wm/ws.c.orig 2015-11-18 16:16:39 UTC ++++ gui/wm/ws.c +@@ -193,8 +193,18 @@ void wsInit(Display *display) + int localdisp = 1; + + if (dispname && *dispname != ':') { +- localdisp = 0; +- wsUseXShm = False; ++ // check [Bug 206050] x11/slim: force use unix sockets ++ //localdisp = 0; ++ //wsUseXShm = False; ++ const char *udspfx = "unix:"; ++ size_t strsz = strlen(udspfx); ++ char substr[strsz]; ++ strncpy(substr, dispname, strsz); ++ substr[strsz] = '\0'; ++ if(strcmp(substr, udspfx) != 0) { ++ localdisp = 0; ++ wsUseXShm = False; ++ } + } + + mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[ws] display name: %s => %s display.\n", dispname, localdisp ? "local" : "REMOTE"); From owner-svn-ports-head@freebsd.org Thu Sep 15 12:30:34 2016 Return-Path: Delivered-To: svn-ports-head@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 2A6C9BDA674; Thu, 15 Sep 2016 12:30:34 +0000 (UTC) (envelope-from mr@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 C6D28DEF; Thu, 15 Sep 2016 12:30:33 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FCUXwW067906; Thu, 15 Sep 2016 12:30:33 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FCUXPb067902; Thu, 15 Sep 2016 12:30:33 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201609151230.u8FCUXPb067902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Thu, 15 Sep 2016 12:30:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422189 - head/comms/uhd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 12:30:34 -0000 Author: mr Date: Thu Sep 15 12:30:32 2016 New Revision: 422189 URL: https://svnweb.freebsd.org/changeset/ports/422189 Log: Try to fix the package build for DOXYGEN=ON/OFF Modified: head/comms/uhd/Makefile head/comms/uhd/pkg-plist Modified: head/comms/uhd/Makefile ============================================================================== --- head/comms/uhd/Makefile Thu Sep 15 11:59:43 2016 (r422188) +++ head/comms/uhd/Makefile Thu Sep 15 12:30:32 2016 (r422189) @@ -35,6 +35,12 @@ CMAKE_ARGS+= -DPKG_LIB_DIR:STRING="share IMAGE_FILE= uhd-images_003.009.005-release.zip +OPTIONS_DEFINE= DOXYGEN +#OPTIONS_DEFAULT= DOXYGEN + +OPTIONS_SUB=yes +DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen + .include .if ${PORT_OPTIONS:MDOXYGEN} Modified: head/comms/uhd/pkg-plist ============================================================================== --- head/comms/uhd/pkg-plist Thu Sep 15 11:59:43 2016 (r422188) +++ head/comms/uhd/pkg-plist Thu Sep 15 12:30:32 2016 (r422189) @@ -108,1288 +108,1288 @@ lib/cmake/uhd/UHDConfigVersion.cmake lib/libuhd.so lib/libuhd.so.003 lib/libuhd.so.003.009 -%%PORTDOCS%%%%DOCSDIR%%/LICENSE -%%PORTDOCS%%%%DOCSDIR%%/README.md -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/Ettus_Logo.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/N2xx-JTAG.jpg -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/TRRS.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/algorithm_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/algorithm_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/algorithm_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/annotated_dup.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/arrowdown.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/arrowright.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/assert__has_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/atomic_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/atomic_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/atomic_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bc_s.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bdwn.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/bounded__buffer_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/buffer__pool_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/buffer__pool_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/build_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byte__vector_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byte__vector_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byte__vector_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/byteswap_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/c__api_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/calibration_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/cast_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/cast_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/cast_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/chdr_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/chdr_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/chdr_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classes.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1__log_1_1log-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1__log_1_1log.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1__log_1_1log.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1analog__filter__lp.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1atomic__uint32__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1atomic__uint32__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1atomic__uint32__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1convert_1_1converter-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1convert_1_1converter.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1convert_1_1converter.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1device__addr__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dict-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dict.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dict.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1digital__filter__fir.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dirty__tracked-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dirty__tracked.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1dirty__tracked.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1filter__info__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gain__group.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1gps__ctrl.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1i2c__iface.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1image__loader.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1io__type__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1io__type__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1io__type__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1mac__addr__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1mac__addr__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1mac__addr__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__delta-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__delta.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__delta.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__epsilon-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__epsilon.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1math_1_1fp__compare_1_1fp__compare__epsilon.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg_1_1__msg-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg_1_1__msg.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg_1_1__msg.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1msg__task.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1property__tree.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1range__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1range__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1range__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1ref__vector-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1ref__vector.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1ref__vector.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1reusable__barrier-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1reusable__barrier.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1reusable__barrier.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1rx__streamer.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1sid__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1sid__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1sid__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1simple__claimer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1simple__claimer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1simple__claimer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__sync__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__register__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__accessor__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__db__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1soft__regmap__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1spi__iface-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1spi__iface.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1spi__iface.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1task.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1time__spec__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1timed__wb__iface.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1bounded__buffer__detail.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1buffer__pool.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__buffer.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__recv__buffer.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1managed__send__buffer.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__simple.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1udp__zero__copy.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__control.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__device__handle.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1usb__zero__copy.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1transport_1_1zero__copy__if.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1tx__streamer.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1uart__iface-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1uart__iface.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1uart__iface.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__id__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__iface.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1dboard__manager.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1multi__usrp.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1rx__dboard__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1subdev__spec__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1tx__dboard__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp_1_1xcvr__dboard__base.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1multi__usrp__clock.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1usrp__clock_1_1octoclock__eeprom__t.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface-members.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/classuhd_1_1wb__iface.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/clock__config_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/clock__config_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/closed.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/coding_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8h.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/config_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/configuration_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/convert_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/convert_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/convert_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/converters_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/csv_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/csv_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/csv_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__base_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__base_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8h.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__eeprom_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__id_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__id_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__id_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__iface_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__iface_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__manager_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboard__manager_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dboards_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/deprecated_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/deprecated_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__addr_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__addr_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__addr_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__deprecated_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/device__deprecated_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/devices_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dict_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_196057fa9aeefd8591ddec7c908f5e43.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_196057fa9aeefd8591ddec7c908f5e43.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_72c1d58d372b837697c1167a99ca9c7a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_72c1d58d372b837697c1167a99ca9c7a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_7461a2958eedf41f0cc2e50ee75b14b0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_7461a2958eedf41f0cc2e50ee75b14b0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9b536c30bc5a9db2084d75e9c271ba6f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9b536c30bc5a9db2084d75e9c271ba6f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9d0dbe074bd16ac5601986e81b7402cf.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_9d0dbe074bd16ac5601986e81b7402cf.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_f4b37310477eb290db01b88b258ae379.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dir_f4b37310477eb290db01b88b258ae379.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/direction_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/direction_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/direction_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dirty__tracked_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dirty__tracked_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/doc.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/dynsections.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_fp_overlay.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_gpio_conn.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_imu_demo.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_jtag_conn.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3x0_rp_overlay.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/e3xx_conn_photo.jpg -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/endianness_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/endianness_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/endianness_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/error_8h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/error_8h.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/error_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/exception_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/exception_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/exception_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/files.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/filters_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/filters_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/filters_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/folderclosed.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/folderopen.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__delta_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__delta_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__epsilon_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/fp__compare__epsilon_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_dup.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_g.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_i.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_k.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_l.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_m.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_n.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_o.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_p.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_r.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_s.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_u.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_v.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_w.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_x.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_func_~.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_g.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_i.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_k.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_l.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_m.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_n.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_o.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_p.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_r.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_s.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_t.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_type.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_u.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_v.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_w.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_x.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/functions_~.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gain__group_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gain__group_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/general_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_dup.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_enum.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_eval.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func_r.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func_s.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_func_u.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_g.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_i.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_r.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_s.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_u.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_vars.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/globals_x.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpio__api_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gps__ctrl_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gps__ctrl_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpsdo_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpsdo__b2x0_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/gpsdo__x3x0_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/hierarchy.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/hierarchy.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/identification_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/if__addrs_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/if__addrs_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/if__addrs_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/image__loader_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/image__loader_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/images_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/index.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/install_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/io__type_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/io__type_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/jquery.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/log_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/log_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/log_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mac__addr_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mac__addr_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mainpage_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/math_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/math_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/math_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8h.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/mboard__eeprom_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8h.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/metadata_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg__task_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/msg__task_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp__clock_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multi__usrp__clock_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/multiple_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_enum.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_eval.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_func.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespacemembers_type.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaces.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaces.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1__log.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1__log.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1cast.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1convert.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1convert.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1csv.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math_1_1fp__compare.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1math_1_1fp__compare.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1msg.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1msg.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1soft__reg__field.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport_1_1vrt.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport_1_1vrt.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1transport_1_1vrt_1_1chdr.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp__clock.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/namespaceuhd_1_1usrp__clock.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/nav_f.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/nav_g.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/nav_h.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtree.css -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtree.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreedata.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/navtreeindex9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ni__rio__kernel_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/octoclock_8dox.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/octoclock__eeprom_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/octoclock__eeprom_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/open.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/otw__type_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/otw__type_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_build_guide.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_c_api.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_calibration.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_coding.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_coding.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_configuration.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_converters.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_dboards.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_devices.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_devices.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_general.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpio_api.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpsdo.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpsdo_b2x0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_gpsdo_x3x0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_identification.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_images.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_install.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_multiple.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_ni_rio_kernel.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_octoclock.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_rtp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_stream.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_sync.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_transport.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_uhd.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_uhd.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_b100.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_b200.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_b200.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_e1x0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_e1x0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_e3x0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_x3x0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_x3x0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/page_usrp_x3x0_config.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/paths_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/paths_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/paths_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pimpl_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pimpl_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/pimpl_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/platform_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/platform_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/platform_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8ipp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/property__tree_8ipp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8h.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8h.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ranges_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ref__vector_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/ref__vector_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/resize.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__call_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__call_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__call_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__main_8hpp.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__main_8hpp.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/safe__main_8hpp_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_11.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_11.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_12.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_12.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_13.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_13.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_14.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_14.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_15.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_15.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_16.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_16.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_17.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_17.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_18.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_18.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_e.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/all_f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_11.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_11.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_12.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_12.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_13.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_13.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_14.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_14.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_15.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_15.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_16.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_16.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_e.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/classes_f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/close.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/defines_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enums_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_e.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/enumvalues_f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_11.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_11.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_12.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_12.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_13.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_13.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_e.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/files_f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_11.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_11.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_12.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_12.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_13.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_13.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_14.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_14.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_15.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_15.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_16.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_16.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_17.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_17.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_e.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/functions_f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/mag_sel.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/namespaces_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/namespaces_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/nomatches.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/pages_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/search.css -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/search.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/search_l.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/search_m.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/search_r.png -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/searchdata.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_2.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_3.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_3.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_4.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_4.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_5.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_5.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_6.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_6.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_7.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_7.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_8.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_8.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_9.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_9.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_a.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_a.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_b.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_b.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_c.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_c.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_d.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_d.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_e.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_e.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_f.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/typedefs_f.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_0.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_0.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_1.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_1.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_10.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_10.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_11.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_11.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_12.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_12.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_13.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_13.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_14.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_14.js -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_2.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen/html/search/variables_2.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Thu Sep 15 12:39:48 2016 Return-Path: Delivered-To: svn-ports-head@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 AAAC1BDA9F3; Thu, 15 Sep 2016 12:39:48 +0000 (UTC) (envelope-from olgeni@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 7E82F144A; Thu, 15 Sep 2016 12:39:48 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FCdlm3069726; Thu, 15 Sep 2016 12:39:47 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FCdl15069722; Thu, 15 Sep 2016 12:39:47 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609151239.u8FCdl15069722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 15 Sep 2016 12:39:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422190 - in head/net/nats: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 12:39:48 -0000 Author: olgeni Date: Thu Sep 15 12:39:47 2016 New Revision: 422190 URL: https://svnweb.freebsd.org/changeset/ports/422190 Log: Add a @sample configuration file to net/nats, plus some configuration examples taken from the port's tests. Added: head/net/nats/files/gnatsd.conf (contents, props changed) head/net/nats/pkg-plist (contents, props changed) Modified: head/net/nats/Makefile head/net/nats/files/gnatsd.sh.in Modified: head/net/nats/Makefile ============================================================================== --- head/net/nats/Makefile Thu Sep 15 12:30:32 2016 (r422189) +++ head/net/nats/Makefile Thu Sep 15 12:39:47 2016 (r422190) @@ -3,7 +3,7 @@ PORTNAME= nats PORTVERSION= 0.9.4 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= olgeni@FreeBSD.org @@ -13,12 +13,18 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= go -GO_PKGNAME= github.com/nats-io/gnatsd +GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} USE_GITHUB= yes GH_ACCOUNT= nats-io GH_PROJECT= gnatsd -PLIST_FILES= bin/gnatsd USE_RC_SUBR= gnatsd.sh +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/etc + ${INSTALL_SCRIPT} ${FILESDIR}/gnatsd.conf ${STAGEDIR}${PREFIX}/etc/gnatsd.conf.sample + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/server && ${COPYTREE_SHARE} configs ${STAGEDIR}${DOCSDIR} + .include Added: head/net/nats/files/gnatsd.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats/files/gnatsd.conf Thu Sep 15 12:39:47 2016 (r422190) @@ -0,0 +1,3 @@ +listen: localhost:4222 # host/port to listen for client connections +http: localhost:8222 # HTTP monitoring port +syslog: true Modified: head/net/nats/files/gnatsd.sh.in ============================================================================== --- head/net/nats/files/gnatsd.sh.in Thu Sep 15 12:30:32 2016 (r422189) +++ head/net/nats/files/gnatsd.sh.in Thu Sep 15 12:39:47 2016 (r422190) @@ -19,7 +19,7 @@ rcvar=`set_rcvar` load_rc_config ${name} : ${gnatsd_enable="NO"} : ${gnatsd_username="nobody"} -: ${gnatsd_options="-m 8222 -s"} +: ${gnatsd_options="-c %%PREFIX%%/etc/gnatsd.conf"} command=/usr/sbin/daemon procname=%%PREFIX%%/bin/gnatsd Added: head/net/nats/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats/pkg-plist Thu Sep 15 12:39:47 2016 (r422190) @@ -0,0 +1,23 @@ +bin/gnatsd +@sample etc/gnatsd.conf.sample +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/configs/authorization.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/certs/key.pem +%%PORTDOCS%%%%DOCSDIR%%/configs/certs/server.pem +%%PORTDOCS%%%%DOCSDIR%%/configs/cluster.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/listen.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/listen_port.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/listen_port_with_colon.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/multiple_users.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/seed.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/seed_tls.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/srv_a.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/srv_a_bcrypt.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/srv_b.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/srv_b_bcrypt.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/test.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/tls.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/tls_bad_cipher.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/tls_ciphers.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/tls_empty_cipher.conf +%%PORTDOCS%%%%DOCSDIR%%/configs/tls_test.conf From owner-svn-ports-head@freebsd.org Thu Sep 15 12:41:03 2016 Return-Path: Delivered-To: svn-ports-head@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 DB7B0BDAB9D; Thu, 15 Sep 2016 12:41:03 +0000 (UTC) (envelope-from vanilla@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 9210C16A3; Thu, 15 Sep 2016 12:41:03 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FCf2Ep069936; Thu, 15 Sep 2016 12:41:02 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FCf2jB069934; Thu, 15 Sep 2016 12:41:02 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609151241.u8FCf2jB069934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 15 Sep 2016 12:41:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422191 - in head/archivers: pecl-snappy pecl-snappy/files php5-snappy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 12:41:04 -0000 Author: vanilla Date: Thu Sep 15 12:41:02 2016 New Revision: 422191 URL: https://svnweb.freebsd.org/changeset/ports/422191 Log: 1: rename php5-snappy to pecl-snappy. 2: it's php7 compatible now. 3: switch to GITHUB. Added: head/archivers/pecl-snappy/ - copied from r422190, head/archivers/php5-snappy/ Deleted: head/archivers/pecl-snappy/files/ head/archivers/php5-snappy/ Modified: head/archivers/pecl-snappy/Makefile head/archivers/pecl-snappy/distinfo Modified: head/archivers/pecl-snappy/Makefile ============================================================================== --- head/archivers/php5-snappy/Makefile Thu Sep 15 12:39:47 2016 (r422190) +++ head/archivers/pecl-snappy/Makefile Thu Sep 15 12:41:02 2016 (r422191) @@ -2,27 +2,23 @@ # $FreeBSD$ PORTNAME= php5-snappy -PORTVERSION= 0.0.2 -PORTREVISION= 2 +PORTVERSION= 0.1.5 CATEGORIES= archivers -MASTER_SITES= GOOGLE_CODE -PROJECTHOST= php-snappy -DISTNAME= ${PROJECTHOST}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= PHP extension for the snappy compression algorithm LICENSE= BSD2CLAUSE -BROKEN= Unfetchable (google code has gone away) - LIB_DEPENDS= libsnappy.so:archivers/snappy USES= php:ext +USE_GITHUB= yes +GH_ACCOUNT= kjdev +GH_PROJECT= php-ext-snappy PHP_MODNAME= snappy CONFIGURE_ARGS= --with-snappy-includedir=${LOCALBASE}/include -WRKSRC= ${WRKDIR}/${PROJECTHOST} -IGNORE_WITH_PHP= 70 +WRKSRC= ${WRKDIR}/php-ext-snappy-${PORTVERSION} do-test: (cd ${WRKSRC} && ${DO_MAKE_BUILD} NO_INTERACTION=yes test < /dev/null) Modified: head/archivers/pecl-snappy/distinfo ============================================================================== --- head/archivers/php5-snappy/distinfo Thu Sep 15 12:39:47 2016 (r422190) +++ head/archivers/pecl-snappy/distinfo Thu Sep 15 12:41:02 2016 (r422191) @@ -1,2 +1,3 @@ -SHA256 (php-snappy-0.0.2.tar.gz) = 7aa6be88e09985fc0f9054b3e3d06612383aaacbbc6db705913ad7d047dc9cd9 -SIZE (php-snappy-0.0.2.tar.gz) = 6801 +TIMESTAMP = 1473896952 +SHA256 (kjdev-php-ext-snappy-0.1.5_GH0.tar.gz) = 78d407290ca7d75eed5127642d8dcb5c08a71ec611efa5f197980e48b3623dab +SIZE (kjdev-php-ext-snappy-0.1.5_GH0.tar.gz) = 9516 From owner-svn-ports-head@freebsd.org Thu Sep 15 12:44:03 2016 Return-Path: Delivered-To: svn-ports-head@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 E9C66BDAC3F; Thu, 15 Sep 2016 12:44:03 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A652318CF; Thu, 15 Sep 2016 12:44:03 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 350CCBDDDE; Thu, 15 Sep 2016 14:44:01 +0200 (CEST) Received: from atuin.in.mat.cc (AMontsouris-654-1-279-15.w82-123.abo.wanadoo.fr [82.123.70.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 06A77BDDDD; Thu, 15 Sep 2016 14:44:01 +0200 (CEST) Subject: Re: svn commit: r422191 - in head/archivers: pecl-snappy pecl-snappy/files php5-snappy To: "Vanilla I. Shu" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609151241.u8FCf2jB069934@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Thu, 15 Sep 2016 14:43:59 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609151241.u8FCf2jB069934@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="m0uGGXDtoNjvhhWTPo02IskAHw2tm62MF" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 12:44:04 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --m0uGGXDtoNjvhhWTPo02IskAHw2tm62MF Content-Type: multipart/mixed; boundary="wnwcw1ceLvCeTJK2wwQ4ekV2qiJpGjaIh"; protected-headers="v1" From: Mathieu Arnold To: "Vanilla I. Shu" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422191 - in head/archivers: pecl-snappy pecl-snappy/files php5-snappy References: <201609151241.u8FCf2jB069934@repo.freebsd.org> In-Reply-To: <201609151241.u8FCf2jB069934@repo.freebsd.org> --wnwcw1ceLvCeTJK2wwQ4ekV2qiJpGjaIh Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 15/09/2016 =C3=A0 14:41, Vanilla I. Shu a =C3=A9crit : > +WRKSRC=3D ${WRKDIR}/php-ext-snappy-${PORTVERSION}=20 This is the default and can be removed. --=20 Mathieu Arnold --wnwcw1ceLvCeTJK2wwQ4ekV2qiJpGjaIh-- --m0uGGXDtoNjvhhWTPo02IskAHw2tm62MF Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX2peQXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IhtsQAJ2TwNqGNsTgTomT73WntWfN +72TpSy1kczw1835NpfaPAevVKFAIWemLTDnwwOaJeANTDcvw050g6PhH41ISU4C qTRD03QbTn5Q1/ksnxWv/u1pBTe2+WFBLBmr4StM3IIjrXYItGVRoA+HO1tOt/mc zkCIwhx9R6GRr2cmC0+GZZwPa+UFqRByG+tSZ+H4iK8lLNOKMpOfXEPMcR85HZnB cAQRMNGbLIpKniGe/2+f0ejzlcIUSUVH7iC/wI4xn4O/j+gQrfWdhYC8RSZDXM5I 6MxVTAXt2bhEtUTUazY+fJ18GmJi3pPwSJt4/2KlUXHAjxm3hJ0+R/83B+y8+Dfg 9qECYv/qCCMSWltj6lT8+PLqYbSDN1vGtTzBv1EdWI58YPfWXYkz8KrBm/9WIKSU 4h2mk4oAKabI2cXzjXc6wfLLgLVdvd0M52x8sNvAimepuI0y3Y85uCANNfvo0s0X 6gUIcDuyGXpE61R0XG6dx7PoRqbu2Y/I/fpA1zW2let20R4pPVmJSyi+a7in6t4o 3Za8YvQUa/ciE9QPiwK2hrdhYG+nwPoGKXYnf/csTSyfwMe1JWt9SKzRJapGEb8G bevsqEJMch9f+xzCbqXXycL+gckJhIOeJLsx2dU5AFpGjurB7Fu/leszKy96mlOv vQTqeC67TtBoOeLgeiXM =qmB2 -----END PGP SIGNATURE----- --m0uGGXDtoNjvhhWTPo02IskAHw2tm62MF-- From owner-svn-ports-head@freebsd.org Thu Sep 15 12:46:51 2016 Return-Path: Delivered-To: svn-ports-head@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 19882BDAC9A; Thu, 15 Sep 2016 12:46:51 +0000 (UTC) (envelope-from olgeni@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 D1CDB1A05; Thu, 15 Sep 2016 12:46:50 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FCkopM073813; Thu, 15 Sep 2016 12:46:50 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FCknlU073805; Thu, 15 Sep 2016 12:46:49 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609151246.u8FCknlU073805@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 15 Sep 2016 12:46:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422192 - in head/net: . nats-streaming-server nats-streaming-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 12:46:51 -0000 Author: olgeni Date: Thu Sep 15 12:46:49 2016 New Revision: 422192 URL: https://svnweb.freebsd.org/changeset/ports/422192 Log: Add net/nats-streaming-server, a reliable streaming platform built on NATS. It does not depend on net/nats because it embeds its own NATS server. Added: head/net/nats-streaming-server/ head/net/nats-streaming-server/Makefile (contents, props changed) head/net/nats-streaming-server/distinfo (contents, props changed) head/net/nats-streaming-server/files/ head/net/nats-streaming-server/files/nats_streaming.conf (contents, props changed) head/net/nats-streaming-server/files/nats_streaming.sh.in (contents, props changed) head/net/nats-streaming-server/pkg-descr (contents, props changed) head/net/nats-streaming-server/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Sep 15 12:41:02 2016 (r422191) +++ head/net/Makefile Thu Sep 15 12:46:49 2016 (r422192) @@ -422,6 +422,7 @@ SUBDIR += nanomsg SUBDIR += nast SUBDIR += nats + SUBDIR += nats-streaming-server SUBDIR += nats-top SUBDIR += nbd-server SUBDIR += nc Added: head/net/nats-streaming-server/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats-streaming-server/Makefile Thu Sep 15 12:46:49 2016 (r422192) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= nats-streaming-server +PORTVERSION= 0.2.2 +DISTVERSIONPREFIX= v +CATEGORIES= net + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= Streaming system server for NATS + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +USE_GITHUB= yes +GH_ACCOUNT= nats-io + +USE_RC_SUBR= nats_streaming.sh + +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/etc + ${INSTALL_SCRIPT} ${FILESDIR}/nats_streaming.conf ${STAGEDIR}${PREFIX}/etc/nats_streaming.conf.sample + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/net/nats-streaming-server/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats-streaming-server/distinfo Thu Sep 15 12:46:49 2016 (r422192) @@ -0,0 +1,3 @@ +TIMESTAMP = 1472819350 +SHA256 (nats-io-nats-streaming-server-v0.2.2_GH0.tar.gz) = 741d03db1f78c348856476b0b27f39c391a6695aa6c199997a517e6f8c0e58f1 +SIZE (nats-io-nats-streaming-server-v0.2.2_GH0.tar.gz) = 360659 Added: head/net/nats-streaming-server/files/nats_streaming.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats-streaming-server/files/nats_streaming.conf Thu Sep 15 12:46:49 2016 (r422192) @@ -0,0 +1,3 @@ +listen: localhost:4222 # host/port to listen for client connections +http: localhost:8222 # HTTP monitoring port +syslog: true Added: head/net/nats-streaming-server/files/nats_streaming.sh.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats-streaming-server/files/nats_streaming.sh.in Thu Sep 15 12:46:49 2016 (r422192) @@ -0,0 +1,28 @@ +#!/bin/sh +# +# PROVIDE: nats_streaming +# REQUIRE: DAEMON +# +# Add the following lines to /etc/rc.conf to run the NATS streaming server: +# +# nats_streaming_enable (bool): Set it to "YES" to enable nats_streaming server. +# Default is "NO". +# nats_streaming_username: User name to run as. default "nobody" +# nats_streaming_options: Options to pass nats_streaming server +# + +. /etc/rc.subr + +name="nats_streaming" +rcvar=`set_rcvar` + +load_rc_config ${name} +: ${nats_streaming_enable="NO"} +: ${nats_streaming_username="nobody"} +: ${nats_streaming_options="-c %%PREFIX%%/etc/nats_streaming.conf"} + +command=/usr/sbin/daemon +procname=%%PREFIX%%/bin/nats-streaming-server +command_args="-u ${nats_streaming_username} ${procname} ${nats_streaming_options}" + +run_rc_command "$1" Added: head/net/nats-streaming-server/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats-streaming-server/pkg-descr Thu Sep 15 12:46:49 2016 (r422192) @@ -0,0 +1,5 @@ +NATS is an open-source, cloud-native messaging system. NATS Streaming +is an extremely performant, lightweight reliable streaming platform +built on NATS. + +WWW: https://nats.io/ Added: head/net/nats-streaming-server/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/nats-streaming-server/pkg-plist Thu Sep 15 12:46:49 2016 (r422192) @@ -0,0 +1,3 @@ +bin/nats-streaming-server +@sample etc/nats_streaming.conf.sample +%%PORTDOCS%%%%DOCSDIR%%/README.md From owner-svn-ports-head@freebsd.org Thu Sep 15 12:51:35 2016 Return-Path: Delivered-To: svn-ports-head@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 71237BDADF6; Thu, 15 Sep 2016 12:51:35 +0000 (UTC) (envelope-from vanilla@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 37BAA1C19; Thu, 15 Sep 2016 12:51:35 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FCpYPK074738; Thu, 15 Sep 2016 12:51:34 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FCpY9V074737; Thu, 15 Sep 2016 12:51:34 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609151251.u8FCpY9V074737@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 15 Sep 2016 12:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422193 - head/archivers/pecl-snappy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 12:51:35 -0000 Author: vanilla Date: Thu Sep 15 12:51:34 2016 New Revision: 422193 URL: https://svnweb.freebsd.org/changeset/ports/422193 Log: remove extra WRKSRC. Submitted by: mat@ Modified: head/archivers/pecl-snappy/Makefile Modified: head/archivers/pecl-snappy/Makefile ============================================================================== --- head/archivers/pecl-snappy/Makefile Thu Sep 15 12:46:49 2016 (r422192) +++ head/archivers/pecl-snappy/Makefile Thu Sep 15 12:51:34 2016 (r422193) @@ -18,7 +18,6 @@ GH_ACCOUNT= kjdev GH_PROJECT= php-ext-snappy PHP_MODNAME= snappy CONFIGURE_ARGS= --with-snappy-includedir=${LOCALBASE}/include -WRKSRC= ${WRKDIR}/php-ext-snappy-${PORTVERSION} do-test: (cd ${WRKSRC} && ${DO_MAKE_BUILD} NO_INTERACTION=yes test < /dev/null) From owner-svn-ports-head@freebsd.org Thu Sep 15 13:19:22 2016 Return-Path: Delivered-To: svn-ports-head@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 E18FEBDB3B8; Thu, 15 Sep 2016 13:19:22 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id D77A3B8C; Thu, 15 Sep 2016 13:19:22 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id D611F1217; Thu, 15 Sep 2016 13:19:22 +0000 (UTC) Date: Thu, 15 Sep 2016 13:19:22 +0000 From: Alexey Dokuchaev To: Jung-uk Kim Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422169 - in head/korean/imhangul: . files Message-ID: <20160915131922.GA57192@FreeBSD.org> References: <201609142325.u8ENP9iT068917@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201609142325.u8ENP9iT068917@repo.freebsd.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 13:19:23 -0000 On Wed, Sep 14, 2016 at 11:25:09PM +0000, Jung-uk Kim wrote: > New Revision: 422169 > URL: https://svnweb.freebsd.org/changeset/ports/422169 > > Log: > - Unbreak and modernize the port. > - Switch to GTK3 by default. Why? I was under impression that we still adhere to GTK+2 for the time being. ./danfe From owner-svn-ports-head@freebsd.org Thu Sep 15 14:24:54 2016 Return-Path: Delivered-To: svn-ports-head@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 262BEBDBB89; Thu, 15 Sep 2016 14:24:54 +0000 (UTC) (envelope-from crees@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 EA869B78; Thu, 15 Sep 2016 14:24:53 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FEOrpI011254; Thu, 15 Sep 2016 14:24:53 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FEOril011253; Thu, 15 Sep 2016 14:24:53 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201609151424.u8FEOril011253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Thu, 15 Sep 2016 14:24:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422194 - head/databases/neo4j X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 14:24:54 -0000 Author: crees Date: Thu Sep 15 14:24:52 2016 New Revision: 422194 URL: https://svnweb.freebsd.org/changeset/ports/422194 Log: Fix some more shebangs Submitted by: Amanda Strnad Modified: head/databases/neo4j/Makefile Modified: head/databases/neo4j/Makefile ============================================================================== --- head/databases/neo4j/Makefile Thu Sep 15 12:51:34 2016 (r422193) +++ head/databases/neo4j/Makefile Thu Sep 15 14:24:52 2016 (r422194) @@ -2,6 +2,7 @@ PORTNAME= neo4j DISTVERSION= 3.0.4 +PORTREVISION= 1 CATEGORIES= databases java MASTER_SITES= http://dist.neo4j.org/ DISTNAME= ${PORTNAME}-community-${DISTVERSION}-unix @@ -13,6 +14,8 @@ RUN_DEPENDS= bash:shells/bash WRKSRC= ${WRKDIR}/${DISTNAME:S,-unix,,} NO_BUILD= yes +USES= shebangfix +SHEBANG_FILES= bin/neo4j-shell bin/neo4j-import USE_JAVA= yes USE_RC_SUBR= ${PORTNAME} SUB_FILES= ${PORTNAME}.sh From owner-svn-ports-head@freebsd.org Thu Sep 15 14:35:30 2016 Return-Path: Delivered-To: svn-ports-head@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 9D920BDBD12; Thu, 15 Sep 2016 14:35:30 +0000 (UTC) (envelope-from swills@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 5632DF56; Thu, 15 Sep 2016 14:35:30 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FEZTWb015006; Thu, 15 Sep 2016 14:35:29 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FEZTLS015004; Thu, 15 Sep 2016 14:35:29 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151435.u8FEZTLS015004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 14:35:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422195 - head/devel/ruby-bsearch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 14:35:30 -0000 Author: swills Date: Thu Sep 15 14:35:29 2016 New Revision: 422195 URL: https://svnweb.freebsd.org/changeset/ports/422195 Log: devel/ruby-bsearch: remove use of RUBY_RD_FILES PR: 210665 Modified: head/devel/ruby-bsearch/Makefile head/devel/ruby-bsearch/pkg-plist Modified: head/devel/ruby-bsearch/Makefile ============================================================================== --- head/devel/ruby-bsearch/Makefile Thu Sep 15 14:24:52 2016 (r422194) +++ head/devel/ruby-bsearch/Makefile Thu Sep 15 14:35:29 2016 (r422195) @@ -3,6 +3,7 @@ PORTNAME= bsearch PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= devel ruby MASTER_SITES= http://0xcc.net/ruby-bsearch/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -16,24 +17,14 @@ USE_RUBY= yes NO_BUILD= yes -RUBY_RD_FILES= bsearch.en.rd bsearch.ja.rd -DOCS_EN= ChangeLog \ - ${RUBY_RD_FILES:M*.en.rd} \ - ${RUBY_RD_HTML_FILES:M*.en.html} -DOCS_JA= ${RUBY_RD_FILES:M*.ja.rd} \ - ${RUBY_RD_HTML_FILES:M*.ja.html} - OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_SCRIPT} ${WRKSRC}/bsearch.rb ${STAGEDIR}${RUBY_SITELIBDIR} - ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja -.for f in ${DOCS_EN} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR} -.endfor -.for f in ${DOCS_JA} - ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja -.endfor + +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} + ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${STAGEDIR}${RUBY_MODDOCDIR} .include Modified: head/devel/ruby-bsearch/pkg-plist ============================================================================== --- head/devel/ruby-bsearch/pkg-plist Thu Sep 15 14:24:52 2016 (r422194) +++ head/devel/ruby-bsearch/pkg-plist Thu Sep 15 14:35:29 2016 (r422195) @@ -1,6 +1,2 @@ %%RUBY_SITELIBDIR%%/bsearch.rb %%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/bsearch.en.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/bsearch.en.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/ja/bsearch.ja.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/bsearch.ja.rd From owner-svn-ports-head@freebsd.org Thu Sep 15 14:36:22 2016 Return-Path: Delivered-To: svn-ports-head@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 3968DBDBD81; Thu, 15 Sep 2016 14:36:22 +0000 (UTC) (envelope-from swills@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 0C6A2F6; Thu, 15 Sep 2016 14:36:21 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FEaLfb015160; Thu, 15 Sep 2016 14:36:21 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FEaLXt015158; Thu, 15 Sep 2016 14:36:21 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151436.u8FEaLXt015158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 14:36:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422196 - head/audio/ruby-mp3tag X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 14:36:22 -0000 Author: swills Date: Thu Sep 15 14:36:20 2016 New Revision: 422196 URL: https://svnweb.freebsd.org/changeset/ports/422196 Log: audio/ruby-mp3tag: remove use of RUBY_RD_FILES PR: 210665 Modified: head/audio/ruby-mp3tag/Makefile head/audio/ruby-mp3tag/pkg-plist Modified: head/audio/ruby-mp3tag/Makefile ============================================================================== --- head/audio/ruby-mp3tag/Makefile Thu Sep 15 14:35:29 2016 (r422195) +++ head/audio/ruby-mp3tag/Makefile Thu Sep 15 14:36:20 2016 (r422196) @@ -3,6 +3,7 @@ PORTNAME= mp3tag PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= audio ruby MASTER_SITES= LOCAL/sunpoet/ruby PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -21,11 +22,6 @@ NO_BUILD= yes USE_RUBY= yes USE_RUBY_RDOC= yes -RUBY_RD_FILES= mp3tag.rb - -DOCS= README \ - ${RUBY_RD_HTML_FILES} - post-patch: @${REINPLACE_CMD} -E \ -e "s,^(require[[:space:]]+')\./mp3tag(.*),\1mp3tag\2," \ @@ -37,7 +33,7 @@ do-install: do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${RUBY_MODDOCDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} README ${STAGEDIR}${RUBY_MODDOCDIR}/ do-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} Modified: head/audio/ruby-mp3tag/pkg-plist ============================================================================== --- head/audio/ruby-mp3tag/pkg-plist Thu Sep 15 14:35:29 2016 (r422195) +++ head/audio/ruby-mp3tag/pkg-plist Thu Sep 15 14:36:20 2016 (r422196) @@ -1,4 +1,3 @@ %%RUBY_SITELIBDIR%%/mp3tag.rb %%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/mp3tag.html %%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/mp3tag_test.rb From owner-svn-ports-head@freebsd.org Thu Sep 15 14:37:14 2016 Return-Path: Delivered-To: svn-ports-head@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 36C67BDBDF2; Thu, 15 Sep 2016 14:37:14 +0000 (UTC) (envelope-from swills@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 06215226; Thu, 15 Sep 2016 14:37:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FEbD9N015297; Thu, 15 Sep 2016 14:37:13 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FEbD8R015296; Thu, 15 Sep 2016 14:37:13 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151437.u8FEbD8R015296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 14:37:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422197 - head/audio/ruby-taglib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 14:37:14 -0000 Author: swills Date: Thu Sep 15 14:37:12 2016 New Revision: 422197 URL: https://svnweb.freebsd.org/changeset/ports/422197 Log: audio/ruby-taglib: remove use of RUBY_RD_FILES PR: 210665 Modified: head/audio/ruby-taglib/Makefile Modified: head/audio/ruby-taglib/Makefile ============================================================================== --- head/audio/ruby-taglib/Makefile Thu Sep 15 14:36:20 2016 (r422196) +++ head/audio/ruby-taglib/Makefile Thu Sep 15 14:37:12 2016 (r422197) @@ -22,16 +22,14 @@ NO_BUILD= yes USE_RUBY= yes USES= tar:bzip2 -RUBY_RD_FILES= taglib.rb - -DOCS= README - OPTIONS_DEFINE= DOCS do-install: ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/lib/taglib.rb ${STAGEDIR}${RUBY_SITELIBDIR} + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} - ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${RUBY_MODDOCDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${RUBY_MODDOCDIR} .include From owner-svn-ports-head@freebsd.org Thu Sep 15 14:38:04 2016 Return-Path: Delivered-To: svn-ports-head@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 0B9D8BDBE89; Thu, 15 Sep 2016 14:38:04 +0000 (UTC) (envelope-from swills@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 CD1F436F; Thu, 15 Sep 2016 14:38:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FEc26C015451; Thu, 15 Sep 2016 14:38:02 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FEc24Q015449; Thu, 15 Sep 2016 14:38:02 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151438.u8FEc24Q015449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 14:38:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422198 - head/devel/ruby-tzfile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 14:38:04 -0000 Author: swills Date: Thu Sep 15 14:38:02 2016 New Revision: 422198 URL: https://svnweb.freebsd.org/changeset/ports/422198 Log: devel/ruby-tzfile: remove use of RUBY_RD_FILES/RUBY_RD_HTML PR: 210665 Modified: head/devel/ruby-tzfile/Makefile head/devel/ruby-tzfile/pkg-plist Modified: head/devel/ruby-tzfile/Makefile ============================================================================== --- head/devel/ruby-tzfile/Makefile Thu Sep 15 14:37:12 2016 (r422197) +++ head/devel/ruby-tzfile/Makefile Thu Sep 15 14:38:02 2016 (r422198) @@ -3,7 +3,7 @@ PORTNAME= tzfile PORTVERSION= 0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel ruby MASTER_SITES= http://www.a-k-r.org/ruby-tzfile/ DISTNAME= ruby-${PORTNAME}-${PORTVERSION} @@ -17,17 +17,10 @@ USE_RUBY= yes NO_BUILD= yes -RUBY_RD_FILES= tzfile.rb -RUBY_RD_HTML= yes - WRKSRC= ${WRKDIR}/${PORTNAME} do-install: @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/ ${INSTALL_DATA} ${WRKSRC}/tzfile.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ -do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ - cd ${WRKSRC} && ${INSTALL_DATA} ${RUBY_RD_HTML_FILES} ${STAGEDIR}${RUBY_MODDOCDIR}/ - .include Modified: head/devel/ruby-tzfile/pkg-plist ============================================================================== --- head/devel/ruby-tzfile/pkg-plist Thu Sep 15 14:37:12 2016 (r422197) +++ head/devel/ruby-tzfile/pkg-plist Thu Sep 15 14:38:02 2016 (r422198) @@ -1,2 +1 @@ %%RUBY_SITELIBDIR%%/tzfile.rb -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/tzfile.html From owner-svn-ports-head@freebsd.org Thu Sep 15 14:58:38 2016 Return-Path: Delivered-To: svn-ports-head@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 4008BBDB495; Thu, 15 Sep 2016 14:58:38 +0000 (UTC) (envelope-from swills@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 E994B750; Thu, 15 Sep 2016 14:58:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FEwbK5022936; Thu, 15 Sep 2016 14:58:37 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FEwbNc022934; Thu, 15 Sep 2016 14:58:37 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151458.u8FEwbNc022934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 14:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422199 - head/graphics/ruby-image_size X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 14:58:38 -0000 Author: swills Date: Thu Sep 15 14:58:36 2016 New Revision: 422199 URL: https://svnweb.freebsd.org/changeset/ports/422199 Log: graphics/ruby-image_size: remove RUBY_RD_FILES PR: 210665 Modified: head/graphics/ruby-image_size/Makefile head/graphics/ruby-image_size/pkg-plist Modified: head/graphics/ruby-image_size/Makefile ============================================================================== --- head/graphics/ruby-image_size/Makefile Thu Sep 15 14:38:02 2016 (r422198) +++ head/graphics/ruby-image_size/Makefile Thu Sep 15 14:58:36 2016 (r422199) @@ -3,6 +3,7 @@ PORTNAME= image_size PORTVERSION= 0.0.20040618 +PORTREVISION= 1 CATEGORIES= graphics ruby MASTER_SITES= http://www.rubycgi.org/archive/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -19,26 +20,18 @@ WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes -RUBY_RD_FILES= readme.ja.rd readme.rd - -DOCS_EN= ${RUBY_RD_FILES:N*.ja.rd} \ - ${RUBY_RD_HTML_FILES:N*.ja.html} -DOCS_JA= ${RUBY_RD_FILES:M*.ja.rd} \ - ${RUBY_RD_HTML_FILES:M*.ja.html} - OPTIONS_DEFINE= DOCS +DOCS= readme.ja.rd readme.rd + do-install: ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/ ${INSTALL_DATA} ${WRKSRC}/lib/image_size.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ -post-install-DOCS-on:: - ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja -.for f in ${DOCS_EN} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ -.endfor -.for f in ${DOCS_JA} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR} .endfor .include Modified: head/graphics/ruby-image_size/pkg-plist ============================================================================== --- head/graphics/ruby-image_size/pkg-plist Thu Sep 15 14:38:02 2016 (r422198) +++ head/graphics/ruby-image_size/pkg-plist Thu Sep 15 14:58:36 2016 (r422199) @@ -1,5 +1,3 @@ %%RUBY_SITELIBDIR%%/image_size.rb %%PORTDOCS%%%%RUBY_MODDOCDIR%%/readme.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/readme.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/readme.ja.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/ja/readme.ja.html +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/readme.ja.rd From owner-svn-ports-head@freebsd.org Thu Sep 15 15:05:17 2016 Return-Path: Delivered-To: svn-ports-head@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 3BDC2BDB672; Thu, 15 Sep 2016 15:05:17 +0000 (UTC) (envelope-from swills@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 ED90BEF7; Thu, 15 Sep 2016 15:05:16 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FF5Gaf026582; Thu, 15 Sep 2016 15:05:16 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FF5GNZ026580; Thu, 15 Sep 2016 15:05:16 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151505.u8FF5GNZ026580@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 15:05:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422200 - head/japanese/ruby-romkan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:05:17 -0000 Author: swills Date: Thu Sep 15 15:05:15 2016 New Revision: 422200 URL: https://svnweb.freebsd.org/changeset/ports/422200 Log: japanese/ruby-romkan: remove RUBY_RD_FILES PR: 210665 Modified: head/japanese/ruby-romkan/Makefile head/japanese/ruby-romkan/pkg-plist Modified: head/japanese/ruby-romkan/Makefile ============================================================================== --- head/japanese/ruby-romkan/Makefile Thu Sep 15 14:58:36 2016 (r422199) +++ head/japanese/ruby-romkan/Makefile Thu Sep 15 15:05:15 2016 (r422200) @@ -3,6 +3,7 @@ PORTNAME= romkan PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= japanese converters ruby MASTER_SITES= http://0xcc.net/ruby-romkan/ DISTNAME= ruby-${PORTNAME}-${PORTVERSION} @@ -15,17 +16,11 @@ USE_RUBY= yes NO_BUILD= yes -EXAMPLES_JA= test.rb test.sh +EXAMPLES= test.rb test.sh -RUBY_RD_FILES= romkan.en.rd romkan.ja.rd +DOCS= ChangeLog romkan.en.rd romkan.ja.rd -DOCS_EN= ChangeLog \ - ${RUBY_RD_FILES:M*.en.rd} \ - ${RUBY_RD_HTML_FILES:M*.en.html} -DOCS_JA= ${RUBY_RD_FILES:M*.ja.rd} \ - ${RUBY_RD_HTML_FILES:M*.ja.html} - -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS EXAMPLES .include @@ -35,16 +30,16 @@ do-install: ${MKDIR} ${STAGEDIR}/${RUBY_SITELIBDIR} ${INSTALL_SCRIPT} ${WRKSRC}/romkan.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ - ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ja -.for f in ${EXAMPLES_JA} - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ja/ +do-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} +.for f in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .endfor - ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja -.for f in ${DOCS_EN} + +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} +.for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor -.for f in ${DOCS_JA} - ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ -.endfor .include Modified: head/japanese/ruby-romkan/pkg-plist ============================================================================== --- head/japanese/ruby-romkan/pkg-plist Thu Sep 15 14:58:36 2016 (r422199) +++ head/japanese/ruby-romkan/pkg-plist Thu Sep 15 15:05:15 2016 (r422200) @@ -1,8 +1,6 @@ %%RUBY_SITELIBDIR%%/romkan.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/ja/test.rb -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/ja/test.sh +%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test.rb +%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test.sh %%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/romkan.en.html %%PORTDOCS%%%%RUBY_MODDOCDIR%%/romkan.en.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/ja/romkan.ja.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/romkan.ja.rd +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/romkan.ja.rd From owner-svn-ports-head@freebsd.org Thu Sep 15 15:06:07 2016 Return-Path: Delivered-To: svn-ports-head@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 C828BBDB6F6; Thu, 15 Sep 2016 15:06:07 +0000 (UTC) (envelope-from swills@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 5D23730B; Thu, 15 Sep 2016 15:06:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FF66Gd026719; Thu, 15 Sep 2016 15:06:06 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FF6639026718; Thu, 15 Sep 2016 15:06:06 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151506.u8FF6639026718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 15:06:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422201 - head/textproc/ruby-htree X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:06:08 -0000 Author: swills Date: Thu Sep 15 15:06:06 2016 New Revision: 422201 URL: https://svnweb.freebsd.org/changeset/ports/422201 Log: textproc/ruby-htree: remove RUBY_RD_HTML_FILES PR: 210665 Modified: head/textproc/ruby-htree/Makefile Modified: head/textproc/ruby-htree/Makefile ============================================================================== --- head/textproc/ruby-htree/Makefile Thu Sep 15 15:05:15 2016 (r422200) +++ head/textproc/ruby-htree/Makefile Thu Sep 15 15:06:06 2016 (r422201) @@ -19,7 +19,6 @@ USE_RUBY_RDOC= yes LIB_FILES= htree.rb htree DOCS= README \ - ${RUBY_RD_HTML_FILES} \ doc DOCSDIR= ${RUBY_MODDOCDIR} PORTDOCS= * @@ -34,6 +33,8 @@ do-build: do-install: @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} cd ${INSTALL_WRKSRC}; ${CP} -R ${LIB_FILES} ${STAGEDIR}${RUBY_SITELIBDIR}/ + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} .for f in ${DOCS} ${CP} -R ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ From owner-svn-ports-head@freebsd.org Thu Sep 15 15:06:52 2016 Return-Path: Delivered-To: svn-ports-head@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 23F21BDB779; Thu, 15 Sep 2016 15:06:52 +0000 (UTC) (envelope-from swills@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 E92617E1; Thu, 15 Sep 2016 15:06:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FF6peV026849; Thu, 15 Sep 2016 15:06:51 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FF6p8P026848; Thu, 15 Sep 2016 15:06:51 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151506.u8FF6p8P026848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 15:06:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422202 - head/textproc/ruby-rttool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:06:52 -0000 Author: swills Date: Thu Sep 15 15:06:50 2016 New Revision: 422202 URL: https://svnweb.freebsd.org/changeset/ports/422202 Log: textproc/ruby-rttool: remove USE_RUBY_RDTOOL PR: 210665 Modified: head/textproc/ruby-rttool/Makefile Modified: head/textproc/ruby-rttool/Makefile ============================================================================== --- head/textproc/ruby-rttool/Makefile Thu Sep 15 15:06:06 2016 (r422201) +++ head/textproc/ruby-rttool/Makefile Thu Sep 15 15:06:50 2016 (r422202) @@ -18,11 +18,12 @@ LICENSE= RUBY USE_RUBY= yes USES= shebangfix USE_RUBY_SETUP= yes -USE_RUBY_RDTOOL= yes SHEBANG_FILES= bin/rt/* lib/rt/* RUBY_MODNAME= rt +BUILD_DEPENDS= rd2:textproc/ruby-rdtool + DOCS_EN= rttool.en.html rttool.en.rd DOCS_JA= rttool.ja.html rttool.ja.rd From owner-svn-ports-head@freebsd.org Thu Sep 15 15:08:27 2016 Return-Path: Delivered-To: svn-ports-head@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 7DCC7BDB7FC; Thu, 15 Sep 2016 15:08:27 +0000 (UTC) (envelope-from swills@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 34E5091C; Thu, 15 Sep 2016 15:08:27 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FF8Q4V027026; Thu, 15 Sep 2016 15:08:26 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FF8QD6027024; Thu, 15 Sep 2016 15:08:26 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151508.u8FF8QD6027024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 15:08:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422203 - head/textproc/ruby-sary X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:08:27 -0000 Author: swills Date: Thu Sep 15 15:08:26 2016 New Revision: 422203 URL: https://svnweb.freebsd.org/changeset/ports/422203 Log: textproc/ruby-sary: remove RUBY_RD_FILES PR: 210665 Modified: head/textproc/ruby-sary/Makefile head/textproc/ruby-sary/pkg-plist Modified: head/textproc/ruby-sary/Makefile ============================================================================== --- head/textproc/ruby-sary/Makefile Thu Sep 15 15:06:50 2016 (r422202) +++ head/textproc/ruby-sary/Makefile Thu Sep 15 15:08:26 2016 (r422203) @@ -3,7 +3,7 @@ PORTNAME= sary PORTVERSION= 1.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc ruby MASTER_SITES= http://sary.sourceforge.net/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} @@ -28,21 +28,14 @@ USE_RUBY= yes USE_RUBY_EXTCONF= yes USES= pkgconfig -RUBY_RD_FILES= *.en.rd *.ja.rd - -DOCS_EN= ChangeLog \ - ${RUBY_RD_FILES:M*.en.rd} \ - ${RUBY_RD_HTML_FILES:M*.en.html} -DOCS_JA= ${RUBY_RD_FILES:M*.ja.rd} \ - ${RUBY_RD_HTML_FILES:M*.ja.html} +DOCS= ChangeLog *.en.rd *.ja.rd post-install: ${STRIP_CMD} ${STAGEDIR}${RUBY_SITEARCHLIBDIR:C/^${LOCALBASE}/${PREFIX}/}/sary.so ${INSTALL_SCRIPT} ${WRKSRC}/rsary.rb ${STAGEDIR}${PREFIX}/bin/ -post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS_EN} ${STAGEDIR}${RUBY_MODDOCDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS_JA} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ +do-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} + cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${RUBY_MODDOCDIR}/ .include Modified: head/textproc/ruby-sary/pkg-plist ============================================================================== --- head/textproc/ruby-sary/pkg-plist Thu Sep 15 15:06:50 2016 (r422202) +++ head/textproc/ruby-sary/pkg-plist Thu Sep 15 15:08:26 2016 (r422203) @@ -1,11 +1,7 @@ bin/rsary.rb %%RUBY_SITEARCHLIBDIR%%/sary.so %%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/README.en.html %%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.en.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/Reference.en.html %%PORTDOCS%%%%RUBY_MODDOCDIR%%/Reference.en.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/ja/README.ja.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/README.ja.rd -%%PORTDOCS%%%%RUBY_RD_HTML_FILES%%%%RUBY_MODDOCDIR%%/ja/Reference.ja.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ja/Reference.ja.rd +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.ja.rd +%%PORTDOCS%%%%RUBY_MODDOCDIR%%/Reference.ja.rd From owner-svn-ports-head@freebsd.org Thu Sep 15 15:13:17 2016 Return-Path: Delivered-To: svn-ports-head@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 6E157BDBAF3; Thu, 15 Sep 2016 15:13:17 +0000 (UTC) (envelope-from olivierd@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 4A477F98; Thu, 15 Sep 2016 15:13:17 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFDGE2030659; Thu, 15 Sep 2016 15:13:16 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFDGQj030655; Thu, 15 Sep 2016 15:13:16 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609151513.u8FFDGQj030655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Thu, 15 Sep 2016 15:13:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422204 - in head/x11/xfce4-clipman-plugin: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:13:17 -0000 Author: olivierd Date: Thu Sep 15 15:13:15 2016 New Revision: 422204 URL: https://svnweb.freebsd.org/changeset/ports/422204 Log: - Update to 1.4.0 - Remove UNIQUE option - Adjust dependencies (reported by QA script) Added: head/x11/xfce4-clipman-plugin/files/ head/x11/xfce4-clipman-plugin/files/patch-panel-plugin_Makefile.in (contents, props changed) Modified: head/x11/xfce4-clipman-plugin/Makefile head/x11/xfce4-clipman-plugin/distinfo head/x11/xfce4-clipman-plugin/pkg-plist Modified: head/x11/xfce4-clipman-plugin/Makefile ============================================================================== --- head/x11/xfce4-clipman-plugin/Makefile Thu Sep 15 15:08:26 2016 (r422203) +++ head/x11/xfce4-clipman-plugin/Makefile Thu Sep 15 15:13:15 2016 (r422204) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-clipman-plugin -PORTVERSION= 1.2.6 -PORTREVISION= 2 +PORTVERSION= 1.4.0 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 @@ -13,20 +12,19 @@ COMMENT= Clipboard manager for the Xfce LICENSE= GPLv2 -OPTIONS_DEFINE= QRCODE UNIQUE -OPTIONS_DEFAULT= UNIQUE +LIB_DEPENDS= libdbus-1.so:devel/dbus \ + libdbus-glib-1.so:devel/dbus-glib + +OPTIONS_DEFINE= QRCODE QRCODE_DESC= QR Code support -UNIQUE_DESC= Unique (single instance) support QRCODE_LIB_DEPENDS= libqrencode.so:graphics/libqrencode QRCODE_CONFIGURE_ENABLE= libqrencode -UNIQUE_LIB_DEPENDS= libunique-1.0.so:x11-toolkits/unique -UNIQUE_CONFIGURE_ENABLE= unique GNU_CONFIGURE= yes -USE_GNOME= gtk20 intltool intlhack glib20 +USE_GNOME= gtk30 intltool intlhack glib20 cairo USE_XFCE= panel -USE_XORG= xtst xproto -USES= gettext gmake libtool pkgconfig xfce tar:bzip2 +USE_XORG= ice sm x11 xtst xproto +USES= gettext gmake libtool pkgconfig tar:bzip2 xfce:gtk3 INSTALLS_ICONS= yes .include Modified: head/x11/xfce4-clipman-plugin/distinfo ============================================================================== --- head/x11/xfce4-clipman-plugin/distinfo Thu Sep 15 15:08:26 2016 (r422203) +++ head/x11/xfce4-clipman-plugin/distinfo Thu Sep 15 15:13:15 2016 (r422204) @@ -1,2 +1,3 @@ -SHA256 (xfce4/xfce4-clipman-plugin-1.2.6.tar.bz2) = 23043f99c3e5257d1f3d68b5ee5125e3469c15620d098e22c6250386197f48a5 -SIZE (xfce4/xfce4-clipman-plugin-1.2.6.tar.bz2) = 438346 +TIMESTAMP = 1473932421 +SHA256 (xfce4/xfce4-clipman-plugin-1.4.0.tar.bz2) = a97671540663df1d90503f73695ac36e16fa2c832be8845ad9402529b8148294 +SIZE (xfce4/xfce4-clipman-plugin-1.4.0.tar.bz2) = 471045 Added: head/x11/xfce4-clipman-plugin/files/patch-panel-plugin_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xfce4-clipman-plugin/files/patch-panel-plugin_Makefile.in Thu Sep 15 15:13:15 2016 (r422204) @@ -0,0 +1,12 @@ +--- panel-plugin/Makefile.in.orig 2016-09-15 08:18:26 UTC ++++ panel-plugin/Makefile.in +@@ -1326,7 +1326,8 @@ uninstall-am: uninstall-actionsDATA unin + @INTLTOOL_DESKTOP_RULE@ + + install-exec-hook: +- $(LN_S) -f $(exec_prefix)/bin/xfce4-popup-clipman $(DESTDIR)$(exec_prefix)/bin/xfce4-popup-clipman-actions ++ cd $(DESTDIR)$(exec_prefix)/bin && \ ++ $(LN_S) xfce4-popup-clipman xfce4-popup-clipman-actions + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. Modified: head/x11/xfce4-clipman-plugin/pkg-plist ============================================================================== --- head/x11/xfce4-clipman-plugin/pkg-plist Thu Sep 15 15:08:26 2016 (r422203) +++ head/x11/xfce4-clipman-plugin/pkg-plist Thu Sep 15 15:13:15 2016 (r422204) @@ -1,6 +1,7 @@ bin/xfce4-clipman bin/xfce4-clipman-settings bin/xfce4-popup-clipman +bin/xfce4-popup-clipman-actions etc/xdg/autostart/xfce4-clipman-plugin-autostart.desktop etc/xdg/xfce4/panel/xfce4-clipman-actions.xml lib/xfce4/panel/plugins/libclipman.so From owner-svn-ports-head@freebsd.org Thu Sep 15 15:16:41 2016 Return-Path: Delivered-To: svn-ports-head@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 38C85BDBBEE; Thu, 15 Sep 2016 15:16:41 +0000 (UTC) (envelope-from olivierd@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 E544718F; Thu, 15 Sep 2016 15:16:40 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFGerS030932; Thu, 15 Sep 2016 15:16:40 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFGeNa030930; Thu, 15 Sep 2016 15:16:40 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609151516.u8FFGeNa030930@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Thu, 15 Sep 2016 15:16:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422205 - head/sysutils/xfce4-settings X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:16:41 -0000 Author: olivierd Date: Thu Sep 15 15:16:39 2016 New Revision: 422205 URL: https://svnweb.freebsd.org/changeset/ports/422205 Log: Update to 4.12.1 Modified: head/sysutils/xfce4-settings/Makefile head/sysutils/xfce4-settings/distinfo Modified: head/sysutils/xfce4-settings/Makefile ============================================================================== --- head/sysutils/xfce4-settings/Makefile Thu Sep 15 15:13:15 2016 (r422204) +++ head/sysutils/xfce4-settings/Makefile Thu Sep 15 15:16:39 2016 (r422205) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= xfce4-settings -PORTVERSION= 4.12.0 -PORTREVISION= 1 +PORTVERSION= 4.12.1 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE +MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org @@ -14,16 +13,17 @@ COMMENT= Xfce 4 settings application LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \ +LIB_DEPENDS= libdbus-1.so:devel/dbus \ + libdbus-glib-1.so:devel/dbus-glib \ libfontconfig.so:x11-fonts/fontconfig \ libxklavier.so:x11/libxklavier GNU_CONFIGURE= yes INSTALLS_ICONS= yes -USE_GNOME= glib20 gtk20 intltool intlhack +USE_GNOME= glib20 gtk20 cairo intltool intlhack USE_XFCE= garcon libexo USE_XORG= inputproto x11 xcursor xi xrandr -USES= libtool pkgconfig gmake gettext-tools xfce tar:bzip2 +USES= gettext-tools gmake libtool pkgconfig tar:bzip2 xfce CONFIGURE_ARGS=--enable-debug=yes \ --disable-xorg-libinput Modified: head/sysutils/xfce4-settings/distinfo ============================================================================== --- head/sysutils/xfce4-settings/distinfo Thu Sep 15 15:13:15 2016 (r422204) +++ head/sysutils/xfce4-settings/distinfo Thu Sep 15 15:16:39 2016 (r422205) @@ -1,2 +1,3 @@ -SHA256 (xfce4/xfce4-settings-4.12.0.tar.bz2) = 04becef105c19d0266cfe8dbf42619e7233c3b9fa99b43dbfc9c6a5959501f81 -SIZE (xfce4/xfce4-settings-4.12.0.tar.bz2) = 973324 +TIMESTAMP = 1473948189 +SHA256 (xfce4/xfce4-settings-4.12.1.tar.bz2) = f6484a0b1a7dad65ba5ee4eba8e07299b7c92a2a8adb195684e0e2b959886574 +SIZE (xfce4/xfce4-settings-4.12.1.tar.bz2) = 1027325 From owner-svn-ports-head@freebsd.org Thu Sep 15 15:27:53 2016 Return-Path: Delivered-To: svn-ports-head@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 3DCB9BDBF74; Thu, 15 Sep 2016 15:27:53 +0000 (UTC) (envelope-from mat@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 EC7BB97D; Thu, 15 Sep 2016 15:27:52 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFRq8S034947; Thu, 15 Sep 2016 15:27:52 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFRpbh034944; Thu, 15 Sep 2016 15:27:51 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609151527.u8FFRpbh034944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 15 Sep 2016 15:27:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422206 - in head/net-mgmt/nagios-plugins: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:27:53 -0000 Author: mat Date: Thu Sep 15 15:27:51 2016 New Revision: 422206 URL: https://svnweb.freebsd.org/changeset/ports/422206 Log: Update to 2.1.3. PR: 212679 Submitted by: Adrian Murphy Sponsored by: Absolight Modified: head/net-mgmt/nagios-plugins/Makefile (contents, props changed) head/net-mgmt/nagios-plugins/distinfo (contents, props changed) head/net-mgmt/nagios-plugins/files/patch-configure (contents, props changed) Modified: head/net-mgmt/nagios-plugins/Makefile ============================================================================== --- head/net-mgmt/nagios-plugins/Makefile Thu Sep 15 15:16:39 2016 (r422205) +++ head/net-mgmt/nagios-plugins/Makefile Thu Sep 15 15:27:51 2016 (r422206) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nagios-plugins -PORTVERSION= 2.1.2 +PORTVERSION= 2.1.3 PORTREVISION= 0 PORTEPOCH= 1 CATEGORIES= net-mgmt Modified: head/net-mgmt/nagios-plugins/distinfo ============================================================================== --- head/net-mgmt/nagios-plugins/distinfo Thu Sep 15 15:16:39 2016 (r422205) +++ head/net-mgmt/nagios-plugins/distinfo Thu Sep 15 15:27:51 2016 (r422206) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470231717 -SHA256 (nagios-plugins-2.1.2.tar.gz) = f2ed5d07b1823341f9db56b187ae5c0ee9018b6c69a152b6a240c5e14cd94ea4 -SIZE (nagios-plugins-2.1.2.tar.gz) = 2695301 +TIMESTAMP = 1473952706 +SHA256 (nagios-plugins-2.1.3.tar.gz) = 46f57d4b2379f4255719be7605290ec90639b9f411be78091e8971cf54f15453 +SIZE (nagios-plugins-2.1.3.tar.gz) = 2720462 Modified: head/net-mgmt/nagios-plugins/files/patch-configure ============================================================================== --- head/net-mgmt/nagios-plugins/files/patch-configure Thu Sep 15 15:16:39 2016 (r422205) +++ head/net-mgmt/nagios-plugins/files/patch-configure Thu Sep 15 15:27:51 2016 (r422206) @@ -1,6 +1,6 @@ ---- configure.orig 2016-08-01 16:28:00 UTC +--- configure.orig 2016-09-12 15:45:43 UTC +++ configure -@@ -21947,7 +21947,7 @@ then +@@ -21949,7 +21949,7 @@ then $as_echo "$ac_cv_ps_command" >&6; } elif ps -axwwo 'stat comm vsz rss user uid pid ppid args' 2>/dev/null | \ From owner-svn-ports-head@freebsd.org Thu Sep 15 15:28:29 2016 Return-Path: Delivered-To: svn-ports-head@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 26AD6BDC01F; Thu, 15 Sep 2016 15:28:29 +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 DE109AFD; Thu, 15 Sep 2016 15:28:28 +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 u8FFSSb6035124; Thu, 15 Sep 2016 15:28:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFSR1R035121; Thu, 15 Sep 2016 15:28:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609151528.u8FFSR1R035121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 15 Sep 2016 15:28:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422207 - in head/www: firefox firefox-i18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:28:29 -0000 Author: jbeich Date: Thu Sep 15 15:28:27 2016 New Revision: 422207 URL: https://svnweb.freebsd.org/changeset/ports/422207 Log: www/firefox: update to 49.0 (rc3) Mozilla shortened 51.0 Aurora and 50.0 Beta cycles[1] instead of releasing 49.0.1 shortly after 49.0 which led to ESR security fixes delayed as well for no good reason. The latter didn't affect us because for a short time r421490 and r421531 traded stability for security at the cost of only slightly confusing www/firefox users, mainly due to this commit. [1] https://www.mail-archive.com/dev-platform@lists.mozilla.org/msg19725.html Changes: https://hg.mozilla.org/releases/mozilla-release/pushloghtml?startdate=2016-09-08&enddate=2016-09-13 MFH: 2016Q3 Modified: head/www/firefox-i18n/Makefile (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/distinfo (contents, props changed) Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Thu Sep 15 15:27:51 2016 (r422206) +++ head/www/firefox-i18n/Makefile Thu Sep 15 15:28:27 2016 (r422207) @@ -5,7 +5,7 @@ PORTNAME= firefox-i18n PORTVERSION= 49.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build3/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Thu Sep 15 15:27:51 2016 (r422206) +++ head/www/firefox/Makefile Thu Sep 15 15:28:27 2016 (r422207) @@ -4,11 +4,11 @@ PORTNAME= firefox DISTVERSION= 49.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Thu Sep 15 15:27:51 2016 (r422206) +++ head/www/firefox/distinfo Thu Sep 15 15:28:27 2016 (r422207) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473148535 -SHA256 (firefox-49.0.source.tar.xz) = feaded1735a270a0e66ea93262d28e210c6e348ee3af62d93da9d615ea9063b1 -SIZE (firefox-49.0.source.tar.xz) = 189545372 +TIMESTAMP = 1473848106 +SHA256 (firefox-49.0.source.tar.xz) = d1678e22a600f312b83478083ba5fc3f64ce92165ab9aeb1d91243f2a80e639b +SIZE (firefox-49.0.source.tar.xz) = 189617796 From owner-svn-ports-head@freebsd.org Thu Sep 15 15:33:49 2016 Return-Path: Delivered-To: svn-ports-head@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 8ECE1BDC234; Thu, 15 Sep 2016 15:33:49 +0000 (UTC) (envelope-from olivierd@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 615E3FFD; Thu, 15 Sep 2016 15:33:49 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFXmCO039122; Thu, 15 Sep 2016 15:33:48 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFXm51039121; Thu, 15 Sep 2016 15:33:48 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609151533.u8FFXm51039121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Thu, 15 Sep 2016 15:33:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422208 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:33:49 -0000 Author: olivierd Date: Thu Sep 15 15:33:48 2016 New Revision: 422208 URL: https://svnweb.freebsd.org/changeset/ports/422208 Log: perldude.de (one of Xfce mirrors sites) is not regularly synchronized compared to others Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Thu Sep 15 15:28:27 2016 (r422207) +++ head/Mk/bsd.sites.mk Thu Sep 15 15:33:48 2016 (r422208) @@ -1213,14 +1213,14 @@ MASTER_SITE_XCONTRIB+= \ .if !defined(IGNORE_MASTER_SITE_XFCE) MASTER_SITE_XFCE+= \ - http://mirror.perldude.de/archive.xfce.org/%SUBDIR%/ \ http://mirror.netcologne.de/xfce/%SUBDIR%/ \ http://ftp.udc.es/xfce/%SUBDIR%/ \ http://xfce.mirror.uber.com.au/%SUBDIR%/ \ http://archive.be.xfce.org/%SUBDIR%/ \ http://archive.be2.xfce.org/%SUBDIR%/ \ http://archive.al-us.xfce.org/%SUBDIR%/ \ - http://mirrors.tummy.com/pub/archive.xfce.org/%SUBDIR%/ + http://mirrors.tummy.com/pub/archive.xfce.org/%SUBDIR%/ \ + http://mirror.perldude.de/archive.xfce.org/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_XORG) From owner-svn-ports-head@freebsd.org Thu Sep 15 15:39:56 2016 Return-Path: Delivered-To: svn-ports-head@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 A4C3EBDC328; Thu, 15 Sep 2016 15:39:56 +0000 (UTC) (envelope-from riggs@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 6741D2BA; Thu, 15 Sep 2016 15:39:56 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFdtAp039487; Thu, 15 Sep 2016 15:39:55 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFdttx039483; Thu, 15 Sep 2016 15:39:55 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609151539.u8FFdttx039483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 15 Sep 2016 15:39:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422209 - in head/textproc: . pear-Validate_ISPN X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:39:56 -0000 Author: riggs Date: Thu Sep 15 15:39:55 2016 New Revision: 422209 URL: https://svnweb.freebsd.org/changeset/ports/422209 Log: Add new port: textproc/pear-Validate_ISPN PR: 212299 Submitted by: dbaio@bsd.com.br (maintainer of textproc/pear-Validate_ISPN) Added: head/textproc/pear-Validate_ISPN/ head/textproc/pear-Validate_ISPN/Makefile (contents, props changed) head/textproc/pear-Validate_ISPN/distinfo (contents, props changed) head/textproc/pear-Validate_ISPN/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Sep 15 15:33:48 2016 (r422208) +++ head/textproc/Makefile Thu Sep 15 15:39:55 2016 (r422209) @@ -1147,6 +1147,7 @@ SUBDIR += pear-Symfony_Component_Yaml SUBDIR += pear-Text_Highlighter SUBDIR += pear-Text_Template + SUBDIR += pear-Validate_ISPN SUBDIR += pear-XML_Beautifier SUBDIR += pear-XML_DTD SUBDIR += pear-XML_Feed_Parser Added: head/textproc/pear-Validate_ISPN/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pear-Validate_ISPN/Makefile Thu Sep 15 15:39:55 2016 (r422209) @@ -0,0 +1,19 @@ +# Created by: Danilo G. Baio +# $FreeBSD$ + +PORTNAME= Validate_ISPN +PORTVERSION= 0.6.1 +CATEGORIES= textproc pear + +MAINTAINER= dbaio@bsd.com.br +COMMENT= Validation class for ISPN (International Standard Product Numbers) + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PEARDIR}/Validate.php:devel/pear-Validate + +USES= pear +NO_ARCH= yes + +.include Added: head/textproc/pear-Validate_ISPN/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pear-Validate_ISPN/distinfo Thu Sep 15 15:39:55 2016 (r422209) @@ -0,0 +1,3 @@ +TIMESTAMP = 1472680879 +SHA256 (PEAR/Validate_ISPN-0.6.1.tgz) = d6f4f05b48af3ac9e447e5d3c082d0b1702976798247940aad7b78b2b234b6ec +SIZE (PEAR/Validate_ISPN-0.6.1.tgz) = 5719 Added: head/textproc/pear-Validate_ISPN/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/pear-Validate_ISPN/pkg-descr Thu Sep 15 15:39:55 2016 (r422209) @@ -0,0 +1,12 @@ +This class provides methods to validate: + - ISBN (International Standard Book Number) + - ISSN (International Standard Serial Number) + - ISMN (International Standard Music Number) + - ISRC (International Standard Recording Code) + - EAN/UCC-8 number + - EAN/UCC-13 number + - EAN/UCC-14 number + - UCC-12 (U.P.C.) ID number + - SSCC (Serial Shipping Container Code) + +WWW: http://pear.php.net/package/Validate_ISPN From owner-svn-ports-head@freebsd.org Thu Sep 15 15:43:21 2016 Return-Path: Delivered-To: svn-ports-head@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 DE18BBDC4D4; Thu, 15 Sep 2016 15:43:21 +0000 (UTC) (envelope-from riggs@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 97225925; Thu, 15 Sep 2016 15:43:21 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFhK67042999; Thu, 15 Sep 2016 15:43:20 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFhKv9042997; Thu, 15 Sep 2016 15:43:20 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609151543.u8FFhKv9042997@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 15 Sep 2016 15:43:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422210 - head/textproc/pear-File_MARC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:43:22 -0000 Author: riggs Date: Thu Sep 15 15:43:20 2016 New Revision: 422210 URL: https://svnweb.freebsd.org/changeset/ports/422210 Log: Update to upstream version 1.1.3, overhaul, new maintainer Detailed log: - Update to upstream version 1.1.3 - New maintainer: Danilo G. Baio - Add LICENSE* - Add non-default OPTION ISPN - Set NO_ARCH PR: 212300 Submitted by: dbaio@bsd.com.br (maintainer) Modified: head/textproc/pear-File_MARC/Makefile head/textproc/pear-File_MARC/distinfo Modified: head/textproc/pear-File_MARC/Makefile ============================================================================== --- head/textproc/pear-File_MARC/Makefile Thu Sep 15 15:39:55 2016 (r422209) +++ head/textproc/pear-File_MARC/Makefile Thu Sep 15 15:43:20 2016 (r422210) @@ -2,12 +2,21 @@ # $FreeBSD$ PORTNAME= File_MARC -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.3 CATEGORIES= textproc pear -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= Parse, modify, and create MARC records +LICENSE= LGPL21+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +OPTIONS_DEFINE= ISPN + +ISPN_DESC= Validation class for ISPN (International Standard Product Numbers) +ISPN_RUN_DEPENDS= ${PEARDIR}/Validate/ISPN.php:textproc/pear-Validate_ISPN + USES= pear +NO_ARCH= yes .include Modified: head/textproc/pear-File_MARC/distinfo ============================================================================== --- head/textproc/pear-File_MARC/distinfo Thu Sep 15 15:39:55 2016 (r422209) +++ head/textproc/pear-File_MARC/distinfo Thu Sep 15 15:43:20 2016 (r422210) @@ -1,2 +1,3 @@ -SHA256 (PEAR/File_MARC-1.1.2.tgz) = 77fe923393410a409224c82a069351e0adb94db8e8da8eb4cfd1b59483c21e09 -SIZE (PEAR/File_MARC-1.1.2.tgz) = 94046 +TIMESTAMP = 1472677005 +SHA256 (PEAR/File_MARC-1.1.3.tgz) = 981aca87d12d496867ee20880528d1661543e61ac3d5ed9c9a4afc0f32011eba +SIZE (PEAR/File_MARC-1.1.3.tgz) = 94433 From owner-svn-ports-head@freebsd.org Thu Sep 15 15:49:26 2016 Return-Path: Delivered-To: svn-ports-head@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 8AAABBDC567; Thu, 15 Sep 2016 15:49:26 +0000 (UTC) (envelope-from swills@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 58E41AD7; Thu, 15 Sep 2016 15:49:26 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFnPja043300; Thu, 15 Sep 2016 15:49:25 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFnPVj043299; Thu, 15 Sep 2016 15:49:25 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151549.u8FFnPVj043299@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 15:49:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422211 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:49:26 -0000 Author: swills Date: Thu Sep 15 15:49:25 2016 New Revision: 422211 URL: https://svnweb.freebsd.org/changeset/ports/422211 Log: Mk/bsd.ruby.mk: remove rdtool support rdtool support has been disabled by default for 12 years and isn't needed Modified: head/Mk/bsd.ruby.mk Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Thu Sep 15 15:43:20 2016 (r422210) +++ head/Mk/bsd.ruby.mk Thu Sep 15 15:49:25 2016 (r422211) @@ -44,7 +44,6 @@ Ruby_Include_MAINTAINER= ruby@FreeBSD.or # build. # RUBY_SETUP - Set to the alternative name of setup.rb # (default: setup.rb). -# USE_RUBY_RDTOOL - Says that the port uses rdtool to generate documents. # USE_RUBY_RDOC - Says that the port uses rdoc to generate documents. # RUBY_REQUIRE - Set to a Ruby expression to evaluate before building # the port. The constant "Ruby" is set to the integer @@ -52,10 +51,6 @@ Ruby_Include_MAINTAINER= ruby@FreeBSD.or # expression will be set to RUBY_PROVIDED, which is # left undefined if the result is nil, false or a # zero-length string. Implies USE_RUBY. -# RUBY_RD_FILES - Specify the RD files which you want to generate HTML -# documents from. If this is defined and not empty, -# USE_RUBY_RDTOOL is implied and RUBY_RD_HTML_FILES is -# defined. # USE_RUBYGEMS - Do not use this -- instead USES=gem # # [variables that each port should not (re)define] @@ -95,18 +90,15 @@ Ruby_Include_MAINTAINER= ruby@FreeBSD.or # # RUBY_MODNAME - Set to the module name (default: ${PORTNAME}). # -# RUBY_RD2 - Full path of rd2 executable. # RUBY_RDOC - Full path of rdoc executable. # # RUBY_BASE_PORT - Port path of base ruby without PORTSDIR, without # suffix except version. # RUBY_PORT - Port path of ruby without PORTSDIR. -# RUBY_RDTOOL_PORT - Port path of rdtool without PORTSDIR. # RUBY_RDOC_PORT - Port path of rdoc without PORTSDIR. # # DEPEND_LIBRUBY - LIB_DEPENDS entry for libruby. # DEPEND_RUBY - BUILD_DEPENDS/RUN_DEPENDS entry for ruby. -# DEPEND_RUBY_RDTOOL - BUILD_DEPENDS entry for rdtool. # DEPEND_RUBY_RDOC - BUILD_DEPENDS entry for rdoc. # # RUBY_LIBDIR - Installation path for architecture independent @@ -276,18 +268,15 @@ RUBY_CONFIGURE_ARGS+= --program-suffix=" RUBY_MODNAME?= ${PORTNAME} # Commands -RUBY_RD2?= ${LOCALBASE}/bin/rd2 RUBY_RDOC?= ${LOCALBASE}/bin/rdoc${RUBY_VER:S/.//} # Ports RUBY_BASE_PORT?= lang/ruby${RUBY_VER:S/.//} RUBY_PORT?= ${RUBY_BASE_PORT} -RUBY_RDTOOL_PORT?= textproc/ruby-rdtool # Depends DEPEND_LIBRUBY?= lib${RUBY_NAME}.so.${RUBY_SHLIBVER}:${RUBY_PORT} DEPEND_RUBY?= ${RUBY}:${RUBY_PORT} -DEPEND_RUBY_RDTOOL?= ${RUBY_RD2}:${RUBY_RDTOOL_PORT} # Directories RUBY_LIBDIR?= ${_RUBY_SYSLIBDIR}/ruby/${RUBY_VER} @@ -425,45 +414,5 @@ RUN_DEPENDS+= ${DEPEND_RUBY} .endif .endif -# documents - -RUBY_NO_RD_HTML= yes - -.if defined(RUBY_RD_HTML) -.undef RUBY_NO_RD_HTML -.endif - -.if defined(NOPORTDOCS) -RUBY_NO_RD_HTML= yes -.endif - -.if defined(RUBY_RD_FILES) && !defined(RUBY_NO_RD_HTML) -USE_RUBY_RDTOOL= yes - -RUBY_RD_HTML_FILES= ${RUBY_RD_FILES:S/.rb$//:S/.rd././:S/.rd$//:S/$/.html/} - -PLIST_SUB+= RUBY_RD_HTML_FILES="" - -.if !empty(RUBY_RD_FILES) -_USES_install+= 290:ruby-rd-build -ruby-rd-build: - @${ECHO_MSG} "===> Generating HTML documents from RD documents" - @cd ${WRKSRC}; for rd in ${RUBY_RD_FILES}; do \ - html=$$(echo $$rd | ${SED} 's/\.rb$$//;s/\.rd\././;s/\.rd$$//').html; \ - ${ECHO_MSG} "${RUBY_RD2} $$rd > $$html"; \ - ${RUBY_RD2} $$rd > $$html; \ - done -.endif - -.else -RUBY_RD_HTML_FILES= # empty - -PLIST_SUB+= RUBY_RD_HTML_FILES="@comment " -.endif - -.if !defined(NOPORTDOCS) && defined(USE_RUBY_RDTOOL) -BUILD_DEPENDS+= ${DEPEND_RUBY_RDTOOL} -.endif - .endif # _INVALID_RUBY_VER .endif From owner-svn-ports-head@freebsd.org Thu Sep 15 15:50:42 2016 Return-Path: Delivered-To: svn-ports-head@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 9B4ACBDC5B4; Thu, 15 Sep 2016 15:50:42 +0000 (UTC) (envelope-from swills@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 6AD68BFA; Thu, 15 Sep 2016 15:50:42 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FFofQI043453; Thu, 15 Sep 2016 15:50:41 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FFofbF043452; Thu, 15 Sep 2016 15:50:41 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609151550.u8FFofbF043452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 15 Sep 2016 15:50:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422212 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 15:50:42 -0000 Author: swills Date: Thu Sep 15 15:50:41 2016 New Revision: 422212 URL: https://svnweb.freebsd.org/changeset/ports/422212 Log: remove missed comment Modified: head/Mk/bsd.ruby.mk Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Thu Sep 15 15:49:25 2016 (r422211) +++ head/Mk/bsd.ruby.mk Thu Sep 15 15:50:41 2016 (r422212) @@ -18,8 +18,6 @@ Ruby_Include_MAINTAINER= ruby@FreeBSD.or # RUBY_DEFAULT_VER - Set to (e.g.) "2.1" if you want to refer to "ruby21" # just as "ruby". # RUBY_ARCH - (See below) -# RUBY_RD_HTML - Define if you want HTML files generated from RD files. -# # # [variables that each port can define] # From owner-svn-ports-head@freebsd.org Thu Sep 15 16:03:45 2016 Return-Path: Delivered-To: svn-ports-head@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 B892FBDC96E; Thu, 15 Sep 2016 16:03:45 +0000 (UTC) (envelope-from pawel@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 7C8EB819; Thu, 15 Sep 2016 16:03:45 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FG3iWF050954; Thu, 15 Sep 2016 16:03:44 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FG3iTZ050953; Thu, 15 Sep 2016 16:03:44 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201609151603.u8FG3iTZ050953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Thu, 15 Sep 2016 16:03:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422213 - head/audio/csound X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 16:03:45 -0000 Author: pawel Date: Thu Sep 15 16:03:44 2016 New Revision: 422213 URL: https://svnweb.freebsd.org/changeset/ports/422213 Log: Convert to options helpers Modified: head/audio/csound/Makefile Modified: head/audio/csound/Makefile ============================================================================== --- head/audio/csound/Makefile Thu Sep 15 15:50:41 2016 (r422212) +++ head/audio/csound/Makefile Thu Sep 15 16:03:44 2016 (r422213) @@ -7,8 +7,7 @@ PORTREVISION= 4 CATEGORIES= audio lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R} \ SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R}/manual:manual -DISTFILES= ${PORTNAME:S/c/C/}${PORTVERSION}${EXTRACT_SUFX} \ - ${CSOUND_DOCS:S/$/:manual/} +DISTFILES= ${PORTNAME:S/c/C/}${PORTVERSION}${EXTRACT_SUFX} DIST_SUBDIR= csound MAINTAINER= ports@FreeBSD.org @@ -24,19 +23,6 @@ LIB_DEPENDS= libsndfile.so:audio/libsndf PORTSCOUT= limit:^5\. -OPTIONS_DEFINE= ALSA PNG DSSI FLTK FLUIDSYNTH JACK OSC PORTAUDIO PULSEAUDIO DOCS -OPTIONS_DEFAULT=FLTK -OPTIONS_SUB= yes -ALSA_DESC= Build ALSA I/O module -PNG_DESC= Build image opcodes -DSSI_DESC= Build DSSI/LADSPA host opcodes -FLUIDSYNTH_DESC=Building FluidSynth opcodes -JACK_DESC= Build Jack I/O module and opcodes -OSC_DESC= Build OSC opcodes -PORTAUDIO_DESC= Build the PortAudio I/O module -PULSEAUDIO_DESC=Build the PulseAudio I/O module -FLTK_DESC= Build FLTK plugin and GUI - CONFLICTS_INSTALL= outguess-* csound6 WRKSRC= ${WRKDIR}/${PORTNAME:S/c/C/}${PORTVERSION} @@ -58,78 +44,62 @@ LINKFLAGS= # empty SUB_FILES= pkg-message -.include - -.if ${PORT_OPTIONS:MALSA} -LIB_DEPENDS+= libasound.so:audio/alsa-lib -MAKE_ARGS+= useALSA=1 -ALSA_H= alsa/asoundlib.h -.else -MAKE_ARGS+= useALSA=0 -ALSA_H= ##alsa/asoundlib.h## -.endif - -.if ${PORT_OPTIONS:MPNG} -LIB_DEPENDS+= libpng.so:graphics/png -MAKE_ARGS+= buildImageOpcodes=1 -.else -MAKE_ARGS+= buildImageOpcodes=0 -.endif - -.if ${PORT_OPTIONS:MDSSI} -BUILD_DEPENDS+= dssi>=0:audio/dssi -LIB_DEPENDS+= libasound.so:audio/alsa-lib -RUN_DEPENDS+= dssi>=0:audio/dssi -MAKE_ARGS+= buildDSSI=1 -.else -MAKE_ARGS+= buildDSSI=0 -.endif - -.if ${PORT_OPTIONS:MFLUIDSYNTH} -LIB_DEPENDS+= libfluidsynth.so:audio/fluidsynth -FLUIDSYNTH_H= fluidsynth.h -.else -FLUIDSYNTH_H= ##fluidsynth.h## -.endif - -.if ${PORT_OPTIONS:MJACK} -LIB_DEPENDS+= libjack.so:audio/jack -MAKE_ARGS+= useJack=1 -.else -MAKE_ARGS+= useJack=0 -.endif - -.if ${PORT_OPTIONS:MOSC} -LIB_DEPENDS+= liblo.so:audio/liblo -MAKE_ARGS+= useOSC=1 -.else -MAKE_ARGS+= useOSC=0 -.endif - -.if ${PORT_OPTIONS:MPORTAUDIO} -LIB_DEPENDS+= libportaudio.so:audio/portaudio -MAKE_ARGS+= usePortAudio=1 -.else -MAKE_ARGS+= usePortAudio=0 -.endif +OPTIONS_DEFINE= ALSA PNG DSSI FLTK FLUIDSYNTH JACK OSC PORTAUDIO PULSEAUDIO DOCS +OPTIONS_DEFAULT=FLTK +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= libpulse-simple.so:audio/pulseaudio -PULSEAUDIO_H= pulse/simple.h -.else -PULSEAUDIO_H= ##pulse/simple.h## -.endif +ALSA_DESC= ALSA I/O module +ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib +ALSA_MAKE_ARGS= useALSA=1 +ALSA_MAKE_ARGS_OFF= useALSA=0 +ALSA_VARS= ALSA_H=alsa/asoundlib.h +ALSA_VARS_OFF= ALSA_H=##alsa/asoundlib.h## + +PNG_DESC= Image opcodes +PNG_LIB_DEPENDS= libpng.so:graphics/png +PNG_MAKE_ARGS= buildImageOpcodes=1 +PNG_MAKE_ARGS_OFF= buildImageOpcodes=0 + +DSSI_DESC= DSSI/LADSPA host opcodes +DSSI_BUILD_DEPENDS= dssi>=0:audio/dssi +DSSI_LIB_DEPENDS= libasound.so:audio/alsa-lib +DSSI_RUN_DEPENDS= dssi>=0:audio/dssi +DSSI_MAKE_ARGS= buildDSSI=1 +DSSI_MAKE_ARGS_OFF= buildDSSI=0 + +FLUIDSYNTH_DESC= FluidSynth opcodes +FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth +FLUIDSYNTH_VARS= FLUIDSYNTH_H=fluidsynth.h +FLUIDSYNTH_VARS_OFF= FLUIDSYNTH_H=##fluidsynth.h## + +JACK_DESC= Jack I/O module and opcodes +JACK_LIB_DEPENDS= libjack.so:audio/jack +JACK_MAKE_ARGS= useJack=1 +JACK_MAKE_ARGS_OFF= useJack=0 + +OSC_DESC= OSC opcodes +OSC_LIB_DEPENDS= liblo.so:audio/liblo +OSC_MAKE_ARGS= useOSC=1 +OSC_MAKE_ARGS_OFF= useOSC=0 + +PORTAUDIO_DESC= PortAudio I/O module +PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio +PORTAUDIO_MAKE_ARGS= usePortAudio=1 +PORTAUDIO_MAKE_ARGS_OFF=usePortAudio=0 + +PULSEAUDIO_DESC= PulseAudio I/O module +PULSEAUDIO_LIB_DEPENDS= libpulse-simple.so:audio/pulseaudio +PULSEAUDIO_VARS= PULSEAUDIO_H=pulse/simple.h +PULSEAUDIO_VARS_OFF= PULSEAUDIO_H=##pulse/simple.h## + +FLTK_DESC= FLTK plugin and GUI +FLTK_LIB_DEPENDS= libfltk.so:x11-toolkits/fltk +FLTK_MAKE_ARGS= buildCsound5GUI=1 buildCSEditor=1 buildWinsound=1 useFLTK=1 +FLTK_MAKE_ARGS_OFF= buildCsound5GUI=0 buildCSEditor=0 buildWinsound=0 useFLTK=0 -.if ${PORT_OPTIONS:MFLTK} -LIB_DEPENDS+= libfltk.so:x11-toolkits/fltk -MAKE_ARGS+= buildCsound5GUI=1 buildCSEditor=1 buildWinsound=1 useFLTK=1 -.else -MAKE_ARGS+= buildCsound5GUI=0 buildCSEditor=0 buildWinsound=0 useFLTK=0 -.endif +DOCS_DISTFILES= Csound${PORTVERSION:R}_manual_html.zip:manual -.if ${PORT_OPTIONS:MDOCS} -CSOUND_DOCS= Csound${PORTVERSION:R}_manual_html.zip -.endif +.include .if ${ARCH} == amd64 || ${ARCH} == sparc64 || ${ARCH} == ia64 MAKE_ARGS+= Word64=1 @@ -193,4 +163,4 @@ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKDIR}/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) -.include +.include From owner-svn-ports-head@freebsd.org Thu Sep 15 16:16:24 2016 Return-Path: Delivered-To: svn-ports-head@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 65E20BDCB52; Thu, 15 Sep 2016 16:16:24 +0000 (UTC) (envelope-from marino@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 0FB71104C; Thu, 15 Sep 2016 16:16:23 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FGGNxF055168; Thu, 15 Sep 2016 16:16:23 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FGGNGr055165; Thu, 15 Sep 2016 16:16:23 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609151616.u8FGGNGr055165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 15 Sep 2016 16:16:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422214 - in head: graphics/dri graphics/libosmesa lang/clover X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 16:16:24 -0000 Author: marino Date: Thu Sep 15 16:16:22 2016 New Revision: 422214 URL: https://svnweb.freebsd.org/changeset/ports/422214 Log: Add USES+=ssl to 3 of 8 graphics/libGL/Makefile.common consumers Despite having a configure argument of --with-sha1=libcrypto, only three of the eight users of graphics/libGL/Makefile.common actually link to SSL libraries. Individually add USES=ssl to these three ports rather than have all 8 having this requirement. Approved by: SSL blanket Modified: head/graphics/dri/Makefile head/graphics/libosmesa/Makefile head/lang/clover/Makefile Modified: head/graphics/dri/Makefile ============================================================================== --- head/graphics/dri/Makefile Thu Sep 15 16:03:44 2016 (r422213) +++ head/graphics/dri/Makefile Thu Sep 15 16:16:22 2016 (r422214) @@ -11,6 +11,7 @@ COMMENT= OpenGL hardware acceleration dr LIB_DEPENDS= libdrm.so:graphics/libdrm \ libexpat.so:textproc/expat2 +USES= ssl USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto \ presentproto xvmc xshmfence Modified: head/graphics/libosmesa/Makefile ============================================================================== --- head/graphics/libosmesa/Makefile Thu Sep 15 16:03:44 2016 (r422213) +++ head/graphics/libosmesa/Makefile Thu Sep 15 16:16:22 2016 (r422214) @@ -11,6 +11,7 @@ COMMENT= Off-Screen Mesa implementation LIB_DEPENDS= libexpat.so:textproc/expat2 \ libglapi.so:graphics/libglapi +USES= ssl USE_XORG= x11 xau xcb xdmcp xvmc # libosmesa doesn't link agains libGL but osmesa.h needs GL/gl.h # and both headers are intalled by libGL .... Modified: head/lang/clover/Makefile ============================================================================== --- head/lang/clover/Makefile Thu Sep 15 16:03:44 2016 (r422213) +++ head/lang/clover/Makefile Thu Sep 15 16:16:22 2016 (r422214) @@ -13,6 +13,7 @@ LIB_DEPENDS= libdrm.so:graphics/libdrm \ libexpat.so:textproc/expat2 RUN_DEPENDS= opencl>=0:devel/opencl +USES= ssl USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto \ presentproto xvmc xshmfence From owner-svn-ports-head@freebsd.org Thu Sep 15 16:26:01 2016 Return-Path: Delivered-To: svn-ports-head@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 AD320BDCD77; Thu, 15 Sep 2016 16:26:01 +0000 (UTC) (envelope-from gblach@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 57FAF1537; Thu, 15 Sep 2016 16:26:01 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FGQ0vr058991; Thu, 15 Sep 2016 16:26:00 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FGQ0Sl058988; Thu, 15 Sep 2016 16:26:00 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201609151626.u8FGQ0Sl058988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Thu, 15 Sep 2016 16:26:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422215 - head/devel/ninja X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 16:26:01 -0000 Author: gblach Date: Thu Sep 15 16:26:00 2016 New Revision: 422215 URL: https://svnweb.freebsd.org/changeset/ports/422215 Log: - Switch GH_ACCOUNT to ninja-build - Use python also at runtime (needed by 'browse' tool) - Add do-test section - Change WWW to https://ninja-build.org/ - Bump PORTREVISION PR: 212701 Submitted by: gahr Modified: head/devel/ninja/Makefile head/devel/ninja/distinfo head/devel/ninja/pkg-descr Modified: head/devel/ninja/Makefile ============================================================================== --- head/devel/ninja/Makefile Thu Sep 15 16:16:22 2016 (r422214) +++ head/devel/ninja/Makefile Thu Sep 15 16:26:00 2016 (r422215) @@ -4,6 +4,7 @@ PORTNAME= ninja PORTVERSION= 1.7.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= devel @@ -14,10 +15,10 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes -GH_ACCOUNT= martine +GH_ACCOUNT= ninja-build CONFLICTS= irc/ninja-[0-9]* -USES= python:build +USES= python PLIST_FILES= bin/ninja PORTDOCS= HACKING.md README manual.asciidoc @@ -38,4 +39,7 @@ do-install: ${INSTALL_DATA} HACKING.md README doc/manual.asciidoc \ ${STAGEDIR}${DOCSDIR}) +do-test: build + cd ${WRKSRC} && ./ninja ninja_test && ./ninja_test + .include Modified: head/devel/ninja/distinfo ============================================================================== --- head/devel/ninja/distinfo Thu Sep 15 16:16:22 2016 (r422214) +++ head/devel/ninja/distinfo Thu Sep 15 16:26:00 2016 (r422215) @@ -1,2 +1,3 @@ -SHA256 (martine-ninja-v1.7.1_GH0.tar.gz) = 51581de53cf4705b89eb6b14a85baa73288ad08bff256e7d30d529155813be19 -SIZE (martine-ninja-v1.7.1_GH0.tar.gz) = 179717 +TIMESTAMP = 1473955296 +SHA256 (ninja-build-ninja-v1.7.1_GH0.tar.gz) = 51581de53cf4705b89eb6b14a85baa73288ad08bff256e7d30d529155813be19 +SIZE (ninja-build-ninja-v1.7.1_GH0.tar.gz) = 179717 Modified: head/devel/ninja/pkg-descr ============================================================================== --- head/devel/ninja/pkg-descr Thu Sep 15 16:16:22 2016 (r422214) +++ head/devel/ninja/pkg-descr Thu Sep 15 16:26:00 2016 (r422215) @@ -8,4 +8,4 @@ over 30,000 source files and whose other from custom non-recursive Makefiles) can take ten seconds to start building after changing one file. Ninja is under a second. -WWW: https://github.com/martine/ninja +WWW: https://ninja-build.org/ From owner-svn-ports-head@freebsd.org Thu Sep 15 16:40:18 2016 Return-Path: Delivered-To: svn-ports-head@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 27583BDCFC7; Thu, 15 Sep 2016 16:40:18 +0000 (UTC) (envelope-from antoine@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 EE5131CB6; Thu, 15 Sep 2016 16:40:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FGeHOG062852; Thu, 15 Sep 2016 16:40:17 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FGeHgo062851; Thu, 15 Sep 2016 16:40:17 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609151640.u8FGeHgo062851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 15 Sep 2016 16:40:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422216 - head/archivers X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 16:40:18 -0000 Author: antoine Date: Thu Sep 15 16:40:17 2016 New Revision: 422216 URL: https://svnweb.freebsd.org/changeset/ports/422216 Log: Hook pecl-snappy to the build Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Thu Sep 15 16:26:00 2016 (r422215) +++ head/archivers/Makefile Thu Sep 15 16:40:17 2016 (r422216) @@ -142,8 +142,8 @@ SUBDIR += pecl-lzf SUBDIR += pecl-phk SUBDIR += pecl-rar + SUBDIR += pecl-snappy SUBDIR += php-horde_lz4 - SUBDIR += php5-snappy SUBDIR += php55-bz2 SUBDIR += php55-phar SUBDIR += php55-zip From owner-svn-ports-head@freebsd.org Thu Sep 15 17:30:24 2016 Return-Path: Delivered-To: svn-ports-head@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 9BCA6BDB283; Thu, 15 Sep 2016 17:30:24 +0000 (UTC) (envelope-from kwm@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 79CDB95C; Thu, 15 Sep 2016 17:30:24 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FHUNLO082016; Thu, 15 Sep 2016 17:30:23 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FHUN1e082014; Thu, 15 Sep 2016 17:30:23 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201609151730.u8FHUN1e082014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 15 Sep 2016 17:30:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422217 - in head/multimedia/gstreamer1-plugins-bad: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 17:30:24 -0000 Author: kwm Date: Thu Sep 15 17:30:23 2016 New Revision: 422217 URL: https://svnweb.freebsd.org/changeset/ports/422217 Log: Fix a runtime issue which causes the program to SIGABRT when it happens. PR: 212461 Submitted by: cpm@ Obtained from: gstreamer upstream MFH: 2016Q3 Added: head/multimedia/gstreamer1-plugins-bad/files/ head/multimedia/gstreamer1-plugins-bad/files/patch-3aee203 (contents, props changed) Modified: head/multimedia/gstreamer1-plugins-bad/Makefile Modified: head/multimedia/gstreamer1-plugins-bad/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-bad/Makefile Thu Sep 15 16:40:17 2016 (r422216) +++ head/multimedia/gstreamer1-plugins-bad/Makefile Thu Sep 15 17:30:23 2016 (r422217) @@ -1,7 +1,7 @@ # Created by: Michael Johnson # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia COMMENT= GStreamer-plugins that need more quality, testing or documentation Added: head/multimedia/gstreamer1-plugins-bad/files/patch-3aee203 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer1-plugins-bad/files/patch-3aee203 Thu Sep 15 17:30:23 2016 (r422217) @@ -0,0 +1,55 @@ +From 3aee2039591421f4cc8757353034daf0e011a9ce Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= +Date: Thu, 31 Mar 2016 12:20:30 +0300 +Subject: adaptivedemux: Handle find_stream_for_pad() without + g_assert_not_reached() if no pad is found + +Happens e.g. if a RECONFIGURE event is sent from downstream while we're +switching pads at this very moment. The old pad is gone and the stream has a +new pad. + +https://bugzilla.gnome.org/show_bug.cgi?id=764404 + +diff --git a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c b/gst-libs/gst/adaptivedemux/gstadaptivedemux.c +index dfe7ba7..ba29214 100644 +--- gst-libs/gst/adaptivedemux/gstadaptivedemux.c ++++ gst-libs/gst/adaptivedemux/gstadaptivedemux.c +@@ -1092,7 +1092,6 @@ gst_adaptive_demux_find_stream_for_pad (GstAdaptiveDemux * demux, GstPad * pad) + return stream; + } + } +- g_assert_not_reached (); + return NULL; + } + +@@ -1241,6 +1240,7 @@ gst_adaptive_demux_src_event (GstPad * pad, GstObject * parent, + gboolean update; + gboolean ret = TRUE; + GstSegment oldsegment; ++ GstAdaptiveDemuxStream *stream = NULL; + + GST_INFO_OBJECT (demux, "Received seek event"); + +@@ -1318,9 +1318,8 @@ gst_adaptive_demux_src_event (GstPad * pad, GstObject * parent, + * use the one that received the event as the 'leading' + * one to do the snap seek. + */ +- if (IS_SNAP_SEEK (flags) && demux_class->stream_seek) { +- GstAdaptiveDemuxStream *stream = +- gst_adaptive_demux_find_stream_for_pad (demux, pad); ++ if (IS_SNAP_SEEK (flags) && demux_class->stream_seek && (stream = ++ gst_adaptive_demux_find_stream_for_pad (demux, pad))) { + GstClockTime ts; + GstSeekFlags stream_seek_flags = flags; + +@@ -1359,6 +1358,7 @@ gst_adaptive_demux_src_event (GstPad * pad, GstObject * parent, + GST_DEBUG_OBJECT (demux, "Adapted snap seek to %" GST_PTR_FORMAT, + event); + } ++ stream = NULL; + + gst_segment_do_seek (&demux->segment, rate, format, flags, start_type, + start, stop_type, stop, &update); +-- +cgit v0.10.2 + From owner-svn-ports-head@freebsd.org Thu Sep 15 17:49:44 2016 Return-Path: Delivered-To: svn-ports-head@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 F1DE4BDB93E; Thu, 15 Sep 2016 17:49:44 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id E42D9B41; Thu, 15 Sep 2016 17:49:44 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 8600D1A5F; Thu, 15 Sep 2016 17:49:43 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Message-ID: <1473961772.76848.2.camel@FreeBSD.org> Subject: Re: svn commit: r422217 - in head/multimedia/gstreamer1-plugins-bad: . files From: "Carlos J. Puga Medina" To: Koop Mast , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Thu, 15 Sep 2016 19:49:32 +0200 In-Reply-To: <201609151730.u8FHUN1e082014@repo.freebsd.org> References: <201609151730.u8FHUN1e082014@repo.freebsd.org> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-c8hhMvm7PEPNrSPz2E2z" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 17:49:45 -0000 --=-c8hhMvm7PEPNrSPz2E2z Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Thu, 2016-09-15 at 17:30 +0000, Koop Mast wrote: > Author: kwm > Date: Thu Sep 15 17:30:23 2016 > New Revision: 422217 > URL: https://svnweb.freebsd.org/changeset/ports/422217 >=20 > Log: > =C2=A0 Fix a runtime issue which causes the program to SIGABRT when it > happens. > =C2=A0=C2=A0 > =C2=A0 PR: 212461 > =C2=A0 Submitted by: cpm@ > =C2=A0 Obtained from: gstreamer upstream > =C2=A0 MFH: 2016Q3 >=20 > Added: > =C2=A0 head/multimedia/gstreamer1-plugins-bad/files/ > =C2=A0 head/multimedia/gstreamer1-plugins-bad/files/patch- > 3aee203=C2=A0=C2=A0=C2=A0(contents, props changed) > Modified: > =C2=A0 head/multimedia/gstreamer1-plugins-bad/Makefile >=20 > Modified: head/multimedia/gstreamer1-plugins-bad/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D > --- head/multimedia/gstreamer1-plugins-bad/Makefile Thu Sep 15 > 16:40:17 2016 (r422216) > +++ head/multimedia/gstreamer1-plugins-bad/Makefile Thu Sep 15 > 17:30:23 2016 (r422217) > @@ -1,7 +1,7 @@ > =C2=A0# Created by: Michael Johnson > =C2=A0# $FreeBSD$ > =C2=A0 > -PORTREVISION=3D 0 > +PORTREVISION=3D 1 > =C2=A0CATEGORIES=3D multimedia > =C2=A0 > =C2=A0COMMENT=3D GStreamer-plugins that need more quality, testing or > documentation >=20 > Added: head/multimedia/gstreamer1-plugins-bad/files/patch-3aee203 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is > newly added) > +++ head/multimedia/gstreamer1-plugins-bad/files/patch-3aee203=09 > Thu Sep 15 17:30:23 2016 (r422217) > @@ -0,0 +1,55 @@ > +From 3aee2039591421f4cc8757353034daf0e011a9ce Mon Sep 17 00:00:00 > 2001 > +From: =3D?UTF-8?q?Sebastian=3D20Dr=3DC3=3DB6ge?=3D > +Date: Thu, 31 Mar 2016 12:20:30 +0300 > +Subject: adaptivedemux: Handle find_stream_for_pad() without > + g_assert_not_reached() if no pad is found > + > +Happens e.g. if a RECONFIGURE event is sent from downstream while > we're > +switching pads at this very moment. The old pad is gone and the > stream has a > +new pad. > + > +https://bugzilla.gnome.org/show_bug.cgi?id=3D764404 > + > +diff --git a/gst-libs/gst/adaptivedemux/gstadaptivedemux.c b/gst- > libs/gst/adaptivedemux/gstadaptivedemux.c > +index dfe7ba7..ba29214 100644 > +--- gst-libs/gst/adaptivedemux/gstadaptivedemux.c > ++++ gst-libs/gst/adaptivedemux/gstadaptivedemux.c > +@@ -1092,7 +1092,6 @@ gst_adaptive_demux_find_stream_for_pad > (GstAdaptiveDemux * demux, GstPad * pad) > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0return stream; > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0} > +=C2=A0=C2=A0=C2=A0} > +-=C2=A0=C2=A0g_assert_not_reached (); > +=C2=A0=C2=A0=C2=A0return NULL; > + } > +=C2=A0 > +@@ -1241,6 +1240,7 @@ gst_adaptive_demux_src_event (GstPad * pad, > GstObject * parent, > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0gboolean update; > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0gboolean ret =3D TRUE; > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GstSegment oldsegment; > ++=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GstAdaptiveDemuxStream *stream =3D = NULL; > +=C2=A0 > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GST_INFO_OBJECT (demux, "Recei= ved seek event"); > +=C2=A0 > +@@ -1318,9 +1318,8 @@ gst_adaptive_demux_src_event (GstPad * pad, > GstObject * parent, > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0* use the one that recei= ved the event as the 'leading' > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0* one to do the snap see= k. > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0*/ > +-=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0if (IS_SNAP_SEEK (flags) && demux_c= lass->stream_seek) { > +-=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GstAdaptiveDemuxStream = *stream =3D > +-=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0gst_adaptive_demux_find_stream_for_pad (demux, pad); > ++=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0if (IS_SNAP_SEEK (flags) && demux_c= lass->stream_seek && > (stream =3D > ++=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0gst_adaptive_demux_find_stream_for_pad (demux, pad))) > { > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GstClockTime ts; > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GstSeekFlags strea= m_seek_flags =3D flags; > +=C2=A0 > +@@ -1359,6 +1358,7 @@ gst_adaptive_demux_src_event (GstPad * pad, > GstObject * parent, > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0GST_DEBUG_OBJECT (= demux, "Adapted snap seek to %" > GST_PTR_FORMAT, > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0event); > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0} > ++=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0stream =3D NULL; > +=C2=A0 > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0gst_segment_do_seek (&demux->s= egment, rate, format, flags, > start_type, > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0start,= stop_type, stop, &update); > +--=C2=A0 > +cgit v0.10.2 > + >=20 Thanks for the push, Koop! --=20 Carlos Jacobo Puga Medina PGP fingerprint =3D C60E 9497 5302 793B CC2D BB89 A1F3 5D66 E6D0 5453 --=-c8hhMvm7PEPNrSPz2E2z Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAABCgBmBQJX2t8uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDNjBFOTQ5NzUzMDI3OTNCQ0MyREJCODlB MUYzNUQ2NkU2RDA1NDUzAAoJEKHzXWbm0FRTWRAIAK/MhAgLvFGdyF/D0l+tVIdY qGzwcLCH1hDpWkMGNtEKwEcCfnHY9xYSmoyStMbuFPAI+fUk+lGCowF2sE/WJXgr cibEKK1aydEmPL5ZOOp1PNyQSy8cDBtPAB9nAPxbfxWrxrLQghABp2ZBAIWn+fKi HVyGY+9b9shvLcLACYflyBFkqXm4P8eq3tTSuM/Vj3q5Yb2/NdnFrpc2hK19IHq7 JnH8Epo+3hDGgZlxOCAZgDe46wg/rH9fJOw5DM1WN45GZ+/MGwt8zFIQKKQeYLpm szuSo/wHlg9q+T5Kgh4tBLje4vseIXZiBNt76Dl/m1mlbiL9UevlcZS6BPi8iHw= =+6na -----END PGP SIGNATURE----- --=-c8hhMvm7PEPNrSPz2E2z-- From owner-svn-ports-head@freebsd.org Thu Sep 15 17:56:58 2016 Return-Path: Delivered-To: svn-ports-head@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 52A4FBDBC0A; Thu, 15 Sep 2016 17:56:58 +0000 (UTC) (envelope-from cpm@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 025FBFD9; Thu, 15 Sep 2016 17:56:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FHuvNm093294; Thu, 15 Sep 2016 17:56:57 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FHuvAS093292; Thu, 15 Sep 2016 17:56:57 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609151756.u8FHuvAS093292@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 15 Sep 2016 17:56:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422218 - head/net-im/corebird X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 17:56:58 -0000 Author: cpm Date: Thu Sep 15 17:56:56 2016 New Revision: 422218 URL: https://svnweb.freebsd.org/changeset/ports/422218 Log: - Update corebird to 1.3.1 release - Add GSTREAMER_USE=hls dependency - Line up options block - Silence all three explicitly called commands Changelog: https://github.com/baedert/corebird/releases/tag/1.3.1 Reviewed by: amdmi3 (mentor) Approved by: amdmi3 (mentor) Differential Revision: D7800 Modified: head/net-im/corebird/Makefile head/net-im/corebird/distinfo Modified: head/net-im/corebird/Makefile ============================================================================== --- head/net-im/corebird/Makefile Thu Sep 15 17:30:23 2016 (r422217) +++ head/net-im/corebird/Makefile Thu Sep 15 17:56:56 2016 (r422218) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= corebird -PORTVERSION= 1.3 +PORTVERSION= 1.3.1 CATEGORIES= net-im MAINTAINER= cpm@FreeBSD.org @@ -26,23 +26,23 @@ GNU_CONFIGURE= yes USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool libxml2 pango INSTALLS_ICONS= yes -OPTIONS_DEFINE= GSTREAMER -OPTIONS_DEFAULT= GSTREAMER -GSTREAMER_USE= gstreamer1=yes,bad,good,gtksink,libav,x,ximagesrc +OPTIONS_DEFINE= GSTREAMER +OPTIONS_DEFAULT= GSTREAMER +GSTREAMER_USE= gstreamer1=yes,bad,good,gtksink,hls,libav,x,ximagesrc GSTREAMER_CONFIGURE_OFF= --disable-video GLIB_SCHEMAS= org.baedert.corebird.gschema.xml post-extract: - cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in \ - corebird.desktop.in + @(cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in \ + corebird.desktop.in) pre-configure: - ${MKDIR} ${WRKSRC}/m4 + @${MKDIR} ${WRKSRC}/m4 # Replace locales files in right place post-configure: - ${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \ + @${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \ ${WRKSRC}/po/Makefile .include Modified: head/net-im/corebird/distinfo ============================================================================== --- head/net-im/corebird/distinfo Thu Sep 15 17:30:23 2016 (r422217) +++ head/net-im/corebird/distinfo Thu Sep 15 17:56:56 2016 (r422218) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470087209 -SHA256 (baedert-corebird-1.3_GH0.tar.gz) = f4f86a2e898342297c2379c25b6274598d81d8983f185d98753725552f670860 -SIZE (baedert-corebird-1.3_GH0.tar.gz) = 431652 +TIMESTAMP = 1473189673 +SHA256 (baedert-corebird-1.3.1_GH0.tar.gz) = cbc832b9e3adab698b9b879b64e33bffd708776e08fe9f229885068193525190 +SIZE (baedert-corebird-1.3.1_GH0.tar.gz) = 433961 From owner-svn-ports-head@freebsd.org Thu Sep 15 18:01:38 2016 Return-Path: Delivered-To: svn-ports-head@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 B4D3DBDBD9F; Thu, 15 Sep 2016 18:01:38 +0000 (UTC) (envelope-from matthew@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 7F46F33C; Thu, 15 Sep 2016 18:01:38 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FI1bv1094875; Thu, 15 Sep 2016 18:01:37 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FI1beW094873; Thu, 15 Sep 2016 18:01:37 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201609151801.u8FI1beW094873@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 15 Sep 2016 18:01:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422219 - head/www/trac X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 18:01:38 -0000 Author: matthew Date: Thu Sep 15 18:01:37 2016 New Revision: 422219 URL: https://svnweb.freebsd.org/changeset/ports/422219 Log: Update to 1.0.13 ChangeLog: (September 11, 2016) Trac 1.0.13 provides around a dozen bug fixes and minor enhancements. The following are some highlights: Use locale environment variables to negotiate locale on console (#12418). Fixed using incorrect revisions when downloading a zip file via browser page from Git repository (#12557). PR: 212707 Submitted by: joneum@bsdproject.de Modified: head/www/trac/Makefile head/www/trac/distinfo Modified: head/www/trac/Makefile ============================================================================== --- head/www/trac/Makefile Thu Sep 15 17:56:56 2016 (r422218) +++ head/www/trac/Makefile Thu Sep 15 18:01:37 2016 (r422219) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= trac -PORTVERSION= 1.0.12 +PORTVERSION= 1.0.13 CATEGORIES= www devel python MASTER_SITES= http://ftp.edgewall.com/pub/trac/ \ ftp://ftp.edgewall.com/pub/trac/ Modified: head/www/trac/distinfo ============================================================================== --- head/www/trac/distinfo Thu Sep 15 17:56:56 2016 (r422218) +++ head/www/trac/distinfo Thu Sep 15 18:01:37 2016 (r422219) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469017826 -SHA256 (Trac-1.0.12.tar.gz) = 9e1d3b6b9f89f986b34604160a95cbda3fad1ee6d31818aab24bf8c18fe160ab -SIZE (Trac-1.0.12.tar.gz) = 6020514 +TIMESTAMP = 1473962028 +SHA256 (Trac-1.0.13.tar.gz) = 48ea3a9a23bb6bc7a9a643b90a7d7d274affedd344f21b73b81b421841cd527d +SIZE (Trac-1.0.13.tar.gz) = 3671741 From owner-svn-ports-head@freebsd.org Thu Sep 15 18:04:15 2016 Return-Path: Delivered-To: svn-ports-head@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 B3E72BDBE49; Thu, 15 Sep 2016 18:04:15 +0000 (UTC) (envelope-from vsevolod@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 6730D779; Thu, 15 Sep 2016 18:04:15 +0000 (UTC) (envelope-from vsevolod@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FI4Ewm097269; Thu, 15 Sep 2016 18:04:14 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FI4EVs097267; Thu, 15 Sep 2016 18:04:14 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201609151804.u8FI4EVs097267@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Thu, 15 Sep 2016 18:04:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422220 - head/devel/hyperscan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 18:04:15 -0000 Author: vsevolod Date: Thu Sep 15 18:04:14 2016 New Revision: 422220 URL: https://svnweb.freebsd.org/changeset/ports/422220 Log: - Update to 4.3.1 - Enable shared by default [1] PR: 211002 Submitted by: koobs [1] Modified: head/devel/hyperscan/Makefile head/devel/hyperscan/distinfo Modified: head/devel/hyperscan/Makefile ============================================================================== --- head/devel/hyperscan/Makefile Thu Sep 15 18:01:37 2016 (r422219) +++ head/devel/hyperscan/Makefile Thu Sep 15 18:04:14 2016 (r422220) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hyperscan -PORTVERSION= 4.2.0 +PORTVERSION= 4.3.1 DISTVERSIONPREFIX= v CATEGORIES= devel textproc MASTER_SITES= GH:hs SF/boost/boost/1.59.0:boost @@ -23,9 +23,10 @@ ONLY_FOR_ARCHS_REASON= SSSE3 is required OPTIONS_DEFINE= SHARED NATIVE SHARED_DESC= Build shared library NATIVE_DESC= Build with native CPU tunes +OPTIONS_DEFAULT= SHARED .ifndef DEBUG_FLAGS -CMAKE_BUILD_TYPE= MinSizeRel +CMAKE_BUILD_TYPE= Release .else CMAKE_BUILD_TYPE= Debug .endif @@ -46,7 +47,7 @@ CFLAGS+= -march=core2 CMAKE_ARGS+= -DBUILD_STATIC_AND_SHARED=ON PLIST_SUB+= SHARED="" \ SOVERSION=${PORTVERSION} \ - SOSHORTVERSION=${PORTVERSION:C/\.[0-9]$//} + SOSHORTVERSION=${PORTVERSION:C/\.[0-9].[0-9]$//} .else PLIST_SUB+= SHARED="@comment " .endif Modified: head/devel/hyperscan/distinfo ============================================================================== --- head/devel/hyperscan/distinfo Thu Sep 15 18:01:37 2016 (r422219) +++ head/devel/hyperscan/distinfo Thu Sep 15 18:04:14 2016 (r422220) @@ -1,5 +1,7 @@ -TIMESTAMP = 1466593149 -SHA256 (01org-hyperscan-v4.2.0_GH0.tar.gz) = d06d8f31a62e5d2903a8ccf07696e02cadf4de2024dc3b558d410d913c81dbef -SIZE (01org-hyperscan-v4.2.0_GH0.tar.gz) = 1362515 +TIMESTAMP = 1473937188 +SHA256 (01org-hyperscan-v4.3.1_GH0.tar.gz) = a7bce1287c06d53d1fb34266d024331a92ee24cbb2a7a75061b4ae50a30bae97 +SIZE (01org-hyperscan-v4.3.1_GH0.tar.gz) = 1426195 SHA256 (boost_1_59_0.tar.gz) = 47f11c8844e579d02691a607fbd32540104a9ac7a2534a8ddaef50daf502baac SIZE (boost_1_59_0.tar.gz) = 83709983 +SHA256 (01org-hyperscan-v4.3.1_GH0.tar.gz) = a7bce1287c06d53d1fb34266d024331a92ee24cbb2a7a75061b4ae50a30bae97 +SIZE (01org-hyperscan-v4.3.1_GH0.tar.gz) = 1426195 From owner-svn-ports-head@freebsd.org Thu Sep 15 18:12:46 2016 Return-Path: Delivered-To: svn-ports-head@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 861D7BDC2CF; Thu, 15 Sep 2016 18:12:46 +0000 (UTC) (envelope-from jkim@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 62A89E40; Thu, 15 Sep 2016 18:12:46 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FICjN8001255; Thu, 15 Sep 2016 18:12:45 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FICikg001245; Thu, 15 Sep 2016 18:12:44 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609151812.u8FICikg001245@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 15 Sep 2016 18:12:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422221 - in head: . korean korean/imhangul korean/imhangul-gtk2 korean/imhangul-gtk2/files korean/imhangul-gtk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 18:12:46 -0000 Author: jkim Date: Thu Sep 15 18:12:44 2016 New Revision: 422221 URL: https://svnweb.freebsd.org/changeset/ports/422221 Log: Split korean/imhangul into korean/imhangul-gtk2 and korean/imhangul-gtk3. Added: head/korean/imhangul-gtk2/ - copied from r422216, head/korean/imhangul/ head/korean/imhangul-gtk3/ - copied from r422216, head/korean/imhangul/ Deleted: head/korean/imhangul/ head/korean/imhangul-gtk2/files/ Modified: head/MOVED head/korean/Makefile head/korean/imhangul-gtk2/Makefile head/korean/imhangul-gtk2/distinfo head/korean/imhangul-gtk2/pkg-descr head/korean/imhangul-gtk2/pkg-plist head/korean/imhangul-gtk3/Makefile head/korean/imhangul-gtk3/distinfo head/korean/imhangul-gtk3/pkg-descr head/korean/imhangul-gtk3/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Thu Sep 15 18:04:14 2016 (r422220) +++ head/MOVED Thu Sep 15 18:12:44 2016 (r422221) @@ -8631,3 +8631,4 @@ textproc/asciinema|textproc/py3-asciinem x11-toolkits/qtada||2016-09-13|Has expired: No development since 2012, usefulness unclear security/letsencrypt.sh|security/dehydrated|2016-09-13|Upstream renamed the project devel/py-dogpile.core|devel/py-dogpile.cache|2016-09-13|EOL upstream. Merged into devel/py-dogpile.cache since 0.6.0 +korean/imhangul||2016-09-15|Split into korean/imhangul-gtk2 and korean/imhangul-gtk3 Modified: head/korean/Makefile ============================================================================== --- head/korean/Makefile Thu Sep 15 18:04:14 2016 (r422220) +++ head/korean/Makefile Thu Sep 15 18:12:44 2016 (r422221) @@ -19,7 +19,8 @@ SUBDIR += hpscat SUBDIR += hunspell SUBDIR += ibus-hangul - SUBDIR += imhangul + SUBDIR += imhangul-gtk2 + SUBDIR += imhangul-gtk3 SUBDIR += kaistfonts SUBDIR += kde4-l10n SUBDIR += ko.TeX Modified: head/korean/imhangul-gtk2/Makefile ============================================================================== --- head/korean/imhangul/Makefile Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk2/Makefile Thu Sep 15 18:12:44 2016 (r422221) @@ -2,37 +2,33 @@ # $FreeBSD$ PORTNAME= imhangul -PORTVERSION= ${GTKVER:R}.1.1 -PORTREVISION= 3 +PORTVERSION= 2.1.1 CATEGORIES= korean +PKGNAMESUFFIX= -gtk2 MAINTAINER= jkim@FreeBSD.org -COMMENT= GTK+ Hangul input module +COMMENT= Hangul input module for GTK+ 2.0 LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libhangul.so:korean/libhangul +LIB_DEPENDS= libhangul.so:korean/libhangul \ + libfreetype.so:print/freetype2 \ + libfontconfig.so:x11-fonts/fontconfig + +CONFLICTS_INSTALL= ko-imhangul-[0-2].* GH_ACCOUNT= choehwanjin +GH_TAGNAME= d2f555d USE_GITHUB= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -PLIST_SUB= GTKVER=${GTKVER} -USE_GNOME= cairo gdkpixbuf2 gtk${GTKVER:S|.||} +USE_GNOME= cairo gdkpixbuf2 gtk20 USES= autoreconf gmake libtool pkgconfig OPTIONS_DEFINE= NLS -OPTIONS_DEFAULT= GTK3 -OPTIONS_SINGLE= GTK -OPTIONS_SINGLE_GTK= GTK2 GTK3 OPTIONS_SUB= yes -GTK_DESC= Select GTK+ version -GTK2_LIB_DEPENDS= libfreetype.so:print/freetype2 -GTK2_LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig -GTK2_VARS= GH_TAGNAME=d2f555d GTKVER=2.0 -GTK3_VARS= GH_TAGNAME=85f6d10 GTKVER=3.0 NLS_USES= gettext localbase post-patch-NLS-off: Modified: head/korean/imhangul-gtk2/distinfo ============================================================================== --- head/korean/imhangul/distinfo Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk2/distinfo Thu Sep 15 18:12:44 2016 (r422221) @@ -1,5 +1,3 @@ TIMESTAMP = 1473877928 SHA256 (choehwanjin-imhangul-2.1.1-d2f555d_GH0.tar.gz) = e489cb293da229cb1e07d7f301e8fe4b65396cd762aca30aa54cd1555f354288 SIZE (choehwanjin-imhangul-2.1.1-d2f555d_GH0.tar.gz) = 256752 -SHA256 (choehwanjin-imhangul-3.1.1-85f6d10_GH0.tar.gz) = a2bd9baf56c5b624c035ce6890553fb513feb6404453549a2f523691df86f2cc -SIZE (choehwanjin-imhangul-3.1.1-85f6d10_GH0.tar.gz) = 256731 Modified: head/korean/imhangul-gtk2/pkg-descr ============================================================================== --- head/korean/imhangul/pkg-descr Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk2/pkg-descr Thu Sep 15 18:12:44 2016 (r422221) @@ -1,6 +1,6 @@ -GTK+-2.0 Hangul Input Module +Hangul Input Module for GTK+ 2.0 -Input method of gtk-2.0 widget. To select this modules, click +Input method of GTK+ 2.0 widget. To select this modules, click right button in gtk20 text widget and select "Input Methods" - "Hangul" (not KSC5601). Modified: head/korean/imhangul-gtk2/pkg-plist ============================================================================== --- head/korean/imhangul/pkg-plist Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk2/pkg-plist Thu Sep 15 18:12:44 2016 (r422221) @@ -1,5 +1,4 @@ -lib/gtk-%%GTKVER%%/immodules/im-hangul.so -%%GTK2%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul.mo -%%GTK3%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul-%%GTKVER%%.mo -@postexec %D/bin/gtk-query-immodules-%%GTKVER%% --update-cache -@postunexec %D/bin/gtk-query-immodules-%%GTKVER%% --update-cache +lib/gtk-2.0/immodules/im-hangul.so +%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul.mo +@postexec %D/bin/gtk-query-immodules-2.0 --update-cache +@postunexec %D/bin/gtk-query-immodules-2.0 --update-cache Modified: head/korean/imhangul-gtk3/Makefile ============================================================================== --- head/korean/imhangul/Makefile Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk3/Makefile Thu Sep 15 18:12:44 2016 (r422221) @@ -2,37 +2,31 @@ # $FreeBSD$ PORTNAME= imhangul -PORTVERSION= ${GTKVER:R}.1.1 -PORTREVISION= 3 +PORTVERSION= 3.1.1 CATEGORIES= korean +PKGNAMESUFFIX= -gtk3 MAINTAINER= jkim@FreeBSD.org -COMMENT= GTK+ Hangul input module +COMMENT= Hangul input module for GTK+ 3.0 LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhangul.so:korean/libhangul +CONFLICTS_INSTALL= ko-imhangul-3.* + GH_ACCOUNT= choehwanjin +GH_TAGNAME= 85f6d10 USE_GITHUB= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -PLIST_SUB= GTKVER=${GTKVER} -USE_GNOME= cairo gdkpixbuf2 gtk${GTKVER:S|.||} +USE_GNOME= cairo gdkpixbuf2 gtk30 USES= autoreconf gmake libtool pkgconfig OPTIONS_DEFINE= NLS -OPTIONS_DEFAULT= GTK3 -OPTIONS_SINGLE= GTK -OPTIONS_SINGLE_GTK= GTK2 GTK3 OPTIONS_SUB= yes -GTK_DESC= Select GTK+ version -GTK2_LIB_DEPENDS= libfreetype.so:print/freetype2 -GTK2_LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig -GTK2_VARS= GH_TAGNAME=d2f555d GTKVER=2.0 -GTK3_VARS= GH_TAGNAME=85f6d10 GTKVER=3.0 NLS_USES= gettext localbase post-patch-NLS-off: Modified: head/korean/imhangul-gtk3/distinfo ============================================================================== --- head/korean/imhangul/distinfo Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk3/distinfo Thu Sep 15 18:12:44 2016 (r422221) @@ -1,5 +1,3 @@ TIMESTAMP = 1473877928 -SHA256 (choehwanjin-imhangul-2.1.1-d2f555d_GH0.tar.gz) = e489cb293da229cb1e07d7f301e8fe4b65396cd762aca30aa54cd1555f354288 -SIZE (choehwanjin-imhangul-2.1.1-d2f555d_GH0.tar.gz) = 256752 SHA256 (choehwanjin-imhangul-3.1.1-85f6d10_GH0.tar.gz) = a2bd9baf56c5b624c035ce6890553fb513feb6404453549a2f523691df86f2cc SIZE (choehwanjin-imhangul-3.1.1-85f6d10_GH0.tar.gz) = 256731 Modified: head/korean/imhangul-gtk3/pkg-descr ============================================================================== --- head/korean/imhangul/pkg-descr Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk3/pkg-descr Thu Sep 15 18:12:44 2016 (r422221) @@ -1,7 +1,7 @@ -GTK+-2.0 Hangul Input Module +Hangul Input Module for GTK+ 3.0 -Input method of gtk-2.0 widget. To select this modules, click -right button in gtk20 text widget and select "Input Methods" - +Input method of GTK+ 3.0 widget. To select this modules, click +right button in gtk30 text widget and select "Input Methods" - "Hangul" (not KSC5601). WWW: http://code.google.com/p/imhangul/ Modified: head/korean/imhangul-gtk3/pkg-plist ============================================================================== --- head/korean/imhangul/pkg-plist Thu Sep 15 16:40:17 2016 (r422216) +++ head/korean/imhangul-gtk3/pkg-plist Thu Sep 15 18:12:44 2016 (r422221) @@ -1,5 +1,4 @@ -lib/gtk-%%GTKVER%%/immodules/im-hangul.so -%%GTK2%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul.mo -%%GTK3%%%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul-%%GTKVER%%.mo -@postexec %D/bin/gtk-query-immodules-%%GTKVER%% --update-cache -@postunexec %D/bin/gtk-query-immodules-%%GTKVER%% --update-cache +lib/gtk-3.0/immodules/im-hangul.so +%%NLS%%share/locale/ko/LC_MESSAGES/im-hangul-3.0.mo +@postexec %D/bin/gtk-query-immodules-3.0 --update-cache +@postunexec %D/bin/gtk-query-immodules-3.0 --update-cache From owner-svn-ports-head@freebsd.org Thu Sep 15 18:19:50 2016 Return-Path: Delivered-To: svn-ports-head@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 BB5B3BDC493; Thu, 15 Sep 2016 18:19:50 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4AE6D1BF; Thu, 15 Sep 2016 18:19:50 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Subject: Re: svn commit: r422169 - in head/korean/imhangul: . files To: Alexey Dokuchaev References: <201609142325.u8ENP9iT068917@repo.freebsd.org> <20160915131922.GA57192@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org From: Jung-uk Kim Message-ID: <21fa2bab-ad13-5082-14fb-42218380454a@FreeBSD.org> Date: Thu, 15 Sep 2016 14:19:44 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <20160915131922.GA57192@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="QoKdhI0sfSQdVBPVDTNrvXelnqRC6CbA9" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 18:19:50 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --QoKdhI0sfSQdVBPVDTNrvXelnqRC6CbA9 Content-Type: multipart/mixed; boundary="Fw6QWvju5mxDcuDcKuW1LNKNrGON2Ju3f"; protected-headers="v1" From: Jung-uk Kim To: Alexey Dokuchaev Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <21fa2bab-ad13-5082-14fb-42218380454a@FreeBSD.org> Subject: Re: svn commit: r422169 - in head/korean/imhangul: . files References: <201609142325.u8ENP9iT068917@repo.freebsd.org> <20160915131922.GA57192@FreeBSD.org> In-Reply-To: <20160915131922.GA57192@FreeBSD.org> --Fw6QWvju5mxDcuDcKuW1LNKNrGON2Ju3f Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 09/15/2016 09:19, Alexey Dokuchaev wrote: > On Wed, Sep 14, 2016 at 11:25:09PM +0000, Jung-uk Kim wrote: >> New Revision: 422169 >> URL: https://svnweb.freebsd.org/changeset/ports/422169 >> >> Log: >> - Unbreak and modernize the port. >> - Switch to GTK3 by default. >=20 > Why? I was under impression that we still adhere to GTK+2 for the time= > being. Hmm... I didn't know that because I don't follow freebsd-gnome@. Anyway, I committed r422221 to split it into two separate ports. There was no point of keeping these in one port any more. Thanks for letting me know. Jung-uk Kim --Fw6QWvju5mxDcuDcKuW1LNKNrGON2Ju3f-- --QoKdhI0sfSQdVBPVDTNrvXelnqRC6CbA9 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJX2uZFAAoJEHyflib82/FGNb8IAKGjmg4KTj3j6DSz25MY5ppg Tj/4MYWPjcBo4dnaM4nc3EUGCGj2XSKwOeYM1q0ZLLbOphzQGJD3O4EF+4BOLUpL eH/E2US3hrCTaCo1Tyu39xxkfem0cpG7KkoZu8R6PTMmELBT3Ak3y1hvA7AxHkwn X3xJb3Eu9gxEn/j11b5GNcXlyCPobx380XE0/tB6CVCJBnvjNpFJu4hPSxYXsCnJ 8q66xhnUWGZ1kx6NIuq7Ghn/aUz7IFV85qA9wl/nVpcpA2eGakY5tJFGnPX+T56G oltrB46nzcGelUJNXcm5PpEQd57Glxf4WHJly/EkUrJs8c0X6BHI9Yt49QINMTI= =yFQR -----END PGP SIGNATURE----- --QoKdhI0sfSQdVBPVDTNrvXelnqRC6CbA9-- From owner-svn-ports-head@freebsd.org Thu Sep 15 18:56:55 2016 Return-Path: Delivered-To: svn-ports-head@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 20DF4BDCB8C; Thu, 15 Sep 2016 18:56:55 +0000 (UTC) (envelope-from duchateau.olivier@gmail.com) Received: from mail-wm0-x242.google.com (mail-wm0-x242.google.com [IPv6:2a00:1450:400c:c09::242]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C77C1877; Thu, 15 Sep 2016 18:56:54 +0000 (UTC) (envelope-from duchateau.olivier@gmail.com) Received: by mail-wm0-x242.google.com with SMTP id g141so21899wmd.1; Thu, 15 Sep 2016 11:56:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=54ev9mFEF16Ev5naZApMKFjfyCwQFm/2zq1GfaxWdfI=; b=rmRJTwhFXGgJVUVwZ08/TEu0U4g986y4fkGMJeSABFl3jr/fAnmGeSAA45yGthrTkf NMCOlGOtw55e+ideKQOcYWQWCGXfMgvrTJPyuqxvMDtxU9I+mV1OEm7W3K4EGtDNAnLo r8/2ly0kb9fXKUWwL/vf34E2wYgVQqfQVPsJtOx9F9lBm5eceEVmHrtCx+D3NxcTkh7e XXM2a5dkP3SLFhaJDn0r4HE5qaVbcsSLQWpV4Q3l+9PVT0EdbIt2Um51v3Lhauscwxv3 Wn9usd7lSZ4SGXu+PEMWgsePYYfe5QCvEu5sf2vIllQbJPuDogwhSNY38gxDxDlGpEm+ MLQQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :in-reply-to:references:mime-version:content-transfer-encoding; bh=54ev9mFEF16Ev5naZApMKFjfyCwQFm/2zq1GfaxWdfI=; b=Tkc19XDSP3LJwPDLanTKSqMNKcSpIbYt2ghuyRb4qcXXrG7LpGO6yrqfU/ZL+yBIKv vJY4UppgzYqYyRbieKqvLZSxJrizxG7B2g0aqP2Hsy1gb5B1QxHya3UKnxZFzDj9gTzj cWMuYCtQVniOKZ3mNKgu8O6XIMTZdUe1VBiUn7W/dUdoRRMApyyuB5ij399y/9s9MM6P dpD4om2nu/Ap+DOlRxjLIe8P8MytVY/9cxpArTN+wK22MNvLp8pBHbE+vB1Y5oQBgCBq PjFzTSAxQQhxppzTiplfwoiDSn2c21sIsgqKqm7StDr5WmnjQ453Jjazp98UqMb/OY2h 8aiA== X-Gm-Message-State: AE9vXwN/ISi+Oq/zJ9Gw5WNNuaS71uclIGZXknIcBt5kVu4Nwgo8eD/7MfO21ZgjgTGsvg== X-Received: by 10.28.157.139 with SMTP id g133mr4222127wme.82.1473965812777; Thu, 15 Sep 2016 11:56:52 -0700 (PDT) Received: from localhost (AMarseille-655-1-775-15.w92-158.abo.wanadoo.fr. [92.158.16.15]) by smtp.gmail.com with ESMTPSA id z4sm3694136wmg.19.2016.09.15.11.56.51 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 15 Sep 2016 11:56:51 -0700 (PDT) Sender: Olivier Duchateau Date: Thu, 15 Sep 2016 20:56:47 +0200 From: Olivier Duchateau To: "Carlos J. Puga Medina" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422218 - head/net-im/corebird Message-Id: <20160915205647.6e85ca84807f4b6880171f70@freebsd.org> In-Reply-To: <201609151756.u8FHuvAS093292@repo.freebsd.org> References: <201609151756.u8FHuvAS093292@repo.freebsd.org> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.29; amd64-portbld-freebsd11.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 18:56:55 -0000 On Thu, 15 Sep 2016 17:56:57 +0000 (UTC) "Carlos J. Puga Medina" wrote: > Author: cpm > Date: Thu Sep 15 17:56:56 2016 > New Revision: 422218 > URL: https://svnweb.freebsd.org/changeset/ports/422218 > > Log: > - Update corebird to 1.3.1 release > - Add GSTREAMER_USE=hls dependency > - Line up options block > - Silence all three explicitly called commands Why hide these commands? Your mentor (here, Dmitry) argues for the opposite (see his recent changes with revision r421635, I know it's for CMake, Ninja, autotools and so on) and he approves this. I don't understand his behaviour. > > Changelog: > https://github.com/baedert/corebird/releases/tag/1.3.1 > > Reviewed by: amdmi3 (mentor) > Approved by: amdmi3 (mentor) > Differential Revision: D7800 > > Modified: > head/net-im/corebird/Makefile > head/net-im/corebird/distinfo > > Modified: head/net-im/corebird/Makefile > ============================================================================== > --- head/net-im/corebird/Makefile Thu Sep 15 17:30:23 2016 (r422217) > +++ head/net-im/corebird/Makefile Thu Sep 15 17:56:56 2016 (r422218) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= corebird > -PORTVERSION= 1.3 > +PORTVERSION= 1.3.1 > CATEGORIES= net-im > > MAINTAINER= cpm@FreeBSD.org > @@ -26,23 +26,23 @@ GNU_CONFIGURE= yes > USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool libxml2 pango > INSTALLS_ICONS= yes > > -OPTIONS_DEFINE= GSTREAMER > -OPTIONS_DEFAULT= GSTREAMER > -GSTREAMER_USE= gstreamer1=yes,bad,good,gtksink,libav,x,ximagesrc > +OPTIONS_DEFINE= GSTREAMER > +OPTIONS_DEFAULT= GSTREAMER > +GSTREAMER_USE= gstreamer1=yes,bad,good,gtksink,hls,libav,x,ximagesrc > GSTREAMER_CONFIGURE_OFF= --disable-video > > GLIB_SCHEMAS= org.baedert.corebird.gschema.xml > > post-extract: > - cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in \ > - corebird.desktop.in > + @(cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in \ > + corebird.desktop.in) > > pre-configure: > - ${MKDIR} ${WRKSRC}/m4 > + @${MKDIR} ${WRKSRC}/m4 > > # Replace locales files in right place > post-configure: > - ${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \ > + @${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \ > ${WRKSRC}/po/Makefile > > .include > > Modified: head/net-im/corebird/distinfo > ============================================================================== > --- head/net-im/corebird/distinfo Thu Sep 15 17:30:23 2016 (r422217) > +++ head/net-im/corebird/distinfo Thu Sep 15 17:56:56 2016 (r422218) > @@ -1,3 +1,3 @@ > -TIMESTAMP = 1470087209 > -SHA256 (baedert-corebird-1.3_GH0.tar.gz) = f4f86a2e898342297c2379c25b6274598d81d8983f185d98753725552f670860 > -SIZE (baedert-corebird-1.3_GH0.tar.gz) = 431652 > +TIMESTAMP = 1473189673 > +SHA256 (baedert-corebird-1.3.1_GH0.tar.gz) = cbc832b9e3adab698b9b879b64e33bffd708776e08fe9f229885068193525190 > +SIZE (baedert-corebird-1.3.1_GH0.tar.gz) = 433961 > -- Olivier Duchateau From owner-svn-ports-head@freebsd.org Thu Sep 15 19:23:22 2016 Return-Path: Delivered-To: svn-ports-head@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 2DA33BDB53A; Thu, 15 Sep 2016 19:23:22 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1F435E8A; Thu, 15 Sep 2016 19:23:22 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 7CF4C150A; Thu, 15 Sep 2016 19:23:20 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Message-ID: <1473967393.1449.5.camel@FreeBSD.org> Subject: Re: svn commit: r422218 - head/net-im/corebird From: "Carlos J. Puga Medina" To: Olivier Duchateau , amdmi3 Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Thu, 15 Sep 2016 21:23:13 +0200 In-Reply-To: <20160915205647.6e85ca84807f4b6880171f70@freebsd.org> References: <201609151756.u8FHuvAS093292@repo.freebsd.org> <20160915205647.6e85ca84807f4b6880171f70@freebsd.org> Content-Type: multipart/signed; micalg="pgp-sha512"; protocol="application/pgp-signature"; boundary="=-+X6sNwTfzXEsrjhscvzS" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 19:23:22 -0000 --=-+X6sNwTfzXEsrjhscvzS Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Thu, 2016-09-15 at 20:56 +0200, Olivier Duchateau wrote: > On Thu, 15 Sep 2016 17:56:57 +0000 (UTC) > "Carlos J. Puga Medina" wrote: >=20 > >=20 > > Author: cpm > > Date: Thu Sep 15 17:56:56 2016 > > New Revision: 422218 > > URL: https://svnweb.freebsd.org/changeset/ports/422218 > >=20 > > Log: > > =C2=A0 - Update corebird to 1.3.1 release > > =C2=A0 - Add GSTREAMER_USE=3Dhls dependency > > =C2=A0 - Line up options block > > =C2=A0 - Silence all three explicitly called commands > Why hide these commands? >=20 > Your mentor (here, Dmitry) argues for the opposite (see his recent > changes with revision r421635, I know it's for CMake, Ninja, > autotools and so on) and he approves this. >=20 > I don't understand his behaviour. >=20 I'm not completely sure, but hide such commands would be rather consider as a cosmetic fix. If Dmitry sees this comment, he may shed some light here :) > >=20 > > =C2=A0=C2=A0 > > =C2=A0 Changelog: > > =C2=A0=C2=A0=C2=A0=C2=A0https://github.com/baedert/corebird/releases/ta= g/1.3.1 > > =C2=A0=C2=A0 > > =C2=A0 Reviewed by: amdmi3 (mentor) > > =C2=A0 Approved by: amdmi3 (mentor) > > =C2=A0 Differential Revision: D7800 > >=20 > > Modified: > > =C2=A0 head/net-im/corebird/Makefile > > =C2=A0 head/net-im/corebird/distinfo > >=20 > > Modified: head/net-im/corebird/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > --- head/net-im/corebird/Makefile Thu Sep 15 17:30:23 2016=09 > > (r422217) > > +++ head/net-im/corebird/Makefile Thu Sep 15 17:56:56 2016=09 > > (r422218) > > @@ -2,7 +2,7 @@ > > =C2=A0# $FreeBSD$ > > =C2=A0 > > =C2=A0PORTNAME=3D corebird > > -PORTVERSION=3D 1.3 > > +PORTVERSION=3D 1.3.1 > > =C2=A0CATEGORIES=3D net-im > > =C2=A0 > > =C2=A0MAINTAINER=3D cpm@FreeBSD.org > > @@ -26,23 +26,23 @@ GNU_CONFIGURE=3D yes > > =C2=A0USE_GNOME=3D atk cairo gdkpixbuf2 glib20 gtk30 intltool > > libxml2 pango > > =C2=A0INSTALLS_ICONS=3D yes > > =C2=A0 > > -OPTIONS_DEFINE=3D GSTREAMER > > -OPTIONS_DEFAULT=3D GSTREAMER > > -GSTREAMER_USE=3D gstreamer1=3Dyes,bad,good,gtksink,libav,x,xima > > gesrc > > +OPTIONS_DEFINE=3D GSTREAMER > > +OPTIONS_DEFAULT=3D GSTREAMER > > +GSTREAMER_USE=3D gstreamer1=3Dyes,bad,good,gtks > > ink,hls,libav,x,ximagesrc > > =C2=A0GSTREAMER_CONFIGURE_OFF=3D --disable-video > > =C2=A0 > > =C2=A0GLIB_SCHEMAS=3D org.baedert.corebird.gschema.xml > > =C2=A0 > > =C2=A0post-extract: > > - cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in > > \ > > - corebird.desktop.in > > + @(cd ${WRKSRC}/data && ${MV} > > org.baedert.corebird.desktop.in \ > > + corebird.desktop.in) > > =C2=A0 > > =C2=A0pre-configure: > > - ${MKDIR} ${WRKSRC}/m4 > > + @${MKDIR} ${WRKSRC}/m4 > > =C2=A0 > > =C2=A0# Replace locales files in right place > > =C2=A0post-configure: > > - ${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \ > > + @${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \ > > =C2=A0 ${WRKSRC}/po/Makefile > > =C2=A0 > > =C2=A0.include > >=20 > > Modified: head/net-im/corebird/distinfo > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > --- head/net-im/corebird/distinfo Thu Sep 15 17:30:23 2016=09 > > (r422217) > > +++ head/net-im/corebird/distinfo Thu Sep 15 17:56:56 2016=09 > > (r422218) > > @@ -1,3 +1,3 @@ > > -TIMESTAMP =3D 1470087209 > > -SHA256 (baedert-corebird-1.3_GH0.tar.gz) =3D > > f4f86a2e898342297c2379c25b6274598d81d8983f185d98753725552f670860 > > -SIZE (baedert-corebird-1.3_GH0.tar.gz) =3D 431652 > > +TIMESTAMP =3D 1473189673 > > +SHA256 (baedert-corebird-1.3.1_GH0.tar.gz) =3D > > cbc832b9e3adab698b9b879b64e33bffd708776e08fe9f229885068193525190 > > +SIZE (baedert-corebird-1.3.1_GH0.tar.gz) =3D 433961 > >=20 >=20 --=20 Carlos Jacobo Puga Medina PGP fingerprint =3D C60E 9497 5302 793B CC2D BB89 A1F3 5D66 E6D0 5453 --=-+X6sNwTfzXEsrjhscvzS Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAABCgBmBQJX2vUiXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDNjBFOTQ5NzUzMDI3OTNCQ0MyREJCODlB MUYzNUQ2NkU2RDA1NDUzAAoJEKHzXWbm0FRTvpAH/2kwwA6mbKtxYe/GNCJu/8ym 2SGvxjuEMdj1RwxRP5GEwIxyChTguTop+emU8RC4gpDEPqtRHi9v+gc3+iXhd8iQ PY5ZqJBeR83FTgb9L/+6LKq/BCRzX31S0189FFbaS5u4yvTmeb2wytyjQxf9uCAe JT6PQjkVxwf5g2K0NxptARvziZRN4rqWEggl43OT1ZKv/5X8xdRzxgNgaNfGxh9s j9o/WoSNb3dELDe1KH2B+J+TFqXWZ152tFKzzUOOp5bY7WxJF4spVdrS3Nmo3+mo w6Qevnjh6hTx7ebwj2g7hSKMzE+v/WN3tFzlvw9M8Dq/Lw18DV8Lp+CauZIgL9U= =g8/G -----END PGP SIGNATURE----- --=-+X6sNwTfzXEsrjhscvzS-- From owner-svn-ports-head@freebsd.org Thu Sep 15 19:53:02 2016 Return-Path: Delivered-To: svn-ports-head@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 C33E4BDBD87; Thu, 15 Sep 2016 19:53:02 +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 8BF45D7; Thu, 15 Sep 2016 19:53:02 +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 u8FJr17g038675; Thu, 15 Sep 2016 19:53:01 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FJr122038673; Thu, 15 Sep 2016 19:53:01 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201609151953.u8FJr122038673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Thu, 15 Sep 2016 19:53:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422223 - head/math/R-cran-stabledist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 19:53:02 -0000 Author: dbn Date: Thu Sep 15 19:53:01 2016 New Revision: 422223 URL: https://svnweb.freebsd.org/changeset/ports/422223 Log: math/R-cran-stabledist: updated to version 0.7-1 - add new test dependencies: - devel/R-cran-RUnit - finance/R-cran-fBasics - math/R-cran-Rmpfr Generated by: portcran (0.1.2) Modified: head/math/R-cran-stabledist/Makefile head/math/R-cran-stabledist/distinfo Modified: head/math/R-cran-stabledist/Makefile ============================================================================== --- head/math/R-cran-stabledist/Makefile Thu Sep 15 19:47:38 2016 (r422222) +++ head/math/R-cran-stabledist/Makefile Thu Sep 15 19:53:01 2016 (r422223) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= stabledist -DISTVERSION= 0.7-0 +DISTVERSION= 0.7-1 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -12,6 +12,10 @@ COMMENT= Stable Distribution Functions LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +TEST_DEPENDS= R-cran-RUnit>0:devel/R-cran-RUnit \ + R-cran-fBasics>0:finance/R-cran-fBasics \ + R-cran-Rmpfr>0:math/R-cran-Rmpfr + +USES= cran:auto-plist .include Modified: head/math/R-cran-stabledist/distinfo ============================================================================== --- head/math/R-cran-stabledist/distinfo Thu Sep 15 19:47:38 2016 (r422222) +++ head/math/R-cran-stabledist/distinfo Thu Sep 15 19:53:01 2016 (r422223) @@ -1,2 +1,3 @@ -SHA256 (stabledist_0.7-0.tar.gz) = 8789468f5f200d7685817cbd833595c53eefa5a31dde22fd7fa059e5e71cad1b -SIZE (stabledist_0.7-0.tar.gz) = 31485 +TIMESTAMP = 1473966418 +SHA256 (stabledist_0.7-1.tar.gz) = 06c5704d3a3c179fa389675c537c39a006867bc6e4f23dd7e406476ed2c88a69 +SIZE (stabledist_0.7-1.tar.gz) = 31963 From owner-svn-ports-head@freebsd.org Thu Sep 15 20:02:14 2016 Return-Path: Delivered-To: svn-ports-head@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 237EABDBFA2; Thu, 15 Sep 2016 20:02:14 +0000 (UTC) (envelope-from thierry@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 F2A4A6C5; Thu, 15 Sep 2016 20:02:13 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FK2Dps042425; Thu, 15 Sep 2016 20:02:13 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FK2C2U042422; Thu, 15 Sep 2016 20:02:12 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201609152002.u8FK2C2U042422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Thu, 15 Sep 2016 20:02:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422224 - in head/deskutils/pinot: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:02:14 -0000 Author: thierry Date: Thu Sep 15 20:02:12 2016 New Revision: 422224 URL: https://svnweb.freebsd.org/changeset/ports/422224 Log: Unbreak by switching to GitHub and upgrade to the latest (no release yet). Deleted: head/deskutils/pinot/files/ Modified: head/deskutils/pinot/Makefile head/deskutils/pinot/distinfo head/deskutils/pinot/pkg-plist Modified: head/deskutils/pinot/Makefile ============================================================================== --- head/deskutils/pinot/Makefile Thu Sep 15 19:53:01 2016 (r422223) +++ head/deskutils/pinot/Makefile Thu Sep 15 20:02:12 2016 (r422224) @@ -2,55 +2,53 @@ # $FreeBSD$ PORTNAME= pinot -PORTVERSION= 1.06 -PORTREVISION= 12 +PORTVERSION= 1.09 CATEGORIES= deskutils -MASTER_SITES= GOOGLE_CODE -#MASTER_SITES= http://colinf.chez.com/pinot/ -# http://amra.dyndns.org/ MAINTAINER= thierry@FreeBSD.org COMMENT= Personal search and metasearch for the Free Desktop LICENSE= GPLv2 -BROKEN= Unfetchable (google code has gone away) - -BUILD_DEPENDS= desktop-file-install:devel/desktop-file-utils \ +BUILD_DEPENDS= desktop-file-install:devel/desktop-file-utils \ update-mime-database:misc/shared-mime-info LIB_DEPENDS= libxapian.so:databases/xapian-core \ - libgtkmm-2.4.so:x11-toolkits/gtkmm24 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ libexttextcat-2.0.so:textproc/libexttextcat \ libdbus-glib-1.so:devel/dbus-glib \ - libxml++-2.6.so:textproc/libxml++26 \ + libdbus-1.so:devel/dbus \ + libxml++-2.6.so:textproc/libxml++26 \ libboost_thread.so:devel/boost-libs \ libexif.so:graphics/libexif \ libexiv2.so:graphics/exiv2 \ - libgmime-2.4.so:mail/gmime24 \ - libtag.so:audio/taglib \ + libgmime-2.4.so:mail/gmime24 \ + libtag.so:audio/taglib \ libcurl.so:ftp/curl RUN_DEPENDS= update-mime-database:misc/shared-mime-info \ antiword:textproc/antiword \ xdg-open:devel/xdg-utils \ - ${LOCALBASE}/libexec/xpdf/pdftotext:graphics/xpdf \ - catppt:textproc/catdoc \ - unrtf:textproc/unrtf \ + catppt:textproc/catdoc \ + unrtf:textproc/unrtf \ catdvi:print/catdvi \ - bash:shells/bash + bash:shells/bash \ + ${LOCALBASE}/libexec/xpdf/pdftotext:graphics/xpdf -PROJECTHOST= ${PORTNAME}-search +USE_GITHUB= yes +GH_ACCOUNT= FabriceColin +GH_TAGNAME= c14d6d5 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-http=curl --with-ssl=${OPENSSLBASE} --enable-libarchive \ --enable-mempool=no -CONFIGURE_ENV= MKDIR_P="${MKDIR}" +CONFIGURE_ENV= MKDIR_P="${MKDIR}" TEXTCAT_LIBS="-lexttextcat-2.0" CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -lboost_system -USES= execinfo gettext libarchive libtool pkgconfig python \ - shebangfix sqlite:3 -USE_OPENSSL= yes +USES= autoreconf execinfo gettext libarchive libtool pkgconfig python \ + shebangfix sqlite:3 ssl USE_XORG= pixman +USE_GNOME= atkmm cairo cairomm glibmm gtk20 gtkmm24 libsigc++20 libxml2 pangomm USE_LDCONFIG= ${PREFIX}/lib/pinot/backends ${PREFIX}/lib/pinot/filters SHEBANG_FILES= scripts/bash/*.sh Modified: head/deskutils/pinot/distinfo ============================================================================== --- head/deskutils/pinot/distinfo Thu Sep 15 19:53:01 2016 (r422223) +++ head/deskutils/pinot/distinfo Thu Sep 15 20:02:12 2016 (r422224) @@ -1,2 +1,3 @@ -SHA256 (pinot-1.06.tar.gz) = bba6f412553890ef7cccd6d7bb28df9a6c4d122ea74a2902e5de33953cd1872d -SIZE (pinot-1.06.tar.gz) = 1066326 +TIMESTAMP = 1473961314 +SHA256 (FabriceColin-pinot-1.09-c14d6d5_GH0.tar.gz) = 24faced5089ebe9df143a7ad4a87b9beaf639533e2c113b6de3ed0f6cdce8394 +SIZE (FabriceColin-pinot-1.09-c14d6d5_GH0.tar.gz) = 786374 Modified: head/deskutils/pinot/pkg-plist ============================================================================== --- head/deskutils/pinot/pkg-plist Thu Sep 15 19:53:01 2016 (r422223) +++ head/deskutils/pinot/pkg-plist Thu Sep 15 20:02:12 2016 (r422224) @@ -4,12 +4,12 @@ bin/pinot-index bin/pinot-label bin/pinot-prefs bin/pinot-search -etc/pinot/external-filters.xml -etc/pinot/globalconfig.xml -etc/pinot/textcat31_conf.txt -etc/pinot/textcat32_conf.txt -etc/pinot/textcat3_conf.txt -etc/pinot/textcat_conf.txt +%%ETCDIR%%/external-filters.xml +%%ETCDIR%%/globalconfig.xml +%%ETCDIR%%/textcat31_conf.txt +%%ETCDIR%%/textcat32_conf.txt +%%ETCDIR%%/textcat3_conf.txt +%%ETCDIR%%/textcat_conf.txt etc/xdg/autostart/pinot-dbus-daemon.desktop include/pinot/ActionQueue.h include/pinot/CommandLine.h @@ -62,6 +62,7 @@ include/pinot/Url.h include/pinot/ViewHistory.h include/pinot/Visibility.h include/pinot/WebEngine.h +include/pinot/WorkerThread.h include/pinot/WorkerThreads.h include/pinot/cjkv/CJKVTokenizer.h include/pinot/filters/Filter.h @@ -70,23 +71,14 @@ include/pinot/filters/HtmlFilter.h include/pinot/filters/HtmlParser.h include/pinot/filters/TextFilter.h include/pinot/filters/XmlFilter.h -include/pinot/xdgmime/xdgmime.c -include/pinot/xdgmime/xdgmime.h -include/pinot/xdgmime/xdgmimealias.c -include/pinot/xdgmime/xdgmimealias.h -include/pinot/xdgmime/xdgmimecache.c -include/pinot/xdgmime/xdgmimecache.h -include/pinot/xdgmime/xdgmimeglob.c -include/pinot/xdgmime/xdgmimeglob.h -include/pinot/xdgmime/xdgmimeint.c -include/pinot/xdgmime/xdgmimeint.h -include/pinot/xdgmime/xdgmimemagic.c -include/pinot/xdgmime/xdgmimemagic.h -include/pinot/xdgmime/xdgmimeparent.c -include/pinot/xdgmime/xdgmimeparent.h lib/pinot/backends/libxapianbackend.so lib/pinot/backends/libxapianbackend.so.1 lib/pinot/backends/libxapianbackend.so.1.0.0 +lib/pinot/filters/libarchivefilter.so +lib/pinot/filters/libexiv2imagefilter.so +lib/pinot/filters/libexternalfilter.so +lib/pinot/filters/libmboxfilter.so +lib/pinot/filters/libtaglibfilter.so lib/pinot/libBasicUtils.a lib/pinot/libCollect.a lib/pinot/libCore.a @@ -95,21 +87,18 @@ lib/pinot/libIndex.a lib/pinot/libIndexSearch.a lib/pinot/libMonitor.a lib/pinot/libSQL.a +lib/pinot/libSQLDB.a +lib/pinot/libSQLite.a +lib/pinot/libThread.a lib/pinot/libTokenize.a lib/pinot/libUtils.a -lib/pinot/filters/libarchivefilter.so -%%CHMLIB%%lib/pinot/filters/libchmfilter.so -lib/pinot/filters/libexiv2imagefilter.so -lib/pinot/filters/libexternalfilter.so -lib/pinot/filters/libmboxfilter.so -lib/pinot/filters/libtaglibfilter.so man/man1/pinot-dbus-daemon.1.gz man/man1/pinot-index.1.gz man/man1/pinot-label.1.gz man/man1/pinot-search.1.gz man/man1/pinot.1.gz -share/applications/pinot.desktop share/applications/pinot-prefs.desktop +share/applications/pinot.desktop share/dbus-1/services/de.berlios.Pinot.service %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog From owner-svn-ports-head@freebsd.org Thu Sep 15 20:25:29 2016 Return-Path: Delivered-To: svn-ports-head@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 6DC28BDC58D; Thu, 15 Sep 2016 20:25:29 +0000 (UTC) (envelope-from bapt@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 2F3632F8; Thu, 15 Sep 2016 20:25:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKPSRZ050272; Thu, 15 Sep 2016 20:25:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKPS0F050268; Thu, 15 Sep 2016 20:25:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609152025.u8FKPS0F050268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 15 Sep 2016 20:25:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422225 - in head/editors: libreoffice libreoffice4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:25:29 -0000 Author: bapt Date: Thu Sep 15 20:25:27 2016 New Revision: 422225 URL: https://svnweb.freebsd.org/changeset/ports/422225 Log: Use bundled ucpp at build time rather than the BROKEN devel/ucpp Reported by: antoine Modified: head/editors/libreoffice/Makefile head/editors/libreoffice/distinfo head/editors/libreoffice4/Makefile head/editors/libreoffice4/distinfo Modified: head/editors/libreoffice/Makefile ============================================================================== --- head/editors/libreoffice/Makefile Thu Sep 15 20:02:12 2016 (r422224) +++ head/editors/libreoffice/Makefile Thu Sep 15 20:25:27 2016 (r422225) @@ -20,7 +20,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archive ${LOCALBASE}/bin/gperf:devel/gperf \ ${LOCALBASE}/include/mdds/global.hpp:devel/mdds0 \ gpatch:devel/patch \ - ucpp:devel/ucpp \ ${LOCALBASE}/include/sane/sane.h:graphics/sane-backends \ vigra-config:graphics/vigra \ ${LOCALBASE}/include/glm/glm.hpp:math/glm \ @@ -76,7 +75,8 @@ RUN_DEPENDS= ${LOCALBASE}/share/fonts/Ca ${LOCALBASE}/share/fonts/LinLibertineG/LinLibertine_DR_G.ttf:x11-fonts/linuxlibertine-g DISTFILES+= 1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz:src \ - 4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2:src + 4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2:src \ + 0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz:src .if defined(PRERELEASE) MASTER_SITES+= http://dev-builds.libreoffice.org/pre-releases/src/ @@ -240,7 +240,6 @@ CONFIGURE_ARGS= --disable-dependency-tra --with-system-libs \ --with-system-libxml \ --with-system-opencollada \ - --with-system-ucpp \ --with-system-zlib \ --with-vendor="FreeBSD ports" \ --without-fonts \ Modified: head/editors/libreoffice/distinfo ============================================================================== --- head/editors/libreoffice/distinfo Thu Sep 15 20:02:12 2016 (r422224) +++ head/editors/libreoffice/distinfo Thu Sep 15 20:25:27 2016 (r422225) @@ -1,13 +1,16 @@ +TIMESTAMP = 1473971061 SHA256 (libreoffice/libreoffice-5.0.6.3.tar.xz) = 4601d778318e6221cf5b44398c54a790169ad3afb4e81aa29766bcefac0fecc7 SIZE (libreoffice/libreoffice-5.0.6.3.tar.xz) = 167281064 SHA256 (libreoffice/libreoffice-help-5.0.6.3.tar.xz) = 4cb6aa44ce6db9acf1bed2a6f1e69cb3471e6a1deb3ba3b128c820b05a6d1c1b SIZE (libreoffice/libreoffice-help-5.0.6.3.tar.xz) = 1882932 -SHA256 (libreoffice/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip) = d30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370 -SIZE (libreoffice/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip) = 3519470 -SHA256 (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6 -SIZE (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = 12288 SHA256 (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 390a5085651828b8fe12aa978b200f59b9155eedbb91a4be89bf7cf39eefdd4a SIZE (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 1652670 +SHA256 (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = b0adb8e71aef80751b999c9c055e419a625c4a05184e407aef2aee28752ad8cb +SIZE (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = 555291 +SHA256 (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = 983941d31ee8d366085cadf28db75eb1f5cb03ba1e5853b98f12f7f51c63b776 +SIZE (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = 96939 +SHA256 (libreoffice/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip) = d30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370 +SIZE (libreoffice/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip) = 3519470 SHA256 (libreoffice/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip) = 5826d1551bf599b85742545f6e01a0079b93c1b2c8434bf409eddb3a29e4726b SIZE (libreoffice/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip) = 1180582 SHA256 (libreoffice/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip) = 64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1 @@ -16,8 +19,6 @@ SHA256 (libreoffice/39bb3fcea1514f1369fc SIZE (libreoffice/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip) = 153157 SHA256 (libreoffice/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip) = e0531091787c0f16c83965fdcbc49162c059d7f0c64669e7f119699321549743 SIZE (libreoffice/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip) = 5750610 -SHA256 (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = b0adb8e71aef80751b999c9c055e419a625c4a05184e407aef2aee28752ad8cb -SIZE (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = 555291 SHA256 (libreoffice/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip) = 1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753 SIZE (libreoffice/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip) = 1521926 SHA256 (libreoffice/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip) = abe2c57ac12ba45d83563b02e240fa95d973376de2f720aab8fe11f2e621c095 @@ -36,3 +37,5 @@ SHA256 (libreoffice/eeb2c7ddf0d302fba4bf SIZE (libreoffice/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip) = 427800 SHA256 (libreoffice/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip) = 05640a1f6805b2b2d7e2cb9c50db9a5cb084e3c52ab1a71ce015239b4a1d4343 SIZE (libreoffice/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip) = 211919 +SHA256 (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6 +SIZE (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = 12288 Modified: head/editors/libreoffice4/Makefile ============================================================================== --- head/editors/libreoffice4/Makefile Thu Sep 15 20:02:12 2016 (r422224) +++ head/editors/libreoffice4/Makefile Thu Sep 15 20:25:27 2016 (r422225) @@ -27,7 +27,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archive ${LOCALBASE}/bin/gperf:devel/gperf \ ${LOCALBASE}/include/mdds/global.hpp:devel/mdds0 \ gpatch:devel/patch \ - ucpp:devel/ucpp \ vigra-config:graphics/vigra \ ${LOCALBASE}/include/glm/glm.hpp:math/glm \ bash:shells/bash \ @@ -97,7 +96,8 @@ LOVERSION= ${PORTVERSION}.${RCVER} RCVER= 2 DISTFILES+= 1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz:src \ - 4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2:src + 4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2:src \ + 0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz:src EXTRA_PATCHES= ${FILESDIR}/enable-opencollada:-p1 WRKSRC= ${WRKDIR}/${PORTNAME}-${LOVERSION} @@ -193,7 +193,6 @@ CONFIGURE_ARGS+= --disable-coinmp \ --with-system-postgresql \ --with-system-redland \ --with-system-serf \ - --with-system-ucpp \ --with-system-vigra \ --with-system-zlib \ --without-fonts \ Modified: head/editors/libreoffice4/distinfo ============================================================================== --- head/editors/libreoffice4/distinfo Thu Sep 15 20:02:12 2016 (r422224) +++ head/editors/libreoffice4/distinfo Thu Sep 15 20:25:27 2016 (r422225) @@ -1,11 +1,18 @@ +TIMESTAMP = 1473971067 +SHA256 (libreoffice/libreoffice-4.3.7.2.tar.xz) = 8ea75fa05c3f86b652f119036e1a1ebe42b0930a5b8291533769684d481f34fe +SIZE (libreoffice/libreoffice-4.3.7.2.tar.xz) = 18789995 +SHA256 (libreoffice/libreoffice-help-4.3.7.2.tar.xz) = 21a7a445041d0794e76b83b3877ec1741feca6eaec984919bf6633b417aab9bc +SIZE (libreoffice/libreoffice-help-4.3.7.2.tar.xz) = 1854916 +SHA256 (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 390a5085651828b8fe12aa978b200f59b9155eedbb91a4be89bf7cf39eefdd4a +SIZE (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 1652670 +SHA256 (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = b0adb8e71aef80751b999c9c055e419a625c4a05184e407aef2aee28752ad8cb +SIZE (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = 555291 +SHA256 (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = 983941d31ee8d366085cadf28db75eb1f5cb03ba1e5853b98f12f7f51c63b776 +SIZE (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = 96939 SHA256 (libreoffice/048751f3271906db5126ab76870444c4-commons-codec-1.9-src.zip) = a751a036a3488e2519bc105dcf80df9c004ab1a982d1dd96bbfbf07802df8831 SIZE (libreoffice/048751f3271906db5126ab76870444c4-commons-codec-1.9-src.zip) = 525299 SHA256 (libreoffice/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip) = d30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370 SIZE (libreoffice/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip) = 3519470 -SHA256 (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6 -SIZE (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = 12288 -SHA256 (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 390a5085651828b8fe12aa978b200f59b9155eedbb91a4be89bf7cf39eefdd4a -SIZE (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 1652670 SHA256 (libreoffice/2c9b0f83ed5890af02c0df1c1776f39b-commons-httpclient-3.1-src.tar.gz) = f9a496d3418b0e15894fb351652cd4fa5ca434ebfc3ce3bb8da40defd8b097f2 SIZE (libreoffice/2c9b0f83ed5890af02c0df1c1776f39b-commons-httpclient-3.1-src.tar.gz) = 1882664 SHA256 (libreoffice/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip) = 5826d1551bf599b85742545f6e01a0079b93c1b2c8434bf409eddb3a29e4726b @@ -16,8 +23,6 @@ SHA256 (libreoffice/39bb3fcea1514f1369fc SIZE (libreoffice/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip) = 153157 SHA256 (libreoffice/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip) = e0531091787c0f16c83965fdcbc49162c059d7f0c64669e7f119699321549743 SIZE (libreoffice/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip) = 5750610 -SHA256 (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = b0adb8e71aef80751b999c9c055e419a625c4a05184e407aef2aee28752ad8cb -SIZE (libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2) = 555291 SHA256 (libreoffice/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip) = 1fb458d6aab06932693cc8a9b6e4e70944ee1ff052fa63606e3131df34e21753 SIZE (libreoffice/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip) = 1521926 SHA256 (libreoffice/8ab049135b2d15313da5d9f0656894a1-commons-lang3-3.3.1-src.tar.gz) = 97ca24c80d416f651dcd3513611d5ea855be21a994e3d48563c837a599618908 @@ -44,7 +49,5 @@ SHA256 (libreoffice/eeb2c7ddf0d302fba4bf SIZE (libreoffice/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip) = 427800 SHA256 (libreoffice/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip) = 05640a1f6805b2b2d7e2cb9c50db9a5cb084e3c52ab1a71ce015239b4a1d4343 SIZE (libreoffice/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip) = 211919 -SHA256 (libreoffice/libreoffice-4.3.7.2.tar.xz) = 3a6baa64e1f775f9c1c7398449780b118f8a2cef2be9dfa797c4732fe10c0db9 -SIZE (libreoffice/libreoffice-4.3.7.2.tar.xz) = 153267644 -SHA256 (libreoffice/libreoffice-help-4.3.7.2.tar.xz) = 21a7a445041d0794e76b83b3877ec1741feca6eaec984919bf6633b417aab9bc -SIZE (libreoffice/libreoffice-help-4.3.7.2.tar.xz) = 1854916 +SHA256 (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6 +SIZE (libreoffice/185d60944ea767075d27247c3162b3bc-unowinreg.dll) = 12288 From owner-svn-ports-head@freebsd.org Thu Sep 15 20:30:01 2016 Return-Path: Delivered-To: svn-ports-head@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 7B1F3BDC5F9; Thu, 15 Sep 2016 20:30:01 +0000 (UTC) (envelope-from lme@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 3457C643; Thu, 15 Sep 2016 20:30:01 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKU0Ag050571; Thu, 15 Sep 2016 20:30:00 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKU0uL050568; Thu, 15 Sep 2016 20:30:00 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201609152030.u8FKU0uL050568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Thu, 15 Sep 2016 20:30:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422226 - head/net-mgmt/icinga2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:30:01 -0000 Author: lme Date: Thu Sep 15 20:30:00 2016 New Revision: 422226 URL: https://svnweb.freebsd.org/changeset/ports/422226 Log: net-mgmt/icinga2: - Update to 2.5.4 - Install vim syntax files [1] PR: 212660 [1] Submitted by: mat Modified: head/net-mgmt/icinga2/Makefile head/net-mgmt/icinga2/distinfo head/net-mgmt/icinga2/pkg-plist Modified: head/net-mgmt/icinga2/Makefile ============================================================================== --- head/net-mgmt/icinga2/Makefile Thu Sep 15 20:25:27 2016 (r422225) +++ head/net-mgmt/icinga2/Makefile Thu Sep 15 20:30:00 2016 (r422226) @@ -2,8 +2,7 @@ PORTNAME= icinga2 DISTVERSIONPREFIX= v -DISTVERSION= 2.5.3 -PORTREVISION= 2 +DISTVERSION= 2.5.4 CATEGORIES= net-mgmt MAINTAINER= lme@FreeBSD.org @@ -110,5 +109,8 @@ pre-install: post-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/newsyslog/ ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-newsyslog ${STAGEDIR}${EXAMPLESDIR}/newsyslog/${PORTNAME} + ${MKDIR} ${STAGEDIR}${PREFIX}/share/vim/vimfiles + (cd ${WRKSRC}/tools/syntax/vim && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${PREFIX}/share/vim/vimfiles) .include Modified: head/net-mgmt/icinga2/distinfo ============================================================================== --- head/net-mgmt/icinga2/distinfo Thu Sep 15 20:25:27 2016 (r422225) +++ head/net-mgmt/icinga2/distinfo Thu Sep 15 20:30:00 2016 (r422226) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472124266 -SHA256 (icinga-icinga2-v2.5.3_GH0.tar.gz) = 3d3b783766b31bacb161fd87218c25562125a94a890ec53c3fb554633ecc7748 -SIZE (icinga-icinga2-v2.5.3_GH0.tar.gz) = 2493793 +TIMESTAMP = 1473347191 +SHA256 (icinga-icinga2-v2.5.4_GH0.tar.gz) = f22ca17cd9951598ab6a1bc27c1ef82b9f1bb49795f69066ccd4d499faa240fc +SIZE (icinga-icinga2-v2.5.4_GH0.tar.gz) = 2493864 Modified: head/net-mgmt/icinga2/pkg-plist ============================================================================== --- head/net-mgmt/icinga2/pkg-plist Thu Sep 15 20:25:27 2016 (r422225) +++ head/net-mgmt/icinga2/pkg-plist Thu Sep 15 20:30:00 2016 (r422226) @@ -126,6 +126,8 @@ sbin/icinga2 %%DATADIR%%/include/plugins-contrib.d/vmware.conf %%DATADIR%%/include/plugins-contrib.d/web.conf %%DATADIR%%/include/windows-plugins +share/vim/vimfiles/ftdetect/icinga2.vim +share/vim/vimfiles/syntax/icinga2.vim @dir %%ETCDIR%%/pki @dir(%%ICINGA2USER%%,%%ICINGA2GROUP%%) /var/cache/icinga2 @dir(%%ICINGA2USER%%,%%ICINGA2GROUP%%) /var/lib/icinga2/api/log From owner-svn-ports-head@freebsd.org Thu Sep 15 20:36:23 2016 Return-Path: Delivered-To: svn-ports-head@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 00E54BDC90C; Thu, 15 Sep 2016 20:36:23 +0000 (UTC) (envelope-from lme@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 C559EB22; Thu, 15 Sep 2016 20:36:22 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKaLRa054178; Thu, 15 Sep 2016 20:36:21 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKaLSS054177; Thu, 15 Sep 2016 20:36:21 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201609152036.u8FKaLSS054177@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Thu, 15 Sep 2016 20:36:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422227 - head/net-mgmt/icingaweb2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:36:23 -0000 Author: lme Date: Thu Sep 15 20:36:21 2016 New Revision: 422227 URL: https://svnweb.freebsd.org/changeset/ports/422227 Log: net-mgmt/icingaweb2: - Fix NLS option - Add PDF option using graphics/pecl-imagick (off by default) - Bump PORTREVISION PR: 212653 Submitted by: mat Modified: head/net-mgmt/icingaweb2/Makefile Modified: head/net-mgmt/icingaweb2/Makefile ============================================================================== --- head/net-mgmt/icingaweb2/Makefile Thu Sep 15 20:30:00 2016 (r422226) +++ head/net-mgmt/icingaweb2/Makefile Thu Sep 15 20:36:21 2016 (r422227) @@ -3,6 +3,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v DISTVERSION= 2.3.4 +PORTREVISION= 1 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org @@ -29,13 +30,17 @@ SUB_LIST= WWWDIR=${WWWDIR} \ PLIST_SUB= WWWOWN=${WWWOWN} \ WWWGRP=${WWWGRP} -OPTIONS_DEFINE= NLS LDAP MYSQL PGSQL +OPTIONS_DEFINE= NLS LDAP MYSQL PGSQL PDF OPTIONS_DEFAULT= LDAP MYSQL PGSQL +PDF_DESC= Export graphs as PDF + NLS_USES= gettext +NLS_USE= php=intl PGSQL_USE= PHP=pdo_pgsql MYSQL_USE= PHP=pdo_mysql LDAP_USE= PHP=ldap +PDF_RUN_DEPENDS= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:graphics/pecl-imagick do-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/bash_completion.d/ From owner-svn-ports-head@freebsd.org Thu Sep 15 20:42:00 2016 Return-Path: Delivered-To: svn-ports-head@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 1863FBDCA72; Thu, 15 Sep 2016 20:42:00 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x22f.google.com (mail-wm0-x22f.google.com [IPv6:2a00:1450:400c:c09::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A9B1BE10; Thu, 15 Sep 2016 20:41:59 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x22f.google.com with SMTP id b187so4988246wme.0; Thu, 15 Sep 2016 13:41:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=aTdULwh6mCCnKQpQYyF3t32qGX7N1rB01EISmEYBO1Q=; b=DjBNM5CZQbLOJXGpIVqiwHRQH3QOM3HdU/dvSXnzPUFfw9saCo1MLVDHZjOsiEqqMG y+5X7Tjkbizk7vl+MKrookV9Ab5J7cvQCLb00vjvLzMdx9gVlhHr8INlPIHK58hqho3f /Jm8QmDYa2cQKQfHUCPJYMjN2U2kdEGE5ny7KEw/Bn54mvyd2yC0eQhHDclDTdqmgqkZ vBBHa4lLi1kVnbs9g7g0p8pXFeVyRopzNdT9IV3eKrhRJzVfxxzUVXAsVqo1BtEz3FL0 M5vOMSh4nmOltoSCzuTDH3NS0a/Go0x98D1P3N627sywW91IEJuckGnag24xu8r56+5v ciyw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=aTdULwh6mCCnKQpQYyF3t32qGX7N1rB01EISmEYBO1Q=; b=b2kzaOsYBAYd2dmPWd+Oq/2bTP8XA/cYkk7THP5wlAWLElWjgsWELEY2Wd7ncCSUzH wADczJUDJ77FXz/5XfujUjfxo6/0FWcz9VO/tLoyiLiMAblZxyeMQToNh6XM+Egp/AHP rnhSo4eCBAHvpRhsO2R8XjzShE+z/F1HlLzYixrOQPGJIgV1k3FzXzqVEAj9QhCAQvbF N7uA6XS6SZa439kPEvkJoCe/erLjvTTOiq2jHtDJipB0rAw8ux8RqxfPe2CIkaEYmiX1 Vj9buaehNBpAhGIon1VkBQx7N41ognm5BFvRHRLZt2O0RLgHesKgkLLPGx9Mzjb7kNjD vihg== X-Gm-Message-State: AE9vXwO5BtXYFCvlz/DMKuSTASsTv+ZySyTPhEMcaI0r6AviFxHq+Om97AwMG0phz1CSwQ== X-Received: by 10.28.168.9 with SMTP id r9mr3367073wme.93.1473972117452; Thu, 15 Sep 2016 13:41:57 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id yt4sm5044972wjc.48.2016.09.15.13.41.55 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 15 Sep 2016 13:41:55 -0700 (PDT) Sender: Baptiste Daroussin Date: Thu, 15 Sep 2016 22:41:54 +0200 From: Baptiste Daroussin To: "Sergey A. Osokin" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422167 - head Message-ID: <20160915204154.6wzigd3x2bxfntia@ivaldir.etoilebsd.net> References: <201609142228.u8EMSeQT046477@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="5h7ehdynajb33s7i" Content-Disposition: inline In-Reply-To: <201609142228.u8EMSeQT046477@repo.freebsd.org> User-Agent: Mutt/1.6.2-neo (2016-08-08) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:42:00 -0000 --5h7ehdynajb33s7i Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 14, 2016 at 10:28:40PM +0000, Sergey A. Osokin wrote: > Author: osa > Date: Wed Sep 14 22:28:40 2016 > New Revision: 422167 > URL: https://svnweb.freebsd.org/changeset/ports/422167 >=20 > Log: > www/nginx-devel: Change default log locations to avoid /var/log polluti= on > =20 > The nginx error log default will always be touched regardless of the va= lue > of the error_log directive in nginx.conf. This is not a bug. It also > breaks shell tab completion for the sane default of /var/log/nginx. > =20 > This change aligns the compiled-in default and the configuration default > of error log to a new default /var/log/nginx directory. > =20 > PR: 212416 >=20 Given you are working on nginx right now can you have a look at https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208583 ? in particular = the comments? Thank you, best regards, Bapt --5h7ehdynajb33s7i Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJX2weQAAoJEGOJi9zxtz5aDvQQAKJB/qYnoyqwx4D8q+OGd+kM EnpHpicnbO13r4IwOWobtoUpq+i8opx4xkJNrGB4F1Ttx7GtdXMHLz3xgrKLfHO7 OF6lMjox+Ot4vAKoxzonVnNp/yOlKQui6VSjlm0fTCyQdkdSzNVLTTArmC2yucBP Q0qKHSZsYiEIPMZtjgW42Joew5CMWyVLzArDaSDVXgCsyXdGHOtFN+eGnwpuyhrV SQljEUnEt/RGIPFYXhC7ZJI1EkfnM1AxkEXBKtOQAX+2DDsUylHH5SJZIzIL30x8 UDduK4EYED5M76FGQzp9goAeMd6M9kaDWdF4cyMhapLcO6Ep1pmdKIzpgxQxYshv Jx30ygdmC6aN2zkOlxWYPnJnMDiVpTDLiIvpPj/gDkyzf4sT0I0Ysx0UO8bfPDQy Dx9RQjamg4uhO9wgiYSs95Uq/Aa7cVTi8cGDxH9LpXQ16BZ+bZBzx2OWBkcWrwQ9 zjIpgozPVVNaDsveX9lJFhIKhynVro0mRRI29LCYR7i/KMxwr1JMGtLB2WuxT0fI nLo4CNUOA9LFxm46jq0sU7ZUqaAJh+cAH1ncmQaqCCVPjn6sAuYXdIajnp1OJkkT WoAVYU5ac4b5Ab3kP1srP4sUaMsGylc959i83k7a86uQWoKZ0f5Ow+et2YtJkMfi cZ1To+Z24XqfPpu7scQH =vphT -----END PGP SIGNATURE----- --5h7ehdynajb33s7i-- From owner-svn-ports-head@freebsd.org Thu Sep 15 20:46:59 2016 Return-Path: Delivered-To: svn-ports-head@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 A3D6DBDCBAB; Thu, 15 Sep 2016 20:46:59 +0000 (UTC) (envelope-from matthew@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 6731D16D; Thu, 15 Sep 2016 20:46:59 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKkwdJ058045; Thu, 15 Sep 2016 20:46:58 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKkwaX058040; Thu, 15 Sep 2016 20:46:58 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201609152046.u8FKkwaX058040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 15 Sep 2016 20:46:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422228 - in head/www: . p5-RT-Extension-CommandByMail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:46:59 -0000 Author: matthew Date: Thu Sep 15 20:46:57 2016 New Revision: 422228 URL: https://svnweb.freebsd.org/changeset/ports/422228 Log: RT's extension that allows you to change ticket metadata via email. WWW: http://search.cpan.org/dist/RT-Extension-CommandByMail/ PR: 212704 Submitted by: Michael Schout Added: head/www/p5-RT-Extension-CommandByMail/ head/www/p5-RT-Extension-CommandByMail/Makefile (contents, props changed) head/www/p5-RT-Extension-CommandByMail/distinfo (contents, props changed) head/www/p5-RT-Extension-CommandByMail/pkg-descr (contents, props changed) head/www/p5-RT-Extension-CommandByMail/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Sep 15 20:36:21 2016 (r422227) +++ head/www/Makefile Thu Sep 15 20:46:57 2016 (r422228) @@ -1160,6 +1160,7 @@ SUBDIR += p5-RPC-ExtDirect SUBDIR += p5-RT-Authen-ExternalAuth SUBDIR += p5-RT-Client-REST + SUBDIR += p5-RT-Extension-CommandByMail SUBDIR += p5-RT-Extension-LDAPImport SUBDIR += p5-RT-Extension-MandatoryOnTransition SUBDIR += p5-RT-Extension-SLA Added: head/www/p5-RT-Extension-CommandByMail/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-CommandByMail/Makefile Thu Sep 15 20:46:57 2016 (r422228) @@ -0,0 +1,61 @@ +# Created by: Michael Schout +# $FreeBSD$ + +PORTNAME= RT-Extension-CommandByMail +PORTVERSION= 3.00 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sysadmin@gkg.net +COMMENT= RT Extension to change ticket metadata via email + +LICENSE= GPLv2 + +OPTIONS_SINGLE= RTVERSION +OPTIONS_SINGLE_RTVERSION= RT40 RT42 RT44 +RT40_DESC= Install for rt-4.0.x (www/rt40) +RT42_DESC= Install for rt-4.2.x (www/rt42) +RT44_DESC= Install for rt-4.4.x (www/rt44) +OPTIONS_DEFAULT= RT44 + +.include + +.for opt in ${OPTIONS_SINGLE_RTVERSION} +.if ${PORT_OPTIONS:M${opt}} +RT_VER= ${opt:S/RT//} +.endif +.endfor + +BUILD_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER} +RUN_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER} + +NO_ARCH= yes + +USES= perl5 +USE_PERL5= configure + +PLIST_SUB+= RTHOME=share/rt${RT_VER} + +# Note: You can install using an arbitrary $PREFIX but only if it +# matches the $PREFIX used to install www/rt{40,42,44}. Hence ignore +# $PREFIX in the environment and inherit settings from RT.pm +do-configure: + @cd ${CONFIGURE_WRKSRC} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${SITE_PERL} ${CONFIGURE_CMD} && \ + ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile + +post-configure: + ${REINPLACE_CMD} "/RTxPlugin/d" ${WRKSRC}/Makefile + +post-install: + ${RM} ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/CommandByMail/.packlist + ${RM} ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail/Test.pm.in + ${RM} ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail/Test.pm + ${RM} ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/etc/handle_action_pass_currentuser.patch + ${RMDIR} -p ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/etc 2>/dev/null || : + ${RMDIR} -p ${STAGEDIR}${PREFIX}/share/rt${RT_VER}/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail >/dev/null || : + ${RMDIR} -p ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/CommandByMail 2>/dev/null || : + +.include Added: head/www/p5-RT-Extension-CommandByMail/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-CommandByMail/distinfo Thu Sep 15 20:46:57 2016 (r422228) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473870216 +SHA256 (RT-Extension-CommandByMail-3.00.tar.gz) = c1a0ccb5472a601a124923cbadf54f8522d02955efc7e5389f96a37efc2c7900 +SIZE (RT-Extension-CommandByMail-3.00.tar.gz) = 59304 Added: head/www/p5-RT-Extension-CommandByMail/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-CommandByMail/pkg-descr Thu Sep 15 20:46:57 2016 (r422228) @@ -0,0 +1,3 @@ +RT's extension that allows you to change ticket metadata via email. + +WWW: http://search.cpan.org/dist/RT-Extension-CommandByMail/ Added: head/www/p5-RT-Extension-CommandByMail/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-CommandByMail/pkg-plist Thu Sep 15 20:46:57 2016 (r422228) @@ -0,0 +1,6 @@ +man/man3/RT::Extension::CommandByMail.3.gz +man/man3/RT::Interface::Email::Action::CommandByMail.3.gz +man/man3/RT::Interface::Email::Filter::TakeAction.3.gz +%%RTHOME%%/plugins/RT-Extension-CommandByMail/lib/RT/Extension/CommandByMail.pm +%%RTHOME%%/plugins/RT-Extension-CommandByMail/lib/RT/Interface/Email/Action/CommandByMail.pm +%%RTHOME%%/plugins/RT-Extension-CommandByMail/lib/RT/Interface/Email/Filter/TakeAction.pm From owner-svn-ports-head@freebsd.org Thu Sep 15 20:48:04 2016 Return-Path: Delivered-To: svn-ports-head@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 4527ABDCC06; Thu, 15 Sep 2016 20:48:04 +0000 (UTC) (envelope-from matthew@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 0595D26D; Thu, 15 Sep 2016 20:48:03 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKm372058304; Thu, 15 Sep 2016 20:48:03 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKm2Td058298; Thu, 15 Sep 2016 20:48:02 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201609152048.u8FKm2Td058298@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 15 Sep 2016 20:48:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422229 - in head/www: . p5-RT-Extension-QuickAssign p5-RT-Extension-QuickAssign/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:48:04 -0000 Author: matthew Date: Thu Sep 15 20:48:02 2016 New Revision: 422229 URL: https://svnweb.freebsd.org/changeset/ports/422229 Log: RT's extension that adds owner change links on ticket display page. WWW: http://search.cpan.org/dist/RT-Extension-QuickAssign/ PR: 212706 Submitted by: Michael Schout Added: head/www/p5-RT-Extension-QuickAssign/ head/www/p5-RT-Extension-QuickAssign/Makefile (contents, props changed) head/www/p5-RT-Extension-QuickAssign/distinfo (contents, props changed) head/www/p5-RT-Extension-QuickAssign/files/ head/www/p5-RT-Extension-QuickAssign/files/patch-inc-Module-Install-RTx.pm (contents, props changed) head/www/p5-RT-Extension-QuickAssign/pkg-descr (contents, props changed) head/www/p5-RT-Extension-QuickAssign/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Sep 15 20:46:57 2016 (r422228) +++ head/www/Makefile Thu Sep 15 20:48:02 2016 (r422229) @@ -1163,6 +1163,7 @@ SUBDIR += p5-RT-Extension-CommandByMail SUBDIR += p5-RT-Extension-LDAPImport SUBDIR += p5-RT-Extension-MandatoryOnTransition + SUBDIR += p5-RT-Extension-QuickAssign SUBDIR += p5-RT-Extension-SLA SUBDIR += p5-RTx-Calendar SUBDIR += p5-Reaction Added: head/www/p5-RT-Extension-QuickAssign/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-QuickAssign/Makefile Thu Sep 15 20:48:02 2016 (r422229) @@ -0,0 +1,56 @@ +# Created by: Michael Schout +# $FreeBSD$ + +PORTNAME= RT-Extension-QuickAssign +PORTVERSION= 1.00 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sysadmin@gkg.net +COMMENT= RT Extension to add owner change links on ticket display page + +LICENSE= GPLv2 + +# this is not compatible with RT 4.4 at this time. +OPTIONS_SINGLE= RTVERSION +OPTIONS_SINGLE_RTVERSION= RT40 RT42 +RT40_DESC= Install for rt-4.0.x (www/rt40) +RT42_DESC= Install for rt-4.2.x (www/rt42) +OPTIONS_DEFAULT= RT42 + +.include + +.for opt in ${OPTIONS_SINGLE_RTVERSION} +.if ${PORT_OPTIONS:M${opt}} +RT_VER= ${opt:S/RT//} +.endif +.endfor + +BUILD_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER} +RUN_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER} + +NO_ARCH= yes + +USES= perl5 +USE_PERL5= configure + +PLIST_SUB+= RTHOME=share/rt${RT_VER} + +# Note: You can install using an arbitrary $PREFIX but only if it +# matches the $PREFIX used to install www/rt{40,42,44}. Hence ignore +# $PREFIX in the environment and inherit settings from RT.pm +do-configure: + @cd ${CONFIGURE_WRKSRC} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${SITE_PERL} ${CONFIGURE_CMD} && \ + ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile + +post-configure: + ${REINPLACE_CMD} "/RTxPlugin/d" ${WRKSRC}/Makefile + +post-install: + ${RM} ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/QuickAssign/.packlist + ${RMDIR} -p ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/QuickAssign 2>/dev/null || : + +.include Added: head/www/p5-RT-Extension-QuickAssign/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-QuickAssign/distinfo Thu Sep 15 20:48:02 2016 (r422229) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473873656 +SHA256 (RT-Extension-QuickAssign-1.00.tar.gz) = d9058465135ae5904fab7674a9eda5009ffec3dab6ca0e260a35b5c915e93496 +SIZE (RT-Extension-QuickAssign-1.00.tar.gz) = 35830 Added: head/www/p5-RT-Extension-QuickAssign/files/patch-inc-Module-Install-RTx.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-QuickAssign/files/patch-inc-Module-Install-RTx.pm Thu Sep 15 20:48:02 2016 (r422229) @@ -0,0 +1,11 @@ +--- inc/Module/Install/RTx.pm.orig 2014-12-16 17:48:55 UTC ++++ inc/Module/Install/RTx.pm +@@ -85,7 +85,7 @@ sub RTx { + my %index = map { $_ => 1 } @INDEX_DIRS; + $self->no_index( directory => $_ ) foreach grep !$index{$_}, @DIRS; + +- my $args = join ', ', map "q($_)", map { ($_, $path{$_}) } ++ my $args = join ', ', map "q($_)", map { ($_, "\$(DESTDIR)$path{$_}") } + sort keys %path; + + printf "%-10s => %s\n", $_, $path{$_} for sort keys %path; Added: head/www/p5-RT-Extension-QuickAssign/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-QuickAssign/pkg-descr Thu Sep 15 20:48:02 2016 (r422229) @@ -0,0 +1,3 @@ +RT's extension that adds owner change links on ticket display page. + +WWW: http://search.cpan.org/dist/RT-Extension-QuickAssign/ Added: head/www/p5-RT-Extension-QuickAssign/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-QuickAssign/pkg-plist Thu Sep 15 20:48:02 2016 (r422229) @@ -0,0 +1,3 @@ +man/man3/RT::Extension::QuickAssign.3.gz +%%RTHOME%%/plugins/RT-Extension-QuickAssign/html/Callbacks/QuickAssign/Elements/Tabs/Privileged +%%RTHOME%%/plugins/RT-Extension-QuickAssign/lib/RT/Extension/QuickAssign.pm From owner-svn-ports-head@freebsd.org Thu Sep 15 20:49:14 2016 Return-Path: Delivered-To: svn-ports-head@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 D5A60BDCC5A; Thu, 15 Sep 2016 20:49:14 +0000 (UTC) (envelope-from matthew@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 92060390; Thu, 15 Sep 2016 20:49:14 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKnDFk058534; Thu, 15 Sep 2016 20:49:13 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKnDJK058529; Thu, 15 Sep 2016 20:49:13 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201609152049.u8FKnDJK058529@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 15 Sep 2016 20:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422230 - in head/www: . p5-RT-Extension-Gravatar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:49:14 -0000 Author: matthew Date: Thu Sep 15 20:49:13 2016 New Revision: 422230 URL: https://svnweb.freebsd.org/changeset/ports/422230 Log: RT's extension that displays gravatar images within RT WWW: http://search.cpan.org/dist/RT-Extension-Gravatar/ PR: 212705 Submitted by: Michael Schout Added: head/www/p5-RT-Extension-Gravatar/ head/www/p5-RT-Extension-Gravatar/Makefile (contents, props changed) head/www/p5-RT-Extension-Gravatar/distinfo (contents, props changed) head/www/p5-RT-Extension-Gravatar/pkg-descr (contents, props changed) head/www/p5-RT-Extension-Gravatar/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Sep 15 20:48:02 2016 (r422229) +++ head/www/Makefile Thu Sep 15 20:49:13 2016 (r422230) @@ -1161,6 +1161,7 @@ SUBDIR += p5-RT-Authen-ExternalAuth SUBDIR += p5-RT-Client-REST SUBDIR += p5-RT-Extension-CommandByMail + SUBDIR += p5-RT-Extension-Gravatar SUBDIR += p5-RT-Extension-LDAPImport SUBDIR += p5-RT-Extension-MandatoryOnTransition SUBDIR += p5-RT-Extension-QuickAssign Added: head/www/p5-RT-Extension-Gravatar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-Gravatar/Makefile Thu Sep 15 20:49:13 2016 (r422230) @@ -0,0 +1,56 @@ +# Created by: Michael Schout +# $FreeBSD$ + +PORTNAME= RT-Extension-Gravatar +PORTVERSION= 2.01 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sysadmin@gkg.net +COMMENT= RT Extension to change ticket metadata via email + +LICENSE= GPLv2 + +OPTIONS_SINGLE= RTVERSION +OPTIONS_SINGLE_RTVERSION= RT40 RT42 RT44 +RT40_DESC= Install for rt-4.0.x (www/rt40) +RT42_DESC= Install for rt-4.2.x (www/rt42) +RT44_DESC= Install for rt-4.4.x (www/rt44) +OPTIONS_DEFAULT= RT44 + +.include + +.for opt in ${OPTIONS_SINGLE_RTVERSION} +.if ${PORT_OPTIONS:M${opt}} +RT_VER= ${opt:S/RT//} +.endif +.endfor + +BUILD_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER} +RUN_DEPENDS= ${LOCALBASE}/bin/rt:www/rt${RT_VER} + +NO_ARCH= yes + +USES= perl5 +USE_PERL5= configure + +PLIST_SUB+= RTHOME=share/rt${RT_VER} + +# Note: You can install using an arbitrary $PREFIX but only if it +# matches the $PREFIX used to install www/rt{40,42,44}. Hence ignore +# $PREFIX in the environment and inherit settings from RT.pm +do-configure: + @cd ${CONFIGURE_WRKSRC} && \ + unset PREFIX && \ + ${SETENV} ${CONFIGURE_ENV} ${PERL5} -I${SITE_PERL} ${CONFIGURE_CMD} && \ + ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' Makefile + +post-configure: + ${REINPLACE_CMD} "/RTxPlugin/d" ${WRKSRC}/Makefile + +post-install: + ${RM} ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/Gravatar/.packlist + ${RMDIR} -p ${STAGEDIR}${PREFIX}/man/auto/RT/Extension/Gravatar 2>/dev/null || : + +.include Added: head/www/p5-RT-Extension-Gravatar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-Gravatar/distinfo Thu Sep 15 20:49:13 2016 (r422230) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473874264 +SHA256 (RT-Extension-Gravatar-2.01.tar.gz) = ca24eb9abce5cdbb5545f1c35c6e4f22b9423894c37b65a43e9c9f09da3500b4 +SIZE (RT-Extension-Gravatar-2.01.tar.gz) = 38243 Added: head/www/p5-RT-Extension-Gravatar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-Gravatar/pkg-descr Thu Sep 15 20:49:13 2016 (r422230) @@ -0,0 +1,3 @@ +RT's extension that displays gravatar images within RT + +WWW: http://search.cpan.org/dist/RT-Extension-Gravatar/ Added: head/www/p5-RT-Extension-Gravatar/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-RT-Extension-Gravatar/pkg-plist Thu Sep 15 20:49:13 2016 (r422230) @@ -0,0 +1,8 @@ +%%RTHOME%%/plugins/RT-Extension-Gravatar/html/Elements/Gravatar +%%RTHOME%%/plugins/RT-Extension-Gravatar/html/Callbacks/Gravatar/Admin/Users/Modify.html/LeftColumnBottom +%%RTHOME%%/plugins/RT-Extension-Gravatar/html/Callbacks/Gravatar/User/Elements/Portlets/ExtraInfo/BeforeExtraInfo +%%RTHOME%%/plugins/RT-Extension-Gravatar/html/Callbacks/Gravatar/User/Prefs.html/FormLeftColumn +%%RTHOME%%/plugins/RT-Extension-Gravatar/html/Callbacks/Gravatar/Ticket/Elements/ShowRequestor/AboutThisUser +%%RTHOME%%/plugins/RT-Extension-Gravatar/html/Callbacks/Gravatar/Prefs/AboutMe.html/FormLeftColumn +%%RTHOME%%/plugins/RT-Extension-Gravatar/lib/RT/Extension/Gravatar.pm +man/man3/RT::Extension::Gravatar.3.gz From owner-svn-ports-head@freebsd.org Thu Sep 15 20:54:30 2016 Return-Path: Delivered-To: svn-ports-head@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 7533FBDCD98; Thu, 15 Sep 2016 20:54:30 +0000 (UTC) (envelope-from jkim@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 42AB8938; Thu, 15 Sep 2016 20:54:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FKsTZn062106; Thu, 15 Sep 2016 20:54:29 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FKsTa6062104; Thu, 15 Sep 2016 20:54:29 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609152054.u8FKsTa6062104@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 15 Sep 2016 20:54:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422231 - head/devel/mdds X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 20:54:30 -0000 Author: jkim Date: Thu Sep 15 20:54:29 2016 New Revision: 422231 URL: https://svnweb.freebsd.org/changeset/ports/422231 Log: Update to 1.2.2. Modified: head/devel/mdds/Makefile head/devel/mdds/distinfo Modified: head/devel/mdds/Makefile ============================================================================== --- head/devel/mdds/Makefile Thu Sep 15 20:49:13 2016 (r422230) +++ head/devel/mdds/Makefile Thu Sep 15 20:54:29 2016 (r422231) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mdds -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= devel MASTER_SITES= http://kohei.us/files/mdds/src/ @@ -9,6 +9,7 @@ MAINTAINER= office@FreeBSD.org COMMENT= Multi-dimensional data index algorithm LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:bzip2 NO_ARCH= yes Modified: head/devel/mdds/distinfo ============================================================================== --- head/devel/mdds/distinfo Thu Sep 15 20:49:13 2016 (r422230) +++ head/devel/mdds/distinfo Thu Sep 15 20:54:29 2016 (r422231) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469465538 -SHA256 (mdds-1.2.1.tar.bz2) = 1e2f49dfc7b9d444bad07064837099741f4c2d061807173392ad2357116dfc7b -SIZE (mdds-1.2.1.tar.bz2) = 285426 +TIMESTAMP = 1473972518 +SHA256 (mdds-1.2.2.tar.bz2) = 141e730b39110434b02cd844c5ad3442103f7c35f7e9a4d6a9f8af813594cc9d +SIZE (mdds-1.2.2.tar.bz2) = 286185 From owner-svn-ports-head@freebsd.org Thu Sep 15 21:14:51 2016 Return-Path: Delivered-To: svn-ports-head@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 CB2A6BDC04C; Thu, 15 Sep 2016 21:14:51 +0000 (UTC) (envelope-from olgeni@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 8ED93FAA; Thu, 15 Sep 2016 21:14:51 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FLEope069582; Thu, 15 Sep 2016 21:14:50 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FLEoWC069580; Thu, 15 Sep 2016 21:14:50 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201609152114.u8FLEoWC069580@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 15 Sep 2016 21:14:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422232 - head/devel/etcd3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 21:14:51 -0000 Author: olgeni Date: Thu Sep 15 21:14:50 2016 New Revision: 422232 URL: https://svnweb.freebsd.org/changeset/ports/422232 Log: Update devel/etcd3 to version 3.0.9. Modified: head/devel/etcd3/Makefile head/devel/etcd3/distinfo Modified: head/devel/etcd3/Makefile ============================================================================== --- head/devel/etcd3/Makefile Thu Sep 15 20:54:29 2016 (r422231) +++ head/devel/etcd3/Makefile Thu Sep 15 21:14:50 2016 (r422232) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= etcd -PORTVERSION= 3.0.8 +PORTVERSION= 3.0.9 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= coreos- Modified: head/devel/etcd3/distinfo ============================================================================== --- head/devel/etcd3/distinfo Thu Sep 15 20:54:29 2016 (r422231) +++ head/devel/etcd3/distinfo Thu Sep 15 21:14:50 2016 (r422232) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473497819 -SHA256 (coreos-etcd-v3.0.8_GH0.tar.gz) = fd3fd69081c0be4c155b28ee27d3e80bce92a6b62ffe34d5ee511ce032ab9134 -SIZE (coreos-etcd-v3.0.8_GH0.tar.gz) = 2211462 +TIMESTAMP = 1473973821 +SHA256 (coreos-etcd-v3.0.9_GH0.tar.gz) = d33cf2a42e33d2f79c00e4b8a5b206ae2688aadd7d71326c394fe8a9a4964706 +SIZE (coreos-etcd-v3.0.9_GH0.tar.gz) = 2211931 From owner-svn-ports-head@freebsd.org Thu Sep 15 22:05:47 2016 Return-Path: Delivered-To: svn-ports-head@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 04335BDC966; Thu, 15 Sep 2016 22:05:47 +0000 (UTC) (envelope-from mat@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 B0D4686E; Thu, 15 Sep 2016 22:05:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FM5jwq088299; Thu, 15 Sep 2016 22:05:45 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FM5jRe088296; Thu, 15 Sep 2016 22:05:45 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201609152205.u8FM5jRe088296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 15 Sep 2016 22:05:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422233 - in head: devel/mingw32-openssl security/openssl security/openssl-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 22:05:47 -0000 Author: mat Date: Thu Sep 15 22:05:45 2016 New Revision: 422233 URL: https://svnweb.freebsd.org/changeset/ports/422233 Log: ftp.openssl.org is being taken out. https://mta.openssl.org/pipermail/openssl-announce/2016-September/000075.html Sponsored by: Absolight Modified: head/devel/mingw32-openssl/Makefile (contents, props changed) head/security/openssl-devel/Makefile (contents, props changed) head/security/openssl/Makefile (contents, props changed) Modified: head/devel/mingw32-openssl/Makefile ============================================================================== --- head/devel/mingw32-openssl/Makefile Thu Sep 15 21:14:50 2016 (r422232) +++ head/devel/mingw32-openssl/Makefile Thu Sep 15 22:05:45 2016 (r422233) @@ -6,7 +6,6 @@ PORTVERSION= 1.0.2d PORTREVISION= 1 CATEGORIES= devel security MASTER_SITES= http://www.openssl.org/source/ \ - ftp://ftp.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/ PKGNAMEPREFIX= mingw32- DIST_SUBDIR= ${DISTNAME} Modified: head/security/openssl-devel/Makefile ============================================================================== --- head/security/openssl-devel/Makefile Thu Sep 15 21:14:50 2016 (r422232) +++ head/security/openssl-devel/Makefile Thu Sep 15 22:05:45 2016 (r422233) @@ -5,7 +5,6 @@ PORTNAME= openssl DISTVERSION= 1.1.0 CATEGORIES= security devel MASTER_SITES= https://www.openssl.org/source/ \ - ftp://ftp.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/ PKGNAMESUFFIX= -devel Modified: head/security/openssl/Makefile ============================================================================== --- head/security/openssl/Makefile Thu Sep 15 21:14:50 2016 (r422232) +++ head/security/openssl/Makefile Thu Sep 15 22:05:45 2016 (r422233) @@ -8,7 +8,6 @@ PORTREVISION= 15 PORTEPOCH= 1 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/source/ \ - ftp://ftp.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/ DIST_SUBDIR= ${DISTNAME} From owner-svn-ports-head@freebsd.org Thu Sep 15 22:38:57 2016 Return-Path: Delivered-To: svn-ports-head@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 9708FBDC270; Thu, 15 Sep 2016 22:38:57 +0000 (UTC) (envelope-from osa@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 8CAF9C64; Thu, 15 Sep 2016 22:38:57 +0000 (UTC) (envelope-from osa@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 975) id 8AC911D84; Thu, 15 Sep 2016 22:38:57 +0000 (UTC) Date: Thu, 15 Sep 2016 22:38:57 +0000 From: "Sergey A. Osokin" To: Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422167 - head Message-ID: <20160915223857.GG30853@FreeBSD.org> References: <201609142228.u8EMSeQT046477@repo.freebsd.org> <20160915204154.6wzigd3x2bxfntia@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20160915204154.6wzigd3x2bxfntia@ivaldir.etoilebsd.net> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 22:38:57 -0000 On Thu, Sep 15, 2016 at 10:41:54PM +0200, Baptiste Daroussin wrote: > On Wed, Sep 14, 2016 at 10:28:40PM +0000, Sergey A. Osokin wrote: > > Author: osa > > Date: Wed Sep 14 22:28:40 2016 > > New Revision: 422167 > > URL: https://svnweb.freebsd.org/changeset/ports/422167 > > > > Log: > > www/nginx-devel: Change default log locations to avoid /var/log pollution > > > > The nginx error log default will always be touched regardless of the value > > of the error_log directive in nginx.conf. This is not a bug. It also > > breaks shell tab completion for the sane default of /var/log/nginx. > > > > This change aligns the compiled-in default and the configuration default > > of error log to a new default /var/log/nginx directory. > > > > PR: 212416 > > > Given you are working on nginx right now can you have a look at > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208583 ? in particular the > comments? Agreed with your arguments, hope we'll see a patch before the final commit. -- Sergey A. Osokin osa@FreeBSD.org From owner-svn-ports-head@freebsd.org Thu Sep 15 23:43:49 2016 Return-Path: Delivered-To: svn-ports-head@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 474D5BDCFD5; Thu, 15 Sep 2016 23:43:49 +0000 (UTC) (envelope-from bapt@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 1508AB61; Thu, 15 Sep 2016 23:43:49 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FNhmJK025396; Thu, 15 Sep 2016 23:43:48 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FNhmF5025394; Thu, 15 Sep 2016 23:43:48 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609152343.u8FNhmF5025394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 15 Sep 2016 23:43:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422234 - head/devel/slibtool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 23:43:49 -0000 Author: bapt Date: Thu Sep 15 23:43:47 2016 New Revision: 422234 URL: https://svnweb.freebsd.org/changeset/ports/422234 Log: Update to 0.5.10 Modified: head/devel/slibtool/Makefile head/devel/slibtool/distinfo Modified: head/devel/slibtool/Makefile ============================================================================== --- head/devel/slibtool/Makefile Thu Sep 15 22:05:45 2016 (r422233) +++ head/devel/slibtool/Makefile Thu Sep 15 23:43:47 2016 (r422234) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= slibtool -PORTVERSION= 0.5.8 +PORTVERSION= 0.5.10 CATEGORIES= devel MASTER_SITES= http://dl.midipix.org/${PORTNAME}/ Modified: head/devel/slibtool/distinfo ============================================================================== --- head/devel/slibtool/distinfo Thu Sep 15 22:05:45 2016 (r422233) +++ head/devel/slibtool/distinfo Thu Sep 15 23:43:47 2016 (r422234) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473613567 -SHA256 (slibtool-0.5.8.tar.xz) = ec4fe3c1a4937fb2cabce0b9c9bbf4e047fe9ae55e370e51d32f9caf1b17b22b -SIZE (slibtool-0.5.8.tar.xz) = 47540 +TIMESTAMP = 1473974362 +SHA256 (slibtool-0.5.9.tar.xz) = 8309f4768708c38b7a0df6d536fe4236e652e0f5c0ab6e536979fe4ca9f2d5cb +SIZE (slibtool-0.5.9.tar.xz) = 47868 From owner-svn-ports-head@freebsd.org Thu Sep 15 23:46:17 2016 Return-Path: Delivered-To: svn-ports-head@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 D04E0BDC03B; Thu, 15 Sep 2016 23:46:17 +0000 (UTC) (envelope-from bapt@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 A333FD2B; Thu, 15 Sep 2016 23:46:17 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FNkGU3025587; Thu, 15 Sep 2016 23:46:16 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FNkG8q025586; Thu, 15 Sep 2016 23:46:16 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609152346.u8FNkG8q025586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 15 Sep 2016 23:46:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422235 - head/devel/slibtool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Sep 2016 23:46:17 -0000 Author: bapt Date: Thu Sep 15 23:46:16 2016 New Revision: 422235 URL: https://svnweb.freebsd.org/changeset/ports/422235 Log: Fix the right slibtool Modified: head/devel/slibtool/distinfo Modified: head/devel/slibtool/distinfo ============================================================================== --- head/devel/slibtool/distinfo Thu Sep 15 23:43:47 2016 (r422234) +++ head/devel/slibtool/distinfo Thu Sep 15 23:46:16 2016 (r422235) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473974362 -SHA256 (slibtool-0.5.9.tar.xz) = 8309f4768708c38b7a0df6d536fe4236e652e0f5c0ab6e536979fe4ca9f2d5cb -SIZE (slibtool-0.5.9.tar.xz) = 47868 +TIMESTAMP = 1473983157 +SHA256 (slibtool-0.5.10.tar.xz) = 6b429b31aec12cb3c6a4a89decc2c114e532089d4774f6784977eab8024b9fe0 +SIZE (slibtool-0.5.10.tar.xz) = 47944 From owner-svn-ports-head@freebsd.org Fri Sep 16 04:27:53 2016 Return-Path: Delivered-To: svn-ports-head@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 144CABDC506; Fri, 16 Sep 2016 04:27:53 +0000 (UTC) (envelope-from araujo@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 BF53DE6A; Fri, 16 Sep 2016 04:27:52 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G4RpsG031372; Fri, 16 Sep 2016 04:27:51 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G4RpvM031369; Fri, 16 Sep 2016 04:27:51 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201609160427.u8G4RpvM031369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Fri, 16 Sep 2016 04:27:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422236 - in head/sysutils/pftop: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 04:27:53 -0000 Author: araujo Date: Fri Sep 16 04:27:51 2016 New Revision: 422236 URL: https://svnweb.freebsd.org/changeset/ports/422236 Log: - Fix build on powerpc64. - Bump PORTREVISION. Submitted by: demik475_gmail.com Differential Revision: https://reviews.freebsd.org/D7862 Added: head/sysutils/pftop/files/patch-bpf_filter.c (contents, props changed) head/sysutils/pftop/files/patch-bpf_image.c (contents, props changed) Modified: head/sysutils/pftop/Makefile Modified: head/sysutils/pftop/Makefile ============================================================================== --- head/sysutils/pftop/Makefile Thu Sep 15 23:46:16 2016 (r422235) +++ head/sysutils/pftop/Makefile Fri Sep 16 04:27:51 2016 (r422236) @@ -3,15 +3,13 @@ PORTNAME= pftop PORTVERSION= 0.7 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils net MASTER_SITES= http://www.eee.metu.edu.tr/~canacar/ MAINTAINER= araujo@FreeBSD.org COMMENT= Utility for real-time display of statistics for pf -BROKEN_powerpc64= Does not build - .include .if ${OSVERSION} >= 1100080 Added: head/sysutils/pftop/files/patch-bpf_filter.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pftop/files/patch-bpf_filter.c Fri Sep 16 04:27:51 2016 (r422236) @@ -0,0 +1,13 @@ +--- bpf_filter.c.orig 2016-09-12 16:50:11.454297000 +0200 ++++ bpf_filter.c 2016-09-12 16:43:28.150188000 +0200 +@@ -143,8 +143,8 @@ + */ + u_int + bpf_filter(pc, p, wirelen, buflen) +- struct bpf_insn *pc; +- u_char *p; ++ const struct bpf_insn *pc; ++ const u_char *p; + u_int wirelen; + u_int buflen; + { Added: head/sysutils/pftop/files/patch-bpf_image.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pftop/files/patch-bpf_image.c Fri Sep 16 04:27:51 2016 (r422236) @@ -0,0 +1,11 @@ +--- bpf_image.c.orig 2016-09-12 16:51:21.704680000 +0200 ++++ bpf_image.c 2016-09-12 16:43:28.038646000 +0200 +@@ -36,7 +36,7 @@ + + char * + bpf_image(p, n) +- struct bpf_insn *p; ++ const struct bpf_insn *p; + int n; + { + int v; From owner-svn-ports-head@freebsd.org Fri Sep 16 05:22:51 2016 Return-Path: Delivered-To: svn-ports-head@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 D6FE9BDC90B; Fri, 16 Sep 2016 05:22:51 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id CC254880; Fri, 16 Sep 2016 05:22:51 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id CB0EC1EA1; Fri, 16 Sep 2016 05:22:51 +0000 (UTC) Date: Fri, 16 Sep 2016 05:22:51 +0000 From: Alexey Dokuchaev To: Olivier Duchateau Cc: "Carlos J. Puga Medina" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422218 - head/net-im/corebird Message-ID: <20160916052251.GA37760@FreeBSD.org> References: <201609151756.u8FHuvAS093292@repo.freebsd.org> <20160915205647.6e85ca84807f4b6880171f70@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160915205647.6e85ca84807f4b6880171f70@freebsd.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 05:22:51 -0000 On Thu, Sep 15, 2016 at 08:56:47PM +0200, Olivier Duchateau wrote: > On Thu, 15 Sep 2016 17:56:57 +0000 (UTC) > "Carlos J. Puga Medina" wrote: > > New Revision: 422218 > > URL: https://svnweb.freebsd.org/changeset/ports/422218 > > > > Log: > > - Update corebird to 1.3.1 release > > - Add GSTREAMER_USE=hls dependency > > - Line up options block > > - Silence all three explicitly called commands > > Why hide these commands? > > Your mentor (here, Dmitry) argues for the opposite (see his recent changes > with revision r421635, I know it's for CMake, Ninja, autotools and so on) > and he approves this. Muted commands were extract/patch-related, and we typically do mute them. Dmitry argues for making installation-related commands vocal (and I support him here). ./danfe From owner-svn-ports-head@freebsd.org Fri Sep 16 05:43:00 2016 Return-Path: Delivered-To: svn-ports-head@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 48549BDCE3A; Fri, 16 Sep 2016 05:43:00 +0000 (UTC) (envelope-from dinoex@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 1ABFC2BD; Fri, 16 Sep 2016 05:43:00 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G5gxDt060989; Fri, 16 Sep 2016 05:42:59 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G5gxUM060988; Fri, 16 Sep 2016 05:42:59 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201609160542.u8G5gxUM060988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Fri, 16 Sep 2016 05:42:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422237 - head/news/nntp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 05:43:00 -0000 Author: dinoex Date: Fri Sep 16 05:42:59 2016 New Revision: 422237 URL: https://svnweb.freebsd.org/changeset/ports/422237 Log: - fix cstd fior FreeBSD-12 Modified: head/news/nntp/Makefile Modified: head/news/nntp/Makefile ============================================================================== --- head/news/nntp/Makefile Fri Sep 16 04:27:51 2016 (r422236) +++ head/news/nntp/Makefile Fri Sep 16 05:42:59 2016 (r422237) @@ -17,6 +17,7 @@ COMMENT= NNTP with NOV support BUILD_DEPENDS= ${LOCALBASE}/lib/libcnews.a:news/cnews NO_WRKSUBDIR= yes +USE_CSTD= gnu89 PLIST_SUB+= VARBASE=${VARBASE} PLIST_SUB+= NEWSBIN=${NEWSBIN:S=^${PREFIX}/==} PLIST_SUB+= NEWSCTL=${NEWSCTL:S=^${VARBASE}/==} From owner-svn-ports-head@freebsd.org Fri Sep 16 05:50:06 2016 Return-Path: Delivered-To: svn-ports-head@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 E5A3CBDCF8D; Fri, 16 Sep 2016 05:50:06 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id DAEF06DF; Fri, 16 Sep 2016 05:50:06 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id D99921509; Fri, 16 Sep 2016 05:50:06 +0000 (UTC) Date: Fri, 16 Sep 2016 05:50:06 +0000 From: Alexey Dokuchaev To: Jung-uk Kim Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422169 - in head/korean/imhangul: . files Message-ID: <20160916055006.GC37760@FreeBSD.org> References: <201609142325.u8ENP9iT068917@repo.freebsd.org> <20160915131922.GA57192@FreeBSD.org> <21fa2bab-ad13-5082-14fb-42218380454a@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <21fa2bab-ad13-5082-14fb-42218380454a@FreeBSD.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 05:50:07 -0000 On Thu, Sep 15, 2016 at 02:19:44PM -0400, Jung-uk Kim wrote: > On 09/15/2016 09:19, Alexey Dokuchaev wrote: > > On Wed, Sep 14, 2016 at 11:25:09PM +0000, Jung-uk Kim wrote: > >> New Revision: 422169 > >> URL: https://svnweb.freebsd.org/changeset/ports/422169 > >> > >> Log: > >> - Unbreak and modernize the port. > >> - Switch to GTK3 by default. > > > > Why? I was under impression that we still adhere to GTK+2 for the time > > being. > > Hmm... I didn't know that because I don't follow freebsd-gnome@. You don't need to follow gnome@, just use the ports tree: most of them prefer GTK+2.0 by default. :-) > Anyway, I committed r422221 to split it into two separate ports. There > was no point of keeping these in one port any more. I kind of dislike per-option slaves, but oh well, let's hope it's for the better. Thanks, ./danfe From owner-svn-ports-head@freebsd.org Fri Sep 16 06:55:10 2016 Return-Path: Delivered-To: svn-ports-head@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 C7EC1BDBF3F; Fri, 16 Sep 2016 06:55:10 +0000 (UTC) (envelope-from antoine@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 94E93385; Fri, 16 Sep 2016 06:55:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G6t9B6087472; Fri, 16 Sep 2016 06:55:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G6t9jM087471; Fri, 16 Sep 2016 06:55:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609160655.u8G6t9jM087471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 16 Sep 2016 06:55:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422239 - head/textproc/erlang-p1xml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 06:55:10 -0000 Author: antoine Date: Fri Sep 16 06:55:09 2016 New Revision: 422239 URL: https://svnweb.freebsd.org/changeset/ports/422239 Log: Mark BROKEN: fails to build src/xml_util.erl:32: syntax error before: '/' src/xml_util.erl:41: syntax error before: '/' src/xml_util.erl:50: syntax error before: '/' src/xml_util.erl:60: syntax error before: '/' src/xml_util.erl:69: syntax error before: '/' src/xml_util.erl:78: syntax error before: '/' Compiling src/xml_util.erl failed: ERROR: compile failed while processing /wrkdirs/usr/ports/textproc/erlang-p1xml/work/xml-7ff90b7: rebar_abort Reported by: pkg-fallout Modified: head/textproc/erlang-p1xml/Makefile Modified: head/textproc/erlang-p1xml/Makefile ============================================================================== --- head/textproc/erlang-p1xml/Makefile Fri Sep 16 06:50:44 2016 (r422238) +++ head/textproc/erlang-p1xml/Makefile Fri Sep 16 06:55:09 2016 (r422239) @@ -11,6 +11,8 @@ COMMENT= Fast Expat based Erlang XML par LICENSE= GPLv2 +BROKEN= fails to build + LIB_DEPENDS= libexpat.so:textproc/expat2 USES= erlang:rebar From owner-svn-ports-head@freebsd.org Fri Sep 16 06:56:22 2016 Return-Path: Delivered-To: svn-ports-head@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 57184BDBF90; Fri, 16 Sep 2016 06:56:22 +0000 (UTC) (envelope-from antoine@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 24CE6689; Fri, 16 Sep 2016 06:56:22 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G6uLhQ087602; Fri, 16 Sep 2016 06:56:21 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G6uLjN087601; Fri, 16 Sep 2016 06:56:21 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609160656.u8G6uLjN087601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 16 Sep 2016 06:56:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422240 - head/graphics/wings X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 06:56:22 -0000 Author: antoine Date: Fri Sep 16 06:56:21 2016 New Revision: 422240 URL: https://svnweb.freebsd.org/changeset/ports/422240 Log: Mark BROKEN: fails to build erlc -W +debug_info +debug_info -o. tools.erl tools.erl:247: redefining predefined macro 'FUNCTION_NAME' Reported by: pkg-fallout Modified: head/graphics/wings/Makefile Modified: head/graphics/wings/Makefile ============================================================================== --- head/graphics/wings/Makefile Fri Sep 16 06:55:09 2016 (r422239) +++ head/graphics/wings/Makefile Fri Sep 16 06:56:21 2016 (r422240) @@ -16,6 +16,8 @@ LICENSE_NAME= Wings 3D License # similar LICENSE_FILE= ${WRKSRC}/license.terms LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN= fails to build + BUILD_DEPENDS= erl:lang/erlang \ erlang-esdl>0:devel/erlang-esdl RUN_DEPENDS:= ${BUILD_DEPENDS} From owner-svn-ports-head@freebsd.org Fri Sep 16 06:57:26 2016 Return-Path: Delivered-To: svn-ports-head@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 51713BDBFE1; Fri, 16 Sep 2016 06:57:26 +0000 (UTC) (envelope-from antoine@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 1ED7A7CD; Fri, 16 Sep 2016 06:57:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G6vPRv087736; Fri, 16 Sep 2016 06:57:25 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G6vPoV087735; Fri, 16 Sep 2016 06:57:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609160657.u8G6vPoV087735@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 16 Sep 2016 06:57:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422241 - head/security/pond X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 06:57:26 -0000 Author: antoine Date: Fri Sep 16 06:57:25 2016 New Revision: 422241 URL: https://svnweb.freebsd.org/changeset/ports/422241 Log: Mark BROKEN: wrong build depends ===> pond-20150830_1 depends on file: /usr/local/share/go/pkg/freebsd_amd64/code.google.com/p/go.net/dict.a - not found Reported by: pkg-fallout Modified: head/security/pond/Makefile Modified: head/security/pond/Makefile ============================================================================== --- head/security/pond/Makefile Fri Sep 16 06:56:21 2016 (r422240) +++ head/security/pond/Makefile Fri Sep 16 06:57:25 2016 (r422241) @@ -14,6 +14,8 @@ COMMENT= Forward secure, asynchronous me LICENSE= BSD3CLAUSE +BROKEN= wrong build depends + BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/golang.org/x/crypto/bcrypt.a:security/go.crypto \ ${LOCALBASE}/${GO_LIBDIR}/github.com/golang/protobuf/proto.a:devel/goprotobuf \ ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.net/dict.a:net/go.net From owner-svn-ports-head@freebsd.org Fri Sep 16 07:01:21 2016 Return-Path: Delivered-To: svn-ports-head@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 1500ABDC125; Fri, 16 Sep 2016 07:01:21 +0000 (UTC) (envelope-from antoine@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 D6730AEF; Fri, 16 Sep 2016 07:01:20 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G71KO0091369; Fri, 16 Sep 2016 07:01:20 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G71KZD091368; Fri, 16 Sep 2016 07:01:20 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609160701.u8G71KZD091368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 16 Sep 2016 07:01:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422242 - head/print/apsfilter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 07:01:21 -0000 Author: antoine Date: Fri Sep 16 07:01:19 2016 New Revision: 422242 URL: https://svnweb.freebsd.org/changeset/ports/422242 Log: Mark BROKEN: wrong run depends ===> apsfilter-7.2.8_17 depends on executable: hpijs - not found Reported by: pkg-fallout Modified: head/print/apsfilter/Makefile Modified: head/print/apsfilter/Makefile ============================================================================== --- head/print/apsfilter/Makefile Fri Sep 16 06:57:25 2016 (r422241) +++ head/print/apsfilter/Makefile Fri Sep 16 07:01:19 2016 (r422242) @@ -16,6 +16,8 @@ LICENSE_NAME= Postcard License LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN= wrong run depends + RUN_DEPENDS= bash:shells/bash USES= tar:bzip2 From owner-svn-ports-head@freebsd.org Fri Sep 16 07:06:15 2016 Return-Path: Delivered-To: svn-ports-head@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 00A8CBDC457; Fri, 16 Sep 2016 07:06:15 +0000 (UTC) (envelope-from antoine@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 D2A80D07; Fri, 16 Sep 2016 07:06:14 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G76ERn091620; Fri, 16 Sep 2016 07:06:14 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G76EuM091619; Fri, 16 Sep 2016 07:06:14 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609160706.u8G76EuM091619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 16 Sep 2016 07:06:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422243 - head/net-p2p/qbittorrent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 07:06:15 -0000 Author: antoine Date: Fri Sep 16 07:06:13 2016 New Revision: 422243 URL: https://svnweb.freebsd.org/changeset/ports/422243 Log: Mark BROKEN: fails to build In file included from app/application.cpp:70: In file included from ./base/bittorrent/session.h:43: ./base/bittorrent/torrentinfo.h:50:37: error: no type named 'intrusive_ptr' in namespace 'boost' explicit TorrentInfo(boost::intrusive_ptr nativeInfo = boost::intrusive_ptr()); ~~~~~~~^ ./base/bittorrent/torrentinfo.h:50:50: error: expected ')' explicit TorrentInfo(boost::intrusive_ptr nativeInfo = boost::intrusive_ptr()); ^ ./base/bittorrent/torrentinfo.h:50:29: note: to match this '(' explicit TorrentInfo(boost::intrusive_ptr nativeInfo = boost::intrusive_ptr()); ^ ./base/bittorrent/torrentinfo.h:80:16: error: no type named 'intrusive_ptr' in namespace 'boost' boost::intrusive_ptr nativeInfo() const; ~~~~~~~^ ./base/bittorrent/torrentinfo.h:80:29: error: expected member name or ';' after declaration specifiers boost::intrusive_ptr nativeInfo() const; ~~~~~~~~~~~~~~~~~~~~^ ./base/bittorrent/torrentinfo.h:83:16: error: no type named 'intrusive_ptr' in namespace 'boost' boost::intrusive_ptr m_nativeInfo; ~~~~~~~^ ./base/bittorrent/torrentinfo.h:83:29: error: expected member name or ';' after declaration specifiers boost::intrusive_ptr m_nativeInfo; ~~~~~~~~~~~~~~~~~~~~^ In file included from app/application.cpp:70: ./base/bittorrent/session.h:291:63: error: no matching constructor for initialization of 'BitTorrent::TorrentInfo' const TorrentInfo &torrentInfo = TorrentInfo(), ^ ./base/bittorrent/torrentinfo.h:51:9: note: candidate constructor not viable: requires single argument 'other', but no arguments were provided TorrentInfo(const TorrentInfo &other); ^ In file included from app/application.cpp:71: ./base/bittorrent/torrenthandle.h:386:36: error: field has incomplete type 'libtorrent::torrent_status' libtorrent::torrent_status m_nativeStatus; ^ /usr/local/include/libtorrent/torrent_handle.hpp:72:9: note: forward declaration of 'libtorrent::torrent_status' struct torrent_status; ^ Reported by: pkg-fallout Modified: head/net-p2p/qbittorrent/Makefile Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Fri Sep 16 07:01:19 2016 (r422242) +++ head/net-p2p/qbittorrent/Makefile Fri Sep 16 07:06:13 2016 (r422243) @@ -11,6 +11,8 @@ COMMENT?= Bittorrent client using Qt4 an LICENSE= GPLv2 +BROKEN= fails to build + # ABI versions specified on purpose for libtorrent-rasterbar LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorrent-rasterbar \ libboost_system.so:devel/boost-libs From owner-svn-ports-head@freebsd.org Fri Sep 16 07:37:48 2016 Return-Path: Delivered-To: svn-ports-head@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 E29A0BDCB41; Fri, 16 Sep 2016 07:37:48 +0000 (UTC) (envelope-from tobez@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 B54DDE06; Fri, 16 Sep 2016 07:37:48 +0000 (UTC) (envelope-from tobez@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G7blEl002931; Fri, 16 Sep 2016 07:37:47 GMT (envelope-from tobez@FreeBSD.org) Received: (from tobez@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G7bl6x002929; Fri, 16 Sep 2016 07:37:47 GMT (envelope-from tobez@FreeBSD.org) Message-Id: <201609160737.u8G7bl6x002929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobez set sender to tobez@FreeBSD.org using -f From: Anton Berezin Date: Fri, 16 Sep 2016 07:37:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422244 - head/textproc/p5-Lingua-EN-Fathom X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 07:37:49 -0000 Author: tobez Date: Fri Sep 16 07:37:47 2016 New Revision: 422244 URL: https://svnweb.freebsd.org/changeset/ports/422244 Log: Update to 1.19. Changes: http://cpansearch.perl.org/src/KIMRYAN/Lingua-EN-Fathom-1.19/Changes Modified: head/textproc/p5-Lingua-EN-Fathom/Makefile head/textproc/p5-Lingua-EN-Fathom/distinfo Modified: head/textproc/p5-Lingua-EN-Fathom/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-Fathom/Makefile Fri Sep 16 07:06:13 2016 (r422243) +++ head/textproc/p5-Lingua-EN-Fathom/Makefile Fri Sep 16 07:37:47 2016 (r422244) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Lingua-EN-Fathom -PORTVERSION= 1.15 -PORTREVISION= 1 +PORTVERSION= 1.19 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,7 +13,7 @@ COMMENT= Lingua::EN::Fathom - Measure re LICENSE= ART10 GPLv1 LICENSE_COMB= dual -COMMON_DEPENDS= p5-Lingua-EN-Syllable>0:textproc/p5-Lingua-EN-Syllable +COMMON_DEPENDS= p5-Lingua-EN-Syllable>=0:textproc/p5-Lingua-EN-Syllable BUILD_DEPENDS= ${COMMON_DEPENDS} RUN_DEPENDS= ${COMMON_DEPENDS} Modified: head/textproc/p5-Lingua-EN-Fathom/distinfo ============================================================================== --- head/textproc/p5-Lingua-EN-Fathom/distinfo Fri Sep 16 07:06:13 2016 (r422243) +++ head/textproc/p5-Lingua-EN-Fathom/distinfo Fri Sep 16 07:37:47 2016 (r422244) @@ -1,2 +1,3 @@ -SHA256 (Lingua-EN-Fathom-1.15.tar.gz) = ff90d74714d3fc04b928b1d467cfbe206d89cfce4a466b065311d98e03849897 -SIZE (Lingua-EN-Fathom-1.15.tar.gz) = 8121 +TIMESTAMP = 1474011305 +SHA256 (Lingua-EN-Fathom-1.19.tar.gz) = 17a905c42c0859daf11a2c1115084897eb5cfbddac11b9ba3a3f2a2c5dba8446 +SIZE (Lingua-EN-Fathom-1.19.tar.gz) = 10686 From owner-svn-ports-head@freebsd.org Fri Sep 16 07:38:11 2016 Return-Path: Delivered-To: svn-ports-head@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 E5B48BDCB96; Fri, 16 Sep 2016 07:38:11 +0000 (UTC) (envelope-from ale@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 B330EF0D; Fri, 16 Sep 2016 07:38:11 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G7cAb5003062; Fri, 16 Sep 2016 07:38:10 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G7cAfn003060; Fri, 16 Sep 2016 07:38:10 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201609160738.u8G7cAfn003060@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Fri, 16 Sep 2016 07:38:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422245 - head/databases/mysql56-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 07:38:12 -0000 Author: ale Date: Fri Sep 16 07:38:10 2016 New Revision: 422245 URL: https://svnweb.freebsd.org/changeset/ports/422245 Log: Update to 5.6.33 release. Modified: head/databases/mysql56-server/Makefile head/databases/mysql56-server/distinfo Modified: head/databases/mysql56-server/Makefile ============================================================================== --- head/databases/mysql56-server/Makefile Fri Sep 16 07:37:47 2016 (r422244) +++ head/databases/mysql56-server/Makefile Fri Sep 16 07:38:10 2016 (r422245) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.32 +PORTVERSION= 5.6.33 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.6 Modified: head/databases/mysql56-server/distinfo ============================================================================== --- head/databases/mysql56-server/distinfo Fri Sep 16 07:37:47 2016 (r422244) +++ head/databases/mysql56-server/distinfo Fri Sep 16 07:38:10 2016 (r422245) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472639121 -SHA256 (mysql-5.6.32.tar.gz) = 4620ed9d9b5803a3ac7a23492dbea993214d3b5ffd4fb63d42771c616f60e359 -SIZE (mysql-5.6.32.tar.gz) = 32095208 +TIMESTAMP = 1474010208 +SHA256 (mysql-5.6.33.tar.gz) = 60776ec27d78b59f597e71738c5bcdea64dcba33c36fede320d5930320b1fef0 +SIZE (mysql-5.6.33.tar.gz) = 32094894 From owner-svn-ports-head@freebsd.org Fri Sep 16 07:38:27 2016 Return-Path: Delivered-To: svn-ports-head@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 AE08DBDCBDE; Fri, 16 Sep 2016 07:38:27 +0000 (UTC) (envelope-from ale@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 7B8EA10AC; Fri, 16 Sep 2016 07:38:27 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G7cQTh003184; Fri, 16 Sep 2016 07:38:26 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G7cQAE003182; Fri, 16 Sep 2016 07:38:26 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201609160738.u8G7cQAE003182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Fri, 16 Sep 2016 07:38:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422246 - head/databases/mysql55-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 07:38:27 -0000 Author: ale Date: Fri Sep 16 07:38:26 2016 New Revision: 422246 URL: https://svnweb.freebsd.org/changeset/ports/422246 Log: Update to 5.5.52 release. Modified: head/databases/mysql55-server/Makefile head/databases/mysql55-server/distinfo Modified: head/databases/mysql55-server/Makefile ============================================================================== --- head/databases/mysql55-server/Makefile Fri Sep 16 07:38:10 2016 (r422245) +++ head/databases/mysql55-server/Makefile Fri Sep 16 07:38:26 2016 (r422246) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.5.51 +PORTVERSION= 5.5.52 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.5 Modified: head/databases/mysql55-server/distinfo ============================================================================== --- head/databases/mysql55-server/distinfo Fri Sep 16 07:38:10 2016 (r422245) +++ head/databases/mysql55-server/distinfo Fri Sep 16 07:38:26 2016 (r422246) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472638975 -SHA256 (mysql-5.5.51.tar.gz) = ffa6866cb0cd833cae4a653e4260dfd5a80b62532d6b64e91cfb057bab5a22a7 -SIZE (mysql-5.5.51.tar.gz) = 21031206 +TIMESTAMP = 1474010194 +SHA256 (mysql-5.5.52.tar.gz) = 7820e13de6b3f4dadd255e12b2e9f3de43daf4507c218018c382d45aad8162fd +SIZE (mysql-5.5.52.tar.gz) = 21032776 From owner-svn-ports-head@freebsd.org Fri Sep 16 07:38:45 2016 Return-Path: Delivered-To: svn-ports-head@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 B9C87BDCC2F; Fri, 16 Sep 2016 07:38:45 +0000 (UTC) (envelope-from gahr@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 7B2D71193; Fri, 16 Sep 2016 07:38:45 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G7ciRg003403; Fri, 16 Sep 2016 07:38:44 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G7cifZ003397; Fri, 16 Sep 2016 07:38:44 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201609160738.u8G7cifZ003397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 16 Sep 2016 07:38:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422247 - in head/math/mpexpr: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 07:38:45 -0000 Author: gahr Date: Fri Sep 16 07:38:43 2016 New Revision: 422247 URL: https://svnweb.freebsd.org/changeset/ports/422247 Log: math/mpexpr: update to 1.2 Added: head/math/mpexpr/files/patch-generic_endian.c (contents, props changed) head/math/mpexpr/files/patch-generic_mpiface.c (contents, props changed) Deleted: head/math/mpexpr/files/patch-generic-mpexpr.h head/math/mpexpr/files/patch-generic_mpexpr.c head/math/mpexpr/files/patch-generic_mpparse.c Modified: head/math/mpexpr/Makefile head/math/mpexpr/distinfo head/math/mpexpr/files/patch-unix-Makefile.in head/math/mpexpr/files/patch-unix-configure Modified: head/math/mpexpr/Makefile ============================================================================== --- head/math/mpexpr/Makefile Fri Sep 16 07:38:26 2016 (r422246) +++ head/math/mpexpr/Makefile Fri Sep 16 07:38:43 2016 (r422247) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpexpr -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= math tcl MASTER_SITES= SF @@ -23,8 +23,8 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ CONFIGURE_ENV+= TCL_INC_DIR=${TCL_INCLUDEDIR} \ TCL_LIB_DIR=${TCL_LIBDIR} -PLIST_FILES= lib/Mpexpr10/libMpexpr10.so \ - lib/Mpexpr10/pkgIndex.tcl \ +PLIST_FILES= lib/Mpexpr12/libMpexpr12.so \ + lib/Mpexpr12/pkgIndex.tcl \ man/mann/mpexpr.n.gz post-patch: @@ -32,12 +32,12 @@ post-patch: ${REINPLACE_CMD} -e '/set VERBOSE/s|0|1|' ${WRKSRC}/../tests/defs do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/lib/Mpexpr10 - ${INSTALL_PROGRAM} ${WRKSRC}/libMpexpr10.so ${STAGEDIR}${PREFIX}/lib/Mpexpr10 - ${INSTALL_DATA} ${WRKSRC}/pkgIndex.tcl ${STAGEDIR}${PREFIX}/lib/Mpexpr10 + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/Mpexpr12 + ${INSTALL_PROGRAM} ${WRKSRC}/libMpexpr12.so ${STAGEDIR}${PREFIX}/lib/Mpexpr12 + ${INSTALL_DATA} ${WRKSRC}/pkgIndex.tcl ${STAGEDIR}${PREFIX}/lib/Mpexpr12 ${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/mpexpr.man ${STAGEDIR}${PREFIX}/man/mann/mpexpr.n -regression-test: build +do-test: build cd ${WRKSRC} && ${MAKE_CMD} test .include Modified: head/math/mpexpr/distinfo ============================================================================== --- head/math/mpexpr/distinfo Fri Sep 16 07:38:26 2016 (r422246) +++ head/math/mpexpr/distinfo Fri Sep 16 07:38:43 2016 (r422247) @@ -1,2 +1,3 @@ -SHA256 (mpexpr-1.1.tar.gz) = 7fc81ef9a213591c0c03939f18acfc0e1e4ddadf3a2c225450d148ffc26a877b -SIZE (mpexpr-1.1.tar.gz) = 231911 +TIMESTAMP = 1474011027 +SHA256 (mpexpr-1.2.tar.gz) = 616397bb21823ea7d4527d61a19064012764025e429bfebc432f83116809682f +SIZE (mpexpr-1.2.tar.gz) = 264067 Added: head/math/mpexpr/files/patch-generic_endian.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/mpexpr/files/patch-generic_endian.c Fri Sep 16 07:38:43 2016 (r422247) @@ -0,0 +1,11 @@ +--- generic/endian.c.orig 2016-09-16 07:35:45 UTC ++++ generic/endian.c +@@ -35,7 +35,7 @@ + char byte[8] = { (char)0x12, (char)0x36, (char)0x48, (char)0x59, + (char)0x01, (char)0x23, (char)0x45, (char)0x67 }; + +-main() ++int main() + { + /* pointers into the byte order array */ + int *intp = (int *)byte; Added: head/math/mpexpr/files/patch-generic_mpiface.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/mpexpr/files/patch-generic_mpiface.c Fri Sep 16 07:38:43 2016 (r422247) @@ -0,0 +1,11 @@ +--- generic/mpiface.c.orig 2016-09-16 07:36:35 UTC ++++ generic/mpiface.c +@@ -69,7 +69,7 @@ Mpexpr_Init (interp) + Tcl_Interp *interp; + { + Mp_Data *mdPtr; +- static initialized = 0; ++ static int initialized = 0; + TCL_DECLARE_MUTEX(mpMutex) + + if (!initialized) { Modified: head/math/mpexpr/files/patch-unix-Makefile.in ============================================================================== --- head/math/mpexpr/files/patch-unix-Makefile.in Fri Sep 16 07:38:26 2016 (r422246) +++ head/math/mpexpr/files/patch-unix-Makefile.in Fri Sep 16 07:38:43 2016 (r422247) @@ -1,6 +1,6 @@ ---- unix/Makefile.in.orig 2004-06-08 04:16:40.000000000 +0200 -+++ unix/Makefile.in 2013-11-06 15:14:48.000000000 +0100 -@@ -219,17 +219,17 @@ +--- unix/Makefile.in.orig 2016-09-15 16:44:37 UTC ++++ unix/Makefile.in +@@ -219,17 +219,17 @@ all: @PROGS@ # a make clobber and try LITTLE_ENDIAN. If that fails, ask a wizard # for help. # Modified: head/math/mpexpr/files/patch-unix-configure ============================================================================== --- head/math/mpexpr/files/patch-unix-configure Fri Sep 16 07:38:26 2016 (r422246) +++ head/math/mpexpr/files/patch-unix-configure Fri Sep 16 07:38:43 2016 (r422247) @@ -1,6 +1,6 @@ ---- unix/configure.orig 2013-11-06 15:39:52.000000000 +0100 -+++ unix/configure 2013-11-06 15:39:52.000000000 +0100 -@@ -23,6 +23,8 @@ +--- unix/configure.orig 2013-05-09 14:28:39 UTC ++++ unix/configure +@@ -23,6 +23,8 @@ ac_help="$ac_help # Initialize some variables set by options. # The variables have the same names as the options, with # dashes changed to underlines. @@ -9,7 +9,7 @@ build=NONE cache_file=./config.cache exec_prefix=NONE -@@ -733,24 +735,6 @@ +@@ -733,24 +735,6 @@ if test "${with_tcl+set}" = set; then fi From owner-svn-ports-head@freebsd.org Fri Sep 16 09:01:37 2016 Return-Path: Delivered-To: svn-ports-head@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 B7359BD9CC2; Fri, 16 Sep 2016 09:01:37 +0000 (UTC) (envelope-from amdmi3@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 6D28CD72; Fri, 16 Sep 2016 09:01:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G91anb036358; Fri, 16 Sep 2016 09:01:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G91awG036356; Fri, 16 Sep 2016 09:01:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609160901.u8G91awG036356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 09:01:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422248 - in head/multimedia/kissdx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 09:01:37 -0000 Author: amdmi3 Date: Fri Sep 16 09:01:36 2016 New Revision: 422248 URL: https://svnweb.freebsd.org/changeset/ports/422248 Log: - Clarify LICENSE - Add LICENSE_FILE - Simplify installation - Pet portlint - Switch to options helpers - Fix rc.d script Modified: head/multimedia/kissdx/Makefile head/multimedia/kissdx/files/kissdx.in Modified: head/multimedia/kissdx/Makefile ============================================================================== --- head/multimedia/kissdx/Makefile Fri Sep 16 07:38:43 2016 (r422247) +++ head/multimedia/kissdx/Makefile Fri Sep 16 09:01:36 2016 (r422248) @@ -3,20 +3,21 @@ PORTNAME= kissdx PORTVERSION= 0.13.10a -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= multimedia net MASTER_SITES= http://paragi.dk/kiss/ MAINTAINER= ports@FreeBSD.org COMMENT= Multimedia streaming server for KiSS/Linksys player -LICENSE= GPLv2 - -BROKEN_powerpc64= Does not build +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgd.so:graphics/gd \ libdvdread.so:multimedia/libdvdread +BROKEN_powerpc64= Does not build + USES= compiler:nestedfct dos2unix iconv jpeg MAKE_ENV= FreeBSD=defined @@ -45,16 +46,13 @@ pre-build: @${RM} -f ${WRKSRC}/kissdx.o do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} kissdx \ - ${STAGEDIR}${PREFIX}/sbin) - (cd ${WRKSRC} && ${INSTALL_SCRIPT} kissd-pretrigger kissd-posttrigger \ - ${STAGEDIR}${PREFIX}/sbin) - (cd ${WRKSRC} && ${INSTALL_MAN} kissdx.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1) - (cd ${WRKSRC} && ${INSTALL_DATA} kissdx.conf \ - ${STAGEDIR}${PREFIX}/etc) + ${INSTALL_PROGRAM} ${WRKSRC}/kissdx ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_SCRIPT} ${WRKSRC}/kissd-pretrigger ${WRKSRC}/kissd-posttrigger ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/kissdx.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_DATA} ${WRKSRC}/kissdx.conf ${STAGEDIR}${PREFIX}/etc + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} README \ - ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include Modified: head/multimedia/kissdx/files/kissdx.in ============================================================================== --- head/multimedia/kissdx/files/kissdx.in Fri Sep 16 07:38:43 2016 (r422247) +++ head/multimedia/kissdx/files/kissdx.in Fri Sep 16 09:01:36 2016 (r422248) @@ -6,6 +6,8 @@ # # kissdx_enable="YES" (kissdx="YES" for NetBSD) # +# PROVIDE: kissdx +# . /etc/rc.subr From owner-svn-ports-head@freebsd.org Fri Sep 16 09:27:51 2016 Return-Path: Delivered-To: svn-ports-head@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 105BBBDC42D; Fri, 16 Sep 2016 09:27:51 +0000 (UTC) (envelope-from madpilot@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 C33A4C9F; Fri, 16 Sep 2016 09:27:50 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8G9RnAq045338; Fri, 16 Sep 2016 09:27:49 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8G9RnSq045336; Fri, 16 Sep 2016 09:27:49 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201609160927.u8G9RnSq045336@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 16 Sep 2016 09:27:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422249 - head/deskutils/calibre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 09:27:51 -0000 Author: madpilot Date: Fri Sep 16 09:27:49 2016 New Revision: 422249 URL: https://svnweb.freebsd.org/changeset/ports/422249 Log: Update calibre to 2.68.0 Modified: head/deskutils/calibre/Makefile head/deskutils/calibre/distinfo Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Fri Sep 16 09:01:36 2016 (r422248) +++ head/deskutils/calibre/Makefile Fri Sep 16 09:27:49 2016 (r422249) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= calibre -PORTVERSION= 2.67.0 +PORTVERSION= 2.68.0 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: head/deskutils/calibre/distinfo ============================================================================== --- head/deskutils/calibre/distinfo Fri Sep 16 09:01:36 2016 (r422248) +++ head/deskutils/calibre/distinfo Fri Sep 16 09:27:49 2016 (r422249) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473322760 -SHA256 (calibre-2.67.0.tar.xz) = 3a496f3fbadee0a727d7d84b34da9c82b78855c23f28e82ecb9ff6ade662493c -SIZE (calibre-2.67.0.tar.xz) = 39905240 +TIMESTAMP = 1474011020 +SHA256 (calibre-2.68.0.tar.xz) = f57e9d4939db15fd9bb441575f55d52db112cbfa6d970bb727acf7a079e3c656 +SIZE (calibre-2.68.0.tar.xz) = 39949696 From owner-svn-ports-head@freebsd.org Fri Sep 16 10:05:43 2016 Return-Path: Delivered-To: svn-ports-head@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 4A55ABDC277; Fri, 16 Sep 2016 10:05:43 +0000 (UTC) (envelope-from tcberner@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 196952C5; Fri, 16 Sep 2016 10:05:43 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GA5gtf060032; Fri, 16 Sep 2016 10:05:42 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GA5gtj060031; Fri, 16 Sep 2016 10:05:42 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609161005.u8GA5gtj060031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 16 Sep 2016 10:05:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422250 - head/archivers/quazip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 10:05:43 -0000 Author: tcberner Date: Fri Sep 16 10:05:42 2016 New Revision: 422250 URL: https://svnweb.freebsd.org/changeset/ports/422250 Log: Take maintainership of archivers/quazip > I was wondering if you were willing to push archivers/quazip onto kde@ Of course, assign the maintanership to kde@, please. :) Approved by: nivit (previous maintainer), rakuco (mentor) Modified: head/archivers/quazip/Makefile Modified: head/archivers/quazip/Makefile ============================================================================== --- head/archivers/quazip/Makefile Fri Sep 16 09:27:49 2016 (r422249) +++ head/archivers/quazip/Makefile Fri Sep 16 10:05:42 2016 (r422250) @@ -6,7 +6,7 @@ PORTVERSION= 0.7.1 CATEGORIES= archivers MASTER_SITES= SF -MAINTAINER= nivit@FreeBSD.org +MAINTAINER= kde@FreeBSD.org COMMENT= Qt/C++ wrapper for ZIP/UNZIP package LICENSE= LGPL21 From owner-svn-ports-head@freebsd.org Fri Sep 16 11:31:12 2016 Return-Path: Delivered-To: svn-ports-head@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 88682BDD715; Fri, 16 Sep 2016 11:31:12 +0000 (UTC) (envelope-from riggs@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 56D741751; Fri, 16 Sep 2016 11:31:12 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GBVBQJ090026; Fri, 16 Sep 2016 11:31:11 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GBVBVT090024; Fri, 16 Sep 2016 11:31:11 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609161131.u8GBVBVT090024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Fri, 16 Sep 2016 11:31:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422251 - head/devel/pear-Validate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 11:31:12 -0000 Author: riggs Date: Fri Sep 16 11:31:11 2016 New Revision: 422251 URL: https://svnweb.freebsd.org/changeset/ports/422251 Log: Add non-default OPTIONS DATE, IDNA, new maintainer Detailed log: - New maintainer: Danilo G. Baio - Add non-default OPTIONS DATE, IDNA - Add LICENSE - Set NO_ARCH - Upgrade distinfo with TIMESTAMP PR: 212301 Submitted by: dbaio@bsd.com.br (maintainer) Modified: head/devel/pear-Validate/Makefile head/devel/pear-Validate/distinfo Modified: head/devel/pear-Validate/Makefile ============================================================================== --- head/devel/pear-Validate/Makefile Fri Sep 16 10:05:42 2016 (r422250) +++ head/devel/pear-Validate/Makefile Fri Sep 16 11:31:11 2016 (r422251) @@ -3,11 +3,24 @@ PORTNAME= Validate PORTVERSION= 0.8.5 +PORTREVISION= 1 CATEGORIES= devel www pear -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= PEAR Validation class +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +OPTIONS_DEFINE= DATE IDNA + +DATE_DESC= Date and Time Zone Classes +DATE_RUN_DEPENDS= ${PEARDIR}/Date.php:devel/pear-Date + +IDNA_DESC= Net_IDNA - Punycode encoding and decoding package +IDNA_RUN_DEPENDS= ${PEARDIR}/Net/IDNA.php:net/pear-Net_IDNA + USES= pear +NO_ARCH= yes .include Modified: head/devel/pear-Validate/distinfo ============================================================================== --- head/devel/pear-Validate/distinfo Fri Sep 16 10:05:42 2016 (r422250) +++ head/devel/pear-Validate/distinfo Fri Sep 16 11:31:11 2016 (r422251) @@ -1,2 +1,3 @@ +TIMESTAMP = 1472687841 SHA256 (PEAR/Validate-0.8.5.tgz) = 2ce4913df22dc08470af053cf8123ccfb699639e21b52b03a301c7af764192a4 SIZE (PEAR/Validate-0.8.5.tgz) = 21668 From owner-svn-ports-head@freebsd.org Fri Sep 16 12:20:02 2016 Return-Path: Delivered-To: svn-ports-head@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 E01CEBDC028; Fri, 16 Sep 2016 12:20:02 +0000 (UTC) (envelope-from linimon@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 ADCE9ACC; Fri, 16 Sep 2016 12:20:02 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GCK1cG009383; Fri, 16 Sep 2016 12:20:01 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GCK13b009382; Fri, 16 Sep 2016 12:20:01 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201609161220.u8GCK13b009382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 16 Sep 2016 12:20:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422252 - head/devel/jtag X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 12:20:03 -0000 Author: linimon Date: Fri Sep 16 12:20:01 2016 New Revision: 422252 URL: https://svnweb.freebsd.org/changeset/ports/422252 Log: Deprecate: i386-only, development ceased 2003, superceded by devel/urjtag which is already in ports. Modified: head/devel/jtag/Makefile Modified: head/devel/jtag/Makefile ============================================================================== --- head/devel/jtag/Makefile Fri Sep 16 11:31:11 2016 (r422251) +++ head/devel/jtag/Makefile Fri Sep 16 12:20:01 2016 (r422252) @@ -15,6 +15,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${OPENWINCE_INCLUDE_DEP}:devel/openwince-include +DEPRECATED= development ceased 2003, superceded by devel/urjtag +EXPIRATION_DATE= 2016-12-31 ONLY_FOR_ARCHS= i386 USES= readline tar:bzip2 From owner-svn-ports-head@freebsd.org Fri Sep 16 13:25:12 2016 Return-Path: Delivered-To: svn-ports-head@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 CF166BDC26F; Fri, 16 Sep 2016 13:25:12 +0000 (UTC) (envelope-from gahr@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 82FD621C; Fri, 16 Sep 2016 13:25:12 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GDPBZ4035507; Fri, 16 Sep 2016 13:25:11 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GDPBXZ035506; Fri, 16 Sep 2016 13:25:11 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201609161325.u8GDPBXZ035506@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 16 Sep 2016 13:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422253 - head/mail/neomutt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 13:25:12 -0000 Author: gahr Date: Fri Sep 16 13:25:11 2016 New Revision: 422253 URL: https://svnweb.freebsd.org/changeset/ports/422253 Log: mail/neomutt: provide an OPTION to use LMDB as a header-cache backend https://www.neomutt.org/feature/lmdb/ PR: 212725 Submitted by: gahr Approved by: bapt (maintainer) Modified: head/mail/neomutt/Makefile Modified: head/mail/neomutt/Makefile ============================================================================== --- head/mail/neomutt/Makefile Fri Sep 16 12:20:01 2016 (r422252) +++ head/mail/neomutt/Makefile Fri Sep 16 13:25:11 2016 (r422253) @@ -3,6 +3,7 @@ PORTNAME= neomutt PORTVERSION= 20160910 DISTVERSIONPREFIX= ${PORTNAME}- +PORTREVISION= 1 CATEGORIES= mail MAINTAINER= bapt@FreeBSD.org @@ -16,8 +17,7 @@ USE_GITHUB= yes USES= autoreconf localbase ncurses shebangfix ssl GNU_CONFIGURE= yes -LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet \ - libnotmuch.so:mail/notmuch +LIB_DEPENDS= libnotmuch.so:mail/notmuch BUILD_DEPENDS= gdate:sysutils/coreutils RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:misc/mime-support \ urlview:textproc/urlview @@ -26,10 +26,14 @@ OPTIONS_SUB= yes SHEBANG_FILES= smime_keys.pl OPTIONS_DEFINE= NLS DOCS SASL ICONV IDN FLOCK GPGME -OPTIONS_DEFAULT= SASL +OPTIONS_DEFAULT=SASL TOKYOCABINET +OPTIONS_RADIO= HCACHE +OPTIONS_RADIO_HCACHE= TOKYOCABINET LMDB FLOCK_DESC= Use flock() to lock files GPGME_DESC= Use gpgme to handle pgp +TOKYOCABINET_DESC= Use TokyoCabinet as header-cache backend +LMDB_DESC= Use LMDB as header-cache backend CONFIGURE_ARGS= --disable-dependency-tracking \ --with-docdir="${DOCSDIR}" \ @@ -42,11 +46,16 @@ CONFIGURE_ARGS= --disable-dependency-tra --enable-hcache \ --enable-sidebar \ --enable-notmuch \ - --with-tokyocabinet \ --without-qdbm \ --disable-fcntl \ --enable-external-dotlock +TOKYOCABINET_CONFIGURE_WITH= tokyocabinet +TOKYOCABINET_LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet + +LMDB_CONFIGURE_WITH= lmdb +LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb + NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext NLS_IMPLIES= ICONV From owner-svn-ports-head@freebsd.org Fri Sep 16 13:42:00 2016 Return-Path: Delivered-To: svn-ports-head@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 474F6BDC715; Fri, 16 Sep 2016 13:42:00 +0000 (UTC) (envelope-from tcberner@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 18219B74; Fri, 16 Sep 2016 13:42:00 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GDfxiG041007; Fri, 16 Sep 2016 13:41:59 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GDfx3l041006; Fri, 16 Sep 2016 13:41:59 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609161341.u8GDfx3l041006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 16 Sep 2016 13:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422254 - head/x11/kdelibs4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 13:42:00 -0000 Author: tcberner Date: Fri Sep 16 13:41:59 2016 New Revision: 422254 URL: https://svnweb.freebsd.org/changeset/ports/422254 Log: Drop ${PORTSDIR} from LIB_DEPENDS in options. Approved by: rakuco (mentor) Modified: head/x11/kdelibs4/Makefile Modified: head/x11/kdelibs4/Makefile ============================================================================== --- head/x11/kdelibs4/Makefile Fri Sep 16 13:25:11 2016 (r422253) +++ head/x11/kdelibs4/Makefile Fri Sep 16 13:41:59 2016 (r422254) @@ -76,10 +76,10 @@ SHEBANG_FILES= kdecore/kconfig_compiler/ OPTIONS_DEFINE= AVAHI UPNP OPTIONS_DEFAULT=AVAHI -AVAHI_LIB_DEPENDS= libavahi-core.so:${PORTSDIR}/net/avahi-app +AVAHI_LIB_DEPENDS= libavahi-core.so:net/avahi-app UPNP_DESC= UPnP backend for Solid (WARNING: Unstable) -UPNP_LIB_DEPENDS= libHUpnp.so:${PORTSDIR}/net/hupnp +UPNP_LIB_DEPENDS= libHUpnp.so:net/hupnp UPNP_CMAKE_ON= -DHUPNP_ENABLED:BOOL=On post-patch: From owner-svn-ports-head@freebsd.org Fri Sep 16 14:06:04 2016 Return-Path: Delivered-To: svn-ports-head@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 36C58BDCB73; Fri, 16 Sep 2016 14:06:04 +0000 (UTC) (envelope-from marino@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 042917C1; Fri, 16 Sep 2016 14:06:03 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GE63so050479; Fri, 16 Sep 2016 14:06:03 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GE63a6050478; Fri, 16 Sep 2016 14:06:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609161406.u8GE63a6050478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 16 Sep 2016 14:06:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422255 - head/security/openscep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 14:06:04 -0000 Author: marino Date: Fri Sep 16 14:06:02 2016 New Revision: 422255 URL: https://svnweb.freebsd.org/changeset/ports/422255 Log: security/openscep: Mark IGNORE if SSL_DEFAULT matches libressl The fix for LibreSSL support is not immediately obvious, so mark the port IGNOREd until the LibreSSL case is fixed. Approved by: SSL blanket Modified: head/security/openscep/Makefile Modified: head/security/openscep/Makefile ============================================================================== --- head/security/openscep/Makefile Fri Sep 16 13:41:59 2016 (r422254) +++ head/security/openscep/Makefile Fri Sep 16 14:06:02 2016 (r422255) @@ -12,15 +12,14 @@ COMMENT= Open source scep server CONFLICTS_INSTALL= nss-3.* -USES= gmake libtool -USE_OPENSSL= yes +USES= gmake libtool ssl USE_OPENLDAP= yes USE_APACHE= 22+ GNU_CONFIGURE= yes USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib +CPPFLAGS+= -I${OPENSSLINC} -I${LOCALBASE}/include +LIBS+= -L${OPENSSLLIB} -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-html-install-dir="${PREFIX}/www/openscep" \ --with-cgi-install-dir="${PREFIX}/www/cgi-bin/openscep" \ --with-openscep-dir="${PREFIX}/etc/openscep" \ @@ -32,6 +31,12 @@ LOCAL_CONF_FILES= openscep.cnf openscep. SUB_FILES= pkg-message SUB_LIST= CONF_DIR="${CONF_DIR}" CONF_FILES="${LOCAL_CONF_FILES}" +.include + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Detected LibreSSL (unknown ASN1 functions) +.endif + post-patch: @${REINPLACE_CMD} -e '/^subdirs=/ s|libltdl||' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/^SUBDIRS =/ s|libltdl||' ${WRKSRC}/Makefile.in @@ -59,4 +64,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/ldap/${f} ${STAGEDIR}${CONF_DIR}/${f}.sample .endfor -.include +.include From owner-svn-ports-head@freebsd.org Fri Sep 16 14:35:17 2016 Return-Path: Delivered-To: svn-ports-head@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 A7183BDC27A; Fri, 16 Sep 2016 14:35:17 +0000 (UTC) (envelope-from marino@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 765B4844; Fri, 16 Sep 2016 14:35:17 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GEZGaW061774; Fri, 16 Sep 2016 14:35:16 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GEZGdt061773; Fri, 16 Sep 2016 14:35:16 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609161435.u8GEZGdt061773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 16 Sep 2016 14:35:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422256 - head/security/libp11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 14:35:17 -0000 Author: marino Date: Fri Sep 16 14:35:16 2016 New Revision: 422256 URL: https://svnweb.freebsd.org/changeset/ports/422256 Log: security/libp11: Mark IGNORE if SSL_DEFAULT matchs libressl This port has numerous OPENSSL_VERSION_NUMBER preprocessor checks which are nontrivial to modify for LibreSSL support. Mark the port IGNOREd for LibreSSL case until somebody manages to support libressl. Approved by: SSL blanket Modified: head/security/libp11/Makefile Modified: head/security/libp11/Makefile ============================================================================== --- head/security/libp11/Makefile Fri Sep 16 14:06:02 2016 (r422255) +++ head/security/libp11/Makefile Fri Sep 16 14:35:16 2016 (r422256) @@ -18,9 +18,8 @@ OPTIONS_DEFINE= DOCS EXAMPLES USE_GITHUB= yes GH_ACCOUNT= OpenSC -USE_OPENSSL= yes GNU_CONFIGURE= yes -USES= autoreconf libtool pkgconfig +USES= autoreconf libtool pkgconfig ssl USE_LDCONFIG= yes MAKE_JOBS_UNSAFE= yes @@ -36,10 +35,16 @@ INSTALL_TARGET= install-strip PORTDOCS= * +.include + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Detected LibreSSL (numerous OPENSSL_VERSION_NUMBER preprocessor conditions) +.endif + post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/README ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/Makefile ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${STAGEDIR}${EXAMPLESDIR} -.include +.include From owner-svn-ports-head@freebsd.org Fri Sep 16 15:55:17 2016 Return-Path: Delivered-To: svn-ports-head@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 EBC9BBDC0E3; Fri, 16 Sep 2016 15:55:17 +0000 (UTC) (envelope-from riggs@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 AA3F3AE6; Fri, 16 Sep 2016 15:55:17 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GFtGot092180; Fri, 16 Sep 2016 15:55:16 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GFtGo5092171; Fri, 16 Sep 2016 15:55:16 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609161555.u8GFtGo5092171@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Fri, 16 Sep 2016 15:55:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422257 - in head/databases: mysql57-client mysql57-client/files mysql57-server mysql57-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 15:55:18 -0000 Author: riggs Date: Fri Sep 16 15:55:15 2016 New Revision: 422257 URL: https://svnweb.freebsd.org/changeset/ports/422257 Log: Update to upstream version 5.7.15; fixes zero-day remote vuln CVE-2016-6662 PR: 212690 Submitted by: mokhi64@gmail.com (maintainer) MFH: 2016Q3 Security: CVE 2016-6662 Added: head/databases/mysql57-server/files/patch-rapid_plugin_x_mysqlx__configure.cmake (contents, props changed) Deleted: head/databases/mysql57-server/files/patch-rapid_plugin_x_mysqlx__error.cmake Modified: head/databases/mysql57-client/Makefile head/databases/mysql57-client/files/patch-cmake_build__configurations_compiler__options.cmake head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc head/databases/mysql57-server/Makefile head/databases/mysql57-server/distinfo head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc head/databases/mysql57-server/files/patch-sql_CMakeLists.txt Modified: head/databases/mysql57-client/Makefile ============================================================================== --- head/databases/mysql57-client/Makefile Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-client/Makefile Fri Sep 16 15:55:15 2016 (r422257) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mysql -PORTREVISION?= 1 +PORTREVISION?= 0 PKGNAMESUFFIX= 57-client COMMENT= Multithreaded SQL database (client) Modified: head/databases/mysql57-client/files/patch-cmake_build__configurations_compiler__options.cmake ============================================================================== --- head/databases/mysql57-client/files/patch-cmake_build__configurations_compiler__options.cmake Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-client/files/patch-cmake_build__configurations_compiler__options.cmake Fri Sep 16 15:55:15 2016 (r422257) @@ -1,6 +1,6 @@ ---- cmake/build_configurations/compiler_options.cmake.orig 2016-03-28 18:06:12 UTC +--- cmake/build_configurations/compiler_options.cmake.orig 2016-08-25 11:52:06 UTC +++ cmake/build_configurations/compiler_options.cmake -@@ -28,7 +28,7 @@ IF(UNIX) +@@ -29,7 +29,7 @@ IF(UNIX) # Default GCC flags IF(CMAKE_COMPILER_IS_GNUCC) @@ -9,12 +9,12 @@ # Disable inline optimizations for valgrind testing to avoid false positives IF(WITH_VALGRIND) SET(COMMON_C_FLAGS "-fno-inline ${COMMON_C_FLAGS}") -@@ -37,7 +37,7 @@ IF(UNIX) +@@ -42,7 +42,7 @@ IF(UNIX) SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 ${COMMON_C_FLAGS}") ENDIF() IF(CMAKE_COMPILER_IS_GNUCXX) - SET(COMMON_CXX_FLAGS "-g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing") + SET(COMMON_CXX_FLAGS "-g -fno-omit-frame-pointer -fno-strict-aliasing") - # Disable inline optimizations for valgrind testing to avoid false positives - IF(WITH_VALGRIND) - SET(COMMON_CXX_FLAGS "-fno-inline ${COMMON_CXX_FLAGS}") + # GCC 6 has C++14 as default, set it explicitly to the old default. + EXECUTE_PROCESS(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion + OUTPUT_VARIABLE GXX_VERSION) Modified: head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc ============================================================================== --- head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-client/files/patch-mysys__ssl_my__default.cc Fri Sep 16 15:55:15 2016 (r422257) @@ -1,6 +1,6 @@ ---- mysys_ssl/my_default.cc.orig 2016-03-28 18:06:12 UTC +--- mysys_ssl/my_default.cc.orig 2016-08-25 11:52:06 UTC +++ mysys_ssl/my_default.cc -@@ -122,7 +122,7 @@ static my_bool is_login_file= FALSE; +@@ -114,7 +114,7 @@ static my_bool defaults_already_read= FA /* Which directories are searched for options (and in which order) */ @@ -9,7 +9,7 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -909,6 +909,14 @@ +@@ -914,6 +914,14 @@ static int search_default_file_with_ext( return 1; /* Ignore wrong files */ } @@ -21,10 +21,10 @@ + goto err; + } + - while (mysql_file_getline(buff, sizeof(buff) - 1, fp)) + while (mysql_file_getline(buff, sizeof(buff) - 1, fp, is_login_file)) { line++; -@@ -1245,7 +1253,8 @@ +@@ -1252,7 +1260,8 @@ void my_print_default_files(const char * end[(strlen(end)-1)] = ' '; else strxmov(end, conf_file, *ext , " ", NullS); @@ -34,7 +34,7 @@ } } } -@@ -1404,13 +1413,8 @@ +@@ -1411,13 +1420,8 @@ static const char **init_default_directo #else @@ -50,7 +50,7 @@ #endif -@@ -1480,7 +1484,7 @@ +@@ -1488,7 +1492,7 @@ int check_file_permissions(const char *f MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) Modified: head/databases/mysql57-server/Makefile ============================================================================== --- head/databases/mysql57-server/Makefile Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-server/Makefile Fri Sep 16 15:55:15 2016 (r422257) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.7.13 -PORTREVISION?= 1 +PORTVERSION= 5.7.15 +PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.7 PKGNAMESUFFIX?= 57-server @@ -55,7 +55,8 @@ CMAKE_ARGS+= -DINSTALL_LAYOUT=FREEBSD \ -DWITH_EDITLINE=system \ -DWITH_LIBEVENT=system \ -DWITH_LZ4=system \ - -DWITH_ZLIB=system + -DWITH_ZLIB=system \ + -DINSTALL_MYSQLTESTDIR=0 SHEBANG_FILES= scripts/*.pl* scripts/*.sh @@ -128,15 +129,19 @@ PERFSCHM_SUB_LIST+= PERFSCHEMRC="" PERFSCHM_SUB_LIST_OFF+= PERFSCHEMRC="--skip-performance-schema" .endif -.include +.include ### Just for the sake of FreeBSD 9.X ### .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 . if !defined(CLIENT_ONLY) EXTRA_PATCHES+= ${PATCHDIR}/rapid_plugin-patch-_x_mysqlxtest__src_mysqlxtest.cc . endif +### Just like deperecated `WITH_OPENSSL_PORT=yes` a workaround for building on 9.X ### +DEFAULT_VERSIONS+=ssl=openssl .endif +.include + .if ${SSL_DEFAULT} == base BROKEN_FreeBSD_9= FreeBSD 9.x requires SSL from ports CMAKE_ARGS+= -DWITH_SSL=system Modified: head/databases/mysql57-server/distinfo ============================================================================== --- head/databases/mysql57-server/distinfo Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-server/distinfo Fri Sep 16 15:55:15 2016 (r422257) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465065317 -SHA256 (mysql-boost-5.7.13.tar.gz) = 2a768682c37dfbca286912bd137f1a526075ac1f00a6a46da8b6fe63f6fcfa37 -SIZE (mysql-boost-5.7.13.tar.gz) = 60561931 +TIMESTAMP = 1473858917 +SHA256 (mysql-boost-5.7.15.tar.gz) = 7342a3a3e40878378dfaee252d42a3a5b06c58237f49c2544424d27316738945 +SIZE (mysql-boost-5.7.15.tar.gz) = 60583907 Modified: head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc ============================================================================== --- head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-server/files/patch-mysys__ssl_my__default.cc Fri Sep 16 15:55:15 2016 (r422257) @@ -1,6 +1,6 @@ ---- mysys_ssl/my_default.cc.orig 2016-03-28 18:06:12 UTC +--- mysys_ssl/my_default.cc.orig 2016-08-25 11:52:06 UTC +++ mysys_ssl/my_default.cc -@@ -122,7 +122,7 @@ static my_bool is_login_file= FALSE; +@@ -114,7 +114,7 @@ static my_bool defaults_already_read= FA /* Which directories are searched for options (and in which order) */ @@ -9,7 +9,7 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -909,6 +909,14 @@ +@@ -914,6 +914,14 @@ static int search_default_file_with_ext( return 1; /* Ignore wrong files */ } @@ -21,10 +21,10 @@ + goto err; + } + - while (mysql_file_getline(buff, sizeof(buff) - 1, fp)) + while (mysql_file_getline(buff, sizeof(buff) - 1, fp, is_login_file)) { line++; -@@ -1245,7 +1253,8 @@ +@@ -1252,7 +1260,8 @@ void my_print_default_files(const char * end[(strlen(end)-1)] = ' '; else strxmov(end, conf_file, *ext , " ", NullS); @@ -34,7 +34,7 @@ } } } -@@ -1404,13 +1413,8 @@ +@@ -1411,13 +1420,8 @@ static const char **init_default_directo #else @@ -50,7 +50,7 @@ #endif -@@ -1480,7 +1484,7 @@ +@@ -1488,7 +1492,7 @@ int check_file_permissions(const char *f MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) Added: head/databases/mysql57-server/files/patch-rapid_plugin_x_mysqlx__configure.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mysql57-server/files/patch-rapid_plugin_x_mysqlx__configure.cmake Fri Sep 16 15:55:15 2016 (r422257) @@ -0,0 +1,15 @@ +--- rapid/plugin/x/mysqlx_configure.cmake.orig 2016-09-14 15:25:26 UTC ++++ rapid/plugin/x/mysqlx_configure.cmake +@@ -29,6 +29,7 @@ CONFIGURE_FILE(${MYSQLX_PROJECT_DIR}/src + CONFIGURE_FILE(${MYSQLX_PROJECT_DIR}/src/mysqlx_version.h.in + ${CMAKE_CURRENT_BINARY_DIR}/generated/mysqlx_version.h ) + ++IF(FALSE) + INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/generated/mysqlx_error.h + DESTINATION ${INSTALL_INCLUDEDIR} + COMPONENT Developement) +@@ -36,3 +37,4 @@ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR + INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/generated/mysqlx_version.h + DESTINATION ${INSTALL_INCLUDEDIR} + COMPONENT Developement) ++ENDIF() Modified: head/databases/mysql57-server/files/patch-sql_CMakeLists.txt ============================================================================== --- head/databases/mysql57-server/files/patch-sql_CMakeLists.txt Fri Sep 16 14:35:16 2016 (r422256) +++ head/databases/mysql57-server/files/patch-sql_CMakeLists.txt Fri Sep 16 15:55:15 2016 (r422257) @@ -1,4 +1,4 @@ ---- sql/CMakeLists.txt.orig 2016-03-28 18:06:12 UTC +--- sql/CMakeLists.txt.orig 2016-08-25 11:52:06 UTC +++ sql/CMakeLists.txt @@ -24,6 +24,8 @@ INCLUDE_DIRECTORIES( ${ZLIB_INCLUDE_DIR} @@ -6,6 +6,6 @@ ${CMAKE_BINARY_DIR}/sql + ${CMAKE_BINARY_DIR}/include + ${CMAKE_BINARY_DIR} + ${LZ4_INCLUDE_DIR} ) - SET(CONF_SOURCES From owner-svn-ports-head@freebsd.org Fri Sep 16 16:17:50 2016 Return-Path: Delivered-To: svn-ports-head@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 330A8BDCC57; Fri, 16 Sep 2016 16:17:50 +0000 (UTC) (envelope-from riggs@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 DC99AB14; Fri, 16 Sep 2016 16:17:49 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GGHnoj099595; Fri, 16 Sep 2016 16:17:49 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GGHmD8099593; Fri, 16 Sep 2016 16:17:48 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609161617.u8GGHmD8099593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Fri, 16 Sep 2016 16:17:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422258 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 16:17:50 -0000 Author: riggs Date: Fri Sep 16 16:17:48 2016 New Revision: 422258 URL: https://svnweb.freebsd.org/changeset/ports/422258 Log: Document CVE 2016-6662: zero-day remote vulnerability in mysql ports PR: 212612 Submitted by: mokhi64@gmail.com (mysql57-* maintainer) Reported by: rootservice@gmail.com Security: CVE 2016-6662 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Sep 16 15:55:15 2016 (r422257) +++ head/security/vuxml/vuln.xml Fri Sep 16 16:17:48 2016 (r422258) @@ -58,6 +58,36 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + Remote-Code-Execution vulnerability in mysql and its variants CVE 2016-6662 + + + mysql57-client + mysql57-server + 5.7.15 + + + + +

LegalHackers' reports:

+
+

RCE Bugs discovered in MySQL and its variants like MariaDB. + It works by manupulating my.cnf files and using --malloc-lib. + The bug seems fixed in MySQL5.7.15 by Oracle

+
+ +
+ + CVE-2016-6662 + http://legalhackers.com/advisories/MySQL-Exploit-Remote-Root-Code-Execution-Privesc-CVE-2016-6662.html + https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-15.html + + + 2016-09-12 + 2016-09-14 + +
+ dropbear -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Fri Sep 16 16:18:10 2016 Return-Path: Delivered-To: svn-ports-head@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 61C77BDCCA6; Fri, 16 Sep 2016 16:18:10 +0000 (UTC) (envelope-from lwhsu@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 320ADC12; Fri, 16 Sep 2016 16:18:10 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GGI9L3099734; Fri, 16 Sep 2016 16:18:09 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GGI9FA099732; Fri, 16 Sep 2016 16:18:09 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201609161618.u8GGI9FA099732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 16 Sep 2016 16:18:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422259 - head/devel/jenkins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 16:18:10 -0000 Author: lwhsu Date: Fri Sep 16 16:18:09 2016 New Revision: 422259 URL: https://svnweb.freebsd.org/changeset/ports/422259 Log: - Update to 2.22 Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Fri Sep 16 16:17:48 2016 (r422258) +++ head/devel/jenkins/Makefile Fri Sep 16 16:18:09 2016 (r422259) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.21 +PORTVERSION= 2.22 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Fri Sep 16 16:17:48 2016 (r422258) +++ head/devel/jenkins/distinfo Fri Sep 16 16:18:09 2016 (r422259) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473046353 -SHA256 (jenkins/2.21/jenkins.war) = ef3693cb5e8c433b9a98b7438c73706b9b41542d781f2ba280cd85ccec307c78 -SIZE (jenkins/2.21/jenkins.war) = 69757530 +TIMESTAMP = 1474042653 +SHA256 (jenkins/2.22/jenkins.war) = e6406099792b631b968968194020ac7095113b68bb9ae7922fcc9a777eece1cc +SIZE (jenkins/2.22/jenkins.war) = 69766765 From owner-svn-ports-head@freebsd.org Fri Sep 16 16:37:05 2016 Return-Path: Delivered-To: svn-ports-head@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 07AECBDD471; Fri, 16 Sep 2016 16:37:05 +0000 (UTC) (envelope-from linimon@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 CCB6E95A; Fri, 16 Sep 2016 16:37:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GGb4JS007144; Fri, 16 Sep 2016 16:37:04 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GGb4Iu007143; Fri, 16 Sep 2016 16:37:04 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201609161637.u8GGb4Iu007143@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 16 Sep 2016 16:37:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422260 - head/sysutils/sample X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 16:37:05 -0000 Author: linimon Date: Fri Sep 16 16:37:03 2016 New Revision: 422260 URL: https://svnweb.freebsd.org/changeset/ports/422260 Log: Mark as broken on i386 (found while investigating similar failure on sparc64). Modified: head/sysutils/sample/Makefile Modified: head/sysutils/sample/Makefile ============================================================================== --- head/sysutils/sample/Makefile Fri Sep 16 16:18:09 2016 (r422259) +++ head/sysutils/sample/Makefile Fri Sep 16 16:37:03 2016 (r422260) @@ -10,7 +10,9 @@ COMMENT= Examine periodic stack traces o LICENSE= BSD3CLAUSE +BROKEN_i386= Does not build: don't know how to make sample_support_i386.c BROKEN_powerpc64= Does not build +BROKEN_sparc64= Does not build: don't know how to make sample_support_sparc64.c BUILD_DEPENDS= ${LOCALBASE}/lib/libbfd.a:devel/libbfd \ ${LOCALBASE}/lib/libiberty.a:devel/gnulibiberty \ From owner-svn-ports-head@freebsd.org Fri Sep 16 17:02:37 2016 Return-Path: Delivered-To: svn-ports-head@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 B48E6BDDBCE; Fri, 16 Sep 2016 17:02:37 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x231.google.com (mail-wm0-x231.google.com [IPv6:2a00:1450:400c:c09::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 449648FD; Fri, 16 Sep 2016 17:02:37 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x231.google.com with SMTP id b187so47352079wme.1; Fri, 16 Sep 2016 10:02:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=b81U+Rcew32ciYA0U9CuaZsqyxALfPkNfUcuB2AgB0k=; b=f2D0C5M0+HkxoRgZKobFzGlyAqu/NxJkKYpBTyOWVu04AyMLeRDb/hZRd5h7Ry3Njw rMvCYwBqqoDPU8Z1vxVqe9O9UUtclIMcIGsEZ8nCKeTjr3Ca1T/3XQdewG6TuStqMouI p8uaUmcXI8yCq/rLpSnRClsvJOQgQufNCF45+oszaRHmgnL8TaNQsL1NKKMs2yEGvSFC +D4pus9lX/XdPF3JU6tvs6sxlLfbqqHLRw80frjFT6eDcePUHznAZUoXlFsv066aCndy SWr7Ne2wLxbavyberYPO0UPUdS6YEtb+hz2kBm8j4z7Ls1k2N3yeVmEJz3nCP/auneas jrpA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=b81U+Rcew32ciYA0U9CuaZsqyxALfPkNfUcuB2AgB0k=; b=Mcud8hZi3tHCatCcNBazAiMInRu5F1nWr7U7U5agt11ldALdDtnYgf9p2E0MmBrHKX tw1UfbGf+fvT+T/HebTpFQTQhDIUn9BL33kVUewwG8Cz1oQ2IKDRiPcmAzNXd1gmVkTn jGqs/ZoJeatzOznuw4Z/xnWJvZnWRt5K0P0z7UDaUC/EJ4Bwmxrwdx9/I5p5QVMCkR5t ZkUSYZ1z+YOrFqcTsuE8L7JZA8AoKeHbCIjtM2oGuot7TxoysI/L7zy+e4OxhAbEHEkj jglkka85HbKXCUml1Lf8oSNGisvHPxrwVoXZAvIoO8WYAsmWM7U0BYGBeolylI+M7jES pWhQ== X-Gm-Message-State: AE9vXwN5RNeUsNw4ywvRpLXNoT5zBtUlgI0oQT9w6nCeXEZddjRtNxkYT3MOa58ToizaeQ== X-Received: by 10.28.166.196 with SMTP id p187mr5969036wme.121.1474045355609; Fri, 16 Sep 2016 10:02:35 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id bj11sm9254378wjd.35.2016.09.16.10.02.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 16 Sep 2016 10:02:34 -0700 (PDT) Sender: Baptiste Daroussin Date: Fri, 16 Sep 2016 19:02:34 +0200 From: Baptiste Daroussin To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r422260 - head/sysutils/sample Message-ID: <20160916170233.zdeop7xbwwyqzapq@ivaldir.etoilebsd.net> References: <201609161637.u8GGb4Iu007143@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="6svbdsl4veu4npo3" Content-Disposition: inline In-Reply-To: <201609161637.u8GGb4Iu007143@repo.freebsd.org> User-Agent: Mutt/1.6.2-neo (2016-08-08) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 17:02:37 -0000 --6svbdsl4veu4npo3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 16, 2016 at 04:37:04PM +0000, Mark Linimon wrote: > Author: linimon > Date: Fri Sep 16 16:37:03 2016 > New Revision: 422260 > URL: https://svnweb.freebsd.org/changeset/ports/422260 >=20 > Log: > Mark as broken on i386 (found while investigating similar failure on > sparc64). >=20 Actually looking at the code I can only see:=20 =2E/work/sample-45e2b86/driver/sample_support_amd64.c meaning it should be ONLY_FOR_ARCH=3D amd64 Best regards, Bapt --6svbdsl4veu4npo3 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJX3CWpAAoJEGOJi9zxtz5aFLoP/2heWkLDytuaIs8JWM6TdnDP 27mDGWeoQ62Q7r7qZtI+hwtku9+WDGA5SI1/NS01RO/j4tU/fKSSRtGgCPyZsxSA xFYvmz8UWS/t4pxtmL/qXZiBTyEQkmIIjFACChXFfeme2OthzQhVAn0cWtNfHQCM pB+QhdERyRQckt5boXFx/JBKFu1ZOmY1z3rac4iZ+cD9Rrpi5OovggiLxuaPHhQn 5XL9jt1Hcorf2v8RBLNnKWfa1dGl2b2IchgD64KpY4NmiAEHkdMGEePKGBcsYbii +bt5LSVnWkOc3quB5visrm+qeEt1O2PUDrtAWBkWqATxQiMCaDnwZEP9l0sr7JIv O/EVxPulHCAO0ipLsQms5TMjV9WbGCANGG9rF6oW8gwwwBO4Avade7Whd2+hirO5 VEk2Ll9HN2BjDblGqH6Qo4kJL+ZX+PZZj25zWOIiRx31kvmK2XdxXJ82mpix+c2K QUQIw/vi+5LcRqjODrm0KLyy1iN0ocEJlaxLaDTwPB8IIZ+rqQ7mmDVm7sNsZpXi wZ+zD9DOxtzRmydgmkL10fVAWTscSY9Ghrc+M/3mPnZAaeoTb1PDHSBfBt8MpLwo 64XckUuo+fu5OAeoZ2e6bXA3Q0+hGjwlCCtnNXGpDCGd63vmUnqMwHN9X9ddLCNO ZoXB2euCsvIHDLbW8cEi =Tmv7 -----END PGP SIGNATURE----- --6svbdsl4veu4npo3-- From owner-svn-ports-head@freebsd.org Fri Sep 16 18:48:05 2016 Return-Path: Delivered-To: svn-ports-head@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 D6C0ABDD608; Fri, 16 Sep 2016 18:48:05 +0000 (UTC) (envelope-from jkim@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 B16BE32F; Fri, 16 Sep 2016 18:48:05 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GIm4ek057243; Fri, 16 Sep 2016 18:48:04 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GIm4us057238; Fri, 16 Sep 2016 18:48:04 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609161848.u8GIm4us057238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 16 Sep 2016 18:48:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422262 - in head/emulators/virtualbox-ose: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 18:48:05 -0000 Author: jkim Date: Fri Sep 16 18:48:04 2016 New Revision: 422262 URL: https://svnweb.freebsd.org/changeset/ports/422262 Log: Add support for Python 3.x. PR: 212691 Added: head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_PyIID.cpp (contents, props changed) head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_PyXPCOM.h (contents, props changed) head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_TypeObject.cpp (contents, props changed) Modified: head/emulators/virtualbox-ose/Makefile head/emulators/virtualbox-ose/pkg-plist Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Fri Sep 16 18:23:05 2016 (r422261) +++ head/emulators/virtualbox-ose/Makefile Fri Sep 16 18:48:04 2016 (r422262) @@ -121,7 +121,7 @@ ENV= PLIST_SUB+= GUEST_VER=${PORTVERSION} \ PYTHON_VER=${PYTHON_VER} \ - PYTHON_VERU=${PYTHON_VER:S/./_/} \ + PYTHON_VERU=${PYTHON_VER:S/./_/}${PYTHON_ABIVER} \ VBOXGROUP=${VBOXGROUP} SUB_LIST+= VBOXDIR=${VBOX_DIR} \ VBOXGROUP=${VBOXGROUP} \ @@ -163,7 +163,7 @@ USE_TEX= dvipsk:build formats:build .endif .if ${PORT_OPTIONS:MPYTHON} -USES+= python:2 +USES+= python USE_PYTHON= distutils noegginfo PYDISTUTILS_PKGNAME= vboxapi PYDISTUTILS_PKGVERSION= 1.0 @@ -236,6 +236,14 @@ EXTRA_PATCHES+= ${PATCHDIR}/extrapatch-C ${PATCHDIR}/extrapatch-src-recompiler-Makefile.kmk .endif +.if ${PYTHON_MAJOR_VER} >= 3 +PLIST_SUB+= PYTHON_PYCDIR=/__pycache__/ \ + PYTHON_PYCEXT=.cpython-${PYTHON_SUFFIX}.pyc +.else +PLIST_SUB+= PYTHON_PYCDIR=/ \ + PYTHON_PYCEXT=.pyc +.endif + .if ${SSL_DEFAULT} != base CONFIGURE_ARGS+= --with-openssl-dir="${OPENSSLBASE}" .endif @@ -320,6 +328,7 @@ post-patch: ${WRKSRC}/src/libs/xpcom18a4/python/gen_python_deps.py @${REINPLACE_CMD} \ -e 's|\$$KBUILDDIR_BIN/kmk_sed|${LOCALBASE}/bin/kmk_sed|g' \ + -e 's|SUPPYTHONLIBS=.*|SUPPYTHONLIBS="${PYTHON_VERSION}${PYTHON_ABIVER}"|' \ ${WRKSRC}/configure .if empty(ICONV_LIB) @${REINPLACE_CMD} -e 's|iconv||' ${WRKSRC}/Config.kmk \ @@ -329,6 +338,9 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr/local/lib/virtualbox|${VBOX_DIR}|' \ -e 's|/usr/local|${PREFIX}|' \ ${WRKSRC}/src/VBox/Installer/freebsd/VBox.sh + @${REINPLACE_CMD} \ + -e 's|^versions =.*|versions = ["${PYTHON_VER}${PYTHON_ABIVER}"]|' \ + ${WRKSRC}/src/libs/xpcom18a4/python/gen_python_deps.py do-build: cd ${WRKSRC} && ${SH} -c '. ${WRKSRC}/env.sh && \ Added: head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_PyIID.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_PyIID.cpp Fri Sep 16 18:48:04 2016 (r422262) @@ -0,0 +1,23 @@ +--- src/libs/xpcom18a4/python/src/PyIID.cpp.orig 2016-09-12 16:20:10 UTC ++++ src/libs/xpcom18a4/python/src/PyIID.cpp +@@ -318,12 +318,20 @@ Py_nsIID::PyTypeMethod_str(PyObject *sel + return ret; + } + ++#if PY_VERSION_HEX < 0x03020000 + /* static */long ++#else ++/* static */Py_hash_t ++#endif + Py_nsIID::PyTypeMethod_hash(PyObject *self) + { + const nsIID &iid = ((Py_nsIID *)self)->m_iid; + ++#if PY_VERSION_HEX < 0x03020000 + long ret = iid.m0 + iid.m1 + iid.m2; ++#else ++ Py_hash_t ret = iid.m0 + iid.m1 + iid.m2; ++#endif + for (int i=0;i<7;i++) + ret += iid.m3[i]; + if ( ret == -1 ) Added: head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_PyXPCOM.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_PyXPCOM.h Fri Sep 16 18:48:04 2016 (r422262) @@ -0,0 +1,26 @@ +--- src/libs/xpcom18a4/python/src/PyXPCOM.h.orig 2016-09-12 16:20:10 UTC ++++ src/libs/xpcom18a4/python/src/PyXPCOM.h +@@ -286,7 +286,11 @@ public: + static int Py_setattr(PyObject *op, char *name, PyObject *v); + static int Py_cmp(PyObject *ob1, PyObject *ob2); + static PyObject *Py_richcmp(PyObject *ob1, PyObject *ob2, int op); ++#if PY_VERSION_HEX < 0x03020000 + static long Py_hash(PyObject *self); ++#else ++ static Py_hash_t Py_hash(PyObject *self); ++#endif + }; + + ////////////////////////////////////////////////////////////////////////// +@@ -442,7 +446,11 @@ public: + #endif + static PyObject *PyTypeMethod_richcompare(PyObject *self, PyObject *ob, int op); + static PyObject *PyTypeMethod_repr(PyObject *self); ++#if PY_VERSION_HEX < 0x03020000 + static long PyTypeMethod_hash(PyObject *self); ++#else ++ static Py_hash_t PyTypeMethod_hash(PyObject *self); ++#endif + static PyObject *PyTypeMethod_str(PyObject *self); + static void PyTypeMethod_dealloc(PyObject *self); + static NS_EXPORT_STATIC_MEMBER_(PyTypeObject) type; Added: head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_TypeObject.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/patch-src_libs_xpcom18a4_python_src_TypeObject.cpp Fri Sep 16 18:48:04 2016 (r422262) @@ -0,0 +1,24 @@ +--- src/libs/xpcom18a4/python/src/TypeObject.cpp.orig 2016-09-12 16:20:11 UTC ++++ src/libs/xpcom18a4/python/src/TypeObject.cpp +@@ -155,13 +155,21 @@ PyXPCOM_TypeObject::Py_richcmp(PyObject + } + + // @pymethod int|Py_nsISupports|__hash__|Implement a hash-code for the XPCOM object using XPCOM identity rules. ++#if PY_VERSION_HEX < 0x03020000 + /*static*/long PyXPCOM_TypeObject::Py_hash(PyObject *self) ++#else ++/*static*/Py_hash_t PyXPCOM_TypeObject::Py_hash(PyObject *self) ++#endif + { + // We always return the value of the nsISupports *. + nsISupports *pUnkThis; + if (!Py_nsISupports::InterfaceFromPyObject(self, NS_GET_IID(nsISupports), &pUnkThis, PR_FALSE)) + return -1; ++#if PY_VERSION_HEX < 0x03020000 + long ret = _Py_HashPointer(pUnkThis); ++#else ++ Py_hash_t ret = _Py_HashPointer(pUnkThis); ++#endif + pUnkThis->Release(); + return ret; + } Modified: head/emulators/virtualbox-ose/pkg-plist ============================================================================== --- head/emulators/virtualbox-ose/pkg-plist Fri Sep 16 18:23:05 2016 (r422261) +++ head/emulators/virtualbox-ose/pkg-plist Fri Sep 16 18:48:04 2016 (r422262) @@ -335,39 +335,39 @@ include/virtualbox/xpcom/xptcstubsdef.in include/virtualbox/xpcom/xptinfo.h %%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi-1.0-py%%PYTHON_VER%%.egg-info %%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/%%PYTHON_PYCDIR%%VirtualBox_constants%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/components.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/components.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/%%PYTHON_PYCDIR%%components%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/file.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/file.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/%%PYTHON_PYCDIR%%file%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/nsError.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/nsError.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%nsError%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/primitives.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/primitives.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%primitives%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/vboxxpcom.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/vboxxpcom.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%vboxxpcom%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpcom_consts.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpcom_consts.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%xpcom_consts%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpt.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpt.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%xpt%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/client/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/client/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/client%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/enumerator.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/enumerator.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server%%PYTHON_PYCDIR%%enumerator%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/factory.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/factory.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server%%PYTHON_PYCDIR%%factory%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/loader.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/loader.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server%%PYTHON_PYCDIR%%loader%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/module.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/module.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server%%PYTHON_PYCDIR%%module%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/policy.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/policy.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server%%PYTHON_PYCDIR%%policy%%PYTHON_PYCEXT%% %%QT%%lib/virtualbox/DbgPlugInDiggers.so lib/virtualbox/VBox.sh lib/virtualbox/VBoxAuth.so From owner-svn-ports-head@freebsd.org Fri Sep 16 19:10:50 2016 Return-Path: Delivered-To: svn-ports-head@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 D2A6CBDDAF3; Fri, 16 Sep 2016 19:10:50 +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 A1389ED6; Fri, 16 Sep 2016 19:10:50 +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 u8GJAnC0065269; Fri, 16 Sep 2016 19:10:49 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GJAnCt065262; Fri, 16 Sep 2016 19:10:49 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609161910.u8GJAnCt065262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 16 Sep 2016 19:10:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422263 - in head/net-mgmt: zabbix3-frontend zabbix3-server zabbix3-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 19:10:50 -0000 Author: pi Date: Fri Sep 16 19:10:49 2016 New Revision: 422263 URL: https://svnweb.freebsd.org/changeset/ports/422263 Log: net-mgmt/zabbix3-{server|agent|proxy|frontend}: update to 3.0.4 and many fixes - Fix default path to PID - Fix rc.d scripts to correct use PID file - Fix some error in the Makefile - Fix OPENSSL_USE -> USES=ssl - Fix WANT_PHP_WEB -> USES=php:web - Fix MYSQL_USE -> USES+= mysql - Fix PGSQL_USES -> USES+= pgsql - Fix SQLITE_USES -> USES+= sqlite - Change default options for -server and -frontend - Fix CONFLICTS - fixed SQL injection vulnerability in "Latest data" page; thanks to 1N3 at Early Warning Services, LLC PR: 209893 MFH: 2016Q3 Security: https://support.zabbix.com/browse/ZBX-11023 Changes: http://www.zabbix.com/rn3.0.4.php Submitted by: Pakhom Golynga (maintainer) Modified: head/net-mgmt/zabbix3-frontend/Makefile head/net-mgmt/zabbix3-server/Makefile head/net-mgmt/zabbix3-server/distinfo head/net-mgmt/zabbix3-server/files/zabbix_agentd.in head/net-mgmt/zabbix3-server/files/zabbix_proxy.in head/net-mgmt/zabbix3-server/files/zabbix_server.in head/net-mgmt/zabbix3-server/pkg-plist.frontend Modified: head/net-mgmt/zabbix3-frontend/Makefile ============================================================================== --- head/net-mgmt/zabbix3-frontend/Makefile Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-frontend/Makefile Fri Sep 16 19:10:49 2016 (r422263) @@ -5,6 +5,11 @@ PORTNAME= zabbix3 CATEGORIES= net-mgmt PKGNAMESUFFIX= -frontend +MAINTAINER= pg@pakhom.spb.ru +COMMENT= Enterprise-class open source distributed monitoring (${PKGNAMESUFFIX:S/^-//}) LTS + +LICENSE= GPLv2 + MASTERDIR= ${.CURDIR}/../zabbix3-server NO_BUILD= yes @@ -14,10 +19,11 @@ PLIST= ${PKGDIR}/pkg-plist.frontend USE_PHP= bcmath ctype gd pcre snmp sockets mbstring session dom xml \ xmlreader xmlwriter simplexml gettext ldap -WANT_PHP_WEB= yes + +USES= php:web gettext OPTIONS_DEFINE= MYSQL MYSQLI PGSQL SQLITE ORACLE -OPTIONS_DEFAULT= MYSQL MYSQLI +OPTIONS_DEFAULT= MYSQLI MYSQLI_DESC= MySQLI backend .include @@ -40,7 +46,7 @@ USE_PHP+= sqlite3 .if ${PORT_OPTIONS:MORACLE} ZABBIX_REQUIRE= -CONFIGURE_ARGS+= --with-oracle +CONFIGURE_ARGS+= --with-oracle .endif do-install: Modified: head/net-mgmt/zabbix3-server/Makefile ============================================================================== --- head/net-mgmt/zabbix3-server/Makefile Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-server/Makefile Fri Sep 16 19:10:49 2016 (r422263) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zabbix3 -PORTVERSION= 3.0.2 +PORTVERSION= 3.0.4 PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} @@ -14,15 +14,13 @@ COMMENT= Enterprise-class open source di LICENSE= GPLv2 -CONFLICTS= ${PKGBASE}-1.[0-8]* +LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp + +CONFLICTS= zabbix2${PKGNAMESUFFIX}-[0-9]* zabbix22${PKGNAMESUFFIX}[0-9]* zabbix24${PKGNAMESUFFIX}-[0-9]* IGNORE_WITH_PHP= 52 IGNORE_WITH_MYSQL= 41 -.if ${PKGNAMESUFFIX} != "-agent" -CONFLICTS+= ${PORTNAME}-1.[0-8]* -.endif - ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//} .if ${ZABBIX_BUILD} != "frontend" # frontend only needs the version/distribution settings @@ -60,7 +58,6 @@ CONFIGURE_ARGS+= --enable-${ZABBIX_BUILD --with-iconv=${ICONV_PREFIX} .if ${ZABBIX_BUILD} != "agent" -LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp USES+= execinfo CPPFLAGS+= ${EXECINFO_CPPFLAGS} @@ -73,7 +70,7 @@ CONFIGURE_ARGS+= --with-net-snmp OPTIONS_DEFINE= IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP JAVAGW \ LIBXML2 -OPTIONS_DEFAULT= FPING JABBER CURL UNIXODBC MYSQL SSH OPENSSL +OPTIONS_DEFAULT= IPV6 FPING CURL UNIXODBC MYSQL OPENSSL OPTIONS_SUB= yes CURL_DESC= Support for web monitoring @@ -93,13 +90,13 @@ OPTIONS_SINGLE_ODBC= IODBC UNIXODBC OPTIONS_SINGLE_SSL= OPENSSL GNUTLS POLARSSL MYSQL_CONFIGURE_WITH= mysql -MYSQL_USE= MYSQL=yes +USES+= mysql PGSQL_CONFIGURE_WITH= postgresql -PGSQL_USES= pgsql +USES+= pgsql SQLITE_CONFIGURE_WITH= sqlite3 -SQLITE_USES= sqlite:3 +USES+= sqlite:3 ORACLE_CONFIGURE_WITH= oracle @@ -126,8 +123,8 @@ IODBC_LIB_DEPENDS= libiodbc.so:databases UNIXODBC_CONFIGURE_WITH=unixodbc UNIXODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC .else -OPTIONS_SINGLE= SSL -OPTIONS_SINGLE_SSL= OPENSSL GNUTLS POLARSSL +OPTIONS_SINGLE= SSL +OPTIONS_SINGLE_SSL= OPENSSL GNUTLS POLARSSL .endif # if ${ZABBIX_BUILD} != "agent" IPV6_CONFIGURE_ENABLE= ipv6 @@ -141,11 +138,11 @@ JAVAGW_USE= JAVA=yes LIBXML2_CONFIGURE_WITH= libxml2 LIBXML2_LIB_DEPENDS= libxml2.so:textproc/libxml2 -OPENSSL_CONFIGURE_WITH= openssl -OPENSSL_USE= OPENSSL=yes +OPENSSL_CONFIGURE_WITH= openssl +OPENSSL_USES= ssl GNUTLS_CONFIGURE_WITH= gnutls -GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls +GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls POLARSSL_CONFIGURE_WITH=mbedtls POLARSSL_LIB_DEPENDS= libmbedtls.so:security/polarssl13 @@ -157,7 +154,7 @@ IGNORE_FreeBSD_9= Requires newer OpenSSL .endif .if ${SSL_DEFAULT:Mlibressl*} -IGNORE= Requires PSK which is unsupported by the selected LibreSSL +IGNORE= requires PSK which is unsupported by the selected LibreSSL .endif post-patch: @@ -166,6 +163,21 @@ post-patch: @${REINPLACE_CMD} -e 's#/usr/sbin/fping#${LOCALBASE}/sbin/fping#g' \ ${WRKSRC}/conf/zabbix_*.conf +.if ${ZABBIX_BUILD} == "server" + @${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_server.pid#PidFile=/var/run/zabbix/zabbix_server.pid#g' \ + ${WRKSRC}/conf/zabbix_server*.conf +.endif + +.if ${ZABBIX_BUILD} == "proxy" + @${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_proxy.pid#PidFile=/var/run/zabbix/zabbix_proxy.pid#g' \ + ${WRKSRC}/conf/zabbix_proxy*.conf +.endif + +.if ${ZABBIX_BUILD} == "agent" + @${REINPLACE_CMD} -e 's#PidFile=/tmp/zabbix_agentd.pid#PidFile=/var/run/zabbix/zabbix_agentd.pid#g' \ + ${WRKSRC}/conf/zabbix_agentd*.conf +.endif + .if ${ZABBIX_BUILD} != "agent" . for d in mysql oracle postgresql sqlite3 @${REINPLACE_CMD} \ Modified: head/net-mgmt/zabbix3-server/distinfo ============================================================================== --- head/net-mgmt/zabbix3-server/distinfo Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-server/distinfo Fri Sep 16 19:10:49 2016 (r422263) @@ -1,2 +1,3 @@ -SHA256 (zabbix-3.0.2.tar.gz) = e432fc86ea16956d52a9d8754b1b84456d11d96e1534fe1006f055a87208bff5 -SIZE (zabbix-3.0.2.tar.gz) = 15391497 +TIMESTAMP = 1474053011 +SHA256 (zabbix-3.0.4.tar.gz) = 9fa47d97843b6ca9f550d706b40ee6b35b76c5165ff32ff11ef0474f161e7700 +SIZE (zabbix-3.0.4.tar.gz) = 15403727 Modified: head/net-mgmt/zabbix3-server/files/zabbix_agentd.in ============================================================================== --- head/net-mgmt/zabbix3-server/files/zabbix_agentd.in Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-server/files/zabbix_agentd.in Fri Sep 16 19:10:49 2016 (r422263) @@ -9,10 +9,10 @@ # # zabbix_agentd_enable (bool): Set to NO by default. Set it to YES to # enable zabbix_agentd. -# zabbix_agentd_paths (string): Set to standard path by default. Set a search -# if you have custom userparams that need binaries elsewhere. # zabbix_agentd_config (string): Set to the standard config file path by # default. +# zabbix_agentd_pidfile (string): Location of the zabbix_agent pid file +# Default is /var/run/zabbix/zabbix_agentd.pid # . /etc/rc.subr @@ -20,27 +20,29 @@ name="zabbix_agentd" rcvar=zabbix_agentd_enable -command="%%PREFIX%%/sbin/${name}" -required_files="%%ETCDIR%%/${name}.conf" - load_rc_config $name -: ${zabbix_agentd_enable="NO"} -: ${zabbix_agentd_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin} -: ${zabbix_agentd_config="%%ETCDIR%%/${name}.conf"} +: ${zabbix_agentd_enable:=NO} +: ${zabbix_agentd_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_agentd_pidfile:=/var/run/zabbix/zabbix_agentd.pid} command="%%PREFIX%%/sbin/${name}" required_files="${zabbix_agentd_config}" -start_precmd="find_pidfile" -status_precmd="find_pidfile" -stop_precmd="find_pidfile" -find_pidfile() +start_precmd=zabbix_agentd_precmd +status_precmd=zabbix_agentd_precmd +stop_precmd=zabbix_agentd_precmd + +zabbix_agentd_precmd() { if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then pidfile="$_pidfile_from_conf" else - pidfile="/tmp/${name}.pid" + pidfile=${zabbix_agentd_pidfile} + local rundir=${zabbix_agentd_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi fi # This shouldn't be necessary with pidfile, but empirically it was the @@ -50,6 +52,4 @@ find_pidfile() rc_pid=$(check_pidfile ${pidfile} ${command}) } -export PATH="${zabbix_agentd_paths}" - run_rc_command "$1" Modified: head/net-mgmt/zabbix3-server/files/zabbix_proxy.in ============================================================================== --- head/net-mgmt/zabbix3-server/files/zabbix_proxy.in Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-server/files/zabbix_proxy.in Fri Sep 16 19:10:49 2016 (r422263) @@ -11,10 +11,10 @@ # # zabbix_proxy_enable (bool): Set to NO by default. Set it to YES to # enable zabbix_proxy. -# zabbix_proxy_paths (string): Set to standard path by default. Set a search -# if you have custom externals that need binaries elsewhere. # zabbix_proxy_config (string): Set to the standard config file path by # default. +# zabbix_proxy_pidfile (string): Location of the zabbix_proxy pid file +# Default is /var/run/zabbix/zabbix_proxy.pid # . /etc/rc.subr @@ -24,23 +24,27 @@ rcvar=zabbix_proxy_enable load_rc_config $name -: ${zabbix_proxy_enable="NO"} -: ${zabbix_proxy_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin} -: ${zabbix_proxy_config="%%ETCDIR%%/${name}.conf"} +: ${zabbix_proxy_enable:=NO} +: ${zabbix_proxy_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_proxy_pidfile:=/var/run/zabbix/zabbix_proxy.pid} command="%%PREFIX%%/sbin/${name}" required_files="${zabbix_proxy_config}" -start_precmd="find_pidfile" -status_precmd="find_pidfile" -stop_precmd="find_pidfile" +start_precmd=zabbix_proxy_precmd +status_precmd=zabbix_proxy_precmd +stop_precmd=zabbix_proxy_precmd -find_pidfile() +zabbix_proxy_precmd() { - if get_pidfile_from_conf PidFile ${zabbix_agentd_config}; then + if get_pidfile_from_conf PidFile ${zabbix_proxy_config}; then pidfile="$_pidfile_from_conf" else - pidfile="/tmp/${name}.pid" + pidfile=${zabbix_proxy_pidfile} + local rundir=${zabbix_proxy_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi fi # This shouldn't be necessary with pidfile, but empirically it was the @@ -50,6 +54,4 @@ find_pidfile() rc_pid=$(check_pidfile ${pidfile} ${command}) } -export PATH="${zabbix_proxy_paths}" - run_rc_command "$1" Modified: head/net-mgmt/zabbix3-server/files/zabbix_server.in ============================================================================== --- head/net-mgmt/zabbix3-server/files/zabbix_server.in Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-server/files/zabbix_server.in Fri Sep 16 19:10:49 2016 (r422263) @@ -11,10 +11,10 @@ # # zabbix_server_enable (bool): Set to NO by default. Set it to YES to # enable zabbix_server. -# zabbix_server_paths (string): Set to standard path by default. Set a search -# if you have custom externals that need binaries elsewhere. # zabbix_server_config (string): Set to the standard config file path by # default. +# zabbix_server_pidfile (string): Location of the zabbix_server pid file +# Default is /var/run/zabbix/zabbix_server.pid # . /etc/rc.subr @@ -24,22 +24,27 @@ rcvar=zabbix_server_enable load_rc_config $name -: ${zabbix_server_enable="NO"} -: ${zabbix_server_paths=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin} -: ${zabbix_server_config="%%ETCDIR%%/${name}.conf"} +: ${zabbix_server_enable:=NO} +: ${zabbix_server_config:=%%ETCDIR%%/${name}.conf} +: ${zabbix_server_pidfile:=/var/run/zabbix/zabbix_server.pid} command="%%PREFIX%%/sbin/${name}" required_files="${zabbix_server_config}" -start_precmd="find_pidfile" -status_precmd="find_pidfile" -stop_precmd="find_pidfile" -find_pidfile() +start_precmd=zabbix_server_precmd +status_precmd=zabbix_server_precmd +stop_precmd=zabbix_server_precmd + +zabbix_server_precmd() { if get_pidfile_from_conf PidFile ${zabbix_server_config}; then pidfile="$_pidfile_from_conf" else - pidfile="/tmp/${name}.pid" + pidfile=${zabbix_server_pidfile} + local rundir=${zabbix_server_pidfile%/*} + if [ ! -d $rundir ] ; then + install -d -m 0755 -o zabbix -g zabbix $rundir + fi fi # This shouldn't be necessary with pidfile, but empirically it was the @@ -49,6 +54,4 @@ find_pidfile() rc_pid=$(check_pidfile ${pidfile} ${command}) } -export PATH="${zabbix_server_paths}" - run_rc_command "$1" Modified: head/net-mgmt/zabbix3-server/pkg-plist.frontend ============================================================================== --- head/net-mgmt/zabbix3-server/pkg-plist.frontend Fri Sep 16 18:48:04 2016 (r422262) +++ head/net-mgmt/zabbix3-server/pkg-plist.frontend Fri Sep 16 19:10:49 2016 (r422263) @@ -397,6 +397,8 @@ %%WWWDIR%%/include/classes/screens/CScreenTriggersInfo.php %%WWWDIR%%/include/classes/screens/CScreenTriggersOverview.php %%WWWDIR%%/include/classes/screens/CScreenUrl.php +%%WWWDIR%%/include/classes/screens/CScreenDiscovery.php +%%WWWDIR%%/include/classes/screens/CScreenHttpTest.php %%WWWDIR%%/include/classes/server/CZabbixServer.php %%WWWDIR%%/include/classes/services/CServicesSlaCalculator.php %%WWWDIR%%/include/classes/setup/CFrontendSetup.php From owner-svn-ports-head@freebsd.org Fri Sep 16 19:16:44 2016 Return-Path: Delivered-To: svn-ports-head@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 83C11BDDD6C; Fri, 16 Sep 2016 19:16:44 +0000 (UTC) (envelope-from jkim@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 3CB4E74E; Fri, 16 Sep 2016 19:16:44 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GJGhrL068858; Fri, 16 Sep 2016 19:16:43 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GJGha0068857; Fri, 16 Sep 2016 19:16:43 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609161916.u8GJGha0068857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 16 Sep 2016 19:16:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422264 - head/emulators/virtualbox-ose X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 19:16:44 -0000 Author: jkim Date: Fri Sep 16 19:16:43 2016 New Revision: 422264 URL: https://svnweb.freebsd.org/changeset/ports/422264 Log: Fix typos in pkg-plist. Modified: head/emulators/virtualbox-ose/pkg-plist Modified: head/emulators/virtualbox-ose/pkg-plist ============================================================================== --- head/emulators/virtualbox-ose/pkg-plist Fri Sep 16 19:10:49 2016 (r422263) +++ head/emulators/virtualbox-ose/pkg-plist Fri Sep 16 19:16:43 2016 (r422264) @@ -335,15 +335,15 @@ include/virtualbox/xpcom/xptcstubsdef.in include/virtualbox/xpcom/xptinfo.h %%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi-1.0-py%%PYTHON_VER%%.egg-info %%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/%%PYTHON_PYCDIR%%VirtualBox_constants%%PYTHON_PYCEXT%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi%%PYTHON_PYCDIR%%VirtualBox_constants%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%__init__%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/components.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/%%PYTHON_PYCDIR%%components%%PYTHON_PYCEXT%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%components%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/file.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/%%PYTHON_PYCDIR%%file%%PYTHON_PYCEXT%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%file%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/nsError.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom%%PYTHON_PYCDIR%%nsError%%PYTHON_PYCEXT%% %%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/primitives.py From owner-svn-ports-head@freebsd.org Fri Sep 16 19:28:26 2016 Return-Path: Delivered-To: svn-ports-head@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 9F618BDD268; Fri, 16 Sep 2016 19:28:26 +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 6DB72F36; Fri, 16 Sep 2016 19:28:26 +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 u8GJSP6i072878; Fri, 16 Sep 2016 19:28:25 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GJSP1O072876; Fri, 16 Sep 2016 19:28:25 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609161928.u8GJSP1O072876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Sep 2016 19:28:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422265 - head/devel/py-libusb1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 19:28:26 -0000 Author: jbeich Date: Fri Sep 16 19:28:25 2016 New Revision: 422265 URL: https://svnweb.freebsd.org/changeset/ports/422265 Log: devel/py-libusb1: update to 1.5.3 Changes: https://pypi.python.org/pypi/libusb1#id24 Modified: head/devel/py-libusb1/Makefile (contents, props changed) head/devel/py-libusb1/distinfo (contents, props changed) Modified: head/devel/py-libusb1/Makefile ============================================================================== --- head/devel/py-libusb1/Makefile Fri Sep 16 19:16:43 2016 (r422264) +++ head/devel/py-libusb1/Makefile Fri Sep 16 19:28:25 2016 (r422265) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libusb1 -PORTVERSION= 1.5.2 +PORTVERSION= 1.5.3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-libusb1/distinfo ============================================================================== --- head/devel/py-libusb1/distinfo Fri Sep 16 19:16:43 2016 (r422264) +++ head/devel/py-libusb1/distinfo Fri Sep 16 19:28:25 2016 (r422265) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472232217 -SHA256 (libusb1-1.5.2.tar.gz) = a5a902e020ede402217a8b5804b96b24139ee69c040bcfb5763dc9fcdba1dfa4 -SIZE (libusb1-1.5.2.tar.gz) = 52941 +TIMESTAMP = 1474053011 +SHA256 (libusb1-1.5.3.tar.gz) = 85f6bbf9fcfe9421f99864f20a37eacb00f30b8a7c29adc6b2a163bde29649ea +SIZE (libusb1-1.5.3.tar.gz) = 53409 From owner-svn-ports-head@freebsd.org Fri Sep 16 19:28:37 2016 Return-Path: Delivered-To: svn-ports-head@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 757F4BDD299; Fri, 16 Sep 2016 19:28:37 +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 477C58F; Fri, 16 Sep 2016 19:28:37 +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 u8GJSaTx073002; Fri, 16 Sep 2016 19:28:36 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GJSanE073000; Fri, 16 Sep 2016 19:28:36 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609161928.u8GJSanE073000@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 16 Sep 2016 19:28:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422266 - head/devel/onscripter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 19:28:37 -0000 Author: jbeich Date: Fri Sep 16 19:28:36 2016 New Revision: 422266 URL: https://svnweb.freebsd.org/changeset/ports/422266 Log: devel/onscripter: update to 20160912 MFH: 2016Q3 (no consumers apart from ports/197229) Modified: head/devel/onscripter/Makefile (contents, props changed) head/devel/onscripter/distinfo (contents, props changed) Modified: head/devel/onscripter/Makefile ============================================================================== --- head/devel/onscripter/Makefile Fri Sep 16 19:28:25 2016 (r422265) +++ head/devel/onscripter/Makefile Fri Sep 16 19:28:36 2016 (r422266) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= onscripter -PORTVERSION= 20160910 +PORTVERSION= 20160912 CATEGORIES= devel games MASTER_SITES= http://onscripter.osdn.jp/ Modified: head/devel/onscripter/distinfo ============================================================================== --- head/devel/onscripter/distinfo Fri Sep 16 19:28:25 2016 (r422265) +++ head/devel/onscripter/distinfo Fri Sep 16 19:28:36 2016 (r422266) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473526109 -SHA256 (onscripter-20160910.tar.gz) = 45b41deaf335431e306b1e957a9173378abe96356f89e404d7988a9ae7fab6c0 -SIZE (onscripter-20160910.tar.gz) = 240187 +TIMESTAMP = 1474053011 +SHA256 (onscripter-20160912.tar.gz) = 17d4684fc5d6aba83094ca6198d3b99aa2e7a22d93b0eb075490c95543c09997 +SIZE (onscripter-20160912.tar.gz) = 243860 From owner-svn-ports-head@freebsd.org Fri Sep 16 19:47:11 2016 Return-Path: Delivered-To: svn-ports-head@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 49C50BDD805; Fri, 16 Sep 2016 19:47:11 +0000 (UTC) (envelope-from jkim@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 19D06C64; Fri, 16 Sep 2016 19:47:11 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GJlADJ080310; Fri, 16 Sep 2016 19:47:10 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GJlAgw080309; Fri, 16 Sep 2016 19:47:10 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201609161947.u8GJlAgw080309@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 16 Sep 2016 19:47:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422267 - head/emulators/virtualbox-ose X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 19:47:11 -0000 Author: jkim Date: Fri Sep 16 19:47:10 2016 New Revision: 422267 URL: https://svnweb.freebsd.org/changeset/ports/422267 Log: Remove a redundant PLIST_SUB. Modified: head/emulators/virtualbox-ose/Makefile Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Fri Sep 16 19:28:36 2016 (r422266) +++ head/emulators/virtualbox-ose/Makefile Fri Sep 16 19:47:10 2016 (r422267) @@ -120,7 +120,6 @@ ENV= .endif PLIST_SUB+= GUEST_VER=${PORTVERSION} \ - PYTHON_VER=${PYTHON_VER} \ PYTHON_VERU=${PYTHON_VER:S/./_/}${PYTHON_ABIVER} \ VBOXGROUP=${VBOXGROUP} SUB_LIST+= VBOXDIR=${VBOX_DIR} \ From owner-svn-ports-head@freebsd.org Fri Sep 16 20:16:05 2016 Return-Path: Delivered-To: svn-ports-head@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 A6016BDDE55; Fri, 16 Sep 2016 20:16:05 +0000 (UTC) (envelope-from rene@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 5B505CA2; Fri, 16 Sep 2016 20:16:05 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GKG4Fj091914; Fri, 16 Sep 2016 20:16:04 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GKG4HH091912; Fri, 16 Sep 2016 20:16:04 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201609162016.u8GKG4HH091912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 16 Sep 2016 20:16:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422269 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 20:16:05 -0000 Author: rene Date: Fri Sep 16 20:16:04 2016 New Revision: 422269 URL: https://svnweb.freebsd.org/changeset/ports/422269 Log: Document new vulnerabilities in www/chromium < 53.0.2785.113 Obtained from: https://googlechromereleases.blogspot.nl/2016/09/stable-channel-update-for-desktop_13.html Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Sep 16 19:50:51 2016 (r422268) +++ head/security/vuxml/vuln.xml Fri Sep 16 20:16:04 2016 (r422269) @@ -58,6 +58,53 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + chromium -- multiple vulnerabilities + + + chromium + chromium-npapi + chromium-pulse + 53.0.2785.113 + + + + +

Google Chrome Releases reports:

+
+

Several security fixes in this release, including:

+
    +
  • [641101] High CVE-2016-5170: Use after free in Blink.Credit to + Anonymous
  • +
  • [643357] High CVE-2016-5171: Use after free in Blink. Credit to + Anonymous
  • +
  • [616386] Medium CVE-2016-5172: Arbitrary Memory Read in v8. + Credit to Choongwoo Han
  • +
  • [468931] Medium CVE-2016-5173: Extension resource access. + Credit to Anonymous
  • +
  • [579934] Medium CVE-2016-5174: Popup not correctly suppressed. + Credit to Andrey Kovalev (@L1kvID) Yandex Security Team
  • +
  • [646394] CVE-2016-5175: Various fixes from internal audits, + fuzzing and other initiatives.
  • +
+
+ +
+ + CVE-2016-5170 + CVE-2016-5171 + CVE-2016-5172 + CVE-2016-5173 + CVE-2016-5174 + CVE-2016-5175 + https://googlechromereleases.blogspot.nl/2016/09/stable-channel-update-for-desktop_13.html + + + 2016-09-13 + 2016-09-16 + +
+ Remote-Code-Execution vulnerability in mysql and its variants CVE 2016-6662 From owner-svn-ports-head@freebsd.org Fri Sep 16 21:01:22 2016 Return-Path: Delivered-To: svn-ports-head@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 DADBABDD722; Fri, 16 Sep 2016 21:01:22 +0000 (UTC) (envelope-from amdmi3@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 A79E629B; Fri, 16 Sep 2016 21:01:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GL1LKZ007904; Fri, 16 Sep 2016 21:01:21 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GL1LSI007903; Fri, 16 Sep 2016 21:01:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162101.u8GL1LSI007903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 21:01:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422270 - head/emulators/mame X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 21:01:23 -0000 Author: amdmi3 Date: Fri Sep 16 21:01:21 2016 New Revision: 422270 URL: https://svnweb.freebsd.org/changeset/ports/422270 Log: - Remove always false condition Modified: head/emulators/mame/Makefile Modified: head/emulators/mame/Makefile ============================================================================== --- head/emulators/mame/Makefile Fri Sep 16 20:16:04 2016 (r422269) +++ head/emulators/mame/Makefile Fri Sep 16 21:01:21 2016 (r422270) @@ -60,10 +60,6 @@ EMULATOR= ${MSUBTARGET} .endif PLIST_SUB= EMULATOR=${EMULATOR} -.if ${OPSYS} == FreeBSD && ${OSREL:R} == 8 -BROKEN= will not build on FreeBSD 8.x -.endif - post-patch: @${REINPLACE_CMD} -e \ 's|^\(CC \)|#\1| ; \ From owner-svn-ports-head@freebsd.org Fri Sep 16 21:27:22 2016 Return-Path: Delivered-To: svn-ports-head@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 44E34BDDC81; Fri, 16 Sep 2016 21:27:22 +0000 (UTC) (envelope-from tota@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 EFCB2144; Fri, 16 Sep 2016 21:27:21 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GLRLn6018574; Fri, 16 Sep 2016 21:27:21 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GLRLQ3018572; Fri, 16 Sep 2016 21:27:21 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201609162127.u8GLRLQ3018572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 16 Sep 2016 21:27:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422271 - head/www/R-cran-shiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 21:27:22 -0000 Author: tota Date: Fri Sep 16 21:27:20 2016 New Revision: 422271 URL: https://svnweb.freebsd.org/changeset/ports/422271 Log: - Update to 0.14 Modified: head/www/R-cran-shiny/Makefile (contents, props changed) head/www/R-cran-shiny/distinfo (contents, props changed) Modified: head/www/R-cran-shiny/Makefile ============================================================================== --- head/www/R-cran-shiny/Makefile Fri Sep 16 21:01:21 2016 (r422270) +++ head/www/R-cran-shiny/Makefile Fri Sep 16 21:27:20 2016 (r422271) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= shiny -PORTVERSION= 0.13.2 +PORTVERSION= 0.14 CATEGORIES= www DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -12,13 +12,16 @@ COMMENT= Web Application Framework for R LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= R-cran-httpuv>=1.3.3:www/R-cran-httpuv \ +CRAN_DEPENDS= R-cran-httpuv>=1.3.3:www/R-cran-httpuv \ R-cran-mime>=0.3:misc/R-cran-mime \ R-cran-jsonlite>=0.9.16:converters/R-cran-jsonlite \ R-cran-xtable>0:textproc/R-cran-xtable \ R-cran-digest>0:security/R-cran-digest \ - R-cran-htmltools>=0.3:textproc/R-cran-htmltools \ - R-cran-R6>=2.0:devel/R-cran-R6 + R-cran-htmltools>=0.3.5:textproc/R-cran-htmltools \ + R-cran-R6>=2.0:devel/R-cran-R6 \ + R-cran-sourcetools>0:devel/R-cran-sourcetools +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} USES= cran:auto-plist Modified: head/www/R-cran-shiny/distinfo ============================================================================== --- head/www/R-cran-shiny/distinfo Fri Sep 16 21:01:21 2016 (r422270) +++ head/www/R-cran-shiny/distinfo Fri Sep 16 21:27:20 2016 (r422271) @@ -1,2 +1,3 @@ -SHA256 (shiny_0.13.2.tar.gz) = 0fe7e952f468242d7c43ae49afcc764788f7f2fd5436d18c3d20a80db7296231 -SIZE (shiny_0.13.2.tar.gz) = 1854845 +TIMESTAMP = 1473653365 +SHA256 (shiny_0.14.tar.gz) = 9bf4adc89384e08b28cff4781070203c7d8cbf66c27f694c3a09b4a7291a2251 +SIZE (shiny_0.14.tar.gz) = 2110934 From owner-svn-ports-head@freebsd.org Fri Sep 16 21:54:23 2016 Return-Path: Delivered-To: svn-ports-head@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 48F52BDD541; Fri, 16 Sep 2016 21:54:23 +0000 (UTC) (envelope-from bar@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 1855E387; Fri, 16 Sep 2016 21:54:23 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GLsM0q029595; Fri, 16 Sep 2016 21:54:22 GMT (envelope-from bar@FreeBSD.org) Received: (from bar@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GLsMTg029594; Fri, 16 Sep 2016 21:54:22 GMT (envelope-from bar@FreeBSD.org) Message-Id: <201609162154.u8GLsMTg029594@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bar set sender to bar@FreeBSD.org using -f From: Barbara Guida Date: Fri, 16 Sep 2016 21:54:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422272 - head/multimedia/libkate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 21:54:23 -0000 Author: bar Date: Fri Sep 16 21:54:22 2016 New Revision: 422272 URL: https://svnweb.freebsd.org/changeset/ports/422272 Log: Unbreak making DISTFILES fetchable again. Modified: head/multimedia/libkate/Makefile Modified: head/multimedia/libkate/Makefile ============================================================================== --- head/multimedia/libkate/Makefile Fri Sep 16 21:27:20 2016 (r422271) +++ head/multimedia/libkate/Makefile Fri Sep 16 21:54:22 2016 (r422272) @@ -5,7 +5,7 @@ PORTNAME= libkate PORTVERSION= 0.4.1 PORTREVISION= 6 CATEGORIES= multimedia -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= http://downloads.xiph.org/releases/kate/ MAINTAINER= bar@FreeBSD.org COMMENT= Codec for karaoke and text encapsulation for Ogg @@ -13,8 +13,6 @@ COMMENT= Codec for karaoke and text enca LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) - LIB_DEPENDS= libogg.so:audio/libogg \ libpng.so:graphics/png From owner-svn-ports-head@freebsd.org Fri Sep 16 22:06:04 2016 Return-Path: Delivered-To: svn-ports-head@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 886C2BDD762; Fri, 16 Sep 2016 22:06:04 +0000 (UTC) (envelope-from amdmi3@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 400F3A67; Fri, 16 Sep 2016 22:06:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GM633K033419; Fri, 16 Sep 2016 22:06:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GM63sE033417; Fri, 16 Sep 2016 22:06:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162206.u8GM63sE033417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:06:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422273 - head/games/fillets-ng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:06:04 -0000 Author: amdmi3 Date: Fri Sep 16 22:06:03 2016 New Revision: 422273 URL: https://svnweb.freebsd.org/changeset/ports/422273 Log: - Add LICENSE - Update data pack to 1.0.1 Modified: head/games/fillets-ng/Makefile head/games/fillets-ng/distinfo Modified: head/games/fillets-ng/Makefile ============================================================================== --- head/games/fillets-ng/Makefile Fri Sep 16 21:54:22 2016 (r422272) +++ head/games/fillets-ng/Makefile Fri Sep 16 22:06:03 2016 (r422273) @@ -3,7 +3,7 @@ PORTNAME= fillets-ng PORTVERSION= 1.0.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= SF/fillets/Fish%20Fillets%20-%20Next%20Generation/${PORTVERSION} \ SF/fillets/Fish%20Fillets%20-%20Next%20Generation/${DATAVERSION}:data @@ -13,6 +13,9 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Wonderful puzzle game +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + USE_SDL= sdl mixer image ttf USES= gmake lua:51 pkgconfig GNU_CONFIGURE= yes @@ -25,7 +28,7 @@ PLIST_FILES= bin/fillets man/man6/fillet PORTDOCS= * PORTDATA= * -DATAVERSION= 1.0.0 +DATAVERSION= 1.0.1 ONLY_FOR_ARCHS= i386 amd64 Modified: head/games/fillets-ng/distinfo ============================================================================== --- head/games/fillets-ng/distinfo Fri Sep 16 21:54:22 2016 (r422272) +++ head/games/fillets-ng/distinfo Fri Sep 16 22:06:03 2016 (r422273) @@ -1,4 +1,5 @@ +TIMESTAMP = 1473882451 SHA256 (fillets-ng-1.0.1.tar.gz) = 329a4d9515d60bebdb657d070824933b993b85864b9d3e302e6361accab992da SIZE (fillets-ng-1.0.1.tar.gz) = 380290 -SHA256 (fillets-ng-data-1.0.0.tar.gz) = ad475a60cc96e8f5f55a7b264c390264898f1891b6ff096cc617e24d75dffd45 -SIZE (fillets-ng-data-1.0.0.tar.gz) = 146418413 +SHA256 (fillets-ng-data-1.0.1.tar.gz) = f0c979fb35ec550a43246fc209add8f45ca550a382c94d6383bb3f01b1073799 +SIZE (fillets-ng-data-1.0.1.tar.gz) = 146419397 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:11:34 2016 Return-Path: Delivered-To: svn-ports-head@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 15548BDD83E; Fri, 16 Sep 2016 22:11:34 +0000 (UTC) (envelope-from amdmi3@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 CC1E3C9A; Fri, 16 Sep 2016 22:11:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMBXe6034336; Fri, 16 Sep 2016 22:11:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMBWNC034334; Fri, 16 Sep 2016 22:11:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162211.u8GMBWNC034334@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:11:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422274 - head/astro/josm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:11:34 -0000 Author: amdmi3 Date: Fri Sep 16 22:11:32 2016 New Revision: 422274 URL: https://svnweb.freebsd.org/changeset/ports/422274 Log: - Update to 10966 Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Fri Sep 16 22:06:03 2016 (r422273) +++ head/astro/josm/Makefile Fri Sep 16 22:11:32 2016 (r422274) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= josm -PORTVERSION= 10786 +PORTVERSION= 10966 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Fri Sep 16 22:06:03 2016 (r422273) +++ head/astro/josm/distinfo Fri Sep 16 22:11:32 2016 (r422274) @@ -1,3 +1,3 @@ -TIMESTAMP = 1471300532 -SHA256 (josm-snapshot-10786.jar) = f6cafd5be7689d00e4ecd1f528fe5079daa6f54eb7781ca1beb145c4ed188bb6 -SIZE (josm-snapshot-10786.jar) = 10703670 +TIMESTAMP = 1474055562 +SHA256 (josm-snapshot-10966.jar) = 211ddb977b40c6c47ffdc183301d7d9f370053a7ad8519b158c49eec308df13d +SIZE (josm-snapshot-10966.jar) = 10750990 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:30:33 2016 Return-Path: Delivered-To: svn-ports-head@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 1BC17BDDB21; Fri, 16 Sep 2016 22:30:33 +0000 (UTC) (envelope-from amdmi3@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 EB0CB37A; Fri, 16 Sep 2016 22:30:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMUWtv041348; Fri, 16 Sep 2016 22:30:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMUVjk041345; Fri, 16 Sep 2016 22:30:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162230.u8GMUVjk041345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:30:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422275 - in head/finance/electrum: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:30:33 -0000 Author: amdmi3 Date: Fri Sep 16 22:30:31 2016 New Revision: 422275 URL: https://svnweb.freebsd.org/changeset/ports/422275 Log: - Update to 2.6.4 - Update license - Add NO_ARCH PR: 212664 Submitted by: amdmi3 Approved by: kyuupichan@gmail.com (maintainer) Modified: head/finance/electrum/Makefile head/finance/electrum/distinfo head/finance/electrum/files/patch-setup.py Modified: head/finance/electrum/Makefile ============================================================================== --- head/finance/electrum/Makefile Fri Sep 16 22:11:32 2016 (r422274) +++ head/finance/electrum/Makefile Fri Sep 16 22:30:31 2016 (r422275) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= electrum -PORTVERSION= 2.5.4 +PORTVERSION= 2.6.4 CATEGORIES= finance python MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \ http://download.electrum.org/${PORTVERSION}/ @@ -11,7 +11,7 @@ DISTNAME= Electrum-${PORTVERSION} MAINTAINER= kyuupichan@gmail.com COMMENT= Easy to use Bitcoin client -LICENSE= GPLv3 +LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}slowaes>0:security/py-slowaes \ @@ -22,11 +22,13 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}slow ${PYTHON_PKGNAMEPREFIX}tlslite>=0.4.6:security/py-tlslite \ ${PYTHON_PKGNAMEPREFIX}pbkdf2>=1.3:security/py-pbkdf2 \ ${PYTHON_PKGNAMEPREFIX}protobuf>=2.6.0:devel/py-protobuf \ - ${PYTHON_PKGNAMEPREFIX}dnspython>0:dns/py-dnspython + ${PYTHON_PKGNAMEPREFIX}dnspython>0:dns/py-dnspython \ + ${PYTHON_PKGNAMEPREFIX}jsonrpclib>0:devel/py-jsonrpclib USES= desktop-file-utils python:-2.7 USE_PYTHON= autoplist distutils PYDISTUTILS_PKGNAME= Electrum +NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/setup.py Modified: head/finance/electrum/distinfo ============================================================================== --- head/finance/electrum/distinfo Fri Sep 16 22:11:32 2016 (r422274) +++ head/finance/electrum/distinfo Fri Sep 16 22:30:31 2016 (r422275) @@ -1,2 +1,3 @@ -SHA256 (Electrum-2.5.4.tar.gz) = c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3 -SIZE (Electrum-2.5.4.tar.gz) = 2114549 +TIMESTAMP = 1473766225 +SHA256 (Electrum-2.6.4.tar.gz) = 2ab53b434206ed8ae72e9cadb22d44ef9ba720a7d052abe102f5d55cafbef866 +SIZE (Electrum-2.6.4.tar.gz) = 5717600 Modified: head/finance/electrum/files/patch-setup.py ============================================================================== --- head/finance/electrum/files/patch-setup.py Fri Sep 16 22:11:32 2016 (r422274) +++ head/finance/electrum/files/patch-setup.py Fri Sep 16 22:30:31 2016 (r422275) @@ -1,11 +1,15 @@ ---- setup.py.orig 2015-10-18 10:56:02 UTC +--- setup.py.orig 2016-02-29 14:37:15 UTC +++ setup.py -@@ -16,7 +16,7 @@ if sys.version_info[:3] < (2, 7, 0): - data_files = [] - - if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']: -- usr_share = os.path.join(sys.prefix, "share") -+ usr_share = '%%PREFIX%%/share' +@@ -21,12 +21,6 @@ if platform.system() in ['Linux', 'FreeB + parser.add_argument('--root=', dest='root_path', metavar='dir', default='/') + opts, _ = parser.parse_known_args(sys.argv[1:]) + usr_share = os.path.join(sys.prefix, "share") +- if not os.access(opts.root_path + usr_share, os.W_OK) and \ +- not os.access(opts.root_path, os.W_OK): +- if 'XDG_DATA_HOME' in os.environ.keys(): +- usr_share = os.environ['$XDG_DATA_HOME'] +- else: +- usr_share = os.path.expanduser('~/.local/share') data_files += [ (os.path.join(usr_share, 'applications/'), ['electrum.desktop']), (os.path.join(usr_share, 'pixmaps/'), ['icons/electrum.png']) From owner-svn-ports-head@freebsd.org Fri Sep 16 22:38:06 2016 Return-Path: Delivered-To: svn-ports-head@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 5E942BDDD08; Fri, 16 Sep 2016 22:38:06 +0000 (UTC) (envelope-from amdmi3@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 168499FB; Fri, 16 Sep 2016 22:38:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMc5Ml044987; Fri, 16 Sep 2016 22:38:05 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMc52x044985; Fri, 16 Sep 2016 22:38:05 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162238.u8GMc52x044985@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:38:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422276 - head/math/pecl-stats X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:38:06 -0000 Author: amdmi3 Date: Fri Sep 16 22:38:04 2016 New Revision: 422276 URL: https://svnweb.freebsd.org/changeset/ports/422276 Log: - Update to 1.0.5 - Update LICENSE - Take maintainer'ship Changelog: 1.0.5 - Fix bug in stats_stat_binomial_coef which causes segfault in some environments - Fix bug in stats_stat_factorial which leads infinite loop in some cases - stats_stat_factorial returns immediately when the value are reached to +INF - Change supported version to PHP 5.3 or higher 1.0.4 - Fixed bugs (see tests for details) PR: 212504 Submitted by: dbaio@bsd.com.br Modified: head/math/pecl-stats/Makefile head/math/pecl-stats/distinfo Modified: head/math/pecl-stats/Makefile ============================================================================== --- head/math/pecl-stats/Makefile Fri Sep 16 22:30:31 2016 (r422275) +++ head/math/pecl-stats/Makefile Fri Sep 16 22:38:04 2016 (r422276) @@ -2,17 +2,17 @@ # $FreeBSD$ PORTNAME= stats -PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTVERSION= 1.0.5 CATEGORIES= math textproc pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- DIST_SUBDIR= PECL -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@bsd.com.br COMMENT= PECL extension which with routines for statistical computation -LICENSE= PHP30 +LICENSE= PHP301 +LICENSE_FILE= ${WRKSRC}/LICENSE USES= php:ext tar:tgz IGNORE_WITH_PHP= 70 Modified: head/math/pecl-stats/distinfo ============================================================================== --- head/math/pecl-stats/distinfo Fri Sep 16 22:30:31 2016 (r422275) +++ head/math/pecl-stats/distinfo Fri Sep 16 22:38:04 2016 (r422276) @@ -1,2 +1,3 @@ -SHA256 (PECL/stats-1.0.3.tgz) = e032e02052acf2013f0578da823d60b0b2a89eb5e1dd1379cf0a65c090dffdfc -SIZE (PECL/stats-1.0.3.tgz) = 99144 +TIMESTAMP = 1473275713 +SHA256 (PECL/stats-1.0.5.tgz) = 2ddf373ff0370b296393c7b898dbd8c5f685cef32be90b8d1b7c21a37e5454a7 +SIZE (PECL/stats-1.0.5.tgz) = 112361 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:48:49 2016 Return-Path: Delivered-To: svn-ports-head@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 C91E2BDDEA4; Fri, 16 Sep 2016 22:48:49 +0000 (UTC) (envelope-from amdmi3@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 9A0A5E39; Fri, 16 Sep 2016 22:48:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMmm2Z048941; Fri, 16 Sep 2016 22:48:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMmme9048938; Fri, 16 Sep 2016 22:48:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162248.u8GMmme9048938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:48:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422277 - head/devel/libdombey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:48:49 -0000 Author: amdmi3 Date: Fri Sep 16 22:48:48 2016 New Revision: 422277 URL: https://svnweb.freebsd.org/changeset/ports/422277 Log: - Update to 5.32 PR: 212525 Submitted by: jimmy@mammothcheese.ca (maintainer) MFH: 2016Q3 Modified: head/devel/libdombey/Makefile head/devel/libdombey/distinfo Modified: head/devel/libdombey/Makefile ============================================================================== --- head/devel/libdombey/Makefile Fri Sep 16 22:38:04 2016 (r422276) +++ head/devel/libdombey/Makefile Fri Sep 16 22:48:48 2016 (r422277) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libdombey -PORTVERSION= 5.29 +PORTVERSION= 5.32 CATEGORIES= devel MASTER_SITES= http://www.mammothcheese.ca/ Modified: head/devel/libdombey/distinfo ============================================================================== --- head/devel/libdombey/distinfo Fri Sep 16 22:38:04 2016 (r422276) +++ head/devel/libdombey/distinfo Fri Sep 16 22:48:48 2016 (r422277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464867742 -SHA256 (libdombey-5.29.tar.gz) = b7024f1d0f22d5dbf07cbfe44611a67400702045ae910762d60cee48cc41fb1c -SIZE (libdombey-5.29.tar.gz) = 55680 +TIMESTAMP = 1473423222 +SHA256 (libdombey-5.32.tar.gz) = 080bc9ed76de881ab488bd7b58a96d6a69d38f4f795c6647a6887769dd1f7c5e +SIZE (libdombey-5.32.tar.gz) = 56030 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:49:34 2016 Return-Path: Delivered-To: svn-ports-head@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 A0D54BDDEFE; Fri, 16 Sep 2016 22:49:34 +0000 (UTC) (envelope-from amdmi3@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 59D68F37; Fri, 16 Sep 2016 22:49:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMnXIK049106; Fri, 16 Sep 2016 22:49:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMnXDQ049104; Fri, 16 Sep 2016 22:49:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162249.u8GMnXDQ049104@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:49:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422278 - head/games/chroma X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:49:34 -0000 Author: amdmi3 Date: Fri Sep 16 22:49:33 2016 New Revision: 422278 URL: https://svnweb.freebsd.org/changeset/ports/422278 Log: - Add LICENSE - Switch to USES=localbase - Update to 1.15 Modified: head/games/chroma/Makefile head/games/chroma/distinfo Modified: head/games/chroma/Makefile ============================================================================== --- head/games/chroma/Makefile Fri Sep 16 22:48:48 2016 (r422277) +++ head/games/chroma/Makefile Fri Sep 16 22:49:33 2016 (r422278) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= chroma -PORTVERSION= 1.08 -PORTREVISION= 7 +PORTVERSION= 1.15 CATEGORIES= games MASTER_SITES= http://www.level7.org.uk/chroma/download/ \ http://mirror.amdmi3.ru/distfiles/ @@ -11,10 +10,11 @@ MASTER_SITES= http://www.level7.org.uk/c MAINTAINER= amdmi3@FreeBSD.org COMMENT= Abstract puzzle game -USES= tar:bzip2 gettext +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= gettext localbase tar:bzip2 GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lintl PORTDOCS= * PORTDATA= * @@ -37,8 +37,10 @@ SDL_USE= SDL=sdl,image SDL_PLIST_FILES= bin/${PORTNAME} post-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}* + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}* .include Modified: head/games/chroma/distinfo ============================================================================== --- head/games/chroma/distinfo Fri Sep 16 22:48:48 2016 (r422277) +++ head/games/chroma/distinfo Fri Sep 16 22:49:33 2016 (r422278) @@ -1,2 +1,3 @@ -SHA256 (chroma-1.08.tar.bz2) = 9dbb2dd8404d4792a04d24d877abd708c1348acb085848698ff316821fa54e32 -SIZE (chroma-1.08.tar.bz2) = 2699673 +TIMESTAMP = 1474040124 +SHA256 (chroma-1.15.tar.bz2) = 25c7582b0961000c2bea1502fc1e14c7498d08a3b8f9794d0bf92bc98b1cf55b +SIZE (chroma-1.15.tar.bz2) = 2690725 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:50:49 2016 Return-Path: Delivered-To: svn-ports-head@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 CFEE8BDDF6E; Fri, 16 Sep 2016 22:50:49 +0000 (UTC) (envelope-from amdmi3@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 A291F1051; Fri, 16 Sep 2016 22:50:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMomGF051288; Fri, 16 Sep 2016 22:50:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMom7w051286; Fri, 16 Sep 2016 22:50:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162250.u8GMom7w051286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:50:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422279 - head/net/p5-Net-LDAP-FilterBuilder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:50:49 -0000 Author: amdmi3 Date: Fri Sep 16 22:50:48 2016 New Revision: 422279 URL: https://svnweb.freebsd.org/changeset/ports/422279 Log: - Update to 1.200000 - Add NO_ARCH PR: 212528 Submitted by: jeremybbaggs@gmail.com (maintainer) Modified: head/net/p5-Net-LDAP-FilterBuilder/Makefile head/net/p5-Net-LDAP-FilterBuilder/distinfo Modified: head/net/p5-Net-LDAP-FilterBuilder/Makefile ============================================================================== --- head/net/p5-Net-LDAP-FilterBuilder/Makefile Fri Sep 16 22:49:33 2016 (r422278) +++ head/net/p5-Net-LDAP-FilterBuilder/Makefile Fri Sep 16 22:50:48 2016 (r422279) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Net-LDAP-FilterBuilder -PORTVERSION= 1.0004 +PORTVERSION= 1.200000 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,5 +14,6 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include Modified: head/net/p5-Net-LDAP-FilterBuilder/distinfo ============================================================================== --- head/net/p5-Net-LDAP-FilterBuilder/distinfo Fri Sep 16 22:49:33 2016 (r422278) +++ head/net/p5-Net-LDAP-FilterBuilder/distinfo Fri Sep 16 22:50:48 2016 (r422279) @@ -1,2 +1,3 @@ -SHA256 (Net-LDAP-FilterBuilder-1.0004.tar.gz) = 67e67a0b751f5be219772f666383a07867eb74c9cc0fc4b188ec891b952c6367 -SIZE (Net-LDAP-FilterBuilder-1.0004.tar.gz) = 16059 +TIMESTAMP = 1473437416 +SHA256 (Net-LDAP-FilterBuilder-1.200000.tar.gz) = 503435671ee582e05420e1a66a88fd6d639b8f95507365a05bcc8f2dabef79f6 +SIZE (Net-LDAP-FilterBuilder-1.200000.tar.gz) = 11640 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:51:39 2016 Return-Path: Delivered-To: svn-ports-head@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 9009FBDDFB7; Fri, 16 Sep 2016 22:51:39 +0000 (UTC) (envelope-from amdmi3@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 557D311BB; Fri, 16 Sep 2016 22:51:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMpc5k052769; Fri, 16 Sep 2016 22:51:38 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMpc87052758; Fri, 16 Sep 2016 22:51:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162251.u8GMpc87052758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:51:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422280 - head/www/phpsysinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:51:39 -0000 Author: amdmi3 Date: Fri Sep 16 22:51:38 2016 New Revision: 422280 URL: https://svnweb.freebsd.org/changeset/ports/422280 Log: - Update to 3.2.6 PR: 212569 Submitted by: tremere@cainites.net (maintainer) Modified: head/www/phpsysinfo/Makefile head/www/phpsysinfo/distinfo head/www/phpsysinfo/pkg-plist Modified: head/www/phpsysinfo/Makefile ============================================================================== --- head/www/phpsysinfo/Makefile Fri Sep 16 22:50:48 2016 (r422279) +++ head/www/phpsysinfo/Makefile Fri Sep 16 22:51:38 2016 (r422280) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpsysinfo -PORTVERSION= 3.2.5 +PORTVERSION= 3.2.6 DISTVERSIONPREFIX= v CATEGORIES= www Modified: head/www/phpsysinfo/distinfo ============================================================================== --- head/www/phpsysinfo/distinfo Fri Sep 16 22:50:48 2016 (r422279) +++ head/www/phpsysinfo/distinfo Fri Sep 16 22:51:38 2016 (r422280) @@ -1,2 +1,3 @@ -SHA256 (phpsysinfo-phpsysinfo-v3.2.5_GH0.tar.gz) = 580af40ab1909ee913fd507839512c1e11ab14cd296dce0fa0f34c17d8db57ba -SIZE (phpsysinfo-phpsysinfo-v3.2.5_GH0.tar.gz) = 947527 +TIMESTAMP = 1472576481 +SHA256 (phpsysinfo-phpsysinfo-v3.2.6_GH0.tar.gz) = 12cd5f799eac569f6b13d29dd96c2155b9504e69ad331eab19ecfea06944c58e +SIZE (phpsysinfo-phpsysinfo-v3.2.6_GH0.tar.gz) = 984269 Modified: head/www/phpsysinfo/pkg-plist ============================================================================== --- head/www/phpsysinfo/pkg-plist Fri Sep 16 22:50:48 2016 (r422279) +++ head/www/phpsysinfo/pkg-plist Fri Sep 16 22:51:38 2016 (r422280) @@ -73,6 +73,7 @@ %%WWWDIR%%/gfx/images/Mer.png %%WWWDIR%%/gfx/images/Minix.png %%WWWDIR%%/gfx/images/Mint.png +%%WWWDIR%%/gfx/images/NeoKylin.png %%WWWDIR%%/gfx/images/NetBSD.png %%WWWDIR%%/gfx/images/Netrunner.png %%WWWDIR%%/gfx/images/NixOS.png @@ -124,6 +125,7 @@ %%WWWDIR%%/gfx/images/Ubuntu.png %%WWWDIR%%/gfx/images/UltimateEdition.png %%WWWDIR%%/gfx/images/Vector.png +%%WWWDIR%%/gfx/images/Void.png %%WWWDIR%%/gfx/images/VortexBox.png %%WWWDIR%%/gfx/images/Win2000.png %%WWWDIR%%/gfx/images/Win8.png @@ -240,7 +242,7 @@ %%WWWDIR%%/js/phpSysInfo/phpsysinfo.js %%WWWDIR%%/js/phpSysInfo/phpsysinfo_bootstrap.js %%WWWDIR%%/js/vendor/README -%%WWWDIR%%/js/vendor/bootstrap.min.js +%%WWWDIR%%/js/vendor/bootstrap-modal.js %%WWWDIR%%/js/vendor/console-shim.js %%WWWDIR%%/js/vendor/html5shiv-printshiv.js %%WWWDIR%%/js/vendor/respond.js @@ -322,12 +324,18 @@ %%WWWDIR%%/plugins/ipmiinfo/lang/pl.xml %%WWWDIR%%/plugins/ipmiinfo/lang/ro.xml %%WWWDIR%%/plugins/ipmiinfo/lang/ru.xml +%%WWWDIR%%/plugins/iptables/class.iptables.inc.php +%%WWWDIR%%/plugins/iptables/iptables_bootstrap.html +%%WWWDIR%%/plugins/iptables/js/iptables.js +%%WWWDIR%%/plugins/iptables/js/iptables_bootstrap.js +%%WWWDIR%%/plugins/iptables/lang/en.xml %%WWWDIR%%/plugins/mdstatus/class.mdstatus.inc.php %%WWWDIR%%/plugins/mdstatus/css/mdstatus.css %%WWWDIR%%/plugins/mdstatus/gfx/error.png %%WWWDIR%%/plugins/mdstatus/gfx/harddrivefail.png %%WWWDIR%%/plugins/mdstatus/gfx/harddriveok.png %%WWWDIR%%/plugins/mdstatus/gfx/harddrivespare.png +%%WWWDIR%%/plugins/mdstatus/gfx/harddrivewarn.png %%WWWDIR%%/plugins/mdstatus/js/mdstatus.js %%WWWDIR%%/plugins/mdstatus/js/mdstatus_bootstrap.js %%WWWDIR%%/plugins/mdstatus/lang/cz.xml @@ -477,6 +485,7 @@ %%WWWDIR%%/sample/distrotest/Mint/13.txt %%WWWDIR%%/sample/distrotest/Mint/14.txt %%WWWDIR%%/sample/distrotest/Mint/15.txt +%%WWWDIR%%/sample/distrotest/NeoKylin/6.0.txt %%WWWDIR%%/sample/distrotest/Netrunner/13.06-SE.txt %%WWWDIR%%/sample/distrotest/Netrunner/13.06.txt %%WWWDIR%%/sample/distrotest/Netrunner/2014.04.txt @@ -546,6 +555,7 @@ %%WWWDIR%%/sample/distrotest/Ubuntu/13.10.txt %%WWWDIR%%/sample/distrotest/UltimateEdition/3.9.txt %%WWWDIR%%/sample/distrotest/Vector/647.0.txt +%%WWWDIR%%/sample/distrotest/Void/1.0-20160420.txt %%WWWDIR%%/sample/distrotest/VortexBox/2.2.txt %%WWWDIR%%/sample/distrotest/VortexBox/2.3-beta.txt %%WWWDIR%%/sample/distrotest/Zenwalk/7.4.txt @@ -625,6 +635,8 @@ %%WWWDIR%%/sample/plugin_dmraid/dmraid3.txt %%WWWDIR%%/sample/plugin_dmraid/dmraid4.txt %%WWWDIR%%/sample/plugin_dmraid/dmraid5.txt +%%WWWDIR%%/sample/plugin_dmraid/graid1.txt +%%WWWDIR%%/sample/plugin_dmraid/graid2.txt %%WWWDIR%%/sample/plugin_mdstat/README %%WWWDIR%%/sample/plugin_mdstat/raid1.txt %%WWWDIR%%/sample/plugin_mdstat/raid10.txt @@ -654,6 +666,7 @@ %%WWWDIR%%/sample/ups/1-upscPW5110.txt %%WWWDIR%%/sample/ups/1-upscl.txt %%WWWDIR%%/sample/ups/apcaccess1.txt +%%WWWDIR%%/sample/ups/pmset.txt %%WWWDIR%%/sample/ups/powersoftplus1.txt %%WWWDIR%%/templates/aqua.css %%WWWDIR%%/templates/aqua/aq_background.gif @@ -678,6 +691,9 @@ %%WWWDIR%%/templates/idash/htmlwarn.gif %%WWWDIR%%/templates/jstyle_blue.css %%WWWDIR%%/templates/jstyle_green.css +%%WWWDIR%%/templates/lingruby.css +%%WWWDIR%%/templates/lingruby/background.png +%%WWWDIR%%/templates/misc/emptyfile.css %%WWWDIR%%/templates/nextgen.css %%WWWDIR%%/templates/nextgen/nextgen_bg.png %%WWWDIR%%/templates/phpsysinfo.css @@ -687,6 +703,7 @@ %%WWWDIR%%/templates/plugin/jquery.jgrowl.css %%WWWDIR%%/templates/plugin/jquery.treeTable.css %%WWWDIR%%/templates/plugin/nyroModal.full.css +%%WWWDIR%%/templates/schabau.css %%WWWDIR%%/templates/two.css %%WWWDIR%%/templates/two/gradient.png %%WWWDIR%%/templates/vendor/bootstrap.min.css From owner-svn-ports-head@freebsd.org Fri Sep 16 22:53:06 2016 Return-Path: Delivered-To: svn-ports-head@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 D865EBDD28D; Fri, 16 Sep 2016 22:53:06 +0000 (UTC) (envelope-from amdmi3@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 A766A1689; Fri, 16 Sep 2016 22:53:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMr51K052972; Fri, 16 Sep 2016 22:53:05 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMr5ua052970; Fri, 16 Sep 2016 22:53:05 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162253.u8GMr5ua052970@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 22:53:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422281 - head/sysutils/ldap-account-manager X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:53:06 -0000 Author: amdmi3 Date: Fri Sep 16 22:53:05 2016 New Revision: 422281 URL: https://svnweb.freebsd.org/changeset/ports/422281 Log: - Update to 5.5 PR: 212577 Submitted by: basil@vpm.net.ua (maintainer) Modified: head/sysutils/ldap-account-manager/Makefile head/sysutils/ldap-account-manager/distinfo Modified: head/sysutils/ldap-account-manager/Makefile ============================================================================== --- head/sysutils/ldap-account-manager/Makefile Fri Sep 16 22:51:38 2016 (r422280) +++ head/sysutils/ldap-account-manager/Makefile Fri Sep 16 22:53:05 2016 (r422281) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ldap-account-manager -PORTVERSION= 5.3 +PORTVERSION= 5.5 CATEGORIES= sysutils www MASTER_SITES= SF/${SHORTNAME}/LAM/${PORTVERSION} Modified: head/sysutils/ldap-account-manager/distinfo ============================================================================== --- head/sysutils/ldap-account-manager/distinfo Fri Sep 16 22:51:38 2016 (r422280) +++ head/sysutils/ldap-account-manager/distinfo Fri Sep 16 22:53:05 2016 (r422281) @@ -1,2 +1,3 @@ -SHA256 (ldap-account-manager-5.3.tar.bz2) = fbd2843f2b34ef616bbbb024f644f33f4caec92fecf15d82512b49c65985d8dd -SIZE (ldap-account-manager-5.3.tar.bz2) = 14279305 +TIMESTAMP = 1473567562 +SHA256 (ldap-account-manager-5.5.tar.bz2) = f5cf22ec2fcec7bdd54062d105b01b54f2c432f6c45da35a3abde17af31e8be7 +SIZE (ldap-account-manager-5.5.tar.bz2) = 14751801 From owner-svn-ports-head@freebsd.org Fri Sep 16 22:56:50 2016 Return-Path: Delivered-To: svn-ports-head@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 48F90BDD38D; Fri, 16 Sep 2016 22:56:50 +0000 (UTC) (envelope-from cpm@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 0342018B5; Fri, 16 Sep 2016 22:56:49 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GMun0A053251; Fri, 16 Sep 2016 22:56:49 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GMunQt053249; Fri, 16 Sep 2016 22:56:49 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609162256.u8GMunQt053249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Fri, 16 Sep 2016 22:56:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422282 - in head/devel/stack: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 22:56:50 -0000 Author: cpm Date: Fri Sep 16 22:56:48 2016 New Revision: 422282 URL: https://svnweb.freebsd.org/changeset/ports/422282 Log: - Update stack to 1.2.0 release Changelog: https://github.com/commercialhaskell/stack/releases/tag/v1.2.0 PR: 212720 Submitted by: Tobias Kortkamp (maintainer) Reviewed by: amdmi3 (mentor) Approved by: amdmi3 (mentor) Deleted: head/devel/stack/files/ Modified: head/devel/stack/Makefile head/devel/stack/distinfo Modified: head/devel/stack/Makefile ============================================================================== --- head/devel/stack/Makefile Fri Sep 16 22:53:05 2016 (r422281) +++ head/devel/stack/Makefile Fri Sep 16 22:56:48 2016 (r422282) @@ -9,8 +9,7 @@ # bump the version here. PORTNAME= stack -PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTVERSION= 1.2.0 CATEGORIES= devel haskell MASTER_SITES= GH \ https://github.com/applicative-tech/stack-dependencies/releases/download/${PORTVERSION}/:deps Modified: head/devel/stack/distinfo ============================================================================== --- head/devel/stack/distinfo Fri Sep 16 22:53:05 2016 (r422281) +++ head/devel/stack/distinfo Fri Sep 16 22:56:48 2016 (r422282) @@ -1,4 +1,5 @@ -SHA256 (stack-dependencies-1.1.2.tar.gz) = e012d3b311498c00d2af137873d66ef53c183096c55621e61dcb3ca685623121 -SIZE (stack-dependencies-1.1.2.tar.gz) = 32297077 -SHA256 (applicative-tech-stack-dependencies-1.1.2_GH0.tar.gz) = fdfa8e9a7a7786e9c1faad808f1a3ae10df1dcb81351d5465afa647aa9457c3a -SIZE (applicative-tech-stack-dependencies-1.1.2_GH0.tar.gz) = 983 +TIMESTAMP = 1474066136 +SHA256 (stack-dependencies-1.2.0.tar.gz) = 10be720c45d6a0441cc6544dbe09d6fa9aa787462545577a79746f6b34fe09bc +SIZE (stack-dependencies-1.2.0.tar.gz) = 37424751 +SHA256 (applicative-tech-stack-dependencies-1.2.0_GH0.tar.gz) = 09439541370d3ed65c10c748be668731d50faba73bc7f47da24405accb369a94 +SIZE (applicative-tech-stack-dependencies-1.2.0_GH0.tar.gz) = 983 From owner-svn-ports-head@freebsd.org Fri Sep 16 23:15:35 2016 Return-Path: Delivered-To: svn-ports-head@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 03609BDD7BE; Fri, 16 Sep 2016 23:15:35 +0000 (UTC) (envelope-from amdmi3@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 CA400AD; Fri, 16 Sep 2016 23:15:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNFYG2060761; Fri, 16 Sep 2016 23:15:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNFXAM060759; Fri, 16 Sep 2016 23:15:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162315.u8GNFXAM060759@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 23:15:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422283 - head/devel/love X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:15:35 -0000 Author: amdmi3 Date: Fri Sep 16 23:15:33 2016 New Revision: 422283 URL: https://svnweb.freebsd.org/changeset/ports/422283 Log: - Update to 0.10.1 - Add missing dependency Modified: head/devel/love/Makefile head/devel/love/distinfo Modified: head/devel/love/Makefile ============================================================================== --- head/devel/love/Makefile Fri Sep 16 22:56:48 2016 (r422282) +++ head/devel/love/Makefile Fri Sep 16 23:15:33 2016 (r422283) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= love -PORTVERSION= 0.10.0 +PORTVERSION= 0.10.1 CATEGORIES= devel games MASTER_SITES= https://bitbucket.org/rude/love/downloads/ \ http://mirror.amdmi3.ru/distfiles/ @@ -19,7 +19,8 @@ LIB_DEPENDS= libmodplug.so:audio/libmodp libvorbisfile.so:audio/libvorbis \ libphysfs.so:devel/physfs \ libfreetype.so:print/freetype2 \ - libtheora.so:multimedia/libtheora + libtheora.so:multimedia/libtheora \ + libogg.so:audio/libogg USES= compiler:c++11-lib desktop-file-utils gmake libtool \ localbase openal pkgconfig shared-mime-info Modified: head/devel/love/distinfo ============================================================================== --- head/devel/love/distinfo Fri Sep 16 22:56:48 2016 (r422282) +++ head/devel/love/distinfo Fri Sep 16 23:15:33 2016 (r422283) @@ -1,2 +1,3 @@ -SHA256 (love-0.10.0-linux-src.tar.gz) = 97a4df98e56c4e9b9d9097633a76319e719de8f87c494782df8dc1c1b30d56e4 -SIZE (love-0.10.0-linux-src.tar.gz) = 1586980 +TIMESTAMP = 1474058494 +SHA256 (love-0.10.1-linux-src.tar.gz) = a2b0c9a1096a064c40f9f4bafd7ee92c0aa64f70146f7574992425c24e4541fb +SIZE (love-0.10.1-linux-src.tar.gz) = 1686004 From owner-svn-ports-head@freebsd.org Fri Sep 16 23:16:48 2016 Return-Path: Delivered-To: svn-ports-head@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 8EF22BDD807; Fri, 16 Sep 2016 23:16:48 +0000 (UTC) (envelope-from cpm@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 47C0F19A; Fri, 16 Sep 2016 23:16:48 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNGlNT060910; Fri, 16 Sep 2016 23:16:47 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNGl20060908; Fri, 16 Sep 2016 23:16:47 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609162316.u8GNGl20060908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Fri, 16 Sep 2016 23:16:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422284 - in head/misc/gkrellweather2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:16:48 -0000 Author: cpm Date: Fri Sep 16 23:16:47 2016 New Revision: 422284 URL: https://svnweb.freebsd.org/changeset/ports/422284 Log: - Fix METAR source URL - Bump PORTREVISION PR: 212693 Submitted by: etteldor@gmail.com Reviewed by: amdmi3 (mentor) Approved by: amdmi3 (mentor) Modified: head/misc/gkrellweather2/Makefile head/misc/gkrellweather2/files/patch-GrabWeather Modified: head/misc/gkrellweather2/Makefile ============================================================================== --- head/misc/gkrellweather2/Makefile Fri Sep 16 23:15:33 2016 (r422283) +++ head/misc/gkrellweather2/Makefile Fri Sep 16 23:16:47 2016 (r422284) @@ -3,7 +3,7 @@ PORTNAME= gkrellweather PORTVERSION= 2.0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc geography MASTER_SITES= https://sites.google.com/site/makovick/projects/ Modified: head/misc/gkrellweather2/files/patch-GrabWeather ============================================================================== --- head/misc/gkrellweather2/files/patch-GrabWeather Fri Sep 16 23:15:33 2016 (r422283) +++ head/misc/gkrellweather2/files/patch-GrabWeather Fri Sep 16 23:16:47 2016 (r422284) @@ -1,12 +1,21 @@ ---- GrabWeather.orig Sun Feb 27 08:54:47 2005 -+++ GrabWeather Sun Feb 27 08:54:47 2005 +--- GrabWeather.orig 2009-01-11 18:15:02 UTC ++++ GrabWeather @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # # Grabs the latest local weather conditions from the -@@ -40,8 +40,7 @@ +@@ -12,7 +12,7 @@ + + $ReportDir = '.wmWeatherReports'; + #$WeatherSrc = 'ftp://weather.noaa.gov/data/observations/metar/decoded'; +-$WeatherSrc = 'http://weather.noaa.gov/pub/data/observations/metar/decoded'; ++$WeatherSrc = 'http://tgftp.nws.noaa.gov/data/observations/metar/decoded'; + + use strict; + use vars qw( $ReportDir $WeatherSrc ); +@@ -40,8 +40,7 @@ my $DataFileName = "$StationID.dat"; # Is LWP installed? eval { require LWP::UserAgent }; if ($@) { From owner-svn-ports-head@freebsd.org Fri Sep 16 23:41:24 2016 Return-Path: Delivered-To: svn-ports-head@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 68DFABDDBBC; Fri, 16 Sep 2016 23:41:24 +0000 (UTC) (envelope-from amdmi3@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 1FE58BC6; Fri, 16 Sep 2016 23:41:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNfNPS068687; Fri, 16 Sep 2016 23:41:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNfNPQ068685; Fri, 16 Sep 2016 23:41:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162341.u8GNfNPQ068685@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 23:41:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422285 - in head/cad/openvsp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:41:24 -0000 Author: amdmi3 Date: Fri Sep 16 23:41:23 2016 New Revision: 422285 URL: https://svnweb.freebsd.org/changeset/ports/422285 Log: - Update to 3.9.1 PR: 212430 Submitted by: fernando.apesteguia@gmail.com (maintainer) Deleted: head/cad/openvsp/files/patch-src_vsp__aero_viewer_ContourLevel.fl head/cad/openvsp/files/patch-src_vsp__aero_viewer_CuttingPlane.fl head/cad/openvsp/files/patch-src_vsp__aero_viewer_glviewer.H head/cad/openvsp/files/patch-src_vsp__aero_viewer_viewerUI.fl head/cad/openvsp/files/patch-src_vsp__aero_viewer_vspaero__viewer.C Modified: head/cad/openvsp/Makefile head/cad/openvsp/distinfo Modified: head/cad/openvsp/Makefile ============================================================================== --- head/cad/openvsp/Makefile Fri Sep 16 23:16:47 2016 (r422284) +++ head/cad/openvsp/Makefile Fri Sep 16 23:41:23 2016 (r422285) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openvsp -PORTVERSION= 3.9.0 +PORTVERSION= 3.9.1 DISTVERSIONPREFIX= ${GH_PROJECT}_ CATEGORIES= cad MASTER_SITES= GH @@ -60,8 +60,8 @@ BUILD_PREFIX= OpenVSP-prefix/src/OpenVSP do-install: ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${BUILD_PREFIX}/vsp* ${STAGEDIR}${PREFIX}/bin - ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/vsp* - ${MKDIR} ${STAGEDIR}${DATADIR} + @${STRIP_CMD} ${STAGEDIR}/${PREFIX}/vsp* + @${MKDIR} ${STAGEDIR}${DATADIR} .for d in CustomScripts airfoil matlab scripts textures (cd ${BUILD_WRKSRC}/${BUILD_PREFIX}/${d} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}) .endfor Modified: head/cad/openvsp/distinfo ============================================================================== --- head/cad/openvsp/distinfo Fri Sep 16 23:16:47 2016 (r422284) +++ head/cad/openvsp/distinfo Fri Sep 16 23:41:23 2016 (r422285) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472060174 -SHA256 (OpenVSP-OpenVSP-OpenVSP_3.9.0_GH0.tar.gz) = 582efa843ecd46543950a8faac9c4c1274f0d897d31eef0bef887795d91142d3 -SIZE (OpenVSP-OpenVSP-OpenVSP_3.9.0_GH0.tar.gz) = 32750881 +TIMESTAMP = 1473160974 +SHA256 (OpenVSP-OpenVSP-OpenVSP_3.9.1_GH0.tar.gz) = 3c9607a4f1574a6a2c85acc1f3c5e20e392f1ad7f9e8fbebd3cfd548a97a65fa +SIZE (OpenVSP-OpenVSP-OpenVSP_3.9.1_GH0.tar.gz) = 32752113 From owner-svn-ports-head@freebsd.org Fri Sep 16 23:42:20 2016 Return-Path: Delivered-To: svn-ports-head@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 321B4BDDCF0; Fri, 16 Sep 2016 23:42:20 +0000 (UTC) (envelope-from amdmi3@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 053C7E57; Fri, 16 Sep 2016 23:42:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNgJSs070173; Fri, 16 Sep 2016 23:42:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNgJwX070172; Fri, 16 Sep 2016 23:42:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162342.u8GNgJwX070172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 23:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422286 - head/cad/openvsp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:42:20 -0000 Author: amdmi3 Date: Fri Sep 16 23:42:19 2016 New Revision: 422286 URL: https://svnweb.freebsd.org/changeset/ports/422286 Log: - Remove unneeded MASTER_SITES Approved by: portmgr blanket Modified: head/cad/openvsp/Makefile Modified: head/cad/openvsp/Makefile ============================================================================== --- head/cad/openvsp/Makefile Fri Sep 16 23:41:23 2016 (r422285) +++ head/cad/openvsp/Makefile Fri Sep 16 23:42:19 2016 (r422286) @@ -5,7 +5,6 @@ PORTNAME= openvsp PORTVERSION= 3.9.1 DISTVERSIONPREFIX= ${GH_PROJECT}_ CATEGORIES= cad -MASTER_SITES= GH MAINTAINER= fernando.apesteguia@gmail.com COMMENT= Create a 3D model of an aircraft defined by engineering parameters From owner-svn-ports-head@freebsd.org Fri Sep 16 23:52:52 2016 Return-Path: Delivered-To: svn-ports-head@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 7EC63BDDF91; Fri, 16 Sep 2016 23:52:52 +0000 (UTC) (envelope-from amdmi3@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 390CA332; Fri, 16 Sep 2016 23:52:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNqp4k075979; Fri, 16 Sep 2016 23:52:51 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNqplR075976; Fri, 16 Sep 2016 23:52:51 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162352.u8GNqplR075976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 23:52:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422287 - head/games/manaplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:52:52 -0000 Author: amdmi3 Date: Fri Sep 16 23:52:51 2016 New Revision: 422287 URL: https://svnweb.freebsd.org/changeset/ports/422287 Log: - Update to 1.6.9.10 PR: 212594 Submitted by: monwarez@mailoo.org (maintainer) Modified: head/games/manaplus/Makefile head/games/manaplus/distinfo head/games/manaplus/pkg-plist Modified: head/games/manaplus/Makefile ============================================================================== --- head/games/manaplus/Makefile Fri Sep 16 23:42:19 2016 (r422286) +++ head/games/manaplus/Makefile Fri Sep 16 23:52:51 2016 (r422287) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= manaplus -PORTVERSION= 1.6.8.14 +PORTVERSION= 1.6.9.10 CATEGORIES= games MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/ @@ -17,7 +17,7 @@ LIB_DEPENDS= libxml2.so:textproc/libxml2 libcurl.so:ftp/curl \ libphysfs.so:devel/physfs -USES= pkgconfig:build tar:xz +USES= autoreconf pkgconfig:build tar:xz USE_XORG= x11 USE_SDL= sdl2 gfx2 image2 mixer2 net2 ttf2 GNU_CONFIGURE= yes @@ -32,6 +32,7 @@ OPENGL_CONFIGURE_WITH= opengl OPENGL_USE= GL=gl NLS_USES= gettext +NLS_USES_OFF= gettext-tools NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} NLS_LDFLAGS= -L${LOCALBASE}/lib -lintl NLS_CONFIGURE_ENABLE= nls Modified: head/games/manaplus/distinfo ============================================================================== --- head/games/manaplus/distinfo Fri Sep 16 23:42:19 2016 (r422286) +++ head/games/manaplus/distinfo Fri Sep 16 23:52:51 2016 (r422287) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472108360 -SHA256 (manaplus-1.6.8.14.tar.xz) = ce590caff204f6fdfe1b33aca466e1c115dd444d1ef1f525334782670d2750d5 -SIZE (manaplus-1.6.8.14.tar.xz) = 9796608 +TIMESTAMP = 1473527956 +SHA256 (manaplus-1.6.9.10.tar.xz) = 3550b12f100d2bcaff2541b04b08dd1805d1071a547d2f0dfa5d613d507b431b +SIZE (manaplus-1.6.9.10.tar.xz) = 11746556 Modified: head/games/manaplus/pkg-plist ============================================================================== --- head/games/manaplus/pkg-plist Fri Sep 16 23:42:19 2016 (r422286) +++ head/games/manaplus/pkg-plist Fri Sep 16 23:52:51 2016 (r422287) @@ -7,6 +7,7 @@ share/applications/manaplustest.desktop %%NLS%%share/locale/ca/LC_MESSAGES/manaplus.mo %%NLS%%share/locale/cs/LC_MESSAGES/manaplus.mo %%NLS%%share/locale/de/LC_MESSAGES/manaplus.mo +%%NLS%%share/locale/eo/LC_MESSAGES/manaplus.mo %%NLS%%share/locale/es/LC_MESSAGES/manaplus.mo %%NLS%%share/locale/fi/LC_MESSAGES/manaplus.mo %%NLS%%share/locale/fr/LC_MESSAGES/manaplus.mo @@ -58,6 +59,7 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/graphics/flags/cz.png %%DATADIR%%/data/graphics/flags/de.png %%DATADIR%%/data/graphics/flags/en.png +%%DATADIR%%/data/graphics/flags/eo.png %%DATADIR%%/data/graphics/flags/es.png %%DATADIR%%/data/graphics/flags/fi.png %%DATADIR%%/data/graphics/flags/fr.png @@ -242,6 +244,7 @@ share/applications/manaplustest.desktop %%DATADIR%%/data/icons/manaplus.png %%DATADIR%%/data/icons/manaplus.svg %%DATADIR%%/data/icons/manaplus.xpm +%%DATADIR%%/data/music/keprohm.ogg %%DATADIR%%/data/perserver/default/charcreation.xml %%DATADIR%%/data/perserver/default/chatcommands.txt %%DATADIR%%/data/perserver/default/deadmessages.xml From owner-svn-ports-head@freebsd.org Fri Sep 16 23:53:51 2016 Return-Path: Delivered-To: svn-ports-head@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 A42C2BDC005; Fri, 16 Sep 2016 23:53:51 +0000 (UTC) (envelope-from amdmi3@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 76F6F640; Fri, 16 Sep 2016 23:53:51 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNrolS076121; Fri, 16 Sep 2016 23:53:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNroY1076120; Fri, 16 Sep 2016 23:53:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162353.u8GNroY1076120@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 23:53:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422288 - head/mail/elmo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:53:51 -0000 Author: amdmi3 Date: Fri Sep 16 23:53:50 2016 New Revision: 422288 URL: https://svnweb.freebsd.org/changeset/ports/422288 Log: - Switch to USES=localbase - Cosmetic fixes Modified: head/mail/elmo/Makefile Modified: head/mail/elmo/Makefile ============================================================================== --- head/mail/elmo/Makefile Fri Sep 16 23:52:51 2016 (r422287) +++ head/mail/elmo/Makefile Fri Sep 16 23:53:50 2016 (r422288) @@ -14,24 +14,20 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= elmo-devel-[0-9]* -OPTIONS_DEFINE= GPGME NLS - GNU_CONFIGURE= yes -USES= iconv ncurses shebangfix perl5 -USE_OPENSSL= yes -USE_PERL5= run +USES= iconv localbase ncurses shebangfix perl5 ssl SHEBANG_FILES= src/elmoconf.pl +USE_PERL5= run -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= GPGME NLS +OPTIONS_SUB= yes GPGME_DESC= GnuPG support using GPGME GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme GPGME_CONFIGURE_ENV_OFF=ac_cv_header_gpgme_h=no NLS_CONFIGURE_ON= --with-libintl-prefix="${LOCALBASE}" NLS_CONFIGURE_OFF= --disable-nls -NLS_USES= gettext -OPTIONS_SUB= yes +NLS_USES= gettext post-patch: @${REINPLACE_CMD} -e '/if test/s|==|=|g' ${WRKSRC}/configure From owner-svn-ports-head@freebsd.org Fri Sep 16 23:55:11 2016 Return-Path: Delivered-To: svn-ports-head@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 D1BD3BDC058; Fri, 16 Sep 2016 23:55:11 +0000 (UTC) (envelope-from amdmi3@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 A1F72791; Fri, 16 Sep 2016 23:55:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GNtAdn076304; Fri, 16 Sep 2016 23:55:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GNtAG8076302; Fri, 16 Sep 2016 23:55:10 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609162355.u8GNtAG8076302@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 16 Sep 2016 23:55:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422289 - head/audio/dir2ogg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 23:55:11 -0000 Author: amdmi3 Date: Fri Sep 16 23:55:10 2016 New Revision: 422289 URL: https://svnweb.freebsd.org/changeset/ports/422289 Log: - Update to 0.12 Modified: head/audio/dir2ogg/Makefile head/audio/dir2ogg/distinfo Modified: head/audio/dir2ogg/Makefile ============================================================================== --- head/audio/dir2ogg/Makefile Fri Sep 16 23:53:50 2016 (r422288) +++ head/audio/dir2ogg/Makefile Fri Sep 16 23:55:10 2016 (r422289) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= dir2ogg -PORTVERSION= 0.11.8 -PORTREVISION= 4 +PORTVERSION= 0.12 CATEGORIES= audio -MASTER_SITES= http://jak-linux.org/projects/dir2ogg/${PORTVERSION:R}/ +MASTER_SITES= http://jak-linux.org/projects/dir2ogg/${PORTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Command-line {wav,mp3,m4a} to ogg converter Modified: head/audio/dir2ogg/distinfo ============================================================================== --- head/audio/dir2ogg/distinfo Fri Sep 16 23:53:50 2016 (r422288) +++ head/audio/dir2ogg/distinfo Fri Sep 16 23:55:10 2016 (r422289) @@ -1,2 +1,3 @@ -SHA256 (dir2ogg-0.11.8.tar.gz) = 0b6fd089fc1eb20cc92b7901c947ff6033ce04c897f9af9f962fa421a67ba7e0 -SIZE (dir2ogg-0.11.8.tar.gz) = 21145 +TIMESTAMP = 1473878764 +SHA256 (dir2ogg-0.12.tar.gz) = 2876db3926415f40d728122f5836532253a25db1bc4877505e77ebcbc0cb5fea +SIZE (dir2ogg-0.12.tar.gz) = 19608 From owner-svn-ports-head@freebsd.org Sat Sep 17 00:04:01 2016 Return-Path: Delivered-To: svn-ports-head@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 37CB1BDC5A6; Sat, 17 Sep 2016 00:04:01 +0000 (UTC) (envelope-from woodsb02@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 F1385BA0; Sat, 17 Sep 2016 00:04:00 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H040Zt080259; Sat, 17 Sep 2016 00:04:00 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H03xtU080251; Sat, 17 Sep 2016 00:03:59 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201609170003.u8H03xtU080251@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 17 Sep 2016 00:03:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422290 - in head/security/amap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 00:04:01 -0000 Author: woodsb02 Date: Sat Sep 17 00:03:59 2016 New Revision: 422290 URL: https://svnweb.freebsd.org/changeset/ports/422290 Log: security/amap: Update to 5.4 - Add LICENSE details (both GPLv2 and AMAP license must be accepted) - Refactor patches with makepatch (pet portlint) Changes this release: https://www.thc.org/thc-amap/ PR: 212658 Approved by: onatan@gmail.com (maintainer), adamw (mentor) Added: head/security/amap/files/patch-pcre-3.9_chartables.c - copied, changed from r422289, head/security/amap/files/patch-pcre-chartables.c Deleted: head/security/amap/files/patch-pcre-chartables.c Modified: head/security/amap/Makefile head/security/amap/distinfo head/security/amap/files/patch-amap-lib.c Modified: head/security/amap/Makefile ============================================================================== --- head/security/amap/Makefile Fri Sep 16 23:55:10 2016 (r422289) +++ head/security/amap/Makefile Sat Sep 17 00:03:59 2016 (r422290) @@ -2,14 +2,20 @@ # $FreeBSD$ PORTNAME= amap -PORTVERSION= 5.2 -PORTREVISION= 1 +PORTVERSION= 5.4 CATEGORIES= security MASTER_SITES= PACKETSTORM/groups/thc MAINTAINER= onatan@gmail.com COMMENT= Application mapper +LICENSE= AMAP GPLv2 +LICENSE_COMB= multi +LICENSE_NAME_AMAP= amap license +LICENSE_FILE_AMAP= ${WRKSRC}/LICENCE.AMAP +LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE.GNU +LICENSE_PERMS_AMAP= dist-mirror dist-sell pkg-mirror pkg-sell + USES= ssl HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} Modified: head/security/amap/distinfo ============================================================================== --- head/security/amap/distinfo Fri Sep 16 23:55:10 2016 (r422289) +++ head/security/amap/distinfo Sat Sep 17 00:03:59 2016 (r422290) @@ -1,2 +1,3 @@ -SHA256 (amap-5.2.tar.gz) = 0ca1d5e9feab7d44af39dc058a688a0636f8e798315ee742847c4057e4467fb6 -SIZE (amap-5.2.tar.gz) = 262875 +TIMESTAMP = 1473776829 +SHA256 (amap-5.4.tar.gz) = a75ea58de75034de6b10b0de0065ec88e32f9e9af11c7d69edbffc4da9a5b059 +SIZE (amap-5.4.tar.gz) = 263331 Modified: head/security/amap/files/patch-amap-lib.c ============================================================================== --- head/security/amap/files/patch-amap-lib.c Fri Sep 16 23:55:10 2016 (r422289) +++ head/security/amap/files/patch-amap-lib.c Sat Sep 17 00:03:59 2016 (r422290) @@ -1,9 +1,9 @@ ---- amap-lib.c.orig Wed Jun 29 17:23:56 2005 -+++ amap-lib.c Wed Jun 29 17:28:09 2005 -@@ -125,10 +125,8 @@ +--- amap-lib.c.orig 2011-04-20 15:10:17 UTC ++++ amap-lib.c +@@ -125,10 +125,8 @@ int amap_webupdate_file(char *webfile, c int len = strlen("http://"); int wlen = strlen(webfile); - int port = 80, s, result = 1, datalen = 0, version = -1; + int port = 80, s, result = 1, datalen = 0, version = -1, fck; -int xx = 0; unsigned long int ip; time_t epoch; @@ -11,7 +11,7 @@ struct hostent *target; struct sockaddr_in addr; struct tm *the_time; -@@ -404,8 +402,8 @@ +@@ -404,8 +402,8 @@ amap_struct_triggers *read_file_triggers char *ptr; char *only_trigger = NULL; int i; @@ -22,7 +22,7 @@ int count; int count_triggers = 0; -@@ -577,7 +575,7 @@ +@@ -577,7 +575,7 @@ amap_struct_responses *read_file_respons char *proto; char *length; char *string; @@ -31,7 +31,7 @@ int errptr; int i; int count; -@@ -740,7 +738,7 @@ +@@ -740,7 +738,7 @@ amap_struct_targets *read_file_nmap(char char *portinfo; char *proto; char *ptr; @@ -40,7 +40,7 @@ int count = 0; f = amap_open_file(filename, "nmap", "", opt->verbose); -@@ -1585,7 +1583,7 @@ +@@ -1613,7 +1611,7 @@ int amap_scan(int scanmode, amap_struct_ amap_struct_targets *target = (amap_struct_targets*) targets; amap_struct_ports *port; amap_struct_identifications *ids; @@ -49,7 +49,7 @@ amap_struct_coms coms[AMAP_MAX_TASKS]; amap_struct_scaninfo scaninfo; // struct sockaddr_in target_in; -@@ -1593,7 +1591,7 @@ +@@ -1621,7 +1619,7 @@ int amap_scan(int scanmode, amap_struct_ char *rpc_ptr = NULL; int todo = 0; int ready_for_next; Copied and modified: head/security/amap/files/patch-pcre-3.9_chartables.c (from r422289, head/security/amap/files/patch-pcre-chartables.c) ============================================================================== --- head/security/amap/files/patch-pcre-chartables.c Fri Sep 16 23:55:10 2016 (r422289, copy source) +++ head/security/amap/files/patch-pcre-3.9_chartables.c Sat Sep 17 00:03:59 2016 (r422290) @@ -1,6 +1,6 @@ ---- pcre-3.9/chartables.c.orig Wed Jun 29 17:30:09 2005 -+++ pcre-3.9/chartables.c Wed Jun 29 17:30:16 2005 -@@ -10,7 +10,7 @@ +--- pcre-3.9/chartables.c.orig 2011-04-20 15:10:17 UTC ++++ pcre-3.9/chartables.c +@@ -10,7 +10,7 @@ This file is #included in the compilatio character tables which are used when no tables are passed to the compile function. */ From owner-svn-ports-head@freebsd.org Sat Sep 17 00:13:39 2016 Return-Path: Delivered-To: svn-ports-head@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 EFF40BDC999; Sat, 17 Sep 2016 00:13:39 +0000 (UTC) (envelope-from woodsb02@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 B2FA6F5B; Sat, 17 Sep 2016 00:13:39 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H0DcsF084207; Sat, 17 Sep 2016 00:13:38 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H0DcFr084205; Sat, 17 Sep 2016 00:13:38 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201609170013.u8H0DcFr084205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 17 Sep 2016 00:13:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422291 - in head/security: nmap zenmap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 00:13:40 -0000 Author: woodsb02 Date: Sat Sep 17 00:13:38 2016 New Revision: 422291 URL: https://svnweb.freebsd.org/changeset/ports/422291 Log: security/zenmap: Update to 7.25 BETA2 and use security/nmap as MASTERDIR security/nmap: - Ensure MAINTAINER and COMMENT do not clobber those of slave port - Add .if !defined(MASTERDIR) to prevent inclusion in slave port - Do not include bsd.port.options.mk, as none of the features are used security/zenmap: - Convert to slave of security/nmap to ensure they are updated in lockstep - Inherently update to 7.25 BETA2 (current version of security/nmap) - Take maintainership - Remove redundant port header variables included from MASTERDIR - PKGNAME of zenmap achieved using PKGNAMEPREFIX=ze and PORTNAME=nmap - Inherit LICENSE_FILE, as zenmap/COPYING states it is the same as nmap - Set directory variables so they are not inhereted from MASTERDIR - Convert post-extract to post-patch, as it is modifying WRKSRC files - Fix REINPLACE command, as it was leaving the line with nothing but a single ',' and causing the build to fail - Do not download external zenmap icon, as one is included in distfile Approved by: ohauer (security/nmap maintainer), mat (mentor) Differential Revision: https://reviews.freebsd.org/D7880 Deleted: head/security/zenmap/distinfo Modified: head/security/nmap/Makefile head/security/zenmap/Makefile Modified: head/security/nmap/Makefile ============================================================================== --- head/security/nmap/Makefile Sat Sep 17 00:03:59 2016 (r422290) +++ head/security/nmap/Makefile Sat Sep 17 00:13:38 2016 (r422291) @@ -7,8 +7,8 @@ CATEGORIES= security ipv6 MASTER_SITES= http://nmap.org/dist/ \ LOCAL/ohauer -MAINTAINER= ohauer@FreeBSD.org -COMMENT= Port scanning utility for large networks +MAINTAINER?= ohauer@FreeBSD.org +COMMENT?= Port scanning utility for large networks # nmap-6.47 => svn.nmap.org/nmap-releases/nmap-6.47 (r33605) # http://nmap.org/book/man-legal.html @@ -17,6 +17,8 @@ COMMENT= Port scanning utility for large LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +.if !defined(MASTERDIR) + LIB_DEPENDS= libpcre.so:devel/pcre USES= tar:bzip2 gmake cpe @@ -33,8 +35,6 @@ SSL_CONFIGURE_OFF= --without-openssl SSL_CFLAGS= -I${OPENSSLINC} SSL_VARS= STRIP_FILES=ncat -.include - DOCS= CHANGELOG HACKING STRIP_FILES+= nmap nping @@ -62,4 +62,6 @@ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} +.endif + .include Modified: head/security/zenmap/Makefile ============================================================================== --- head/security/zenmap/Makefile Sat Sep 17 00:03:59 2016 (r422290) +++ head/security/zenmap/Makefile Sat Sep 17 00:13:38 2016 (r422291) @@ -1,27 +1,20 @@ # Created by: Daniel Roethlisberger # $FreeBSD$ -PORTNAME= zenmap -PORTVERSION= 6.47 -PORTREVISION= 1 -CATEGORIES= security ipv6 -MASTER_SITES= http://nmap.org/dist/ \ - SF/nemysisfreebsdp/security/:icons -DISTNAME= nmap-${PORTVERSION} -DISTFILES= nmap-${PORTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}.png:icons -EXTRACT_ONLY= nmap-${PORTVERSION}${EXTRACT_SUFX} +PKGNAMEPREFIX= ze -MAINTAINER= ports@FreeBSD.org +MAINTAINER= woodsb02@FreeBSD.org COMMENT= GUI frontend for the Nmap scanning utility -LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING - RUN_DEPENDS= nmap:security/nmap \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 -WRKSRC_SUBDIR= ${PORTNAME} +MASTERDIR= ${.CURDIR}/../nmap +PATCHDIR= ${.CURDIR}/files +FILESDIR= ${.CURDIR}/files +DATADIR= ${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME} +PKGDIR= ${.CURDIR} +WRKSRC_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} USES= dos2unix python tar:bzip2 DOS2UNIX_GLOB= *.xml @@ -37,11 +30,9 @@ NLS_USES= gettext SUB_FILES= zenmap-root -post-extract: - @${RM} -f ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh - @${CP} -a ${FILESDIR}/pc-su ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh - post-patch: + @${RM} ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh + @${CP} -a ${FILESDIR}/pc-su ${WRKSRC}/install_scripts/unix/su-to-zenmap.sh @${FIND} ${WRKSRC} -name '*.py' -or -name '*.pyw' | ${XARGS} \ ${REINPLACE_CMD} -e 's|^.*#!.*python.*$$|#!${PYTHON_CMD}|' @${REINPLACE_CMD} -e 's|^.*#!.*python.*$$|#!${PYTHON_CMD}|' \ @@ -60,8 +51,8 @@ post-patch: s|self.saved_prefix, pixmaps_dir, ||' \ ${WRKSRC}/setup.py @${REINPLACE_CMD} \ - -e 's|share/man/man1|man/man1|; \ - s|"install": checked_install||' \ + -e 's|share/man/man1|man/man1|' \ + -e '/"install": checked_install/d' \ ${WRKSRC}/../ndiff/setup.py @${FIND} ${WRKSRC} -name "*.bak" -delete @${FIND} ${WRKSRC}/../ndiff -name "*.bak" -delete @@ -71,7 +62,7 @@ post-patch-NLS-off: post-install: ${INSTALL_SCRIPT} ${WRKDIR}/zenmap-root ${STAGEDIR}${PREFIX}/bin/ - @(cd ${STAGEDIR}${DATADIR} && ${CHMOD} 754 su-to-zenmap.sh) + @${CHMOD} 754 ${STAGEDIR}${DATADIR}/su-to-zenmap.sh ${INSTALL_MAN} ${WRKSRC}/../docs/zenmap.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1/ @(cd ${WRKSRC}/../ndiff \ @@ -79,8 +70,6 @@ post-install: @(cd ${STAGEDIR}${PYTHON}${PYTHON_SITELIBDIR} && ${RM} ndiff.pyc) @(cd ${STAGEDIR}${PYTHON}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -m compileall .) @(cd ${STAGEDIR}${PYTHON}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -O -m compileall .) + @(cd ${STAGEDIR}${PREFIX}/share/pixmaps && ${LN} -sf ../zenmap/pixmaps/zenmap.png zenmap.png) - ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ - ${STAGEDIR}${PREFIX}/share/pixmaps/ - -.include +.include "${MASTERDIR}/Makefile" From owner-svn-ports-head@freebsd.org Sat Sep 17 01:23:01 2016 Return-Path: Delivered-To: svn-ports-head@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 7DBF6BDD5F0; Sat, 17 Sep 2016 01:23:01 +0000 (UTC) (envelope-from stephen@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 4D7A38EF; Sat, 17 Sep 2016 01:23:01 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H1N0lE010283; Sat, 17 Sep 2016 01:23:00 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H1N041010281; Sat, 17 Sep 2016 01:23:00 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201609170123.u8H1N041010281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 17 Sep 2016 01:23:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422293 - head/math/octave-forge-cgi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 01:23:01 -0000 Author: stephen Date: Sat Sep 17 01:23:00 2016 New Revision: 422293 URL: https://svnweb.freebsd.org/changeset/ports/422293 Log: - Update to 0.1.2. Modified: head/math/octave-forge-cgi/Makefile head/math/octave-forge-cgi/distinfo Modified: head/math/octave-forge-cgi/Makefile ============================================================================== --- head/math/octave-forge-cgi/Makefile Sat Sep 17 01:06:11 2016 (r422292) +++ head/math/octave-forge-cgi/Makefile Sat Sep 17 01:23:00 2016 (r422293) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-cgi -PORTVERSION= 0.1.1 -PORTREVISION= 1 +PORTVERSION= 0.1.2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-cgi/distinfo ============================================================================== --- head/math/octave-forge-cgi/distinfo Sat Sep 17 01:06:11 2016 (r422292) +++ head/math/octave-forge-cgi/distinfo Sat Sep 17 01:23:00 2016 (r422293) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/cgi-0.1.1.tar.gz) = 23d579ec8be00b5ccd0b930d2a6c4922620529d02ee66954dc7216e26275e310 -SIZE (octave-forge/cgi-0.1.1.tar.gz) = 9789 +TIMESTAMP = 1474075282 +SHA256 (octave-forge/cgi-0.1.2.tar.gz) = 4187eb2abec69c5735527fe3d6a25b2010fccede199fe556e242677ed991cf43 +SIZE (octave-forge/cgi-0.1.2.tar.gz) = 9960 From owner-svn-ports-head@freebsd.org Sat Sep 17 01:53:30 2016 Return-Path: Delivered-To: svn-ports-head@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 D464CBDDDA3; Sat, 17 Sep 2016 01:53:30 +0000 (UTC) (envelope-from swills@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 A55715F8; Sat, 17 Sep 2016 01:53:30 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H1rTHv021565; Sat, 17 Sep 2016 01:53:29 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H1rTcG021564; Sat, 17 Sep 2016 01:53:29 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609170153.u8H1rTcG021564@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 17 Sep 2016 01:53:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422294 - head/audio/ruby-mp3tag X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 01:53:30 -0000 Author: swills Date: Sat Sep 17 01:53:29 2016 New Revision: 422294 URL: https://svnweb.freebsd.org/changeset/ports/422294 Log: audio/ruby-mp3tag: remove unneeded USE_RUBY_RDOC Modified: head/audio/ruby-mp3tag/Makefile Modified: head/audio/ruby-mp3tag/Makefile ============================================================================== --- head/audio/ruby-mp3tag/Makefile Sat Sep 17 01:23:00 2016 (r422293) +++ head/audio/ruby-mp3tag/Makefile Sat Sep 17 01:53:29 2016 (r422294) @@ -20,7 +20,6 @@ OPTIONS_DEFINE= DOCS EXAMPLES NO_ARCH= yes NO_BUILD= yes USE_RUBY= yes -USE_RUBY_RDOC= yes post-patch: @${REINPLACE_CMD} -E \ From owner-svn-ports-head@freebsd.org Sat Sep 17 02:07:36 2016 Return-Path: Delivered-To: svn-ports-head@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 41289BDD327; Sat, 17 Sep 2016 02:07:36 +0000 (UTC) (envelope-from swills@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 11068BF5; Sat, 17 Sep 2016 02:07:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H27ZUN025617; Sat, 17 Sep 2016 02:07:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H27ZQb025616; Sat, 17 Sep 2016 02:07:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609170207.u8H27ZQb025616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 17 Sep 2016 02:07:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422295 - head/textproc/ruby-htree X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 02:07:36 -0000 Author: swills Date: Sat Sep 17 02:07:35 2016 New Revision: 422295 URL: https://svnweb.freebsd.org/changeset/ports/422295 Log: textproc/ruby-htree: convert RUBY_RDOC to expanded form Modified: head/textproc/ruby-htree/Makefile Modified: head/textproc/ruby-htree/Makefile ============================================================================== --- head/textproc/ruby-htree/Makefile Sat Sep 17 01:53:29 2016 (r422294) +++ head/textproc/ruby-htree/Makefile Sat Sep 17 02:07:35 2016 (r422295) @@ -14,7 +14,6 @@ COMMENT= Ruby library to manipulate HTML OPTIONS_DEFINE= DOCS USE_RUBY= yes -USE_RUBY_RDOC= yes LIB_FILES= htree.rb htree @@ -27,7 +26,7 @@ PORTDOCS= * do-build: .if ${PORT_OPTIONS:MDOCS} - cd ${BUILD_WRKSRC}; ${RUBY_RDOC} ${LIB_FILES} + cd ${BUILD_WRKSRC}; ${LOCALBASE}/bin/rdoc${RUBY_VER:S/.//} ${LIB_FILES} .endif do-install: From owner-svn-ports-head@freebsd.org Sat Sep 17 03:25:34 2016 Return-Path: Delivered-To: svn-ports-head@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 BB5CABDDC3F; Sat, 17 Sep 2016 03:25:34 +0000 (UTC) (envelope-from vanilla@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 88F06F1; Sat, 17 Sep 2016 03:25:34 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H3PXJE055912; Sat, 17 Sep 2016 03:25:33 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H3PXEv055911; Sat, 17 Sep 2016 03:25:33 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201609170325.u8H3PXEv055911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Sat, 17 Sep 2016 03:25:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422296 - head/archivers/pecl-snappy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 03:25:34 -0000 Author: vanilla Date: Sat Sep 17 03:25:33 2016 New Revision: 422296 URL: https://svnweb.freebsd.org/changeset/ports/422296 Log: Update WWW. PR: 212732 Submitted by: shun.fbsd.pr@dropcut.net Modified: head/archivers/pecl-snappy/pkg-descr Modified: head/archivers/pecl-snappy/pkg-descr ============================================================================== --- head/archivers/pecl-snappy/pkg-descr Sat Sep 17 02:07:35 2016 (r422295) +++ head/archivers/pecl-snappy/pkg-descr Sat Sep 17 03:25:33 2016 (r422296) @@ -1,4 +1,4 @@ Provides the API to PHP for the snappy compression algorithm by Google. -WWW: http://code.google.com/p/php-snappy/ +WWW: https://github.com/kjdev/php-ext-snappy From owner-svn-ports-head@freebsd.org Sat Sep 17 06:48:42 2016 Return-Path: Delivered-To: svn-ports-head@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 0F3D4BDEA6A; Sat, 17 Sep 2016 06:48:42 +0000 (UTC) (envelope-from tota@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 BC711B7F; Sat, 17 Sep 2016 06:48:41 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H6mf3v030632; Sat, 17 Sep 2016 06:48:41 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H6mexp030630; Sat, 17 Sep 2016 06:48:40 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201609170648.u8H6mexp030630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 17 Sep 2016 06:48:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422297 - head/math/R-cran-forecast X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 06:48:42 -0000 Author: tota Date: Sat Sep 17 06:48:40 2016 New Revision: 422297 URL: https://svnweb.freebsd.org/changeset/ports/422297 Log: - Update to 7.2 Modified: head/math/R-cran-forecast/Makefile (contents, props changed) head/math/R-cran-forecast/distinfo (contents, props changed) Modified: head/math/R-cran-forecast/Makefile ============================================================================== --- head/math/R-cran-forecast/Makefile Sat Sep 17 03:25:33 2016 (r422296) +++ head/math/R-cran-forecast/Makefile Sat Sep 17 06:48:40 2016 (r422297) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= forecast -PORTVERSION= 7.1 +PORTVERSION= 7.2 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -11,7 +11,7 @@ COMMENT= Forecasting functions for time LICENSE= GPLv2+ -RUN_DEPENDS= R-cran-zoo>0:math/R-cran-zoo \ +CRAN_DEPENDS= R-cran-zoo>0:math/R-cran-zoo \ R-cran-timeDate>0:finance/R-cran-timeDate \ R-cran-tseries>0:finance/R-cran-tseries \ R-cran-fracdiff>0:math/R-cran-fracdiff \ @@ -19,7 +19,9 @@ RUN_DEPENDS= R-cran-zoo>0:math/R-cran-zo R-cran-colorspace>0:graphics/R-cran-colorspace \ R-cran-ggplot2>=2.0.0:graphics/R-cran-ggplot2 \ R-cran-RcppArmadillo>=0.2.35:math/R-cran-RcppArmadillo +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-forecast/distinfo ============================================================================== --- head/math/R-cran-forecast/distinfo Sat Sep 17 03:25:33 2016 (r422296) +++ head/math/R-cran-forecast/distinfo Sat Sep 17 06:48:40 2016 (r422297) @@ -1,2 +1,3 @@ -SHA256 (forecast_7.1.tar.gz) = 1c821dc63056552422b3e90c94c1046a40a6c21da70f7b06c222840981c911dc -SIZE (forecast_7.1.tar.gz) = 196896 +TIMESTAMP = 1474087892 +SHA256 (forecast_7.2.tar.gz) = 935c3df7d49059110a2ca497153fc1f2b50096ebd1dac371261ac0ec1e7b8995 +SIZE (forecast_7.2.tar.gz) = 201592 From owner-svn-ports-head@freebsd.org Sat Sep 17 08:10:13 2016 Return-Path: Delivered-To: svn-ports-head@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 5BB09BDE8F1; Sat, 17 Sep 2016 08:10:13 +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 2BBCA9D2; Sat, 17 Sep 2016 08:10:13 +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 u8H8ACr7060629; Sat, 17 Sep 2016 08:10:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H8ACFs060628; Sat, 17 Sep 2016 08:10:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609170810.u8H8ACFs060628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 17 Sep 2016 08:10:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422298 - head/games/katawa-shoujo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 08:10:13 -0000 Author: jbeich Date: Sat Sep 17 08:10:12 2016 New Revision: 422298 URL: https://svnweb.freebsd.org/changeset/ports/422298 Log: games/katawa-shoujo: chase r421995 Modified: head/games/katawa-shoujo/Makefile (contents, props changed) Modified: head/games/katawa-shoujo/Makefile ============================================================================== --- head/games/katawa-shoujo/Makefile Sat Sep 17 06:48:40 2016 (r422297) +++ head/games/katawa-shoujo/Makefile Sat Sep 17 08:10:12 2016 (r422298) @@ -17,10 +17,7 @@ EXTRACT_ONLY= ${DISTFILES:N*\:icon:C/:.* MAINTAINER= jbeich@FreeBSD.org COMMENT= Bishoujo-style visual novel about disabled adolescents -LICENSE= CCbyNCND3 -LICENSE_NAME= Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported -LICENSE_TEXT= See https://creativecommons.org/licenses/by-nc-nd/3.0/ -LICENSE_PERMS= dist-mirror pkg-mirror auto-accept +LICENSE= CC-BY-NC-ND-3.0 RUN_DEPENDS= renpy6<6.99.11:devel/renpy6 From owner-svn-ports-head@freebsd.org Sat Sep 17 08:17:10 2016 Return-Path: Delivered-To: svn-ports-head@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 CDE7CBDEA74; Sat, 17 Sep 2016 08:17:10 +0000 (UTC) (envelope-from ohauer@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 878F4D02; Sat, 17 Sep 2016 08:17:10 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H8H9ER064262; Sat, 17 Sep 2016 08:17:09 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H8H9CX064260; Sat, 17 Sep 2016 08:17:09 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201609170817.u8H8H9CX064260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sat, 17 Sep 2016 08:17:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422299 - head/devel/viewvc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 08:17:10 -0000 Author: ohauer Date: Sat Sep 17 08:17:09 2016 New Revision: 422299 URL: https://svnweb.freebsd.org/changeset/ports/422299 Log: - update to 1.1.25 - change OPTION_DESC to a better description https://lists.freebsd.org/pipermail/freebsd-ports/2016-September/104805.html Changelog: Version 1.1.25 (released 15-Sep-2016) - fix _rev2optrev assertion on long input Modified: head/devel/viewvc/Makefile head/devel/viewvc/distinfo Modified: head/devel/viewvc/Makefile ============================================================================== --- head/devel/viewvc/Makefile Sat Sep 17 08:10:12 2016 (r422298) +++ head/devel/viewvc/Makefile Sat Sep 17 08:17:09 2016 (r422299) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= viewvc -PORTVERSION= 1.1.24 -PORTREVISION= 1 +PORTVERSION= 1.1.25 CATEGORIES= devel python MASTER_SITES= http://www.viewvc.org/ \ LOCAL/ohauer @@ -24,9 +23,9 @@ OPTIONS_SINGLE_APMOD= MODPYTHON33 MODPYT WEBSRV_DESC= Enable web server support APMOD_DESC= depend on optional Apache module -MODWSGI_DESC= Enable mod_wsgi support -MODPYTHON33_DESC= Enable mod_python33 support -MODPYTHON35_DESC= Enable mod_python35 support +MODWSGI_DESC= Add mod_wsgi to the list of package dependencies +MODPYTHON33_DESC= Add mod_python33 to the list of package dependencies +MODPYTHON35_DESC= Add mod_python35 to the list of package dependencies MYSQL_DESC= Bonsai-like repository query facilities APACHE_USE= APACHE_RUN=22+ Modified: head/devel/viewvc/distinfo ============================================================================== --- head/devel/viewvc/distinfo Sat Sep 17 08:10:12 2016 (r422298) +++ head/devel/viewvc/distinfo Sat Sep 17 08:17:09 2016 (r422299) @@ -1,2 +1,3 @@ -SHA256 (viewvc-1.1.24.tar.gz) = 0620f69fa5ba02ac65e000586ba31015a2053a82711bedb30629fd6087003d7e -SIZE (viewvc-1.1.24.tar.gz) = 618193 +TIMESTAMP = 1474019899 +SHA256 (viewvc-1.1.25.tar.gz) = b7de005df2325419ecd788eabede5f40e081f0300f3ce962f13692b93484a37c +SIZE (viewvc-1.1.25.tar.gz) = 616072 From owner-svn-ports-head@freebsd.org Sat Sep 17 08:29:43 2016 Return-Path: Delivered-To: svn-ports-head@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 616A7BDEC13; Sat, 17 Sep 2016 08:29:43 +0000 (UTC) (envelope-from tota@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 1E89014B; Sat, 17 Sep 2016 08:29:43 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H8Tge2068076; Sat, 17 Sep 2016 08:29:42 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H8TgXF068074; Sat, 17 Sep 2016 08:29:42 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201609170829.u8H8TgXF068074@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 17 Sep 2016 08:29:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422300 - head/converters/R-cran-jsonlite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 08:29:43 -0000 Author: tota Date: Sat Sep 17 08:29:41 2016 New Revision: 422300 URL: https://svnweb.freebsd.org/changeset/ports/422300 Log: - Update to 1.1 Modified: head/converters/R-cran-jsonlite/Makefile (contents, props changed) head/converters/R-cran-jsonlite/distinfo (contents, props changed) Modified: head/converters/R-cran-jsonlite/Makefile ============================================================================== --- head/converters/R-cran-jsonlite/Makefile Sat Sep 17 08:17:09 2016 (r422299) +++ head/converters/R-cran-jsonlite/Makefile Sat Sep 17 08:29:41 2016 (r422300) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jsonlite -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= converters DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/converters/R-cran-jsonlite/distinfo ============================================================================== --- head/converters/R-cran-jsonlite/distinfo Sat Sep 17 08:17:09 2016 (r422299) +++ head/converters/R-cran-jsonlite/distinfo Sat Sep 17 08:29:41 2016 (r422300) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468874642 -SHA256 (jsonlite_1.0.tar.gz) = d756dd6367e3fc515c855bb0b34a3a81955f8aeb494db029a893f3cdfcff962d -SIZE (jsonlite_1.0.tar.gz) = 1057732 +TIMESTAMP = 1474098223 +SHA256 (jsonlite_1.1.tar.gz) = 239b17487ad9a7a0a9bf27f78d049f539fe637278344d56bc330f75e01fc2e57 +SIZE (jsonlite_1.1.tar.gz) = 1091561 From owner-svn-ports-head@freebsd.org Sat Sep 17 09:01:39 2016 Return-Path: Delivered-To: svn-ports-head@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 EFAF7BDD4C0; Sat, 17 Sep 2016 09:01:38 +0000 (UTC) (envelope-from amdmi3@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 B948FF3C; Sat, 17 Sep 2016 09:01:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H91bOk081987; Sat, 17 Sep 2016 09:01:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H91bKb081986; Sat, 17 Sep 2016 09:01:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609170901.u8H91bKb081986@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 17 Sep 2016 09:01:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422301 - head/devel/libdisasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 09:01:39 -0000 Author: amdmi3 Date: Sat Sep 17 09:01:37 2016 New Revision: 422301 URL: https://svnweb.freebsd.org/changeset/ports/422301 Log: - Pet portlint - Add LICENSE - Switch to options helpers Modified: head/devel/libdisasm/Makefile Modified: head/devel/libdisasm/Makefile ============================================================================== --- head/devel/libdisasm/Makefile Sat Sep 17 08:29:41 2016 (r422300) +++ head/devel/libdisasm/Makefile Sat Sep 17 09:01:37 2016 (r422301) @@ -3,26 +3,31 @@ PORTNAME= libdisasm PORTVERSION= 0.23 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= SF/bastard/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= The Bastard Disassembly Environment x86 disassembler library and CLI +COMMENT= Bastard Disassembly Environment x86 disassembler library and CLI -OPTIONS_DEFINE= DOCS +LICENSE= ART10 +LICENSE_FILE= ${WRKSRC}/LICENSE + +ONLY_FOR_ARCHS= i386 amd64 USES= gmake libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes -ONLY_FOR_ARCHS= i386 amd64 PORTDOCS= libdisasm.txt +OPTIONS_DEFINE= DOCS + post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdisasm.so + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${STAGEDIR}${DOCSDIR} -.endfor + ${INSTALL_DATA} ${WRKSRC}/doc/libdisasm.txt ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@freebsd.org Sat Sep 17 09:20:18 2016 Return-Path: Delivered-To: svn-ports-head@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 C8F02BDD874; Sat, 17 Sep 2016 09:20:18 +0000 (UTC) (envelope-from tcberner@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 8EB067F7; Sat, 17 Sep 2016 09:20:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H9KHHo086865; Sat, 17 Sep 2016 09:20:17 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H9KHNr086861; Sat, 17 Sep 2016 09:20:17 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609170920.u8H9KHNr086861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 17 Sep 2016 09:20:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422302 - in head/devel/automoc4: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 09:20:18 -0000 Author: tcberner Date: Sat Sep 17 09:20:17 2016 New Revision: 422302 URL: https://svnweb.freebsd.org/changeset/ports/422302 Log: devel/automoc4: Add upstream patches to silence warnings when using automoc4 PR: 212565 Submitted by: Adriaan de Groot Approved by: rakuco (mentor) Obtained from: area51 Modified: head/devel/automoc4/Makefile head/devel/automoc4/files/patch-Automoc4Config.cmake head/devel/automoc4/files/patch-CMakeLists.txt Modified: head/devel/automoc4/Makefile ============================================================================== --- head/devel/automoc4/Makefile Sat Sep 17 09:01:37 2016 (r422301) +++ head/devel/automoc4/Makefile Sat Sep 17 09:20:17 2016 (r422302) @@ -3,7 +3,7 @@ PORTNAME= automoc4 PORTVERSION= 0.9.88 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/ DIST_SUBDIR= KDE Modified: head/devel/automoc4/files/patch-Automoc4Config.cmake ============================================================================== --- head/devel/automoc4/files/patch-Automoc4Config.cmake Sat Sep 17 09:01:37 2016 (r422301) +++ head/devel/automoc4/files/patch-Automoc4Config.cmake Sat Sep 17 09:20:17 2016 (r422302) @@ -1,12 +1,49 @@ ---- ./Automoc4Config.cmake.orig 2012-05-28 10:08:18.449122610 +0200 -+++ ./Automoc4Config.cmake 2012-05-28 10:09:14.719218317 +0200 +This patch is contains the following upstream commits to silence some warnings: + * 48f6e64d98e4aaa47f2a49faa5f3e821bc21fd6e + Don't attempt to add dependencies which do not exist. + * b0184fe96b1a07b57cb489eb87710dc33f070dc1 + Don't attempt to read the DEFINITIONS property. + +As well as the FreeBSD specific fix from + * r297583 + Fix automoc4 detection when its .cmake file is referenced through + a symlink. + + +--- Automoc4Config.cmake.orig 2009-01-22 18:50:09 UTC ++++ Automoc4Config.cmake @@ -49,7 +49,8 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - + + -get_filename_component(_AUTOMOC4_CURRENT_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_AUTOMOC4_CURRENT_DIR "${CMAKE_CURRENT_LIST_FILE}" REALPATH) +get_filename_component(_AUTOMOC4_CURRENT_DIR "${_AUTOMOC4_CURRENT_DIR}" PATH) - + # set the automoc version number include(${_AUTOMOC4_CURRENT_DIR}/Automoc4Version.cmake) +@@ -114,7 +115,6 @@ macro(AUTOMOC4 _target_NAME _SRCS) + if(_moc_files) + set(_automoc_source "${CMAKE_CURRENT_BINARY_DIR}/${_target_NAME}_automoc.cpp") + get_directory_property(_moc_incs INCLUDE_DIRECTORIES) +- get_directory_property(_moc_defs DEFINITIONS) + get_directory_property(_moc_cdefs COMPILE_DEFINITIONS) + + # configure_file replaces _moc_files, _moc_incs, _moc_cdefs and _moc_defs +@@ -176,7 +176,6 @@ macro(_ADD_AUTOMOC4_TARGET _target_NAME + set(_automoc_source "${CMAKE_CURRENT_BINARY_DIR}/${_target_NAME}.cpp") + set(_automoc_dotFiles "${CMAKE_CURRENT_BINARY_DIR}/${_target_NAME}.cpp.files") + get_directory_property(_moc_incs INCLUDE_DIRECTORIES) +- get_directory_property(_moc_defs DEFINITIONS) + get_directory_property(_moc_cdefs COMPILE_DEFINITIONS) + + # configure_file replaces _moc_files, _moc_incs, _moc_cdefs and _moc_defs +@@ -245,5 +244,7 @@ endmacro(_AUTOMOC4_KDE4_PRE_TARGET_HANDL + + + macro(_AUTOMOC4_KDE4_POST_TARGET_HANDLING _target) +- add_dependencies(${_target} "${_target}_automoc") ++ if (TARGET "${_target}_automoc") ++ add_dependencies(${_target} "${_target}_automoc") ++ endif() + endmacro(_AUTOMOC4_KDE4_POST_TARGET_HANDLING) Modified: head/devel/automoc4/files/patch-CMakeLists.txt ============================================================================== --- head/devel/automoc4/files/patch-CMakeLists.txt Sat Sep 17 09:01:37 2016 (r422301) +++ head/devel/automoc4/files/patch-CMakeLists.txt Sat Sep 17 09:20:17 2016 (r422302) @@ -1,13 +1,31 @@ ---- CMakeLists.txt.orig Sun Dec 25 15:35:23 2011 -+++ CMakeLists.txt Sun Dec 25 15:35:40 2011 -@@ -21,7 +21,9 @@ +This patch is contains the following upstream commits: + * b094e11e24e5fb7672d73613cceb4af4cd8158bc + set cmake_min_req to enable newer policies + +As well as the FreeBSD specific fix from + * r288120 + Work around the "automoc hangs forever while building kde" problem. + + +--- CMakeLists.txt.orig 2009-01-22 18:50:09 UTC ++++ CMakeLists.txt +@@ -1,7 +1,6 @@ ++cmake_minimum_required(VERSION 2.8.9) + project(Automoc4) + +-cmake_minimum_required(VERSION 2.4.5 FATAL_ERROR) +- + find_package(Qt4 REQUIRED) + + if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_C_COMPILER MATCHES "icc") +@@ -21,7 +20,9 @@ add_executable(automoc4 kde4automoc.cpp) set_target_properties(automoc4 PROPERTIES SKIP_BUILD_RPATH FALSE INSTALL_RPATH_USE_LINK_PATH TRUE ) - + -target_link_libraries(automoc4 ${QT_QTCORE_LIBRARY}) +find_package(Threads) +target_link_libraries(automoc4 ${QT_QTCORE_LIBRARY} ${CMAKE_THREAD_LIBS_INIT}) + - + install(TARGETS automoc4 DESTINATION bin) install(FILES Automoc4Config.cmake Automoc4Version.cmake automoc4.files.in DESTINATION lib${LIB_SUFFIX}/automoc4) From owner-svn-ports-head@freebsd.org Sat Sep 17 09:21:44 2016 Return-Path: Delivered-To: svn-ports-head@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 39C9DBDD8D1; Sat, 17 Sep 2016 09:21:44 +0000 (UTC) (envelope-from tcberner@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 17A67AAF; Sat, 17 Sep 2016 09:21:44 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H9LhNn089753; Sat, 17 Sep 2016 09:21:43 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H9Lh1H089749; Sat, 17 Sep 2016 09:21:43 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609170921.u8H9Lh1H089749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 17 Sep 2016 09:21:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422303 - in head/archivers/quazip-qt5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 09:21:44 -0000 Author: tcberner Date: Sat Sep 17 09:21:42 2016 New Revision: 422303 URL: https://svnweb.freebsd.org/changeset/ports/422303 Log: Update archivers/quazip and archivers/quazip-qt5 to 0.7.2 * archivers/quazip Regenerate the qztest.pro patch for archivers/quazip * archivers/quazip-qt5 Drop the coinstallability patch as it is now part of the release Add upstreamed patch by rakuco@ to fix linking Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7726 Added: head/archivers/quazip-qt5/files/patch-quazip_CMakeLists.txt (contents, props changed) Deleted: head/archivers/quazip-qt5/files/patch-coinstallable_with_qt4_version Modified: head/archivers/quazip-qt5/Makefile head/archivers/quazip-qt5/distinfo head/archivers/quazip-qt5/pkg-plist Modified: head/archivers/quazip-qt5/Makefile ============================================================================== --- head/archivers/quazip-qt5/Makefile Sat Sep 17 09:20:17 2016 (r422302) +++ head/archivers/quazip-qt5/Makefile Sat Sep 17 09:21:42 2016 (r422303) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= quazip -PORTVERSION= 0.7.1 +PORTVERSION= 0.7.2 CATEGORIES= archivers MASTER_SITES= SF PKGNAMESUFFIX= -qt5 @@ -12,7 +12,7 @@ COMMENT= Qt/C++ wrapper for ZIP/UNZIP pa LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake +USES= cmake:outsource USE_LDCONFIG= yes USE_QT5= core buildtools_build qmake_build Modified: head/archivers/quazip-qt5/distinfo ============================================================================== --- head/archivers/quazip-qt5/distinfo Sat Sep 17 09:20:17 2016 (r422302) +++ head/archivers/quazip-qt5/distinfo Sat Sep 17 09:21:42 2016 (r422303) @@ -1,2 +1,3 @@ -SHA256 (quazip-0.7.1.tar.gz) = 78c984103555c51e6f7ef52e3a2128e2beb9896871b2cc4d4dbd4d64bff132de -SIZE (quazip-0.7.1.tar.gz) = 390629 +TIMESTAMP = 1472674423 +SHA256 (quazip-0.7.2.tar.gz) = 91d827fbcafd099ae814cc18a8dd3bb709da6b8a27c918ee1c6c03b3f29440f4 +SIZE (quazip-0.7.2.tar.gz) = 466915 Added: head/archivers/quazip-qt5/files/patch-quazip_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/quazip-qt5/files/patch-quazip_CMakeLists.txt Sat Sep 17 09:21:42 2016 (r422303) @@ -0,0 +1,27 @@ +Properly link quazip_static against its dependencies + +From the looks of r256, it appears that the target_link_libraries() call in +quazip/CMakeLists.txt was modified with the intention of linking both +${QUAZIP_LIB_TARGET_NAME} and quazip_static against all required libraries. +However, target_link_libraries()'s syntax is such that the first argument is +the library that all other arguments will be linked against. In other words, +libquazip(5).so will link against quazip_static, which is not what is desired. + +Creator: Raphael Kubo da Costa + +https://sourceforge.net/p/quazip/patches/28/ + +Index: quazip/CMakeLists.txt +=================================================================== +--- quazip/CMakeLists.txt.orig 2016-01-03 06:01:40 UTC ++++ quazip/CMakeLists.txt +@@ -25,7 +25,8 @@ endif () + + set_target_properties(${QUAZIP_LIB_TARGET_NAME} quazip_static PROPERTIES VERSION 1.0.0 SOVERSION 1 DEBUG_POSTFIX d) + # Link against ZLIB_LIBRARIES if needed (on Windows this variable is empty) +-target_link_libraries(${QUAZIP_LIB_TARGET_NAME} quazip_static ${QT_QTMAIN_LIBRARY} ${QTCORE_LIBRARIES} ${ZLIB_LIBRARIES}) ++target_link_libraries(quazip_static ${QT_QTMAIN_LIBRARY} ${QTCORE_LIBRARIES} ${ZLIB_LIBRARIES}) ++target_link_libraries(${QUAZIP_LIB_TARGET_NAME} ${QT_QTMAIN_LIBRARY} ${QTCORE_LIBRARIES} ${ZLIB_LIBRARIES}) + + install(FILES ${PUBLIC_HEADERS} DESTINATION include/quazip${QUAZIP_LIB_VERSION_SUFFIX}) + install(TARGETS ${QUAZIP_LIB_TARGET_NAME} quazip_static LIBRARY DESTINATION ${LIB_DESTINATION} ARCHIVE DESTINATION ${LIB_DESTINATION} RUNTIME DESTINATION ${LIB_DESTINATION}) Modified: head/archivers/quazip-qt5/pkg-plist ============================================================================== --- head/archivers/quazip-qt5/pkg-plist Sat Sep 17 09:20:17 2016 (r422302) +++ head/archivers/quazip-qt5/pkg-plist Sat Sep 17 09:21:42 2016 (r422303) @@ -14,6 +14,7 @@ include/quazip5/quazipfileinfo.h include/quazip5/quazipnewinfo.h include/quazip5/unzip.h include/quazip5/zip.h +lib/libquazip5.a lib/libquazip5.so lib/libquazip5.so.1 lib/libquazip5.so.1.0.0 From owner-svn-ports-head@freebsd.org Sat Sep 17 09:31:16 2016 Return-Path: Delivered-To: svn-ports-head@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 86CC5BDDB37; Sat, 17 Sep 2016 09:31:16 +0000 (UTC) (envelope-from tcberner@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 3D9FDE47; Sat, 17 Sep 2016 09:31:16 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8H9VF7n091804; Sat, 17 Sep 2016 09:31:15 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H9VFZC091800; Sat, 17 Sep 2016 09:31:15 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201609170931.u8H9VFZC091800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 17 Sep 2016 09:31:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422304 - in head/archivers/quazip: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 09:31:16 -0000 Author: tcberner Date: Sat Sep 17 09:31:15 2016 New Revision: 422304 URL: https://svnweb.freebsd.org/changeset/ports/422304 Log: Update archivers/quazip and archivers/quazip-qt5 to 0.7.2 [The previous commit r22303 skipped archives/quazip] * archivers/quazip Regenerate the qztest.pro patch for archivers/quazip * archivers/quazip-qt5 Drop the coinstallability patch as it is now part of the release Add upstreamed patch by rakuco@ to fix linking Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D7726 Modified: head/archivers/quazip/Makefile head/archivers/quazip/distinfo head/archivers/quazip/files/patch-qztest_qztest.pro Modified: head/archivers/quazip/Makefile ============================================================================== --- head/archivers/quazip/Makefile Sat Sep 17 09:21:42 2016 (r422303) +++ head/archivers/quazip/Makefile Sat Sep 17 09:31:15 2016 (r422304) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= quazip -PORTVERSION= 0.7.1 +PORTVERSION= 0.7.2 CATEGORIES= archivers MASTER_SITES= SF Modified: head/archivers/quazip/distinfo ============================================================================== --- head/archivers/quazip/distinfo Sat Sep 17 09:21:42 2016 (r422303) +++ head/archivers/quazip/distinfo Sat Sep 17 09:31:15 2016 (r422304) @@ -1,2 +1,3 @@ -SHA256 (quazip-0.7.1.tar.gz) = 78c984103555c51e6f7ef52e3a2128e2beb9896871b2cc4d4dbd4d64bff132de -SIZE (quazip-0.7.1.tar.gz) = 390629 +TIMESTAMP = 1472674368 +SHA256 (quazip-0.7.2.tar.gz) = 91d827fbcafd099ae814cc18a8dd3bb709da6b8a27c918ee1c6c03b3f29440f4 +SIZE (quazip-0.7.2.tar.gz) = 466915 Modified: head/archivers/quazip/files/patch-qztest_qztest.pro ============================================================================== --- head/archivers/quazip/files/patch-qztest_qztest.pro Sat Sep 17 09:21:42 2016 (r422303) +++ head/archivers/quazip/files/patch-qztest_qztest.pro Sat Sep 17 09:31:15 2016 (r422304) @@ -1,9 +1,9 @@ ---- qztest/qztest.pro.orig 2014-02-10 18:04:08 UTC +--- qztest/qztest.pro.orig 2016-03-01 15:20:57 UTC +++ qztest/qztest.pro -@@ -40,7 +40,10 @@ MOC_DIR = .moc - +@@ -43,7 +43,10 @@ MOC_DIR = .moc win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../quazip/release/ -lquazip - else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../quazip/debug/ -lquazip + else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../quazip/debug/ -lquazipd + else:mac:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../quazip/debug/ -lquazip_debug -else:unix: LIBS += -L$$OUT_PWD/../quazip/ -lquazip +else:unix: LIBS += -L$$OUT_PWD/../quazip/ -lquazip $$join(QMAKE_LIBDIR, " -L", -L) -L$$QMAKE_LIBDIR_QT + From owner-svn-ports-head@freebsd.org Sat Sep 17 09:40:41 2016 Return-Path: Delivered-To: svn-ports-head@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 6DF64BDDDA7; Sat, 17 Sep 2016 09:40:41 +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 3D7D619D; Sat, 17 Sep 2016 09:40:41 +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 u8H9eek4094847; Sat, 17 Sep 2016 09:40:40 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H9ee8H094846; Sat, 17 Sep 2016 09:40:40 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201609170940.u8H9ee8H094846@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, 17 Sep 2016 09:40:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422305 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 09:40:41 -0000 Author: rakuco Date: Sat Sep 17 09:40:40 2016 New Revision: 422305 URL: https://svnweb.freebsd.org/changeset/ports/422305 Log: Fix typo in the entry from 20160914. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sat Sep 17 09:31:15 2016 (r422304) +++ head/UPDATING Sat Sep 17 09:40:40 2016 (r422305) @@ -6,7 +6,7 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20160914: - AFFECTS: uses of www/nginx-devel + AFFECTS: users of www/nginx-devel AUTHOR: osa@FreeBSD.org Nginx now creates logs under /var/log/nginx/ and changes default log From owner-svn-ports-head@freebsd.org Sat Sep 17 09:46:57 2016 Return-Path: Delivered-To: svn-ports-head@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 C39DFBDC125; Sat, 17 Sep 2016 09:46:57 +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 6A094882; Sat, 17 Sep 2016 09:46: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 u8H9kug2001584; Sat, 17 Sep 2016 09:46:56 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8H9ksdI001560; Sat, 17 Sep 2016 09:46:54 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201609170946.u8H9ksdI001560@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, 17 Sep 2016 09:46:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422306 - in head: Mk comms comms/qt5-connectivity comms/qt5-serialbus devel devel/qbs devel/qmake5 devel/qmake5/files devel/qt5 devel/qt5-assistant/files devel/qt5-buildtools devel/qt5... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 09:46:57 -0000 Author: rakuco Date: Sat Sep 17 09:46:54 2016 New Revision: 422306 URL: https://svnweb.freebsd.org/changeset/ports/422306 Log: Update the Qt5 ports to 5.6.1. This took longer than expected, but there are quite a few changes to the existing ports and a few new ones. General upstream changes: - Starting with Qt 5.6.2, Qt will fail at configuration time if LibreSSL is being used. According to the discussion here: https://codereview.qt-project.org/#/c/154800/ The Qt project is not opposed to LibreSSL, but does not want to mix support for it into the OpenSSL backend code, especially as they move towards supporting OpenSSL 1.1. People interested in LibreSSL support are welcome to submit a separate backend upstream, but are expected to maintain it. We (kde@) are not opposed to carrying some patches authored by others in the future, as long as they are not huge and destabilizing. - When Qt detects the compiler supports C++11, it will pass -std=gnu++11 by default (this is an upstream change). You can add "CONFIG -= c++11" to your .pro. Qt 5.7 will require C++11. - www/webkit-qt5: The QtWebKit module is deprecated upstream, and is shipped separately as a community release tarball. kde@ does not have an ETA for a qt5-webengine port, as it requires a huge effort (and number of patches) similar to maintaining www/chromium itself. - x11-toolkits/qt5-declarative has been deprecated upstream. The last release is 5.5.1. Relevant changes: - devel/qmake5: The freebsd-clang mkspec has become the default mkspec on FreeBSD, replacing the outdated freebsd-g++ one that was moved to unsupported/ (it still works though). - devel/qt5-qdoc: qdoc was moved to qttools upstream, but its data files are still in qtbase. The data files are now in the qt5-qdoc-data port. - misc/qt5-doc: Clean up and stop requiring a compiler and fumbling with mkspecs. Instead of running the `configure' script, which requires a compiler and adjustments to the mkspecs files and also ends up building a new qmake binary, we now leverage USES=qmake to generate all the Makefiles from the top-level qt.pro. Getting this to work requires some tricks, though, and qt.conf.in has a longer explanation of what's being done. Switch to USES=gmake to be able to drop MAKE_JOBS_UNSAFE=yes. New ports: - comms/qt5-serialbus - devel/qt5-qdoc-data - x11-toolkits/qt5-quickcontrols2 Big thanks to Adriaan de Groot (groot@kde.org), tcberner@ and Loise Nolden (nolden@kde.org) for the huge amount of work they put into this patch. Loise in particular also sent quite a few changes upstream that were essential for this update to work. PR: 211916 Added: head/comms/qt5-serialbus/ head/comms/qt5-serialbus/Makefile (contents, props changed) head/comms/qt5-serialbus/pkg-plist (contents, props changed) head/devel/qmake5/files/patch-mkspecs_freebsd-clang_qmake.conf - copied, changed from r422305, head/devel/qmake5/files/patch-mkspecs__freebsd-g++__qmake.conf head/devel/qmake5/files/patch-mkspecs_unsupported_freebsd-g++_qmake.conf - copied, changed from r422305, head/devel/qmake5/files/patch-mkspecs__unsupported__freebsd-clang__qmake.conf head/devel/qt5-core/files/patch-git_680ec54a (contents, props changed) head/devel/qt5-core/files/patch-git_bfa53e1c6 (contents, props changed) head/devel/qt5-core/files/patch-git_c9998b8a (contents, props changed) head/devel/qt5-qdbus/files/ head/devel/qt5-qdbus/files/patch-src_src.pro (contents, props changed) head/devel/qt5-qdoc-data/ head/devel/qt5-qdoc-data/Makefile (contents, props changed) head/devel/qt5-qdoc-data/pkg-plist - copied, changed from r422305, head/devel/qt5-qdoc/pkg-plist head/devel/qt5-qdoc/files/ head/devel/qt5-qdoc/files/patch-src_src.pro (contents, props changed) head/devel/qt5/files/extrapatch-config.tests_unix_libdl_libdl.pro (contents, props changed) head/lang/qt5-qml/files/patch-git_9b1231ca (contents, props changed) head/misc/qt5-doc/files/ head/misc/qt5-doc/files/patch-qtserialbus_qtserialbus.pro (contents, props changed) head/misc/qt5-doc/files/qt.conf.in (contents, props changed) head/multimedia/qt5-multimedia/files/patch-git_1df147d5 (contents, props changed) head/net/qt5-network/files/patch-src_network_socket_qnativesocketengine__unix.cpp (contents, props changed) head/www/webkit-qt5/distinfo (contents, props changed) head/x11-toolkits/qt5-declarative/distinfo (contents, props changed) head/x11-toolkits/qt5-quickcontrols2/ head/x11-toolkits/qt5-quickcontrols2/Makefile (contents, props changed) head/x11-toolkits/qt5-quickcontrols2/pkg-descr (contents, props changed) head/x11-toolkits/qt5-quickcontrols2/pkg-plist (contents, props changed) Deleted: head/devel/qmake5/files/patch-mkspecs__freebsd-g++__qmake.conf head/devel/qmake5/files/patch-mkspecs__unsupported__freebsd-clang__qmake.conf head/devel/qt5-core/files/patch-git_08be8691 head/devel/qt5-core/files/patch-git_090bf50 head/devel/qt5-core/files/patch-git_6552469 head/devel/qt5-core/files/patch-git_c8c4ad0 head/devel/qt5-location/files/ head/devel/qt5-qdoc/pkg-plist head/graphics/qt5-3d/files/ head/graphics/qt5-pixeltool/files/patch-git_a685d8a head/misc/qt5-examples/distinfo head/multimedia/qt5-multimedia/files/patch-git_3b322323 head/multimedia/qt5-multimedia/files/patch-git_9047d9b head/x11-toolkits/qt5-widgets/files/ Modified: head/Mk/bsd.qt.mk head/comms/Makefile head/comms/qt5-connectivity/pkg-plist head/devel/Makefile head/devel/qbs/Makefile head/devel/qbs/pkg-plist head/devel/qmake5/Makefile head/devel/qmake5/files/patch-configure head/devel/qmake5/files/patch-mkspecs__common__freebsd.conf head/devel/qmake5/pkg-plist head/devel/qt5-assistant/files/patch-src__src.pro head/devel/qt5-buildtools/pkg-plist head/devel/qt5-core/Makefile head/devel/qt5-core/pkg-plist head/devel/qt5-designer/files/patch-src__src.pro head/devel/qt5-designer/pkg-plist head/devel/qt5-help/Makefile head/devel/qt5-help/files/patch-src__src.pro head/devel/qt5-linguist/files/patch-src__src.pro head/devel/qt5-linguisttools/files/patch-src__src.pro head/devel/qt5-location/pkg-plist head/devel/qt5-qdbusviewer/files/patch-src__src.pro head/devel/qt5-qdoc/Makefile head/devel/qt5-testlib/pkg-plist head/devel/qt5-uitools/files/patch-src__src.pro head/devel/qt5/Makefile head/devel/qt5/distinfo head/devel/qt5/files/extrapatch-config.tests-unix-compile.test head/devel/qt5/files/extrapatch-libtool head/graphics/qt5-3d/Makefile head/graphics/qt5-3d/pkg-plist head/graphics/qt5-graphicaleffects/Makefile head/graphics/qt5-graphicaleffects/pkg-plist head/graphics/qt5-imageformats/Makefile head/graphics/qt5-pixeltool/files/patch-src__src.pro head/lang/qt5-qml/Makefile head/lang/qt5-qml/pkg-plist head/misc/qt5-doc/Makefile head/misc/qt5-doc/distinfo head/misc/qt5-doc/pkg-plist head/misc/qt5-examples/Makefile head/misc/qt5-examples/pkg-plist head/misc/qt5-l10n/pkg-plist head/multimedia/qt5-multimedia/Makefile head/multimedia/qt5-multimedia/pkg-plist head/net/qt5-network/pkg-plist head/print/qt5-printsupport/Makefile head/textproc/clucene-qt5/files/patch-src__src.pro head/textproc/clucene-qt5/pkg-plist head/www/webkit-qt5/Makefile head/x11-toolkits/Makefile head/x11-toolkits/qt5-canvas3d/Makefile head/x11-toolkits/qt5-canvas3d/pkg-plist head/x11-toolkits/qt5-declarative/Makefile head/x11-toolkits/qt5-gui/Makefile head/x11-toolkits/qt5-gui/pkg-plist head/x11-toolkits/qt5-quick/Makefile head/x11-toolkits/qt5-quick/pkg-plist head/x11-toolkits/qt5-quickcontrols/pkg-plist head/x11-toolkits/qt5-uiplugin/files/patch-src__src.pro head/x11-toolkits/qt5-uiplugin/pkg-plist head/x11-toolkits/qt5-widgets/Makefile head/x11-toolkits/qt5-widgets/pkg-plist Modified: head/Mk/bsd.qt.mk ============================================================================== --- head/Mk/bsd.qt.mk Sat Sep 17 09:40:40 2016 (r422305) +++ head/Mk/bsd.qt.mk Sat Sep 17 09:46:54 2016 (r422306) @@ -27,7 +27,7 @@ Qt_Pre_Include= bsd.qt.mk # Qt versions currently supported by the framework. _QT_SUPPORTED?= 4 5 QT4_VERSION?= 4.8.7 -QT5_VERSION?= 5.5.1 +QT5_VERSION?= 5.6.1 QT_PREFIX?= ${LOCALBASE} @@ -60,7 +60,7 @@ MASTER_SITES= ${MASTER_SITE_QT} # Useless, as it must be defined before including bsd.port.pre.mk (at least # because of bsd.options.mk). #PKGNAMEPREFIX?= ${_QT_RELNAME}- -DISTINFO_FILE= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/distinfo +DISTINFO_FILE?= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/distinfo # Can go after a while. CONFLICTS_BUILD=qt-3.* qt-copy-3.* @@ -75,19 +75,15 @@ DESCR?= ${.CURDIR:H:H}/devel/${_QT_REL DESTDIRNAME= INSTALL_ROOT . if ${_QT_VERSION:M4*} -MASTER_SITE_SUBDIR= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/ +MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/ DISTNAME= qt-everywhere-opensource-src-${_QT_VERSION} DIST_SUBDIR= KDE . else -. if ${_QT_VERSION:M*-*} -# Pre-releases. -MASTER_SITE_SUBDIR= development_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ -. else -MASTER_SITE_SUBDIR= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ -. endif -DISTNAME= ${QT_DIST:S,^,qt,:S,$,-opensource-src-${_QT_VERSION},} +MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ +DISTNAME= ${QT_DIST:S,^,qt,:S,$,-opensource-src-${DISTVERSION},} DISTFILES= ${DISTNAME:S,$,${EXTRACT_SUFX},} DIST_SUBDIR= KDE/Qt/${_QT_VERSION} + USES+= tar:xz # Qt (at least when used with qmake) has a tendency to overlink: some libraries @@ -103,9 +99,11 @@ LDFLAGS+= -Wl,--as-needed defined(DISABLE_SIZE) && defined(NO_CHECKSUM) # Ensure that the "makesum" target (with its inner "fetch" one) uses # devel/qt*/distinfo for every port. -QT_DIST= 3d base canvas3d connectivity declarative doc graphicaleffects imageformats \ - location multimedia quick1 quickcontrols script sensors serialport svg tools \ - translations webchannel webkit webkit-examples websockets x11extras xmlpatterns +. if ${DISTINFO_FILE:H} == ${.CURDIR:H:H}/devel/${_QT_RELNAME} +QT_DIST= 3d base canvas3d connectivity declarative graphicaleffects imageformats \ + location multimedia quickcontrols quickcontrols2 script sensors serialbus serialport svg tools \ + translations webchannel websockets x11extras xmlpatterns +. endif . endif . if ${QT_DIST} == "base" && ${PORTNAME} != "qmake" @@ -183,7 +181,8 @@ CONFIGURE_ARGS+=-verbose . if ${_QT_VERSION:M4*} _EXTRA_PATCHES_QT4= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src-corelib-global-qglobal.h . else -_EXTRA_PATCHES_QT5= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src_corelib_global_qcompilerdetection.h +_EXTRA_PATCHES_QT5= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src_corelib_global_qcompilerdetection.h \ + ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-config.tests_unix_libdl_libdl.pro . endif EXTRA_PATCHES?= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-config.tests-unix-compile.test \ @@ -215,8 +214,8 @@ QMAKE_ARGS+= QT_CONFIG+="${QT_CONFIG:N-* QMAKE_ARGS+= QT_CONFIG-="${QT_CONFIG:M-*:O:u:C/^-//}" . endif -PLIST_SUB+= SHORTVER=${_QT_VERSION:R} \ - FULLVER=${_QT_VERSION:C/-.*//} +PLIST_SUB+= SHORTVER=${DISTVERSION:R} \ + FULLVER=${DISTVERSION:C/-.*//} .endif # defined(QT_DIST) .if ${_QT_VERSION:M4*} @@ -313,9 +312,9 @@ _USE_QT4_ONLY= accessible assistant-adp _USE_QT5_ONLY= 3d buildtools canvas3d concurrent connectivity core \ examples graphicaleffects location paths phonon4 \ - printsupport qdbus qdoc qev qml quick quickcontrols \ - sensors serialport sql-tds uiplugin uitools webchannel \ - websockets widgets x11extras + printsupport qdbus qdoc qdoc-data qev qml quick quickcontrols \ + quickcontrols2 sensors serialbus serialport sql-tds \ + uiplugin uitools webchannel websockets widgets x11extras 3d_PORT= graphics/${_QT_RELNAME}-3d 3d_PATH= ${QT_LIBDIR}/libQt${_QT_LIBVER}3DCore.so @@ -464,6 +463,9 @@ qdbusviewer_PATH= ${QT_BINDIR}/qdbusview qdoc_PORT= devel/${_QT_RELNAME}-qdoc qdoc_PATH= ${QT_BINDIR}/qdoc +qdoc-data_PORT= devel/${_QT_RELNAME}-qdoc-data +qdoc-data_PATH= ${QT_DOCDIR}/global/config.qdocconf + qdoc3_PORT= devel/${_QT_RELNAME}-qdoc3 qdoc3_PATH= ${QT_BINDIR}/qdoc3 @@ -494,6 +496,9 @@ quick_PATH= ${QT_LIBDIR}/libQt${_QT_LI quickcontrols_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols quickcontrols_PATH= ${QT_QMLDIR}/QtQuick/Controls/qmldir +quickcontrols2_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols2 +quickcontrols2_PATH= ${QT_QMLDIR}/Qt/labs/controls/qmldir + qvfb_PORT= devel/${_QT_RELNAME}-qvfb qvfb_PATH= ${QT_BINDIR}/qvfb${_QT_BINSUFX} @@ -509,6 +514,9 @@ script_PATH= ${QT_LIBDIR}/libQt${_QT_LI scripttools_PORT= devel/${_QT_RELNAME}-scripttools scripttools_PATH= ${QT_LIBDIR}/libQt${_QT_LIBVER}ScriptTools.so +serialbus_PORT= comms/${_QT_RELNAME}-serialbus +serialbus_PATH= ${QT_LIBDIR}/libQt${_QT_LIBVER}SerialBus.so + serialport_PORT= comms/${_QT_RELNAME}-serialport serialport_PATH= ${QT_LIBDIR}/libQt${_QT_LIBVER}SerialPort.so Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Sat Sep 17 09:40:40 2016 (r422305) +++ head/comms/Makefile Sat Sep 17 09:46:54 2016 (r422306) @@ -145,6 +145,7 @@ SUBDIR += qsstv SUBDIR += qt5-connectivity SUBDIR += qt5-sensors + SUBDIR += qt5-serialbus SUBDIR += qt5-serialport SUBDIR += qtel SUBDIR += quisk Modified: head/comms/qt5-connectivity/pkg-plist ============================================================================== --- head/comms/qt5-connectivity/pkg-plist Sat Sep 17 09:40:40 2016 (r422305) +++ head/comms/qt5-connectivity/pkg-plist Sat Sep 17 09:46:54 2016 (r422306) @@ -8,6 +8,7 @@ %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/device1_bluez5_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/device_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/devicediscoverybroadcastreceiver_p.h +%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/dummy_helper_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/hcimanager_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/inputstreamthread_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/jni_android_p.h @@ -29,13 +30,13 @@ %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtdevicepair_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtl2capchannel_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtledeviceinquiry_p.h +%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtnotifier_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtobexsession_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtrfcommchannel_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtsdpinquiry_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtservicerecord_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtsocketlistener_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/osxbtutility_p.h -%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/ppshelpers_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/profile1_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/properties_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothaddress_p.h @@ -53,7 +54,6 @@ %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_bluez_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_osx_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_p.h -%%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferreply_qnx_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qbluetoothtransferrequest_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergycontroller_osx_p.h %%QT_INCDIR%%/QtBluetooth/%%FULLVER%%/QtBluetooth/private/qlowenergycontroller_p.h @@ -107,44 +107,41 @@ %%QT_INCDIR%%/QtBluetooth/qtbluetoothversion.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/adapter_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/agent_p.h +%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/androidjninfc_p.h +%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/androidmainnewintentlistener_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/dbusobjectmanager_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/dbusproperties_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/manager_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/neard_helper_p.h +%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_android_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_p_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_qnx_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpserver_simulator_p.h +%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_android_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_p_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_qnx_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qllcpsocket_simulator_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qndefnfcsmartposterrecord_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qndefrecord_p.h +%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_android_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_emulator_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_neard_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_qnx_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanager_simulator_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanagerimpl_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldmanagervirtualbase_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharemanager_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharemanager_qnx_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharemanagerimpl_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharetarget_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharetarget_qnx_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldsharetargetimpl_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype1_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype2_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype3_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtagtype4_p.h +%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_android_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_emulator_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_neard_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnearfieldtarget_qnx_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnxnfceventfilter_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnxnfcmanager_p.h -%%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qnxnfcsharemanager_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/qtlv_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/tag_p.h %%QT_INCDIR%%/QtNfc/%%FULLVER%%/QtNfc/private/targetemulator_p.h Added: head/comms/qt5-serialbus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/qt5-serialbus/Makefile Sat Sep 17 09:46:54 2016 (r422306) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= serialbus +DISTVERSION= ${QT5_VERSION} +CATEGORIES= comms +PKGNAMEPREFIX= qt5- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt functions to access industrial bus systems + +USE_QT5= core network serialport buildtools_build +QT_DIST= serialbus +USES= compiler:c++11-lib qmake +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +BUILD_WRKSRC= ${WRKSRC}/src/serialbus +INSTALL_WRKSRC= ${BUILD_WRKSRC} + +.include Added: head/comms/qt5-serialbus/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/qt5-serialbus/pkg-plist Sat Sep 17 09:46:54 2016 (r422306) @@ -0,0 +1,59 @@ +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qcanbusdevice_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbus_symbols_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusadu_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusclient_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbuscommevent_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusdevice_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusrtuserialmaster_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusrtuserialslave_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbusserver_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbustcpclient_p.h +%%QT_INCDIR%%/QtSerialBus/%%FULLVER%%/QtSerialBus/private/qmodbustcpserver_p.h +%%QT_INCDIR%%/QtSerialBus/QCanBus +%%QT_INCDIR%%/QtSerialBus/QCanBusDevice +%%QT_INCDIR%%/QtSerialBus/QCanBusFactory +%%QT_INCDIR%%/QtSerialBus/QCanBusFrame +%%QT_INCDIR%%/QtSerialBus/QModbusClient +%%QT_INCDIR%%/QtSerialBus/QModbusDataUnit +%%QT_INCDIR%%/QtSerialBus/QModbusDataUnitMap +%%QT_INCDIR%%/QtSerialBus/QModbusDevice +%%QT_INCDIR%%/QtSerialBus/QModbusExceptionResponse +%%QT_INCDIR%%/QtSerialBus/QModbusPdu +%%QT_INCDIR%%/QtSerialBus/QModbusReply +%%QT_INCDIR%%/QtSerialBus/QModbusRequest +%%QT_INCDIR%%/QtSerialBus/QModbusResponse +%%QT_INCDIR%%/QtSerialBus/QModbusRtuSerialMaster +%%QT_INCDIR%%/QtSerialBus/QModbusRtuSerialSlave +%%QT_INCDIR%%/QtSerialBus/QModbusServer +%%QT_INCDIR%%/QtSerialBus/QModbusTcpClient +%%QT_INCDIR%%/QtSerialBus/QModbusTcpServer +%%QT_INCDIR%%/QtSerialBus/QtSerialBus +%%QT_INCDIR%%/QtSerialBus/QtSerialBusDepends +%%QT_INCDIR%%/QtSerialBus/QtSerialBusVersion +%%QT_INCDIR%%/QtSerialBus/qcanbus.h +%%QT_INCDIR%%/QtSerialBus/qcanbusdevice.h +%%QT_INCDIR%%/QtSerialBus/qcanbusfactory.h +%%QT_INCDIR%%/QtSerialBus/qcanbusframe.h +%%QT_INCDIR%%/QtSerialBus/qmodbusclient.h +%%QT_INCDIR%%/QtSerialBus/qmodbusdataunit.h +%%QT_INCDIR%%/QtSerialBus/qmodbusdevice.h +%%QT_INCDIR%%/QtSerialBus/qmodbuspdu.h +%%QT_INCDIR%%/QtSerialBus/qmodbusreply.h +%%QT_INCDIR%%/QtSerialBus/qmodbusrtuserialmaster.h +%%QT_INCDIR%%/QtSerialBus/qmodbusrtuserialslave.h +%%QT_INCDIR%%/QtSerialBus/qmodbusserver.h +%%QT_INCDIR%%/QtSerialBus/qmodbustcpclient.h +%%QT_INCDIR%%/QtSerialBus/qmodbustcpserver.h +%%QT_INCDIR%%/QtSerialBus/qserialbusglobal.h +%%QT_INCDIR%%/QtSerialBus/qtserialbusversion.h +%%QT_LIBDIR%%/cmake/Qt5SerialBus/Qt5SerialBusConfig.cmake +%%QT_LIBDIR%%/cmake/Qt5SerialBus/Qt5SerialBusConfigVersion.cmake +%%QT_LIBDIR%%/libQt5SerialBus.prl +%%QT_LIBDIR%%/libQt5SerialBus.so +%%QT_LIBDIR%%/libQt5SerialBus.so.5 +%%QT_LIBDIR%%/libQt5SerialBus.so.%%SHORTVER%% +%%QT_LIBDIR%%/libQt5SerialBus.so.%%FULLVER%% +%%DEBUG%%%%QT_LIBDIR%%/libQt5SerialBus.so.%%FULLVER%%.debug +%%QT_MKSPECDIR%%/modules/qt_lib_serialbus.pri +%%QT_MKSPECDIR%%/modules/qt_lib_serialbus_private.pri +libdata/pkgconfig/Qt5SerialBus.pc Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/Makefile Sat Sep 17 09:46:54 2016 (r422306) @@ -4756,6 +4756,7 @@ SUBDIR += qt5-qdbus SUBDIR += qt5-qdbusviewer SUBDIR += qt5-qdoc + SUBDIR += qt5-qdoc-data SUBDIR += qt5-script SUBDIR += qt5-scripttools SUBDIR += qt5-testlib Modified: head/devel/qbs/Makefile ============================================================================== --- head/devel/qbs/Makefile Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qbs/Makefile Sat Sep 17 09:46:54 2016 (r422306) @@ -3,6 +3,7 @@ PORTNAME= qbs PORTVERSION= 1.6.0 DISTVERSIONPREFIX= src- +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= QT/official_releases/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/Qt/qbs Modified: head/devel/qbs/pkg-plist ============================================================================== --- head/devel/qbs/pkg-plist Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qbs/pkg-plist Sat Sep 17 09:46:54 2016 (r422306) @@ -126,6 +126,7 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%PORTDOCS%%%%DOCSDIR%%/html/shell.html %%PORTDOCS%%%%DOCSDIR%%/html/staticlibrary-item.html %%PORTDOCS%%%%DOCSDIR%%/html/style/offline.css +%%PORTDOCS%%%%DOCSDIR%%/html/style/offline-simple.css %%PORTDOCS%%%%DOCSDIR%%/html/subproject-item.html %%PORTDOCS%%%%DOCSDIR%%/html/system-requirements.html %%PORTDOCS%%%%DOCSDIR%%/html/typescript-module.html @@ -290,5 +291,3 @@ lib/qbs/plugins/libqbs_qt_scanner.so %%DATADIR%%/modules/wix/WiXModule.qbs %%DATADIR%%/modules/xcode/xcode.js %%DATADIR%%/modules/xcode/xcode.qbs -%%PORTDOCS%%@dir %%DOCSDIR%%/html/images/used-in-examples -%%PORTDOCS%%@dir %%DOCSDIR%%/html/scripts Modified: head/devel/qmake5/Makefile ============================================================================== --- head/devel/qmake5/Makefile Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qmake5/Makefile Sat Sep 17 09:46:54 2016 (r422306) @@ -2,7 +2,6 @@ PORTNAME= qmake DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- @@ -11,7 +10,9 @@ COMMENT= Qt Makefile generator USE_QT5= # empty USES= pkgconfig shebangfix -SHEBANG_FILES= mkspecs/macx-ios-clang/rename_main.sh +SHEBANG_FILES= util/harfbuzz/update-harfbuzz \ + util/unicode/x11/makeencodings \ + src/3rdparty/freetype/src/tools/afblue.pl QT_DIST= base REINPLACE_ARGS= -i "" HAS_CONFIGURE= yes @@ -34,23 +35,22 @@ post-patch: # Prevent qconfig.pri from being module dependent. @${REINPLACE_CMD} -E -e '/"\$$QT_CONFIG +(${TBR_CONFIG})"/ d' \ ${WRKSRC}/configure - - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ +# Write the file location paths into mkspecs/common/freebsd.conf + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/mkspecs/common/freebsd.conf @${REINPLACE_CMD} -e 's|unix.conf|freebsd.conf|' \ ${WRKSRC}/mkspecs/freebsd-icc/qmake.conf - -# Add mkspec for Clang. For now, this means adjusting the existing -# unsupported/freebsd-clang mkspec while we get it into shape upstream. - @${MV} ${WRKSRC}/mkspecs/unsupported/freebsd-clang \ - ${WRKSRC}/mkspecs/freebsd-clang +# Add mkspec for g++. The clang is now the officially supported compiler for +# Qt>=5.6.0 on FreeBSD. + @${MV} ${WRKSRC}/mkspecs/unsupported/freebsd-g++ \ + ${WRKSRC}/mkspecs/freebsd-g++ @${REINPLACE_CMD} -e 's|(../|(|g' \ - ${WRKSRC}/mkspecs/freebsd-clang/qmake.conf + ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf @${REINPLACE_CMD} -e 's|"../|"|g' \ - ${WRKSRC}/mkspecs/freebsd-clang/qplatformdefs.h - + ${WRKSRC}/mkspecs/freebsd-g++/qplatformdefs.h +# Clean up files created by patching @${RM} ${WRKSRC}/mkspecs/*/*.orig - @${RM} -Rf ${WRKSRC}/mkspecs/freebsd-g++46 + @${RM} -Rf ${WRKSRC}/mkspecs/unsupported/freebsd-g++46 post-build: # Complete configure stage to generate *.pri files. Modified: head/devel/qmake5/files/patch-configure ============================================================================== --- head/devel/qmake5/files/patch-configure Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qmake5/files/patch-configure Sat Sep 17 09:46:54 2016 (r422306) @@ -19,12 +19,12 @@ Date: Tue Aug 23 20:25:14 2016 +0200 Change-Id: I5f38f8480f4b1156ca7147e32c1157a009557035 Reviewed-by: Thiago Macieira ---- configure.orig 2015-10-13 04:35:07 UTC +--- configure.orig 2016-08-24 08:18:37 UTC +++ configure -@@ -4038,11 +4038,11 @@ if true; then ###[ '!' -f "$outpath/bin/ - fi - echo "QMAKESPEC = $adjqmakespec" >> "$mkfile" - echo "QT_VERSION = $QT_VERSION" >> "$mkfile" +@@ -4115,11 +4115,11 @@ if [ '!' -e "$outpath/bin/qmake" ]; then + echo "QT_MAJOR_VERSION = $QT_MAJOR_VERSION" >> "$mkfile" + echo "QT_MINOR_VERSION = $QT_MINOR_VERSION" >> "$mkfile" + echo "QT_PATCH_VERSION = $QT_PATCH_VERSION" >> "$mkfile" - echo "EXTRA_CFLAGS = $EXTRA_CFLAGS" >> "$mkfile" - echo "EXTRA_CXXFLAGS = $EXTRA_CXXFLAGS" >> "$mkfile" + echo "EXTRA_CFLAGS = $EXTRA_CFLAGS $CFLAGS" >> "$mkfile" @@ -36,7 +36,7 @@ Date: Tue Aug 23 20:25:14 2016 +0200 echo "EXEEXT = $EXEEXT" >> "$mkfile" echo "RM_F = rm -f" >> "$mkfile" echo "RM_RF = rm -rf" >> "$mkfile" -@@ -4061,6 +4061,7 @@ if true; then ###[ '!' -f "$outpath/bin/ +@@ -4138,6 +4138,7 @@ if [ '!' -e "$outpath/bin/qmake" ]; then fi fi done @@ -44,7 +44,7 @@ Date: Tue Aug 23 20:25:14 2016 +0200 if [ "$OPT_VERBOSE" = yes ]; then # Show the output of make -@@ -6474,7 +6472,7 @@ case "$QMAKE_CONF_COMPILER" in +@@ -6691,7 +6689,7 @@ case "$QMAKE_CONF_COMPILER" in # Clang COMPILER_VERSION=`${QMAKE_CONF_COMPILER} -v 2>&1 | sed -n -E ' /^Apple (clang|LLVM) version /{s///; s/^([0-9]*)\.([0-9]*).*$/QT_APPLE_CLANG_MAJOR_VERSION=\1; QT_APPLE_CLANG_MINOR_VERSION=\2/;p;q;} Modified: head/devel/qmake5/files/patch-mkspecs__common__freebsd.conf ============================================================================== --- head/devel/qmake5/files/patch-mkspecs__common__freebsd.conf Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qmake5/files/patch-mkspecs__common__freebsd.conf Sat Sep 17 09:46:54 2016 (r422306) @@ -13,12 +13,12 @@ +QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD + +# Addon software goes into /usr/local on the BSDs, by default we will look there -+QMAKE_INCDIR = /usr/local/include -+QMAKE_LIBDIR = /usr/local/lib ++QMAKE_INCDIR = %%LOCALBASE%%/include ++QMAKE_LIBDIR = %%LOCALBASE%%/lib + +# Required at least by Qt5ConfigExtras.cmake so ports can include GL/gl.h. -+QMAKE_INCDIR_OPENGL = /usr/local/include -+QMAKE_LIBDIR_OPENGL = /usr/local/lib ++QMAKE_INCDIR_OPENGL = %%LOCALBASE%%/include ++QMAKE_LIBDIR_OPENGL = %%LOCALBASE%%/lib + +QMAKE_LFLAGS_NOUNDEF = -Wl,--no-undefined +QMAKE_LFLAGS_THREAD = -pthread Copied and modified: head/devel/qmake5/files/patch-mkspecs_freebsd-clang_qmake.conf (from r422305, head/devel/qmake5/files/patch-mkspecs__freebsd-g++__qmake.conf) ============================================================================== --- head/devel/qmake5/files/patch-mkspecs__freebsd-g++__qmake.conf Sat Sep 17 09:40:40 2016 (r422305, copy source) +++ head/devel/qmake5/files/patch-mkspecs_freebsd-clang_qmake.conf Sat Sep 17 09:46:54 2016 (r422306) @@ -1,12 +1,14 @@ ---- mkspecs/freebsd-g++/qmake.conf.orig -+++ mkspecs/freebsd-g++/qmake.conf -@@ -2,32 +2,7 @@ - # qmake configuration for freebsd-g++ +--- mkspecs/freebsd-clang/qmake.conf.orig 2016-04-13 18:43:04 UTC ++++ mkspecs/freebsd-clang/qmake.conf +@@ -2,34 +2,7 @@ + # qmake configuration for freebsd-clang # -MAKEFILE_GENERATOR = UNIX -QMAKE_PLATFORM = freebsd bsd - +-include(../common/unix.conf) +- -QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE - -QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD @@ -15,6 +17,7 @@ -QMAKE_INCDIR = /usr/local/include -QMAKE_LIBDIR = /usr/local/lib - +-QMAKE_LFLAGS_NOUNDEF = -Wl,--no-undefined -QMAKE_LFLAGS_THREAD = -pthread - -QMAKE_LIBS = @@ -29,8 +32,7 @@ -QMAKE_NM = nm -P -QMAKE_RANLIB = - --include(../common/unix.conf) +include(../common/freebsd.conf) include(../common/gcc-base-unix.conf) - include(../common/g++-unix.conf) - load(qt_config) + include(../common/clang.conf) + Copied and modified: head/devel/qmake5/files/patch-mkspecs_unsupported_freebsd-g++_qmake.conf (from r422305, head/devel/qmake5/files/patch-mkspecs__unsupported__freebsd-clang__qmake.conf) ============================================================================== --- head/devel/qmake5/files/patch-mkspecs__unsupported__freebsd-clang__qmake.conf Sat Sep 17 09:40:40 2016 (r422305, copy source) +++ head/devel/qmake5/files/patch-mkspecs_unsupported_freebsd-g++_qmake.conf Sat Sep 17 09:46:54 2016 (r422306) @@ -1,12 +1,14 @@ ---- mkspecs/unsupported/freebsd-clang/qmake.conf -+++ mkspecs/unsupported/freebsd-clang/qmake.conf -@@ -2,32 +2,6 @@ - # qmake configuration for freebsd-clang +--- mkspecs/unsupported/freebsd-g++/qmake.conf.orig 2016-04-13 18:41:57 UTC ++++ mkspecs/unsupported/freebsd-g++/qmake.conf +@@ -2,33 +2,7 @@ + # qmake configuration for freebsd-g++ # -MAKEFILE_GENERATOR = UNIX -QMAKE_PLATFORM = freebsd bsd - +-include(../../common/unix.conf) +- -QMAKE_CFLAGS_THREAD = -pthread -D_THREAD_SAFE - -QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD @@ -15,7 +17,6 @@ -QMAKE_INCDIR = /usr/local/include -QMAKE_LIBDIR = /usr/local/lib - --QMAKE_LFLAGS_NOUNDEF = -Wl,--no-undefined -QMAKE_LFLAGS_THREAD = -pthread - -QMAKE_LIBS = @@ -30,9 +31,7 @@ -QMAKE_NM = nm -P -QMAKE_RANLIB = - --include(../../common/unix.conf) --include(../../common/gcc-base-unix.conf) --include(../../common/clang.conf) +include(../../common/freebsd.conf) -+include(../../common/gcc-base-unix.conf) -+include(../../common/clang.conf) + include(../../common/gcc-base-unix.conf) + include(../../common/g++-unix.conf) + load(qt_config) Modified: head/devel/qmake5/pkg-plist ============================================================================== --- head/devel/qmake5/pkg-plist Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qmake5/pkg-plist Sat Sep 17 09:46:54 2016 (r422306) @@ -15,7 +15,7 @@ %%QT_MKSPECDIR%%/blackberry-x86-qcc/qplatformdefs.h %%QT_MKSPECDIR%%/common/aix/qplatformdefs.h %%QT_MKSPECDIR%%/common/android/qplatformdefs.h -%%QT_MKSPECDIR%%/common/armcc.conf +%%QT_MKSPECDIR%%/common/angle.conf %%QT_MKSPECDIR%%/common/c89/qplatformdefs.h %%QT_MKSPECDIR%%/common/clang-mac.conf %%QT_MKSPECDIR%%/common/clang.conf @@ -37,6 +37,7 @@ %%QT_MKSPECDIR%%/common/mac.conf %%QT_MKSPECDIR%%/common/mac/qplatformdefs.h %%QT_MKSPECDIR%%/common/macx.conf +%%QT_MKSPECDIR%%/common/msvc-base.conf %%QT_MKSPECDIR%%/common/msvc-desktop.conf %%QT_MKSPECDIR%%/common/nacl/g++-nacl32.conf %%QT_MKSPECDIR%%/common/nacl/g++-nacl64.conf @@ -81,6 +82,8 @@ %%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp %%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qmake.conf @@ -91,15 +94,21 @@ %%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-imx6-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-imx6-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp %%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rpi3-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rpi3-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h %%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf @@ -110,9 +119,8 @@ %%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qplatformdefs.h %%QT_MKSPECDIR%%/features/android/android.prf %%QT_MKSPECDIR%%/features/android/android_deployment_settings.prf +%%QT_MKSPECDIR%%/features/benchmark.prf %%QT_MKSPECDIR%%/features/build_pass.prf -%%QT_MKSPECDIR%%/features/c++11.prf -%%QT_MKSPECDIR%%/features/c++14.prf %%QT_MKSPECDIR%%/features/cmake_functions.prf %%QT_MKSPECDIR%%/features/configure.prf %%QT_MKSPECDIR%%/features/create_cmake.prf @@ -125,6 +133,8 @@ %%QT_MKSPECDIR%%/features/data/cmake/Qt5ConfigVersion.cmake.in %%QT_MKSPECDIR%%/features/data/cmake/Qt5PluginTarget.cmake.in %%QT_MKSPECDIR%%/features/data/dummy.cpp +%%QT_MKSPECDIR%%/features/data/mac/objc_namespace.sh +%%QT_MKSPECDIR%%/features/data/unix/findclasslist.pl %%QT_MKSPECDIR%%/features/dbusadaptors.prf %%QT_MKSPECDIR%%/features/dbuscommon.pri %%QT_MKSPECDIR%%/features/dbusinterfaces.prf @@ -138,6 +148,7 @@ %%QT_MKSPECDIR%%/features/exceptions_off.prf %%QT_MKSPECDIR%%/features/exclusive_builds.prf %%QT_MKSPECDIR%%/features/exclusive_builds_post.prf +%%QT_MKSPECDIR%%/features/file_copies.prf %%QT_MKSPECDIR%%/features/gcov.prf %%QT_MKSPECDIR%%/features/include_source_dir.prf %%QT_MKSPECDIR%%/features/incredibuild_xge.prf @@ -151,10 +162,13 @@ %%QT_MKSPECDIR%%/features/mac/objective_c.prf %%QT_MKSPECDIR%%/features/mac/rez.prf %%QT_MKSPECDIR%%/features/mac/sdk.prf +%%QT_MKSPECDIR%%/features/mac/unsupported/objc_namespace.prf %%QT_MKSPECDIR%%/features/moc.prf %%QT_MKSPECDIR%%/features/no_debug_info.prf +%%QT_MKSPECDIR%%/features/plugin_bundle.prf %%QT_MKSPECDIR%%/features/precompile_header.prf %%QT_MKSPECDIR%%/features/qfeatures.prf +%%QT_MKSPECDIR%%/features/qgltf.prf %%QT_MKSPECDIR%%/features/qlalr.prf %%QT_MKSPECDIR%%/features/qml1_module.prf %%QT_MKSPECDIR%%/features/qml1_plugin.prf @@ -168,7 +182,9 @@ %%QT_MKSPECDIR%%/features/qt_android_deps.prf %%QT_MKSPECDIR%%/features/qt_app.prf %%QT_MKSPECDIR%%/features/qt_build_config.prf +%%QT_MKSPECDIR%%/features/qt_build_extra.prf %%QT_MKSPECDIR%%/features/qt_build_paths.prf +%%QT_MKSPECDIR%%/features/qt_clear_installs.prf %%QT_MKSPECDIR%%/features/qt_common.prf %%QT_MKSPECDIR%%/features/qt_config.prf %%QT_MKSPECDIR%%/features/qt_docs.prf @@ -199,7 +215,6 @@ %%QT_MKSPECDIR%%/features/testlib_defines.prf %%QT_MKSPECDIR%%/features/uic.prf %%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf -%%QT_MKSPECDIR%%/features/unix/dylib.prf %%QT_MKSPECDIR%%/features/unix/hide_symbols.prf %%QT_MKSPECDIR%%/features/unix/largefile.prf %%QT_MKSPECDIR%%/features/unix/opengl.prf @@ -232,7 +247,6 @@ %%QT_MKSPECDIR%%/features/win32/windows.prf %%QT_MKSPECDIR%%/features/winrt/console.prf %%QT_MKSPECDIR%%/features/winrt/default_pre.prf -%%QT_MKSPECDIR%%/features/winrt/font_deployment.prf %%QT_MKSPECDIR%%/features/winrt/package_manifest.prf %%QT_MKSPECDIR%%/features/xctest.prf %%QT_MKSPECDIR%%/features/yacc.prf @@ -301,47 +315,62 @@ %%QT_MKSPECDIR%%/lynxos-g++/qmake.conf %%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h %%QT_MKSPECDIR%%/macx-clang-32/Info.plist.app +%%QT_MKSPECDIR%%/macx-clang-32/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-clang-32/Info.plist.lib %%QT_MKSPECDIR%%/macx-clang-32/qmake.conf %%QT_MKSPECDIR%%/macx-clang-32/qplatformdefs.h %%QT_MKSPECDIR%%/macx-clang/Info.plist.app +%%QT_MKSPECDIR%%/macx-clang/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-clang/Info.plist.lib %%QT_MKSPECDIR%%/macx-clang/qmake.conf %%QT_MKSPECDIR%%/macx-clang/qplatformdefs.h %%QT_MKSPECDIR%%/macx-g++-32/Info.plist.app +%%QT_MKSPECDIR%%/macx-g++-32/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-g++-32/Info.plist.lib %%QT_MKSPECDIR%%/macx-g++-32/qmake.conf %%QT_MKSPECDIR%%/macx-g++-32/qplatformdefs.h %%QT_MKSPECDIR%%/macx-g++/Info.plist.app +%%QT_MKSPECDIR%%/macx-g++/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-g++/Info.plist.lib %%QT_MKSPECDIR%%/macx-g++/qmake.conf %%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h %%QT_MKSPECDIR%%/macx-g++40/Info.plist.app +%%QT_MKSPECDIR%%/macx-g++40/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-g++40/Info.plist.lib %%QT_MKSPECDIR%%/macx-g++40/qmake.conf %%QT_MKSPECDIR%%/macx-g++40/qplatformdefs.h %%QT_MKSPECDIR%%/macx-g++42/Info.plist.app +%%QT_MKSPECDIR%%/macx-g++42/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-g++42/Info.plist.lib %%QT_MKSPECDIR%%/macx-g++42/qmake.conf %%QT_MKSPECDIR%%/macx-g++42/qplatformdefs.h %%QT_MKSPECDIR%%/macx-icc/Info.plist.app +%%QT_MKSPECDIR%%/macx-icc/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-icc/Info.plist.lib %%QT_MKSPECDIR%%/macx-icc/qmake.conf %%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h %%QT_MKSPECDIR%%/macx-ios-clang/Default-568h@2x.png %%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.app +%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.lib %%QT_MKSPECDIR%%/macx-ios-clang/LaunchScreen.xib %%QT_MKSPECDIR%%/macx-ios-clang/features/default_post.prf %%QT_MKSPECDIR%%/macx-ios-clang/features/default_pre.prf +%%QT_MKSPECDIR%%/macx-ios-clang/features/exclusive_builds_post.prf %%QT_MKSPECDIR%%/macx-ios-clang/features/qt.prf %%QT_MKSPECDIR%%/macx-ios-clang/features/qt_config.prf %%QT_MKSPECDIR%%/macx-ios-clang/features/qt_parts.prf +%%QT_MKSPECDIR%%/macx-ios-clang/features/resolve_config.prf %%QT_MKSPECDIR%%/macx-ios-clang/features/sdk.prf +%%QT_MKSPECDIR%%/macx-ios-clang/features/testcase.prf +%%QT_MKSPECDIR%%/macx-ios-clang/features/testcase_targets.prf +%%QT_MKSPECDIR%%/macx-ios-clang/features/xcodebuild.prf +%%QT_MKSPECDIR%%/macx-ios-clang/ios_destinations.sh %%QT_MKSPECDIR%%/macx-ios-clang/qmake.conf %%QT_MKSPECDIR%%/macx-ios-clang/qplatformdefs.h -%%QT_MKSPECDIR%%/macx-ios-clang/rename_main.sh +%%QT_MKSPECDIR%%/macx-ios-clang/xcodebuild.mk %%QT_MKSPECDIR%%/macx-llvm/Info.plist.app +%%QT_MKSPECDIR%%/macx-llvm/Info.plist.dSYM.in %%QT_MKSPECDIR%%/macx-llvm/Info.plist.lib %%QT_MKSPECDIR%%/macx-llvm/qmake.conf %%QT_MKSPECDIR%%/macx-llvm/qplatformdefs.h @@ -389,8 +418,6 @@ %%QT_MKSPECDIR%%/unsupported/android-g++/qeglfshooks_surfaceflinger.cpp %%QT_MKSPECDIR%%/unsupported/android-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/android-g++/qplatformdefs.h -%%QT_MKSPECDIR%%/unsupported/linux-armcc/qmake.conf -%%QT_MKSPECDIR%%/unsupported/linux-armcc/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf %%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h %%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf Modified: head/devel/qt5-assistant/files/patch-src__src.pro ============================================================================== --- head/devel/qt5-assistant/files/patch-src__src.pro Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qt5-assistant/files/patch-src__src.pro Sat Sep 17 09:46:54 2016 (r422306) @@ -1,11 +1,11 @@ Only enter the directories we want to build, otherwise we might fail due to missing dependencies. ---- src/src.pro +--- src/src.pro.orig 2016-02-25 20:14:01 UTC +++ src/src.pro -@@ -1,37 +1,2 @@ +@@ -1,38 +1,3 @@ TEMPLATE = subdirs -- + -qtHaveModule(widgets) { - no-png { - message("Some graphics-related tools are unavailable without PNG support") @@ -20,6 +20,7 @@ missing dependencies. -} - -SUBDIRS += linguist \ +- qdoc \ - qtplugininfo -if(!android|android_app):!ios: SUBDIRS += qtpaths - Modified: head/devel/qt5-buildtools/pkg-plist ============================================================================== --- head/devel/qt5-buildtools/pkg-plist Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qt5-buildtools/pkg-plist Sat Sep 17 09:46:54 2016 (r422306) @@ -4,4 +4,3 @@ %%QT_BINDIR%%/rcc %%QT_BINDIR%%/syncqt.pl %%QT_MKSPECDIR%%/modules/qt_lib_bootstrap_private.pri -libdata/pkgconfig/Qt5Bootstrap.pc Modified: head/devel/qt5-core/Makefile ============================================================================== --- head/devel/qt5-core/Makefile Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qt5-core/Makefile Sat Sep 17 09:46:54 2016 (r422306) @@ -2,7 +2,6 @@ PORTNAME= core DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- @@ -39,7 +38,8 @@ QT_CONFIG= glib icu post-install: # Allow qconfig.h to be customized by single ports. - ${REINPLACE_CMD} -i "" '1 s|.*|#include |' \ - ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h + ${AWK} 'BEGIN{print "#include "}{print}' \ + ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h > ${WRKDIR}/qconfig.h + ${MV} ${WRKDIR}/qconfig.h ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h .include Added: head/devel/qt5-core/files/patch-git_680ec54a ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/qt5-core/files/patch-git_680ec54a Sat Sep 17 09:46:54 2016 (r422306) @@ -0,0 +1,68 @@ +commit 680ec54a76eaf63375f648819ac9f98c915e5c43 +Author: Raphael Kubo da Costa +Date: Mon Aug 22 19:55:10 2016 +0200 + + QMutex: Make freelist() return a real global static + + Since Qt 5.6.0, some applications such as Kate (built with clang, libc++ + and libcxxrt) on FreeBSD occasionally crash with the following error + message on exit: + + QMutex::lock(): sem_wait failure: Invalid argument + [or pthread_cond_wait in the 5.6 branch] + + Investigation by Gleb Popov, Thiago Macieira and Olivier Goffart has + shown that this is caused by the fact that QDBusConnectionManager is a + Q_GLOBAL_STATIC (so it will be destroyed with all the other + Q_GLOBAL_STATICs in the reverse order of construction). In the + Q_COMPILER_THREADSAFE_STATICS case, freelist() also returns a + function-level static that is constructed on first use, so it may be + destroyed earlier than the QDBusConnectionManager object, making it + impossible to lock a contended mutex. + + We now make freelist() return a global static, so that it is always + destroyed after QDBusConnectionManager and other function-static + variables. + + Change-Id: I210fa7c18dbdf2345863da49141b9a85cffdef52 + Reviewed-by: Olivier Goffart (Woboq GmbH) + +--- src/corelib/thread/qmutex.cpp ++++ src/corelib/thread/qmutex.cpp +@@ -571,34 +571,11 @@ const int FreeListConstants::Sizes[FreeListConstants::BlockCount] = { + + typedef QFreeList FreeList; + // We cannot use Q_GLOBAL_STATIC because it uses QMutex +-#if defined(Q_COMPILER_THREADSAFE_STATICS) ++static FreeList freeList_; + FreeList *freelist() + { +- static FreeList list; +- return &list; ++ return &freeList_; + } +-#else +-static QBasicAtomicPointer freeListPtr; +- +-FreeList *freelist() +-{ +- FreeList *local = freeListPtr.loadAcquire(); +- if (!local) { +- local = new FreeList; +- if (!freeListPtr.testAndSetRelease(0, local)) { +- delete local; +- local = freeListPtr.loadAcquire(); +- } +- } +- return local; +-} +- +-static void qFreeListDeleter() +-{ +- delete freeListPtr.load(); +-} +-Q_DESTRUCTOR_FUNCTION(qFreeListDeleter) +-#endif + } + + QMutexPrivate *QMutexPrivate::allocate() Added: head/devel/qt5-core/files/patch-git_bfa53e1c6 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/qt5-core/files/patch-git_bfa53e1c6 Sat Sep 17 09:46:54 2016 (r422306) @@ -0,0 +1,25 @@ +From bfa53e1c67eddb14887cda37d7c89c76f4cce378 Mon Sep 17 00:00:00 2001 +From: Ralf Nolden +Date: Tue, 10 May 2016 16:34:37 +0200 +Subject: [PATCH] Compile fix: remove _POSIX_C_SOURCE usage + +Remove _POSIX_C_SOURCE usage as the reason why it was added is not +clear anymore and it causes compile errors on BSD systems if not +circumvented by adding further defines to re-enable function calls +hidden by the _POSIX_C_SOURCE define. (__BSD_VISIBLE on FreeBSD/OpenBSD +and _NETBSD_SOURCE on NetBSD) + +Change-Id: Ic6b49ddcd6c481b0f2acd598cea5470604e00507 +Reviewed-by: Thiago Macieira +--- src/corelib/tools/qelapsedtimer_unix.cpp.orig 2016-02-24 20:16:34 UTC ++++ src/corelib/tools/qelapsedtimer_unix.cpp +@@ -31,9 +31,6 @@ + ** + ****************************************************************************/ + +-// ask for the latest POSIX, just in case +-#define _POSIX_C_SOURCE 200809L +- + #include "qelapsedtimer.h" + #if defined(Q_OS_VXWORKS) + #include "qfunctions_vxworks.h" Added: head/devel/qt5-core/files/patch-git_c9998b8a ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/qt5-core/files/patch-git_c9998b8a Sat Sep 17 09:46:54 2016 (r422306) @@ -0,0 +1,26 @@ +From c9998b8af39bcf990f4ef9a0ff87b65574a86bfd Mon Sep 17 00:00:00 2001 +From: Thiago Macieira +Date: Mon, 9 May 2016 11:19:27 -0700 +Subject: [PATCH] Fix build with GCC <= 4.2 (FreeBSD 9.x) + +15b42af11123f9d1eb4bbd79870185585103ea8d changed the qt_cpu_features +variable to be an array and never fixed this #if branch of the code. + +Change-Id: Id69569111e7d4e619e22ffff144cf930f86f478e +Reviewed-by: Oswald Buddenhagen +Reviewed-by: Olivier Goffart (Woboq GmbH) +--- src/corelib/tools/qsimd.cpp.orig 2016-04-13 20:53:43 UTC ++++ src/corelib/tools/qsimd.cpp +@@ -666,7 +666,11 @@ void qDetectCpuFeatures() + // contains all the features that the code required. Qt 4 ran for years + // like that, so it shouldn't be a problem. + +- qt_cpu_features.store(minFeature | quint32(QSimdInitialized)); ++ qt_cpu_features[0].store(minFeature | quint32(QSimdInitialized)); ++#ifndef Q_ATOMIC_INT64_IS_SUPPORTED ++ qt_cpu_features[1].store(minFeature >> 32); ++#endif ++ + return; + # endif + #endif Modified: head/devel/qt5-core/pkg-plist ============================================================================== --- head/devel/qt5-core/pkg-plist Sat Sep 17 09:40:40 2016 (r422305) +++ head/devel/qt5-core/pkg-plist Sat Sep 17 09:46:54 2016 (r422306) @@ -8,7 +8,9 @@ %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstracttransition_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qanimationgroup_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbig5codec_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytearray_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytedata_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcfsocketnotifier_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcollator_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_mac_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_unix_p.h @@ -26,6 +28,7 @@ %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeucjpcodec_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeuckrcodec_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_blackberry_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_cf_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_glib_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_unix_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_win_p.h @@ -47,9 +50,11 @@ %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_polling_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_win_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfinalstate_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfreelist_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_iterator_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_fake_env_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutureinterface_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfuturewatcher_p.h @@ -146,7 +151,6 @@ %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qutfcodec_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariant_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariantanimation_p.h -%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qversionnumber_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowscodec_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipereader_p.h %%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipewriter_p.h @@ -241,6 +245,7 @@ %%QT_INCDIR%%/QtCore/QHash %%QT_INCDIR%%/QtCore/QHashData %%QT_INCDIR%%/QtCore/QHashDummyValue +%%QT_INCDIR%%/QtCore/QHashFunctions %%QT_INCDIR%%/QtCore/QHashIterator %%QT_INCDIR%%/QtCore/QHashNode %%QT_INCDIR%%/QtCore/QHistoryState @@ -295,9 +300,6 @@ %%QT_INCDIR%%/QtCore/QMetaObject %%QT_INCDIR%%/QtCore/QMetaProperty %%QT_INCDIR%%/QtCore/QMetaType -%%QT_INCDIR%%/QtCore/QMetaTypeId -%%QT_INCDIR%%/QtCore/QMetaTypeId2 -%%QT_INCDIR%%/QtCore/QMetaTypeIdQObject %%QT_INCDIR%%/QtCore/QMimeData %%QT_INCDIR%%/QtCore/QMimeDatabase %%QT_INCDIR%%/QtCore/QMimeType @@ -413,6 +415,7 @@ %%QT_INCDIR%%/QtCore/QTranslator %%QT_INCDIR%%/QtCore/QTypeInfo %%QT_INCDIR%%/QtCore/QTypeInfoMerger +%%QT_INCDIR%%/QtCore/QTypeInfoQuery %%QT_INCDIR%%/QtCore/QUnhandledException %%QT_INCDIR%%/QtCore/QUrl %%QT_INCDIR%%/QtCore/QUrlQuery @@ -427,6 +430,7 @@ %%QT_INCDIR%%/QtCore/QVariantMap %%QT_INCDIR%%/QtCore/QVector %%QT_INCDIR%%/QtCore/QVectorIterator +%%QT_INCDIR%%/QtCore/QVersionNumber %%QT_INCDIR%%/QtCore/QWaitCondition %%QT_INCDIR%%/QtCore/QWeakPointer %%QT_INCDIR%%/QtCore/QWinEventNotifier @@ -482,7 +486,6 @@ %%QT_INCDIR%%/QtCore/qatomic_cxx11.h %%QT_INCDIR%%/QtCore/qatomic_gcc.h %%QT_INCDIR%%/QtCore/qatomic_ia64.h -%%QT_INCDIR%%/QtCore/qatomic_mips.h %%QT_INCDIR%%/QtCore/qatomic_msvc.h %%QT_INCDIR%%/QtCore/qatomic_unix.h %%QT_INCDIR%%/QtCore/qatomic_x86.h @@ -543,6 +546,7 @@ %%QT_INCDIR%%/QtCore/qglobal.h %%QT_INCDIR%%/QtCore/qglobalstatic.h %%QT_INCDIR%%/QtCore/qhash.h +%%QT_INCDIR%%/QtCore/qhashfunctions.h %%QT_INCDIR%%/QtCore/qhistorystate.h %%QT_INCDIR%%/QtCore/qidentityproxymodel.h %%QT_INCDIR%%/QtCore/qiodevice.h @@ -651,6 +655,8 @@ %%QT_INCDIR%%/QtCore/qvariantanimation.h %%QT_INCDIR%%/QtCore/qvarlengtharray.h %%QT_INCDIR%%/QtCore/qvector.h +%%QT_INCDIR%%/QtCore/qversionnumber.h +%%QT_INCDIR%%/QtCore/qversiontagging.h %%QT_INCDIR%%/QtCore/qwaitcondition.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sat Sep 17 10:34:58 2016 Return-Path: Delivered-To: svn-ports-head@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 05825BDE33D; Sat, 17 Sep 2016 10:34:58 +0000 (UTC) (envelope-from cpm@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 BDF79E16; Sat, 17 Sep 2016 10:34:57 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HAYvOB020253; Sat, 17 Sep 2016 10:34:57 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HAYuJS020248; Sat, 17 Sep 2016 10:34:56 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201609171034.u8HAYuJS020248@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sat, 17 Sep 2016 10:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422307 - in head/misc/gkrellweather2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 10:34:58 -0000 Author: cpm Date: Sat Sep 17 10:34:56 2016 New Revision: 422307 URL: https://svnweb.freebsd.org/changeset/ports/422307 Log: - Add LICENSE_FILE - Update patch due another URL change - Regenerate patches with 'make makepatch' (pet portlint) - Update pkg-descr - Bump PORTREVISION PR: 212693 Submitted by: etteldor@gmail.com Approved by: amdmi3 (mentor) Modified: head/misc/gkrellweather2/Makefile head/misc/gkrellweather2/distinfo head/misc/gkrellweather2/files/patch-Makefile head/misc/gkrellweather2/files/patch-gkrellweather.c head/misc/gkrellweather2/pkg-descr Modified: head/misc/gkrellweather2/Makefile ============================================================================== --- head/misc/gkrellweather2/Makefile Sat Sep 17 09:46:54 2016 (r422306) +++ head/misc/gkrellweather2/Makefile Sat Sep 17 10:34:56 2016 (r422307) @@ -3,7 +3,7 @@ PORTNAME= gkrellweather PORTVERSION= 2.0.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= misc geography MASTER_SITES= https://sites.google.com/site/makovick/projects/ @@ -11,6 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Weather plugin for GKrellM LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm2/gkrellm.h:sysutils/gkrellm2 RUN_DEPENDS= gkrellm:sysutils/gkrellm2 Modified: head/misc/gkrellweather2/distinfo ============================================================================== --- head/misc/gkrellweather2/distinfo Sat Sep 17 09:46:54 2016 (r422306) +++ head/misc/gkrellweather2/distinfo Sat Sep 17 10:34:56 2016 (r422307) @@ -1,2 +1,3 @@ +TIMESTAMP = 1474107595 SHA256 (gkrellweather-2.0.8.tgz) = 06236ad489151019e71bab4ba63b4b8b06d58c58890caed8b1a28fdd05cde16d SIZE (gkrellweather-2.0.8.tgz) = 20227 Modified: head/misc/gkrellweather2/files/patch-Makefile ============================================================================== --- head/misc/gkrellweather2/files/patch-Makefile Sat Sep 17 09:46:54 2016 (r422306) +++ head/misc/gkrellweather2/files/patch-Makefile Sat Sep 17 10:34:56 2016 (r422307) @@ -1,8 +1,8 @@ ---- Makefile.orig Sun Feb 27 14:54:47 2005 -+++ Makefile Wed Mar 2 00:22:17 2005 +--- Makefile.orig 2009-01-11 18:15:02 UTC ++++ Makefile @@ -1,9 +1,9 @@ PKGNAME = gkrellweather - VERSION = 2.0.7 + VERSION = 2.0.8 -CFLAGS = -O2 -std=gnu99 -Wall -fPIC `pkg-config gtk+-2.0 --cflags` +CFLAGS += -Wall -fPIC `pkg-config gtk+-2.0 --cflags` LIBS = `pkg-config gtk+-2.0 --libs` @@ -12,7 +12,7 @@ LOCALEDIR := $(PREFIX)/share/locale -@@ -14,13 +14,13 @@ +@@ -14,13 +14,13 @@ endif CFLAGS += -DPACKAGE="\"$(PKGNAME)\"" export PKGNAME LOCALEDIR Modified: head/misc/gkrellweather2/files/patch-gkrellweather.c ============================================================================== --- head/misc/gkrellweather2/files/patch-gkrellweather.c Sat Sep 17 09:46:54 2016 (r422306) +++ head/misc/gkrellweather2/files/patch-gkrellweather.c Sat Sep 17 10:34:56 2016 (r422307) @@ -1,6 +1,15 @@ ---- gkrellweather.c.orig Mon Mar 31 13:12:57 2003 -+++ gkrellweather.c Sun Jul 13 14:30:14 2003 -@@ -986,7 +986,7 @@ +--- gkrellweather.c.orig 2009-01-11 18:15:02 UTC ++++ gkrellweather.c +@@ -777,7 +777,7 @@ create_air_tab (GtkWidget *tab) + " switch interval - number of seconds (0 = never)" \ + " between switching display\n") + }; +- static gchar url[] = "http://www.nws.noaa.gov/tg/siteloc.shtml"; ++ static gchar url[] = "http://www.nws.noaa.gov/tg/siteloc.php"; + laptop = gtk_notebook_new(); + gtk_notebook_set_tab_pos(GTK_NOTEBOOK(laptop), GTK_POS_TOP); + gtk_box_pack_start(GTK_BOX(tab), laptop, TRUE, TRUE, 0); +@@ -986,7 +986,7 @@ read_default(void) options.windspeed_unit = 1; options.pressure_unit = 1; strcpy(options.station, DEFAULT_STATION_ID); @@ -9,7 +18,7 @@ options.command[511] = 0; snprintf(options.filename, 512, "%s/.wmWeatherReports/%s.dat", getenv("HOME"), options.station); -@@ -998,6 +998,7 @@ +@@ -998,6 +998,7 @@ GkrellmMonitor * gkrellm_init_plugin(void) { #ifdef ENABLE_NLS Modified: head/misc/gkrellweather2/pkg-descr ============================================================================== --- head/misc/gkrellweather2/pkg-descr Sat Sep 17 09:46:54 2016 (r422306) +++ head/misc/gkrellweather2/pkg-descr Sat Sep 17 10:34:56 2016 (r422307) @@ -3,7 +3,7 @@ Service Features - Choose the location nearest to you by 4-letter METAR station - identifier code. (http://www.nws.noaa.gov/oso/siteloc.shtml) + identifier code.(http://www.nws.noaa.gov/tg/siteloc.php) - Monitor temperature, dew point, pressure, relative humidity, sky condition, wind direction and speed - Display using imperial units (degrees Fareheight, inches of From owner-svn-ports-head@freebsd.org Sat Sep 17 11:21:18 2016 Return-Path: Delivered-To: svn-ports-head@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 0468FBDEACB; Sat, 17 Sep 2016 11:21:18 +0000 (UTC) (envelope-from tota@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 CACEDEDF; Sat, 17 Sep 2016 11:21:17 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HBLHIw035163; Sat, 17 Sep 2016 11:21:17 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HBLGvN035161; Sat, 17 Sep 2016 11:21:16 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201609171121.u8HBLGvN035161@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 17 Sep 2016 11:21:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422308 - head/graphics/R-cran-dygraphs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 11:21:18 -0000 Author: tota Date: Sat Sep 17 11:21:16 2016 New Revision: 422308 URL: https://svnweb.freebsd.org/changeset/ports/422308 Log: - Update to 1.1.1.2 Modified: head/graphics/R-cran-dygraphs/Makefile (contents, props changed) head/graphics/R-cran-dygraphs/distinfo (contents, props changed) Modified: head/graphics/R-cran-dygraphs/Makefile ============================================================================== --- head/graphics/R-cran-dygraphs/Makefile Sat Sep 17 10:34:56 2016 (r422307) +++ head/graphics/R-cran-dygraphs/Makefile Sat Sep 17 11:21:16 2016 (r422308) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dygraphs -DISTVERSION= 1.1.1-1 +DISTVERSION= 1.1.1.2 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/graphics/R-cran-dygraphs/distinfo ============================================================================== --- head/graphics/R-cran-dygraphs/distinfo Sat Sep 17 10:34:56 2016 (r422307) +++ head/graphics/R-cran-dygraphs/distinfo Sat Sep 17 11:21:16 2016 (r422308) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470661698 -SHA256 (dygraphs_1.1.1-1.tar.gz) = cb649a07bfb38cb9cc41589c112da48120c9f45e110fe7cedef707c3c1333baf -SIZE (dygraphs_1.1.1-1.tar.gz) = 293309 +TIMESTAMP = 1474102418 +SHA256 (dygraphs_1.1.1.2.tar.gz) = 4272d845b72daf075bd3111b066b8e4b53f7a035217a40a7f9219f4eb202ae0c +SIZE (dygraphs_1.1.1.2.tar.gz) = 293402 From owner-svn-ports-head@freebsd.org Sat Sep 17 11:36:09 2016 Return-Path: Delivered-To: svn-ports-head@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 2E9D0BDEDDA; Sat, 17 Sep 2016 11:36:09 +0000 (UTC) (envelope-from olivierd@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 E67106EF; Sat, 17 Sep 2016 11:36:08 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HBa8iq042561; Sat, 17 Sep 2016 11:36:08 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HBa7gW042558; Sat, 17 Sep 2016 11:36:07 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609171136.u8HBa7gW042558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sat, 17 Sep 2016 11:36:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422309 - head/devel/libburn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 11:36:09 -0000 Author: olivierd Date: Sat Sep 17 11:36:07 2016 New Revision: 422309 URL: https://svnweb.freebsd.org/changeset/ports/422309 Log: Update to 1.4.6 Modified: head/devel/libburn/Makefile head/devel/libburn/distinfo head/devel/libburn/pkg-plist Modified: head/devel/libburn/Makefile ============================================================================== --- head/devel/libburn/Makefile Sat Sep 17 11:21:16 2016 (r422308) +++ head/devel/libburn/Makefile Sat Sep 17 11:36:07 2016 (r422309) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libburn -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.6 CATEGORIES= devel MASTER_SITES= http://files.libburnia-project.org/releases/ Modified: head/devel/libburn/distinfo ============================================================================== --- head/devel/libburn/distinfo Sat Sep 17 11:21:16 2016 (r422308) +++ head/devel/libburn/distinfo Sat Sep 17 11:36:07 2016 (r422309) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467475512 -SHA256 (libburn-1.4.4.tar.gz) = 1bf7040d6f1274acd868aec02a3c13241d0da8d9078067d228f2966ca40e7d14 -SIZE (libburn-1.4.4.tar.gz) = 972931 +TIMESTAMP = 1474102341 +SHA256 (libburn-1.4.6.tar.gz) = 9d36faab25478c01122a65873133b7fc60eb5ffbe12710d5757a7c3574227071 +SIZE (libburn-1.4.6.tar.gz) = 975088 Modified: head/devel/libburn/pkg-plist ============================================================================== --- head/devel/libburn/pkg-plist Sat Sep 17 11:21:16 2016 (r422308) +++ head/devel/libburn/pkg-plist Sat Sep 17 11:36:07 2016 (r422309) @@ -3,6 +3,6 @@ include/libburn/libburn.h lib/libburn.a lib/libburn.so lib/libburn.so.4 -lib/libburn.so.4.97.0 +lib/libburn.so.4.99.0 libdata/pkgconfig/libburn-1.pc man/man1/cdrskin.1.gz From owner-svn-ports-head@freebsd.org Sat Sep 17 11:38:49 2016 Return-Path: Delivered-To: svn-ports-head@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 23201BDEE40; Sat, 17 Sep 2016 11:38:49 +0000 (UTC) (envelope-from olivierd@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 E9B1083D; Sat, 17 Sep 2016 11:38:48 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HBcm5q042778; Sat, 17 Sep 2016 11:38:48 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HBclLJ042775; Sat, 17 Sep 2016 11:38:47 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609171138.u8HBclLJ042775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sat, 17 Sep 2016 11:38:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422310 - head/devel/libisofs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 11:38:49 -0000 Author: olivierd Date: Sat Sep 17 11:38:47 2016 New Revision: 422310 URL: https://svnweb.freebsd.org/changeset/ports/422310 Log: Update to 1.4.6 Modified: head/devel/libisofs/Makefile head/devel/libisofs/distinfo head/devel/libisofs/pkg-plist Modified: head/devel/libisofs/Makefile ============================================================================== --- head/devel/libisofs/Makefile Sat Sep 17 11:36:07 2016 (r422309) +++ head/devel/libisofs/Makefile Sat Sep 17 11:38:47 2016 (r422310) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libisofs -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.6 CATEGORIES= devel MASTER_SITES= http://files.libburnia-project.org/releases/ Modified: head/devel/libisofs/distinfo ============================================================================== --- head/devel/libisofs/distinfo Sat Sep 17 11:36:07 2016 (r422309) +++ head/devel/libisofs/distinfo Sat Sep 17 11:38:47 2016 (r422310) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467476256 -SHA256 (libisofs-1.4.4.tar.gz) = 2418f0feeea652dc122a39840d58c6931aa1008480385f7403881d82a629bdfd -SIZE (libisofs-1.4.4.tar.gz) = 824640 +TIMESTAMP = 1474102657 +SHA256 (libisofs-1.4.6.tar.gz) = 14ab0b384e988d651092ca184d5f18dba83a9cfa05ff5e581770d6baa879a50a +SIZE (libisofs-1.4.6.tar.gz) = 826874 Modified: head/devel/libisofs/pkg-plist ============================================================================== --- head/devel/libisofs/pkg-plist Sat Sep 17 11:36:07 2016 (r422309) +++ head/devel/libisofs/pkg-plist Sat Sep 17 11:38:47 2016 (r422310) @@ -2,5 +2,5 @@ include/libisofs/libisofs.h lib/libisofs.a lib/libisofs.so lib/libisofs.so.6 -lib/libisofs.so.6.80.0 +lib/libisofs.so.6.82.0 libdata/pkgconfig/libisofs-1.pc From owner-svn-ports-head@freebsd.org Sat Sep 17 11:42:00 2016 Return-Path: Delivered-To: svn-ports-head@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 4F163BDEF6A; Sat, 17 Sep 2016 11:42:00 +0000 (UTC) (envelope-from antoine@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 0DE92A36; Sat, 17 Sep 2016 11:41:59 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HBfxjC046324; Sat, 17 Sep 2016 11:41:59 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HBfwCu046320; Sat, 17 Sep 2016 11:41:58 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171141.u8HBfwCu046320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 11:41:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422311 - in head/security: . rubygem-rex-core X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 11:42:00 -0000 Author: antoine Date: Sat Sep 17 11:41:58 2016 New Revision: 422311 URL: https://svnweb.freebsd.org/changeset/ports/422311 Log: New port: security/rubygem-rex-core The Ruby Exploitation(rex) Core Gem contains the odds and ends of code that so many other pieces of Rex rely upon, but that are too small to be put into their own seperate gems. This include some of the ruby cross-platform compatibility and file utility code. WWW: https://github.com/rapid7/rex-core Added: head/security/rubygem-rex-core/ head/security/rubygem-rex-core/Makefile (contents, props changed) head/security/rubygem-rex-core/distinfo (contents, props changed) head/security/rubygem-rex-core/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 11:38:47 2016 (r422310) +++ head/security/Makefile Sat Sep 17 11:41:58 2016 (r422311) @@ -1014,6 +1014,7 @@ SUBDIR += rubygem-razorback-scriptNugget SUBDIR += rubygem-recog SUBDIR += rubygem-rex-arch + SUBDIR += rubygem-rex-core SUBDIR += rubygem-rex-java SUBDIR += rubygem-rex-mime SUBDIR += rubygem-rex-ole Added: head/security/rubygem-rex-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-core/Makefile Sat Sep 17 11:41:58 2016 (r422311) @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= rex-core +PORTVERSION= 0.1.2 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Core libraries required for the Ruby Exploitation(Rex) Suite + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-rex-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-core/distinfo Sat Sep 17 11:41:58 2016 (r422311) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473533338 +SHA256 (rubygem/rex-core-0.1.2.gem) = c5e923693a0f0aa2b1162e4ef01b4f1a6d44dd0801de67e1fc4f261494ae2ecf +SIZE (rubygem/rex-core-0.1.2.gem) = 29696 Added: head/security/rubygem-rex-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-core/pkg-descr Sat Sep 17 11:41:58 2016 (r422311) @@ -0,0 +1,6 @@ +The Ruby Exploitation(rex) Core Gem contains the odds and ends of code that so +many other pieces of Rex rely upon, but that are too small to be put into their +own seperate gems. This include some of the ruby cross-platform compatibility +and file utility code. + +WWW: https://github.com/rapid7/rex-core From owner-svn-ports-head@freebsd.org Sat Sep 17 11:45:56 2016 Return-Path: Delivered-To: svn-ports-head@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 C90ABBDE01D; Sat, 17 Sep 2016 11:45:56 +0000 (UTC) (envelope-from olivierd@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 98C18DB7; Sat, 17 Sep 2016 11:45:56 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HBjth7046638; Sat, 17 Sep 2016 11:45:55 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HBjtLJ046636; Sat, 17 Sep 2016 11:45:55 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201609171145.u8HBjtLJ046636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sat, 17 Sep 2016 11:45:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422312 - in head/sysutils: xfburn xorriso X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 11:45:56 -0000 Author: olivierd Date: Sat Sep 17 11:45:55 2016 New Revision: 422312 URL: https://svnweb.freebsd.org/changeset/ports/422312 Log: - Chase update of devel/libisofs (revision r422310) - Bump PORTREVISION Modified: head/sysutils/xfburn/Makefile head/sysutils/xorriso/Makefile Modified: head/sysutils/xfburn/Makefile ============================================================================== --- head/sysutils/xfburn/Makefile Sat Sep 17 11:41:58 2016 (r422311) +++ head/sysutils/xfburn/Makefile Sat Sep 17 11:45:55 2016 (r422312) @@ -3,7 +3,7 @@ PORTNAME= xfburn PORTVERSION= 0.5.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 Modified: head/sysutils/xorriso/Makefile ============================================================================== --- head/sysutils/xorriso/Makefile Sat Sep 17 11:41:58 2016 (r422311) +++ head/sysutils/xorriso/Makefile Sat Sep 17 11:45:55 2016 (r422312) @@ -3,6 +3,7 @@ PORTNAME= xorriso PORTVERSION= 1.4.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://files.libburnia-project.org/releases/ DISTNAME= libisoburn-${PORTVERSION} From owner-svn-ports-head@freebsd.org Sat Sep 17 12:04:48 2016 Return-Path: Delivered-To: svn-ports-head@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 1DC9CBDE9F6; Sat, 17 Sep 2016 12:04:48 +0000 (UTC) (envelope-from antoine@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 EE0789C7; Sat, 17 Sep 2016 12:04:47 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HC4lhM054011; Sat, 17 Sep 2016 12:04:47 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HC4kjT054007; Sat, 17 Sep 2016 12:04:46 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171204.u8HC4kjT054007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422313 - in head/security: . rubygem-rex-bin_tools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:04:48 -0000 Author: antoine Date: Sat Sep 17 12:04:46 2016 New Revision: 422313 URL: https://svnweb.freebsd.org/changeset/ports/422313 Log: New port: security/rubygem-rex-bin_tools Ruby Exploitation(Rex) Library for Binary Manipulation. This suite of tools contains ElfScan, MachScan, PEScan, and BinScan. These tools are designed to help you analyze an executable binary and search for particular instruction sets. This is particularly useful for things like building ROP chains or SEH exploits. WWW: https://github.com/rapid7/rex-bin_tools Added: head/security/rubygem-rex-bin_tools/ head/security/rubygem-rex-bin_tools/Makefile (contents, props changed) head/security/rubygem-rex-bin_tools/distinfo (contents, props changed) head/security/rubygem-rex-bin_tools/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 11:45:55 2016 (r422312) +++ head/security/Makefile Sat Sep 17 12:04:46 2016 (r422313) @@ -1014,6 +1014,7 @@ SUBDIR += rubygem-razorback-scriptNugget SUBDIR += rubygem-recog SUBDIR += rubygem-rex-arch + SUBDIR += rubygem-rex-bin_tools SUBDIR += rubygem-rex-core SUBDIR += rubygem-rex-java SUBDIR += rubygem-rex-mime Added: head/security/rubygem-rex-bin_tools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-bin_tools/Makefile Sat Sep 17 12:04:46 2016 (r422313) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= rex-bin_tools +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) Library for Binary Manipulation + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= nasm>=0:devel/nasm \ + rubygem-metasm>=0:devel/rubygem-metasm \ + rubygem-rex-arch>=0:security/rubygem-rex-arch \ + rubygem-rex-core>=0:security/rubygem-rex-core \ + rubygem-rex-struct2>=0:security/rubygem-rex-struct2 \ + rubygem-rex-text>=0:security/rubygem-rex-text + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +PLIST_FILES= bin/msfbinscan \ + bin/msfelfscan \ + bin/msfmachscan \ + bin/msfpescan + +.include Added: head/security/rubygem-rex-bin_tools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-bin_tools/distinfo Sat Sep 17 12:04:46 2016 (r422313) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473533629 +SHA256 (rubygem/rex-bin_tools-0.1.0.gem) = 63ce8a87b82ce8e1d6132c598f45c35ce3cf15d1fb4fa403dfd161cbbf4fc256 +SIZE (rubygem/rex-bin_tools-0.1.0.gem) = 82432 Added: head/security/rubygem-rex-bin_tools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-bin_tools/pkg-descr Sat Sep 17 12:04:46 2016 (r422313) @@ -0,0 +1,7 @@ +Ruby Exploitation(Rex) Library for Binary Manipulation. This suite of tools +contains ElfScan, MachScan, PEScan, and BinScan. These tools are designed to +help you analyze an executable binary and search for particular instruction +sets. This is particularly useful for things like building ROP chains or SEH +exploits. + +WWW: https://github.com/rapid7/rex-bin_tools From owner-svn-ports-head@freebsd.org Sat Sep 17 12:08:11 2016 Return-Path: Delivered-To: svn-ports-head@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 82E5FBDEACD; Sat, 17 Sep 2016 12:08:11 +0000 (UTC) (envelope-from antoine@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 43243AE8; Sat, 17 Sep 2016 12:08:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HC8AKs054282; Sat, 17 Sep 2016 12:08:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HC8Aux054278; Sat, 17 Sep 2016 12:08:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171208.u8HC8Aux054278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:08:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422314 - in head/security: . rubygem-rex-nop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:08:11 -0000 Author: antoine Date: Sat Sep 17 12:08:09 2016 New Revision: 422314 URL: https://svnweb.freebsd.org/changeset/ports/422314 Log: New port: security/rubygem-rex-nop This library contains the opty2 library for dynamic generation of x86 multi-byte NOPs. This is useful in writing exploits and encoders. It allows you to dynamic generate variable length instruction sets that are equivalent to a No Operation (NOP) without using the actual 0x90 bytecode. The original code was written by Optyx and spoonm. WWW: https://github.com/rapid7/rex-nop Added: head/security/rubygem-rex-nop/ head/security/rubygem-rex-nop/Makefile (contents, props changed) head/security/rubygem-rex-nop/distinfo (contents, props changed) head/security/rubygem-rex-nop/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 12:04:46 2016 (r422313) +++ head/security/Makefile Sat Sep 17 12:08:09 2016 (r422314) @@ -1018,6 +1018,7 @@ SUBDIR += rubygem-rex-core SUBDIR += rubygem-rex-java SUBDIR += rubygem-rex-mime + SUBDIR += rubygem-rex-nop SUBDIR += rubygem-rex-ole SUBDIR += rubygem-rex-powershell SUBDIR += rubygem-rex-random_identifier Added: head/security/rubygem-rex-nop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-nop/Makefile Sat Sep 17 12:08:09 2016 (r422314) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= rex-nop +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) library for NOP generation + +RUN_DEPENDS= rubygem-rex-arch>=0:security/rubygem-rex-arch + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-rex-nop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-nop/distinfo Sat Sep 17 12:08:09 2016 (r422314) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474026935 +SHA256 (rubygem/rex-nop-0.1.0.gem) = 5f80a4126ab722963bfa45802c7ad617f8b9b7e83cba7cda4bfe2bcaabfab1bd +SIZE (rubygem/rex-nop-0.1.0.gem) = 26624 Added: head/security/rubygem-rex-nop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-nop/pkg-descr Sat Sep 17 12:08:09 2016 (r422314) @@ -0,0 +1,7 @@ +This library contains the opty2 library for dynamic generation of x86 multi-byte +NOPs. This is useful in writing exploits and encoders. It allows you to dynamic +generate variable length instruction sets that are equivalent to a No Operation +(NOP) without using the actual 0x90 bytecode. The original code was written by +Optyx and spoonm. + +WWW: https://github.com/rapid7/rex-nop From owner-svn-ports-head@freebsd.org Sat Sep 17 12:13:45 2016 Return-Path: Delivered-To: svn-ports-head@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 91DF6BDEC59; Sat, 17 Sep 2016 12:13:45 +0000 (UTC) (envelope-from antoine@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 51160E67; Sat, 17 Sep 2016 12:13:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HCDipB058116; Sat, 17 Sep 2016 12:13:44 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HCDi6c058112; Sat, 17 Sep 2016 12:13:44 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171213.u8HCDi6c058112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:13:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422315 - in head/security: . rubygem-rex-rop_builder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:13:45 -0000 Author: antoine Date: Sat Sep 17 12:13:44 2016 New Revision: 422315 URL: https://svnweb.freebsd.org/changeset/ports/422315 Log: New port: security/rubygem-rex-rop_builder This is the Ruby Exploitation(Rex) Library for building ROP chains. It also comes with the msfrop command line tool. WWW: https://github.com/rapid7/rex-rop_builder Added: head/security/rubygem-rex-rop_builder/ head/security/rubygem-rex-rop_builder/Makefile (contents, props changed) head/security/rubygem-rex-rop_builder/distinfo (contents, props changed) head/security/rubygem-rex-rop_builder/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 12:08:09 2016 (r422314) +++ head/security/Makefile Sat Sep 17 12:13:44 2016 (r422315) @@ -1023,6 +1023,7 @@ SUBDIR += rubygem-rex-powershell SUBDIR += rubygem-rex-random_identifier SUBDIR += rubygem-rex-registry + SUBDIR += rubygem-rex-rop_builder SUBDIR += rubygem-rex-struct2 SUBDIR += rubygem-rex-text SUBDIR += rubygem-rex-zip Added: head/security/rubygem-rex-rop_builder/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-rop_builder/Makefile Sat Sep 17 12:13:44 2016 (r422315) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= rex-rop_builder +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) library for building ROP chains + +RUN_DEPENDS= rubygem-metasm>=0:devel/rubygem-metasm \ + rubygem-rex-core>=0:security/rubygem-rex-core \ + rubygem-rex-text>=0:security/rubygem-rex-text + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +PLIST_FILES= bin/msfrop + +.include Added: head/security/rubygem-rex-rop_builder/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-rop_builder/distinfo Sat Sep 17 12:13:44 2016 (r422315) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474027251 +SHA256 (rubygem/rex-rop_builder-0.1.0.gem) = 816c01f6ac10b2d4f8d7fb13dc3e562c21d15bdd0c67a3aea5db9a8f14999378 +SIZE (rubygem/rex-rop_builder-0.1.0.gem) = 16896 Added: head/security/rubygem-rex-rop_builder/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-rop_builder/pkg-descr Sat Sep 17 12:13:44 2016 (r422315) @@ -0,0 +1,4 @@ +This is the Ruby Exploitation(Rex) Library for building ROP chains. It also +comes with the msfrop command line tool. + +WWW: https://github.com/rapid7/rex-rop_builder From owner-svn-ports-head@freebsd.org Sat Sep 17 12:21:08 2016 Return-Path: Delivered-To: svn-ports-head@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 6EA2DBDEDB1; Sat, 17 Sep 2016 12:21:08 +0000 (UTC) (envelope-from antoine@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 30E389B; Sat, 17 Sep 2016 12:21:08 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HCL7dY061122; Sat, 17 Sep 2016 12:21:07 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HCL7vv061118; Sat, 17 Sep 2016 12:21:07 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171221.u8HCL7vv061118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:21:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422316 - in head/security: . rubygem-rex-socket X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:21:08 -0000 Author: antoine Date: Sat Sep 17 12:21:06 2016 New Revision: 422316 URL: https://svnweb.freebsd.org/changeset/ports/422316 Log: New port: security/rubygem-rex-socket The Ruby Exploitation(Rex) Socket Abstraction Library includes all of the code needed to turn sockets into Rex::Sockets with the functionality for things like L3 pivoting used by Metasploit. WWW: https://github.com/rapid7/rex-socket Added: head/security/rubygem-rex-socket/ head/security/rubygem-rex-socket/Makefile (contents, props changed) head/security/rubygem-rex-socket/distinfo (contents, props changed) head/security/rubygem-rex-socket/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 12:13:44 2016 (r422315) +++ head/security/Makefile Sat Sep 17 12:21:06 2016 (r422316) @@ -1024,6 +1024,7 @@ SUBDIR += rubygem-rex-random_identifier SUBDIR += rubygem-rex-registry SUBDIR += rubygem-rex-rop_builder + SUBDIR += rubygem-rex-socket SUBDIR += rubygem-rex-struct2 SUBDIR += rubygem-rex-text SUBDIR += rubygem-rex-zip Added: head/security/rubygem-rex-socket/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-socket/Makefile Sat Sep 17 12:21:06 2016 (r422316) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= rex-socket +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) socket abstraction library + +RUN_DEPENDS= rubygem-rex-core>=0:security/rubygem-rex-core + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-rex-socket/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-socket/distinfo Sat Sep 17 12:21:06 2016 (r422316) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474027552 +SHA256 (rubygem/rex-socket-0.1.0.gem) = dff8b1bfaf9d2f9d7a89e542c2496166ad835fa17ecfd0592b8cccb97b4a1134 +SIZE (rubygem/rex-socket-0.1.0.gem) = 38912 Added: head/security/rubygem-rex-socket/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-socket/pkg-descr Sat Sep 17 12:21:06 2016 (r422316) @@ -0,0 +1,5 @@ +The Ruby Exploitation(Rex) Socket Abstraction Library includes all of the code +needed to turn sockets into Rex::Sockets with the functionality for things like +L3 pivoting used by Metasploit. + +WWW: https://github.com/rapid7/rex-socket From owner-svn-ports-head@freebsd.org Sat Sep 17 12:24:41 2016 Return-Path: Delivered-To: svn-ports-head@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 09067BDB063; Sat, 17 Sep 2016 12:24:41 +0000 (UTC) (envelope-from antoine@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 B3260788; Sat, 17 Sep 2016 12:24:40 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HCOdx3062066; Sat, 17 Sep 2016 12:24:39 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HCOdmW062062; Sat, 17 Sep 2016 12:24:39 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171224.u8HCOdmW062062@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:24:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422317 - in head/security: . rubygem-rex-sslscan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:24:41 -0000 Author: antoine Date: Sat Sep 17 12:24:39 2016 New Revision: 422317 URL: https://svnweb.freebsd.org/changeset/ports/422317 Log: New port: security/rubygem-rex-sslscan This library is a pure ruby implementation of the SSLScan tool originally written by Ian Ventura-Whiting. WWW: https://github.com/rapid7/rex-sslscan Added: head/security/rubygem-rex-sslscan/ head/security/rubygem-rex-sslscan/Makefile (contents, props changed) head/security/rubygem-rex-sslscan/distinfo (contents, props changed) head/security/rubygem-rex-sslscan/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 17 12:21:06 2016 (r422316) +++ head/security/Makefile Sat Sep 17 12:24:39 2016 (r422317) @@ -1025,6 +1025,7 @@ SUBDIR += rubygem-rex-registry SUBDIR += rubygem-rex-rop_builder SUBDIR += rubygem-rex-socket + SUBDIR += rubygem-rex-sslscan SUBDIR += rubygem-rex-struct2 SUBDIR += rubygem-rex-text SUBDIR += rubygem-rex-zip Added: head/security/rubygem-rex-sslscan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-sslscan/Makefile Sat Sep 17 12:24:39 2016 (r422317) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= rex-sslscan +PORTVERSION= 0.1.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Ruby Exploitation(Rex) library for scanning SSL/TLS capabilities + +RUN_DEPENDS= rubygem-rex-socket>=0:security/rubygem-rex-socket \ + rubygem-rex-text>=0:security/rubygem-rex-text + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-rex-sslscan/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-sslscan/distinfo Sat Sep 17 12:24:39 2016 (r422317) @@ -0,0 +1,3 @@ +TIMESTAMP = 1474027771 +SHA256 (rubygem/rex-sslscan-0.1.0.gem) = 4706577f8214cc896a445caee43c32a89cf32979548399200b3446e3625f248f +SIZE (rubygem/rex-sslscan-0.1.0.gem) = 16896 Added: head/security/rubygem-rex-sslscan/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-rex-sslscan/pkg-descr Sat Sep 17 12:24:39 2016 (r422317) @@ -0,0 +1,4 @@ +This library is a pure ruby implementation of the SSLScan tool originally +written by Ian Ventura-Whiting. + +WWW: https://github.com/rapid7/rex-sslscan From owner-svn-ports-head@freebsd.org Sat Sep 17 12:26:15 2016 Return-Path: Delivered-To: svn-ports-head@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 9C9D1BDB0E5; Sat, 17 Sep 2016 12:26:15 +0000 (UTC) (envelope-from antoine@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 7AA8E879; Sat, 17 Sep 2016 12:26:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HCQE2W062235; Sat, 17 Sep 2016 12:26:14 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HCQEns062233; Sat, 17 Sep 2016 12:26:14 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201609171226.u8HCQEns062233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 17 Sep 2016 12:26:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422318 - head/security/metasploit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:26:15 -0000 Author: antoine Date: Sat Sep 17 12:26:14 2016 New Revision: 422318 URL: https://svnweb.freebsd.org/changeset/ports/422318 Log: Update to 4.12.26 Modified: head/security/metasploit/Makefile head/security/metasploit/distinfo Modified: head/security/metasploit/Makefile ============================================================================== --- head/security/metasploit/Makefile Sat Sep 17 12:24:39 2016 (r422317) +++ head/security/metasploit/Makefile Sat Sep 17 12:26:14 2016 (r422318) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= metasploit -PORTVERSION= 4.12.23 +PORTVERSION= 4.12.26 CATEGORIES= security MAINTAINER= tanawts@gmail.com @@ -11,8 +11,7 @@ COMMENT= Exploit-Framework for Penetrati LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= nasm:devel/nasm \ - nmap:security/nmap \ +RUN_DEPENDS= nmap:security/nmap \ rubygem-activerecord4>=4.2.6:databases/rubygem-activerecord4 \ rubygem-activesupport4>=4.2.6:devel/rubygem-activesupport4 \ rubygem-actionpack4>=4.2.6:www/rubygem-actionpack4 \ @@ -29,6 +28,7 @@ RUN_DEPENDS= nasm:devel/nasm \ rubygem-metasploit_payloads-mettle>=0:security/rubygem-metasploit_payloads-mettle \ rubygem-msgpack>=0:devel/rubygem-msgpack \ rubygem-network_interface>=0:net/rubygem-network_interface \ + rubygem-rubyntlm>=0:net/rubygem-rubyntlm \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-packetfu>=0:net/rubygem-packetfu \ rubygem-pcaprub>=0:net/rubygem-pcaprub \ @@ -44,12 +44,18 @@ RUN_DEPENDS= nasm:devel/nasm \ rubygem-windows_error>=0:devel/rubygem-windows_error \ rubygem-net-ssh>=0:security/rubygem-net-ssh \ rubygem-rex-arch>=0:security/rubygem-rex-arch \ + rubygem-rex-bin_tools>=0:security/rubygem-rex-bin_tools \ + rubygem-rex-core>=0:security/rubygem-rex-core \ rubygem-rex-java>=0:security/rubygem-rex-java \ rubygem-rex-mime>=0:security/rubygem-rex-mime \ + rubygem-rex-nop>=0:security/rubygem-rex-nop \ rubygem-rex-ole>=0:security/rubygem-rex-ole \ rubygem-rex-powershell>=0:security/rubygem-rex-powershell \ rubygem-rex-random_identifier>=0:security/rubygem-rex-random_identifier \ rubygem-rex-registry>=0:security/rubygem-rex-registry \ + rubygem-rex-rop_builder>=0:security/rubygem-rex-rop_builder \ + rubygem-rex-socket>=0:security/rubygem-rex-socket \ + rubygem-rex-sslscan>=0:security/rubygem-rex-sslscan \ rubygem-rex-struct2>=0:security/rubygem-rex-struct2 \ rubygem-rex-text>=0:security/rubygem-rex-text \ rubygem-rex-zip>=0:security/rubygem-rex-zip \ @@ -61,8 +67,7 @@ RUN_DEPENDS= nasm:devel/nasm \ rubygem-openvas-omp>=0:security/rubygem-openvas-omp \ rubygem-nessus_rest>=0:security/rubygem-nessus_rest -SCRIPTS= msfbinscan msfconsole msfd msfelfscan \ - msfmachscan msfpescan msfrop msfrpc msfrpcd msfvenom +SCRIPTS= msfconsole msfd msfrpc msfrpcd msfvenom USE_GITHUB= yes GH_ACCOUNT= rapid7 Modified: head/security/metasploit/distinfo ============================================================================== --- head/security/metasploit/distinfo Sat Sep 17 12:24:39 2016 (r422317) +++ head/security/metasploit/distinfo Sat Sep 17 12:26:14 2016 (r422318) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472927823 -SHA256 (rapid7-metasploit-framework-4.12.23_GH0.tar.gz) = 7950d48920ae2e1dfb629c715002c58e4910ef052b183d82367ddc843d4e0a7a -SIZE (rapid7-metasploit-framework-4.12.23_GH0.tar.gz) = 23364474 +TIMESTAMP = 1474091276 +SHA256 (rapid7-metasploit-framework-4.12.26_GH0.tar.gz) = 03589d80eb9276fe67ae9a87a26a6a36a95a026338c7288ac0240f6a39c2c789 +SIZE (rapid7-metasploit-framework-4.12.26_GH0.tar.gz) = 23230122 From owner-svn-ports-head@freebsd.org Sat Sep 17 12:34:23 2016 Return-Path: Delivered-To: svn-ports-head@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 0E31DBDB5E6; Sat, 17 Sep 2016 12:34:23 +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 C2476C75; Sat, 17 Sep 2016 12:34:22 +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 u8HCYLE2066040; Sat, 17 Sep 2016 12:34:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HCYLLn066030; Sat, 17 Sep 2016 12:34:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609171234.u8HCYLLn066030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 17 Sep 2016 12:34:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422319 - in head/devel/android-tools-simpleperf: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:34:23 -0000 Author: jbeich Date: Sat Sep 17 12:34:20 2016 New Revision: 422319 URL: https://svnweb.freebsd.org/changeset/ports/422319 Log: devel/android-tools-simpleperf: update to 7.0.0.r1 (nougat) Note, reading .gnu_debugdata (lzma code) isn't supported in the release. Changes: https://android.googlesource.com/platform/system/extras/+log/ea4a5a4..android-7.0.0_r1/simpleperf Added: head/devel/android-tools-simpleperf/files/patch-liblog_logger__write.c (contents, props changed) - copied, changed from r422318, head/devel/android-tools-adb/files/patch-liblog_logger__write.c head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp (contents, props changed) Deleted: head/devel/android-tools-simpleperf/files/patch-libcutils_threads.c head/devel/android-tools-simpleperf/files/patch-liblog_logd__write.c Modified: head/devel/android-tools-simpleperf/Makefile (contents, props changed) head/devel/android-tools-simpleperf/distinfo (contents, props changed) head/devel/android-tools-simpleperf/files/Makefile (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_logging.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_stringprintf__test.cpp (contents, props changed) head/devel/android-tools-simpleperf/pkg-descr (contents, props changed) Modified: head/devel/android-tools-simpleperf/Makefile ============================================================================== --- head/devel/android-tools-simpleperf/Makefile Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/Makefile Sat Sep 17 12:34:20 2016 (r422319) @@ -2,28 +2,21 @@ PORTNAME= android-tools-simpleperf DISTVERSIONPREFIX= android- -DISTVERSION= n-preview-1-116 -DISTVERSIONSUFFIX= -gea4a5a4 +DISTVERSION= 7.0.0_r1 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org COMMENT= Android simpleperf tool -LICENSE= APACHE20 PD -LICENSE_COMB= multi -LICENSE_FILE_PD= ${WRKSRC}/lzma/NOTICE +LICENSE= APACHE20 BUILD_DEPENDS= llvm-config${LLVM_VER}:devel/llvm${LLVM_VER} USE_GITHUB= yes -GH_ACCOUNT= android:bionic,core jbeich:DEFAULT,lzma +GH_ACCOUNT= android:bionic,core jbeich GH_PROJECT= platform_bionic:bionic platform_system_core:core \ - platform_system_extras platform_external_lzma:lzma -GH_MYTAG= ${DISTVERSIONPREFIX}${DISTVERSION:C/-[0-9]*$//} -GH_TAGNAME= ${GH_MYTAG}-249-g5f1de52:bionic \ - ${GH_MYTAG}-554-g371e7ea170d7:core \ - ${GH_MYTAG}-6-ge43f249:lzma -GH_SUBDIR= bionic:bionic lzma:lzma + platform_system_extras +GH_SUBDIR= bionic:bionic USES= compiler:c++11-lib uidfix BUILD_WRKSRC= ${WRKSRC}/simpleperf Modified: head/devel/android-tools-simpleperf/distinfo ============================================================================== --- head/devel/android-tools-simpleperf/distinfo Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/distinfo Sat Sep 17 12:34:20 2016 (r422319) @@ -1,8 +1,7 @@ -SHA256 (jbeich-platform_system_extras-android-n-preview-1-116-gea4a5a4_GH0.tar.gz) = 6bfedb3758797d21c901daff05f3b0a29785e5cee241ceeb9a14524e7166676d -SIZE (jbeich-platform_system_extras-android-n-preview-1-116-gea4a5a4_GH0.tar.gz) = 76583329 -SHA256 (android-platform_bionic-android-n-preview-1-249-g5f1de52_GH0.tar.gz) = f82cc222e0de014fa8752b622073af6be748136a5aefd498a171b34948cc5785 -SIZE (android-platform_bionic-android-n-preview-1-249-g5f1de52_GH0.tar.gz) = 3492411 -SHA256 (android-platform_system_core-android-n-preview-1-554-g371e7ea170d7_GH0.tar.gz) = 6672ae5e1088335f2f721b357f178163c19259abe38a8b307ebb0c8b37b291cb -SIZE (android-platform_system_core-android-n-preview-1-554-g371e7ea170d7_GH0.tar.gz) = 1536079 -SHA256 (jbeich-platform_external_lzma-android-n-preview-1-6-ge43f249_GH0.tar.gz) = 176f7ad8c41794e144da17d3263e4a95b13528b9a425e80882e9ee4cbe2e5f9a -SIZE (jbeich-platform_external_lzma-android-n-preview-1-6-ge43f249_GH0.tar.gz) = 704323 +TIMESTAMP = 1472009581 +SHA256 (jbeich-platform_system_extras-android-7.0.0_r1_GH0.tar.gz) = ff2ea6db032da70374edcd6867bd11d765a475a32d732b983d0dad6ae16e209b +SIZE (jbeich-platform_system_extras-android-7.0.0_r1_GH0.tar.gz) = 79621110 +SHA256 (android-platform_bionic-android-7.0.0_r1_GH0.tar.gz) = 60c75732796cffeff2006f63d556abb7af462939cdc710ff79edf56d26535d74 +SIZE (android-platform_bionic-android-7.0.0_r1_GH0.tar.gz) = 3514221 +SHA256 (android-platform_system_core-android-7.0.0_r1_GH0.tar.gz) = faa44f626dfab9e604f509cc541a8e491e7e46a9de42df3a9c1e24c36fd9f8c4 +SIZE (android-platform_system_core-android-7.0.0_r1_GH0.tar.gz) = 1570346 Modified: head/devel/android-tools-simpleperf/files/Makefile ============================================================================== --- head/devel/android-tools-simpleperf/files/Makefile Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/files/Makefile Sat Sep 17 12:34:20 2016 (r422319) @@ -47,13 +47,13 @@ TEST_SRCS+= test_utils.cpp # required by base .PATH: ${.CURDIR}/../liblog +SRCS+= config_write.c SRCS+= fake_log_device.c -SRCS+= logd_write.c -CPPFLAGS.logd_write.c+= -DFAKE_LOG_DEVICE=1 - -# required by base -.PATH: ${.CURDIR}/../libcutils -SRCS+= threads.c +SRCS+= fake_writer.c +SRCS+= logger_lock.c +SRCS+= logger_name.c +SRCS+= logger_write.c +CPPFLAGS.config_write.c+= -DFAKE_LOG_DEVICE=1 # required by libziparchive .PATH: ${.CURDIR}/../libutils @@ -63,24 +63,6 @@ SRCS+= FileMap.cpp .PATH: ${.CURDIR}/../libziparchive SRCS+= zip_archive.cc -# required by simpleperf -.PATH: ${.CURDIR}/../lzma/C -SRCS+= 7zCrc.c -SRCS+= 7zCrcOpt.c -SRCS+= Bra86.c -SRCS+= Bra.c -SRCS+= BraIA64.c -SRCS+= CpuArch.c -SRCS+= Delta.c -SRCS+= Lzma2Dec.c -SRCS+= LzmaDec.c -SRCS+= Sha256.c -SRCS+= Xz.c -SRCS+= XzCrc64.c -SRCS+= XzCrc64Opt.c -SRCS+= XzDec.c - -CPPFLAGS+= -D_7ZIP_ST CPPFLAGS+= -D_WITH_GETLINE CPPFLAGS+= -DUSE_BIONIC_UAPI_HEADERS CPPFLAGS+= -Doff64_t=off_t @@ -93,7 +75,6 @@ CPPFLAGS+= -I${.CURDIR}/nonlinux_support CPPFLAGS+= -I${.CURDIR}/../include CPPFLAGS+= -I${.CURDIR}/../base/include CPPFLAGS+= -I${.CURDIR}/../bionic/libc/kernel -CPPFLAGS+= -I${.CURDIR}/../lzma/C CPPFLAGS+= $$(${LLVM_CONFIG} --cppflags) CPPFLAGS+= ${CPPFLAGS.${.IMPSRC:T}} CXXFLAGS+= -std=gnu++11 Modified: head/devel/android-tools-simpleperf/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-simpleperf/files/patch-base_file.cpp Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/files/patch-base_file.cpp Sat Sep 17 12:34:20 2016 (r422319) @@ -1,10 +1,11 @@ ---- base/file.cpp.orig 2015-08-12 23:28:08 UTC +--- base/file.cpp.orig 2016-08-08 21:10:17 UTC +++ base/file.cpp -@@ -21,6 +21,7 @@ +@@ -21,6 +21,8 @@ #include #include ++#include // BUFSIZ +#include // strerror #include - #include "base/macros.h" // For TEMP_FAILURE_RETRY on Darwin. + #include "android-base/macros.h" // For TEMP_FAILURE_RETRY on Darwin. Modified: head/devel/android-tools-simpleperf/files/patch-base_logging.cpp ============================================================================== --- head/devel/android-tools-simpleperf/files/patch-base_logging.cpp Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/files/patch-base_logging.cpp Sat Sep 17 12:34:20 2016 (r422319) @@ -1,7 +1,7 @@ ---- base/logging.cpp.orig 2015-08-12 23:28:08 UTC +--- base/logging.cpp.orig 2016-08-08 21:10:17 UTC +++ base/logging.cpp -@@ -23,12 +23,14 @@ - #include +@@ -25,7 +25,7 @@ + #include // For getprogname(3) or program_invocation_short_name. -#if defined(__ANDROID__) || defined(__APPLE__) @@ -9,14 +9,16 @@ #include #elif defined(__GLIBC__) #include +@@ -35,6 +35,8 @@ + #include #endif -+#include // strlen ++#include // strrchr +#include // fprintf #include #include #include -@@ -66,6 +68,14 @@ +@@ -71,6 +72,14 @@ #include #elif defined(_WIN32) #include @@ -30,8 +32,8 @@ +#include #endif - static pid_t GetThreadId() { -@@ -77,6 +89,14 @@ static pid_t GetThreadId() { + #if defined(_WIN32) +@@ -88,6 +97,14 @@ static thread_id GetThreadId() { return syscall(__NR_gettid); #elif defined(_WIN32) return GetCurrentThreadId(); Modified: head/devel/android-tools-simpleperf/files/patch-base_stringprintf__test.cpp ============================================================================== --- head/devel/android-tools-simpleperf/files/patch-base_stringprintf__test.cpp Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/files/patch-base_stringprintf__test.cpp Sat Sep 17 12:34:20 2016 (r422319) @@ -1,4 +1,4 @@ ---- base/stringprintf_test.cpp.orig 2015-08-12 23:28:08 UTC +--- base/stringprintf_test.cpp.orig 2015-09-17 22:58:36 UTC +++ base/stringprintf_test.cpp @@ -18,6 +18,7 @@ Copied and modified: head/devel/android-tools-simpleperf/files/patch-liblog_logger__write.c (from r422318, head/devel/android-tools-adb/files/patch-liblog_logger__write.c) ============================================================================== Added: head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp Sat Sep 17 12:34:20 2016 (r422319) @@ -0,0 +1,22 @@ +libc++ fails with higher default. + + [ RUN ] logging.LOG + base/logging_test.cpp:162: Failure + Expected: (output.length()) > (strlen("foobar")), actual: 0 vs 6 + [ FAILED ] logging.LOG (1 ms) + [ RUN ] logging.PLOG + base/logging_test.cpp:252: Failure + Expected: (output.length()) > (strlen("foobar")), actual: 0 vs 6 + [ FAILED ] logging.PLOG (0 ms) + +--- simpleperf/gtest_main.cpp 2016-06-28 07:04:19.000000000 +0000 ++++ simpleperf/gtest_main.cpp +@@ -137,7 +137,7 @@ class SavedPerfHardenProperty { + int main(int argc, char** argv) { + InitLogging(argv, android::base::StderrLogger); + testing::InitGoogleTest(&argc, argv); +- android::base::LogSeverity log_severity = android::base::WARNING; ++ android::base::LogSeverity log_severity = android::base::GetMinimumLogSeverity(); + + for (int i = 1; i < argc; ++i) { + if (strcmp(argv[i], "-t") == 0 && i + 1 < argc) { Modified: head/devel/android-tools-simpleperf/pkg-descr ============================================================================== --- head/devel/android-tools-simpleperf/pkg-descr Sat Sep 17 12:26:14 2016 (r422318) +++ head/devel/android-tools-simpleperf/pkg-descr Sat Sep 17 12:34:20 2016 (r422319) @@ -1,2 +1,7 @@ -simpleperf is a minimal Linux perf implementation for extracting -sampling information out of perf.data. +Simpleperf is a native profiling tool for Android. Its command-line +interface supports broadly the same options as the linux-tools perf, +but also supports various Android-specific improvements. + +This package only provides subcommands to read perf.data. + +WWW: https://android.googlesource.com/platform/prebuilts/simpleperf/ From owner-svn-ports-head@freebsd.org Sat Sep 17 12:36:22 2016 Return-Path: Delivered-To: svn-ports-head@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 ACBEFBDB676; Sat, 17 Sep 2016 12:36:22 +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 7A05BDA6; Sat, 17 Sep 2016 12:36:22 +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 u8HCaLvl066215; Sat, 17 Sep 2016 12:36:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HCaLRA066214; Sat, 17 Sep 2016 12:36:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609171236.u8HCaLRA066214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 17 Sep 2016 12:36:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422320 - head/devel/android-tools-simpleperf/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 12:36:22 -0000 Author: jbeich Date: Sat Sep 17 12:36:21 2016 New Revision: 422320 URL: https://svnweb.freebsd.org/changeset/ports/422320 Log: devel/android-tools-simpleperf: oops, pacify portlint Modified: head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp (contents, props changed) Modified: head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp ============================================================================== --- head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp Sat Sep 17 12:34:20 2016 (r422319) +++ head/devel/android-tools-simpleperf/files/patch-simpleperf_gtest__main.cpp Sat Sep 17 12:36:21 2016 (r422320) @@ -9,7 +9,7 @@ libc++ fails with higher default. Expected: (output.length()) > (strlen("foobar")), actual: 0 vs 6 [ FAILED ] logging.PLOG (0 ms) ---- simpleperf/gtest_main.cpp 2016-06-28 07:04:19.000000000 +0000 +--- simpleperf/gtest_main.cpp 2016-06-28 07:04:19 UTC +++ simpleperf/gtest_main.cpp @@ -137,7 +137,7 @@ class SavedPerfHardenProperty { int main(int argc, char** argv) { From owner-svn-ports-head@freebsd.org Sat Sep 17 13:07:55 2016 Return-Path: Delivered-To: svn-ports-head@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 12B45BDC027; Sat, 17 Sep 2016 13:07:55 +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 BC718BED; Sat, 17 Sep 2016 13:07:54 +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 u8HD7r8T077772; Sat, 17 Sep 2016 13:07:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HD7rV8077769; Sat, 17 Sep 2016 13:07:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609171307.u8HD7rV8077769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 17 Sep 2016 13:07:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422321 - in head/www: firefox firefox-i18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 13:07:55 -0000 Author: jbeich Date: Sat Sep 17 13:07:53 2016 New Revision: 422321 URL: https://svnweb.freebsd.org/changeset/ports/422321 Log: www/firefox: update to 49.0 (rc4) Changes: https://hg.mozilla.org/releases/mozilla-release/rev/416dc3163a1f MFH: 2016Q3 Modified: head/www/firefox-i18n/Makefile (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/distinfo (contents, props changed) Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Sat Sep 17 12:36:21 2016 (r422320) +++ head/www/firefox-i18n/Makefile Sat Sep 17 13:07:53 2016 (r422321) @@ -5,7 +5,7 @@ PORTNAME= firefox-i18n PORTVERSION= 49.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build3/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build4/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sat Sep 17 12:36:21 2016 (r422320) +++ head/www/firefox/Makefile Sat Sep 17 13:07:53 2016 (r422321) @@ -4,11 +4,11 @@ PORTNAME= firefox DISTVERSION= 49.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build4/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Sat Sep 17 12:36:21 2016 (r422320) +++ head/www/firefox/distinfo Sat Sep 17 13:07:53 2016 (r422321) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473848106 -SHA256 (firefox-49.0.source.tar.xz) = d1678e22a600f312b83478083ba5fc3f64ce92165ab9aeb1d91243f2a80e639b -SIZE (firefox-49.0.source.tar.xz) = 189617796 +TIMESTAMP = 1474027771 +SHA256 (firefox-49.0.source.tar.xz) = 6f7069fa94688f9fb5aa3bbb2ffa78456825067dd984afa714d74b3f0c6eaf63 +SIZE (firefox-49.0.source.tar.xz) = 189615184 From owner-svn-ports-head@freebsd.org Sat Sep 17 13:26:12 2016 Return-Path: Delivered-To: svn-ports-head@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 5D25BBDC608; Sat, 17 Sep 2016 13:26:12 +0000 (UTC) (envelope-from linimon@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 2DDDC639; Sat, 17 Sep 2016 13:26:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HDQBO7085265; Sat, 17 Sep 2016 13:26:11 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HDQBwp085264; Sat, 17 Sep 2016 13:26:11 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201609171326.u8HDQBwp085264@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 17 Sep 2016 13:26:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422322 - head/devel/py-cffi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 13:26:12 -0000 Author: linimon Date: Sat Sep 17 13:26:11 2016 New Revision: 422322 URL: https://svnweb.freebsd.org/changeset/ports/422322 Log: Attempt to fix build on non-clang architectures (certain tier-2). PR: 212739 Approved by: maintainer Modified: head/devel/py-cffi/Makefile Modified: head/devel/py-cffi/Makefile ============================================================================== --- head/devel/py-cffi/Makefile Sat Sep 17 13:07:53 2016 (r422321) +++ head/devel/py-cffi/Makefile Sat Sep 17 13:26:11 2016 (r422322) @@ -18,14 +18,16 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycp TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest # Actually 2.6-2.7,3.2-3.5 -USES= localbase python +USES= localbase python compiler USE_PYTHON= autoplist distutils .include .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 +.if ${COMPILER_TYPE:Mclang} CFLAGS+= -Wno-shift-negative-value .endif +.endif # Tests assume gcc, and fail on pure clang systems # Fixed in https://bitbucket.org/cffi/cffi/issues/271 From owner-svn-ports-head@freebsd.org Sat Sep 17 13:27:05 2016 Return-Path: Delivered-To: svn-ports-head@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 AADBBBDC655; Sat, 17 Sep 2016 13:27:05 +0000 (UTC) (envelope-from linimon@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 7C47A77E; Sat, 17 Sep 2016 13:27:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HDR4Ki085423; Sat, 17 Sep 2016 13:27:04 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HDR4wX085422; Sat, 17 Sep 2016 13:27:04 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201609171327.u8HDR4wX085422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 17 Sep 2016 13:27:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422323 - head/misc/rump X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 13:27:05 -0000 Author: linimon Date: Sat Sep 17 13:27:04 2016 New Revision: 422323 URL: https://svnweb.freebsd.org/changeset/ports/422323 Log: Mark NOT_FOR_ARCHS on various tier-2. PR: 212740 Approved by: maintainer Modified: head/misc/rump/Makefile Modified: head/misc/rump/Makefile ============================================================================== --- head/misc/rump/Makefile Sat Sep 17 13:26:11 2016 (r422322) +++ head/misc/rump/Makefile Sat Sep 17 13:27:04 2016 (r422323) @@ -14,6 +14,9 @@ LICENSE= BSD2CLAUSE BROKEN_powerpc64= Does not build +NOT_FOR_ARCHS= armv6 mips mips64 sparc64 +NOT_FOR_ARCHS_REASON= not yet ported to FreeBSD on this architecture + USE_LDCONFIG= yes USE_GCC= any From owner-svn-ports-head@freebsd.org Sat Sep 17 13:27:06 2016 Return-Path: Delivered-To: svn-ports-head@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 10144BDC65D; Sat, 17 Sep 2016 13:27:06 +0000 (UTC) (envelope-from riggs@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 D71DD781; Sat, 17 Sep 2016 13:27:05 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HDR5HT085520; Sat, 17 Sep 2016 13:27:05 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HDR577085519; Sat, 17 Sep 2016 13:27:05 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609171327.u8HDR577085519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 17 Sep 2016 13:27:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422324 - head/multimedia/mp4v2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 13:27:06 -0000 Author: riggs Date: Sat Sep 17 13:27:04 2016 New Revision: 422324 URL: https://svnweb.freebsd.org/changeset/ports/422324 Log: Un-break port; distfile is fetchable again While on it: - Add LICENSE - Use install-strip install target - Bump PORTREVISION PR: 212752 Reported by: rajil.s@gmail.com Modified: head/multimedia/mp4v2/Makefile Modified: head/multimedia/mp4v2/Makefile ============================================================================== --- head/multimedia/mp4v2/Makefile Sat Sep 17 13:27:04 2016 (r422323) +++ head/multimedia/mp4v2/Makefile Sat Sep 17 13:27:04 2016 (r422324) @@ -3,14 +3,14 @@ PORTNAME= mp4v2 PORTVERSION= 1.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= LOCAL/riggs/mp4v2 MAINTAINER= multimedia@FreeBSD.org COMMENT= Library and tools to read, create, and modify mp4 files -BROKEN= Unfetchable (google code has gone away) +LICENSE= MPL CONFLICTS= mpeg4ip-libmp4v2-[0-9.]* USES= compiler gmake libtool tar:bzip2 @@ -19,6 +19,8 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ENV= "FOUND_HELP2MAN=no" +INSTALL_TARGET= install-strip + .include # GCC is broken with PCH: https://lists.freebsd.org/pipermail/svn-src-all/2015-March/101722.html From owner-svn-ports-head@freebsd.org Sat Sep 17 13:51:43 2016 Return-Path: Delivered-To: svn-ports-head@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 6C58EBDCF51; Sat, 17 Sep 2016 13:51:43 +0000 (UTC) (envelope-from linimon@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 3ED596AF; Sat, 17 Sep 2016 13:51:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HDpgIv096006; Sat, 17 Sep 2016 13:51:42 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HDpgqY096005; Sat, 17 Sep 2016 13:51:42 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201609171351.u8HDpgqY096005@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 17 Sep 2016 13:51:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422325 - head/net/norm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 13:51:43 -0000 Author: linimon Date: Sat Sep 17 13:51:42 2016 New Revision: 422325 URL: https://svnweb.freebsd.org/changeset/ports/422325 Log: Mark as broken on various tier-2 archs. Approved by: tier-2 blanket (portmgr) Modified: head/net/norm/Makefile Modified: head/net/norm/Makefile ============================================================================== --- head/net/norm/Makefile Sat Sep 17 13:27:04 2016 (r422324) +++ head/net/norm/Makefile Sat Sep 17 13:51:42 2016 (r422325) @@ -9,7 +9,10 @@ DISTNAME= src-norm-${DISTVERSION} MAINTAINER= hd@oc.dk COMMENT= NACK-Oriented Reliable Multicast (NORM) +BROKEN_mips= Does not build: named return values are no longer supported +BROKEN_mips64= Does not build: named return values are no longer supported BROKEN_powerpc64= Does not build +BROKEN_sparc64= Does not build: named return values are no longer supported WRKSRC= ${WRKDIR}/norm-${DISTVERSION} From owner-svn-ports-head@freebsd.org Sat Sep 17 14:02:32 2016 Return-Path: Delivered-To: svn-ports-head@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 6C166BDE169; Sat, 17 Sep 2016 14:02:32 +0000 (UTC) (envelope-from gjb@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 294FAC78; Sat, 17 Sep 2016 14:02:32 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HE2VmB000941; Sat, 17 Sep 2016 14:02:31 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HE2UpW000931; Sat, 17 Sep 2016 14:02:30 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201609171402.u8HE2UpW000931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Sat, 17 Sep 2016 14:02:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422326 - in head/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 14:02:32 -0000 Author: gjb Date: Sat Sep 17 14:02:30 2016 New Revision: 422326 URL: https://svnweb.freebsd.org/changeset/ports/422326 Log: Add 11.0-RC3 MANIFEST files. Remove 11.0-RC1 MANIFEST files. Approved by: bdrewery (maintainer, implicit, re blanket) Sponsored by: The FreeBSD Foundation Added: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.0-RC3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.0-RC3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.0-RC3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.0-RC3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.0-RC3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.0-RC3 (contents, props changed) Deleted: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.0-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.0-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.0-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.0-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.0-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.0-RC1 Modified: head/misc/freebsd-release-manifests/Makefile head/misc/freebsd-release-manifests/pkg-plist Modified: head/misc/freebsd-release-manifests/Makefile ============================================================================== --- head/misc/freebsd-release-manifests/Makefile Sat Sep 17 13:51:42 2016 (r422325) +++ head/misc/freebsd-release-manifests/Makefile Sat Sep 17 14:02:30 2016 (r422326) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= freebsd-release-manifests -DISTVERSION= 20160825 +DISTVERSION= 20160917 PORTREVISION= 0 CATEGORIES= misc MASTER_SITES= # Added: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.0-RC3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.0-RC3 Sat Sep 17 14:02:30 2016 (r422326) @@ -0,0 +1,10 @@ +base-dbg.txz 98647641ba457e76ee113cfd0a553b6a33bdcc606412aa7c6047778749aff7e7 1406 base_dbg "Base system (Debugging)" off +base.txz f4ed6ad68e2fb08398ffd6a25ee0d594edc3bda5be3a0175345c5c34f2acdcb9 22025 base "Base system (MANDATORY)" on +doc.txz 8c21ee2ebc70cfd96c8263a98a29e76ae6bde02b874ac3404b94e770d92ba8d3 120 doc "Additional Documentation" off +kernel-dbg.txz d0007ea348853df12f3d2677d2b5d6d8df0a84505786151416c8f5fb4cbde57e 817 kernel_dbg "Kernel (Debugging)" off +kernel.txz 48246006b0ae22f50786c570d32d294bbf9ac2cac9ee63224cd4c13a9002945c 826 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz 231818b292354f55f46a8e71664255e95151e44f0ac0d88498356c7e4c46072d 207 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz ffdbdd21ee5cbab753650282959625d22178bd5f5cbec015335ea6f5fb356938 725 lib32 "32-bit compatibility libraries" on +ports.txz de9c3fca79ee6b34e4986786ae8409a08faaa61d9679d5969111fc694fe51578 161250 ports "Ports tree" on +src.txz 327b713be14a810c201c4e4f70cf3740a4f6827c937aca118de286becb18c6d7 76917 src "System source tree" off +tests.txz ec53de0d84de8e34e04ec4a9ef55a5dde2589cda63652c5b30f7978b2914cc1c 3480 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.0-RC3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.0-RC3 Sat Sep 17 14:02:30 2016 (r422326) @@ -0,0 +1,8 @@ +base-dbg.txz b8b3aa93d331e79f3253653cba500a1aaac6f6f058232de2394901c680a32ff4 1374 base_dbg "Base system (Debugging)" off +base.txz c76e3061a933a9ef5abdc9f42815afbef305e492b4680c5ad8cb01aa2dbf57ce 21684 base "Base system (MANDATORY)" on +doc.txz 27ffac6f2b177387181199e3a1c1384aa2e3bcddfa0da3eac4b49a5b0abed462 120 doc "Additional Documentation" off +kernel-dbg.txz a355216092572eb548928d4af24f906874331ccfcfffd937452c5ca17180869e 552 kernel_dbg "Kernel (Debugging)" off +kernel.txz a9875116f2504f9d417ef74576fa2d23cae03eb0798b7b1234161dc898b2937a 560 kernel "Kernel (MANDATORY)" on +ports.txz 1d30e4989bf79b76382a212ea15d8e9ea88b36401d235065921583f758228704 161250 ports "Ports tree" on +src.txz 327b713be14a810c201c4e4f70cf3740a4f6827c937aca118de286becb18c6d7 76917 src "System source tree" off +tests.txz 95ae4b25c0c083b1d42c51c02157d84342e94dfdc67383354cdeeb5264529815 3476 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.0-RC3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.0-RC3 Sat Sep 17 14:02:30 2016 (r422326) @@ -0,0 +1,8 @@ +base-dbg.txz ac77dfc729f85591fb12a5cb27506328aef5c327ae0761e585a744e3507c7bbc 1406 base_dbg "Base system (Debugging)" off +base.txz 5d5d0441e84d51fd7ee0ba145f7b398ed15d5ac6e8966e18e0bea11b44f6a371 22043 base "Base system (MANDATORY)" on +doc.txz 0b657ae0f3637b5a7b9ac0d90c54094d262eb638c18c7afbc227306b9e637a0d 120 doc "Additional Documentation" off +kernel-dbg.txz 533b42be4ba1c1b14b461f30853b9a50c2998c9fa53af84ca11977595f55bb6e 834 kernel_dbg "Kernel (Debugging)" off +kernel.txz 63dd6850fc764f681216096d603aba9405697ee0a1e606b1fe8dc08f2e96b405 843 kernel "Kernel (MANDATORY)" on +ports.txz ae634c20754ba779d8e9af7ac29a0b9a124c820787e8df993046a28bb4d8b01e 161250 ports "Ports tree" on +src.txz 327b713be14a810c201c4e4f70cf3740a4f6827c937aca118de286becb18c6d7 76917 src "System source tree" off +tests.txz 2950b1184faf24cb61b4ef85a02891c7ceb2a13e2927c3a961f0bb45168091eb 3480 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.0-RC3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.0-RC3 Sat Sep 17 14:02:30 2016 (r422326) @@ -0,0 +1,8 @@ +base-dbg.txz 4a6852219410c2b1cfeb2efb3f49aa3a5d38cb0414305e937aa7e08481e38941 1386 base_dbg "Base system (Debugging)" off +base.txz 0cb15ce3ec57c3cc7be7617450562c755d545eb7dd2129240ae254c2598e2b07 22017 base "Base system (MANDATORY)" on +doc.txz 282988268c1a25452303b86c344866f1467c280faf9fb97df6605948f8e423b2 120 doc "Additional Documentation" off +kernel-dbg.txz 1a0bc9d6ad4c9c3a73e79c28035137b1113bbe49d9dc9c9abf238b94be9ab3ce 567 kernel_dbg "Kernel (Debugging)" off +kernel.txz 02c62eed62a8119c2196e59d8de625b16af55d709c1e656a3451e9f9f1a49526 575 kernel "Kernel (MANDATORY)" on +ports.txz 5b1ff1ee508d615c15c580ec00e4013cc869d52c149bc32b7cf180783df76f01 161250 ports "Ports tree" on +src.txz 327b713be14a810c201c4e4f70cf3740a4f6827c937aca118de286becb18c6d7 76917 src "System source tree" off +tests.txz 5252b91b566da0ab0de1a5f5748865bd816480e33ad3a139902a65c746cff790 3477 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.0-RC3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.0-RC3 Sat Sep 17 14:02:30 2016 (r422326) @@ -0,0 +1,10 @@ +base-dbg.txz f2c2100e13e6f3902e55ad56bdd1a69325bc0bbf3bde76097e14ac0ac7b5b2c1 1386 base_dbg "Base system (Debugging)" off +base.txz d705e00c555478da2b71d9a6f30f69c9310433a2dba97bdb0fc2cd6280dbab34 22030 base "Base system (MANDATORY)" on +doc.txz cc08c8f480645b5594e2f24dc6cf5850c5383b561d0709b8b3d6bc5caa6e247c 120 doc "Additional Documentation" off +kernel-dbg.txz 94172e60d511c20e1e0951837447bd03038dd3f8d1f10c2feb97358c076d6ee6 655 kernel_dbg "Kernel (Debugging)" off +kernel.txz ed5ca262e9bee8b8d8f47784e2942353c9c882ac0851cb252ac88280b631a5cf 663 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz 7579ae508d771c6179ccb053b9083e71179d2207bbc06232c6c403a300d717b3 206 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz 5b429731ac06c03772ec422bec9ac29f2ac606cd0bf4031bb324ede0dcbced50 722 lib32 "32-bit compatibility libraries" on +ports.txz 1f24dc2a3ca7dc8989e3f7fba3f869f69be21600cf9faebc86be188508aba107 161250 ports "Ports tree" on +src.txz 327b713be14a810c201c4e4f70cf3740a4f6827c937aca118de286becb18c6d7 76917 src "System source tree" off +tests.txz aa986b5864293cc3874ab023f35e3a627464cc9c35526b7aac555dddb48c68e7 3477 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.0-RC3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.0-RC3 Sat Sep 17 14:02:30 2016 (r422326) @@ -0,0 +1,8 @@ +base-dbg.txz 0f23aacd437ac846ce6ee9774725c2e68d98a3fea7451ea3f81ef122132af620 1382 base_dbg "Base system (Debugging)" off +base.txz 8a20c09d04840ecb3befbd355e11dab60830cc660357400533797dbfcb605525 22030 base "Base system (MANDATORY)" on +doc.txz 02aee64b054ef18e20703dfa1bccd38d19302cd423906403d32aac00b2c472ed 120 doc "Additional Documentation" off +kernel-dbg.txz 2c2f9aed9981cfb6a1c2220c18f8c07d4d6954668069759819eaffa497e365c6 547 kernel_dbg "Kernel (Debugging)" off +kernel.txz 7e250cc73924777ad1446d79a0b769f10dbe627132fed88fe3d8644a56b901ea 555 kernel "Kernel (MANDATORY)" on +ports.txz 0a4d0229c0fbd354b25824ab9b60ff924068a9b9e5a01a8c1e829f07dec1e3ab 161250 ports "Ports tree" on +src.txz 327b713be14a810c201c4e4f70cf3740a4f6827c937aca118de286becb18c6d7 76917 src "System source tree" off +tests.txz f27dfc08d01771a34bb1fa101163d3242783304282907db112d33f04b97e8ce4 3473 tests "Test suite" off Modified: head/misc/freebsd-release-manifests/pkg-plist ============================================================================== --- head/misc/freebsd-release-manifests/pkg-plist Sat Sep 17 13:51:42 2016 (r422325) +++ head/misc/freebsd-release-manifests/pkg-plist Sat Sep 17 14:02:30 2016 (r422326) @@ -44,15 +44,15 @@ %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.1-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.2-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-9.3-RELEASE -%%DATADIR%%/MANIFESTS/amd64-amd64-11.0-RC1 -%%DATADIR%%/MANIFESTS/arm64-aarch64-11.0-RC1 -%%DATADIR%%/MANIFESTS/i386-i386-11.0-RC1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.0-RC1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.0-RC1 -%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.0-RC1 %%DATADIR%%/MANIFESTS/amd64-amd64-11.0-RC2 %%DATADIR%%/MANIFESTS/arm64-aarch64-11.0-RC2 %%DATADIR%%/MANIFESTS/i386-i386-11.0-RC2 %%DATADIR%%/MANIFESTS/powerpc-powerpc-11.0-RC2 %%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.0-RC2 %%DATADIR%%/MANIFESTS/sparc64-sparc64-11.0-RC2 +%%DATADIR%%/MANIFESTS/amd64-amd64-11.0-RC3 +%%DATADIR%%/MANIFESTS/arm64-aarch64-11.0-RC3 +%%DATADIR%%/MANIFESTS/i386-i386-11.0-RC3 +%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.0-RC3 +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.0-RC3 +%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.0-RC3 From owner-svn-ports-head@freebsd.org Sat Sep 17 14:37:37 2016 Return-Path: Delivered-To: svn-ports-head@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 619D2BDECB4; Sat, 17 Sep 2016 14:37:37 +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 3BF83250; Sat, 17 Sep 2016 14:37:37 +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 u8HEbavg012546; Sat, 17 Sep 2016 14:37:36 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HEbanS012544; Sat, 17 Sep 2016 14:37:36 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201609171437.u8HEbanS012544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 17 Sep 2016 14:37:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422327 - in head/lang/phantomjs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 14:37:37 -0000 Author: feld Date: Sat Sep 17 14:37:36 2016 New Revision: 422327 URL: https://svnweb.freebsd.org/changeset/ports/422327 Log: lang/phantomjs: Fix build on 9.3 and 11.0 - Take maintainership (maintainer timeouts previously) - Remove no-op patch - Remove work related to GCC build profiles as we enforce clang - Add patch to fix building with clang in 11.0 - Add hack to enforce CC and CXX for 9.3 Partway through the build the compiler was switching from clang++ to c++ which is GCC in base system. This was causing build failures. MFH: 2016Q3 Added: head/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp (contents, props changed) Deleted: head/lang/phantomjs/files/patch-mkspecs-freebsd-g++-qmake.conf Modified: head/lang/phantomjs/Makefile Modified: head/lang/phantomjs/Makefile ============================================================================== --- head/lang/phantomjs/Makefile Sat Sep 17 14:02:30 2016 (r422326) +++ head/lang/phantomjs/Makefile Sat Sep 17 14:37:36 2016 (r422327) @@ -2,12 +2,12 @@ PORTNAME= phantomjs PORTVERSION= 2.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= https://bitbucket.org/ariya/phantomjs/downloads/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= feld@FreeBSD.org COMMENT= Minimalistic, headless, WebKit-based, JavaScript-driven tool LICENSE= BSD3CLAUSE @@ -29,16 +29,19 @@ PLIST_FILES= bin/phantomjs #PATCH_DEBUG= yes NO_CCACHE= yes +USE_XORG= x11 + +# Hack for FreeBSD 9. Without it mysteriously switches from +# clang++ to c++ which ends in build failure. +CC=clang +CXX=clang++ + # NOTE: # build.sh --qtwebkit=system requires Qt 5.3.x. We cannot use it. # qmake.conf detection is in src/qt/qtbase/configure script. SPEC= ${WRKSRC}/src/qt/qtbase/mkspecs post-extract: - cd ${SPEC} && ${CP} -r freebsd-g++46 freebsd-g++48 - cd ${SPEC} && ${CP} -r freebsd-g++46 freebsd-g++49 - cd ${SPEC} && ${REINPLACE_CMD} -e 's|46|48|' freebsd-g++48/qmake.conf - cd ${SPEC} && ${REINPLACE_CMD} -e 's|46|49|' freebsd-g++49/qmake.conf ${MKDIR} ${SPEC}/freebsd-clang cd ${SPEC} && ${SED} -e 's|\.\./\.\./|../|g' unsupported/freebsd-clang/qmake.conf > freebsd-clang/qmake.conf cd ${SPEC} && ${SED} -e 's|\.\./\.\./|../|g' unsupported/freebsd-clang/qplatformdefs.h > freebsd-clang/qplatformdefs.h Added: head/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/phantomjs/files/patch-src_qt_qtbase_src_tools_qlalr_lalr.cpp Sat Sep 17 14:37:36 2016 (r422327) @@ -0,0 +1,34 @@ +--- src/qt/qtbase/src/tools/qlalr/lalr.cpp.orig 2015-01-24 02:19:52 UTC ++++ src/qt/qtbase/src/tools/qlalr/lalr.cpp +@@ -246,11 +246,11 @@ void Grammar::buildExtendedGrammar () + non_terminals.insert (accept_symbol); + } + +-struct _Nullable: public std::unary_function ++struct Nullable: public std::unary_function + { + Automaton *_M_automaton; + +- _Nullable (Automaton *aut): ++ Nullable (Automaton *aut): + _M_automaton (aut) {} + + bool operator () (Name name) const +@@ -308,7 +308,7 @@ void Automaton::buildNullables () + + for (RulePointer rule = _M_grammar->rules.begin (); rule != _M_grammar->rules.end (); ++rule) + { +- NameList::iterator nn = std::find_if (rule->rhs.begin (), rule->rhs.end (), std::not1 (_Nullable (this))); ++ NameList::iterator nn = std::find_if (rule->rhs.begin (), rule->rhs.end (), std::not1 (Nullable (this))); + + if (nn == rule->rhs.end ()) + changed |= nullables.insert (rule->lhs).second; +@@ -643,7 +643,7 @@ void Automaton::buildIncludesDigraph () + if (! _M_grammar->isNonTerminal (*A)) + continue; + +- NameList::iterator first_not_nullable = std::find_if (dot, rule->rhs.end (), std::not1 (_Nullable (this))); ++ NameList::iterator first_not_nullable = std::find_if (dot, rule->rhs.end (), std::not1 (Nullable (this))); + if (first_not_nullable != rule->rhs.end ()) + continue; + From owner-svn-ports-head@freebsd.org Sat Sep 17 15:24:37 2016 Return-Path: Delivered-To: svn-ports-head@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 6CD83BDE6D7; Sat, 17 Sep 2016 15:24:37 +0000 (UTC) (envelope-from cy@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 38E1A933; Sat, 17 Sep 2016 15:24:37 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HFOaAv031252; Sat, 17 Sep 2016 15:24:36 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HFOat1031250; Sat, 17 Sep 2016 15:24:36 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201609171524.u8HFOat1031250@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sat, 17 Sep 2016 15:24:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422329 - head/security/krb5-113 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 15:24:37 -0000 Author: cy Date: Sat Sep 17 15:24:36 2016 New Revision: 422329 URL: https://svnweb.freebsd.org/changeset/ports/422329 Log: Update 1.13.6 --> 1.13.7 Modified: head/security/krb5-113/Makefile head/security/krb5-113/distinfo Modified: head/security/krb5-113/Makefile ============================================================================== --- head/security/krb5-113/Makefile Sat Sep 17 14:39:38 2016 (r422328) +++ head/security/krb5-113/Makefile Sat Sep 17 15:24:36 2016 (r422329) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= krb5 -PORTVERSION= 1.13.6 +PORTVERSION= 1.13.7 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ .if !defined(MASTERDIR) Modified: head/security/krb5-113/distinfo ============================================================================== --- head/security/krb5-113/distinfo Sat Sep 17 14:39:38 2016 (r422328) +++ head/security/krb5-113/distinfo Sat Sep 17 15:24:36 2016 (r422329) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469584625 -SHA256 (krb5-1.13.6.tar.gz) = 9c0a46b8918237a53916370d2e02298c2b294f55f0351f9404e18930bc26badc -SIZE (krb5-1.13.6.tar.gz) = 12150805 +TIMESTAMP = 1474120775 +SHA256 (krb5-1.13.7.tar.gz) = a6a38a15a351eed1995be94f8d5fce0416f4dc0a53421ed3c78feaceb0df3212 +SIZE (krb5-1.13.7.tar.gz) = 12157671 From owner-svn-ports-head@freebsd.org Sat Sep 17 15:30:57 2016 Return-Path: Delivered-To: svn-ports-head@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 D0019BDE759; Sat, 17 Sep 2016 15:30:57 +0000 (UTC) (envelope-from adamw@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 9DE41ACE; Sat, 17 Sep 2016 15:30:57 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HFUurK032182; Sat, 17 Sep 2016 15:30:56 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HFUumf032180; Sat, 17 Sep 2016 15:30:56 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201609171530.u8HFUumf032180@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 17 Sep 2016 15:30:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422330 - head/sysutils/lnav X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 15:30:57 -0000 Author: adamw Date: Sat Sep 17 15:30:56 2016 New Revision: 422330 URL: https://svnweb.freebsd.org/changeset/ports/422330 Log: Update to 0.8.1, and add USES=gmake. sqlite3 is linked statically, so there's no reason to have a runtime dependency on it, so switch it from a LIB_DEPENDS to BUILD_DEPENDS. PR: 212182 Approved by: maintainer timeout Modified: head/sysutils/lnav/Makefile head/sysutils/lnav/distinfo Modified: head/sysutils/lnav/Makefile ============================================================================== --- head/sysutils/lnav/Makefile Sat Sep 17 15:24:36 2016 (r422329) +++ head/sysutils/lnav/Makefile Sat Sep 17 15:30:56 2016 (r422330) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lnav -PORTVERSION= 0.8.0 +PORTVERSION= 0.8.1 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -11,13 +11,14 @@ COMMENT= Terminal based log file navigat LICENSE= BSD2CLAUSE -BUILD_DEPENDS= ${LOCALBASE}/lib/libpcre.a:devel/pcre +BUILD_DEPENDS= ${LOCALBASE}/lib/libpcre.a:devel/pcre \ + ${LOCALBASE}/lib/libsqlite3.a:databases/sqlite3 USE_GITHUB= yes GH_ACCOUNT= tstack GNU_CONFIGURE= yes -USES= autoreconf execinfo ncurses python readline sqlite +USES= autoreconf execinfo gmake ncurses python readline PLIST_FILES= bin/lnav man/man1/lnav.1.gz Modified: head/sysutils/lnav/distinfo ============================================================================== --- head/sysutils/lnav/distinfo Sat Sep 17 15:24:36 2016 (r422329) +++ head/sysutils/lnav/distinfo Sat Sep 17 15:30:56 2016 (r422330) @@ -1,2 +1,3 @@ -SHA256 (tstack-lnav-v0.8.0_GH0.tar.gz) = 3aae1a23f0ffd3566d6f1ad72b6ef2cb534692b11a1c300ad932478193eab0b5 -SIZE (tstack-lnav-v0.8.0_GH0.tar.gz) = 795334 +TIMESTAMP = 1472227481 +SHA256 (tstack-lnav-v0.8.1_GH0.tar.gz) = 7f5f5f453f291db03036b26c1eb20933c8a9eb095108edeb3d6b65ab79187009 +SIZE (tstack-lnav-v0.8.1_GH0.tar.gz) = 856480 From owner-svn-ports-head@freebsd.org Sat Sep 17 15:33:36 2016 Return-Path: Delivered-To: svn-ports-head@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 E1354BDE8DC; Sat, 17 Sep 2016 15:33:36 +0000 (UTC) (envelope-from adamw@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 AB683E47; Sat, 17 Sep 2016 15:33:36 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HFXZFP035081; Sat, 17 Sep 2016 15:33:35 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HFXZF9035079; Sat, 17 Sep 2016 15:33:35 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201609171533.u8HFXZF9035079@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 17 Sep 2016 15:33:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422331 - head/archivers/unrar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 15:33:37 -0000 Author: adamw Date: Sat Sep 17 15:33:35 2016 New Revision: 422331 URL: https://svnweb.freebsd.org/changeset/ports/422331 Log: Update to 5.40. PR: 212351 Approved by: maintainer timeout Modified: head/archivers/unrar/Makefile head/archivers/unrar/distinfo Modified: head/archivers/unrar/Makefile ============================================================================== --- head/archivers/unrar/Makefile Sat Sep 17 15:30:56 2016 (r422330) +++ head/archivers/unrar/Makefile Sat Sep 17 15:33:35 2016 (r422331) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= unrar -PORTVERSION= 5.31 +PORTVERSION= 5.40 PORTEPOCH= 5 CATEGORIES+= archivers MASTER_SITES= http://www.rarlab.com/rar/ \ LOCAL/sunpoet -DISTNAME= unrarsrc-5.3.11 +DISTNAME= unrarsrc-5.4.5 MAINTAINER?= sunpoet@FreeBSD.org COMMENT= Extract, view & test RAR archives @@ -31,7 +31,7 @@ SLAVEDIRS= archivers/unrar-iconv chinese OPENSSL_AES_CPPFLAGS= -DOPENSSL_AES -I${OPENSSLINC} OPENSSL_AES_LDFLAGS= -L${OPENSSLLIB} -lcrypto -OPENSSL_AES_USE= OPENSSL=yes +OPENSSL_AES_USES= ssl do-install: ${INSTALL_PROGRAM} ${WRKSRC}/unrar ${STAGEDIR}${PREFIX}/bin/ Modified: head/archivers/unrar/distinfo ============================================================================== --- head/archivers/unrar/distinfo Sat Sep 17 15:30:56 2016 (r422330) +++ head/archivers/unrar/distinfo Sat Sep 17 15:33:35 2016 (r422331) @@ -1,2 +1,3 @@ -SHA256 (unrarsrc-5.3.11.tar.gz) = 77b87af4b2976ef7c6b0c79e071284c2c1b035a9543273ec925f9d92f73b8763 -SIZE (unrarsrc-5.3.11.tar.gz) = 223663 +TIMESTAMP = 1472916114 +SHA256 (unrarsrc-5.4.5.tar.gz) = e470c584332422893fb52e049f2cbd99e24dc6c6da971008b4e2ae4284f8796c +SIZE (unrarsrc-5.4.5.tar.gz) = 226320 From owner-svn-ports-head@freebsd.org Sat Sep 17 15:58:51 2016 Return-Path: Delivered-To: svn-ports-head@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 21249BDEDE1; Sat, 17 Sep 2016 15:58:51 +0000 (UTC) (envelope-from adamw@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 F196993B; Sat, 17 Sep 2016 15:58:50 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HFwoHD042990; Sat, 17 Sep 2016 15:58:50 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HFwomF042988; Sat, 17 Sep 2016 15:58:50 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201609171558.u8HFwomF042988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 17 Sep 2016 15:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422332 - head/security/gnupg1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 15:58:51 -0000 Author: adamw Date: Sat Sep 17 15:58:49 2016 New Revision: 422332 URL: https://svnweb.freebsd.org/changeset/ports/422332 Log: Complete the adoption of options helpers, remove old cruft, and take maintainership. PR: 212352 Approved by: maintainer timeout Modified: head/security/gnupg1/Makefile head/security/gnupg1/pkg-plist Modified: head/security/gnupg1/Makefile ============================================================================== --- head/security/gnupg1/Makefile Sat Sep 17 15:33:35 2016 (r422331) +++ head/security/gnupg1/Makefile Sat Sep 17 15:58:49 2016 (r422332) @@ -2,61 +2,55 @@ PORTNAME= gnupg PORTVERSION= 1.4.21 -#PORTREVISION= 0 CATEGORIES= security MASTER_SITES= GNUPG PKGNAMESUFFIX= 1 DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= adamw@FreeBSD.org COMMENT= The GNU Privacy Guard LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING +CPE_VENDOR= gnupg + USES= charsetfix cpe gmake tar:bzip2 GNU_CONFIGURE= YES -CPE_VENDOR= gnupg -.if ${MACHINE_CPU:Mi586} -MACHINE_ARCH= i586 -.endif -CFLAGS:= ${CFLAGS:S/-pipe//g} + INFO= gnupg1 DOCSDIR= ${PREFIX}/share/doc/gnupg1 PORTDOCS= * TEST_TARGET= check -OPTIONS_DEFINE= LDAP LIBICONV LIBUSB SUID_GPG NLS CURL DOCS -OPTIONS_DEFAULT= CURL +OPTIONS_DEFINE= CURL DOCS LDAP LIBICONV LIBUSB NLS SUID_GPG +OPTIONS_DEFAULT=CURL OPTIONS_SUB= yes + +CURL_DESC= use libcurl for the keyserver interface LDAP_DESC= LDAP keyserver interface LIBICONV_DESC= use libiconv LIBUSB_DESC= use libusb SUID_GPG_DESC= install GPG with suid -CURL_DESC= use libcurl for the keyserver interface + +CURL_LIB_DEPENDS= libcurl.so:ftp/curl +CURL_CONFIGURE_WITH= libcurl=${LOCALBASE} +# Work around a GnuPG configure buglet +CURL_CONFIGURE_ENV= _libcurl_config=${LOCALBASE}/bin/curl-config LIBICONV_USES= iconv -LIBICONV_CONFIGURE_OFF= --disable-gnupg-iconv +LIBICONV_CONFIGURE_ENABLE= gnupg-iconv -LIBUSB_CONFIGURE_ON= --with-libusb=${LOCALBASE} -LIBUSB_CONFIGURE_OFF= --without-libusb +LIBUSB_CONFIGURE_WITH= libusb=${LOCALBASE} LDAP_USE= OPENLDAP=yes -LDAP_CONFIGURE_ON= --with-ldap=${LOCALBASE} -#LDAP_CONFIGURE_ENV+= LDFLAGS="-L/usr/lib" -LDAP_CONFIGURE_OFF= --disable-ldap +LDAP_CONFIGURE_WITH= ldap=${LOCALBASE} NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -CURL_LIB_DEPENDS= libcurl.so:ftp/curl -CURL_CONFIGURE_ON= --with-libcurl=${LOCALBASE} -# Work around a GnuPG configure buglet -CURL_CONFIGURE_ENV= _libcurl_config=${LOCALBASE}/bin/curl-config -CURL_CONFIGURE_OFF= --without-libcurl - .include .if ${CC} == "clang" || ${OSVERSION} >= 1000024 @@ -66,7 +60,7 @@ CFLAGS:= ${CFLAGS:S/$/ -fheinous-gnu-ext .endif .endif -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in DETAILS FAQ HACKING OpenPGP ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${STAGEDIR}${DOCSDIR} @@ -75,8 +69,8 @@ post-install: README THANKS TODO VERSION ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor -.if ${PORT_OPTIONS:MSUID_GPG} + +post-install-SUID_GPG-on: ${CHMOD} u+s ${STAGEDIR}${PREFIX}/bin/gpg -.endif .include Modified: head/security/gnupg1/pkg-plist ============================================================================== --- head/security/gnupg1/pkg-plist Sat Sep 17 15:33:35 2016 (r422331) +++ head/security/gnupg1/pkg-plist Sat Sep 17 15:58:49 2016 (r422332) @@ -41,4 +41,4 @@ man/man1/gpgv.1.gz %%NLS%%share/locale/uk/LC_MESSAGES/gnupg.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/gnupg.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/gnupg.mo -@unexec [ -r %D/bin/gpg2 ] && ln -s gpg2 %D/bin/gpg || true +@postunexec [ -r %D/bin/gpg2 ] && ln -s gpg2 %D/bin/gpg || true From owner-svn-ports-head@freebsd.org Sat Sep 17 16:04:22 2016 Return-Path: Delivered-To: svn-ports-head@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 302DABDEFD6; Sat, 17 Sep 2016 16:04:22 +0000 (UTC) (envelope-from adamw@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 F3B5FE41; Sat, 17 Sep 2016 16:04:21 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HG4LZ0046655; Sat, 17 Sep 2016 16:04:21 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HG4L3F046653; Sat, 17 Sep 2016 16:04:21 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201609171604.u8HG4L3F046653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 17 Sep 2016 16:04:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422333 - head/editors/vim X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 16:04:22 -0000 Author: adamw Date: Sat Sep 17 16:04:20 2016 New Revision: 422333 URL: https://svnweb.freebsd.org/changeset/ports/422333 Log: Update to patchlevel 2367, the last in the 7.x series. I'll submit a separate PR for update to 8.0.x. PR: 212350 Approved by: maintainer timeout Modified: head/editors/vim/Makefile head/editors/vim/distinfo Modified: head/editors/vim/Makefile ============================================================================== --- head/editors/vim/Makefile Sat Sep 17 15:58:49 2016 (r422332) +++ head/editors/vim/Makefile Sat Sep 17 16:04:20 2016 (r422333) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vim -PORTVERSION= 7.4.1832 +PORTVERSION= 7.4.2367 DISTVERSIONPREFIX= v CATEGORIES?= editors Modified: head/editors/vim/distinfo ============================================================================== --- head/editors/vim/distinfo Sat Sep 17 15:58:49 2016 (r422332) +++ head/editors/vim/distinfo Sat Sep 17 16:04:20 2016 (r422333) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463904248 -SHA256 (vim-vim-v7.4.1832_GH0.tar.gz) = 12bbc0d018cbeae5f735c840450917be9f902381bd9f541895167bd217b7916b -SIZE (vim-vim-v7.4.1832_GH0.tar.gz) = 12566816 +TIMESTAMP = 1474128105 +SHA256 (vim-vim-v7.4.2367_GH0.tar.gz) = a9ae4031ccd73cc60e771e8bf9b3c8b7f10f63a67efce7f61cd694cd8d7cda5c +SIZE (vim-vim-v7.4.2367_GH0.tar.gz) = 12916710 From owner-svn-ports-head@freebsd.org Sat Sep 17 16:36:42 2016 Return-Path: Delivered-To: svn-ports-head@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 95CFBBDE73C; Sat, 17 Sep 2016 16:36:42 +0000 (UTC) (envelope-from riggs@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 6E3FBE6C; Sat, 17 Sep 2016 16:36:42 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HGafgN057769; Sat, 17 Sep 2016 16:36:41 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HGafAw057766; Sat, 17 Sep 2016 16:36:41 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201609171636.u8HGafAw057766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 17 Sep 2016 16:36:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422334 - head/sysutils/devcpu-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 16:36:42 -0000 Author: riggs Date: Sat Sep 17 16:36:41 2016 New Revision: 422334 URL: https://svnweb.freebsd.org/changeset/ports/422334 Log: Update Intel microcode to 2016-07-14 PR: 212563 Submitted by: jbeich Approved by: maintainer timeout Modified: head/sysutils/devcpu-data/Makefile head/sysutils/devcpu-data/distinfo head/sysutils/devcpu-data/pkg-plist Modified: head/sysutils/devcpu-data/Makefile ============================================================================== --- head/sysutils/devcpu-data/Makefile Sat Sep 17 16:04:20 2016 (r422333) +++ head/sysutils/devcpu-data/Makefile Sat Sep 17 16:36:41 2016 (r422334) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= data -PORTVERSION= 1.6 +PORTVERSION= 1.7 CATEGORIES= sysutils -MASTER_SITES= http://downloadmirror.intel.com/25512/eng/:intel \ +MASTER_SITES= http://downloadmirror.intel.com/26156/eng/:intel \ http://www.amd64.org/microcode/:amd PKGNAMEPREFIX= devcpu- -DISTFILES= microcode-20151106.tgz:intel amd-ucode-2014-12-01.tar.bz2:amd +DISTFILES= microcode-20160714.tgz:intel amd-ucode-2014-12-01.tar.bz2:amd MAINTAINER= clarkjc@runbox.com COMMENT= Intel and AMD CPUs microcode updates Modified: head/sysutils/devcpu-data/distinfo ============================================================================== --- head/sysutils/devcpu-data/distinfo Sat Sep 17 16:04:20 2016 (r422333) +++ head/sysutils/devcpu-data/distinfo Sat Sep 17 16:36:41 2016 (r422334) @@ -1,4 +1,5 @@ -SHA256 (microcode-20151106.tgz) = 096e39489eef67666be652e81fa372a06b74f39ea3d565dc0287242c668717e7 -SIZE (microcode-20151106.tgz) = 892805 +TIMESTAMP = 1474130172 +SHA256 (microcode-20160714.tgz) = f3a9c6fc93275bf1febc26f7c397ac93ed5f109e47fb52932f6dbd5cfdbc840e +SIZE (microcode-20160714.tgz) = 1239344 SHA256 (amd-ucode-2014-12-01.tar.bz2) = e8f37ed12955585a625ee7cd48d89f9a04ceb2afa36081b52cc59d08a3bb8293 SIZE (amd-ucode-2014-12-01.tar.bz2) = 20585 Modified: head/sysutils/devcpu-data/pkg-plist ============================================================================== --- head/sysutils/devcpu-data/pkg-plist Sat Sep 17 16:04:20 2016 (r422333) +++ head/sysutils/devcpu-data/pkg-plist Sat Sep 17 16:36:41 2016 (r422334) @@ -102,6 +102,7 @@ %%DATADIR%%/m0df330c.fw %%DATADIR%%/m101067660F.fw %%DATADIR%%/m101067770A.fw +%%DATADIR%%/m1050662_0000000f.fw %%DATADIR%%/m1069507.fw %%DATADIR%%/m106f76a.fw %%DATADIR%%/m106fbBA.fw @@ -124,11 +125,12 @@ %%DATADIR%%/m206f6d1.fw %%DATADIR%%/m206fbBA.fw %%DATADIR%%/m206fda4.fw -%%DATADIR%%/m2240671_00000013.fw +%%DATADIR%%/m2240671_00000016.fw %%DATADIR%%/m22f6809.fw -%%DATADIR%%/m32306c3_0000001e.fw -%%DATADIR%%/m3240661_00000012.fw +%%DATADIR%%/m32306c3_00000020.fw +%%DATADIR%%/m3240661_00000016.fw %%DATADIR%%/m34f6404.fw +%%DATADIR%%/m36506e3_0000009d_0000009e.fw %%DATADIR%%/m401067660F.fw %%DATADIR%%/m406f76b.fw %%DATADIR%%/m406fbBC.fw @@ -139,11 +141,11 @@ %%DATADIR%%/m5ff4807.fw %%DATADIR%%/m6d206d6_00000619.fw %%DATADIR%%/m6d206d7_00000710.fw -%%DATADIR%%/m6f306f2_00000036.fw -%%DATADIR%%/m7240651_0000001d.fw +%%DATADIR%%/m6f306f2_00000038.fw +%%DATADIR%%/m7240651_0000001f.fw %%DATADIR%%/m801066144.fw %%DATADIR%%/m801067660F.fw -%%DATADIR%%/m80306f4_00000009.fw +%%DATADIR%%/m80306f4_0000000d.fw %%DATADIR%%/m8069547.fw %%DATADIR%%/m806ec59.fw %%DATADIR%%/m806fa95.fw @@ -156,10 +158,12 @@ %%DATADIR%%/mA01067AA0B.fw %%DATADIR%%/mbdf4117.fw %%DATADIR%%/mbdf4903.fw -%%DATADIR%%/mc0306d4_00000022.fw +%%DATADIR%%/mc0306d4_00000024.fw +%%DATADIR%%/mc0406e3_0000009d_0000009e.fw %%DATADIR%%/med306e4_00000428.fw %%DATADIR%%/med306e6_00000600.fw %%DATADIR%%/med306e7_0000070d.fw +%%DATADIR%%/mef406f1_0b00001d.fw %%DATADIR%%/mu267114.fw %%DATADIR%%/mu267238.fw %%DATADIR%%/mu26732e.fw From owner-svn-ports-head@freebsd.org Sat Sep 17 17:31:40 2016 Return-Path: Delivered-To: svn-ports-head@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 E3F4BBDE509; Sat, 17 Sep 2016 17:31:40 +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 B3F09979; Sat, 17 Sep 2016 17:31:40 +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 u8HHVdU4080023; Sat, 17 Sep 2016 17:31:39 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HHVdje080020; Sat, 17 Sep 2016 17:31:39 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201609171731.u8HHVdje080020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sat, 17 Sep 2016 17:31:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422335 - head/emulators/i386-wine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 17:31:41 -0000 Author: dbn Date: Sat Sep 17 17:31:39 2016 New Revision: 422335 URL: https://svnweb.freebsd.org/changeset/ports/422335 Log: emulators/i386-wine: update to 1.8.4_1. - Add support for -current (aka "12"). Modified: head/emulators/i386-wine/Makefile.inc head/emulators/i386-wine/distinfo head/emulators/i386-wine/pkg-plist Modified: head/emulators/i386-wine/Makefile.inc ============================================================================== --- head/emulators/i386-wine/Makefile.inc Sat Sep 17 16:36:41 2016 (r422334) +++ head/emulators/i386-wine/Makefile.inc Sat Sep 17 17:31:39 2016 (r422335) @@ -3,6 +3,7 @@ PORTNAME= wine PORTVERSION= 1.8.4 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/ @@ -49,7 +50,7 @@ PORTSCOUT= limitw:1,even # Included for OPSYS and OSVERSION .include -.for osrel in 9 10 11 +.for osrel in 9 10 11 12 .if ${OSREL:C/\..*//} == ${osrel} PLIST_SUB+= OSREL${osrel}="" .else @@ -57,8 +58,8 @@ PLIST_SUB+= OSREL${osrel}="@comment " .endif .endfor -.if ${OPSYS} != FreeBSD || (!(${OSVERSION} < 1000000) && !(${OSVERSION} >= 1001000 && ${OSVERSION} < 1100000) && !(${OSVERSION} >= 1100090 && ${OSVERSION} < 1200000)) -IGNORE= binaries compiled for FreeBSD 9.3+, 10.1+ and -current only +.if ${OPSYS} != FreeBSD || (!(${OSVERSION} < 1000000) && !(${OSVERSION} >= 1001000 && ${OSVERSION} < 1100000) && !(${OSVERSION} >= 1100121 && ${OSVERSION} < 1200000) && !(${OSVERSION} >= 1200004 && ${OSVERSION} < 1300000)) +IGNORE= binaries compiled for FreeBSD 9.3+, 10.1+, 11.0+ and -current only DISTFILES= .endif @@ -75,7 +76,7 @@ ${PLIST}: fetch port-update: ${RM} -f ${SLAVEDIR}/distinfo ${SLAVEDIR}/distinfo~ ${SLAVEDIR}/pkg-plist.* -.for osrel in 9 10 11 +.for osrel in 9 10 11 12 ${MAKE} fetch OSREL=${osrel} OSVERSION=${osrel}99999 UNAME_r=${osrel} ${MAKE} makesum OSREL=${osrel} OSVERSION=${osrel}99999 UNAME_r=${osrel} ${CAT} ${SLAVEDIR}/distinfo >> ${SLAVEDIR}/distinfo~ Modified: head/emulators/i386-wine/distinfo ============================================================================== --- head/emulators/i386-wine/distinfo Sat Sep 17 16:36:41 2016 (r422334) +++ head/emulators/i386-wine/distinfo Sat Sep 17 17:31:39 2016 (r422335) @@ -1,7 +1,9 @@ -TIMESTAMP = 1472182089 -SHA256 (freebsd:9:x86:64/i386-wine-1.8.4,1.txz) = 0dbf7b5aa747422612d62eb6294a2e5319e835377f6538722e1853fda22626c5 -SIZE (freebsd:9:x86:64/i386-wine-1.8.4,1.txz) = 39210364 -SHA256 (freebsd:10:x86:64/i386-wine-1.8.4,1.txz) = 578fca140f317b5c5259bba381bf7b6cb62778686e948b8e450032d9373702bc -SIZE (freebsd:10:x86:64/i386-wine-1.8.4,1.txz) = 39169260 -SHA256 (freebsd:11:x86:64/i386-wine-1.8.4,1.txz) = 55fe5e57b7363c96fd3e79a70bc262c73548b0ba7e82234dc61e961be34f063b -SIZE (freebsd:11:x86:64/i386-wine-1.8.4,1.txz) = 38731304 +TIMESTAMP = 1474126791 +SHA256 (freebsd:9:x86:64/i386-wine-1.8.4_1,1.txz) = fc219b51ff50ae7f1d28cf086567f1425d940b1ef4932708cc05419342ab3ee3 +SIZE (freebsd:9:x86:64/i386-wine-1.8.4_1,1.txz) = 40150972 +SHA256 (freebsd:10:x86:64/i386-wine-1.8.4_1,1.txz) = 8fe59ef0a948e820aee0e40d0c830a2ef458c2e562cd88609d36a31402fa1abb +SIZE (freebsd:10:x86:64/i386-wine-1.8.4_1,1.txz) = 40085708 +SHA256 (freebsd:11:x86:64/i386-wine-1.8.4_1,1.txz) = cf8db3f13c2cb3a74a4f73bcb3039910edc967017248cad6082451c8f9c092ed +SIZE (freebsd:11:x86:64/i386-wine-1.8.4_1,1.txz) = 39650480 +SHA256 (freebsd:12:x86:64/i386-wine-1.8.4_1,1.txz) = ccd4880a937859c988d5f0781f0a6e1976aed951c036c486ddcb669f1e0d1d0f +SIZE (freebsd:12:x86:64/i386-wine-1.8.4_1,1.txz) = 39649516 Modified: head/emulators/i386-wine/pkg-plist ============================================================================== --- head/emulators/i386-wine/pkg-plist Sat Sep 17 16:36:41 2016 (r422334) +++ head/emulators/i386-wine/pkg-plist Sat Sep 17 17:31:39 2016 (r422335) @@ -879,18 +879,25 @@ lib32/.libGL/libGL.so.1 lib32/libGLU.so.1 %%OSREL10%%lib32/libLLVMAArch64AsmParser.so.3.7 %%OSREL11%%lib32/libLLVMAArch64AsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64AsmParser.so.3.7 %%OSREL10%%lib32/libLLVMAArch64AsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMAArch64AsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64AsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMAArch64CodeGen.so.3.7 %%OSREL11%%lib32/libLLVMAArch64CodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64CodeGen.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Desc.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Desc.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Desc.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Disassembler.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Disassembler.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Disassembler.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Info.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Info.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Info.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Utils.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Utils.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Utils.so.3.7 lib32/libLLVMAMDGPUAsmParser.so.3.7 lib32/libLLVMAMDGPUAsmPrinter.so.3.7 lib32/libLLVMAMDGPUCodeGen.so.3.7 @@ -899,129 +906,182 @@ lib32/libLLVMAMDGPUInfo.so.3.7 lib32/libLLVMAMDGPUUtils.so.3.7 %%OSREL10%%lib32/libLLVMARMAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMARMAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMARMAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMARMAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMARMAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMARMAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMARMCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMARMCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMARMCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMARMDesc.so.3.7 %%OSREL11%%lib32/libLLVMARMDesc.so.3.7 +%%OSREL12%%lib32/libLLVMARMDesc.so.3.7 %%OSREL10%%lib32/libLLVMARMDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMARMDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMARMDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMARMInfo.so.3.7 %%OSREL11%%lib32/libLLVMARMInfo.so.3.7 +%%OSREL12%%lib32/libLLVMARMInfo.so.3.7 lib32/libLLVMAnalysis.so.3.7 %%OSREL10%%lib32/libLLVMAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMAsmParser.so.3.7 lib32/libLLVMAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMBPFAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMBPFAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMBPFAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMBPFCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMBPFCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMBPFCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMBPFDesc.so.3.7 %%OSREL11%%lib32/libLLVMBPFDesc.so.3.7 +%%OSREL12%%lib32/libLLVMBPFDesc.so.3.7 %%OSREL10%%lib32/libLLVMBPFInfo.so.3.7 %%OSREL11%%lib32/libLLVMBPFInfo.so.3.7 +%%OSREL12%%lib32/libLLVMBPFInfo.so.3.7 lib32/libLLVMBitReader.so.3.7 lib32/libLLVMBitWriter.so.3.7 lib32/libLLVMCodeGen.so.3.7 lib32/libLLVMCore.so.3.7 %%OSREL10%%lib32/libLLVMCppBackendCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMCppBackendCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMCppBackendCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMCppBackendInfo.so.3.7 %%OSREL11%%lib32/libLLVMCppBackendInfo.so.3.7 +%%OSREL12%%lib32/libLLVMCppBackendInfo.so.3.7 lib32/libLLVMExecutionEngine.so.3.7 %%OSREL10%%lib32/libLLVMHexagonCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMHexagonCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMHexagonDesc.so.3.7 %%OSREL11%%lib32/libLLVMHexagonDesc.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonDesc.so.3.7 %%OSREL10%%lib32/libLLVMHexagonDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMHexagonDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMHexagonInfo.so.3.7 %%OSREL11%%lib32/libLLVMHexagonInfo.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonInfo.so.3.7 %%OSREL10%%lib32/libLLVMIRReader.so.3.7 %%OSREL11%%lib32/libLLVMIRReader.so.3.7 +%%OSREL12%%lib32/libLLVMIRReader.so.3.7 lib32/libLLVMInstCombine.so.3.7 lib32/libLLVMInstrumentation.so.3.7 %%OSREL10%%lib32/libLLVMLinker.so.3.7 %%OSREL11%%lib32/libLLVMLinker.so.3.7 +%%OSREL12%%lib32/libLLVMLinker.so.3.7 lib32/libLLVMMC.so.3.7 lib32/libLLVMMCDisassembler.so.3.7 lib32/libLLVMMCJIT.so.3.7 lib32/libLLVMMCParser.so.3.7 %%OSREL10%%lib32/libLLVMMSP430AsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMMSP430AsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430AsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMMSP430CodeGen.so.3.7 %%OSREL11%%lib32/libLLVMMSP430CodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430CodeGen.so.3.7 %%OSREL10%%lib32/libLLVMMSP430Desc.so.3.7 %%OSREL11%%lib32/libLLVMMSP430Desc.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430Desc.so.3.7 %%OSREL10%%lib32/libLLVMMSP430Info.so.3.7 %%OSREL11%%lib32/libLLVMMSP430Info.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430Info.so.3.7 %%OSREL10%%lib32/libLLVMMipsAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMMipsAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMMipsAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMMipsAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMMipsAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMMipsAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMMipsCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMMipsCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMMipsCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMMipsDesc.so.3.7 %%OSREL11%%lib32/libLLVMMipsDesc.so.3.7 +%%OSREL12%%lib32/libLLVMMipsDesc.so.3.7 %%OSREL10%%lib32/libLLVMMipsDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMMipsDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMMipsDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMMipsInfo.so.3.7 %%OSREL11%%lib32/libLLVMMipsInfo.so.3.7 +%%OSREL12%%lib32/libLLVMMipsInfo.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXDesc.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXDesc.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXDesc.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXInfo.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXInfo.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXInfo.so.3.7 %%OSREL10%%lib32/libLLVMObjCARCOpts.so.3.7 %%OSREL11%%lib32/libLLVMObjCARCOpts.so.3.7 +%%OSREL12%%lib32/libLLVMObjCARCOpts.so.3.7 lib32/libLLVMObject.so.3.7 %%OSREL10%%lib32/libLLVMOption.so.3.7 %%OSREL11%%lib32/libLLVMOption.so.3.7 +%%OSREL12%%lib32/libLLVMOption.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCDesc.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCDesc.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCDesc.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCInfo.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCInfo.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCInfo.so.3.7 lib32/libLLVMProfileData.so.3.7 lib32/libLLVMRuntimeDyld.so.3.7 lib32/libLLVMScalarOpts.so.3.7 lib32/libLLVMSelectionDAG.so.3.7 %%OSREL10%%lib32/libLLVMSparcAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMSparcAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMSparcAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMSparcAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMSparcAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMSparcAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMSparcCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMSparcCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMSparcCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMSparcDesc.so.3.7 %%OSREL11%%lib32/libLLVMSparcDesc.so.3.7 +%%OSREL12%%lib32/libLLVMSparcDesc.so.3.7 %%OSREL10%%lib32/libLLVMSparcDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMSparcDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMSparcDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMSparcInfo.so.3.7 %%OSREL11%%lib32/libLLVMSparcInfo.so.3.7 +%%OSREL12%%lib32/libLLVMSparcInfo.so.3.7 lib32/libLLVMSupport.so.3.7 %%OSREL10%%lib32/libLLVMSystemZAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMSystemZAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMSystemZAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMSystemZAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMSystemZCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMSystemZCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMSystemZDesc.so.3.7 %%OSREL11%%lib32/libLLVMSystemZDesc.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZDesc.so.3.7 %%OSREL10%%lib32/libLLVMSystemZDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMSystemZDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMSystemZInfo.so.3.7 %%OSREL11%%lib32/libLLVMSystemZInfo.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZInfo.so.3.7 lib32/libLLVMTarget.so.3.7 lib32/libLLVMTransformUtils.so.3.7 lib32/libLLVMVectorize.so.3.7 @@ -1034,14 +1094,19 @@ lib32/libLLVMX86Info.so.3.7 lib32/libLLVMX86Utils.so.3.7 %%OSREL10%%lib32/libLLVMXCoreAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMXCoreAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMXCoreCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMXCoreCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMXCoreDesc.so.3.7 %%OSREL11%%lib32/libLLVMXCoreDesc.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreDesc.so.3.7 %%OSREL10%%lib32/libLLVMXCoreDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMXCoreDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMXCoreInfo.so.3.7 %%OSREL11%%lib32/libLLVMXCoreInfo.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreInfo.so.3.7 lib32/libLLVMipa.so.3.7 lib32/libLLVMipo.so.3.7 lib32/libX11-xcb.so.1 @@ -1064,17 +1129,26 @@ lib32/libdrm_amdgpu.so.1 lib32/libdrm_intel.so.1 lib32/libdrm_radeon.so.1 lib32/libexpat.so.1 +lib32/libffi.so.6 lib32/libfontconfig.so.1 lib32/libfreetype.so.6 %%OSREL9%%lib32/libgcc_s.so.1 lib32/libglapi.so.0 +lib32/libgmp.so.10 +lib32/libgnutls.so.30 +lib32/libhogweed.so.4 %%OSREL9%%lib32/libiconv.so.2 +lib32/libidn.so.11 +lib32/libintl.so.8 lib32/libjpeg.so.8 lib32/liblcms2.so.2 +lib32/libnettle.so.6 +lib32/libp11-kit.so.0 lib32/libpciaccess.so.0 lib32/libpng16.so.16 lib32/libpthread-stubs.so.0 %%OSREL9%%lib32/libstdc++.so.6 +lib32/libtasn1.so.6 lib32/libwine.so lib32/libwine.so.1 lib32/libxcb-dri2.so.0 From owner-svn-ports-head@freebsd.org Sat Sep 17 17:32:55 2016 Return-Path: Delivered-To: svn-ports-head@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 9F6B2BDE68A; Sat, 17 Sep 2016 17:32:55 +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 3BB53B02; Sat, 17 Sep 2016 17:32:55 +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 u8HHWs1i080191; Sat, 17 Sep 2016 17:32:54 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HHWsPc080188; Sat, 17 Sep 2016 17:32:54 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201609171732.u8HHWsPc080188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sat, 17 Sep 2016 17:32:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422336 - head/emulators/i386-wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 17:32:55 -0000 Author: dbn Date: Sat Sep 17 17:32:54 2016 New Revision: 422336 URL: https://svnweb.freebsd.org/changeset/ports/422336 Log: emulators/i386-wine-devel: update to 1.9.18. - Add support for -current (aka "12"). Modified: head/emulators/i386-wine-devel/Makefile.inc head/emulators/i386-wine-devel/distinfo head/emulators/i386-wine-devel/pkg-plist Modified: head/emulators/i386-wine-devel/Makefile.inc ============================================================================== --- head/emulators/i386-wine-devel/Makefile.inc Sat Sep 17 17:31:39 2016 (r422335) +++ head/emulators/i386-wine-devel/Makefile.inc Sat Sep 17 17:32:54 2016 (r422336) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -PORTVERSION= 1.9.17 +PORTVERSION= 1.9.18 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/ @@ -48,7 +48,7 @@ MONO_RUN_DEPENDS= ${DATADIR}/mono/wine-m # Included for OPSYS and OSVERSION .include -.for osrel in 9 10 11 +.for osrel in 9 10 11 12 .if ${OSREL:C/\..*//} == ${osrel} PLIST_SUB+= OSREL${osrel}="" .if ${PKGNAMESUFFIX} == -devel @@ -69,8 +69,8 @@ PLIST_SUB+= OSREL${osrel}-STAGING="@comm .endif .endfor -.if ${OPSYS} != FreeBSD || (!(${OSVERSION} < 1000000) && !(${OSVERSION} >= 1001000 && ${OSVERSION} < 1100000) && !(${OSVERSION} >= 1100109 && ${OSVERSION} < 1200000)) -IGNORE= binaries compiled for FreeBSD 9.3+, 10.1+ and -current only +.if ${OPSYS} != FreeBSD || (!(${OSVERSION} < 1000000) && !(${OSVERSION} >= 1001000 && ${OSVERSION} < 1100000) && !(${OSVERSION} >= 1100121 && ${OSVERSION} < 1200000) && !(${OSVERSION} >= 1200004 && ${OSVERSION} < 1300000)) +IGNORE= binaries compiled for FreeBSD 9.3+, 10.1+, 11.0+ and -current only DISTFILES= .endif @@ -87,7 +87,7 @@ ${PLIST}: fetch port-update: ${RM} -f ${SLAVEDIR}/distinfo ${SLAVEDIR}/distinfo~ ${SLAVEDIR}/pkg-plist.* -.for osrel in 9 10 11 +.for osrel in 9 10 11 12 .for suffix in -devel -staging ${MAKE} fetch OSREL=${osrel} OSVERSION=${osrel}99999 UNAME_r=${osrel} PKGNAMESUFFIX=${suffix} ${MAKE} makesum OSREL=${osrel} OSVERSION=${osrel}99999 UNAME_r=${osrel} PKGNAMESUFFIX=${suffix} Modified: head/emulators/i386-wine-devel/distinfo ============================================================================== --- head/emulators/i386-wine-devel/distinfo Sat Sep 17 17:31:39 2016 (r422335) +++ head/emulators/i386-wine-devel/distinfo Sat Sep 17 17:32:54 2016 (r422336) @@ -1,13 +1,17 @@ -TIMESTAMP = 1472182592 -SHA256 (freebsd:9:x86:64/i386-wine-devel-1.9.17,1.txz) = 6bf9416ffac7c64d5980d7a54075a22bf8672608aeb07e0bde4ab513d41f705f -SIZE (freebsd:9:x86:64/i386-wine-devel-1.9.17,1.txz) = 40895924 -SHA256 (freebsd:9:x86:64/i386-wine-staging-1.9.17,1.txz) = baa63eabf75a61f435f1e0f069cec2127699b226ca09a0bf8eb65fbf55cc8483 -SIZE (freebsd:9:x86:64/i386-wine-staging-1.9.17,1.txz) = 43666416 -SHA256 (freebsd:10:x86:64/i386-wine-devel-1.9.17,1.txz) = 070cb31f1becb5645ea86ce54ca3401ebc053c5bde52166564e4f0b802c6ce0f -SIZE (freebsd:10:x86:64/i386-wine-devel-1.9.17,1.txz) = 40859220 -SHA256 (freebsd:10:x86:64/i386-wine-staging-1.9.17,1.txz) = f0cddcfa6ffe4776791a0b9f506418eb5870959145cdb3bad69e272ab5f3d192 -SIZE (freebsd:10:x86:64/i386-wine-staging-1.9.17,1.txz) = 43645424 -SHA256 (freebsd:11:x86:64/i386-wine-devel-1.9.17,1.txz) = caed9069d8a2985d00472e08c861acd4e1768aa99c35777b08f065ba91be3260 -SIZE (freebsd:11:x86:64/i386-wine-devel-1.9.17,1.txz) = 40397552 -SHA256 (freebsd:11:x86:64/i386-wine-staging-1.9.17,1.txz) = bd18660e9be33977f5295527837fcd799fc0d6e1d0d931588265bce80409eac5 -SIZE (freebsd:11:x86:64/i386-wine-staging-1.9.17,1.txz) = 43143968 +TIMESTAMP = 1474127522 +SHA256 (freebsd:9:x86:64/i386-wine-devel-1.9.18,1.txz) = a8aaf9d2f8df1dfb591d21bf0a0cc2480382266000bfefcd9f2fb0f6493dd2dc +SIZE (freebsd:9:x86:64/i386-wine-devel-1.9.18,1.txz) = 40954192 +SHA256 (freebsd:9:x86:64/i386-wine-staging-1.9.18,1.txz) = 558407a3593abf369c3d10d462cc80df04da14d1ef1c469276c6a20fc72f0fef +SIZE (freebsd:9:x86:64/i386-wine-staging-1.9.18,1.txz) = 28409856 +SHA256 (freebsd:10:x86:64/i386-wine-devel-1.9.18,1.txz) = f0d3a7ccf19ba77079002226e1010f8d5aad9b1d0f1c12ca4789a9fab9c72ff0 +SIZE (freebsd:10:x86:64/i386-wine-devel-1.9.18,1.txz) = 40884192 +SHA256 (freebsd:10:x86:64/i386-wine-staging-1.9.18,1.txz) = 54f2ab62282c674556f8ccebde3b1c322efdf49b4ed7f09a340982c6e3417c79 +SIZE (freebsd:10:x86:64/i386-wine-staging-1.9.18,1.txz) = 43659204 +SHA256 (freebsd:11:x86:64/i386-wine-devel-1.9.18,1.txz) = b70ececa8fc88176f9221e9c03f3010facc5a04b1154ac42f2cc03aa7f8296e4 +SIZE (freebsd:11:x86:64/i386-wine-devel-1.9.18,1.txz) = 40396992 +SHA256 (freebsd:11:x86:64/i386-wine-staging-1.9.18,1.txz) = b954c7e310643f328b7a9114a43c40c79b673668534e04cf77d66f4f27566d5a +SIZE (freebsd:11:x86:64/i386-wine-staging-1.9.18,1.txz) = 43170520 +SHA256 (freebsd:12:x86:64/i386-wine-devel-1.9.18,1.txz) = a02baa050d75de5b56bddd4d378a6e3ce4bf61e16b693702af586f182e88f026 +SIZE (freebsd:12:x86:64/i386-wine-devel-1.9.18,1.txz) = 40415204 +SHA256 (freebsd:12:x86:64/i386-wine-staging-1.9.18,1.txz) = 5c9ab6ad0b178d1b45d65e147945adb474fdfc3d593f02ec7bc090ade7e5ecb9 +SIZE (freebsd:12:x86:64/i386-wine-staging-1.9.18,1.txz) = 43166684 Modified: head/emulators/i386-wine-devel/pkg-plist ============================================================================== --- head/emulators/i386-wine-devel/pkg-plist Sat Sep 17 17:31:39 2016 (r422335) +++ head/emulators/i386-wine-devel/pkg-plist Sat Sep 17 17:32:54 2016 (r422336) @@ -63,6 +63,7 @@ include/wine/msvcrt/eh.h include/wine/msvcrt/errno.h include/wine/msvcrt/fcntl.h include/wine/msvcrt/float.h +include/wine/msvcrt/fpieee.h include/wine/msvcrt/io.h include/wine/msvcrt/limits.h include/wine/msvcrt/locale.h @@ -908,231 +909,548 @@ lib32/.libGL/dri/i965_dri.so lib32/.libGL/dri/kms_swrast_dri.so lib32/.libGL/dri/r200_dri.so lib32/.libGL/dri/r300_dri.so -lib32/.libGL/dri/r600_dri.so -lib32/.libGL/dri/radeon_dri.so -lib32/.libGL/dri/radeonsi_dri.so -lib32/.libGL/dri/swrast_dri.so -lib32/.libGL/dri/vmwgfx_dri.so +%%OSREL9-DEVEL%%lib32/.libGL/dri/r600_dri.so +%%OSREL10%%lib32/.libGL/dri/r600_dri.so +%%OSREL11%%lib32/.libGL/dri/r600_dri.so +%%OSREL12%%lib32/.libGL/dri/r600_dri.so +%%OSREL9-DEVEL%%lib32/.libGL/dri/radeon_dri.so +%%OSREL10%%lib32/.libGL/dri/radeon_dri.so +%%OSREL11%%lib32/.libGL/dri/radeon_dri.so +%%OSREL12%%lib32/.libGL/dri/radeon_dri.so +%%OSREL9-DEVEL%%lib32/.libGL/dri/radeonsi_dri.so +%%OSREL10%%lib32/.libGL/dri/radeonsi_dri.so +%%OSREL11%%lib32/.libGL/dri/radeonsi_dri.so +%%OSREL12%%lib32/.libGL/dri/radeonsi_dri.so +%%OSREL9-DEVEL%%lib32/.libGL/dri/swrast_dri.so +%%OSREL10%%lib32/.libGL/dri/swrast_dri.so +%%OSREL11%%lib32/.libGL/dri/swrast_dri.so +%%OSREL12%%lib32/.libGL/dri/swrast_dri.so +%%OSREL9-DEVEL%%lib32/.libGL/dri/vmwgfx_dri.so +%%OSREL10%%lib32/.libGL/dri/vmwgfx_dri.so +%%OSREL11%%lib32/.libGL/dri/vmwgfx_dri.so +%%OSREL12%%lib32/.libGL/dri/vmwgfx_dri.so lib32/.libGL/libGL.so.1 -lib32/libGLU.so.1 +%%OSREL9-DEVEL%%lib32/libGLU.so.1 +%%OSREL10%%lib32/libGLU.so.1 +%%OSREL11%%lib32/libGLU.so.1 +%%OSREL12%%lib32/libGLU.so.1 %%OSREL10%%lib32/libLLVMAArch64AsmParser.so.3.7 %%OSREL11%%lib32/libLLVMAArch64AsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64AsmParser.so.3.7 %%OSREL10%%lib32/libLLVMAArch64AsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMAArch64AsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64AsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMAArch64CodeGen.so.3.7 %%OSREL11%%lib32/libLLVMAArch64CodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64CodeGen.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Desc.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Desc.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Desc.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Disassembler.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Disassembler.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Disassembler.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Info.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Info.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Info.so.3.7 %%OSREL10%%lib32/libLLVMAArch64Utils.so.3.7 %%OSREL11%%lib32/libLLVMAArch64Utils.so.3.7 -lib32/libLLVMAMDGPUAsmParser.so.3.7 -lib32/libLLVMAMDGPUAsmPrinter.so.3.7 -lib32/libLLVMAMDGPUCodeGen.so.3.7 -lib32/libLLVMAMDGPUDesc.so.3.7 -lib32/libLLVMAMDGPUInfo.so.3.7 -lib32/libLLVMAMDGPUUtils.so.3.7 +%%OSREL12%%lib32/libLLVMAArch64Utils.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAMDGPUAsmParser.so.3.7 +%%OSREL10%%lib32/libLLVMAMDGPUAsmParser.so.3.7 +%%OSREL11%%lib32/libLLVMAMDGPUAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMAMDGPUAsmParser.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAMDGPUAsmPrinter.so.3.7 +%%OSREL10%%lib32/libLLVMAMDGPUAsmPrinter.so.3.7 +%%OSREL11%%lib32/libLLVMAMDGPUAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMAMDGPUAsmPrinter.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAMDGPUCodeGen.so.3.7 +%%OSREL10%%lib32/libLLVMAMDGPUCodeGen.so.3.7 +%%OSREL11%%lib32/libLLVMAMDGPUCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMAMDGPUCodeGen.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAMDGPUDesc.so.3.7 +%%OSREL10%%lib32/libLLVMAMDGPUDesc.so.3.7 +%%OSREL11%%lib32/libLLVMAMDGPUDesc.so.3.7 +%%OSREL12%%lib32/libLLVMAMDGPUDesc.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAMDGPUInfo.so.3.7 +%%OSREL10%%lib32/libLLVMAMDGPUInfo.so.3.7 +%%OSREL11%%lib32/libLLVMAMDGPUInfo.so.3.7 +%%OSREL12%%lib32/libLLVMAMDGPUInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAMDGPUUtils.so.3.7 +%%OSREL10%%lib32/libLLVMAMDGPUUtils.so.3.7 +%%OSREL11%%lib32/libLLVMAMDGPUUtils.so.3.7 +%%OSREL12%%lib32/libLLVMAMDGPUUtils.so.3.7 %%OSREL10%%lib32/libLLVMARMAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMARMAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMARMAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMARMAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMARMAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMARMAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMARMCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMARMCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMARMCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMARMDesc.so.3.7 %%OSREL11%%lib32/libLLVMARMDesc.so.3.7 +%%OSREL12%%lib32/libLLVMARMDesc.so.3.7 %%OSREL10%%lib32/libLLVMARMDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMARMDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMARMDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMARMInfo.so.3.7 %%OSREL11%%lib32/libLLVMARMInfo.so.3.7 -lib32/libLLVMAnalysis.so.3.7 +%%OSREL12%%lib32/libLLVMARMInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAnalysis.so.3.7 +%%OSREL10%%lib32/libLLVMAnalysis.so.3.7 +%%OSREL11%%lib32/libLLVMAnalysis.so.3.7 +%%OSREL12%%lib32/libLLVMAnalysis.so.3.7 %%OSREL10%%lib32/libLLVMAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMAsmParser.so.3.7 -lib32/libLLVMAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMAsmParser.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMAsmPrinter.so.3.7 +%%OSREL10%%lib32/libLLVMAsmPrinter.so.3.7 +%%OSREL11%%lib32/libLLVMAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMBPFAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMBPFAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMBPFAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMBPFCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMBPFCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMBPFCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMBPFDesc.so.3.7 %%OSREL11%%lib32/libLLVMBPFDesc.so.3.7 +%%OSREL12%%lib32/libLLVMBPFDesc.so.3.7 %%OSREL10%%lib32/libLLVMBPFInfo.so.3.7 %%OSREL11%%lib32/libLLVMBPFInfo.so.3.7 -lib32/libLLVMBitReader.so.3.7 -lib32/libLLVMBitWriter.so.3.7 -lib32/libLLVMCodeGen.so.3.7 -lib32/libLLVMCore.so.3.7 +%%OSREL12%%lib32/libLLVMBPFInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMBitReader.so.3.7 +%%OSREL10%%lib32/libLLVMBitReader.so.3.7 +%%OSREL11%%lib32/libLLVMBitReader.so.3.7 +%%OSREL12%%lib32/libLLVMBitReader.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMBitWriter.so.3.7 +%%OSREL10%%lib32/libLLVMBitWriter.so.3.7 +%%OSREL11%%lib32/libLLVMBitWriter.so.3.7 +%%OSREL12%%lib32/libLLVMBitWriter.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMCodeGen.so.3.7 +%%OSREL10%%lib32/libLLVMCodeGen.so.3.7 +%%OSREL11%%lib32/libLLVMCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMCodeGen.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMCore.so.3.7 +%%OSREL10%%lib32/libLLVMCore.so.3.7 +%%OSREL11%%lib32/libLLVMCore.so.3.7 +%%OSREL12%%lib32/libLLVMCore.so.3.7 %%OSREL10%%lib32/libLLVMCppBackendCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMCppBackendCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMCppBackendCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMCppBackendInfo.so.3.7 %%OSREL11%%lib32/libLLVMCppBackendInfo.so.3.7 -lib32/libLLVMExecutionEngine.so.3.7 +%%OSREL12%%lib32/libLLVMCppBackendInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMExecutionEngine.so.3.7 +%%OSREL10%%lib32/libLLVMExecutionEngine.so.3.7 +%%OSREL11%%lib32/libLLVMExecutionEngine.so.3.7 +%%OSREL12%%lib32/libLLVMExecutionEngine.so.3.7 %%OSREL10%%lib32/libLLVMHexagonCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMHexagonCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMHexagonDesc.so.3.7 %%OSREL11%%lib32/libLLVMHexagonDesc.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonDesc.so.3.7 %%OSREL10%%lib32/libLLVMHexagonDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMHexagonDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMHexagonInfo.so.3.7 %%OSREL11%%lib32/libLLVMHexagonInfo.so.3.7 +%%OSREL12%%lib32/libLLVMHexagonInfo.so.3.7 %%OSREL10%%lib32/libLLVMIRReader.so.3.7 %%OSREL11%%lib32/libLLVMIRReader.so.3.7 -lib32/libLLVMInstCombine.so.3.7 -lib32/libLLVMInstrumentation.so.3.7 +%%OSREL12%%lib32/libLLVMIRReader.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMInstCombine.so.3.7 +%%OSREL10%%lib32/libLLVMInstCombine.so.3.7 +%%OSREL11%%lib32/libLLVMInstCombine.so.3.7 +%%OSREL12%%lib32/libLLVMInstCombine.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMInstrumentation.so.3.7 +%%OSREL10%%lib32/libLLVMInstrumentation.so.3.7 +%%OSREL11%%lib32/libLLVMInstrumentation.so.3.7 +%%OSREL12%%lib32/libLLVMInstrumentation.so.3.7 %%OSREL10%%lib32/libLLVMLinker.so.3.7 %%OSREL11%%lib32/libLLVMLinker.so.3.7 -lib32/libLLVMMC.so.3.7 -lib32/libLLVMMCDisassembler.so.3.7 -lib32/libLLVMMCJIT.so.3.7 -lib32/libLLVMMCParser.so.3.7 +%%OSREL12%%lib32/libLLVMLinker.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMMC.so.3.7 +%%OSREL10%%lib32/libLLVMMC.so.3.7 +%%OSREL11%%lib32/libLLVMMC.so.3.7 +%%OSREL12%%lib32/libLLVMMC.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMMCDisassembler.so.3.7 +%%OSREL10%%lib32/libLLVMMCDisassembler.so.3.7 +%%OSREL11%%lib32/libLLVMMCDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMMCDisassembler.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMMCJIT.so.3.7 +%%OSREL10%%lib32/libLLVMMCJIT.so.3.7 +%%OSREL11%%lib32/libLLVMMCJIT.so.3.7 +%%OSREL12%%lib32/libLLVMMCJIT.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMMCParser.so.3.7 +%%OSREL10%%lib32/libLLVMMCParser.so.3.7 +%%OSREL11%%lib32/libLLVMMCParser.so.3.7 +%%OSREL12%%lib32/libLLVMMCParser.so.3.7 %%OSREL10%%lib32/libLLVMMSP430AsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMMSP430AsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430AsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMMSP430CodeGen.so.3.7 %%OSREL11%%lib32/libLLVMMSP430CodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430CodeGen.so.3.7 %%OSREL10%%lib32/libLLVMMSP430Desc.so.3.7 %%OSREL11%%lib32/libLLVMMSP430Desc.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430Desc.so.3.7 %%OSREL10%%lib32/libLLVMMSP430Info.so.3.7 %%OSREL11%%lib32/libLLVMMSP430Info.so.3.7 +%%OSREL12%%lib32/libLLVMMSP430Info.so.3.7 %%OSREL10%%lib32/libLLVMMipsAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMMipsAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMMipsAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMMipsAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMMipsAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMMipsAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMMipsCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMMipsCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMMipsCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMMipsDesc.so.3.7 %%OSREL11%%lib32/libLLVMMipsDesc.so.3.7 +%%OSREL12%%lib32/libLLVMMipsDesc.so.3.7 %%OSREL10%%lib32/libLLVMMipsDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMMipsDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMMipsDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMMipsInfo.so.3.7 %%OSREL11%%lib32/libLLVMMipsInfo.so.3.7 +%%OSREL12%%lib32/libLLVMMipsInfo.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXDesc.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXDesc.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXDesc.so.3.7 %%OSREL10%%lib32/libLLVMNVPTXInfo.so.3.7 %%OSREL11%%lib32/libLLVMNVPTXInfo.so.3.7 +%%OSREL12%%lib32/libLLVMNVPTXInfo.so.3.7 %%OSREL10%%lib32/libLLVMObjCARCOpts.so.3.7 %%OSREL11%%lib32/libLLVMObjCARCOpts.so.3.7 -lib32/libLLVMObject.so.3.7 +%%OSREL12%%lib32/libLLVMObjCARCOpts.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMObject.so.3.7 +%%OSREL10%%lib32/libLLVMObject.so.3.7 +%%OSREL11%%lib32/libLLVMObject.so.3.7 +%%OSREL12%%lib32/libLLVMObject.so.3.7 %%OSREL10%%lib32/libLLVMOption.so.3.7 %%OSREL11%%lib32/libLLVMOption.so.3.7 +%%OSREL12%%lib32/libLLVMOption.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCDesc.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCDesc.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCDesc.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMPowerPCInfo.so.3.7 %%OSREL11%%lib32/libLLVMPowerPCInfo.so.3.7 -lib32/libLLVMProfileData.so.3.7 -lib32/libLLVMRuntimeDyld.so.3.7 -lib32/libLLVMScalarOpts.so.3.7 -lib32/libLLVMSelectionDAG.so.3.7 +%%OSREL12%%lib32/libLLVMPowerPCInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMProfileData.so.3.7 +%%OSREL10%%lib32/libLLVMProfileData.so.3.7 +%%OSREL11%%lib32/libLLVMProfileData.so.3.7 +%%OSREL12%%lib32/libLLVMProfileData.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMRuntimeDyld.so.3.7 +%%OSREL10%%lib32/libLLVMRuntimeDyld.so.3.7 +%%OSREL11%%lib32/libLLVMRuntimeDyld.so.3.7 +%%OSREL12%%lib32/libLLVMRuntimeDyld.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMScalarOpts.so.3.7 +%%OSREL10%%lib32/libLLVMScalarOpts.so.3.7 +%%OSREL11%%lib32/libLLVMScalarOpts.so.3.7 +%%OSREL12%%lib32/libLLVMScalarOpts.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMSelectionDAG.so.3.7 +%%OSREL10%%lib32/libLLVMSelectionDAG.so.3.7 +%%OSREL11%%lib32/libLLVMSelectionDAG.so.3.7 +%%OSREL12%%lib32/libLLVMSelectionDAG.so.3.7 %%OSREL10%%lib32/libLLVMSparcAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMSparcAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMSparcAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMSparcAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMSparcAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMSparcAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMSparcCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMSparcCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMSparcCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMSparcDesc.so.3.7 %%OSREL11%%lib32/libLLVMSparcDesc.so.3.7 +%%OSREL12%%lib32/libLLVMSparcDesc.so.3.7 %%OSREL10%%lib32/libLLVMSparcDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMSparcDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMSparcDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMSparcInfo.so.3.7 %%OSREL11%%lib32/libLLVMSparcInfo.so.3.7 -lib32/libLLVMSupport.so.3.7 +%%OSREL12%%lib32/libLLVMSparcInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMSupport.so.3.7 +%%OSREL10%%lib32/libLLVMSupport.so.3.7 +%%OSREL11%%lib32/libLLVMSupport.so.3.7 +%%OSREL12%%lib32/libLLVMSupport.so.3.7 %%OSREL10%%lib32/libLLVMSystemZAsmParser.so.3.7 %%OSREL11%%lib32/libLLVMSystemZAsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZAsmParser.so.3.7 %%OSREL10%%lib32/libLLVMSystemZAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMSystemZAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMSystemZCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMSystemZCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMSystemZDesc.so.3.7 %%OSREL11%%lib32/libLLVMSystemZDesc.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZDesc.so.3.7 %%OSREL10%%lib32/libLLVMSystemZDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMSystemZDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMSystemZInfo.so.3.7 %%OSREL11%%lib32/libLLVMSystemZInfo.so.3.7 -lib32/libLLVMTarget.so.3.7 -lib32/libLLVMTransformUtils.so.3.7 -lib32/libLLVMVectorize.so.3.7 -lib32/libLLVMX86AsmParser.so.3.7 -lib32/libLLVMX86AsmPrinter.so.3.7 -lib32/libLLVMX86CodeGen.so.3.7 -lib32/libLLVMX86Desc.so.3.7 -lib32/libLLVMX86Disassembler.so.3.7 -lib32/libLLVMX86Info.so.3.7 -lib32/libLLVMX86Utils.so.3.7 +%%OSREL12%%lib32/libLLVMSystemZInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMTarget.so.3.7 +%%OSREL10%%lib32/libLLVMTarget.so.3.7 +%%OSREL11%%lib32/libLLVMTarget.so.3.7 +%%OSREL12%%lib32/libLLVMTarget.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMTransformUtils.so.3.7 +%%OSREL10%%lib32/libLLVMTransformUtils.so.3.7 +%%OSREL11%%lib32/libLLVMTransformUtils.so.3.7 +%%OSREL12%%lib32/libLLVMTransformUtils.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMVectorize.so.3.7 +%%OSREL10%%lib32/libLLVMVectorize.so.3.7 +%%OSREL11%%lib32/libLLVMVectorize.so.3.7 +%%OSREL12%%lib32/libLLVMVectorize.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86AsmParser.so.3.7 +%%OSREL10%%lib32/libLLVMX86AsmParser.so.3.7 +%%OSREL11%%lib32/libLLVMX86AsmParser.so.3.7 +%%OSREL12%%lib32/libLLVMX86AsmParser.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86AsmPrinter.so.3.7 +%%OSREL10%%lib32/libLLVMX86AsmPrinter.so.3.7 +%%OSREL11%%lib32/libLLVMX86AsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMX86AsmPrinter.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86CodeGen.so.3.7 +%%OSREL10%%lib32/libLLVMX86CodeGen.so.3.7 +%%OSREL11%%lib32/libLLVMX86CodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMX86CodeGen.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86Desc.so.3.7 +%%OSREL10%%lib32/libLLVMX86Desc.so.3.7 +%%OSREL11%%lib32/libLLVMX86Desc.so.3.7 +%%OSREL12%%lib32/libLLVMX86Desc.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86Disassembler.so.3.7 +%%OSREL10%%lib32/libLLVMX86Disassembler.so.3.7 +%%OSREL11%%lib32/libLLVMX86Disassembler.so.3.7 +%%OSREL12%%lib32/libLLVMX86Disassembler.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86Info.so.3.7 +%%OSREL10%%lib32/libLLVMX86Info.so.3.7 +%%OSREL11%%lib32/libLLVMX86Info.so.3.7 +%%OSREL12%%lib32/libLLVMX86Info.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMX86Utils.so.3.7 +%%OSREL10%%lib32/libLLVMX86Utils.so.3.7 +%%OSREL11%%lib32/libLLVMX86Utils.so.3.7 +%%OSREL12%%lib32/libLLVMX86Utils.so.3.7 %%OSREL10%%lib32/libLLVMXCoreAsmPrinter.so.3.7 %%OSREL11%%lib32/libLLVMXCoreAsmPrinter.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreAsmPrinter.so.3.7 %%OSREL10%%lib32/libLLVMXCoreCodeGen.so.3.7 %%OSREL11%%lib32/libLLVMXCoreCodeGen.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreCodeGen.so.3.7 %%OSREL10%%lib32/libLLVMXCoreDesc.so.3.7 %%OSREL11%%lib32/libLLVMXCoreDesc.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreDesc.so.3.7 %%OSREL10%%lib32/libLLVMXCoreDisassembler.so.3.7 %%OSREL11%%lib32/libLLVMXCoreDisassembler.so.3.7 +%%OSREL12%%lib32/libLLVMXCoreDisassembler.so.3.7 %%OSREL10%%lib32/libLLVMXCoreInfo.so.3.7 %%OSREL11%%lib32/libLLVMXCoreInfo.so.3.7 -lib32/libLLVMipa.so.3.7 -lib32/libLLVMipo.so.3.7 -lib32/libX11-xcb.so.1 -lib32/libX11.so.6 -lib32/libXau.so.6 -lib32/libXcomposite.so.1 -lib32/libXcursor.so.1 -lib32/libXdamage.so.1 -lib32/libXdmcp.so.6 -lib32/libXext.so.6 -lib32/libXfixes.so.3 -lib32/libXi.so.6 -lib32/libXinerama.so.1 -lib32/libXrandr.so.2 -lib32/libXrender.so.1 -lib32/libXxf86vm.so.1 -lib32/libdevq.so.0 -lib32/libdrm.so.2 -lib32/libdrm_amdgpu.so.1 -lib32/libdrm_intel.so.1 -lib32/libdrm_radeon.so.1 -lib32/libexpat.so.1 -lib32/libffi.so.6 -lib32/libfontconfig.so.1 -lib32/libfreetype.so.6 -%%OSREL9%%lib32/libgcc_s.so.1 -lib32/libglapi.so.0 -lib32/libgmp.so.10 -lib32/libgnutls.so.30 -lib32/libhogweed.so.4 -%%OSREL9%%lib32/libiconv.so.2 -lib32/libidn.so.11 -lib32/libintl.so.8 -lib32/libjpeg.so.8 -lib32/liblcms2.so.2 +%%OSREL12%%lib32/libLLVMXCoreInfo.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMipa.so.3.7 +%%OSREL10%%lib32/libLLVMipa.so.3.7 +%%OSREL11%%lib32/libLLVMipa.so.3.7 +%%OSREL12%%lib32/libLLVMipa.so.3.7 +%%OSREL9-DEVEL%%lib32/libLLVMipo.so.3.7 +%%OSREL10%%lib32/libLLVMipo.so.3.7 +%%OSREL11%%lib32/libLLVMipo.so.3.7 +%%OSREL12%%lib32/libLLVMipo.so.3.7 +%%OSREL9-DEVEL%%lib32/libX11-xcb.so.1 +%%OSREL10%%lib32/libX11-xcb.so.1 +%%OSREL11%%lib32/libX11-xcb.so.1 +%%OSREL12%%lib32/libX11-xcb.so.1 +%%OSREL9-DEVEL%%lib32/libX11.so.6 +%%OSREL10%%lib32/libX11.so.6 +%%OSREL11%%lib32/libX11.so.6 +%%OSREL12%%lib32/libX11.so.6 +%%OSREL9-DEVEL%%lib32/libXau.so.6 +%%OSREL10%%lib32/libXau.so.6 +%%OSREL11%%lib32/libXau.so.6 +%%OSREL12%%lib32/libXau.so.6 +%%OSREL9-DEVEL%%lib32/libXcomposite.so.1 +%%OSREL10%%lib32/libXcomposite.so.1 +%%OSREL11%%lib32/libXcomposite.so.1 +%%OSREL12%%lib32/libXcomposite.so.1 +%%OSREL9-DEVEL%%lib32/libXcursor.so.1 +%%OSREL10%%lib32/libXcursor.so.1 +%%OSREL11%%lib32/libXcursor.so.1 +%%OSREL12%%lib32/libXcursor.so.1 +%%OSREL9-DEVEL%%lib32/libXdamage.so.1 +%%OSREL10%%lib32/libXdamage.so.1 +%%OSREL11%%lib32/libXdamage.so.1 +%%OSREL12%%lib32/libXdamage.so.1 +%%OSREL9-DEVEL%%lib32/libXdmcp.so.6 +%%OSREL10%%lib32/libXdmcp.so.6 +%%OSREL11%%lib32/libXdmcp.so.6 +%%OSREL12%%lib32/libXdmcp.so.6 +%%OSREL9-DEVEL%%lib32/libXext.so.6 +%%OSREL10%%lib32/libXext.so.6 +%%OSREL11%%lib32/libXext.so.6 +%%OSREL12%%lib32/libXext.so.6 +%%OSREL9-DEVEL%%lib32/libXfixes.so.3 +%%OSREL10%%lib32/libXfixes.so.3 +%%OSREL11%%lib32/libXfixes.so.3 +%%OSREL12%%lib32/libXfixes.so.3 +%%OSREL9-DEVEL%%lib32/libXi.so.6 +%%OSREL10%%lib32/libXi.so.6 +%%OSREL11%%lib32/libXi.so.6 +%%OSREL12%%lib32/libXi.so.6 +%%OSREL9-DEVEL%%lib32/libXinerama.so.1 +%%OSREL10%%lib32/libXinerama.so.1 +%%OSREL11%%lib32/libXinerama.so.1 +%%OSREL12%%lib32/libXinerama.so.1 +%%OSREL9-DEVEL%%lib32/libXrandr.so.2 +%%OSREL10%%lib32/libXrandr.so.2 +%%OSREL11%%lib32/libXrandr.so.2 +%%OSREL12%%lib32/libXrandr.so.2 +%%OSREL9-DEVEL%%lib32/libXrender.so.1 +%%OSREL10%%lib32/libXrender.so.1 +%%OSREL11%%lib32/libXrender.so.1 +%%OSREL12%%lib32/libXrender.so.1 +%%OSREL9-DEVEL%%lib32/libXxf86vm.so.1 +%%OSREL10%%lib32/libXxf86vm.so.1 +%%OSREL11%%lib32/libXxf86vm.so.1 +%%OSREL12%%lib32/libXxf86vm.so.1 +%%OSREL9-DEVEL%%lib32/libdevq.so.0 +%%OSREL10%%lib32/libdevq.so.0 +%%OSREL11%%lib32/libdevq.so.0 +%%OSREL12%%lib32/libdevq.so.0 +%%OSREL9-DEVEL%%lib32/libdrm.so.2 +%%OSREL10%%lib32/libdrm.so.2 +%%OSREL11%%lib32/libdrm.so.2 +%%OSREL12%%lib32/libdrm.so.2 +%%OSREL9-DEVEL%%lib32/libdrm_amdgpu.so.1 +%%OSREL10%%lib32/libdrm_amdgpu.so.1 +%%OSREL11%%lib32/libdrm_amdgpu.so.1 +%%OSREL12%%lib32/libdrm_amdgpu.so.1 +%%OSREL9-DEVEL%%lib32/libdrm_intel.so.1 +%%OSREL10%%lib32/libdrm_intel.so.1 +%%OSREL11%%lib32/libdrm_intel.so.1 +%%OSREL12%%lib32/libdrm_intel.so.1 +%%OSREL9-DEVEL%%lib32/libdrm_radeon.so.1 +%%OSREL10%%lib32/libdrm_radeon.so.1 +%%OSREL11%%lib32/libdrm_radeon.so.1 +%%OSREL12%%lib32/libdrm_radeon.so.1 +%%OSREL9-DEVEL%%lib32/libexpat.so.1 +%%OSREL10%%lib32/libexpat.so.1 +%%OSREL11%%lib32/libexpat.so.1 +%%OSREL12%%lib32/libexpat.so.1 +%%OSREL9-DEVEL%%lib32/libffi.so.6 +%%OSREL10%%lib32/libffi.so.6 +%%OSREL11%%lib32/libffi.so.6 +%%OSREL12%%lib32/libffi.so.6 +%%OSREL9-DEVEL%%lib32/libfontconfig.so.1 +%%OSREL10%%lib32/libfontconfig.so.1 +%%OSREL11%%lib32/libfontconfig.so.1 +%%OSREL12%%lib32/libfontconfig.so.1 +%%OSREL9-DEVEL%%lib32/libfreetype.so.6 +%%OSREL10%%lib32/libfreetype.so.6 +%%OSREL11%%lib32/libfreetype.so.6 +%%OSREL12%%lib32/libfreetype.so.6 +%%DEVEL%%lib32/libgcc_s.so.1 +%%OSREL9-DEVEL%%lib32/libglapi.so.0 +%%OSREL10%%lib32/libglapi.so.0 +%%OSREL11%%lib32/libglapi.so.0 +%%OSREL12%%lib32/libglapi.so.0 +%%OSREL9-DEVEL%%lib32/libgmp.so.10 +%%OSREL10%%lib32/libgmp.so.10 +%%OSREL11%%lib32/libgmp.so.10 +%%OSREL12%%lib32/libgmp.so.10 +%%OSREL9-DEVEL%%lib32/libgnutls.so.30 +%%OSREL10%%lib32/libgnutls.so.30 +%%OSREL11%%lib32/libgnutls.so.30 +%%OSREL12%%lib32/libgnutls.so.30 +%%OSREL9-DEVEL%%lib32/libhogweed.so.4 +%%OSREL10%%lib32/libhogweed.so.4 +%%OSREL11%%lib32/libhogweed.so.4 +%%OSREL12%%lib32/libhogweed.so.4 +%%DEVEL%%lib32/libiconv.so.2 +%%OSREL9-DEVEL%%lib32/libidn.so.11 +%%OSREL10%%lib32/libidn.so.11 +%%OSREL11%%lib32/libidn.so.11 +%%OSREL12%%lib32/libidn.so.11 +%%OSREL9-DEVEL%%lib32/libintl.so.8 +%%OSREL10%%lib32/libintl.so.8 +%%OSREL11%%lib32/libintl.so.8 +%%OSREL12%%lib32/libintl.so.8 +%%OSREL9-DEVEL%%lib32/libjpeg.so.8 +%%OSREL10%%lib32/libjpeg.so.8 +%%OSREL11%%lib32/libjpeg.so.8 +%%OSREL12%%lib32/libjpeg.so.8 +%%OSREL9-DEVEL%%lib32/liblcms2.so.2 +%%OSREL10%%lib32/liblcms2.so.2 +%%OSREL11%%lib32/liblcms2.so.2 +%%OSREL12%%lib32/liblcms2.so.2 %%STAGING%%lib32/libmpg123.so.0 -lib32/libnettle.so.6 -lib32/libp11-kit.so.0 -lib32/libpciaccess.so.0 -lib32/libpng16.so.16 -lib32/libpthread-stubs.so.0 -%%OSREL9%%lib32/libstdc++.so.6 -lib32/libtasn1.so.6 +%%OSREL9-DEVEL%%lib32/libnettle.so.6 +%%OSREL10%%lib32/libnettle.so.6 +%%OSREL11%%lib32/libnettle.so.6 +%%OSREL12%%lib32/libnettle.so.6 +%%OSREL9-DEVEL%%lib32/libp11-kit.so.0 +%%OSREL10%%lib32/libp11-kit.so.0 +%%OSREL11%%lib32/libp11-kit.so.0 +%%OSREL12%%lib32/libp11-kit.so.0 +%%OSREL9-DEVEL%%lib32/libpciaccess.so.0 +%%OSREL10%%lib32/libpciaccess.so.0 +%%OSREL11%%lib32/libpciaccess.so.0 +%%OSREL12%%lib32/libpciaccess.so.0 +%%OSREL9-DEVEL%%lib32/libpng16.so.16 +%%OSREL10%%lib32/libpng16.so.16 +%%OSREL11%%lib32/libpng16.so.16 +%%OSREL12%%lib32/libpng16.so.16 +%%OSREL9-DEVEL%%lib32/libpthread-stubs.so.0 +%%OSREL10%%lib32/libpthread-stubs.so.0 +%%OSREL11%%lib32/libpthread-stubs.so.0 +%%OSREL12%%lib32/libpthread-stubs.so.0 +%%DEVEL%%lib32/libstdc++.so.6 +%%OSREL9-DEVEL%%lib32/libtasn1.so.6 +%%OSREL10%%lib32/libtasn1.so.6 +%%OSREL11%%lib32/libtasn1.so.6 +%%OSREL12%%lib32/libtasn1.so.6 %%STAGING%%lib32/libtxc_dxtn.so %%STAGING%%lib32/libv4l1.so.0 %%STAGING%%lib32/libv4l2.so.0 %%STAGING%%lib32/libv4lconvert.so.0 lib32/libwine.so lib32/libwine.so.1 -lib32/libxcb-dri2.so.0 -lib32/libxcb-glx.so.0 -lib32/libxcb.so.1 -lib32/libxml2.so.2 +%%OSREL9-DEVEL%%lib32/libxcb-dri2.so.0 +%%OSREL10%%lib32/libxcb-dri2.so.0 +%%OSREL11%%lib32/libxcb-dri2.so.0 +%%OSREL12%%lib32/libxcb-dri2.so.0 +%%OSREL9-DEVEL%%lib32/libxcb-glx.so.0 +%%OSREL10%%lib32/libxcb-glx.so.0 +%%OSREL11%%lib32/libxcb-glx.so.0 +%%OSREL12%%lib32/libxcb-glx.so.0 +%%OSREL9-DEVEL%%lib32/libxcb.so.1 +%%OSREL10%%lib32/libxcb.so.1 +%%OSREL11%%lib32/libxcb.so.1 +%%OSREL12%%lib32/libxcb.so.1 +%%OSREL9-DEVEL%%lib32/libxml2.so.2 +%%OSREL10%%lib32/libxml2.so.2 +%%OSREL11%%lib32/libxml2.so.2 +%%OSREL12%%lib32/libxml2.so.2 %%STAGING%%lib32/libxslt.so.1 lib32/wine/acledit.dll.so lib32/wine/aclui.dll.so @@ -1170,6 +1488,8 @@ lib32/wine/api-ms-win-core-heap-obsolete lib32/wine/api-ms-win-core-interlocked-l1-1-0.dll.so lib32/wine/api-ms-win-core-interlocked-l1-2-0.dll.so lib32/wine/api-ms-win-core-io-l1-1-1.dll.so +lib32/wine/api-ms-win-core-job-l1-1-0.dll.so +lib32/wine/api-ms-win-core-job-l2-1-0.dll.so lib32/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so lib32/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so @@ -1186,6 +1506,8 @@ lib32/wine/api-ms-win-core-memory-l1-1-1 lib32/wine/api-ms-win-core-misc-l1-1-0.dll.so lib32/wine/api-ms-win-core-namedpipe-l1-1-0.dll.so lib32/wine/api-ms-win-core-namedpipe-l1-2-0.dll.so +lib32/wine/api-ms-win-core-namespace-l1-1-0.dll.so +lib32/wine/api-ms-win-core-normalization-l1-1-0.dll.so lib32/wine/api-ms-win-core-path-l1-1-0.dll.so lib32/wine/api-ms-win-core-processenvironment-l1-1-0.dll.so lib32/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so @@ -1202,6 +1524,7 @@ lib32/wine/api-ms-win-core-shlwapi-legac %%STAGING%%lib32/wine/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll.so lib32/wine/api-ms-win-core-string-l1-1-0.dll.so lib32/wine/api-ms-win-core-string-l2-1-0.dll.so +lib32/wine/api-ms-win-core-string-obsolete-l1-1-0.dll.so lib32/wine/api-ms-win-core-synch-l1-1-0.dll.so lib32/wine/api-ms-win-core-synch-l1-2-0.dll.so lib32/wine/api-ms-win-core-sysinfo-l1-1-0.dll.so @@ -1210,6 +1533,7 @@ lib32/wine/api-ms-win-core-sysinfo-l1-2- %%STAGING%%lib32/wine/api-ms-win-core-threadpool-l1-2-0.dll.so lib32/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so lib32/wine/api-ms-win-core-timezone-l1-1-0.dll.so +lib32/wine/api-ms-win-core-toolhelp-l1-1-0.dll.so lib32/wine/api-ms-win-core-url-l1-1-0.dll.so lib32/wine/api-ms-win-core-util-l1-1-0.dll.so lib32/wine/api-ms-win-core-version-l1-1-0.dll.so @@ -1246,6 +1570,7 @@ lib32/wine/api-ms-win-downlevel-user32-l lib32/wine/api-ms-win-downlevel-version-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so lib32/wine/api-ms-win-eventing-provider-l1-1-0.dll.so +lib32/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so lib32/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so @@ -1260,6 +1585,7 @@ lib32/wine/api-ms-win-service-winsvc-l1- %%STAGING%%lib32/wine/api-ms-win-shcore-obsolete-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-shcore-stream-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-shcore-thread-l1-1-0.dll.so +lib32/wine/api-ms-win-shell-shellfolders-l1-1-0.dll.so lib32/wine/apphelp.dll.so lib32/wine/appwiz.cpl.so lib32/wine/arp.exe.so @@ -1465,6 +1791,8 @@ lib32/wine/fakedlls/api-ms-win-core-heap lib32/wine/fakedlls/api-ms-win-core-interlocked-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll lib32/wine/fakedlls/api-ms-win-core-io-l1-1-1.dll +lib32/wine/fakedlls/api-ms-win-core-job-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-job-l2-1-0.dll lib32/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-core-kernel32-legacy-l1-1-1.dll lib32/wine/fakedlls/api-ms-win-core-libraryloader-l1-1-0.dll @@ -1481,6 +1809,8 @@ lib32/wine/fakedlls/api-ms-win-core-memo lib32/wine/fakedlls/api-ms-win-core-misc-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-namedpipe-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-namedpipe-l1-2-0.dll +lib32/wine/fakedlls/api-ms-win-core-namespace-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-normalization-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-path-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-processenvironment-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll @@ -1497,6 +1827,7 @@ lib32/wine/fakedlls/api-ms-win-core-shlw %%STAGING%%lib32/wine/fakedlls/api-ms-win-core-shlwapi-obsolete-l1-2-0.dll lib32/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-string-l2-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-string-obsolete-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-synch-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll lib32/wine/fakedlls/api-ms-win-core-sysinfo-l1-1-0.dll @@ -1505,6 +1836,7 @@ lib32/wine/fakedlls/api-ms-win-core-sysi %%STAGING%%lib32/wine/fakedlls/api-ms-win-core-threadpool-l1-2-0.dll lib32/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-toolhelp-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-version-l1-1-0.dll @@ -1541,6 +1873,7 @@ lib32/wine/fakedlls/api-ms-win-downlevel lib32/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll @@ -1555,6 +1888,7 @@ lib32/wine/fakedlls/api-ms-win-service-w %%STAGING%%lib32/wine/fakedlls/api-ms-win-shcore-obsolete-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-shcore-stream-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-shcore-thread-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-shell-shellfolders-l1-1-0.dll lib32/wine/fakedlls/apphelp.dll lib32/wine/fakedlls/appwiz.cpl lib32/wine/fakedlls/arp.exe @@ -1844,6 +2178,7 @@ lib32/wine/fakedlls/msisys.ocx lib32/wine/fakedlls/msls31.dll lib32/wine/fakedlls/msnet32.dll lib32/wine/fakedlls/mspatcha.dll +lib32/wine/fakedlls/msports.dll lib32/wine/fakedlls/msrle32.dll lib32/wine/fakedlls/msscript.ocx lib32/wine/fakedlls/mssign32.dll @@ -2132,6 +2467,7 @@ lib32/wine/fakedlls/wmvcore.dll lib32/wine/fakedlls/wnaspi32.dll lib32/wine/fakedlls/wordpad.exe lib32/wine/fakedlls/wow32.dll +lib32/wine/fakedlls/wpc.dll lib32/wine/fakedlls/wpcap.dll lib32/wine/fakedlls/write.exe lib32/wine/fakedlls/ws2_32.dll @@ -2452,6 +2788,7 @@ lib32/wine/msisys.ocx.so lib32/wine/msls31.dll.so lib32/wine/msnet32.dll.so lib32/wine/mspatcha.dll.so +lib32/wine/msports.dll.so lib32/wine/msrle32.dll.so lib32/wine/msscript.ocx.so lib32/wine/mssign32.dll.so @@ -2740,6 +3077,7 @@ lib32/wine/wmvcore.dll.so lib32/wine/wnaspi32.dll.so lib32/wine/wordpad.exe.so lib32/wine/wow32.dll.so +lib32/wine/wpc.dll.so lib32/wine/wpcap.dll.so lib32/wine/write.exe.so lib32/wine/ws2_32.dll.so @@ -2856,6 +3194,15 @@ share/wine/fonts/vgasysg.fon share/wine/fonts/vgasysr.fon share/wine/fonts/vgasyst.fon share/wine/fonts/wingding.ttf -share/wine/l_intl.nls -share/wine/patch-nvidia.sh -share/wine/wine.inf +%%OSREL9-DEVEL%%share/wine/l_intl.nls +%%OSREL10%%share/wine/l_intl.nls +%%OSREL11%%share/wine/l_intl.nls +%%OSREL12%%share/wine/l_intl.nls +%%OSREL9-DEVEL%%share/wine/patch-nvidia.sh +%%OSREL10%%share/wine/patch-nvidia.sh +%%OSREL11%%share/wine/patch-nvidia.sh +%%OSREL12%%share/wine/patch-nvidia.sh +%%OSREL9-DEVEL%%share/wine/wine.inf +%%OSREL10%%share/wine/wine.inf +%%OSREL11%%share/wine/wine.inf +%%OSREL12%%share/wine/wine.inf From owner-svn-ports-head@freebsd.org Sat Sep 17 17:54:26 2016 Return-Path: Delivered-To: svn-ports-head@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 49BF0BDECD2; Sat, 17 Sep 2016 17:54:26 +0000 (UTC) (envelope-from ohauer@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 1C98E986; Sat, 17 Sep 2016 17:54:26 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HHsPwX087699; Sat, 17 Sep 2016 17:54:25 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HHsPvK087698; Sat, 17 Sep 2016 17:54:25 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201609171754.u8HHsPvK087698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sat, 17 Sep 2016 17:54:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422337 - head/net-mgmt/cnagios X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 17:54:26 -0000 Author: ohauer Date: Sat Sep 17 17:54:25 2016 New Revision: 422337 URL: https://svnweb.freebsd.org/changeset/ports/422337 Log: - change MAINTAINER PR: 212102 Approved by: alexander.4mail@gmail.com (old maintainer) Modified: head/net-mgmt/cnagios/Makefile Modified: head/net-mgmt/cnagios/Makefile ============================================================================== --- head/net-mgmt/cnagios/Makefile Sat Sep 17 17:32:54 2016 (r422336) +++ head/net-mgmt/cnagios/Makefile Sat Sep 17 17:54:25 2016 (r422337) @@ -5,7 +5,7 @@ PORTNAME= cnagios PORTVERSION= 0.32 CATEGORIES= net-mgmt -MAINTAINER= alexander.4mail@gmail.com +MAINTAINER= danny@dannywarren.com COMMENT= Curses-based interface for nagios LICENSE= ISCL From owner-svn-ports-head@freebsd.org Sat Sep 17 18:13:36 2016 Return-Path: Delivered-To: svn-ports-head@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 103ECBDE135; Sat, 17 Sep 2016 18:13:36 +0000 (UTC) (envelope-from ohauer@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 C6DD120D; Sat, 17 Sep 2016 18:13:35 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HIDZUv095516; Sat, 17 Sep 2016 18:13:35 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HIDYZP095512; Sat, 17 Sep 2016 18:13:34 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201609171813.u8HIDYZP095512@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sat, 17 Sep 2016 18:13:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422338 - in head/www: mod_python33 mod_python33/files mod_python35 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 18:13:36 -0000 Author: ohauer Date: Sat Sep 17 18:13:34 2016 New Revision: 422338 URL: https://svnweb.freebsd.org/changeset/ports/422338 Log: - limit python version to 2.7 - re- generate mod_python33 patch files PR: 212446 Reported by: George Michaelson Modified: head/www/mod_python33/Makefile head/www/mod_python33/files/patch-configure head/www/mod_python33/files/patch-src__connobject.c head/www/mod_python35/Makefile Modified: head/www/mod_python33/Makefile ============================================================================== --- head/www/mod_python33/Makefile Sat Sep 17 17:54:25 2016 (r422337) +++ head/www/mod_python33/Makefile Sat Sep 17 18:13:34 2016 (r422338) @@ -18,7 +18,7 @@ LICENSE= APACHE20 CONFLICTS_INSTALL= ap2[24]-mod_python3[^3]* USE_APACHE= 22 -USES= cpe python tar:tgz +USES= cpe python:2.7 tar:tgz CPE_VENDOR= apache GNU_CONFIGURE= yes Modified: head/www/mod_python33/files/patch-configure ============================================================================== --- head/www/mod_python33/files/patch-configure Sat Sep 17 17:54:25 2016 (r422337) +++ head/www/mod_python33/files/patch-configure Sat Sep 17 18:13:34 2016 (r422338) @@ -1,6 +1,6 @@ ---- ./configure.orig 2006-03-11 03:46:52.000000000 +0000 -+++ ./configure 2014-08-02 22:49:33.000000000 +0000 -@@ -3013,7 +3013,7 @@ +--- configure.orig 2006-03-11 03:46:52 UTC ++++ configure +@@ -3013,7 +3013,7 @@ echo "$as_me:$LINENO: checking linker fl echo $ECHO_N "checking linker flags used to link Python... $ECHO_C" >&6 PyLFS=`grep "^LINKFORSHARED=" ${PyLIBPL}/Makefile | cut -f2 -d= | tr '\011\012\015' ' '` @@ -9,4 +9,3 @@ LDFLAGS="${LDFLAGS} ${PyLFS} ${PyLDFLAGS}" LDFLAGS="${LDFLAGS} ${PY_LDFLAGS}" echo "$as_me:$LINENO: result: $PY_LDFLAGS" >&5 - Modified: head/www/mod_python33/files/patch-src__connobject.c ============================================================================== --- head/www/mod_python33/files/patch-src__connobject.c Sat Sep 17 17:54:25 2016 (r422337) +++ head/www/mod_python33/files/patch-src__connobject.c Sat Sep 17 18:13:34 2016 (r422338) @@ -1,6 +1,6 @@ ---- src/connobject.c.orig 2008-08-28 12:30:24.000000000 +0000 -+++ src/connobject.c 2008-08-28 12:30:35.000000000 +0000 -@@ -139,7 +139,7 @@ +--- src/connobject.c.orig 2006-12-03 04:36:37 UTC ++++ src/connobject.c +@@ -139,7 +139,7 @@ static PyObject * _conn_read(conn_rec *c bytes_read = 0; while ((bytes_read < len || len == 0) && Modified: head/www/mod_python35/Makefile ============================================================================== --- head/www/mod_python35/Makefile Sat Sep 17 17:54:25 2016 (r422337) +++ head/www/mod_python35/Makefile Sat Sep 17 18:13:34 2016 (r422338) @@ -19,7 +19,7 @@ LICENSE= APACHE20 CONFLICTS_INSTALL= ap2[24]-mod_python3[^5]* USE_APACHE= 22+ -USES= cpe python tar:tgz +USES= cpe python:2.7 tar:tgz CPE_VENDOR= apache SUB_FILES= pkg-message 270_mod_python.conf.sample From owner-svn-ports-head@freebsd.org Sat Sep 17 19:00:48 2016 Return-Path: Delivered-To: svn-ports-head@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 A7B95BDE144; Sat, 17 Sep 2016 19:00:48 +0000 (UTC) (envelope-from bapt@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 71575D21; Sat, 17 Sep 2016 19:00:48 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HJ0l4U010647; Sat, 17 Sep 2016 19:00:47 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HJ0lh9010644; Sat, 17 Sep 2016 19:00:47 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609171900.u8HJ0lh9010644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 17 Sep 2016 19:00:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422339 - head/benchmarks/fio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 19:00:48 -0000 Author: bapt Date: Sat Sep 17 19:00:47 2016 New Revision: 422339 URL: https://svnweb.freebsd.org/changeset/ports/422339 Log: Update to 2.14 Modified: head/benchmarks/fio/Makefile head/benchmarks/fio/distinfo head/benchmarks/fio/pkg-plist Modified: head/benchmarks/fio/Makefile ============================================================================== --- head/benchmarks/fio/Makefile Sat Sep 17 18:13:34 2016 (r422338) +++ head/benchmarks/fio/Makefile Sat Sep 17 19:00:47 2016 (r422339) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fio -PORTVERSION= 2.13 +PORTVERSION= 2.14 CATEGORIES= benchmarks MASTER_SITES= http://brick.kernel.dk/snaps/ Modified: head/benchmarks/fio/distinfo ============================================================================== --- head/benchmarks/fio/distinfo Sat Sep 17 18:13:34 2016 (r422338) +++ head/benchmarks/fio/distinfo Sat Sep 17 19:00:47 2016 (r422339) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469294180 -SHA256 (fio-2.13.tar.bz2) = e03f3c7477ebab152edea3c08988e83cb57a53865439f377a9aa223dbf4c7681 -SIZE (fio-2.13.tar.bz2) = 530845 +TIMESTAMP = 1474138756 +SHA256 (fio-2.14.tar.bz2) = 9156f784ab96a90150984ba92ddbd677b53605e70debf30f64bbbd438787e819 +SIZE (fio-2.14.tar.bz2) = 543963 Modified: head/benchmarks/fio/pkg-plist ============================================================================== --- head/benchmarks/fio/pkg-plist Sat Sep 17 18:13:34 2016 (r422338) +++ head/benchmarks/fio/pkg-plist Sat Sep 17 19:00:47 2016 (r422339) @@ -4,6 +4,8 @@ man/man1/fio.1.gz man/man1/fio_generate_plots.1.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/1mbs_clients.fio %%PORTEXAMPLES%%%%EXAMPLESDIR%%/aio-read.fio +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/backwards-read.fio +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basic-verify.fio %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cpuio.fio %%PORTEXAMPLES%%%%EXAMPLESDIR%%/disk-zone-profile.fio %%PORTEXAMPLES%%%%EXAMPLESDIR%%/e4defrag.fio From owner-svn-ports-head@freebsd.org Sat Sep 17 19:01:11 2016 Return-Path: Delivered-To: svn-ports-head@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 9A341BDE180; Sat, 17 Sep 2016 19:01:11 +0000 (UTC) (envelope-from bapt@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 668F8E33; Sat, 17 Sep 2016 19:01:11 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HJ1Akp010777; Sat, 17 Sep 2016 19:01:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HJ1AmH010775; Sat, 17 Sep 2016 19:01:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201609171901.u8HJ1AmH010775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 17 Sep 2016 19:01:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422340 - head/mail/neomutt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 19:01:11 -0000 Author: bapt Date: Sat Sep 17 19:01:10 2016 New Revision: 422340 URL: https://svnweb.freebsd.org/changeset/ports/422340 Log: Update to 20160916 Modified: head/mail/neomutt/Makefile head/mail/neomutt/distinfo Modified: head/mail/neomutt/Makefile ============================================================================== --- head/mail/neomutt/Makefile Sat Sep 17 19:00:47 2016 (r422339) +++ head/mail/neomutt/Makefile Sat Sep 17 19:01:10 2016 (r422340) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= neomutt -PORTVERSION= 20160910 +PORTVERSION= 20160916 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 1 CATEGORIES= mail MAINTAINER= bapt@FreeBSD.org Modified: head/mail/neomutt/distinfo ============================================================================== --- head/mail/neomutt/distinfo Sat Sep 17 19:00:47 2016 (r422339) +++ head/mail/neomutt/distinfo Sat Sep 17 19:01:10 2016 (r422340) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473589342 -SHA256 (neomutt-neomutt-neomutt-20160910_GH0.tar.gz) = cc1159c7210a706db765b7198ac53405d25e7577ff9e5cd2f1d062964213798b -SIZE (neomutt-neomutt-neomutt-20160910_GH0.tar.gz) = 2638853 +TIMESTAMP = 1474138716 +SHA256 (neomutt-neomutt-neomutt-20160916_GH0.tar.gz) = dc32b23f1fde0bc9e1d2ba38479ee36a8a23840f140cbc1627a184b886d57782 +SIZE (neomutt-neomutt-neomutt-20160916_GH0.tar.gz) = 2652099 From owner-svn-ports-head@freebsd.org Sat Sep 17 19:21:37 2016 Return-Path: Delivered-To: svn-ports-head@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 82B28BDE797; Sat, 17 Sep 2016 19:21:37 +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 53182932; Sat, 17 Sep 2016 19:21:37 +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 u8HJLaFU018702; Sat, 17 Sep 2016 19:21:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HJLaHf018700; Sat, 17 Sep 2016 19:21:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609171921.u8HJLaHf018700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 17 Sep 2016 19:21:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422341 - head/dns/dnsviz X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 19:21:37 -0000 Author: pi Date: Sat Sep 17 19:21:36 2016 New Revision: 422341 URL: https://svnweb.freebsd.org/changeset/ports/422341 Log: dns/dnsviz: 0.6.0 -> 0.6.1 - several minor bug fixes, mostly for compatibility with older python versions - ability to specify a network prefix to be used in the EDNS Client Subnet option for queries issued - introduces a check for CNAME and non-CNAME data at the same name Modified: head/dns/dnsviz/Makefile head/dns/dnsviz/distinfo Modified: head/dns/dnsviz/Makefile ============================================================================== --- head/dns/dnsviz/Makefile Sat Sep 17 19:01:10 2016 (r422340) +++ head/dns/dnsviz/Makefile Sat Sep 17 19:21:36 2016 (r422341) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= dnsviz -PORTVERSION= 0.6.0 +PORTVERSION= 0.6.1 DISTVERSIONPREFIX=v CATEGORIES= dns Modified: head/dns/dnsviz/distinfo ============================================================================== --- head/dns/dnsviz/distinfo Sat Sep 17 19:01:10 2016 (r422340) +++ head/dns/dnsviz/distinfo Sat Sep 17 19:21:36 2016 (r422341) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473330462 -SHA256 (dnsviz-dnsviz-v0.6.0_GH0.tar.gz) = fbe3af18a3f6196e1c6880c8db6a355e8daa86f524f174028aae8a21b5427184 -SIZE (dnsviz-dnsviz-v0.6.0_GH0.tar.gz) = 323079 +TIMESTAMP = 1474123302 +SHA256 (dnsviz-dnsviz-v0.6.1_GH0.tar.gz) = bcfb45a3e50fbce63f85ee48554b275afce98d10a966432423eaf9e745c64200 +SIZE (dnsviz-dnsviz-v0.6.1_GH0.tar.gz) = 323830 From owner-svn-ports-head@freebsd.org Sat Sep 17 19:26:08 2016 Return-Path: Delivered-To: svn-ports-head@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 44AF9BDE810; Sat, 17 Sep 2016 19:26:08 +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 171FDAEB; Sat, 17 Sep 2016 19:26:08 +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 u8HJQ7eR021846; Sat, 17 Sep 2016 19:26:07 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HJQ7w5021844; Sat, 17 Sep 2016 19:26:07 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609171926.u8HJQ7w5021844@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 17 Sep 2016 19:26:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422342 - in head/security/revealrk: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 19:26:08 -0000 Author: pi Date: Sat Sep 17 19:26:07 2016 New Revision: 422342 URL: https://svnweb.freebsd.org/changeset/ports/422342 Log: security/revealrk: 1.1.2 -> 1.2.1 - added -z, to not report on zombie processes As long as there is no rootkit which hides as a zombie this option is safe to use and reduces false positives. - now detects Umbreon rootkit Deleted: head/security/revealrk/files/patch-revealrk.c Modified: head/security/revealrk/Makefile head/security/revealrk/distinfo Modified: head/security/revealrk/Makefile ============================================================================== --- head/security/revealrk/Makefile Sat Sep 17 19:21:36 2016 (r422341) +++ head/security/revealrk/Makefile Sat Sep 17 19:26:07 2016 (r422342) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= revealrk -PORTVERSION= 1.1.2 +PORTVERSION= 1.2.1 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/ Modified: head/security/revealrk/distinfo ============================================================================== --- head/security/revealrk/distinfo Sat Sep 17 19:21:36 2016 (r422341) +++ head/security/revealrk/distinfo Sat Sep 17 19:26:07 2016 (r422342) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463827292 -SHA256 (revealrk-1.1.2.tgz) = 5006a93ecc54698703d6bfcc49b572c335c45c5cc4190ff75281a9b4a3c593a7 -SIZE (revealrk-1.1.2.tgz) = 36009 +TIMESTAMP = 1474123150 +SHA256 (revealrk-1.2.1.tgz) = d12cc1bb6f41d68bbb21b32e4091d5570551e9e531c0cf9f012a93e428fc8775 +SIZE (revealrk-1.2.1.tgz) = 38339 From owner-svn-ports-head@freebsd.org Sat Sep 17 19:35:50 2016 Return-Path: Delivered-To: svn-ports-head@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 13D8BBDEBEF; Sat, 17 Sep 2016 19:35:50 +0000 (UTC) (envelope-from ohauer@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 D73F7F8A; Sat, 17 Sep 2016 19:35:49 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HJZnFt025679; Sat, 17 Sep 2016 19:35:49 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HJZnYu025678; Sat, 17 Sep 2016 19:35:49 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201609171935.u8HJZnYu025678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sat, 17 Sep 2016 19:35:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422343 - head/www/apache24 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 19:35:50 -0000 Author: ohauer Date: Sat Sep 17 19:35:48 2016 New Revision: 422343 URL: https://svnweb.freebsd.org/changeset/ports/422343 Log: - mod_proxy_http2 requires mod_proxy_balancer No PORTREVISION bump defaults: PROXY_BALANCER=on PROXY_HTTP2=off PR: 210868 Submitted by: M. Macha Modified: head/www/apache24/Makefile.modules Modified: head/www/apache24/Makefile.modules ============================================================================== --- head/www/apache24/Makefile.modules Sat Sep 17 19:26:07 2016 (r422342) +++ head/www/apache24/Makefile.modules Sat Sep 17 19:35:48 2016 (r422343) @@ -86,4 +86,8 @@ CONFIGURE_ARGS+= --with-libxml2=${LOCALB CONFIGURE_ARGS+= --without-libxml2 .endif +.if ${PORT_OPTIONS:MPROXY_HTTP2} && !${PORT_OPTIONS:MPROXY_BALANCER} +IGNORE= PROXY_HTTP2 needs PROXY_BALANCER +.endif + .endif # _PREMKINCLUDED From owner-svn-ports-head@freebsd.org Sat Sep 17 19:38:06 2016 Return-Path: Delivered-To: svn-ports-head@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 A9754BDED2A; Sat, 17 Sep 2016 19:38:06 +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 686E5181; Sat, 17 Sep 2016 19:38:06 +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 u8HJc5qh025892; Sat, 17 Sep 2016 19:38:05 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HJc5Vu025889; Sat, 17 Sep 2016 19:38:05 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201609171938.u8HJc5Vu025889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Sat, 17 Sep 2016 19:38:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422344 - in head/security/dehydrated: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 19:38:06 -0000 Author: robak Date: Sat Sep 17 19:38:05 2016 New Revision: 422344 URL: https://svnweb.freebsd.org/changeset/ports/422344 Log: security/dehydrated: minor fixes * Fix incorrect path in pkg-message * Fix quoting error in periodic script PR: 212727 Submitted by: Sascha Holzleiter (maintainer) MFH: 2016Q3 Modified: head/security/dehydrated/Makefile head/security/dehydrated/files/000.dehydrated.in head/security/dehydrated/files/pkg-message.in Modified: head/security/dehydrated/Makefile ============================================================================== --- head/security/dehydrated/Makefile Sat Sep 17 19:35:48 2016 (r422343) +++ head/security/dehydrated/Makefile Sat Sep 17 19:38:05 2016 (r422344) @@ -3,6 +3,7 @@ PORTNAME= dehydrated PORTVERSION= 0.3.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= security MAINTAINER= sascha@root-login.org Modified: head/security/dehydrated/files/000.dehydrated.in ============================================================================== --- head/security/dehydrated/files/000.dehydrated.in Sat Sep 17 19:35:48 2016 (r422343) +++ head/security/dehydrated/files/000.dehydrated.in Sat Sep 17 19:38:05 2016 (r422344) @@ -15,7 +15,7 @@ case "$weekly_letsencrypt_enable" in echo '!! WARNING: letsencrypt.sh has been renamed to dehydrated !!' echo '!! rename all weekly_letsencrypt_* periodic variables !!' echo '!! to weekly_dehydrated_* in your periodic.conf !!' - echo '|| and mv /usr/local/etc/{letsencrypt,dehydrated} ||' + echo '|| and mv /usr/local/etc/{letsencrypt.sh,dehydrated} ||' echo '|| default challenge path has been renamed as well ||' echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' : ${weekly_dehydrated_enable:=$weekly_letsencrypt_enable} @@ -36,7 +36,7 @@ case "$weekly_dehydrated_enable" in then %%PREFIX%%/bin/dehydrated -c $weekly_dehydrated_flags else - su -m "$weekly_dehydrated_user" -c "%%PREFIX%%/bin/dehydrated" -c $weekly_dehydrated_flags + su -m "$weekly_dehydrated_user" -c "%%PREFIX%%/bin/dehydrated -c $weekly_dehydrated_flags" fi echo "Deploying Let's Encrypt certificates:" Modified: head/security/dehydrated/files/pkg-message.in ============================================================================== --- head/security/dehydrated/files/pkg-message.in Sat Sep 17 19:35:48 2016 (r422343) +++ head/security/dehydrated/files/pkg-message.in Sat Sep 17 19:38:05 2016 (r422344) @@ -2,7 +2,7 @@ !! WARNING: letsencrypt.sh has been renamed to dehydrated !! !! rename all weekly_letsencrypt_* periodic variables !! !! to weekly_dehydrated_* in your periodic.conf !! -|| and mv /usr/local/etc/{letsencrypt,dehydrated} || +|| and mv /usr/local/etc/{letsencrypt.sh,dehydrated} || || default challenge path has been renamed as well || !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! From owner-svn-ports-head@freebsd.org Sat Sep 17 20:42:07 2016 Return-Path: Delivered-To: svn-ports-head@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 D5098BDEC53; Sat, 17 Sep 2016 20:42:07 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A9AEE82; Sat, 17 Sep 2016 20:42:07 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 1C1D9BDCAC; Sat, 17 Sep 2016 22:42:04 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id C9B1DBDC73; Sat, 17 Sep 2016 22:42:03 +0200 (CEST) Subject: Re: svn commit: r422343 - head/www/apache24 To: Olli Hauer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201609171935.u8HJZnYu025678@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Sat, 17 Sep 2016 22:42:01 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <201609171935.u8HJZnYu025678@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="20c9HtSguVECeDh11DOe0hDvBHBa1jlP3" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 20:42:07 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --20c9HtSguVECeDh11DOe0hDvBHBa1jlP3 Content-Type: multipart/mixed; boundary="npsoLdwd6UErKmfMX2moSWhIHli2qG8pk"; protected-headers="v1" From: Mathieu Arnold To: Olli Hauer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r422343 - head/www/apache24 References: <201609171935.u8HJZnYu025678@repo.freebsd.org> In-Reply-To: <201609171935.u8HJZnYu025678@repo.freebsd.org> --npsoLdwd6UErKmfMX2moSWhIHli2qG8pk Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 17/09/2016 =C3=A0 21:35, Olli Hauer a =C3=A9crit : > +.if ${PORT_OPTIONS:MPROXY_HTTP2} && !${PORT_OPTIONS:MPROXY_BALANCER} > +IGNORE=3D PROXY_HTTP2 needs PROXY_BALANCER > +.endif This is better written as: PROXY_HTTP2_IMPLIES=3D PROXY_BALANCER --=20 Mathieu Arnold --npsoLdwd6UErKmfMX2moSWhIHli2qG8pk-- --20c9HtSguVECeDh11DOe0hDvBHBa1jlP3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJX3aqaXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85InwoP/15CR79FOzpotUXNzZAh6d/e N4cgXyJE8g5MG1+eu2RCfJjy+FM1zx4kgFjjQGwR0i4eKd4OWMj7qIFfkv71/1Nr ZN5FOYG0fCJboXnXKXkaSXQ1OXBvT2C4/jkaR1wtNUMZU3MKQ9Q8vqWl4eXcx3We HJkBWD51Nz4PTRhfD9xcvYT1TzL7LG6uXChIlo24EE1SspET2wN+yii+nhwD9nYw /lec0B8nBtMtPQpJNlA0JB4LGlNUGuGWAu+nfxbo1/KDBbxOgJVw7Qal/54mOlyn l9HouTs3Ig++8wrRWXWVge0OxFUiNKwsnkrwhmyfbmH1lXSGPeCqXIAdLxRfLRob 4maKrSr5csdmdnmpA2Ie5kswjuT8UmtZZgdiHVu7kZ1ak+s5I78fM8IFiJO4RDsg J5iMdQjnTpzo5VAzl/qADXWeQVJP83U1j7kQMFwcRYuv6atlEqXCSVeF4QjrokK2 dmihP4XVMe4q50vd/ODhqP6YUfcDFYCSv9hqn2mvqBYfRtrvoXEn7dmYDl9Y0T8I XqfyHwnZtliydF1WurYc4GpYbCUTUNhbjZn7j2i6uOVIhrGlWPdHjZvQqq5cFsvY uRinzJnoSq+rK2KFzMc0f2OiTu539086wjVFvqphGw3IIxDZwkTHdIuM7Fw0BOU1 xLkKBaRNWzD49Q94lImE =cdI8 -----END PGP SIGNATURE----- --20c9HtSguVECeDh11DOe0hDvBHBa1jlP3-- From owner-svn-ports-head@freebsd.org Sat Sep 17 21:16:11 2016 Return-Path: Delivered-To: svn-ports-head@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 53198BDE22A; Sat, 17 Sep 2016 21:16:11 +0000 (UTC) (envelope-from adamw@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 25909CBC; Sat, 17 Sep 2016 21:16:11 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HLGAIb063256; Sat, 17 Sep 2016 21:16:10 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HLGAPQ063254; Sat, 17 Sep 2016 21:16:10 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201609172116.u8HLGAPQ063254@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 17 Sep 2016 21:16:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422345 - head/www/p5-Mojolicious X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 21:16:11 -0000 Author: adamw Date: Sat Sep 17 21:16:10 2016 New Revision: 422345 URL: https://svnweb.freebsd.org/changeset/ports/422345 Log: Update to 7.06. - Fixed bug where Mojolicious::Renderer would wrap text in layouts. - Fixed a few test description encoding bugs in Test::Mojo. Modified: head/www/p5-Mojolicious/Makefile head/www/p5-Mojolicious/distinfo Modified: head/www/p5-Mojolicious/Makefile ============================================================================== --- head/www/p5-Mojolicious/Makefile Sat Sep 17 19:38:05 2016 (r422344) +++ head/www/p5-Mojolicious/Makefile Sat Sep 17 21:16:10 2016 (r422345) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojolicious -PORTVERSION= 7.05 +PORTVERSION= 7.06 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Mojolicious/distinfo ============================================================================== --- head/www/p5-Mojolicious/distinfo Sat Sep 17 19:38:05 2016 (r422344) +++ head/www/p5-Mojolicious/distinfo Sat Sep 17 21:16:10 2016 (r422345) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472489549 -SHA256 (Mojolicious-7.05.tar.gz) = 6c7aaae8b318dc7691376ed95fa61d8cc56cfa0ad1547e12867398bec99b13ed -SIZE (Mojolicious-7.05.tar.gz) = 657101 +TIMESTAMP = 1474146855 +SHA256 (Mojolicious-7.06.tar.gz) = 3481b15fed42d4122eab2926440563055fc1b08314753e627a3c387d46a92351 +SIZE (Mojolicious-7.06.tar.gz) = 657283 From owner-svn-ports-head@freebsd.org Sat Sep 17 22:41:53 2016 Return-Path: Delivered-To: svn-ports-head@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 7E789BDF4A1; Sat, 17 Sep 2016 22:41:53 +0000 (UTC) (envelope-from tota@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 4B97CA7B; Sat, 17 Sep 2016 22:41:53 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8HMfq3t094920; Sat, 17 Sep 2016 22:41:52 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8HMfqGT094918; Sat, 17 Sep 2016 22:41:52 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201609172241.u8HMfqGT094918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 17 Sep 2016 22:41:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422347 - head/devel/R-cran-sourcetools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Sep 2016 22:41:53 -0000 Author: tota Date: Sat Sep 17 22:41:52 2016 New Revision: 422347 URL: https://svnweb.freebsd.org/changeset/ports/422347 Log: - Update to 0.1.5 Modified: head/devel/R-cran-sourcetools/Makefile (contents, props changed) head/devel/R-cran-sourcetools/distinfo (contents, props changed) Modified: head/devel/R-cran-sourcetools/Makefile ============================================================================== --- head/devel/R-cran-sourcetools/Makefile Sat Sep 17 21:47:56 2016 (r422346) +++ head/devel/R-cran-sourcetools/Makefile Sat Sep 17 22:41:52 2016 (r422347) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sourcetools -PORTVERSION= 0.1.2 +PORTVERSION= 0.1.5 CATEGORIES= devel DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/devel/R-cran-sourcetools/distinfo ============================================================================== --- head/devel/R-cran-sourcetools/distinfo Sat Sep 17 21:47:56 2016 (r422346) +++ head/devel/R-cran-sourcetools/distinfo Sat Sep 17 22:41:52 2016 (r422347) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473656218 -SHA256 (sourcetools_0.1.2.tar.gz) = 7a3222bf91d62a1aa028a9b87c3307e1980ea361bcc03a1ab81b99d6c7535f0e -SIZE (sourcetools_0.1.2.tar.gz) = 16227 +TIMESTAMP = 1474111477 +SHA256 (sourcetools_0.1.5.tar.gz) = c2373357ad76eaa7d03f9f01c19b5001a3e4db788acbca068b0abbe7a99ea64b +SIZE (sourcetools_0.1.5.tar.gz) = 24238