From owner-svn-ports-head@freebsd.org Sun Jun 18 01:05:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23162C78822; Sun, 18 Jun 2017 01:05:52 +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 E5F4E7D96F; Sun, 18 Jun 2017 01:05:51 +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 v5I15osw056619; Sun, 18 Jun 2017 01:05:50 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I15oko056618; Sun, 18 Jun 2017 01:05:50 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201706180105.v5I15oko056618@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 18 Jun 2017 01:05:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443794 - head/lang/gcc49 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 01:05:52 -0000 Author: gerald Date: Sun Jun 18 01:05:50 2017 New Revision: 443794 URL: https://svnweb.freebsd.org/changeset/ports/443794 Log: When we set STAGE1_CXXFLAGS / CXXFLAGS in MAKE_FLAGS for arm platforms, do so incrementally (with += instead of =). Modified: head/lang/gcc49/Makefile Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Sat Jun 17 23:27:37 2017 (r443793) +++ head/lang/gcc49/Makefile Sun Jun 18 01:05:50 2017 (r443794) @@ -64,9 +64,9 @@ CONFIGURE_ENV+= UNAME_m="powerpc64" CFLAGS:= ${CFLAGS:S/-O/-O2/g} . if ${COMPILER_TYPE} == clang . if empty(PORT_OPTIONS:MBOOTSTRAP) -MAKE_ARGS+=CXXFLAGS=-fbracket-depth=512 +MAKE_ARGS+=CXXFLAGS+=-fbracket-depth=512 . else -MAKE_ARGS+=STAGE1_CXXFLAGS=-fbracket-depth=512 +MAKE_ARGS+=STAGE1_CXXFLAGS+=-fbracket-depth=512 . endif . endif .endif From owner-svn-ports-head@freebsd.org Sun Jun 18 01:07:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E2F9C7886C; Sun, 18 Jun 2017 01:07:45 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 300FF7DA66; Sun, 18 Jun 2017 01:07:45 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 83A3592F9; Sun, 18 Jun 2017 01:07:44 +0000 (UTC) From: Jan Beich To: Gerald Pfeifer Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r443793 - head/lang/gcc7-devel References: <201706172327.v5HNRbGE015821@repo.freebsd.org> Date: Sun, 18 Jun 2017 03:07:40 +0200 In-Reply-To: <201706172327.v5HNRbGE015821@repo.freebsd.org> (Gerald Pfeifer's message of "Sat, 17 Jun 2017 23:27:37 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 01:07:45 -0000 Gerald Pfeifer writes: > Author: gerald > Date: Sat Jun 17 23:27:37 2017 > New Revision: 443793 > URL: https://svnweb.freebsd.org/changeset/ports/443793 > > Log: > Update to the 20170615 snapshot of GCC 7.1.1. > > When we set STAGE1_CXXFLAGS / CXXFLAGS in MAKE_FLAGS for arm platforms, > do so incrementally (with += instead of =). Did you mean to use MAKE_ENV instead of +=? https://www.gnu.org/software/make/manual/html_node/Overriding.html $ cat Makefile CXXFLAGS += -ffoo all: @echo $(CXXFLAGS) $ gmake -ffoo # MAKE_ARGS test $ gmake CXXFLAGS=-fbracket-depth=512 -fbracket-depth=512 $ gmake CXXFLAGS+=-fbracket-depth=512 -fbracket-depth=512 $ gmake CXXFLAGS=-fbar CXXFLAGS=-fbracket-depth=512 -fbracket-depth=512 $ gmake CXXFLAGS=-fbar CXXFLAGS+=-fbracket-depth=512 -fbar -fbracket-depth=512 # MAKE_ENV test $ CXXFLAGS=-fbracket-depth=512 gmake -fbracket-depth=512 -ffoo $ CXXFLAGS+=-fbracket-depth=512 gmake sh: CXXFLAGS+=-fbracket-depth=512: not found $ CXXFLAGS=-fbar CXXFLAGS=-fbracket-depth=512 gmake -fbracket-depth=512 -ffoo $ CXXFLAGS=-fbar CXXFLAGS+=-fbracket-depth=512 gmake sh: CXXFLAGS+=-fbracket-depth=512: not found From owner-svn-ports-head@freebsd.org Sun Jun 18 01:25:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98282C794C0; Sun, 18 Jun 2017 01:25:31 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 750667E58E; Sun, 18 Jun 2017 01:25:31 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id 75B4C3F650; Sat, 17 Jun 2017 21:25:29 -0400 (EDT) Received: from anthias.dhcp.nue.suse.com (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id C57C43F4D9; Sat, 17 Jun 2017 21:25:28 -0400 (EDT) Date: Sun, 18 Jun 2017 03:25:27 +0200 (CEST) From: Gerald Pfeifer To: Jan Beich cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r443793 - head/lang/gcc7-devel In-Reply-To: Message-ID: References: <201706172327.v5HNRbGE015821@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 01:25:31 -0000 On Sun, 18 Jun 2017, Jan Beich wrote: >> When we set STAGE1_CXXFLAGS / CXXFLAGS in MAKE_FLAGS for arm platforms, >> do so incrementally (with += instead of =). > Did you mean to use MAKE_ENV instead of +=? I'm not sure. ;-) In your example, += did not actually work in the MAKE_ENV tests, did it? Did you mean that the commit message should have referred to MAKE_ARGS instead of MAKE_FLAGS? If so, I agree, that was a "typo" of mine. If there is anything beyond that, I am not seeing it right now, but I simply may be too tired (so a patch might be best). Thanks, Gerald From owner-svn-ports-head@freebsd.org Sun Jun 18 02:50:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E8B9D86BA9; Sun, 18 Jun 2017 02:50:29 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75938801C1; Sun, 18 Jun 2017 02:50:29 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id D092F9D5E; Sun, 18 Jun 2017 02:50:28 +0000 (UTC) From: Jan Beich To: Gerald Pfeifer Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r443793 - head/lang/gcc7-devel References: <201706172327.v5HNRbGE015821@repo.freebsd.org> Date: Sun, 18 Jun 2017 04:50:26 +0200 In-Reply-To: (Gerald Pfeifer's message of "Sun, 18 Jun 2017 03:25:27 +0200 (CEST)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 02:50:29 -0000 Gerald Pfeifer writes: > On Sun, 18 Jun 2017, Jan Beich wrote: > >>> When we set STAGE1_CXXFLAGS / CXXFLAGS in MAKE_FLAGS for arm platforms, >>> do so incrementally (with += instead of =). >> Did you mean to use MAKE_ENV instead of +=? > > I'm not sure. ;-) In your example, += did not actually work in > the MAKE_ENV tests, did it? Correct, += syntax isn't supported by sh(1) and += syntax in gmake(1) acts differently between on command line and in a file. > Did you mean that the commit message should have referred to > MAKE_ARGS instead of MAKE_FLAGS? MAKE_ARGS usage looks wrong as it discards system CXXFLAGS i.e., -O2 -fno-strict-aliasing -pipe. Replacing = with += won't fix it. Whether there's a bug or not requires understanding the intent. With commit messages that state only "what" was done, but not "why", one can only guess the former. Testing can help deriving the intent but in my case poudriere fails to create armv6 jail (unlike aarch64). Or perhaps you can answer "Why do you need the incremental assignment?" From owner-svn-ports-head@freebsd.org Sun Jun 18 02:52:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 031AAD86DA5; Sun, 18 Jun 2017 02:52:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C56F580541; Sun, 18 Jun 2017 02:52:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I2qalm000484; Sun, 18 Jun 2017 02:52:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I2qaiw000483; Sun, 18 Jun 2017 02:52:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180252.v5I2qaiw000483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 02:52:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443795 - head/lang/python33 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 02:52:38 -0000 Author: sunpoet Date: Sun Jun 18 02:52:36 2017 New Revision: 443795 URL: https://svnweb.freebsd.org/changeset/ports/443795 Log: Update DEPRECATED to latest default python3 Modified: head/lang/python33/Makefile Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Sun Jun 18 01:05:50 2017 (r443794) +++ head/lang/python33/Makefile Sun Jun 18 02:52:36 2017 (r443795) @@ -13,7 +13,7 @@ COMMENT= Interpreted object-oriented programming langu LICENSE= PSFL -DEPRECATED= No longer receives bug fixes, only security updates. Please update to Python 3.5 +DEPRECATED= No longer receives bug fixes, only security updates. Please update to Python 3.6 EXPIRATION_DATE= 2017-09-01 USES= cpe ncurses pathfix pkgconfig readline ssl tar:xz shebangfix From owner-svn-ports-head@freebsd.org Sun Jun 18 02:56:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FF8BD86E1C; Sun, 18 Jun 2017 02:56:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DEDDF8063D; Sun, 18 Jun 2017 02:56:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I2u9eu000783; Sun, 18 Jun 2017 02:56:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I2u99H000779; Sun, 18 Jun 2017 02:56:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180256.v5I2u99H000779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 02:56:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443796 - in head/www: . py-hyperlink X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 02:56:11 -0000 Author: sunpoet Date: Sun Jun 18 02:56:09 2017 New Revision: 443796 URL: https://svnweb.freebsd.org/changeset/ports/443796 Log: Add py-hyperlink 17.1.1 Hyperlink provides a pure-Python implementation of immutable URLs. Based on RFC 3986 and 3987, the Hyperlink URL makes working with both URIs and IRIs easy. WWW: https://pypi.python.org/pypi/hyperlink WWW: https://github.com/python-hyper/hyperlink Added: head/www/py-hyperlink/ head/www/py-hyperlink/Makefile (contents, props changed) head/www/py-hyperlink/distinfo (contents, props changed) head/www/py-hyperlink/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Jun 18 02:52:36 2017 (r443795) +++ head/www/Makefile Sun Jun 18 02:56:09 2017 (r443796) @@ -1675,6 +1675,7 @@ SUBDIR += py-httplib2 SUBDIR += py-hyper SUBDIR += py-hyperframe + SUBDIR += py-hyperlink SUBDIR += py-imdbpy SUBDIR += py-jonpy SUBDIR += py-jswebkit Added: head/www/py-hyperlink/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hyperlink/Makefile Sun Jun 18 02:56:09 2017 (r443796) @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= hyperlink +PORTVERSION= 17.1.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Featureful, correct URL for Python + +LICENSE= MIT + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/www/py-hyperlink/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hyperlink/distinfo Sun Jun 18 02:56:09 2017 (r443796) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497730578 +SHA256 (hyperlink-17.1.1.tar.gz) = a7462dee03672b8f853c26e1ab9e3b1fd4c90a6efde64ab44a851c2472445018 +SIZE (hyperlink-17.1.1.tar.gz) = 23067 Added: head/www/py-hyperlink/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-hyperlink/pkg-descr Sun Jun 18 02:56:09 2017 (r443796) @@ -0,0 +1,5 @@ +Hyperlink provides a pure-Python implementation of immutable URLs. Based on RFC +3986 and 3987, the Hyperlink URL makes working with both URIs and IRIs easy. + +WWW: https://pypi.python.org/pypi/hyperlink +WWW: https://github.com/python-hyper/hyperlink From owner-svn-ports-head@freebsd.org Sun Jun 18 02:56:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AC21D86E48; Sun, 18 Jun 2017 02:56:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABD4580711; Sun, 18 Jun 2017 02:56:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I2uhwc000900; Sun, 18 Jun 2017 02:56:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I2uhvK000899; Sun, 18 Jun 2017 02:56:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180256.v5I2uhvK000899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 02:56:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443797 - head/devel/py-twisted X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 02:56:45 -0000 Author: sunpoet Date: Sun Jun 18 02:56:43 2017 New Revision: 443797 URL: https://svnweb.freebsd.org/changeset/ports/443797 Log: Fix *_DEPENDS - Bump PORTREVISION for dependency change PR: 219993 (based on) Submitted by: Christian Sturm Modified: head/devel/py-twisted/Makefile Modified: head/devel/py-twisted/Makefile ============================================================================== --- head/devel/py-twisted/Makefile Sun Jun 18 02:56:09 2017 (r443796) +++ head/devel/py-twisted/Makefile Sun Jun 18 02:56:43 2017 (r443797) @@ -3,6 +3,7 @@ PORTNAME= twisted PORTVERSION= 17.5.0 +PORTREVISION= 1 CATEGORIES= devel net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,11 +16,11 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}constantly>=15.1:devel/py-constantly \ - ${PYTHON_PKGNAMEPREFIX}incremental>=16.10.1:devel/py-incremental -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.interface>=3.6.0:devel/py-zope.interface \ - ${PYTHON_PKGNAMEPREFIX}constantly>=15.1:devel/py-constantly \ + ${PYTHON_PKGNAMEPREFIX}hyperlink>=17.1.1:www/py-hyperlink \ ${PYTHON_PKGNAMEPREFIX}incremental>=16.10.1:devel/py-incremental \ + ${PYTHON_PKGNAMEPREFIX}zope.interface>=3.6.0:devel/py-zope.interface \ ${PYTHON_PKGNAMEPREFIX}Automat>=0.3.0:devel/py-Automat +RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python tar:bzip2 USE_PYTHON= autoplist concurrent distutils From owner-svn-ports-head@freebsd.org Sun Jun 18 03:17:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51ADBD875BE; Sun, 18 Jun 2017 03:17:53 +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 1F83581484; Sun, 18 Jun 2017 03:17:53 +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 v5I3HqwX009957; Sun, 18 Jun 2017 03:17:52 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I3HqWL009956; Sun, 18 Jun 2017 03:17:52 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706180317.v5I3HqWL009956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sun, 18 Jun 2017 03:17:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443798 - head/science/getdp/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, 18 Jun 2017 03:17:53 -0000 Author: stephen Date: Sun Jun 18 03:17:52 2017 New Revision: 443798 URL: https://svnweb.freebsd.org/changeset/ports/443798 Log: - Fix compilation error (which presumably comes from a change in header files associated with python2). Added: head/science/getdp/files/patch-Common_Message.cpp (contents, props changed) Added: head/science/getdp/files/patch-Common_Message.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/getdp/files/patch-Common_Message.cpp Sun Jun 18 03:17:52 2017 (r443798) @@ -0,0 +1,11 @@ +--- Common/Message.cpp.orig 2017-06-17 23:49:49 UTC ++++ Common/Message.cpp +@@ -124,7 +124,7 @@ void Message::Initialize(int argc, char + std::vector wargv(argc ? argc : 1); + for(int i = 0; i < argc; i++) + wargv[i] = Py_DecodeLocale(argv[i], NULL); +- Py_SetProgramName(wargv[0], NULL); ++ Py_SetProgramName(wargv[0]); + Py_InitializeEx(0); + PySys_SetArgv(argc, &wargv[0]); + #endif From owner-svn-ports-head@freebsd.org Sun Jun 18 04:29:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B5E3D889F3; Sun, 18 Jun 2017 04:29:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4E682E74; Sun, 18 Jun 2017 04:29:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I4Tqko037976; Sun, 18 Jun 2017 04:29:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I4TqdP037975; Sun, 18 Jun 2017 04:29:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180429.v5I4TqdP037975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 04:29:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443799 - head/textproc/py-docutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 04:29:53 -0000 Author: sunpoet Date: Sun Jun 18 04:29:52 2017 New Revision: 443799 URL: https://svnweb.freebsd.org/changeset/ports/443799 Log: Update PORTSCOUT Modified: head/textproc/py-docutils/Makefile Modified: head/textproc/py-docutils/Makefile ============================================================================== --- head/textproc/py-docutils/Makefile Sun Jun 18 03:17:52 2017 (r443798) +++ head/textproc/py-docutils/Makefile Sun Jun 18 04:29:52 2017 (r443799) @@ -13,7 +13,7 @@ COMMENT= Python Documentation Utilities LICENSE= BSD2CLAUSE GPLv3+ PD PSFL LICENSE_COMB= multi -PORTSCOUT= limit:^[0-9.]*$ +PORTSCOUT= limit:^[0-9\.]*$ NO_ARCH= yes USE_PYTHON= autoplist concurrent distutils From owner-svn-ports-head@freebsd.org Sun Jun 18 05:44:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49278D8998B; Sun, 18 Jun 2017 05:44:03 +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 22DF684685; Sun, 18 Jun 2017 05:44:03 +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 v5I5i2tS070073; Sun, 18 Jun 2017 05:44:02 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5i2Ma070070; Sun, 18 Jun 2017 05:44:02 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706180544.v5I5i2Ma070070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 18 Jun 2017 05:44:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443800 - 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: Sun, 18 Jun 2017 05:44:03 -0000 Author: dbn Date: Sun Jun 18 05:44:01 2017 New Revision: 443800 URL: https://svnweb.freebsd.org/changeset/ports/443800 Log: emulators/i386-wine-devel: update to 2.10 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 Sun Jun 18 04:29:52 2017 (r443799) +++ head/emulators/i386-wine-devel/Makefile.inc Sun Jun 18 05:44:01 2017 (r443800) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -PORTVERSION= 2.9 +PORTVERSION= 2.10 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/ Modified: head/emulators/i386-wine-devel/distinfo ============================================================================== --- head/emulators/i386-wine-devel/distinfo Sun Jun 18 04:29:52 2017 (r443799) +++ head/emulators/i386-wine-devel/distinfo Sun Jun 18 05:44:01 2017 (r443800) @@ -1,9 +1,9 @@ -TIMESTAMP = 1497478308 -SHA256 (freebsd:10:x86:64/i386-wine-devel-2.9,1.txz) = 9200a942df3c9d351dd80b0b1137c1ce2156fa8fde5f5761d8399acdf6934bf5 -SIZE (freebsd:10:x86:64/i386-wine-devel-2.9,1.txz) = 53326724 -SHA256 (freebsd:10:x86:64/i386-wine-staging-2.9,1.txz) = abc161956345d4ad3fbedec7d217f7201eb9099a135f19a4f556491143717d6e -SIZE (freebsd:10:x86:64/i386-wine-staging-2.9,1.txz) = 55931852 -SHA256 (freebsd:11:x86:64/i386-wine-devel-2.9,1.txz) = c0cca2c4d2dae37461956c040c6d926538ca9cd9e3c466aa9a64655e66444266 -SIZE (freebsd:11:x86:64/i386-wine-devel-2.9,1.txz) = 52975036 -SHA256 (freebsd:11:x86:64/i386-wine-staging-2.9,1.txz) = 7a582eadc852cc261627d19ba2e78dd31a9f31594d5f77cecc6806525639211b -SIZE (freebsd:11:x86:64/i386-wine-staging-2.9,1.txz) = 55568408 +TIMESTAMP = 1497742779 +SHA256 (freebsd:10:x86:64/i386-wine-devel-2.10,1.txz) = 2086d984619fdc93634457e8a26a42c49cfd2e53cc1e24f316ea992832fd14e6 +SIZE (freebsd:10:x86:64/i386-wine-devel-2.10,1.txz) = 53338948 +SHA256 (freebsd:10:x86:64/i386-wine-staging-2.10,1.txz) = 0f07364d03aa26d992156a8c2c1d752264946558005446ca03d946ea33e9f70c +SIZE (freebsd:10:x86:64/i386-wine-staging-2.10,1.txz) = 55993372 +SHA256 (freebsd:11:x86:64/i386-wine-devel-2.10,1.txz) = 60508ddd8162b1c82ef129e9d13b894a724c7f35e5f0216a25cbb2969f9516f3 +SIZE (freebsd:11:x86:64/i386-wine-devel-2.10,1.txz) = 53013832 +SHA256 (freebsd:11:x86:64/i386-wine-staging-2.10,1.txz) = d8dd42976ca0ff672ae4a88bed53c5d0bd68e6511337bdb223ce57c867ebe746 +SIZE (freebsd:11:x86:64/i386-wine-staging-2.10,1.txz) = 55639472 Modified: head/emulators/i386-wine-devel/pkg-plist ============================================================================== --- head/emulators/i386-wine-devel/pkg-plist Sun Jun 18 04:29:52 2017 (r443799) +++ head/emulators/i386-wine-devel/pkg-plist Sun Jun 18 05:44:01 2017 (r443800) @@ -738,6 +738,7 @@ include/wine/windows/softpub.h include/wine/windows/sql.h include/wine/windows/sqlext.h include/wine/windows/sqltypes.h +include/wine/windows/sqlucode.h include/wine/windows/srcrst.idl include/wine/windows/srrestoreptapi.h include/wine/windows/sspi.h @@ -994,6 +995,7 @@ lib32/wine/acledit.dll.so lib32/wine/aclui.dll.so lib32/wine/activeds.dll.so lib32/wine/actxprxy.dll.so +lib32/wine/adsldpc.dll.so lib32/wine/advapi32.dll.so lib32/wine/advpack.dll.so lib32/wine/amstream.dll.so @@ -1151,6 +1153,7 @@ lib32/wine/api-ms-win-power-setting-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so lib32/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so %%STAGING%%lib32/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so +lib32/wine/api-ms-win-security-activedirectoryclient-l1-1-0.dll.so lib32/wine/api-ms-win-security-audit-l1-1-1.dll.so lib32/wine/api-ms-win-security-base-l1-1-0.dll.so lib32/wine/api-ms-win-security-base-l1-2-0.dll.so @@ -1327,6 +1330,8 @@ lib32/wine/dwrite.dll.so lib32/wine/dxdiag.exe.so lib32/wine/dxdiagn.dll.so lib32/wine/dxgi.dll.so +%%STAGING%%lib32/wine/dxgkrnl.sys.so +%%STAGING%%lib32/wine/dxgmms1.sys.so lib32/wine/dxva2.dll.so lib32/wine/eject.exe.so lib32/wine/esent.dll.so @@ -1362,6 +1367,7 @@ lib32/wine/fakedlls/acledit.dll lib32/wine/fakedlls/aclui.dll lib32/wine/fakedlls/activeds.dll lib32/wine/fakedlls/actxprxy.dll +lib32/wine/fakedlls/adsldpc.dll lib32/wine/fakedlls/advapi32.dll lib32/wine/fakedlls/advpack.dll lib32/wine/fakedlls/amstream.dll @@ -1519,6 +1525,7 @@ lib32/wine/fakedlls/api-ms-win-power-setting-l1-1-0.dl %%STAGING%%lib32/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll %%STAGING%%lib32/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-security-activedirectoryclient-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll lib32/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-security-base-l1-2-0.dll @@ -1695,6 +1702,8 @@ lib32/wine/fakedlls/dwrite.dll lib32/wine/fakedlls/dxdiag.exe lib32/wine/fakedlls/dxdiagn.dll lib32/wine/fakedlls/dxgi.dll +%%STAGING%%lib32/wine/fakedlls/dxgkrnl.sys +%%STAGING%%lib32/wine/fakedlls/dxgmms1.sys lib32/wine/fakedlls/dxva2.dll lib32/wine/fakedlls/eject.exe lib32/wine/fakedlls/esent.dll @@ -2033,6 +2042,7 @@ lib32/wine/fakedlls/taskkill.exe lib32/wine/fakedlls/tasklist.exe lib32/wine/fakedlls/taskmgr.exe lib32/wine/fakedlls/taskschd.dll +lib32/wine/fakedlls/tdh.dll lib32/wine/fakedlls/tdi.sys lib32/wine/fakedlls/termsv.exe lib32/wine/fakedlls/toolhelp.dll16 @@ -2086,6 +2096,7 @@ lib32/wine/fakedlls/wevtapi.dll lib32/wine/fakedlls/wevtutil.exe lib32/wine/fakedlls/wiaservc.dll lib32/wine/fakedlls/wimgapi.dll +%%STAGING%%lib32/wine/fakedlls/win32k.sys lib32/wine/fakedlls/win32s16.dll16 lib32/wine/fakedlls/win87em.dll16 lib32/wine/fakedlls/winaspi.dll16 @@ -2302,6 +2313,7 @@ lib32/wine/libkernel32.def lib32/wine/libloadperf.def lib32/wine/liblz32.def lib32/wine/libmapi32.def +lib32/wine/libmf.def lib32/wine/libmfplat.def lib32/wine/libmlang.def lib32/wine/libmpr.def @@ -2657,6 +2669,7 @@ lib32/wine/taskkill.exe.so lib32/wine/tasklist.exe.so lib32/wine/taskmgr.exe.so lib32/wine/taskschd.dll.so +lib32/wine/tdh.dll.so lib32/wine/tdi.sys.so lib32/wine/termsv.exe.so lib32/wine/toolhelp.dll16.so @@ -2710,6 +2723,7 @@ lib32/wine/wevtapi.dll.so lib32/wine/wevtutil.exe.so lib32/wine/wiaservc.dll.so lib32/wine/wimgapi.dll.so +%%STAGING%%lib32/wine/win32k.sys.so lib32/wine/win32s16.dll16.so lib32/wine/win87em.dll16.so lib32/wine/winaspi.dll16.so From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7C7FD89B05; Sun, 18 Jun 2017 05:51:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B652B848ED; Sun, 18 Jun 2017 05:51:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5p3iv071161; Sun, 18 Jun 2017 05:51:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5p386071160; Sun, 18 Jun 2017 05:51:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5p386071160@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443801 - head/www/npm2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:05 -0000 Author: sunpoet Date: Sun Jun 18 05:51:03 2017 New Revision: 443801 URL: https://svnweb.freebsd.org/changeset/ports/443801 Log: Update CONFLICTS_INSTALL Modified: head/www/npm2/Makefile Modified: head/www/npm2/Makefile ============================================================================== --- head/www/npm2/Makefile Sun Jun 18 05:44:01 2017 (r443800) +++ head/www/npm2/Makefile Sun Jun 18 05:51:03 2017 (r443801) @@ -14,7 +14,7 @@ LICENSE= MIT RUN_DEPENDS= gmake:devel/gmake -CONFLICTS_INSTALL= npm npm3 +CONFLICTS_INSTALL= npm npm3 npm4 OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= NODE NODE4 NODE6 From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D00DD89B36; Sun, 18 Jun 2017 05:51:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C0B284919; Sun, 18 Jun 2017 05:51:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5p9Sq071266; Sun, 18 Jun 2017 05:51:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5p9ET071265; Sun, 18 Jun 2017 05:51:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5p9ET071265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443802 - head/www/npm3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:10 -0000 Author: sunpoet Date: Sun Jun 18 05:51:08 2017 New Revision: 443802 URL: https://svnweb.freebsd.org/changeset/ports/443802 Log: Update CONFLICTS_INSTALL - Fix shebang - Bump PORTREVISION for package change Modified: head/www/npm3/Makefile Modified: head/www/npm3/Makefile ============================================================================== --- head/www/npm3/Makefile Sun Jun 18 05:51:03 2017 (r443801) +++ head/www/npm3/Makefile Sun Jun 18 05:51:08 2017 (r443802) @@ -3,7 +3,7 @@ PORTNAME= npm PORTVERSION= 3.10.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet PKGNAMESUFFIX= 3 @@ -15,7 +15,7 @@ LICENSE= MIT RUN_DEPENDS= gmake:devel/gmake -CONFLICTS_INSTALL= npm npm2 +CONFLICTS_INSTALL= npm npm2 npm4 OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= NODE NODE6 @@ -34,6 +34,7 @@ CPE_VENDOR= npmjs CPE_PRODUCT= node_packaged_modules SHEBANG_FILES= lib/utils/completion.sh \ + node_modules/lockfile/gen-changelog.sh \ node_modules/node-gyp/test/docker.sh \ node_modules/request/node_modules/node-uuid/benchmark/bench.sh \ scripts/clean-old.sh \ From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A7CFD89B63; Sun, 18 Jun 2017 05:51:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65C8E8499B; Sun, 18 Jun 2017 05:51:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pEBY071402; Sun, 18 Jun 2017 05:51:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pEqq071400; Sun, 18 Jun 2017 05:51:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pEqq071400@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443803 - in head/www: . npm4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:15 -0000 Author: sunpoet Date: Sun Jun 18 05:51:14 2017 New Revision: 443803 URL: https://svnweb.freebsd.org/changeset/ports/443803 Log: Add npm4 4.6.1 (copied from npm) - Update CONFLICTS_INSTALL Added: head/www/npm4/ - copied from r443721, head/www/npm/ Modified: head/www/Makefile head/www/npm4/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Jun 18 05:51:08 2017 (r443802) +++ head/www/Makefile Sun Jun 18 05:51:14 2017 (r443803) @@ -549,6 +549,7 @@ SUBDIR += npm-less-plugin-clean-css SUBDIR += npm2 SUBDIR += npm3 + SUBDIR += npm4 SUBDIR += nspluginwrapper SUBDIR += nuvolaplayer-8tracks SUBDIR += nuvolaplayer-all-services Modified: head/www/npm4/Makefile ============================================================================== --- head/www/npm/Makefile Fri Jun 16 19:46:04 2017 (r443721) +++ head/www/npm4/Makefile Sun Jun 18 05:51:14 2017 (r443803) @@ -5,6 +5,7 @@ PORTNAME= npm PORTVERSION= 4.6.1 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet +PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Node package manager @@ -14,7 +15,7 @@ LICENSE= MIT RUN_DEPENDS= gmake:devel/gmake \ node>=0.8.0:www/node -CONFLICTS_INSTALL= npm2 npm3 +CONFLICTS_INSTALL= npm npm2 npm3 NO_ARCH= yes NO_BUILD= yes From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84BC6D89B92; Sun, 18 Jun 2017 05:51:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0CB784A23; Sun, 18 Jun 2017 05:51:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pKRe071540; Sun, 18 Jun 2017 05:51:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pJTK071537; Sun, 18 Jun 2017 05:51:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pJTK071537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443804 - head/www/npm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:21 -0000 Author: sunpoet Date: Sun Jun 18 05:51:19 2017 New Revision: 443804 URL: https://svnweb.freebsd.org/changeset/ports/443804 Log: Update to 5.0.3 - Update CONFLICTS_INSTALL Changes: https://github.com/npm/npm/releases https://github.com/npm/npm/blob/v5.0.3/CHANGELOG.md Modified: head/www/npm/Makefile head/www/npm/distinfo head/www/npm/pkg-plist Modified: head/www/npm/Makefile ============================================================================== --- head/www/npm/Makefile Sun Jun 18 05:51:14 2017 (r443803) +++ head/www/npm/Makefile Sun Jun 18 05:51:19 2017 (r443804) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= npm -PORTVERSION= 4.6.1 +PORTVERSION= 5.0.3 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet @@ -14,7 +14,7 @@ LICENSE= MIT RUN_DEPENDS= gmake:devel/gmake \ node>=0.8.0:www/node -CONFLICTS_INSTALL= npm2 npm3 +CONFLICTS_INSTALL= npm2 npm3 npm4 NO_ARCH= yes NO_BUILD= yes Modified: head/www/npm/distinfo ============================================================================== --- head/www/npm/distinfo Sun Jun 18 05:51:14 2017 (r443803) +++ head/www/npm/distinfo Sun Jun 18 05:51:19 2017 (r443804) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496253354 -SHA256 (npm-4.6.1.tar.xz) = 3cd977ab97e99b550b79a0923f8692256a53550d278768250c53eed9c15d6735 -SIZE (npm-4.6.1.tar.xz) = 2741108 +TIMESTAMP = 1497730522 +SHA256 (npm-5.0.3.tar.xz) = b478f20f1e88772f6a2ca9743974cb69c893f45450b0ea712a24d5ede855e6e6 +SIZE (npm-5.0.3.tar.xz) = 3027572 Modified: head/www/npm/pkg-plist ============================================================================== --- head/www/npm/pkg-plist Sun Jun 18 05:51:14 2017 (r443803) +++ head/www/npm/pkg-plist Sun Jun 18 05:51:19 2017 (r443804) @@ -5,11 +5,13 @@ lib/node_modules/npm/.mailmap lib/node_modules/npm/.npmignore lib/node_modules/npm/.travis.yml lib/node_modules/npm/AUTHORS +lib/node_modules/npm/BROKEN.org lib/node_modules/npm/CHANGELOG.md lib/node_modules/npm/CONTRIBUTING.md lib/node_modules/npm/LICENSE lib/node_modules/npm/Makefile lib/node_modules/npm/README.md +lib/node_modules/npm/TODO.org lib/node_modules/npm/TROUBLESHOOTING.md lib/node_modules/npm/appveyor.yml @(,,755) lib/node_modules/npm/bin/node-gyp-bin/node-gyp @@ -21,7 +23,7 @@ lib/node_modules/npm/bin/read-package-json.js lib/node_modules/npm/changelogs/CHANGELOG-1.md lib/node_modules/npm/changelogs/CHANGELOG-2.md lib/node_modules/npm/changelogs/CHANGELOG-3.md -lib/node_modules/npm/cli.js +lib/node_modules/npm/changelogs/CHANGELOG-4.md lib/node_modules/npm/configure lib/node_modules/npm/doc/cli/npm-access.md lib/node_modules/npm/doc/cli/npm-adduser.md @@ -75,7 +77,10 @@ lib/node_modules/npm/doc/cli/npm-view.md lib/node_modules/npm/doc/cli/npm-whoami.md lib/node_modules/npm/doc/cli/npm.md lib/node_modules/npm/doc/files/npm-folders.md +lib/node_modules/npm/doc/files/npm-package-locks.md +lib/node_modules/npm/doc/files/npm-shrinkwrap.json.md lib/node_modules/npm/doc/files/npmrc.md +lib/node_modules/npm/doc/files/package-lock.json.md lib/node_modules/npm/doc/files/package.json.md lib/node_modules/npm/doc/misc/npm-coding-style.md lib/node_modules/npm/doc/misc/npm-config.md @@ -88,6 +93,7 @@ lib/node_modules/npm/doc/misc/npm-scope.md lib/node_modules/npm/doc/misc/npm-scripts.md lib/node_modules/npm/doc/misc/removing-npm.md lib/node_modules/npm/doc/misc/semver.md +lib/node_modules/npm/doc/spec/file-specifiers.md lib/node_modules/npm/html/doc/README.html lib/node_modules/npm/html/doc/cli/npm-access.html lib/node_modules/npm/html/doc/cli/npm-adduser.html @@ -143,7 +149,10 @@ lib/node_modules/npm/html/doc/cli/npm.html lib/node_modules/npm/html/doc/files/npm-folders.html lib/node_modules/npm/html/doc/files/npm-global.html lib/node_modules/npm/html/doc/files/npm-json.html +lib/node_modules/npm/html/doc/files/npm-package-locks.html +lib/node_modules/npm/html/doc/files/npm-shrinkwrap.json.html lib/node_modules/npm/html/doc/files/npmrc.html +lib/node_modules/npm/html/doc/files/package-lock.json.html lib/node_modules/npm/html/doc/files/package.json.html lib/node_modules/npm/html/doc/index.html lib/node_modules/npm/html/doc/misc/npm-coding-style.html @@ -173,14 +182,6 @@ lib/node_modules/npm/lib/bin.js lib/node_modules/npm/lib/bugs.js lib/node_modules/npm/lib/build.js lib/node_modules/npm/lib/cache.js -lib/node_modules/npm/lib/cache/add-local-tarball.js -lib/node_modules/npm/lib/cache/add-local.js -lib/node_modules/npm/lib/cache/add-named.js -lib/node_modules/npm/lib/cache/add-remote-git.js -lib/node_modules/npm/lib/cache/add-remote-tarball.js -lib/node_modules/npm/lib/cache/cached-package-root.js -lib/node_modules/npm/lib/cache/caching-client.js -lib/node_modules/npm/lib/cache/get-stat.js lib/node_modules/npm/lib/completion.js lib/node_modules/npm/lib/config.js lib/node_modules/npm/lib/config/clear-credentials-by-uri.js @@ -193,6 +194,8 @@ lib/node_modules/npm/lib/config/load-cafile.js lib/node_modules/npm/lib/config/load-prefix.js lib/node_modules/npm/lib/config/load-uid.js lib/node_modules/npm/lib/config/nerf-dart.js +lib/node_modules/npm/lib/config/pacote.js +lib/node_modules/npm/lib/config/reg-client.js lib/node_modules/npm/lib/config/set-credentials-by-uri.js lib/node_modules/npm/lib/config/set-user.js lib/node_modules/npm/lib/dedupe.js @@ -202,10 +205,10 @@ lib/node_modules/npm/lib/docs.js lib/node_modules/npm/lib/doctor.js lib/node_modules/npm/lib/doctor/check-files-permission.js lib/node_modules/npm/lib/doctor/check-ping.js -lib/node_modules/npm/lib/doctor/checksum-cached-files.js lib/node_modules/npm/lib/doctor/get-git-path.js lib/node_modules/npm/lib/doctor/get-latest-nodejs-version.js lib/node_modules/npm/lib/doctor/get-latest-npm-version.js +lib/node_modules/npm/lib/doctor/verify-cached-files.js lib/node_modules/npm/lib/edit.js lib/node_modules/npm/lib/explore.js lib/node_modules/npm/lib/fetch-package-metadata.js @@ -228,8 +231,8 @@ lib/node_modules/npm/lib/install/action/move.js lib/node_modules/npm/lib/install/action/postinstall.js lib/node_modules/npm/lib/install/action/preinstall.js lib/node_modules/npm/lib/install/action/prepare.js +lib/node_modules/npm/lib/install/action/refresh-package-json.js lib/node_modules/npm/lib/install/action/remove.js -lib/node_modules/npm/lib/install/action/update-linked.js lib/node_modules/npm/lib/install/actions.js lib/node_modules/npm/lib/install/and-add-parent-to-errors.js lib/node_modules/npm/lib/install/and-finish-tracker.js @@ -240,8 +243,8 @@ lib/node_modules/npm/lib/install/decompose-actions.js lib/node_modules/npm/lib/install/deps.js lib/node_modules/npm/lib/install/diff-trees.js lib/node_modules/npm/lib/install/exists.js -lib/node_modules/npm/lib/install/filter-invalid-actions.js lib/node_modules/npm/lib/install/flatten-tree.js +lib/node_modules/npm/lib/install/get-requested.js lib/node_modules/npm/lib/install/inflate-bundled.js lib/node_modules/npm/lib/install/inflate-shrinkwrap.js lib/node_modules/npm/lib/install/is-dev-dep.js @@ -249,7 +252,6 @@ lib/node_modules/npm/lib/install/is-extraneous.js lib/node_modules/npm/lib/install/is-fs-access-available.js lib/node_modules/npm/lib/install/is-opt-dep.js lib/node_modules/npm/lib/install/is-prod-dep.js -lib/node_modules/npm/lib/install/is-registry-specifier.js lib/node_modules/npm/lib/install/module-staging-path.js lib/node_modules/npm/lib/install/mutate-into-logical-tree.js lib/node_modules/npm/lib/install/node.js @@ -332,7 +334,6 @@ lib/node_modules/npm/lib/utils/perf.js lib/node_modules/npm/lib/utils/pick-manifest-from-registry-metadata.js lib/node_modules/npm/lib/utils/pulse-till-done.js lib/node_modules/npm/lib/utils/read-local-package.js -lib/node_modules/npm/lib/utils/rename.js lib/node_modules/npm/lib/utils/save-stack.js lib/node_modules/npm/lib/utils/spawn.js lib/node_modules/npm/lib/utils/tar.js @@ -402,7 +403,10 @@ lib/node_modules/npm/man/man1/npm.1.gz lib/node_modules/npm/man/man5/npm-folders.5.gz lib/node_modules/npm/man/man5/npm-global.5.gz lib/node_modules/npm/man/man5/npm-json.5.gz +lib/node_modules/npm/man/man5/npm-package-locks.5.gz +lib/node_modules/npm/man/man5/npm-shrinkwrap.json.5.gz lib/node_modules/npm/man/man5/npmrc.5.gz +lib/node_modules/npm/man/man5/package-lock.json.5.gz lib/node_modules/npm/man/man5/package.json.5.gz lib/node_modules/npm/man/man7/npm-coding-style.7.gz lib/node_modules/npm/man/man7/npm-config.7.gz @@ -517,14 +521,6 @@ lib/node_modules/npm/node_modules/archy/package.json lib/node_modules/npm/node_modules/archy/test/beep.js lib/node_modules/npm/node_modules/archy/test/multi_line.js lib/node_modules/npm/node_modules/archy/test/non_unicode.js -lib/node_modules/npm/node_modules/asap/CHANGES.md -lib/node_modules/npm/node_modules/asap/LICENSE.md -lib/node_modules/npm/node_modules/asap/README.md -lib/node_modules/npm/node_modules/asap/asap.js -lib/node_modules/npm/node_modules/asap/browser-asap.js -lib/node_modules/npm/node_modules/asap/browser-raw.js -lib/node_modules/npm/node_modules/asap/package.json -lib/node_modules/npm/node_modules/asap/raw.js lib/node_modules/npm/node_modules/bluebird/LICENSE lib/node_modules/npm/node_modules/bluebird/README.md lib/node_modules/npm/node_modules/bluebird/changelog.md @@ -570,6 +566,38 @@ lib/node_modules/npm/node_modules/bluebird/js/release/ lib/node_modules/npm/node_modules/bluebird/js/release/using.js lib/node_modules/npm/node_modules/bluebird/js/release/util.js lib/node_modules/npm/node_modules/bluebird/package.json +lib/node_modules/npm/node_modules/cacache/CHANGELOG.md +lib/node_modules/npm/node_modules/cacache/LICENSE.md +lib/node_modules/npm/node_modules/cacache/README.md +lib/node_modules/npm/node_modules/cacache/en.js +lib/node_modules/npm/node_modules/cacache/es.js +lib/node_modules/npm/node_modules/cacache/get.js +lib/node_modules/npm/node_modules/cacache/index.js +lib/node_modules/npm/node_modules/cacache/lib/content/path.js +lib/node_modules/npm/node_modules/cacache/lib/content/read.js +lib/node_modules/npm/node_modules/cacache/lib/content/rm.js +lib/node_modules/npm/node_modules/cacache/lib/content/write.js +lib/node_modules/npm/node_modules/cacache/lib/entry-index.js +lib/node_modules/npm/node_modules/cacache/lib/memoization.js +lib/node_modules/npm/node_modules/cacache/lib/util/fix-owner.js +lib/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +lib/node_modules/npm/node_modules/cacache/lib/util/move-file.js +lib/node_modules/npm/node_modules/cacache/lib/util/tmp.js +lib/node_modules/npm/node_modules/cacache/lib/util/y.js +lib/node_modules/npm/node_modules/cacache/lib/verify.js +lib/node_modules/npm/node_modules/cacache/locales/en.js +lib/node_modules/npm/node_modules/cacache/locales/en.json +lib/node_modules/npm/node_modules/cacache/locales/es.js +lib/node_modules/npm/node_modules/cacache/locales/es.json +lib/node_modules/npm/node_modules/cacache/ls.js +lib/node_modules/npm/node_modules/cacache/node_modules/y18n/LICENSE +lib/node_modules/npm/node_modules/cacache/node_modules/y18n/README.md +lib/node_modules/npm/node_modules/cacache/node_modules/y18n/index.js +lib/node_modules/npm/node_modules/cacache/node_modules/y18n/package.json +lib/node_modules/npm/node_modules/cacache/package.json +lib/node_modules/npm/node_modules/cacache/put.js +lib/node_modules/npm/node_modules/cacache/rm.js +lib/node_modules/npm/node_modules/cacache/verify.js lib/node_modules/npm/node_modules/call-limit/README.md lib/node_modules/npm/node_modules/call-limit/call-limit.js lib/node_modules/npm/node_modules/call-limit/package.json @@ -640,10 +668,22 @@ lib/node_modules/npm/node_modules/debuglog/LICENSE lib/node_modules/npm/node_modules/debuglog/README.md lib/node_modules/npm/node_modules/debuglog/debuglog.js lib/node_modules/npm/node_modules/debuglog/package.json +lib/node_modules/npm/node_modules/detect-indent/index.js +lib/node_modules/npm/node_modules/detect-indent/license +lib/node_modules/npm/node_modules/detect-indent/package.json +lib/node_modules/npm/node_modules/detect-indent/readme.md lib/node_modules/npm/node_modules/dezalgo/.travis.yml lib/node_modules/npm/node_modules/dezalgo/LICENSE lib/node_modules/npm/node_modules/dezalgo/README.md lib/node_modules/npm/node_modules/dezalgo/dezalgo.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/CHANGES.md +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/LICENSE.md +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/README.md +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/asap.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-asap.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-raw.js +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/package.json +lib/node_modules/npm/node_modules/dezalgo/node_modules/asap/raw.js lib/node_modules/npm/node_modules/dezalgo/package.json lib/node_modules/npm/node_modules/dezalgo/test/basic.js lib/node_modules/npm/node_modules/editor/LICENSE @@ -920,6 +960,21 @@ lib/node_modules/npm/node_modules/lodash.without/LICEN lib/node_modules/npm/node_modules/lodash.without/README.md lib/node_modules/npm/node_modules/lodash.without/index.js lib/node_modules/npm/node_modules/lodash.without/package.json +lib/node_modules/npm/node_modules/lru-cache/LICENSE +lib/node_modules/npm/node_modules/lru-cache/README.md +lib/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js +lib/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/LICENSE +lib/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/README.md +lib/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/map.js +lib/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/package.json +lib/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js +lib/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/test/basic.js +lib/node_modules/npm/node_modules/lru-cache/node_modules/yallist/LICENSE +lib/node_modules/npm/node_modules/lru-cache/node_modules/yallist/README.md +lib/node_modules/npm/node_modules/lru-cache/node_modules/yallist/iterator.js +lib/node_modules/npm/node_modules/lru-cache/node_modules/yallist/package.json +lib/node_modules/npm/node_modules/lru-cache/node_modules/yallist/yallist.js +lib/node_modules/npm/node_modules/lru-cache/package.json lib/node_modules/npm/node_modules/mississippi/.npmignore lib/node_modules/npm/node_modules/mississippi/index.js lib/node_modules/npm/node_modules/mississippi/node_modules/concat-stream/LICENSE @@ -958,16 +1013,10 @@ lib/node_modules/npm/node_modules/mississippi/node_mod lib/node_modules/npm/node_modules/mississippi/node_modules/duplexify/node_modules/stream-shift/test.js lib/node_modules/npm/node_modules/mississippi/node_modules/duplexify/package.json lib/node_modules/npm/node_modules/mississippi/node_modules/duplexify/test.js -lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/.npmignore lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/LICENSE lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/README.md lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/index.js -lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/node_modules/once/LICENSE -lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/node_modules/once/README.md -lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/node_modules/once/once.js -lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/node_modules/once/package.json lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/package.json -lib/node_modules/npm/node_modules/mississippi/node_modules/end-of-stream/test.js lib/node_modules/npm/node_modules/mississippi/node_modules/flush-write-stream/.npmignore lib/node_modules/npm/node_modules/mississippi/node_modules/flush-write-stream/.travis.yml lib/node_modules/npm/node_modules/mississippi/node_modules/flush-write-stream/LICENSE @@ -1088,9 +1137,6 @@ lib/node_modules/npm/node_modules/move-concurrently/no lib/node_modules/npm/node_modules/move-concurrently/package.json lib/node_modules/npm/node_modules/node-gyp/.jshintrc lib/node_modules/npm/node_modules/node-gyp/.npmignore -lib/node_modules/npm/node_modules/node-gyp/0001-gyp-always-install-into-PRODUCT_DIR.patch -lib/node_modules/npm/node_modules/node-gyp/0002-gyp-apply-https-codereview.chromium.org-11361103.patch -lib/node_modules/npm/node_modules/node-gyp/0003-gyp-don-t-use-links-at-all-just-copy-the-files-inste.patch lib/node_modules/npm/node_modules/node-gyp/CHANGELOG.md lib/node_modules/npm/node_modules/node-gyp/LICENSE lib/node_modules/npm/node_modules/node-gyp/README.md @@ -1236,34 +1282,8 @@ lib/node_modules/npm/node_modules/nopt/README.md lib/node_modules/npm/node_modules/nopt/bin/nopt.js lib/node_modules/npm/node_modules/nopt/examples/my-program.js lib/node_modules/npm/node_modules/nopt/lib/nopt.js -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/.npmignore -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/.travis.yml -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/LICENSE -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/README.md -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-homedir/index.js -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-homedir/license -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-homedir/package.json -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-homedir/readme.md -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-tmpdir/index.js -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-tmpdir/license -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-tmpdir/package.json -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/node_modules/os-tmpdir/readme.md -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/osenv.js -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/package.json -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/test/unix.js -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/test/windows.js -lib/node_modules/npm/node_modules/nopt/node_modules/osenv/x.tap lib/node_modules/npm/node_modules/nopt/package.json lib/node_modules/npm/node_modules/nopt/test/basic.js -lib/node_modules/npm/node_modules/normalize-git-url/.npmignore -lib/node_modules/npm/node_modules/normalize-git-url/.travis.yml -lib/node_modules/npm/node_modules/normalize-git-url/CHANGELOG.md -lib/node_modules/npm/node_modules/normalize-git-url/LICENSE -lib/node_modules/npm/node_modules/normalize-git-url/README.md -lib/node_modules/npm/node_modules/normalize-git-url/normalize-git-url.js -lib/node_modules/npm/node_modules/normalize-git-url/package.json -lib/node_modules/npm/node_modules/normalize-git-url/test/basic.js -lib/node_modules/npm/node_modules/normalize-git-url/test/basic.js~ lib/node_modules/npm/node_modules/normalize-package-data/AUTHORS lib/node_modules/npm/node_modules/normalize-package-data/LICENSE lib/node_modules/npm/node_modules/normalize-package-data/README.md @@ -1319,6 +1339,7 @@ lib/node_modules/npm/node_modules/npm-registry-client/ lib/node_modules/npm/node_modules/npm-registry-client/lib/get.js lib/node_modules/npm/node_modules/npm-registry-client/lib/initialize.js lib/node_modules/npm/node_modules/npm-registry-client/lib/logout.js +lib/node_modules/npm/node_modules/npm-registry-client/lib/org.js lib/node_modules/npm/node_modules/npm-registry-client/lib/ping.js lib/node_modules/npm/node_modules/npm-registry-client/lib/publish.js lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js @@ -1342,15 +1363,10 @@ lib/node_modules/npm/node_modules/npm-registry-client/ lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/package.json lib/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/readme.md lib/node_modules/npm/node_modules/npm-registry-client/package.json -lib/node_modules/npm/node_modules/npm-user-validate/.npmignore -lib/node_modules/npm/node_modules/npm-user-validate/.travis.yml lib/node_modules/npm/node_modules/npm-user-validate/LICENSE lib/node_modules/npm/node_modules/npm-user-validate/README.md lib/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js lib/node_modules/npm/node_modules/npm-user-validate/package.json -lib/node_modules/npm/node_modules/npm-user-validate/test/email.test.js -lib/node_modules/npm/node_modules/npm-user-validate/test/pw.test.js -lib/node_modules/npm/node_modules/npm-user-validate/test/username.test.js lib/node_modules/npm/node_modules/npmlog/CHANGELOG.md lib/node_modules/npm/node_modules/npmlog/LICENSE lib/node_modules/npm/node_modules/npmlog/README.md @@ -1458,9 +1474,449 @@ lib/node_modules/npm/node_modules/osenv/package.json lib/node_modules/npm/node_modules/osenv/test/unix.js lib/node_modules/npm/node_modules/osenv/test/windows.js lib/node_modules/npm/node_modules/osenv/x.tap +lib/node_modules/npm/node_modules/pacote/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/LICENSE +lib/node_modules/npm/node_modules/pacote/README.md +lib/node_modules/npm/node_modules/pacote/extract.js +lib/node_modules/npm/node_modules/pacote/index.js +lib/node_modules/npm/node_modules/pacote/lib/extract-stream.js +lib/node_modules/npm/node_modules/pacote/lib/fetch.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/directory.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/file.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/git.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/hosted.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/range.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/check-warning-header.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/fetch.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/index.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/manifest.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/pick-registry.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/registry-key.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/registry/tarball.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/remote.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/tag.js +lib/node_modules/npm/node_modules/pacote/lib/fetchers/version.js +lib/node_modules/npm/node_modules/pacote/lib/finalize-manifest.js +lib/node_modules/npm/node_modules/pacote/lib/util/cache-key.js +lib/node_modules/npm/node_modules/pacote/lib/util/git.js +lib/node_modules/npm/node_modules/pacote/lib/util/gunzip-maybe.js +lib/node_modules/npm/node_modules/pacote/lib/util/opt-check.js +lib/node_modules/npm/node_modules/pacote/lib/util/pack-dir.js +lib/node_modules/npm/node_modules/pacote/lib/util/silentlog.js +lib/node_modules/npm/node_modules/pacote/manifest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/cache.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/browser.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/lib/_http_agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/lib/agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/lib/https_agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/node_modules/ms/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/node_modules/ms/license.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/node_modules/ms/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/node_modules/ms/readme.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/node_modules/humanize-ms/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/agentkeepalive/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/node4/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/misctest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/okhttptest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/requesttest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/responsetest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/revalidatetest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/satisfytest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/updatetest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-cache-semantics/test/varytest.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/http-proxy-agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/.bin/semver +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/bin/semver +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/semver.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/test/big-numbers.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/test/clean.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/test/gtr.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/test/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/test/ltr.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/node_modules/semver/test/major-minor-patch.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/patch-core.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.key +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.pem +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/agent-base/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/.coveralls.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/Makefile +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/component.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/karma.conf.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/node.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/node_modules/ms/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/node_modules/ms/license.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/node_modules/ms/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/node_modules/ms/readme.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/src/browser.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/src/debug.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/src/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/debug/src/node.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/.jscs.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/component.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/node_modules/extend/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/test/ssl-cert-snakeoil.key +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/test/ssl-cert-snakeoil.pem +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/http-proxy-agent/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/https-proxy-agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/.bin/semver +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/bin/semver +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/semver.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/test/big-numbers.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/test/clean.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/test/gtr.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/test/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/test/ltr.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/node_modules/semver/test/major-minor-patch.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/patch-core.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.key +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.pem +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/agent-base/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/.coveralls.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/Makefile +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/component.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/karma.conf.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/node.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/node_modules/ms/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/node_modules/ms/license.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/node_modules/ms/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/node_modules/ms/readme.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/src/browser.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/src/debug.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/src/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/debug/src/node.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/.jscs.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/component.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/node_modules/extend/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/test/ssl-cert-snakeoil.key +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/test/ssl-cert-snakeoil.pem +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/https-proxy-agent/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/LICENSE.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/lib/encoding.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/lib/iconv-loader.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/Changelog.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/dbcs-codec.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/dbcs-data.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/internal.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/sbcs-codec.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/sbcs-data-generated.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/sbcs-data.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/big5-added.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/cp936.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/cp949.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/cp950.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/eucjp.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/gbk-added.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/tables/shiftjis.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/utf16.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/encodings/utf7.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/lib/bom-handling.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/lib/extend-node.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/lib/index.d.ts +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/lib/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/lib/streams.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/node_modules/iconv-lite/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/encoding/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/.editorconfig +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/lib/analyze.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/lib/document.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/lib/parse.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/lib/stringify.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/lib/unicode.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/lib/utils.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/node_modules/jju/package.yaml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/node_modules/json-parse-helpfulerror/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/blob.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/body.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/common.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/fetch-error.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/headers.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/request.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/node-fetch-npm/src/response.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/History.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/.bin/semver +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/bin/semver +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/semver.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/test/big-numbers.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/test/clean.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/test/gtr.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/test/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/test/ltr.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/node_modules/semver/test/major-minor-patch.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/patch-core.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.key +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/test/ssl-cert-snakeoil.pem +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/agent-base/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/.jscs.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/component.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/extend/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/examples/associate.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/examples/bind.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/examples/connect.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/lib/socks-agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/lib/socks-client.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/.jscsrc +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/lib/ip.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/ip/test/api-test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/build/smartbuffer.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/build/smartbuffer.js.map +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/lib/smart-buffer.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/test/smart-buffer.test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/node_modules/smart-buffer/typings/index.d.ts +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/node_modules/socks/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/socks-proxy-agent.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/test/ssl-cert-snakeoil.key +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/test/ssl-cert-snakeoil.pem +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/node_modules/socks-proxy-agent/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/make-fetch-happen/warning.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/minimatch.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/node_modules/brace-expansion/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/minimatch/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/npm-pick-manifest/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/npm-pick-manifest/LICENSE.md +lib/node_modules/npm/node_modules/pacote/node_modules/npm-pick-manifest/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/npm-pick-manifest/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/npm-pick-manifest/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/.editorconfig +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/.editorconfig +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/.eslintrc.json +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/bower.json +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/index.umd.js +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/test/.eslintrc.json +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/node_modules/err-code/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/promise-retry/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/CHANGELOG.md +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/lib/genfun.js +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/lib/method.js +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/lib/role.js +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/lib/util.js +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/protoduck/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/node_modules/end-of-stream/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/node_modules/end-of-stream/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/node_modules/end-of-stream/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/node_modules/end-of-stream/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/test-browser.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/node_modules/pump/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/a/hello.txt +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/b/a/test.txt +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/c/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/d/file1 +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/d/file2 +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/e/directory/.ignore +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/fixtures/e/file +lib/node_modules/npm/node_modules/pacote/node_modules/tar-fs/test/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/extract.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/headers.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/.travis.yml +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/LICENSE.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/bl.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/bl/test/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/end-of-stream/LICENSE +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/end-of-stream/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/end-of-stream/index.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/end-of-stream/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/.npmignore +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/LICENCE +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/Makefile +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/README.md +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/immutable.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/mutable.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/package.json +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/node_modules/xtend/test.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/pack.js +lib/node_modules/npm/node_modules/pacote/node_modules/tar-stream/package.json +lib/node_modules/npm/node_modules/pacote/package.json +lib/node_modules/npm/node_modules/pacote/prefetch.js lib/node_modules/npm/node_modules/path-is-inside/LICENSE.txt lib/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js lib/node_modules/npm/node_modules/path-is-inside/package.json +lib/node_modules/npm/node_modules/promise-inflight/LICENSE +lib/node_modules/npm/node_modules/promise-inflight/README.md +lib/node_modules/npm/node_modules/promise-inflight/inflight.js +lib/node_modules/npm/node_modules/promise-inflight/package.json lib/node_modules/npm/node_modules/read-cmd-shim/.npmignore lib/node_modules/npm/node_modules/read-cmd-shim/README.md lib/node_modules/npm/node_modules/read-cmd-shim/index.js @@ -1546,8 +2002,18 @@ lib/node_modules/npm/node_modules/read-package-tree/rp lib/node_modules/npm/node_modules/read/LICENSE lib/node_modules/npm/node_modules/read/README.md lib/node_modules/npm/node_modules/read/lib/read.js +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/.travis.yml lib/node_modules/npm/node_modules/read/node_modules/mute-stream/LICENSE lib/node_modules/npm/node_modules/read/node_modules/mute-stream/README.md +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/__root__/index.html +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/__root__/mute.js.html +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/base.css +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/index.html +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/prettify.css +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/prettify.js +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/sort-arrow-sprite.png +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov-report/sorter.js +lib/node_modules/npm/node_modules/read/node_modules/mute-stream/coverage/lcov.info lib/node_modules/npm/node_modules/read/node_modules/mute-stream/mute.js lib/node_modules/npm/node_modules/read/node_modules/mute-stream/package.json lib/node_modules/npm/node_modules/read/node_modules/mute-stream/test/basic.js @@ -1569,10 +2035,6 @@ lib/node_modules/npm/node_modules/readable-stream/lib/ lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/BufferList.js lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/stream-browser.js lib/node_modules/npm/node_modules/readable-stream/lib/internal/streams/stream.js -lib/node_modules/npm/node_modules/readable-stream/node_modules/buffer-shims/index.js -lib/node_modules/npm/node_modules/readable-stream/node_modules/buffer-shims/license.md -lib/node_modules/npm/node_modules/readable-stream/node_modules/buffer-shims/package.json -lib/node_modules/npm/node_modules/readable-stream/node_modules/buffer-shims/readme.md lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/LICENSE lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/README.md lib/node_modules/npm/node_modules/readable-stream/node_modules/core-util-is/float.patch @@ -1625,17 +2087,6 @@ lib/node_modules/npm/node_modules/readdir-scoped-modul lib/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/a/y/.keep lib/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/b/x/.keep lib/node_modules/npm/node_modules/readdir-scoped-modules/test/fixtures/b/y/.keep -lib/node_modules/npm/node_modules/realize-package-specifier/.npmignore -lib/node_modules/npm/node_modules/realize-package-specifier/LICENSE -lib/node_modules/npm/node_modules/realize-package-specifier/README.md -lib/node_modules/npm/node_modules/realize-package-specifier/index.js -lib/node_modules/npm/node_modules/realize-package-specifier/package.json -lib/node_modules/npm/node_modules/realize-package-specifier/test/basic.js -lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-basic.js -lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-bitbucket.js -lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-github.js -lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-gitlab.js -lib/node_modules/npm/node_modules/realize-package-specifier/test/npa-windows.js lib/node_modules/npm/node_modules/request/CHANGELOG.md lib/node_modules/npm/node_modules/request/LICENSE lib/node_modules/npm/node_modules/request/README.md @@ -1839,7 +2290,8 @@ lib/node_modules/npm/node_modules/request/node_modules lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/node_modules/json-stable-stringify/test/str.js lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/node_modules/json-stable-stringify/test/to-json.js lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/package.json -lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/scripts/bundle +lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/scripts/.eslintrc.yml +lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/scripts/bundle.js lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/scripts/compile-dots.js lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/scripts/info lib/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/ajv/scripts/prepare-tests @@ -1960,6 +2412,11 @@ lib/node_modules/npm/node_modules/request/node_modules lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/LICENSE lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/README.md lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/lib/jsprim.js +lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/assert-plus/AUTHORS +lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/assert-plus/CHANGES.md +lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/assert-plus/README.md +lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/assert-plus/assert.js +lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/assert-plus/package.json lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/extsprintf/.gitmodules lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/extsprintf/LICENSE lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/extsprintf/Makefile @@ -2248,6 +2705,12 @@ lib/node_modules/npm/node_modules/rimraf/README.md lib/node_modules/npm/node_modules/rimraf/bin.js lib/node_modules/npm/node_modules/rimraf/package.json lib/node_modules/npm/node_modules/rimraf/rimraf.js +lib/node_modules/npm/node_modules/safe-buffer/.travis.yml +lib/node_modules/npm/node_modules/safe-buffer/LICENSE +lib/node_modules/npm/node_modules/safe-buffer/README.md +lib/node_modules/npm/node_modules/safe-buffer/index.js +lib/node_modules/npm/node_modules/safe-buffer/package.json +lib/node_modules/npm/node_modules/safe-buffer/test.js lib/node_modules/npm/node_modules/semver/LICENSE lib/node_modules/npm/node_modules/semver/README.md lib/node_modules/npm/node_modules/semver/bin/semver @@ -2318,10 +2781,22 @@ lib/node_modules/npm/node_modules/sorted-union-stream/ lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/LICENSE lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/README.md lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/index.js +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/.npmignore +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/.travis.yml +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/LICENSE +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/README.md +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/index.js +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/package.json +lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/node_modules/stream-shift/test.js lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/package.json lib/node_modules/npm/node_modules/sorted-union-stream/node_modules/stream-iterate/test.js lib/node_modules/npm/node_modules/sorted-union-stream/package.json lib/node_modules/npm/node_modules/sorted-union-stream/test.js +lib/node_modules/npm/node_modules/ssri/CHANGELOG.md +lib/node_modules/npm/node_modules/ssri/LICENSE.md +lib/node_modules/npm/node_modules/ssri/README.md +lib/node_modules/npm/node_modules/ssri/index.js +lib/node_modules/npm/node_modules/ssri/package.json lib/node_modules/npm/node_modules/strip-ansi/index.js lib/node_modules/npm/node_modules/strip-ansi/license lib/node_modules/npm/node_modules/strip-ansi/package.json @@ -2346,18 +2821,8 @@ lib/node_modules/npm/node_modules/tar/lib/parse.js lib/node_modules/npm/node_modules/tar/node_modules/block-stream/LICENCE lib/node_modules/npm/node_modules/tar/node_modules/block-stream/LICENSE lib/node_modules/npm/node_modules/tar/node_modules/block-stream/README.md -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/bench/block-stream-pause.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/bench/block-stream.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/bench/dropper-pause.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/bench/dropper.js lib/node_modules/npm/node_modules/tar/node_modules/block-stream/block-stream.js lib/node_modules/npm/node_modules/tar/node_modules/block-stream/package.json -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/test/basic.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/test/nopad-thorough.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/test/nopad.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/test/pause-resume.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/test/thorough.js -lib/node_modules/npm/node_modules/tar/node_modules/block-stream/test/two-stream.js lib/node_modules/npm/node_modules/tar/package.json lib/node_modules/npm/node_modules/tar/tar.js lib/node_modules/npm/node_modules/tar/test/00-setup-fixtures.js @@ -2404,6 +2869,14 @@ lib/node_modules/npm/node_modules/umask/package.json lib/node_modules/npm/node_modules/umask/test/simple.js lib/node_modules/npm/node_modules/unique-filename/.npmignore lib/node_modules/npm/node_modules/unique-filename/README.md +lib/node_modules/npm/node_modules/unique-filename/coverage/__root__/index.html +lib/node_modules/npm/node_modules/unique-filename/coverage/__root__/index.js.html +lib/node_modules/npm/node_modules/unique-filename/coverage/base.css +lib/node_modules/npm/node_modules/unique-filename/coverage/index.html +lib/node_modules/npm/node_modules/unique-filename/coverage/prettify.css +lib/node_modules/npm/node_modules/unique-filename/coverage/prettify.js +lib/node_modules/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png +lib/node_modules/npm/node_modules/unique-filename/coverage/sorter.js lib/node_modules/npm/node_modules/unique-filename/index.js lib/node_modules/npm/node_modules/unique-filename/node_modules/unique-slug/.npmignore lib/node_modules/npm/node_modules/unique-filename/node_modules/unique-slug/.travis.yml @@ -2474,24 +2947,6 @@ lib/node_modules/npm/node_modules/update-notifier/node lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/lib/enoent.js lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/lib/parse.js lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/lib/resolveCommand.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/LICENSE -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/README.md -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/lib/lru-cache.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/pseudomap/LICENSE -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/pseudomap/README.md -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/pseudomap/map.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/pseudomap/package.json -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/pseudomap/test/basic.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/.npmignore -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/.travis.yml -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/CONTRIBUTING.md -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/LICENSE -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/README.md -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/package.json -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/test/basic.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/node_modules/yallist/yallist.js -lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/node_modules/lru-cache/package.json lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/cross-spawn-async/package.json lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/is-stream/index.js lib/node_modules/npm/node_modules/update-notifier/node_modules/boxen/node_modules/term-size/node_modules/execa/node_modules/is-stream/license @@ -2578,6 +3033,10 @@ lib/node_modules/npm/node_modules/update-notifier/node lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/unique-string/node_modules/crypto-random-string/readme.md lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/unique-string/package.json lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/unique-string/readme.md +lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/write-file-atomic/LICENSE +lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/write-file-atomic/README.md +lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/write-file-atomic/index.js +lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/node_modules/write-file-atomic/package.json lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/package.json lib/node_modules/npm/node_modules/update-notifier/node_modules/configstore/readme.md lib/node_modules/npm/node_modules/update-notifier/node_modules/is-npm/index.js @@ -2694,10 +3153,18 @@ lib/node_modules/npm/node_modules/update-notifier/node lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/rc/test/ini.js lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/rc/test/nested-env-vars.js lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/rc/test/test.js +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/.travis.yml +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/LICENSE +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/README.md +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/browser.js +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/index.js +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/package.json +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/node_modules/safe-buffer/test.js lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/package.json lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/registry-url.js lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/test/auth-token.test.js lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/test/registry-url.test.js +lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-auth-token/yarn.lock lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/index.js lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/license lib/node_modules/npm/node_modules/update-notifier/node_modules/latest-version/node_modules/package-json/node_modules/registry-url/node_modules/.bin/rc @@ -2790,18 +3257,12 @@ lib/node_modules/npm/node_modules/validate-npm-package lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/node_modules/spdx-license-ids/package.json lib/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/node_modules/spdx-license-ids/spdx-license-ids.json *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 581DDD89BD4; Sun, 18 Jun 2017 05:51:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 215E784B0F; Sun, 18 Jun 2017 05:51:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pUSD071752; Sun, 18 Jun 2017 05:51:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pUYB071751; Sun, 18 Jun 2017 05:51:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pUYB071751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443806 - head/databases/p5-Dancer-Plugin-DBIC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:31 -0000 Author: sunpoet Date: Sun Jun 18 05:51:29 2017 New Revision: 443806 URL: https://svnweb.freebsd.org/changeset/ports/443806 Log: Remove Perl core modules With hat: perl Modified: head/databases/p5-Dancer-Plugin-DBIC/Makefile Modified: head/databases/p5-Dancer-Plugin-DBIC/Makefile ============================================================================== --- head/databases/p5-Dancer-Plugin-DBIC/Makefile Sun Jun 18 05:51:24 2017 (r443805) +++ head/databases/p5-Dancer-Plugin-DBIC/Makefile Sun Jun 18 05:51:29 2017 (r443806) @@ -21,9 +21,7 @@ BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Clas p5-Test-Exception>=0:devel/p5-Test-Exception \ p5-Test-Requires>=0:devel/p5-Test-Requires RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-File-Temp>=0:devel/p5-File-Temp \ - p5-Module-Load-Conditional>=0.38:devel/p5-Module-Load-Conditional \ - p5-MooseX-Types-LoadableClass>0:devel/p5-MooseX-Types-LoadableClass +TEST_DEPENDS= p5-MooseX-Types-LoadableClass>0:devel/p5-MooseX-Types-LoadableClass USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 050C5D89B9F; Sun, 18 Jun 2017 05:51:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C47B084A90; Sun, 18 Jun 2017 05:51:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pObw071645; Sun, 18 Jun 2017 05:51:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pO9E071644; Sun, 18 Jun 2017 05:51:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pO9E071644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443805 - head/databases/p5-DBIx-SearchBuilder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:26 -0000 Author: sunpoet Date: Sun Jun 18 05:51:24 2017 New Revision: 443805 URL: https://svnweb.freebsd.org/changeset/ports/443805 Log: Remove Perl core modules - While I'm here: - Add LICENSE - Add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/databases/p5-DBIx-SearchBuilder/Makefile Modified: head/databases/p5-DBIx-SearchBuilder/Makefile ============================================================================== --- head/databases/p5-DBIx-SearchBuilder/Makefile Sun Jun 18 05:51:19 2017 (r443804) +++ head/databases/p5-DBIx-SearchBuilder/Makefile Sun Jun 18 05:51:24 2017 (r443805) @@ -3,7 +3,7 @@ PORTNAME= DBIx-SearchBuilder PORTVERSION= 1.66 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= michelle@sorbs.net COMMENT= Perl extension for easy SQL SELECT Statement generation +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Class-ReturnValue>=0:devel/p5-Class-ReturnValue \ p5-Cache-Simple-TimedExpiry>=0:devel/p5-Cache-Simple-TimedExpiry \ p5-Want>=0:devel/p5-Want \ @@ -18,11 +21,11 @@ BUILD_DEPENDS= p5-Class-ReturnValue>=0:devel/p5-Class- p5-DBI>=0:databases/p5-DBI \ p5-DBIx-DBSchema>=0:databases/p5-DBIx-DBSchema \ p5-Class-Accessor>=0:devel/p5-Class-Accessor \ - p5-Clone>=0:devel/p5-Clone \ - p5-Encode>=0:converters/p5-Encode + p5-Clone>=0:devel/p5-Clone RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27063D89C16; Sun, 18 Jun 2017 05:51:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E99DD84B8C; Sun, 18 Jun 2017 05:51:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pZFS071858; Sun, 18 Jun 2017 05:51:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pZsl071857; Sun, 18 Jun 2017 05:51:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pZsl071857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443807 - head/devel/p5-uni-perl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:36 -0000 Author: sunpoet Date: Sun Jun 18 05:51:34 2017 New Revision: 443807 URL: https://svnweb.freebsd.org/changeset/ports/443807 Log: Remove Perl core modules - While I'm here: - Add LICENSE - Add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/devel/p5-uni-perl/Makefile Modified: head/devel/p5-uni-perl/Makefile ============================================================================== --- head/devel/p5-uni-perl/Makefile Sun Jun 18 05:51:29 2017 (r443806) +++ head/devel/p5-uni-perl/Makefile Sun Jun 18 05:51:34 2017 (r443807) @@ -3,7 +3,7 @@ PORTNAME= uni-perl PORTVERSION= 0.91 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MONS @@ -12,11 +12,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= mons@cpan.org COMMENT= Modern perl with Unicode -RUN_DEPENDS= p5-Encode>=2.37:converters/p5-Encode \ - p5-lib-abs>=0.90:devel/p5-lib-abs +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-lib-abs>=0.90:devel/p5-lib-abs BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB20BD89C4F; Sun, 18 Jun 2017 05:51:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8843D84C05; Sun, 18 Jun 2017 05:51:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pdIt071963; Sun, 18 Jun 2017 05:51:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pdIR071962; Sun, 18 Jun 2017 05:51:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pdIR071962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443808 - head/ftp/p5-File-Fetch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:40 -0000 Author: sunpoet Date: Sun Jun 18 05:51:39 2017 New Revision: 443808 URL: https://svnweb.freebsd.org/changeset/ports/443808 Log: Add PERL_LEVEL check - Bump PORTREVISION for dependency change Modified: head/ftp/p5-File-Fetch/Makefile Modified: head/ftp/p5-File-Fetch/Makefile ============================================================================== --- head/ftp/p5-File-Fetch/Makefile Sun Jun 18 05:51:34 2017 (r443807) +++ head/ftp/p5-File-Fetch/Makefile Sun Jun 18 05:51:39 2017 (r443808) @@ -3,6 +3,7 @@ PORTNAME= File-Fetch PORTVERSION= 0.52 +PORTREVISION= 1 CATEGORIES= ftp www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,11 +14,15 @@ COMMENT= Generic file fetching mechanism LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Module-Load-Conditional>=0.66:devel/p5-Module-Load-Conditional -RUN_DEPENDS= p5-Module-Load-Conditional>=0.66:devel/p5-Module-Load-Conditional - USES= perl5 USE_PERL5= configure NO_ARCH= yes -.include +.include + +.if ${PERL_LEVEL} < 502504 +BUILD_DEPENDS+= p5-Module-Load-Conditional>=0.66:devel/p5-Module-Load-Conditional +RUN_DEPENDS+= p5-Module-Load-Conditional>=0.66:devel/p5-Module-Load-Conditional +.endif + +.include From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89FD0D89C84; Sun, 18 Jun 2017 05:51:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5197184C7F; Sun, 18 Jun 2017 05:51:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5piQp072070; Sun, 18 Jun 2017 05:51:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pi9W072069; Sun, 18 Jun 2017 05:51:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pi9W072069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443809 - head/japanese/p5-Text-MeCab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:45 -0000 Author: sunpoet Date: Sun Jun 18 05:51:44 2017 New Revision: 443809 URL: https://svnweb.freebsd.org/changeset/ports/443809 Log: Remove Perl core modules - While I'm here: - Add LICENSE - Use TEST_DEPENDS - Fix indent - Bump PORTREVISION for dependency change With hat: perl Modified: head/japanese/p5-Text-MeCab/Makefile Modified: head/japanese/p5-Text-MeCab/Makefile ============================================================================== --- head/japanese/p5-Text-MeCab/Makefile Sun Jun 18 05:51:39 2017 (r443808) +++ head/japanese/p5-Text-MeCab/Makefile Sun Jun 18 05:51:44 2017 (r443809) @@ -1,23 +1,22 @@ # Created by: TAOKA Fumiyoshi # $FreeBSD$ -PORTNAME= Text-MeCab -PORTVERSION= 0.20009 -PORTREVISION= 1 -CATEGORIES= japanese textproc perl5 -MASTER_SITES= CPAN +PORTNAME= Text-MeCab +PORTVERSION= 0.20009 +PORTREVISION= 2 +CATEGORIES= japanese textproc perl5 +MASTER_SITES= CPAN -MAINTAINER= fmysh@iijmio-mail.jp -COMMENT= Alternate Interface To libmecab +MAINTAINER= fmysh@iijmio-mail.jp +COMMENT= Alternate Interface To libmecab -BUILD_DEPENDS= p5-Devel-PPPort>=3.19:devel/p5-Devel-PPPort \ - p5-ExtUtils-ParseXS>=2.21:devel/p5-ExtUtils-ParseXS \ - p5-Test-Simple>=0.84:devel/p5-Test-Simple \ - p5-Test-Requires>0:devel/p5-Test-Requires -RUN_DEPENDS= p5-Class-Accessor>0:devel/p5-Class-Accessor \ - p5-Encode>0:converters/p5-Encode\ - p5-XSLoader>0.1:devel/p5-XSLoader -LIB_DEPENDS= libmecab.so:japanese/mecab +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Class-Accessor>0:devel/p5-Class-Accessor \ + p5-XSLoader>0.1:devel/p5-XSLoader +LIB_DEPENDS= libmecab.so:japanese/mecab +TEST_DEPENDS= p5-Test-Requires>0:devel/p5-Test-Requires MAKE_JOBS_UNSAFE= yes From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:50 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 870B9D89CB1; Sun, 18 Jun 2017 05:51:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5190384CF4; Sun, 18 Jun 2017 05:51:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pnMx072190; Sun, 18 Jun 2017 05:51:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5pnuB072188; Sun, 18 Jun 2017 05:51:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5pnuB072188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443810 - head/multimedia/p5-MP4-Info X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:50 -0000 Author: sunpoet Date: Sun Jun 18 05:51:48 2017 New Revision: 443810 URL: https://svnweb.freebsd.org/changeset/ports/443810 Log: Remove Perl core modules - Add LICENSE - Add NO_ARCH - Sort PLIST - Bump PORTREVISION for dependency change Modified: head/multimedia/p5-MP4-Info/Makefile head/multimedia/p5-MP4-Info/pkg-plist Modified: head/multimedia/p5-MP4-Info/Makefile ============================================================================== --- head/multimedia/p5-MP4-Info/Makefile Sun Jun 18 05:51:44 2017 (r443809) +++ head/multimedia/p5-MP4-Info/Makefile Sun Jun 18 05:51:48 2017 (r443810) @@ -3,7 +3,7 @@ PORTNAME= MP4-Info PORTVERSION= 1.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,10 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Fetch info from MPEG-4 files -BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String \ - p5-Encode>=2.10:converters/p5-Encode +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= p5-IO-String>=0:devel/p5-IO-String RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/multimedia/p5-MP4-Info/pkg-plist ============================================================================== --- head/multimedia/p5-MP4-Info/pkg-plist Sun Jun 18 05:51:44 2017 (r443809) +++ head/multimedia/p5-MP4-Info/pkg-plist Sun Jun 18 05:51:48 2017 (r443810) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/MP4::Info.3.gz %%SITE_PERL%%/MP4/Info.pm +%%PERL5_MAN3%%/MP4::Info.3.gz From owner-svn-ports-head@freebsd.org Sun Jun 18 05:51:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74ADFD89CE5; Sun, 18 Jun 2017 05:51:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A60984D5E; Sun, 18 Jun 2017 05:51:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5psui072297; Sun, 18 Jun 2017 05:51:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5psaT072296; Sun, 18 Jun 2017 05:51:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5psaT072296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443811 - head/textproc/p5-Lingua-Identify-CLD X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:51:55 -0000 Author: sunpoet Date: Sun Jun 18 05:51:54 2017 New Revision: 443811 URL: https://svnweb.freebsd.org/changeset/ports/443811 Log: Remove Perl core modules - While I'm here, update version requirement of BUILD_DEPENDS - Bump PORTREVISION for dependency change With hat: perl Modified: head/textproc/p5-Lingua-Identify-CLD/Makefile Modified: head/textproc/p5-Lingua-Identify-CLD/Makefile ============================================================================== --- head/textproc/p5-Lingua-Identify-CLD/Makefile Sun Jun 18 05:51:48 2017 (r443810) +++ head/textproc/p5-Lingua-Identify-CLD/Makefile Sun Jun 18 05:51:54 2017 (r443811) @@ -3,7 +3,7 @@ PORTNAME= Lingua-Identify-CLD PORTVERSION= 0.09 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,12 +13,9 @@ COMMENT= Interface to Chrome language detection librar LICENSE= BSD3CLAUSE +BUILD_DEPENDS= p5-Config-AutoConf>=0.17:devel/p5-Config-AutoConf \ + p5-ExtUtils-LibBuilder>=0.04:devel/p5-ExtUtils-LibBuilder LIB_DEPENDS= libcld.so:devel/cld -BUILD_DEPENDS= p5-Config-AutoConf>=0.16:devel/p5-Config-AutoConf \ - p5-ExtUtils-CBuilder>0.27:devel/p5-ExtUtils-CBuilder \ - p5-ExtUtils-ParseXS>=0:devel/p5-ExtUtils-ParseXS \ - p5-ExtUtils-LibBuilder>=0.02:devel/p5-ExtUtils-LibBuilder -RUN_DEPENDS= p5-XSLoader>=0:devel/p5-XSLoader USES= perl5 USE_PERL5= modbuild From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E130D89D26; Sun, 18 Jun 2017 05:52:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2759C84DCF; Sun, 18 Jun 2017 05:52:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5pxDI072417; Sun, 18 Jun 2017 05:51:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5px8G072415; Sun, 18 Jun 2017 05:51:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180551.v5I5px8G072415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443812 - head/textproc/p5-Petal-Mail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:00 -0000 Author: sunpoet Date: Sun Jun 18 05:51:58 2017 New Revision: 443812 URL: https://svnweb.freebsd.org/changeset/ports/443812 Log: Remove Perl core modules - Add LICENSE - Add NO_ARCH - Sort PLIST - Bump PORTREVISION for dependency change Modified: head/textproc/p5-Petal-Mail/Makefile head/textproc/p5-Petal-Mail/pkg-plist Modified: head/textproc/p5-Petal-Mail/Makefile ============================================================================== --- head/textproc/p5-Petal-Mail/Makefile Sun Jun 18 05:51:54 2017 (r443811) +++ head/textproc/p5-Petal-Mail/Makefile Sun Jun 18 05:51:58 2017 (r443812) @@ -3,7 +3,7 @@ PORTNAME= Petal-Mail PORTVERSION= 0.31 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:BPOSTLE @@ -12,10 +12,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Format text e-mail using Petal -BUILD_DEPENDS= p5-Petal>=0:textproc/p5-Petal \ - p5-Encode>=0:converters/p5-Encode +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Petal>=0:textproc/p5-Petal RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/textproc/p5-Petal-Mail/pkg-plist ============================================================================== --- head/textproc/p5-Petal-Mail/pkg-plist Sun Jun 18 05:51:54 2017 (r443811) +++ head/textproc/p5-Petal-Mail/pkg-plist Sun Jun 18 05:51:58 2017 (r443812) @@ -1,3 +1,3 @@ -%%PERL5_MAN3%%/Petal::Mail.3.gz %%SITE_PERL%%/Petal/Mail.pm %%SITE_PERL%%/Petal/fake_sendmail.pl +%%PERL5_MAN3%%/Petal::Mail.3.gz From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CF8FD89D62; Sun, 18 Jun 2017 05:52:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF03B84E36; Sun, 18 Jun 2017 05:52:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5q3YT073567; Sun, 18 Jun 2017 05:52:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5q33O073549; Sun, 18 Jun 2017 05:52:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5q33O073549@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443813 - head/textproc/p5-RDF-Trine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:05 -0000 Author: sunpoet Date: Sun Jun 18 05:52:03 2017 New Revision: 443813 URL: https://svnweb.freebsd.org/changeset/ports/443813 Log: Remove Perl core modules - Bump PORTREVISION for dependency change With hat: perl Modified: head/textproc/p5-RDF-Trine/Makefile Modified: head/textproc/p5-RDF-Trine/Makefile ============================================================================== --- head/textproc/p5-RDF-Trine/Makefile Sun Jun 18 05:51:58 2017 (r443812) +++ head/textproc/p5-RDF-Trine/Makefile Sun Jun 18 05:52:03 2017 (r443813) @@ -3,7 +3,7 @@ PORTNAME= RDF-Trine PORTVERSION= 1.015 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -20,18 +20,14 @@ BUILD_DEPENDS= p5-Algorithm-Combinatorics>=0:math/p5-A p5-DBI>=0:databases/p5-DBI \ p5-DBIx-Connector>=0:databases/p5-DBIx-Connector \ p5-Data-UUID>=0:devel/p5-Data-UUID \ - p5-Digest-MD5>=0:security/p5-Digest-MD5 \ - p5-Digest-SHA>=0:security/p5-Digest-SHA \ p5-Error>=0:lang/p5-Error \ p5-HTTP-Negotiate>=0:www/p5-HTTP-Negotiate \ p5-JSON>=2.0:converters/p5-JSON \ p5-List-MoreUtils>=0.413:lang/p5-List-MoreUtils \ p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \ - p5-Module-Load-Conditional>=0.38:devel/p5-Module-Load-Conditional \ p5-Moose>=0:devel/p5-Moose \ p5-MooseX-ArrayRef>=0:devel/p5-MooseX-ArrayRef \ p5-Set-Scalar>=0:devel/p5-Set-Scalar \ - p5-Storable>=0:devel/p5-Storable \ p5-Text-CSV>=0:textproc/p5-Text-CSV \ p5-Text-Table>=0:textproc/p5-Text-Table \ p5-URI>=1.30:net/p5-URI \ From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A406D89D9D; Sun, 18 Jun 2017 05:52:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1221B84EA6; Sun, 18 Jun 2017 05:52:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5q9O1074755; Sun, 18 Jun 2017 05:52:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5q8TU074753; Sun, 18 Jun 2017 05:52:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5q8TU074753@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443814 - head/www/p5-HTTP-Response-Encoding X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:10 -0000 Author: sunpoet Date: Sun Jun 18 05:52:08 2017 New Revision: 443814 URL: https://svnweb.freebsd.org/changeset/ports/443814 Log: Remove Perl core modules - Add LICENSE - Add NO_ARCH - Sort PLIST - Bump PORTREVISION for dependency change Modified: head/www/p5-HTTP-Response-Encoding/Makefile head/www/p5-HTTP-Response-Encoding/pkg-plist Modified: head/www/p5-HTTP-Response-Encoding/Makefile ============================================================================== --- head/www/p5-HTTP-Response-Encoding/Makefile Sun Jun 18 05:52:03 2017 (r443813) +++ head/www/p5-HTTP-Response-Encoding/Makefile Sun Jun 18 05:52:08 2017 (r443814) @@ -3,7 +3,7 @@ PORTNAME= HTTP-Response-Encoding PORTVERSION= 0.06 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,11 +11,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Adds encoding() to HTTP::Response +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ - p5-HTTP-Message>=0:www/p5-HTTP-Message \ - p5-Encode>=2.0:converters/p5-Encode + p5-HTTP-Message>=0:www/p5-HTTP-Message RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/www/p5-HTTP-Response-Encoding/pkg-plist ============================================================================== --- head/www/p5-HTTP-Response-Encoding/pkg-plist Sun Jun 18 05:52:03 2017 (r443813) +++ head/www/p5-HTTP-Response-Encoding/pkg-plist Sun Jun 18 05:52:08 2017 (r443814) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/HTTP::Response::Encoding.3.gz %%SITE_PERL%%/HTTP/Response/Encoding.pm +%%PERL5_MAN3%%/HTTP::Response::Encoding.3.gz From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59DD9D89DCC; Sun, 18 Jun 2017 05:52:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28A7184F1C; Sun, 18 Jun 2017 05:52:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5qEBU074859; Sun, 18 Jun 2017 05:52:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5qEDQ074858; Sun, 18 Jun 2017 05:52:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5qEDQ074858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443815 - head/www/p5-VUser-Google-ProvisioningAPI X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:15 -0000 Author: sunpoet Date: Sun Jun 18 05:52:13 2017 New Revision: 443815 URL: https://svnweb.freebsd.org/changeset/ports/443815 Log: Remove Perl core modules - While I'm here: - Add LICENSE - Add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/www/p5-VUser-Google-ProvisioningAPI/Makefile Modified: head/www/p5-VUser-Google-ProvisioningAPI/Makefile ============================================================================== --- head/www/p5-VUser-Google-ProvisioningAPI/Makefile Sun Jun 18 05:52:08 2017 (r443814) +++ head/www/p5-VUser-Google-ProvisioningAPI/Makefile Sun Jun 18 05:52:13 2017 (r443815) @@ -3,7 +3,7 @@ PORTNAME= VUser-Google-ProvisioningAPI PORTVERSION= 0.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RSMITH/vuser @@ -12,10 +12,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= tota@FreeBSD.org COMMENT= Perl module that implements the Google Provisioning API +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-libwww>=0:www/p5-libwww \ - p5-Encode>=0:converters/p5-Encode \ p5-XML-Simple>=0:textproc/p5-XML-Simple +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77403D89E01; Sun, 18 Jun 2017 05:52:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 477A884F9F; Sun, 18 Jun 2017 05:52:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5qJRU075822; Sun, 18 Jun 2017 05:52:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5qJe7075820; Sun, 18 Jun 2017 05:52:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5qJe7075820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443816 - head/www/rt42 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:20 -0000 Author: sunpoet Date: Sun Jun 18 05:52:19 2017 New Revision: 443816 URL: https://svnweb.freebsd.org/changeset/ports/443816 Log: Remove Perl core modules - Bump PORTREVISION for dependency change With hat: perl Modified: head/www/rt42/Makefile head/www/rt42/Makefile.cpan Modified: head/www/rt42/Makefile ============================================================================== --- head/www/rt42/Makefile Sun Jun 18 05:52:13 2017 (r443815) +++ head/www/rt42/Makefile Sun Jun 18 05:52:19 2017 (r443816) @@ -2,7 +2,7 @@ PORTNAME= rt DISTVERSION= 4.2.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 42 Modified: head/www/rt42/Makefile.cpan ============================================================================== --- head/www/rt42/Makefile.cpan Sun Jun 18 05:52:13 2017 (r443815) +++ head/www/rt42/Makefile.cpan Sun Jun 18 05:52:19 2017 (r443816) @@ -94,7 +94,6 @@ CORE_DEPS= p5-Apache-Session>=1.53:www/p5-Apache-Sessi p5-Devel-StackTrace>=1.30:devel/p5-Devel-StackTrace \ p5-Email-Address>=1.897:mail/p5-Email-Address \ p5-Email-Address-List>=0.03:mail/p5-Email-Address-List \ - p5-Encode>=2.64:converters/p5-Encode \ p5-File-ShareDir>0:devel/p5-File-ShareDir \ p5-HTML-FormatExternal>0:textproc/p5-HTML-FormatExternal \ p5-HTML-FormatText-WithLinks-AndTables>0:textproc/p5-HTML-FormatText-WithLinks-AndTables \ From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9075AD89E35; Sun, 18 Jun 2017 05:52:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CC1F75; Sun, 18 Jun 2017 05:52:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5qOHw075948; Sun, 18 Jun 2017 05:52:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5qOuS075946; Sun, 18 Jun 2017 05:52:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5qOuS075946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443817 - head/www/rt44 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:25 -0000 Author: sunpoet Date: Sun Jun 18 05:52:24 2017 New Revision: 443817 URL: https://svnweb.freebsd.org/changeset/ports/443817 Log: Remove Perl core modules - Bump PORTREVISION for dependency change With hat: perl Modified: head/www/rt44/Makefile head/www/rt44/Makefile.cpan Modified: head/www/rt44/Makefile ============================================================================== --- head/www/rt44/Makefile Sun Jun 18 05:52:19 2017 (r443816) +++ head/www/rt44/Makefile Sun Jun 18 05:52:24 2017 (r443817) @@ -2,7 +2,7 @@ PORTNAME= rt DISTVERSION= 4.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 44 Modified: head/www/rt44/Makefile.cpan ============================================================================== --- head/www/rt44/Makefile.cpan Sun Jun 18 05:52:19 2017 (r443816) +++ head/www/rt44/Makefile.cpan Sun Jun 18 05:52:24 2017 (r443817) @@ -111,7 +111,6 @@ CORE_DEPS= p5-Apache-Session>=1.53:www/p5-Apache-Sessi p5-Devel-StackTrace>=1.30:devel/p5-Devel-StackTrace \ p5-Email-Address>=1.897:mail/p5-Email-Address \ p5-Email-Address-List>=0.03:mail/p5-Email-Address-List \ - p5-Encode>=2.64:converters/p5-Encode \ p5-File-ShareDir>0:devel/p5-File-ShareDir \ p5-HTML-FormatText-WithLinks-AndTables>0:textproc/p5-HTML-FormatText-WithLinks-AndTables \ p5-HTML-FormatText-WithLinks>=0.14:textproc/p5-HTML-FormatText-WithLinks \ @@ -138,7 +137,6 @@ CORE_DEPS= p5-Apache-Session>=1.53:www/p5-Apache-Sessi p5-Net-CIDR>0:net-mgmt/p5-Net-CIDR \ p5-Net-IP>=0:net-mgmt/p5-Net-IP \ p5-Plack>=1.0002:www/p5-Plack \ - p5-Pod-Parser>=0:textproc/p5-Pod-Parser \ p5-Starlet>0:www/p5-Starlet \ p5-Regexp-Common-net-CIDR>0:textproc/p5-Regexp-Common-net-CIDR \ p5-Regexp-Common>0:textproc/p5-Regexp-Common \ From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 979F7D89E5F; Sun, 18 Jun 2017 05:52:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5EA02E7; Sun, 18 Jun 2017 05:52:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5qTFf076069; Sun, 18 Jun 2017 05:52:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5qTjd076067; Sun, 18 Jun 2017 05:52:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5qTjd076067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443818 - head/www/py-selenium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:30 -0000 Author: sunpoet Date: Sun Jun 18 05:52:29 2017 New Revision: 443818 URL: https://svnweb.freebsd.org/changeset/ports/443818 Log: Update to 3.4.3 Changes: https://github.com/SeleniumHQ/selenium/blob/master/py/CHANGES PR: 220090 Submitted by: Douglas Thrift (maintainer) Modified: head/www/py-selenium/Makefile head/www/py-selenium/distinfo Modified: head/www/py-selenium/Makefile ============================================================================== --- head/www/py-selenium/Makefile Sun Jun 18 05:52:24 2017 (r443817) +++ head/www/py-selenium/Makefile Sun Jun 18 05:52:29 2017 (r443818) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= selenium -PORTVERSION= 3.4.1 +PORTVERSION= 3.4.3 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +14,7 @@ LICENSE= APACHE20 USES= python USE_PYTHON= autoplist distutils +NO_ARCH= yes OPTIONS_DEFINE= FIREFOX FIREFOX_DESC= Install Firefox @@ -22,7 +23,7 @@ FIREFOX_USES= gecko:firefox # Don't install binary Firefox extension post-extract: - @${RM} ${WRKSRC}/py/selenium/webdriver/firefox/amd64/x_ignore_nofocus.so - @${RM} ${WRKSRC}/py/selenium/webdriver/firefox/x86/x_ignore_nofocus.so + @${RM} ${WRKSRC}/selenium/webdriver/firefox/amd64/x_ignore_nofocus.so + @${RM} ${WRKSRC}/selenium/webdriver/firefox/x86/x_ignore_nofocus.so .include Modified: head/www/py-selenium/distinfo ============================================================================== --- head/www/py-selenium/distinfo Sun Jun 18 05:52:24 2017 (r443817) +++ head/www/py-selenium/distinfo Sun Jun 18 05:52:29 2017 (r443818) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493506473 -SHA256 (selenium-3.4.1.tar.gz) = ea10cb739d3d2c27dfdd5ed60cdc28a36e6bafb7b6021ac7acd01dfc4aef005b -SIZE (selenium-3.4.1.tar.gz) = 838624 +TIMESTAMP = 1497753256 +SHA256 (selenium-3.4.3.tar.gz) = 0c09f437f4f6754c0543d79bae4e58b8fd40b3d7cd10889eca66dd1c7af24c63 +SIZE (selenium-3.4.3.tar.gz) = 838781 From owner-svn-ports-head@freebsd.org Sun Jun 18 05:52:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8ECF5D89E8C; Sun, 18 Jun 2017 05:52:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5EB2F169; Sun, 18 Jun 2017 05:52:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5I5qYVB076205; Sun, 18 Jun 2017 05:52:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I5qYeX076203; Sun, 18 Jun 2017 05:52:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706180552.v5I5qYeX076203@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 05:52:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443819 - head/security/py-keyring X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 05:52:35 -0000 Author: sunpoet Date: Sun Jun 18 05:52:34 2017 New Revision: 443819 URL: https://svnweb.freebsd.org/changeset/ports/443819 Log: Update to 10.3.3 Changes: https://github.com/jaraco/keyring/blob/master/CHANGES.rst PR: 220091 Submitted by: Douglas Thrift (maintainer) Modified: head/security/py-keyring/Makefile head/security/py-keyring/distinfo Modified: head/security/py-keyring/Makefile ============================================================================== --- head/security/py-keyring/Makefile Sun Jun 18 05:52:29 2017 (r443818) +++ head/security/py-keyring/Makefile Sun Jun 18 05:52:34 2017 (r443819) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= keyring -PORTVERSION= 10.3.2 +PORTVERSION= 10.3.3 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/security/py-keyring/distinfo ============================================================================== --- head/security/py-keyring/distinfo Sun Jun 18 05:52:29 2017 (r443818) +++ head/security/py-keyring/distinfo Sun Jun 18 05:52:34 2017 (r443819) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493264191 -SHA256 (keyring-10.3.2.tar.gz) = f462698bc8b96ef5f9fb31d392611f416c808a8244d679fb02530b72bab01ad6 -SIZE (keyring-10.3.2.tar.gz) = 39244 +TIMESTAMP = 1497753494 +SHA256 (keyring-10.3.3.tar.gz) = 86a7db0ed1026853d1235f4901efbcaafdba52357f2a0b0347ec1adbdc9b9026 +SIZE (keyring-10.3.3.tar.gz) = 39531 From owner-svn-ports-head@freebsd.org Sun Jun 18 06:03:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7877ED8A077; Sun, 18 Jun 2017 06:03:31 +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 513A81094; Sun, 18 Jun 2017 06:03:31 +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 v5I63Ug0080441; Sun, 18 Jun 2017 06:03:30 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I63Ulj080437; Sun, 18 Jun 2017 06:03:30 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706180603.v5I63Ulj080437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 18 Jun 2017 06:03:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443820 - in head/science/vmd: . 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, 18 Jun 2017 06:03:31 -0000 Author: dbn Date: Sun Jun 18 06:03:29 2017 New Revision: 443820 URL: https://svnweb.freebsd.org/changeset/ports/443820 Log: science/vmd: various fixes - fix spelling of VMD license [1] - use USES=tcl,tk instead of direct dependency - patch vmd to support (tcl|tk)86 - fix shebang for tcl [1] - fix detection of netcdf - add sqlite as a dependency (for dmsplugin) [1] - add expact as a dependency (for hoomdplugin) - rework configuration: - explicitly list required components (CONFIGURE_ARGS) - call configure directly (instead of via gmake(1)) - patch configure to accept TCLLDFLAGS and TKLDFLAGS - pass PREFIX as an environment variable instead of using sed(1) - patch Make-arch to accept environment TCLLDFLAGS and NETCDFLDFLAGS - add support for parallel building (except for building plugins) - bump PORTREVISION PR: 219642 Reported by: Yuri Victorovich Modified: head/science/vmd/Makefile head/science/vmd/files/patch-Make-arch head/science/vmd/files/patch-configure head/science/vmd/pkg-plist Modified: head/science/vmd/Makefile ============================================================================== --- head/science/vmd/Makefile Sun Jun 18 05:52:34 2017 (r443819) +++ head/science/vmd/Makefile Sun Jun 18 06:03:29 2017 (r443820) @@ -3,7 +3,7 @@ PORTNAME= vmd DISTVERSION= 1.9.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= science graphics python tcl tk MASTER_SITES= http://jedi.ks.uiuc.edu/~johns/raytracer/files/0.99b6/:tachyon \ http://www.photonlimited.com/~johns/tachyon/files/0.99b6/:tachyon \ @@ -21,15 +21,14 @@ LICENSE_COMB= multi BUILD_DEPENDS= makedepend:devel/makedepend \ ${PYNUMPY} -LIB_DEPENDS= libtcl85.so:lang/tcl85 \ - libtk85.so:x11-toolkits/tk85 \ +LIB_DEPENDS= libexpat.so:textproc/expat2 \ libfltk.so:x11-toolkits/fltk \ libnetcdf.so:science/netcdf RUN_DEPENDS= ${PYNUMPY} LICENSE_FILE_VMD= ${WRKSRC}/LICENSE LICENSE_PERMS_VMD= auto-accept -LICENSE_NAME_VMD= Visaul Molecular Dynamics Software License Agreement +LICENSE_NAME_VMD= Visual Molecular Dynamics Software License Agreement LICENSE_DISTFILES_VMD= ${VMD_DIST} LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/lib/tachyon/Copyright @@ -40,8 +39,10 @@ LICENSE_PERMS_STRIDE= dist-mirror pkg-mirror auto-acce LICENSE_NAME_STRIDE= Stride Copyright Notice LICENSE_DISTFILES_STRIDE=${STRIDE_DIST} -USES= gmake perl5 python +USES= gmake perl5 python shebangfix sqlite tcl tk +SHEBANG_FILES= ${WRKDIR}/plugins/topotools/*.tcl + USE_PERL5= build USE_GL= gl glu USE_XORG= x11 @@ -51,8 +52,28 @@ ONLY_FOR_ARCHS= i386 amd64 CONFIGURE_ENV= PYTHON_INCLUDE_DIR=${PYTHON_INCLUDEDIR} \ PYTHON_LIBRARY_DIR=${PYTHON_LIBDIR} \ NUMPY_INCLUDE_DIR=${PYTHON_SITELIBDIR}/numpy/core/include \ - NUMPY_LIBRARY_DIR=${PYTHON_SITELIBDIR} + NUMPY_LIBRARY_DIR=${PYTHON_SITELIBDIR} \ + TCL_INCLUDE_DIR=${TCL_INCLUDEDIR} \ + TCL_LIBRARY_DIR=${LOCALBASE}/lib \ + TK_INCLUDE_DIR=${TK_INCLUDEDIR} \ + TK_LIBRARY_DIR=${LOCALBASE}/lib +CONFIGURE_ARGS= ${VMD_ARCH} OPENGL FLTK TK IMD TCL PTHREADS LIBTACHYON NETCDF NUMPY PYTHON INSTALL_WRKSRC= ${WRKSRC}/src +MAKE_ENV= EXPATINC=-I${LOCALBASE}/include \ + EXPATLIB=-L${LOCALBASE}/lib \ + EXPATLDFLAGS=-lexpat \ + EXPATDYNAMIC=1 \ + NETCDFINC=-I${LOCALBASE}/include \ + NETCDFLIB=-L${LOCALBASE}/lib \ + NETCDFLDFLAGS=-lnetcdf \ + SQLITEINC=-I${LOCALBASE}/include \ + SQLITELIB=-L${LOCALBASE}/lib \ + SQLITELDFLAGS=-lsqlite3 \ + SQLITEDYNAMIC=1 \ + TCLLIB=-L${LOCALBASE}/lib \ + TCLINC=-I${TCL_INCLUDEDIR} \ + TCLLDFLAGS=-ltcl${TCL_VER:S/.//} \ + TKLDFLAGS="-ltk${TK_VER:S/.//} -lX11" VMD_DIST= ${PORTNAME}-${DISTVERSION}.src.tar.gz TACHYON_DIST= tachyon-0.99b6.tar.gz @@ -63,10 +84,8 @@ STRIDE_DOC= stride.doc .if ${ARCH} == "amd64" VMD_ARCH= FREEBSDAMD64 -VMD_TARGET= freebsd.amd64.opengl .else VMD_ARCH= FREEBSD -VMD_TARGET= freebsd.opengl .endif PLIST_SUB+= VMD_ARCH=${VMD_ARCH} @@ -89,15 +108,11 @@ do-extract: post-patch: ${REINPLACE_CMD} \ - -e "s|-ltk8.5|-ltk85|" \ - -e "s|-ltcl8.5|-ltcl85|" \ -e "s|-lpython2.5|-l${PYTHON_VERSION}${PYTHON_ABIVER}|" \ - -e "s|%%PREFIX%%|${PREFIX}|g" \ -e "s|/usr/local|${LOCALBASE}|g" \ -e "s|-fno-for-scope||g" \ + -e "s/\"gcc\"/\"${CC}\"/;s/\"g++\"/\"${CXX}\"/" \ ${WRKSRC}/configure - ${REINPLACE_CMD} "s/\"gcc\"/\"${CC}\"/;s/\"g++\"/\"${CXX}\"/" \ - ${WRKSRC}/configure ${REINPLACE_CMD} -e "s/.SILENT:/#.SILENT:/" ${WRKDIR}/plugins/Makefile ${REINPLACE_CMD} "s/.SILENT:/#.SILENT:/" ${WRKDIR}/plugins/*/Makefile ${REINPLACE_CMD} "s%log2f(\([^ ,]*\))%logf(\1)/(float)M_LN2%g" \ @@ -122,24 +137,16 @@ post-patch: ${WRKSRC}/lib/surf/*.c do-build: - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} bsd -C ${WRKSRC}/lib/tachyon/unix \ - && ${MV} ${WRKSRC}/lib/tachyon/compile/bsd/tachyon \ - ${WRKSRC}/lib/tachyon/tachyon_${VMD_ARCH} - ${SETENV} ${MAKE_ENV} TCLLIB=-L${PREFIX}/lib/tcl8.5 \ - TCLINC=-I${PREFIX}/include/tcl8.5 PLUGINDIR=${WRKSRC}/plugins \ - ${MAKE_CMD} ${VMD_ARCH} distrib -C ${WRKDIR}/plugins - ${SETENV} ${MAKE_ENV} TCL_INCLUDE_DIR=${PREFIX}/include/tcl8.5 \ - TK_INCLUDE_DIR=${PREFIX}/include/tk8.5 ${MAKE_CMD} \ - ${VMD_TARGET} -C ${WRKSRC} - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} all -C ${WRKSRC}/src - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} depend -C ${WRKSRC}/lib/surf \ - && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} surf -C \ - ${WRKSRC}/lib/surf \ - && ${MV} ${WRKSRC}/lib/surf/surf \ - ${WRKSRC}/lib/surf/surf_${VMD_ARCH} - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC}/lib/stride \ - && ${MV} ${WRKSRC}/lib/stride/stride \ - ${WRKSRC}/lib/stride/stride_${VMD_ARCH} + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} bsd -C ${WRKSRC}/lib/tachyon/unix + ${MV} ${WRKSRC}/lib/tachyon/compile/bsd/tachyon ${WRKSRC}/lib/tachyon/tachyon_${VMD_ARCH} + ${SETENV} ${MAKE_ENV} PLUGINDIR=${WRKSRC}/plugins ${MAKE_CMD} ${VMD_ARCH} distrib -C ${WRKDIR}/plugins + cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS} + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} all -C ${WRKSRC}/src + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} depend -C ${WRKSRC}/lib/surf + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} surf -C ${WRKSRC}/lib/surf + ${MV} ${WRKSRC}/lib/surf/surf ${WRKSRC}/lib/surf/surf_${VMD_ARCH} + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} -C ${WRKSRC}/lib/stride + ${MV} ${WRKSRC}/lib/stride/stride ${WRKSRC}/lib/stride/stride_${VMD_ARCH} post-install: ${REINPLACE_CMD} -i '' -e 's|${STAGEDIR}||g' ${STAGEDIR}${PREFIX}/bin/vmd Modified: head/science/vmd/files/patch-Make-arch ============================================================================== --- head/science/vmd/files/patch-Make-arch Sun Jun 18 05:52:34 2017 (r443819) +++ head/science/vmd/files/patch-Make-arch Sun Jun 18 06:03:29 2017 (r443820) @@ -1,17 +1,19 @@ ---- ../plugins/Make-arch.orig 2011-03-11 22:38:25.000000000 -0500 -+++ ../plugins/Make-arch 2011-03-12 00:08:41.000000000 -0500 -@@ -277,8 +277,8 @@ +--- ../plugins/Make-arch.orig 2016-10-21 23:34:39.000000000 +0200 ++++ ../plugins/Make-arch +@@ -272,10 +272,8 @@ "CC = gcc" \ "CXX = g++" \ "DEF = -D" \ - "CCFLAGS = -O2 -Wall -I/usr/local/include/tcl8.5" \ - "CXXFLAGS = -O2 -Wall" \ -+ "CCFLAGS = ${CFLAGS} -O2 -Wall -I/usr/local/include/tcl8.5" \ -+ "CXXFLAGS = ${CFLAGS} -O2 -Wall" \ - "TCLLDFLAGS = -L/usr/local/lib -ltcl85" \ - "NETCDFLDFLAGS = -lnetcdf " \ +- "TCLLDFLAGS = -L/usr/local/lib -ltcl85" \ +- "NETCDFLDFLAGS = -lnetcdf " \ ++ "CCFLAGS = ${CFLAGS} -Wall" \ ++ "CXXFLAGS = ${CFLAGS} -Wall" \ "AR = ar" \ -@@ -288,14 +288,14 @@ + "NM = nm -p" \ + "RANLIB = touch" \ +@@ -283,16 +281,14 @@ FREEBSDAMD64: $(MAKE) dynlibs staticlibs bins \ @@ -24,8 +26,10 @@ "DEF = -D" \ - "CCFLAGS = -m64 -O2 -Wall -I/usr/local/include/tcl8.5" \ - "CXXFLAGS = -m64 -O2 -Wall" \ -+ "CCFLAGS = ${CFLAGS} -m64 -O2 -Wall -I/usr/local/include/tcl8.5" \ -+ "CXXFLAGS = ${CFLAGS} -m64 -O2 -Wall" \ - "TCLLDFLAGS = -L/usr/local/lib -ltcl85" \ - "NETCDFLDFLAGS = -lnetcdf " \ +- "TCLLDFLAGS = -L/usr/local/lib -ltcl85" \ +- "NETCDFLDFLAGS = -lnetcdf " \ ++ "CCFLAGS = ${CFLAGS} -Wall" \ ++ "CXXFLAGS = ${CFLAGS} -Wall" \ "AR = ar" \ + "NM = nm -p" \ + "RANLIB = touch" \ Modified: head/science/vmd/files/patch-configure ============================================================================== --- head/science/vmd/files/patch-configure Sun Jun 18 05:52:34 2017 (r443819) +++ head/science/vmd/files/patch-configure Sun Jun 18 06:03:29 2017 (r443820) @@ -5,14 +5,25 @@ # Directory where VMD startup script is installed, should be in users' paths. -$install_bin_dir="/usr/local/bin"; -+$install_bin_dir="\${DESTDIR}%%PREFIX%%/bin"; ++$install_bin_dir="\${DESTDIR}\${PREFIX}/bin"; # Directory where VMD files and executables are installed -$install_library_dir="/usr/local/lib/$install_name"; -+$install_library_dir="\${DESTDIR}%%PREFIX%%/lib/$install_name"; ++$install_library_dir="\${DESTDIR}\${PREFIX}/lib/$install_name"; # optionally override hard-coded defaults above with environment variables +@@ -729,8 +729,8 @@ $tcl_include = "-I$stock_tcl_includ + if ($config_tk) { $tcl_include .= " -I$stock_tk_include_dir"; } + $tcl_library = "-L$stock_tcl_library_dir"; + if ($config_tk) { $tcl_library .= " -L$stock_tk_library_dir"; } +-$tcl_libs = "-ltcl8.5"; +-if ($config_tk) { $tcl_libs = "-ltk8.5 -lX11 " . $tcl_libs; } ++$tcl_libs = "\${TCLLDFLAGS}"; ++if ($config_tk) { $tcl_libs = "\${TKLDFLAGS} " . $tcl_libs; } + + @tcl_cc = (); + @tcl_cu = (); @@ -1105,8 +1105,8 @@ if ($config_liboptix) { # This may be commented out if not required. $libtachyon_defines = "-DVMDLIBTACHYON"; Modified: head/science/vmd/pkg-plist ============================================================================== --- head/science/vmd/pkg-plist Sun Jun 18 05:52:34 2017 (r443819) +++ head/science/vmd/pkg-plist Sun Jun 18 06:03:29 2017 (r443820) @@ -23,6 +23,7 @@ lib/vmd/plugins/%%VMD_ARCH%%/molfile/crdplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/cubeplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/dcdplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/dlpolyplugin.so +lib/vmd/plugins/%%VMD_ARCH%%/molfile/dmsplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/dsn6plugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/dtrplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/dxplugin.so @@ -33,6 +34,7 @@ lib/vmd/plugins/%%VMD_ARCH%%/molfile/graspplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/grdplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/gridplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/gromacsplugin.so +lib/vmd/plugins/%%VMD_ARCH%%/molfile/hoomdplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/jsplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/lammpsplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/libmolfile_plugin.a @@ -45,6 +47,7 @@ lib/vmd/plugins/%%VMD_ARCH%%/molfile/moldenplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/molemeshplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/msmsplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/namdbinplugin.so +lib/vmd/plugins/%%VMD_ARCH%%/molfile/netcdfplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/offplugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/parm7plugin.so lib/vmd/plugins/%%VMD_ARCH%%/molfile/parmplugin.so From owner-svn-ports-head@freebsd.org Sun Jun 18 07:41:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BABEAD8B3EE; Sun, 18 Jun 2017 07:41:04 +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 8AD6B31BF; Sun, 18 Jun 2017 07:41:04 +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 v5I7f39P016998; Sun, 18 Jun 2017 07:41:03 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I7f3F0016997; Sun, 18 Jun 2017 07:41:03 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201706180741.v5I7f3F0016997@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 18 Jun 2017 07:41:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443821 - head/graphics/kdiagram X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 07:41:04 -0000 Author: rakuco Date: Sun Jun 18 07:41:03 2017 New Revision: 443821 URL: https://svnweb.freebsd.org/changeset/ports/443821 Log: Drop PKGNAMESUFFIX. We should just call the package "kdiagram", like the other Calligra ports. Reported by: tcberner Modified: head/graphics/kdiagram/Makefile Modified: head/graphics/kdiagram/Makefile ============================================================================== --- head/graphics/kdiagram/Makefile Sun Jun 18 06:03:29 2017 (r443820) +++ head/graphics/kdiagram/Makefile Sun Jun 18 07:41:03 2017 (r443821) @@ -4,7 +4,6 @@ PORTNAME= kdiagram PORTVERSION= 2.6.0 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src -PKGNAMESUFFIX= -kf5 DIST_SUBDIR= KDE/${PORTNAME} MAINTAINER= kde@FreeBSD.org From owner-svn-ports-head@freebsd.org Sun Jun 18 09:01:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 826BCD8C827; Sun, 18 Jun 2017 09:01: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 52C7664CB1; Sun, 18 Jun 2017 09:01: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 v5I91RBv051298; Sun, 18 Jun 2017 09:01:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5I91Ro5051297; Sun, 18 Jun 2017 09:01:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706180901.v5I91Ro5051297@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 18 Jun 2017 09:01:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443822 - head/x11-clocks/wmblueclock X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 09:01:28 -0000 Author: amdmi3 Date: Sun Jun 18 09:01:27 2017 New Revision: 443822 URL: https://svnweb.freebsd.org/changeset/ports/443822 Log: - Add LICENSE - Unsilence installation commands Modified: head/x11-clocks/wmblueclock/Makefile Modified: head/x11-clocks/wmblueclock/Makefile ============================================================================== --- head/x11-clocks/wmblueclock/Makefile Sun Jun 18 07:41:03 2017 (r443821) +++ head/x11-clocks/wmblueclock/Makefile Sun Jun 18 09:01:27 2017 (r443822) @@ -10,13 +10,16 @@ MASTER_SITES= SUNSITE/X11/xutils MAINTAINER= ports@FreeBSD.org COMMENT= Simple dockable clock application -USES= tar:bzip2 +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= tar:bzip2 USE_XORG= x11 xau xdmcp xext xpm PLIST_FILES= bin/wmblueclock man/man1/${PORTNAME}.1.gz do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include From owner-svn-ports-head@freebsd.org Sun Jun 18 10:10:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B66BDD8DC05; Sun, 18 Jun 2017 10:10:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9297F668B6; Sun, 18 Jun 2017 10:10:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IAA37L077246; Sun, 18 Jun 2017 10:10:03 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IAA3Aa077241; Sun, 18 Jun 2017 10:10:03 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706181010.v5IAA3Aa077241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sun, 18 Jun 2017 10:10:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443823 - in head/sysutils: . rex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 10:10:04 -0000 Author: danfe Date: Sun Jun 18 10:10:03 2017 New Revision: 443823 URL: https://svnweb.freebsd.org/changeset/ports/443823 Log: REX is a remote execution utility that runs a supplied command or shell script on several hosts in succession; it's written in Tcl and provides extensive scripting facilities. WWW: http://puszcza.gnu.org.ua/projects/rex Submitted by: Zeus Panchenko Added: head/sysutils/rex/ head/sysutils/rex/Makefile (contents, props changed) head/sysutils/rex/distinfo (contents, props changed) head/sysutils/rex/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Jun 18 09:01:27 2017 (r443822) +++ head/sysutils/Makefile Sun Jun 18 10:10:03 2017 (r443823) @@ -663,12 +663,12 @@ SUBDIR += namefix SUBDIR += nbosd SUBDIR += ncdu + SUBDIR += ndmpd SUBDIR += nepomuk-core SUBDIR += nepomuk-widgets SUBDIR += nfcutils SUBDIR += nfsping SUBDIR += nitrogen - SUBDIR += ndmpd SUBDIR += no-login SUBDIR += node_exporter SUBDIR += nomad @@ -942,6 +942,7 @@ SUBDIR += respond SUBDIR += restic SUBDIR += retail + SUBDIR += rex SUBDIR += rfstool SUBDIR += rhc SUBDIR += riak-cs Added: head/sysutils/rex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rex/Makefile Sun Jun 18 10:10:03 2017 (r443823) @@ -0,0 +1,25 @@ +# Created by: Zeus Panchenko +# $FreeBSD$ + +PORTNAME= rex +PORTVERSION= 4.0 +CATEGORIES= sysutils tcl +MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ + +MAINTAINER= zeus@gnu.org.ua +COMMENT= Remote EXecution utility + +LICENSE= GPLv3+ + +RUN_DEPENDS= expect:lang/expect + +NO_BUILD= yes + +PLIST_FILES= bin/rex man/man8/rex.8.gz + +do-install: + cd ${WRKSRC} && ${WRKSRC}/install --prefix=${STAGEDIR}${PREFIX} \ + --sysconfdir=${PREFIX}/etc \ + --mandir=${STAGEDIR}${MANPREFIX}/man + +.include Added: head/sysutils/rex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rex/distinfo Sun Jun 18 10:10:03 2017 (r443823) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475321371 +SHA256 (rex-4.0.tar.gz) = 52436b38e3f2ea8f780b24d80663ae4730b38da9c9b6bf546cdbc920cc0d05e8 +SIZE (rex-4.0.tar.gz) = 55222 Added: head/sysutils/rex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rex/pkg-descr Sun Jun 18 10:10:03 2017 (r443823) @@ -0,0 +1,8 @@ +REX is a remote execution utility that runs a supplied command or shell +script on several hosts in succession. It is also able to copy a file +(or files) to several hosts. + +Rex is written in Tcl and provides extensive scripting facilities. It +provides a convenient way to administrate multiple servers. + +WWW: http://puszcza.gnu.org.ua/projects/rex From owner-svn-ports-head@freebsd.org Sun Jun 18 10:12:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6E37D8DD9E; Sun, 18 Jun 2017 10:12:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 814B766BC3; Sun, 18 Jun 2017 10:12:04 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IAC3j2080231; Sun, 18 Jun 2017 10:12:03 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IAC3IP080228; Sun, 18 Jun 2017 10:12:03 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706181012.v5IAC3IP080228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sun, 18 Jun 2017 10:12:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443824 - head/mail/mailutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 10:12:04 -0000 Author: danfe Date: Sun Jun 18 10:12:03 2017 New Revision: 443824 URL: https://svnweb.freebsd.org/changeset/ports/443824 Log: Update `mail/mailutils' to version 3.2.91-29 As the port serves alpha version now, reorder MASTER_SITES Requested by: maintainer Modified: head/mail/mailutils/Makefile head/mail/mailutils/distinfo head/mail/mailutils/pkg-plist Modified: head/mail/mailutils/Makefile ============================================================================== --- head/mail/mailutils/Makefile Sun Jun 18 10:10:03 2017 (r443823) +++ head/mail/mailutils/Makefile Sun Jun 18 10:12:03 2017 (r443824) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= mailutils -PORTVERSION= 3.2.91 +DISTVERSION= 3.2.91-29 CATEGORIES= mail -MASTER_SITES= GNU GNU_ALPHA +MASTER_SITES= GNU_ALPHA GNU MAINTAINER= zeus@gnu.org.ua COMMENT= Utilities, daemons, and filters for processing e-mail @@ -19,7 +19,7 @@ USE_LDCONFIG= yes USE_RC_SUBR= comsatd imap4d pop3d INSTALL_TARGET= install-strip -PLIST_SUB+= LIBVERSION=5.0.2 +PLIST_SUB+= LIBVERSION=5.0.3 INFO= ${PORTNAME} PORTDOCS= AUTHORS ChangeLog NEWS README* THANKS TODO Modified: head/mail/mailutils/distinfo ============================================================================== --- head/mail/mailutils/distinfo Sun Jun 18 10:10:03 2017 (r443823) +++ head/mail/mailutils/distinfo Sun Jun 18 10:12:03 2017 (r443824) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491762493 -SHA256 (mailutils-3.2.91.tar.xz) = 68db9e0b5b935a9f0c1b56914bca5a153512274449bcc138b81769c0290f6c3f -SIZE (mailutils-3.2.91.tar.xz) = 2787364 +TIMESTAMP = 1497538125 +SHA256 (mailutils-3.2.91-29.tar.xz) = eb34d1b05c93202a03c85fd8feed66739987be887ec7205cc09efd347d391f03 +SIZE (mailutils-3.2.91-29.tar.xz) = 2602028 Modified: head/mail/mailutils/pkg-plist ============================================================================== --- head/mail/mailutils/pkg-plist Sun Jun 18 10:10:03 2017 (r443823) +++ head/mail/mailutils/pkg-plist Sun Jun 18 10:12:03 2017 (r443824) @@ -25,7 +25,9 @@ bin/movemail %%MH%%bin/mu-mh/mhpath %%MH%%bin/mu-mh/mhseq %%MH%%bin/mu-mh/msgchk +%%MH%%bin/mu-mh/next %%MH%%bin/mu-mh/pick +%%MH%%bin/mu-mh/prev %%MH%%bin/mu-mh/prompter %%MH%%bin/mu-mh/refile %%MH%%bin/mu-mh/repl @@ -302,6 +304,21 @@ lib/mailutils/vacation.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/mailutils/util.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/mailutils/util.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/mailutils/util.pyo +libexec/mailutils/mailutils-acl +libexec/mailutils/mailutils-cflags +libexec/mailutils/mailutils-dbm +libexec/mailutils/mailutils-filter +libexec/mailutils/mailutils-flt2047 +libexec/mailutils/mailutils-imap +libexec/mailutils/mailutils-info +libexec/mailutils/mailutils-ldflags +libexec/mailutils/mailutils-logger +libexec/mailutils/mailutils-pop +libexec/mailutils/mailutils-query +libexec/mailutils/mailutils-send +libexec/mailutils/mailutils-smtp +libexec/mailutils/mailutils-stat +libexec/mailutils/mailutils-wicket man/man1/imap4d.1.gz man/man1/mail.1.gz man/man1/pop3d.1.gz From owner-svn-ports-head@freebsd.org Sun Jun 18 11:01:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0591DD8E51F; Sun, 18 Jun 2017 11:01: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 D2A9F6787C; Sun, 18 Jun 2017 11:01:36 +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 v5IB1a5p001240; Sun, 18 Jun 2017 11:01:36 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IB1Zav001236; Sun, 18 Jun 2017 11:01:35 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201706181101.v5IB1Zav001236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Sun, 18 Jun 2017 11:01:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443825 - in head/sysutils/gsmartcontrol: . 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, 18 Jun 2017 11:01:37 -0000 Author: pawel Date: Sun Jun 18 11:01:35 2017 New Revision: 443825 URL: https://svnweb.freebsd.org/changeset/ports/443825 Log: - Update to version 1.0.0 - Add LICENSE information, don't install license files, let them be handled by our licensing framework - ADD RUN_DEPENDS on gnomesu which is needed for gaining superuser privileges required by the program at start Changelog: Version 1.0.0 Ported to GTK+ 3. Version 0.9.0, released on 2017-05-11 Implemented (untested) support for Linux-based Areca controllers with enclosures. Implemented (untested) support for Windows-based Areca controllers (thanks to Richard Kagerer). Implemented (untested) support for Linux-based HP controllers with cciss and hpsa/hpahcisr drivers (thanks to Fabrice Bacchella). Changes in Preferences no longer fail silently until rescan/restart. Better drive detection under Windows after removable drives are detached. Windows version is no longer marked as "dpi aware" since it's not supported that well. Drive attribute descriptions have been updated (including clarifications for SSDs). Added support for SSD-only and HDD-only vendor attributes. Devices having only basic info can be displayed now in the info window. Fixed BDRW drive detection (it was detected as a HDD). Other minor improvements. A number of issues have been fixed (including a crash). Added: head/sysutils/gsmartcontrol/files/ head/sysutils/gsmartcontrol/files/patch-Makefile.in (contents, props changed) Modified: head/sysutils/gsmartcontrol/Makefile head/sysutils/gsmartcontrol/distinfo head/sysutils/gsmartcontrol/pkg-plist Modified: head/sysutils/gsmartcontrol/Makefile ============================================================================== --- head/sysutils/gsmartcontrol/Makefile Sun Jun 18 10:12:03 2017 (r443824) +++ head/sysutils/gsmartcontrol/Makefile Sun Jun 18 11:01:35 2017 (r443825) @@ -2,20 +2,30 @@ # $FreeBSD$ PORTNAME= gsmartcontrol -PORTVERSION= 0.8.7 -PORTREVISION= 5 +PORTVERSION= 1.0.0 CATEGORIES= sysutils -MASTER_SITES= http://artificialtime.com/${PORTNAME}/ +MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} MAINTAINER= pawel@FreeBSD.org COMMENT= Graphical user interface for smartmontools -LIB_DEPENDS= libgtkmm-2.4.so:x11-toolkits/gtkmm24 +LICENSE= BSD3CLAUSE BSL GPLv2 GPLv3 PD ZLIB +LICENSE_COMB= multi +LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/LICENSE_bsd-ac.txt +LICENSE_FILE_BSL= ${WRKSRC}/LICENSE_boost_1_0.txt +LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE_gpl2.txt +LICENSE_FILE_GPLv3= ${WRKSRC}/LICENSE_gpl3.txt +LICENSE_FILE_PD= ${WRKSRC}/LICENSE_unlicense.txt +LICENSE_FILE_ZLIB= ${WRKSRC}/LICENSE_zlib.txt + +LIB_DEPENDS= libpcre.so:devel/pcre RUN_DEPENDS= bash:shells/bash \ + gnomesu:security/libgnomesu \ smartctl:sysutils/smartmontools -USES= compiler:c++11-lang pkgconfig tar:bzip2 libtool +USES= compiler:c++11-lang libtool pkgconfig tar:bzip2 USE_CXXSTD= c++11 +USE_GNOME= atkmm cairo glibmm gtk30 gtkmm30 libsigc++20 pangomm INSTALLS_ICONS= yes GNU_CONFIGURE= yes Modified: head/sysutils/gsmartcontrol/distinfo ============================================================================== --- head/sysutils/gsmartcontrol/distinfo Sun Jun 18 10:12:03 2017 (r443824) +++ head/sysutils/gsmartcontrol/distinfo Sun Jun 18 11:01:35 2017 (r443825) @@ -1,2 +1,3 @@ -SHA256 (gsmartcontrol-0.8.7.tar.bz2) = 708fa803243abb852ed52050fc82cd3592a798c02743342441996e77f19ffec6 -SIZE (gsmartcontrol-0.8.7.tar.bz2) = 684394 +TIMESTAMP = 1497639656 +SHA256 (gsmartcontrol-1.0.0.tar.bz2) = 7ce35c52260084fa0ac4c7c9011bf231b459af157247f52d0c56aa0e90df947b +SIZE (gsmartcontrol-1.0.0.tar.bz2) = 691419 Added: head/sysutils/gsmartcontrol/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/gsmartcontrol/files/patch-Makefile.in Sun Jun 18 11:01:35 2017 (r443825) @@ -0,0 +1,30 @@ +--- Makefile.in.orig 2017-06-15 21:00:10 UTC ++++ Makefile.in +@@ -84,7 +84,7 @@ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile + $(top_srcdir)/configure $(am__configure_deps) \ + $(srcdir)/config.h.in $(srcdir)/gsmartcontrol.spec.in \ + $(srcdir)/version.in $(srcdir)/compilation_flags.in \ +- $(dist_doc_DATA) $(nobase_dist_doc_DATA) COPYING ChangeLog \ ++ $(dist_doc_DATA) $(nobase_dist_doc_DATA) ChangeLog \ + INSTALL NEWS TODO ar-lib config.guess config.sub depcomp \ + install-sh missing + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +@@ -375,17 +375,7 @@ noinst_DATA = AUTHORS.txt LICENSE_gsmartcontrol.txt RE + # These will be installed into docdir. + # Some of these files are actually needed for compilation (see src/res/Makefile.am). + dist_doc_DATA = AUTHORS.txt ChangeLog NEWS README.txt \ +- LICENSE_boost_1_0.txt \ +- LICENSE_bsd-ac.txt \ +- LICENSE_bsd-ucb.txt \ +- LICENSE_gpl2.txt \ +- LICENSE_gpl3.txt \ +- LICENSE_gsmartcontrol.txt \ +- LICENSE_hz.txt \ +- LICENSE_pcrecpp.txt \ +- LICENSE_unlicense.txt \ +- LICENSE_zlib.txt +- ++ LICENSE_gsmartcontrol.txt + + # nobase_ preserves their directory names. + nobase_dist_doc_DATA = contrib/cron-based_noadmin/README \ Modified: head/sysutils/gsmartcontrol/pkg-plist ============================================================================== --- head/sysutils/gsmartcontrol/pkg-plist Sun Jun 18 10:12:03 2017 (r443824) +++ head/sysutils/gsmartcontrol/pkg-plist Sun Jun 18 11:01:35 2017 (r443825) @@ -1,20 +1,11 @@ bin/gsmartcontrol bin/gsmartcontrol-root -man/man1/gsmartcontrol.1.gz man/man1/gsmartcontrol-root.1.gz +man/man1/gsmartcontrol.1.gz share/applications/gsmartcontrol.desktop %%PORTDOCS%%%%DOCSDIR%%/AUTHORS.txt %%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_boost_1_0.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_bsd-ac.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_bsd-ucb.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_gpl2.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_gpl3.txt %%PORTDOCS%%%%DOCSDIR%%/LICENSE_gsmartcontrol.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_hz.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_pcrecpp.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_unlicense.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE_zlib.txt %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/contrib/cron-based_noadmin/README @@ -31,5 +22,6 @@ share/icons/hicolor/256x256/apps/gsmartcontrol.png share/icons/hicolor/32x32/apps/gsmartcontrol.png share/icons/hicolor/48x48/apps/gsmartcontrol.png share/icons/hicolor/64x64/apps/gsmartcontrol.png +share/metainfo/gsmartcontrol.appdata.xml share/pixmaps/gsmartcontrol.png share/pixmaps/gsmartcontrol.xpm From owner-svn-ports-head@freebsd.org Sun Jun 18 12:20:02 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77C9DD90359; Sun, 18 Jun 2017 12:20:02 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 44EE66E07C; Sun, 18 Jun 2017 12:20:02 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5ICK1Rm030096; Sun, 18 Jun 2017 12:20:01 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5ICK11h030095; Sun, 18 Jun 2017 12:20:01 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201706181220.v5ICK11h030095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dumbbell set sender to dumbbell@FreeBSD.org using -f From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= Date: Sun, 18 Jun 2017 12:20:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443826 - head/lang/rust X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 12:20:02 -0000 Author: dumbbell Date: Sun Jun 18 12:20:01 2017 New Revision: 443826 URL: https://svnweb.freebsd.org/changeset/ports/443826 Log: lang/rust: Fix value of ${CARGO_BOOTSTRAP_DIR_aarch64} It was pointing to the wrong directory. Reported by: jbeich@ Modified: head/lang/rust/Makefile Modified: head/lang/rust/Makefile ============================================================================== --- head/lang/rust/Makefile Sun Jun 18 11:01:35 2017 (r443825) +++ head/lang/rust/Makefile Sun Jun 18 12:20:01 2017 (r443826) @@ -54,7 +54,7 @@ RUSTC_BOOTSTRAP= ${RUST_BOOTSTRAP_DIR_${ARCH}:U${RUST RUST_STD_BOOTSTRAP= ${RUST_BOOTSTRAP_DIR_${ARCH}:U${RUST_BOOTSTRAP_DIR}}/rust-std-${RUST_BOOTSTRAP_VERSION_${ARCH}:U${RUST_BOOTSTRAP_VERSION}}-${RUST_TARGET}.tar.gz CARGO_BOOTSTRAP_DIR?= ${RUST_BOOTSTRAP_DIR} -CARGO_BOOTSTRAP_DIR_aarch64?= ${RUST_BOOTSTRAP_DIR} +CARGO_BOOTSTRAP_DIR_aarch64?= ${RUST_BOOTSTRAP_DIR_aarch64} CARGO_BOOTSTRAP_VERSION?= 0.18.0 CARGO_BOOTSTRAP_VERSION_aarch64?=0.18.0 CARGO_BOOTSTRAP= ${CARGO_BOOTSTRAP_DIR_${ARCH}:U${CARGO_BOOTSTRAP_DIR}}/cargo-${CARGO_BOOTSTRAP_VERSION_${ARCH}:U${CARGO_BOOTSTRAP_VERSION}}-${RUST_TARGET}${EXTRACT_SUFX} From owner-svn-ports-head@freebsd.org Sun Jun 18 12:21:06 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 585EFD9056B; Sun, 18 Jun 2017 12:21:06 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from mail.made4.biz (mail.made4.biz [195.154.164.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C3CB6E21C; Sun, 18 Jun 2017 12:21:05 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=freebsd.org ; s=20170531; h=Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From: References:Cc:To:Subject: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=OQisd8chx93+SLa2/11WrJ3hDy5btGhihXAM0vMZKGE=; b=T8gt+UHfjm4OraS7WjHlbNp6rT +aYJ9SnXl5x7OJG9lfc/Ucx8vGOcxRcwC69g+10/fEu1SGriqE3qnU57XK6QjySdAqebPdRIDTnTx VeJpDvt2P5fqOyJCs2SHx2dCzJqacc+tXo5B//elAUI8RAQo/MBjlQIg1EtQ8N8U69jc=; Received: from 2a02-8428-011a-ed00-ea2a-eaff-fe8d-676f.rev.sfr.net ([2a02:8428:11a:ed00:ea2a:eaff:fe8d:676f] helo=rosetta.dumbbell.fr) by mail.made4.biz with esmtpa (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dMZCL-0001Hj-95; Sun, 18 Jun 2017 14:20:57 +0200 Subject: Re: svn commit: r443777 - in head/lang/rust: . files To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201706171444.v5HEiUnR002404@repo.freebsd.org> From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= Organization: The FreeBSD Project Message-ID: <777a1f2a-cfee-dcd1-b40b-98d67ec64217@FreeBSD.org> Date: Sun, 18 Jun 2017 14:20:43 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="i8Eoc13jP4XvReHgj9N6EKPoIt54uItVF" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 12:21:06 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --i8Eoc13jP4XvReHgj9N6EKPoIt54uItVF Content-Type: multipart/mixed; boundary="2g4uQlVIcQlES00bXvDNxgn5siHg83B06"; protected-headers="v1" From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <777a1f2a-cfee-dcd1-b40b-98d67ec64217@FreeBSD.org> Subject: Re: svn commit: r443777 - in head/lang/rust: . files References: <201706171444.v5HEiUnR002404@repo.freebsd.org> In-Reply-To: --2g4uQlVIcQlES00bXvDNxgn5siHg83B06 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 17.06.2017 20:16, Jan Beich wrote: >> +CARGO_BOOTSTRAP_DIR_aarch64?=3D ${RUST_BOOTSTRAP_DIR} >=20 > Did you mean to assign ${RUST_BOOTSTRAP_DIR_aarch64} instead? Thank you! It should be fixed in r443826. --=20 Jean-S=C3=A9bastien P=C3=A9dron --2g4uQlVIcQlES00bXvDNxgn5siHg83B06-- --i8Eoc13jP4XvReHgj9N6EKPoIt54uItVF Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEZwh/0a6uDhLbxqbwOemXYaX9lMwFAllGcClfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDY3 MDg3RkQxQUVBRTBFMTJEQkM2QTZGMDM5RTk5NzYxQTVGRDk0Q0MACgkQOemXYaX9 lMyO7Q//UL4kCpr5PoCiPdP6DqL7ch6YXdJLfh+LSj/z10EK1Xo7HKGWuAc6uysV YZcbe1xov4JPwFcWGUgSKlmGt1kuGQ4J+SKg6M2uE0S0UAyYT/fw7LQ0LPqoKRwm U22OWoXl1g6eiYa29uoScD3gCaZdQ27KWDyDyHaAYwsmAE+vdtKAfIbMUDa1S8wQ rSWGdu9gHh1U3BhCxw8SMIPGYjcSVMt6GqSK0Z6lL5oXVG2QZer3Aves26nEtD7l Z2CVVxU4TotwvrwrJ344sSeXxmhMoG2SulMHEd22YKPiArb6AUl1a91kzvUJVNMz 6qctXzyRFlvEtjs5Iyg6AxcK4OmG16erastdnbeeoInmaClcfpdVTBpIvvgIPJr1 HVl/jnoQJD1Q3EKZASGXADpAc7loIq3iXfnOYp5NlanaCqSYEKhwghxVqzu98eDB Y1TQU4dVlTwwXNG8LW8Ii7IHAwJY1FjvK8VBwQt+FX7zUuNfisYg0GFIyfREZr39 JNGdSYkHY0B3TPbI2rdGs436qNUlrh4tXch1sEzZ6FEwhZonMmHeWXQZKNetFP4I HouSs3HKvcKmAAmsSRwETM5F2d+awUZC/iNPhpAdZ2pUBv+PTA69YxIbf8bxrMRe +BB/vTg4RZL76UIeA0HaPSs8CFt3EP9eYWucPzAetBzsruaTkdk= =d4tQ -----END PGP SIGNATURE----- --i8Eoc13jP4XvReHgj9N6EKPoIt54uItVF-- From owner-svn-ports-head@freebsd.org Sun Jun 18 13:16:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E51CD8645B; Sun, 18 Jun 2017 13:16:53 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C7DD6FDFB; Sun, 18 Jun 2017 13:16:53 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IDGqnw054658; Sun, 18 Jun 2017 13:16:52 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IDGqKt054657; Sun, 18 Jun 2017 13:16:52 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706181316.v5IDGqKt054657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sun, 18 Jun 2017 13:16:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443827 - head/security/ophcrack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 13:16:53 -0000 Author: danfe Date: Sun Jun 18 13:16:52 2017 New Revision: 443827 URL: https://svnweb.freebsd.org/changeset/ports/443827 Log: Finish conversion to option helpers. Modified: head/security/ophcrack/Makefile Modified: head/security/ophcrack/Makefile ============================================================================== --- head/security/ophcrack/Makefile Sun Jun 18 12:20:01 2017 (r443826) +++ head/security/ophcrack/Makefile Sun Jun 18 13:16:52 2017 (r443827) @@ -22,23 +22,16 @@ PORTDOCS= AUTHORS ChangeLog README.md OPTIONS_DEFINE= X11 GRAPH DOCS OPTIONS_DEFAULT= X11 GRAPH +GRAPH_IMPLIES= X11 X11_DESC= Build Qt 4 GUI frontend GRAPH_DESC= Enable graph rendering via Qwt -.include +X11_USE= QT4=moc_build,qmake_build,rcc_build,uic_build,corelib,gui +X11_CONFIGURE_OFF= --disable-gui -.if ${PORT_OPTIONS:MX11} || ${PORT_OPTIONS:MGRAPH} -USE_QT4= moc_build qmake_build rcc_build uic_build corelib gui -.else -CONFIGURE_ARGS+= --disable-gui -.endif - -.if ${PORT_OPTIONS:MGRAPH} -LIB_DEPENDS+= libqwt.so:x11-toolkits/qwt5 -.else -CONFIGURE_ARGS+= --disable-graph -.endif +GRAPH_LIB_DEPENDS= libqwt.so:x11-toolkits/qwt5 +GRAPH_CONFIGURE_OFF= --disable-graph post-patch: @${REINPLACE_CMD} -E '/#include /d ; \ From owner-svn-ports-head@freebsd.org Sun Jun 18 14:02:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C571D86F61; Sun, 18 Jun 2017 14:02:37 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 365B470E23; Sun, 18 Jun 2017 14:02:37 +0000 (UTC) (envelope-from rezny@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IE2aXL074730; Sun, 18 Jun 2017 14:02:36 GMT (envelope-from rezny@FreeBSD.org) Received: (from rezny@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IE2ZSk074722; Sun, 18 Jun 2017 14:02:35 GMT (envelope-from rezny@FreeBSD.org) Message-Id: <201706181402.v5IE2ZSk074722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rezny set sender to rezny@FreeBSD.org using -f From: Matthew Rezny Date: Sun, 18 Jun 2017 14:02:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443828 - in head/graphics: libosmesa mesa-dri mesa-dri/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, 18 Jun 2017 14:02:37 -0000 Author: rezny Date: Sun Jun 18 14:02:35 2017 New Revision: 443828 URL: https://svnweb.freebsd.org/changeset/ports/443828 Log: Update the Mesa ports to 17.1.2 - patch the Intel driver to re-enable hardware acceleration on 10.x [1] Reported by: cpm [1] Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D11148 Added: head/graphics/mesa-dri/files/extra-src_mesa_drivers_dri_i965_intel__screen.c (contents, props changed) Modified: head/graphics/libosmesa/Makefile head/graphics/mesa-dri/Makefile head/graphics/mesa-dri/Makefile.common head/graphics/mesa-dri/Makefile.targets head/graphics/mesa-dri/distinfo head/graphics/mesa-dri/files/configure.ac head/graphics/mesa-dri/files/patch-configure Modified: head/graphics/libosmesa/Makefile ============================================================================== --- head/graphics/libosmesa/Makefile Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/libosmesa/Makefile Sun Jun 18 14:02:35 2017 (r443828) @@ -9,6 +9,12 @@ COMMENT= Off-Screen Mesa implementation of the OpenGL USE_XORG= glproto +# As of version 17.0.5 / 17.1.2, the Gallium variant fails to build due to +# incorrectly ordered linker flags. Fortunately, autoreconf fixes the problem. +# Unfortunately, we must reconf before we know if we're doing a Gallium build. +USES= autoreconf +EXTRA_PATCHES= ${PATCHDIR}/configure.ac + .include .include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common" Modified: head/graphics/mesa-dri/Makefile ============================================================================== --- head/graphics/mesa-dri/Makefile Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/mesa-dri/Makefile Sun Jun 18 14:02:35 2017 (r443828) @@ -42,19 +42,21 @@ GALLIUM_DRIVERS= "" || ${ARCH} == powerpc || ${ARCH} == powerpc64 DRI_DRIVERS+= RADEON R200 GALLIUM_DRIVERS+= R300 R600 -.if "${MESA_LLVM_VER}" != "" # until PPC gets LLVM in base +. if "${MESA_LLVM_VER}" != "" # until PPC gets LLVM in base GALLIUM_DRIVERS+= RADEONSI +. endif .endif -.endif .if ${ARCH} == amd64 || ${ARCH} == i386 DRI_DRIVERS+= I915 I965 GALLIUM_DRIVERS+= SVGA +. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +EXTRA_PATCHES+= ${PATCHDIR}/extra-src_mesa_drivers_dri_i965_intel__screen.c +. endif .elif ${ARCH} == armv6 || ${ARCH} == aarch64 GALLIUM_DRIVERS+= FREEDRENO VC4 -.endif - -.if ${ARCH} == armv6 +. if ${ARCH} == armv6 EXTRA_PATCHES+= ${PATCHDIR}/extra-src_gallium_drivers_vc4_Makefile.in +. endif .endif CONFIGURE_ARGS+= --with-dri-drivers="${DRI_DRIVERS:tl}" \ Modified: head/graphics/mesa-dri/Makefile.common ============================================================================== --- head/graphics/mesa-dri/Makefile.common Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/mesa-dri/Makefile.common Sun Jun 18 14:02:35 2017 (r443828) @@ -14,7 +14,7 @@ MESAVERSION= ${MESABASEVERSION}${MESASUBVERSION:C/^(.)/.\1/} MESADISTVERSION=${MESABASEVERSION}${MESASUBVERSION:C/^(.)/-\1/} -MESABASEVERSION= 17.1.1 +MESABASEVERSION= 17.1.2 # if there is a subversion, don't include the '-' between 7.11-rc2. MESASUBVERSION= Modified: head/graphics/mesa-dri/Makefile.targets ============================================================================== --- head/graphics/mesa-dri/Makefile.targets Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/mesa-dri/Makefile.targets Sun Jun 18 14:02:35 2017 (r443828) @@ -5,13 +5,19 @@ post-patch: .if ${OPSYS} == FreeBSD @${REINPLACE_CMD} -e 's|x86_64|amd64|' ${WRKSRC}/configure +. if ${COMPONENT} == osmesa + @${REINPLACE_CMD} -e 's|x86_64|amd64|' ${WRKSRC}/configure.ac +. endif # Disable use of GCC_ATOMICs on i386 to avoid build failures # Clang in 10.3 fails with cannot compile this atomic library call yet 'p_atomic_add' # Clang in 11.0 fails with undefined reference to `__atomic_fetch_add_8` -.if ${ARCH} == "i386" +. if ${ARCH} == "i386" @${REINPLACE_CMD} -e 's|-DUSE_GCC_ATOMIC_BUILTINS||' ${WRKSRC}/configure +. if ${COMPONENT} == osmesa + @${REINPLACE_CMD} -e 's|-DUSE_GCC_ATOMIC_BUILTINS||' ${WRKSRC}/configure.ac +. endif +. endif .endif -.endif # ${OPSYS} @${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' \ ${WRKSRC}/src/mesa/drivers/dri/common/xmlconfig.c Modified: head/graphics/mesa-dri/distinfo ============================================================================== --- head/graphics/mesa-dri/distinfo Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/mesa-dri/distinfo Sun Jun 18 14:02:35 2017 (r443828) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495896958 -SHA256 (mesa-17.1.1.tar.xz) = aed503f94c0c1630a162a3e276f4ee12a86764cee4cb92338ea2dea99a04e7ef -SIZE (mesa-17.1.1.tar.xz) = 9854480 +TIMESTAMP = 1496724371 +SHA256 (mesa-17.1.2.tar.xz) = 0937804f43746339b1f9540d8f9c8b4a1bb3d3eec0e4020eac283b8799798239 +SIZE (mesa-17.1.2.tar.xz) = 9837516 Modified: head/graphics/mesa-dri/files/configure.ac ============================================================================== --- head/graphics/mesa-dri/files/configure.ac Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/mesa-dri/files/configure.ac Sun Jun 18 14:02:35 2017 (r443828) @@ -9,15 +9,6 @@ dri3_default=yes ;; *) -@@ -1631,7 +1631,7 @@ dnl platform checks. Set DEFINES and LIB - if test "x$enable_dri" = xyes; then - # Platform specific settings and drivers to build - case "$host_os" in -- linux*) -+ linux* | freebsd*) - if test "x$enable_dri3" = xyes; then - DEFINES="$DEFINES -DHAVE_DRI3" - fi @@ -2002,9 +2002,18 @@ if test "x$enable_opencl" = xyes; then AC_MSG_ERROR([cannot enable OpenCL without Gallium]) fi Added: head/graphics/mesa-dri/files/extra-src_mesa_drivers_dri_i965_intel__screen.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/mesa-dri/files/extra-src_mesa_drivers_dri_i965_intel__screen.c Sun Jun 18 14:02:35 2017 (r443828) @@ -0,0 +1,37 @@ +# Partial revert of the following commit because the feature check fails on 10.x +# which disables HW accel on gen4+ (the new check occurs for gen6+ as well) + +From 088449487ebcb72561d73ffb91c96302583445a8 Mon Sep 17 00:00:00 2001 +From: Kenneth Graunke +Date: Wed, 22 Mar 2017 15:20:51 -0700 +Subject: i965: Require Kernel 3.6 for Gen4-5 platforms. + +We've already required Kernel 3.6 on Gen6+ since Mesa 9.2 (May 2013, +commit 92d2f5acfadea672417b6785710c9e8b7f605e41). It seems reasonable +to require it for Gen4-5 as well, bumping the requirement from 2.6.39. + +This is necessary for glClientWaitSync with a timeout to work, which +is a feature we expose on Gen4-5. Without it, we would fall back to an +infinite wait, which is pretty bad. + +See kernel commit 172cf15d18889313bf2c3bfb81fcea08369274ef in 3.6+. + +Reviewed-by: Matt Turner + +diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c +index c7f111d..bc998ab 100644 +--- src/mesa/drivers/dri/i965/intel_screen.c ++++ src/mesa/drivers/dri/i965/intel_screen.c +@@ -1274,8 +1274,8 @@ intel_init_bufmgr(struct intel_screen *screen) + + drm_intel_bufmgr_gem_enable_fenced_relocs(screen->bufmgr); + +- if (!intel_get_boolean(screen, I915_PARAM_HAS_WAIT_TIMEOUT)) { +- fprintf(stderr, "[%s: %u] Kernel 3.6 required.\n", __func__, __LINE__); ++ if (!intel_get_boolean(screen, I915_PARAM_HAS_RELAXED_DELTA)) { ++ fprintf(stderr, "[%s: %u] Kernel 2.6.39 required.\n", __func__, __LINE__); + return false; + } + +-- +cgit v0.10.2 Modified: head/graphics/mesa-dri/files/patch-configure ============================================================================== --- head/graphics/mesa-dri/files/patch-configure Sun Jun 18 13:16:52 2017 (r443827) +++ head/graphics/mesa-dri/files/patch-configure Sun Jun 18 14:02:35 2017 (r443828) @@ -9,15 +9,6 @@ dri3_default=yes ;; *) -@@ -24108,7 +24108,7 @@ fi - if test "x$enable_dri" = xyes; then - # Platform specific settings and drivers to build - case "$host_os" in -- linux*) -+ linux* | freebsd*) - if test "x$enable_dri3" = xyes; then - DEFINES="$DEFINES -DHAVE_DRI3" - fi @@ -25972,9 +25972,19 @@ if test "x$enable_opencl" = xyes; then as_fn_error $? "cannot enable OpenCL without Gallium" "$LINENO" 5 fi From owner-svn-ports-head@freebsd.org Sun Jun 18 15:06:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 905E3D87F80; Sun, 18 Jun 2017 15:06:35 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6015C72482; Sun, 18 Jun 2017 15:06:35 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IF6YSH099196; Sun, 18 Jun 2017 15:06:34 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IF6YEs099192; Sun, 18 Jun 2017 15:06:34 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706181506.v5IF6YEs099192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sun, 18 Jun 2017 15:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443829 - in head/security/suricata: . 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, 18 Jun 2017 15:06:35 -0000 Author: ultima Date: Sun Jun 18 15:06:34 2017 New Revision: 443829 URL: https://svnweb.freebsd.org/changeset/ports/443829 Log: * Updated to 3.2.2 * Depends on libhtp 0.5.24 or greater * Listen on multiple PCAP interfaces via RC script * Dependencies added in the 3.2.1 update move to the PRELUDE option where they belong - Support additional runmodes for unix-socket - make install-full can have race conditions on OSX - af-packet: faulty VLAN handling in tpacket-v3 mode - bad checksum 0xffff - ippair: xbit unset memory leak - file store: file log / file store mismatch with multiple files - app-layer: fix memleak on bad traffic - http body handling: failed assertion - ippair: pair is direction sensitive - defrag – overlap issue in linux policy - unix socket: race condition on start up PR: 220026 Submitted by: Franco Fichtner (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11251 Modified: head/security/suricata/Makefile head/security/suricata/distinfo head/security/suricata/files/suricata.in head/security/suricata/pkg-plist Modified: head/security/suricata/Makefile ============================================================================== --- head/security/suricata/Makefile Sun Jun 18 14:02:35 2017 (r443828) +++ head/security/suricata/Makefile Sun Jun 18 15:06:34 2017 (r443829) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= suricata -PORTVERSION= 3.2.1 +PORTVERSION= 3.2.2 CATEGORIES= security MASTER_SITES= http://www.openinfosecfoundation.org/download/ @@ -14,10 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpcre.so:devel/pcre \ libnet.so:net/libnet \ - libgnutls.so:security/gnutls \ - libgcrypt.so:security/libgcrypt \ - libgpg-error.so:security/libgpg-error \ - libltdl.so:devel/libltdl \ libyaml.so:textproc/libyaml USES= autoreconf cpe gmake libtool pathfix pkgconfig @@ -58,7 +54,7 @@ TESTS_DESC= Unit tests in suricata binary GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP GEOIP_CONFIGURE_ON= --enable-geoip -HTP_PORT_BUILD_DEPENDS= libhtp>=0.5.20:devel/libhtp +HTP_PORT_BUILD_DEPENDS= libhtp>=0.5.24:devel/libhtp HTP_PORT_LIB_DEPENDS= libhtp.so:devel/libhtp HTP_PORT_CONFIGURE_ON= --enable-non-bundled-htp HTP_PORT_CONFIGURE_OFF= --enable-bundled-htp @@ -98,7 +94,11 @@ PORTS_PCAP_CONFIGURE_ON= --with-libpcap-includes=${LOC PORTS_PCAP_CONFIGURE_OFF= --with-libpcap-includes=/usr/include \ --with-libpcap-libraries=/usr/lib -PRELUDE_LIB_DEPENDS= libprelude.so:security/libprelude +PRELUDE_LIB_DEPENDS= libprelude.so:security/libprelude \ + libgnutls.so:security/gnutls \ + libgcrypt.so:security/libgcrypt \ + libgpg-error.so:security/libgpg-error \ + libltdl.so:devel/libltdl PRELUDE_CONFIGURE_ENABLE= prelude PRELUDE_CONFIGURE_ON= --with-libprelude-prefix=${LOCALBASE} Modified: head/security/suricata/distinfo ============================================================================== --- head/security/suricata/distinfo Sun Jun 18 14:02:35 2017 (r443828) +++ head/security/suricata/distinfo Sun Jun 18 15:06:34 2017 (r443829) @@ -1,3 +1,3 @@ -TIMESTAMP = 1487168316 -SHA256 (suricata-3.2.1.tar.gz) = 0e0b0cf49016804bb2fb1fc4327341617e76a67902f4e03e0ef6d16c1d7d3994 -SIZE (suricata-3.2.1.tar.gz) = 11754332 +TIMESTAMP = 1497119063 +SHA256 (suricata-3.2.2.tar.gz) = b1d8e5e53a76fbc89712d10ca8e2208f68f6fc2def0e6ac82e9693bb586a49cb +SIZE (suricata-3.2.2.tar.gz) = 11758084 Modified: head/security/suricata/files/suricata.in ============================================================================== --- head/security/suricata/files/suricata.in Sun Jun 18 14:02:35 2017 (r443828) +++ head/security/suricata/files/suricata.in Sun Jun 18 15:06:34 2017 (r443829) @@ -10,8 +10,8 @@ # suricata_enable (bool): Set to YES to enable suricata # Default: NO # suricata_flags (str): Extra flags passed to suricata -# Default: -D -q -# suricata_interface (str): Network interface to sniff +# Default: -D +# suricata_interface (str): Network interface(s) to sniff # Default: "" # suricata_conf (str): Suricata configuration file # Default: ${PREFIX}/etc/suricata/suricata.yaml @@ -37,7 +37,9 @@ load_rc_config $name [ -z "$suricata_netmap" ] && suricata_netmap="NO" if [ -n "$suricata_interface" ]; then - suricata_flags="$suricata_flags -i $suricata_interface" + for interface in $suricata_interface; do + suricata_flags="$suricata_flags --pcap=$interface" + done elif [ "$suricata_netmap" != "NO" ]; then suricata_flags="$suricata_flags --netmap" else Modified: head/security/suricata/pkg-plist ============================================================================== --- head/security/suricata/pkg-plist Sun Jun 18 14:02:35 2017 (r443828) +++ head/security/suricata/pkg-plist Sun Jun 18 15:06:34 2017 (r443829) @@ -46,8 +46,8 @@ man/man1/suricata.1.gz %%NO_HTP_PORT%%include/htp/htp_urlencoded.h %%NO_HTP_PORT%%include/htp/htp_utf8_decoder.h %%NO_HTP_PORT%%include/htp/htp_version.h -%%NO_HTP_PORT%%lib/libhtp-0.5.23.so.1 -%%NO_HTP_PORT%%lib/libhtp-0.5.23.so.1.0.0 +%%NO_HTP_PORT%%lib/libhtp-0.5.24.so.1 +%%NO_HTP_PORT%%lib/libhtp-0.5.24.so.1.0.0 %%NO_HTP_PORT%%lib/libhtp.a %%NO_HTP_PORT%%lib/libhtp.so %%NO_HTP_PORT%%libdata/pkgconfig/htp.pc From owner-svn-ports-head@freebsd.org Sun Jun 18 15:09:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C051FD87FE0; Sun, 18 Jun 2017 15:09:13 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9054D7257A; Sun, 18 Jun 2017 15:09:13 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IF9CYf099396; Sun, 18 Jun 2017 15:09:12 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IF9CWT099395; Sun, 18 Jun 2017 15:09:12 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706181509.v5IF9CWT099395@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sun, 18 Jun 2017 15:09:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443830 - head/emulators/mupen64plus-qt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 15:09:13 -0000 Author: ultima Date: Sun Jun 18 15:09:12 2017 New Revision: 443830 URL: https://svnweb.freebsd.org/changeset/ports/443830 Log: * Remove OPTIONS_DEFAULT Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11256 Modified: head/emulators/mupen64plus-qt/Makefile Modified: head/emulators/mupen64plus-qt/Makefile ============================================================================== --- head/emulators/mupen64plus-qt/Makefile Sun Jun 18 15:06:34 2017 (r443829) +++ head/emulators/mupen64plus-qt/Makefile Sun Jun 18 15:09:12 2017 (r443830) @@ -26,7 +26,6 @@ PLIST_FILES= bin/mupen64plus-qt \ share/pixmaps/mupen64plus-qt.png OPTIONS_DEFINE= DOCS -OPTIONS_DEFAULT= DOCS do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin From owner-svn-ports-head@freebsd.org Sun Jun 18 15:45:09 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9AB35D88900; Sun, 18 Jun 2017 15:45:09 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70B9E733EC; Sun, 18 Jun 2017 15:45:09 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 2D68F208C7; Sun, 18 Jun 2017 11:45:02 -0400 (EDT) Received: from web4 ([10.202.2.214]) by compute3.internal (MEProxy); Sun, 18 Jun 2017 11:45:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; 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-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=OOd/sy H1VF3Up6glWHsosix/EVqlAJRUo1VW96tyVko=; b=nui44Wj1rZHI6fy8XI5YdI n4wYOA35jbW3yYcdzncdeQR408vd1AsPQ3SNBDfvwjIqB6psWv1H0xA5H/ietsTo 3gOSbbttj6sXILGoAi9LUp1UspaUS4fX2njZpKV+4If54/MyDDLYleV3DK4HGuH2 nGUF6GiAn9PyuOd77UNPVTMiAL2cSt/tNv2XwSPyaC8ZDWSWBAqu2dv1gmZfB7L4 dFGFj13MUCGL3aOyr88S8PeJc6lTaHmKyhCq7vLm2WbQditDwTW+sRzGBFQp0qpf xydXdQjK9AM3NRuyWJzokoOArWEiRaZQN1JTS6mLxqlpW2N5PdeEw69mbBZ6Mvdw == X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id F3DB4BAB67; Sun, 18 Jun 2017 11:45:01 -0400 (EDT) Message-Id: <1497800701.3305666.1013214984.6FD267BF@webmail.messagingengine.com> From: Mark Felder To: Matthew Seaman , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, FreeBSD Ports Security Team MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-72841c42 References: <201706152209.v5FM96Zs097779@repo.freebsd.org> <469abd41-691b-1b44-3e91-db7278bc45b9@FreeBSD.org> Subject: Re: svn commit: r443662 - head/www/p5-RT-Authen-ExternalAuth Date: Sun, 18 Jun 2017 10:45:01 -0500 In-Reply-To: <469abd41-691b-1b44-3e91-db7278bc45b9@FreeBSD.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, 18 Jun 2017 15:45:09 -0000 On Thu, Jun 15, 2017, at 17:18, Matthew Seaman wrote: > > > Bother. I meant to add MFH 2017Q2 to that. > Approved -- Mark Felder ports-secteam & portmgr member feld@FreeBSD.org From owner-svn-ports-head@freebsd.org Sun Jun 18 16:45:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 131B2D8972C; Sun, 18 Jun 2017 16:45:03 +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 D57A8748CB; Sun, 18 Jun 2017 16:45:02 +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 v5IGj2t2039647; Sun, 18 Jun 2017 16:45:02 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IGj1BI039645; Sun, 18 Jun 2017 16:45:01 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706181645.v5IGj1BI039645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sun, 18 Jun 2017 16:45:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443832 - head/devel/erlang-gpb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 16:45:03 -0000 Author: olgeni Date: Sun Jun 18 16:45:01 2017 New Revision: 443832 URL: https://svnweb.freebsd.org/changeset/ports/443832 Log: Update devel/erlang-gpb to version 3.27.2. Modified: head/devel/erlang-gpb/Makefile head/devel/erlang-gpb/distinfo Modified: head/devel/erlang-gpb/Makefile ============================================================================== --- head/devel/erlang-gpb/Makefile Sun Jun 18 16:01:29 2017 (r443831) +++ head/devel/erlang-gpb/Makefile Sun Jun 18 16:45:01 2017 (r443832) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gpb -PORTVERSION= 3.27.1 +PORTVERSION= 3.27.2 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-gpb/distinfo ============================================================================== --- head/devel/erlang-gpb/distinfo Sun Jun 18 16:01:29 2017 (r443831) +++ head/devel/erlang-gpb/distinfo Sun Jun 18 16:45:01 2017 (r443832) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497635900 -SHA256 (tomas-abrahamsson-gpb-3.27.1_GH0.tar.gz) = 2defe0a4c0cf686529eccb20721df33f7f2b14ae1e0df09ac5d6a53648a1bccc -SIZE (tomas-abrahamsson-gpb-3.27.1_GH0.tar.gz) = 359924 +TIMESTAMP = 1497801261 +SHA256 (tomas-abrahamsson-gpb-3.27.2_GH0.tar.gz) = c7f0214e86ca6db6c43f587781c49d8c6e000e6e04c4c3358d73e1bdcb7ba3cd +SIZE (tomas-abrahamsson-gpb-3.27.2_GH0.tar.gz) = 360243 From owner-svn-ports-head@freebsd.org Sun Jun 18 16:48:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5A5CD897B1; Sun, 18 Jun 2017 16:48:26 +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 9340B749D9; Sun, 18 Jun 2017 16:48:26 +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 v5IGmPBX039862; Sun, 18 Jun 2017 16:48:25 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IGmPYO039859; Sun, 18 Jun 2017 16:48:25 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706181648.v5IGmPYO039859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sun, 18 Jun 2017 16:48:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443833 - head/net-im/py-python-telegram-bot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 16:48:26 -0000 Author: olgeni Date: Sun Jun 18 16:48:25 2017 New Revision: 443833 URL: https://svnweb.freebsd.org/changeset/ports/443833 Log: Update net-im/py-python-telegram-bot to version 6.1.0. Modified: head/net-im/py-python-telegram-bot/Makefile head/net-im/py-python-telegram-bot/distinfo Modified: head/net-im/py-python-telegram-bot/Makefile ============================================================================== --- head/net-im/py-python-telegram-bot/Makefile Sun Jun 18 16:45:01 2017 (r443832) +++ head/net-im/py-python-telegram-bot/Makefile Sun Jun 18 16:48:25 2017 (r443833) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= python-telegram-bot -PORTVERSION= 6.0.2 +PORTVERSION= 6.1.0 CATEGORIES= net-im devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net-im/py-python-telegram-bot/distinfo ============================================================================== --- head/net-im/py-python-telegram-bot/distinfo Sun Jun 18 16:45:01 2017 (r443832) +++ head/net-im/py-python-telegram-bot/distinfo Sun Jun 18 16:48:25 2017 (r443833) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496165310 -SHA256 (python-telegram-bot-6.0.2.tar.gz) = 9aa3c97770d00877a04f19e9defcdffc034e77614b81fcee48967fb553ae4fe6 -SIZE (python-telegram-bot-6.0.2.tar.gz) = 174723 +TIMESTAMP = 1497804367 +SHA256 (python-telegram-bot-6.1.0.tar.gz) = 90ac2ff18f6217ad06330af98ba148957c55b92ae473c65b6726e6b17d3674f6 +SIZE (python-telegram-bot-6.1.0.tar.gz) = 180866 From owner-svn-ports-head@freebsd.org Sun Jun 18 16:55:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05C69D89A52; Sun, 18 Jun 2017 16:55: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 C3BDC74E24; Sun, 18 Jun 2017 16:55:39 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IGtcj0043864; Sun, 18 Jun 2017 16:55:38 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IGtcM6043857; Sun, 18 Jun 2017 16:55:38 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706181655.v5IGtcM6043857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 18 Jun 2017 16:55:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443834 - in head/lang: pypy pypy/files pypy3 pypy3/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, 18 Jun 2017 16:55:40 -0000 Author: dbn Date: Sun Jun 18 16:55:38 2017 New Revision: 443834 URL: https://svnweb.freebsd.org/changeset/ports/443834 Log: lang/pypy(3): update to 5.8 Change Log: - supports upstream library 2.7.13 and 3.5.3 - critical bugs fixed in shadowstack - native support for profiling frames in vmprof - performance improvements for pack* and unpack* structs - cffi updates to 1.10.1 - numpy 1.13.0 requires at least this version Added: head/lang/pypy/files/patch-rpython_rlib_rvmprof_src_shared_machine.c (contents, props changed) head/lang/pypy3/files/patch-rpython_rlib_rvmprof_src_shared_machine.c (contents, props changed) Deleted: head/lang/pypy/files/patch-lib-python_2.7_distutils_sysconfig__pypy.py head/lang/pypy/files/patch-rpython_translator_platform_posix.py head/lang/pypy3/files/patch-rpython_translator_platform_posix.py Modified: head/lang/pypy/Makefile head/lang/pypy/bsd.pypy.cffi.mk head/lang/pypy/distinfo head/lang/pypy3/Makefile head/lang/pypy3/distinfo Modified: head/lang/pypy/Makefile ============================================================================== --- head/lang/pypy/Makefile Sun Jun 18 16:48:25 2017 (r443833) +++ head/lang/pypy/Makefile Sun Jun 18 16:55:38 2017 (r443834) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= pypy -DISTVERSION?= 5.7.1 # Also update bsd.pypy.cffi.mk -PORTREVISION?= 1 +DISTVERSION?= 5.8.0 # Also update bsd.pypy.cffi.mk CATEGORIES= lang python MASTER_SITES= https://bitbucket.org/pypy/pypy/downloads/ http://buildbot.pypy.org/mirror/ DISTNAME?= ${PORTNAME}2-v${PORTVERSION}-src Modified: head/lang/pypy/bsd.pypy.cffi.mk ============================================================================== --- head/lang/pypy/bsd.pypy.cffi.mk Sun Jun 18 16:48:25 2017 (r443833) +++ head/lang/pypy/bsd.pypy.cffi.mk Sun Jun 18 16:55:38 2017 (r443834) @@ -11,7 +11,7 @@ PLIST_FILES= %%PYPY_DIR%%/lib_pypy/${CFFI_MODULE}_cffi CFFI_MODULE?= _${PORTNAME} PYTHON_IMPL= pypy -PYTHON_PORTVERSION?= 5.7.1 +PYTHON_PORTVERSION?= 5.8.0 PYTHON_PKGNAMEPREFIX= pypy- PYTHON_CMD= ${LOCALBASE}/bin/${PYTHON_IMPL} Modified: head/lang/pypy/distinfo ============================================================================== --- head/lang/pypy/distinfo Sun Jun 18 16:48:25 2017 (r443833) +++ head/lang/pypy/distinfo Sun Jun 18 16:55:38 2017 (r443834) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491510301 -SHA256 (pypy2-v5.7.1-src.tar.bz2) = d01bee43c6df79f7bbc1149bb3e85f489491fb2358a6a1f9a7f0d6e07715832f -SIZE (pypy2-v5.7.1-src.tar.bz2) = 18940413 +TIMESTAMP = 1497478804 +SHA256 (pypy2-v5.8.0-src.tar.bz2) = 504c2d522595baf8775ae1045a217a2b120732537861d31b889d47c340b58bd5 +SIZE (pypy2-v5.8.0-src.tar.bz2) = 19163498 Added: head/lang/pypy/files/patch-rpython_rlib_rvmprof_src_shared_machine.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pypy/files/patch-rpython_rlib_rvmprof_src_shared_machine.c Sun Jun 18 16:55:38 2017 (r443834) @@ -0,0 +1,20 @@ +--- rpython/rlib/rvmprof/src/shared/machine.c.orig 2017-06-05 20:40:44 UTC ++++ rpython/rlib/rvmprof/src/shared/machine.c +@@ -28,6 +28,8 @@ const char * vmp_machine_os_name(void) + #endif + #elif __linux__ + return "linux"; ++#elif __FreeBSD__ ++ return "freebsd"; + #else + #error "Unknown compiler" + #endif +@@ -39,7 +41,7 @@ long vmp_fd_to_path(int fd, char * buffe + char proffs[24]; + (void)snprintf(proffs, 24, "/proc/self/fd/%d", fd); + return readlink(proffs, buffer, buffer_len); +-#elif defined(VMPROF_UNIX) ++#elif defined(VMPROF_UNIX) && !defined(__FreeBSD__) + fcntl(fd, F_GETPATH, buffer); + return strlen(buffer); + #endif Modified: head/lang/pypy3/Makefile ============================================================================== --- head/lang/pypy3/Makefile Sun Jun 18 16:48:25 2017 (r443833) +++ head/lang/pypy3/Makefile Sun Jun 18 16:55:38 2017 (r443834) @@ -2,8 +2,6 @@ # $FreeBSD$ PORTNAME= pypy3 -DISTVERSION= 5.7.1 -PORTREVISION= 2 DISTNAME= ${PORTNAME}-v${DISTVERSION}-src MASTERDIR= ${.CURDIR}/../pypy Modified: head/lang/pypy3/distinfo ============================================================================== --- head/lang/pypy3/distinfo Sun Jun 18 16:48:25 2017 (r443833) +++ head/lang/pypy3/distinfo Sun Jun 18 16:55:38 2017 (r443834) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491510361 -SHA256 (pypy3-v5.7.1-src.tar.bz2) = 40ece0145282980ac121390f13709404c0532896507d5767496381180b631bd0 -SIZE (pypy3-v5.7.1-src.tar.bz2) = 28811162 +TIMESTAMP = 1497478958 +SHA256 (pypy3-v5.8.0-src.tar.bz2) = 9d090127335c3c0fd2b14c8835bf91752e62756e55ea06aad3353f24a6854223 +SIZE (pypy3-v5.8.0-src.tar.bz2) = 28986883 Added: head/lang/pypy3/files/patch-rpython_rlib_rvmprof_src_shared_machine.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pypy3/files/patch-rpython_rlib_rvmprof_src_shared_machine.c Sun Jun 18 16:55:38 2017 (r443834) @@ -0,0 +1,20 @@ +--- rpython/rlib/rvmprof/src/shared/machine.c.orig 2017-06-05 20:40:44 UTC ++++ rpython/rlib/rvmprof/src/shared/machine.c +@@ -28,6 +28,8 @@ const char * vmp_machine_os_name(void) + #endif + #elif __linux__ + return "linux"; ++#elif __FreeBSD__ ++ return "freebsd"; + #else + #error "Unknown compiler" + #endif +@@ -39,7 +41,7 @@ long vmp_fd_to_path(int fd, char * buffe + char proffs[24]; + (void)snprintf(proffs, 24, "/proc/self/fd/%d", fd); + return readlink(proffs, buffer, buffer_len); +-#elif defined(VMPROF_UNIX) ++#elif defined(VMPROF_UNIX) && !defined(__FreeBSD__) + fcntl(fd, F_GETPATH, buffer); + return strlen(buffer); + #endif From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05D14D8A842; Sun, 18 Jun 2017 17:32:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C4F84760B0; Sun, 18 Jun 2017 17:32:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWPbn060129; Sun, 18 Jun 2017 17:32:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWPU5060127; Sun, 18 Jun 2017 17:32:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWPU5060127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443835 - head/devel/p5-ExtUtils-MakeMaker-CPANfile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:27 -0000 Author: sunpoet Date: Sun Jun 18 17:32:25 2017 New Revision: 443835 URL: https://svnweb.freebsd.org/changeset/ports/443835 Log: Update to 0.08 Changes: http://search.cpan.org/dist/ExtUtils-MakeMaker-CPANfile/Changes Modified: head/devel/p5-ExtUtils-MakeMaker-CPANfile/Makefile head/devel/p5-ExtUtils-MakeMaker-CPANfile/distinfo Modified: head/devel/p5-ExtUtils-MakeMaker-CPANfile/Makefile ============================================================================== --- head/devel/p5-ExtUtils-MakeMaker-CPANfile/Makefile Sun Jun 18 16:55:38 2017 (r443834) +++ head/devel/p5-ExtUtils-MakeMaker-CPANfile/Makefile Sun Jun 18 17:32:25 2017 (r443835) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ExtUtils-MakeMaker-CPANfile -PORTVERSION= 0.07 +PORTVERSION= 0.08 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-ExtUtils-MakeMaker-CPANfile/distinfo ============================================================================== --- head/devel/p5-ExtUtils-MakeMaker-CPANfile/distinfo Sun Jun 18 16:55:38 2017 (r443834) +++ head/devel/p5-ExtUtils-MakeMaker-CPANfile/distinfo Sun Jun 18 17:32:25 2017 (r443835) @@ -1,2 +1,3 @@ -SHA256 (ExtUtils-MakeMaker-CPANfile-0.07.tar.gz) = cacb54c0c20e0468a773d92855387dc1dcd60a8d6e9a24fda73d4cbcd76b5ed1 -SIZE (ExtUtils-MakeMaker-CPANfile-0.07.tar.gz) = 11354 +TIMESTAMP = 1497760138 +SHA256 (ExtUtils-MakeMaker-CPANfile-0.08.tar.gz) = 14eb7ae3a2a6c1ba6d52100d05e23f720b430dd6cc228855a607a01e35f9e279 +SIZE (ExtUtils-MakeMaker-CPANfile-0.08.tar.gz) = 11645 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B376D8A866; Sun, 18 Jun 2017 17:32:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40D69760DD; Sun, 18 Jun 2017 17:32:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWVGF060249; Sun, 18 Jun 2017 17:32:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWV3k060247; Sun, 18 Jun 2017 17:32:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWV3k060247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443836 - head/devel/p5-Test-LeakTrace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:32 -0000 Author: sunpoet Date: Sun Jun 18 17:32:31 2017 New Revision: 443836 URL: https://svnweb.freebsd.org/changeset/ports/443836 Log: Update to 0.16 - Add LICENSE Changes: http://search.cpan.org/dist/Test-LeakTrace/Changes Modified: head/devel/p5-Test-LeakTrace/Makefile head/devel/p5-Test-LeakTrace/distinfo Modified: head/devel/p5-Test-LeakTrace/Makefile ============================================================================== --- head/devel/p5-Test-LeakTrace/Makefile Sun Jun 18 17:32:25 2017 (r443835) +++ head/devel/p5-Test-LeakTrace/Makefile Sun Jun 18 17:32:31 2017 (r443836) @@ -2,14 +2,16 @@ # $FreeBSD$ PORTNAME= Test-LeakTrace -PORTVERSION= 0.15 -PORTREVISION= 2 +PORTVERSION= 0.16 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Traces memory leaks + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual USE_PERL5= configure USES= perl5 Modified: head/devel/p5-Test-LeakTrace/distinfo ============================================================================== --- head/devel/p5-Test-LeakTrace/distinfo Sun Jun 18 17:32:25 2017 (r443835) +++ head/devel/p5-Test-LeakTrace/distinfo Sun Jun 18 17:32:31 2017 (r443836) @@ -1,2 +1,3 @@ -SHA256 (Test-LeakTrace-0.15.tar.gz) = efb8b58b6981efc6c9c4b4a3b550728f8c179f3c8d57c05724873011c08de65e -SIZE (Test-LeakTrace-0.15.tar.gz) = 49364 +TIMESTAMP = 1497760148 +SHA256 (Test-LeakTrace-0.16.tar.gz) = 5f089eed915f1ec8c743f6d2777c3ecd0ca01df2f7b9e10038d316952583e403 +SIZE (Test-LeakTrace-0.16.tar.gz) = 49435 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5950D8A88B; Sun, 18 Jun 2017 17:32:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A7457614E; Sun, 18 Jun 2017 17:32:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWa57060388; Sun, 18 Jun 2017 17:32:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWaTI060385; Sun, 18 Jun 2017 17:32:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWaTI060385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443837 - head/devel/p5-Test2-Suite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:37 -0000 Author: sunpoet Date: Sun Jun 18 17:32:36 2017 New Revision: 443837 URL: https://svnweb.freebsd.org/changeset/ports/443837 Log: Update to 0.000072 - Add PERL_LEVEL check Changes: http://search.cpan.org/dist/Test2-Suite/Changes Modified: head/devel/p5-Test2-Suite/Makefile head/devel/p5-Test2-Suite/distinfo head/devel/p5-Test2-Suite/pkg-plist Modified: head/devel/p5-Test2-Suite/Makefile ============================================================================== --- head/devel/p5-Test2-Suite/Makefile Sun Jun 18 17:32:31 2017 (r443836) +++ head/devel/p5-Test2-Suite/Makefile Sun Jun 18 17:32:36 2017 (r443837) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test2-Suite -PORTVERSION= 0.000070 +PORTVERSION= 0.000072 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:EXODIST @@ -17,12 +17,18 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= p5-Importer>=0.024:devel/p5-Importer \ p5-Sub-Info>=0.001:devel/p5-Sub-Info \ - p5-Term-Table>=0.002:devel/p5-Term-Table \ - p5-Test-Simple>=1.302073:devel/p5-Test-Simple + p5-Term-Table>=0.002:devel/p5-Term-Table RUN_DEPENDS:= ${BUILD_DEPENDS} NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502508 +BUILD_DEPENDS+= p5-Test-Simple>=1.302073:devel/p5-Test-Simple +RUN_DEPENDS+= p5-Test-Simple>=1.302073:devel/p5-Test-Simple +.endif + +.include Modified: head/devel/p5-Test2-Suite/distinfo ============================================================================== --- head/devel/p5-Test2-Suite/distinfo Sun Jun 18 17:32:31 2017 (r443836) +++ head/devel/p5-Test2-Suite/distinfo Sun Jun 18 17:32:36 2017 (r443837) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490101701 -SHA256 (Test2-Suite-0.000070.tar.gz) = 3445d5b937ff751e8e3c64c2b9b32023c5ecdad3959a78689efadfa711a2fc4a -SIZE (Test2-Suite-0.000070.tar.gz) = 138718 +TIMESTAMP = 1497778484 +SHA256 (Test2-Suite-0.000072.tar.gz) = ee6254725b71ef29b28612e31e2bd4d88b82d61495beb531bf014a9c8435ed41 +SIZE (Test2-Suite-0.000072.tar.gz) = 141276 Modified: head/devel/p5-Test2-Suite/pkg-plist ============================================================================== --- head/devel/p5-Test2-Suite/pkg-plist Sun Jun 18 17:32:31 2017 (r443836) +++ head/devel/p5-Test2-Suite/pkg-plist Sun Jun 18 17:32:36 2017 (r443837) @@ -67,6 +67,7 @@ %%SITE_PERL%%/Test2/Util/Table/Cell.pm %%SITE_PERL%%/Test2/Util/Table/LineBreak.pm %%SITE_PERL%%/Test2/Util/Term.pm +%%SITE_PERL%%/Test2/V0.pm %%PERL5_MAN3%%/Test2::Bundle.3.gz %%PERL5_MAN3%%/Test2::Bundle::Extended.3.gz %%PERL5_MAN3%%/Test2::Bundle::More.3.gz @@ -134,3 +135,4 @@ %%PERL5_MAN3%%/Test2::Util::Sub.3.gz %%PERL5_MAN3%%/Test2::Util::Table.3.gz %%PERL5_MAN3%%/Test2::Util::Table::LineBreak.3.gz +%%PERL5_MAN3%%/Test2::V0.3.gz From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:43 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B43BD8A8C4; Sun, 18 Jun 2017 17:32:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFF2E761CB; Sun, 18 Jun 2017 17:32:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWgE5060511; Sun, 18 Jun 2017 17:32:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWfnu060509; Sun, 18 Jun 2017 17:32:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWfnu060509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443838 - head/devel/rubygem-rb-inotify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:43 -0000 Author: sunpoet Date: Sun Jun 18 17:32:41 2017 New Revision: 443838 URL: https://svnweb.freebsd.org/changeset/ports/443838 Log: Update to 0.9.10 Changes: https://github.com/nex3/rb-inotify/commits/master Modified: head/devel/rubygem-rb-inotify/Makefile head/devel/rubygem-rb-inotify/distinfo Modified: head/devel/rubygem-rb-inotify/Makefile ============================================================================== --- head/devel/rubygem-rb-inotify/Makefile Sun Jun 18 17:32:36 2017 (r443837) +++ head/devel/rubygem-rb-inotify/Makefile Sun Jun 18 17:32:41 2017 (r443838) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rb-inotify -PORTVERSION= 0.9.9 +PORTVERSION= 0.9.10 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -12,7 +12,7 @@ COMMENT= Ruby wrapper for libinotify, using ffi LICENSE= MIT LIB_DEPENDS= libinotify.so:devel/libinotify -RUN_DEPENDS= rubygem-ffi>=1.0:devel/rubygem-ffi +RUN_DEPENDS= rubygem-ffi>=0.5.0:devel/rubygem-ffi NO_ARCH= yes USE_RUBY= yes Modified: head/devel/rubygem-rb-inotify/distinfo ============================================================================== --- head/devel/rubygem-rb-inotify/distinfo Sun Jun 18 17:32:36 2017 (r443837) +++ head/devel/rubygem-rb-inotify/distinfo Sun Jun 18 17:32:41 2017 (r443838) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497688127 -SHA256 (rubygem/rb-inotify-0.9.9.gem) = 1ef0ceafb745c2c050a7e5a89b78e1f23b23dc26a0a20eba7ca963ca01726ec5 -SIZE (rubygem/rb-inotify-0.9.9.gem) = 15360 +TIMESTAMP = 1497778491 +SHA256 (rubygem/rb-inotify-0.9.10.gem) = e140f7ad14cd91e001c7e0bfa32458dd29995e70932765fcf477de630b7fda79 +SIZE (rubygem/rb-inotify-0.9.10.gem) = 14848 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:48 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 354F6D8A8EF; Sun, 18 Jun 2017 17:32:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02C1176238; Sun, 18 Jun 2017 17:32:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWlMG060631; Sun, 18 Jun 2017 17:32:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWlQ5060629; Sun, 18 Jun 2017 17:32:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWlQ5060629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443839 - head/devel/p5-Test-Moose-More X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:48 -0000 Author: sunpoet Date: Sun Jun 18 17:32:46 2017 New Revision: 443839 URL: https://svnweb.freebsd.org/changeset/ports/443839 Log: Update to 0.048 Changes: http://search.cpan.org/dist/Test-Moose-More/Changes Modified: head/devel/p5-Test-Moose-More/Makefile head/devel/p5-Test-Moose-More/distinfo Modified: head/devel/p5-Test-Moose-More/Makefile ============================================================================== --- head/devel/p5-Test-Moose-More/Makefile Sun Jun 18 17:32:41 2017 (r443838) +++ head/devel/p5-Test-Moose-More/Makefile Sun Jun 18 17:32:46 2017 (r443839) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Test-Moose-More -PORTVERSION= 0.047 +PORTVERSION= 0.048 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,6 +13,7 @@ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= p5-Data-OptList>=0:devel/p5-Data-OptList \ + p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ p5-Moose>=0:devel/p5-Moose \ p5-Sub-Exporter-Progressive>=0:devel/p5-Sub-Exporter-Progressive \ p5-Syntax-Keyword-Junction>=0:devel/p5-Syntax-Keyword-Junction Modified: head/devel/p5-Test-Moose-More/distinfo ============================================================================== --- head/devel/p5-Test-Moose-More/distinfo Sun Jun 18 17:32:41 2017 (r443838) +++ head/devel/p5-Test-Moose-More/distinfo Sun Jun 18 17:32:46 2017 (r443839) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493220234 -SHA256 (Test-Moose-More-0.047.tar.gz) = 745696fb6a0222b7c4821c3f903f1c8f18aed7055d9dbd6515e4ae20c33cdce0 -SIZE (Test-Moose-More-0.047.tar.gz) = 57716 +TIMESTAMP = 1497778501 +SHA256 (Test-Moose-More-0.048.tar.gz) = 0dbdc77b778ecdbfe1545f33d6ab72c022da7cecef0217d89133998ae6f4690b +SIZE (Test-Moose-More-0.048.tar.gz) = 59631 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F854D8A914; Sun, 18 Jun 2017 17:32:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B54B762AD; Sun, 18 Jun 2017 17:32:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWq2i060756; Sun, 18 Jun 2017 17:32:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWq5X060754; Sun, 18 Jun 2017 17:32:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWq5X060754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443840 - head/textproc/p5-Perl-Critic-Pulp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:53 -0000 Author: sunpoet Date: Sun Jun 18 17:32:52 2017 New Revision: 443840 URL: https://svnweb.freebsd.org/changeset/ports/443840 Log: Update to 94 Changes: http://search.cpan.org/dist/Perl-Critic-Pulp/Changes Modified: head/textproc/p5-Perl-Critic-Pulp/Makefile head/textproc/p5-Perl-Critic-Pulp/distinfo Modified: head/textproc/p5-Perl-Critic-Pulp/Makefile ============================================================================== --- head/textproc/p5-Perl-Critic-Pulp/Makefile Sun Jun 18 17:32:46 2017 (r443839) +++ head/textproc/p5-Perl-Critic-Pulp/Makefile Sun Jun 18 17:32:52 2017 (r443840) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Perl-Critic-Pulp -PORTVERSION= 93 +PORTVERSION= 94 CATEGORIES= textproc devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-Perl-Critic-Pulp/distinfo ============================================================================== --- head/textproc/p5-Perl-Critic-Pulp/distinfo Sun Jun 18 17:32:46 2017 (r443839) +++ head/textproc/p5-Perl-Critic-Pulp/distinfo Sun Jun 18 17:32:52 2017 (r443840) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492320669 -SHA256 (Perl-Critic-Pulp-93.tar.gz) = ef0a2c536590437501796864b81c12acea63dd620f3310d4db8d240124bca905 -SIZE (Perl-Critic-Pulp-93.tar.gz) = 214215 +TIMESTAMP = 1497760159 +SHA256 (Perl-Critic-Pulp-94.tar.gz) = 20d1489eace6d0cf91b03023776406f7cbcf07b86aba2a6303398c111b61b6ac +SIZE (Perl-Critic-Pulp-94.tar.gz) = 214918 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:32:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8860BD8A93F; Sun, 18 Jun 2017 17:32:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 554CD76321; Sun, 18 Jun 2017 17:32:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHWvSE060895; Sun, 18 Jun 2017 17:32:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHWvum060892; Sun, 18 Jun 2017 17:32:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181732.v5IHWvum060892@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:32:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443841 - head/www/p5-Feersum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:32:58 -0000 Author: sunpoet Date: Sun Jun 18 17:32:56 2017 New Revision: 443841 URL: https://svnweb.freebsd.org/changeset/ports/443841 Log: Update to 1.405 - Sort PLIST Changes: http://search.cpan.org/dist/Feersum/Changes Modified: head/www/p5-Feersum/Makefile head/www/p5-Feersum/distinfo head/www/p5-Feersum/pkg-plist Modified: head/www/p5-Feersum/Makefile ============================================================================== --- head/www/p5-Feersum/Makefile Sun Jun 18 17:32:52 2017 (r443840) +++ head/www/p5-Feersum/Makefile Sun Jun 18 17:32:56 2017 (r443841) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Feersum -PORTVERSION= 1.404 +PORTVERSION= 1.405 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:AUDREYT Modified: head/www/p5-Feersum/distinfo ============================================================================== --- head/www/p5-Feersum/distinfo Sun Jun 18 17:32:52 2017 (r443840) +++ head/www/p5-Feersum/distinfo Sun Jun 18 17:32:56 2017 (r443841) @@ -1,3 +1,3 @@ -TIMESTAMP = 1478453522 -SHA256 (Feersum-1.404.tar.gz) = f9c0ca1035222f6ff9454f16827be6b6cbbc6ba85caaa1311adc479d7206045d -SIZE (Feersum-1.404.tar.gz) = 107209 +TIMESTAMP = 1497760173 +SHA256 (Feersum-1.405.tar.gz) = 06b9e8df7ab60f9766a5d4cd86a8c730bc6a3b8adc6ae871f992d330e327c053 +SIZE (Feersum-1.405.tar.gz) = 107336 Modified: head/www/p5-Feersum/pkg-plist ============================================================================== --- head/www/p5-Feersum/pkg-plist Sun Jun 18 17:32:52 2017 (r443840) +++ head/www/p5-Feersum/pkg-plist Sun Jun 18 17:32:56 2017 (r443841) @@ -5,9 +5,9 @@ bin/feersum %%SITE_ARCH%%/Feersum/Runner.pm %%SITE_ARCH%%/Plack/Handler/Feersum.pm %%SITE_ARCH%%/auto/Feersum/Feersum.so +%%PERL5_MAN1%%/feersum.1.gz %%PERL5_MAN3%%/Feersum.3.gz %%PERL5_MAN3%%/Feersum::Connection.3.gz %%PERL5_MAN3%%/Feersum::Connection::Handle.3.gz %%PERL5_MAN3%%/Feersum::Runner.3.gz %%PERL5_MAN3%%/Plack::Handler::Feersum.3.gz -%%PERL5_MAN1%%/feersum.1.gz From owner-svn-ports-head@freebsd.org Sun Jun 18 17:33:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBA29D8A96D; Sun, 18 Jun 2017 17:33:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C06176396; Sun, 18 Jun 2017 17:33:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHX2PI061037; Sun, 18 Jun 2017 17:33:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHX2jC061035; Sun, 18 Jun 2017 17:33:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181733.v5IHX2jC061035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:33:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443842 - head/devel/nuitka X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:33:03 -0000 Author: sunpoet Date: Sun Jun 18 17:33:02 2017 New Revision: 443842 URL: https://svnweb.freebsd.org/changeset/ports/443842 Log: Update to 0.5.26.1 Changes: https://github.com/kayhayen/Nuitka/blob/develop/Changelog.rst https://github.com/kayhayen/Nuitka/commits/develop Modified: head/devel/nuitka/Makefile head/devel/nuitka/distinfo Modified: head/devel/nuitka/Makefile ============================================================================== --- head/devel/nuitka/Makefile Sun Jun 18 17:32:56 2017 (r443841) +++ head/devel/nuitka/Makefile Sun Jun 18 17:33:02 2017 (r443842) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nuitka -PORTVERSION= 0.5.26 +PORTVERSION= 0.5.26.1 CATEGORIES= devel python MASTER_SITES= http://nuitka.net/releases/ DISTNAME= Nuitka-${PORTVERSION} Modified: head/devel/nuitka/distinfo ============================================================================== --- head/devel/nuitka/distinfo Sun Jun 18 17:32:56 2017 (r443841) +++ head/devel/nuitka/distinfo Sun Jun 18 17:33:02 2017 (r443842) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496842486 -SHA256 (Nuitka-0.5.26.tar.bz2) = 56b81c7144af4784f36f950a21862297c357781bed4d43e239e58e7aa6e3f40f -SIZE (Nuitka-0.5.26.tar.bz2) = 1227355 +TIMESTAMP = 1497760183 +SHA256 (Nuitka-0.5.26.1.tar.bz2) = a65fa0e7a0a8373bb8f150b43e8385aa8b6bb43a22e5c4339439828960602d1b +SIZE (Nuitka-0.5.26.1.tar.bz2) = 1226996 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:33:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A445BD8A999; Sun, 18 Jun 2017 17:33:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 74D207640B; Sun, 18 Jun 2017 17:33:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IHX7NH061160; Sun, 18 Jun 2017 17:33:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHX78g061158; Sun, 18 Jun 2017 17:33:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706181733.v5IHX78g061158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 18 Jun 2017 17:33:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443843 - head/www/rubygem-jekyll X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:33:08 -0000 Author: sunpoet Date: Sun Jun 18 17:33:07 2017 New Revision: 443843 URL: https://svnweb.freebsd.org/changeset/ports/443843 Log: Update to 3.4.4 Changes: https://github.com/jekyll/jekyll/blob/master/History.markdown Modified: head/www/rubygem-jekyll/Makefile head/www/rubygem-jekyll/distinfo Modified: head/www/rubygem-jekyll/Makefile ============================================================================== --- head/www/rubygem-jekyll/Makefile Sun Jun 18 17:33:02 2017 (r443842) +++ head/www/rubygem-jekyll/Makefile Sun Jun 18 17:33:07 2017 (r443843) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll -PORTVERSION= 3.4.3 +PORTVERSION= 3.4.4 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-jekyll/distinfo ============================================================================== --- head/www/rubygem-jekyll/distinfo Sun Jun 18 17:33:02 2017 (r443842) +++ head/www/rubygem-jekyll/distinfo Sun Jun 18 17:33:07 2017 (r443843) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490196065 -SHA256 (rubygem/jekyll-3.4.3.gem) = b23bd9495944b2068be0326032ff688aa0f32819d89ba316b08607e3f6f7ecdc -SIZE (rubygem/jekyll-3.4.3.gem) = 91136 +TIMESTAMP = 1497778512 +SHA256 (rubygem/jekyll-3.4.4.gem) = f3b0ec67d4bb1d71c5c6e329de2cca229ffa6e170c461436ce590b98112a12e6 +SIZE (rubygem/jekyll-3.4.4.gem) = 91136 From owner-svn-ports-head@freebsd.org Sun Jun 18 17:58:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3A27D8ACCC; Sun, 18 Jun 2017 17:58:41 +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 AEBDD76DB7; Sun, 18 Jun 2017 17:58:41 +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 v5IHwesw069560; Sun, 18 Jun 2017 17:58:40 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IHwetX069559; Sun, 18 Jun 2017 17:58:40 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706181758.v5IHwetX069559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 18 Jun 2017 17:58:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443844 - head/www/trac-iniadmin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 17:58:42 -0000 Author: dbn Date: Sun Jun 18 17:58:40 2017 New Revision: 443844 URL: https://svnweb.freebsd.org/changeset/ports/443844 Log: www/trac-iniadmin: remove trailing backtick from NO_ARCH The unescaped backtick causes issues when NO_ARCH is passed, unquoted, to a script. PR: 218976 Approved by: portmgr (implicit: minor fixes) Modified: head/www/trac-iniadmin/Makefile Modified: head/www/trac-iniadmin/Makefile ============================================================================== --- head/www/trac-iniadmin/Makefile Sun Jun 18 17:33:07 2017 (r443843) +++ head/www/trac-iniadmin/Makefile Sun Jun 18 17:58:40 2017 (r443844) @@ -17,6 +17,6 @@ RUN_DEPENDS= tracd:www/trac WRKSRC= ${WRKDIR}/${PORTNAME}plugin/0.11 USES= python USE_PYTHON= distutils autoplist -NO_ARCH= yes` +NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Sun Jun 18 18:09:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6837D8AEC6; Sun, 18 Jun 2017 18:09:23 +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 60427771E3; Sun, 18 Jun 2017 18:09:23 +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 v5II9MeJ074861; Sun, 18 Jun 2017 18:09:22 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5II9H4H074804; Sun, 18 Jun 2017 18:09:17 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706181809.v5II9H4H074804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sun, 18 Jun 2017 18:09:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443845 - in head: Mk Mk/Scripts Mk/Uses archivers/py-rcssmin archivers/py-rjsmin converters/R-cran-RJSONIO converters/R-cran-rjson databases/R-cran-RSQLite databases/R-cran-RSQLite.ext... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 18:09:24 -0000 Author: dbn Date: Sun Jun 18 18:09:16 2017 New Revision: 443845 URL: https://svnweb.freebsd.org/changeset/ports/443845 Log: qa: add check for NO_ARCH If NO_ARCH is set then check that no FreeBSD elf(5) files are in $STAGEDIR. If an elf(5) file is bundles as part of the package, but is not meant to be run directly (i.e. the elf(5) file is a payload, and not compiled) then those files can be added to NO_ARCH_IGNORE to avoid the check from failing, Changes to ports: - Ports that have NO_ARCH set, but actually compile files have had NO_ARCH removed. - Ports that have elf(5) payloads have had those files added to NO_ARCH_IGNORE. - R-cran ports that do not set USES=cran:compiles have NO_ARCH set, PR: 218976 Reviewed by: antoine, mat Approved by: portmgr Modified: head/Mk/Scripts/qa.sh head/Mk/Uses/cran.mk head/Mk/bsd.port.mk head/archivers/py-rcssmin/Makefile head/archivers/py-rjsmin/Makefile head/converters/R-cran-RJSONIO/Makefile head/converters/R-cran-rjson/Makefile head/databases/R-cran-RSQLite.extfuns/Makefile head/databases/R-cran-RSQLite/Makefile head/databases/p5-CDB_File/Makefile head/databases/py-psycopg2cffi/Makefile head/databases/rubygem-tarantool/Makefile head/devel/R-cran-Hmisc/Makefile head/devel/R-cran-bit/Makefile head/devel/R-cran-bitops/Makefile head/devel/R-cran-caTools/Makefile head/devel/R-cran-chron/Makefile head/devel/R-cran-gbm/Makefile head/devel/R-cran-glmnet/Makefile head/devel/R-cran-gtools/Makefile head/devel/R-cran-microbenchmark/Makefile head/devel/R-cran-plyr/Makefile head/devel/p5-Data-Structure-Util/Makefile head/devel/p5-Mouse/Makefile head/devel/p5-Opcodes/Makefile head/devel/py-atomiclong/Makefile head/devel/pyside-tools/Makefile head/finance/R-cran-PerformanceAnalytics/Makefile head/finance/R-cran-TTR/Makefile head/finance/R-cran-ccgarch/Makefile head/finance/R-cran-fBasics/Makefile head/finance/R-cran-lmtest/Makefile head/finance/R-cran-urca/Makefile head/ftp/R-cran-RCurl/Makefile head/graphics/R-cran-GDD/Makefile head/graphics/R-cran-png/Makefile head/graphics/R-cran-rtiff/Makefile head/java/intellij-ultimate/Makefile head/math/R-cran-Amelia/Makefile head/math/R-cran-Matching/Makefile head/math/R-cran-NMF/Makefile head/math/R-cran-RHmm/Makefile head/math/R-cran-RSvgDevice/Makefile head/math/R-cran-VGAM/Makefile head/math/R-cran-bdsmatrix/Makefile head/math/R-cran-car/Makefile head/math/R-cran-dplyr/Makefile head/math/R-cran-fracdiff/Makefile head/math/R-cran-geepack/Makefile head/math/R-cran-gpclib/Makefile head/math/R-cran-igraph/Makefile head/math/R-cran-lazyeval/Makefile head/math/R-cran-minqa/Makefile head/math/R-cran-mvtnorm/Makefile head/math/R-cran-nloptr/Makefile head/math/R-cran-nnls/Makefile head/math/R-cran-quadprog/Makefile head/math/R-cran-rgenoud/Makefile head/math/R-cran-sm/Makefile head/math/R-cran-sp/Makefile head/math/R-cran-truncnorm/Makefile head/math/R-cran-xts/Makefile head/net/p5-Net-SSH-Perl/Makefile head/science/R-cran-AMORE/Makefile head/science/R-cran-DCluster/Makefile head/science/R-cran-bayesm/Makefile head/science/R-cran-cmprsk/Makefile head/science/R-cran-eco/Makefile head/science/R-cran-etm/Makefile head/security/metasploit/Makefile head/sysutils/rubygem-vmstat/Makefile head/sysutils/timelimit/Makefile head/textproc/R-cran-R2HTML/Makefile head/textproc/R-cran-markdown/Makefile head/textproc/R-cran-pystr/Makefile head/textproc/py-genshi/Makefile head/textproc/py-rxp/Makefile head/www/R-cran-httpuv/Makefile head/www/rubygem-websocket-driver/Makefile Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Sun Jun 18 17:58:40 2017 (r443844) +++ head/Mk/Scripts/qa.sh Sun Jun 18 18:09:16 2017 (r443845) @@ -797,9 +797,35 @@ perlcore() { fi } +no_arch() { + [ -z "$NO_ARCH" ] && return + rc=0 + while read f; do + [ -z "$f" ] && continue + if [ -n "$NO_ARCH_IGNORE" ]; then + skip= + for blacklist in $NO_ARCH_IGNORE; do + case $f in + *$blacklist) skip=1; break;; + esac + done + [ "$skip" ] && continue + fi + err "'${f#.}' is a architecture specific binary file and you have set NO_ARCH. Either remove NO_ARCH or add '$(basename $f)' to NO_ARCH_IGNORE." + rc=1 + done <<-EOF + $(list_stagedir_elfs \ + | file -F $'\1' -f - -N \ + | grep -aE 'ELF .* [LM]SB .*, .*, version [0-9]+ \(FreeBSD\)' \ + | cut -f 1 -d $'\1') + EOF + return $rc +} + + checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo" checks="$checks suidfiles libtool libperl prefixvar baselibs terminfo" -checks="$checks proxydeps sonames perlcore" +checks="$checks proxydeps sonames perlcore no_arch" ret=0 cd ${STAGEDIR} Modified: head/Mk/Uses/cran.mk ============================================================================== --- head/Mk/Uses/cran.mk Sun Jun 18 17:58:40 2017 (r443844) +++ head/Mk/Uses/cran.mk Sun Jun 18 18:09:16 2017 (r443845) @@ -71,6 +71,8 @@ cran-strip: ${FIND} ${STAGEDIR}${PREFIX}/${R_MOD_DIR} -name '*.so' -exec ${STRIP_CMD} {} + .include "${PORTSDIR}/math/R/compiler.mk" .include "${USESDIR}/fortran.mk" +.else +NO_ARCH= yes .endif .endif #_INCLUDE_USES_CRAN_MK Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sun Jun 18 17:58:40 2017 (r443844) +++ head/Mk/bsd.port.mk Sun Jun 18 18:09:16 2017 (r443845) @@ -226,6 +226,10 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # # NO_ARCH - Set this if port is architecture neutral. # +# NO_ARCH_IGNORE - Set this to a list files to ignore when NO_ARCH is checked +# in stage-qa (i.e. architecture specific files that are +# 'bundled' with the port). +# # Set these if your port only makes sense to certain architectures. # They are lists containing names for them (e.g., "amd64 i386"). # (Defaults: not set.) @@ -1527,7 +1531,9 @@ QA_ENV+= STAGEDIR=${STAGEDIR} \ PKGORIGIN=${PKGORIGIN} \ LIB_RUN_DEPENDS='${_LIB_RUN_DEPENDS:C,[^:]*:([^:]*):?.*,\1,}' \ UNIFIED_DEPENDS=${_UNIFIED_DEPENDS:C,([^:]*:[^:]*):?.*,\1,:O:u:Q} \ - PKGBASE=${PKGBASE} + PKGBASE=${PKGBASE} \ + NO_ARCH=${NO_ARCH} \ + "NO_ARCH_IGNORE=${NO_ARCH_IGNORE}" .if !empty(USES:Mssl) QA_ENV+= USESSSL=yes .endif Modified: head/archivers/py-rcssmin/Makefile ============================================================================== --- head/archivers/py-rcssmin/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/archivers/py-rcssmin/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= rcssmin PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= archivers python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +15,5 @@ LICENSE= APACHE20 USES= python USE_PYTHON= autoplist distutils -NO_ARCH= yes .include Modified: head/archivers/py-rjsmin/Makefile ============================================================================== --- head/archivers/py-rjsmin/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/archivers/py-rjsmin/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= rjsmin PORTVERSION= 1.0.12 +PORTREVISION= 1 CATEGORIES= archivers python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +15,5 @@ LICENSE= APACHE20 USES= python USE_PYTHON= autoplist distutils -NO_ARCH= yes .include Modified: head/converters/R-cran-RJSONIO/Makefile ============================================================================== --- head/converters/R-cran-RJSONIO/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/converters/R-cran-RJSONIO/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= RJSONIO +PORTREVISION= 1 DISTVERSION= 1.3-0 CATEGORIES= converters DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +12,6 @@ COMMENT= Serialize R objects to JSON, JavaScript Objec LICENSE= BSD3CLAUSE -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/converters/R-cran-rjson/Makefile ============================================================================== --- head/converters/R-cran-rjson/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/converters/R-cran-rjson/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= rjson PORTVERSION= 0.2.15 +PORTREVISION= 1 CATEGORIES= converters DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -11,6 +12,6 @@ COMMENT= JSON for R LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/databases/R-cran-RSQLite.extfuns/Makefile ============================================================================== --- head/databases/R-cran-RSQLite.extfuns/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/databases/R-cran-RSQLite.extfuns/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= RSQLite.extfuns PORTVERSION= 0.0.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= databases DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -15,6 +15,6 @@ LICENSE= APACHE20 BUILD_DEPENDS= R-cran-RSQLite>=0.11.1:databases/R-cran-RSQLite RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/databases/R-cran-RSQLite/Makefile ============================================================================== --- head/databases/R-cran-RSQLite/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/databases/R-cran-RSQLite/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= RSQLite PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= databases DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -14,6 +15,6 @@ LICENSE= LGPL20 BUILD_DEPENDS= R-cran-DBI>=0.2.5:databases/R-cran-DBI RUN_DEPENDS= R-cran-DBI>=0.2.5:databases/R-cran-DBI -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/databases/p5-CDB_File/Makefile ============================================================================== --- head/databases/p5-CDB_File/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/databases/p5-CDB_File/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= CDB_File PORTVERSION= 0.98 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +14,6 @@ COMMENT= Perl5 interface to the CDB package LICENSE= ART10 GPLv1 LICENSE_COMB= dual -NO_ARCH= yes USES= perl5 shebangfix SHEBANG_FILES= bun-x.pl USE_PERL5= configure Modified: head/databases/py-psycopg2cffi/Makefile ============================================================================== --- head/databases/py-psycopg2cffi/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/databases/py-psycopg2cffi/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ PORTNAME= psycopg2cffi PORTVERSION= 2.7.5 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,8 +15,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/_cffi_backend.so:devel/py-cffi RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/_cffi_backend.so:devel/py-cffi - -NO_ARCH= yes USE_PYTHON= autoplist distutils USES= pgsql python Modified: head/databases/rubygem-tarantool/Makefile ============================================================================== --- head/databases/rubygem-tarantool/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/databases/rubygem-tarantool/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= tarantool PORTVERSION= 0.4.4.0 +PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -13,8 +14,6 @@ RUN_DEPENDS= rubygem-bin_utils>=0.0.3:devel/rubygem-bi rubygem-iproto>=0.3:net/rubygem-iproto \ rubygem-murmurhash3>=0.1.1:devel/rubygem-murmurhash3 \ rubygem-sumbur>=0.0.2:devel/rubygem-sumbur - -NO_ARCH= yes USE_RUBY= yes USES= gem Modified: head/devel/R-cran-Hmisc/Makefile ============================================================================== --- head/devel/R-cran-Hmisc/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-Hmisc/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,7 +2,7 @@ PORTNAME= Hmisc DISTVERSION= 3.10-1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +11,6 @@ COMMENT= Harrell Miscellaneous functions useful for da LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-bit/Makefile ============================================================================== --- head/devel/R-cran-bit/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-bit/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= bit +PORTREVISION= 1 DISTVERSION= 1.1-12 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +12,6 @@ COMMENT= Class for vectors of 1-bit booleans LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-bitops/Makefile ============================================================================== --- head/devel/R-cran-bitops/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-bitops/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= bitops DISTVERSION= 1.0-6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,6 +13,6 @@ COMMENT= Functions for Bitwise operations LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-caTools/Makefile ============================================================================== --- head/devel/R-cran-caTools/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-caTools/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= caTools PORTVERSION= 1.17.1 +PORTREVISION= 1 CATEGORIES= devel DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -13,6 +14,6 @@ LICENSE= GPLv3 RUN_DEPENDS= R-cran-bitops>0:devel/R-cran-bitops -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-chron/Makefile ============================================================================== --- head/devel/R-cran-chron/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-chron/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= chron DISTVERSION= 2.3-43 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -12,6 +12,6 @@ COMMENT= R package for creating objects which can hand LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-gbm/Makefile ============================================================================== --- head/devel/R-cran-gbm/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-gbm/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,7 +2,7 @@ PORTNAME= gbm DISTVERSION= 2.0-8 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +11,6 @@ COMMENT= Extensions to AdaBoost algorithm LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-glmnet/Makefile ============================================================================== --- head/devel/R-cran-glmnet/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-glmnet/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,7 +2,7 @@ PORTNAME= glmnet DISTVERSION= 1.8-5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +11,6 @@ COMMENT= Lasso and elastic-net regularized generalized LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-gtools/Makefile ============================================================================== --- head/devel/R-cran-gtools/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-gtools/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= gtools PORTVERSION= 3.5.0 +PORTREVISION= 1 CATEGORIES= devel DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -11,6 +12,6 @@ COMMENT= Various R programming tools LICENSE= GPLv2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-microbenchmark/Makefile ============================================================================== --- head/devel/R-cran-microbenchmark/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-microbenchmark/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= microbenchmark +PORTREVISION= 1 DISTVERSION= 1.4-2 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,6 +14,6 @@ LICENSE= BSD3CLAUSE RUN_DEPENDS= R-cran-ggplot2>0:graphics/R-cran-ggplot2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/devel/R-cran-plyr/Makefile ============================================================================== --- head/devel/R-cran-plyr/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/R-cran-plyr/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= plyr PORTVERSION= 1.8.4 +PORTREVISION= 1 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -17,7 +18,7 @@ LICENSE_PERMS_HW= dist-mirror dist-sell pkg-mirror pkg RUN_DEPENDS= R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp -USES= cran:auto-plist +USES= cran:auto-plist,compiles post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/R/library/plyr/libs/plyr.so Modified: head/devel/p5-Data-Structure-Util/Makefile ============================================================================== --- head/devel/p5-Data-Structure-Util/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/p5-Data-Structure-Util/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= Data-Structure-Util PORTVERSION= 0.16 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,7 +16,6 @@ LICENSE_COMB= dual TEST_DEPENDS= p5-Test-Pod>=0:devel/p5-Test-Pod -NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Mouse/Makefile ============================================================================== --- head/devel/p5-Mouse/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/p5-Mouse/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= Mouse PORTVERSION= 2.4.9 +PORTREVISION= 1 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= devel perl5 @@ -33,7 +34,6 @@ TEST_DEPENDS= p5-Declare-Constraints-Simple>=0:devel/p p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-URI>=0:net/p5-URI -NO_ARCH= yes USES= perl5 USE_PERL5= modbuild Modified: head/devel/p5-Opcodes/Makefile ============================================================================== --- head/devel/p5-Opcodes/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/p5-Opcodes/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= Opcodes PORTVERSION= 0.14 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RURBAN @@ -16,7 +17,6 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= configure -NO_ARCH= yes #pre-install: test Modified: head/devel/py-atomiclong/Makefile ============================================================================== --- head/devel/py-atomiclong/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/py-atomiclong/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ PORTNAME= atomiclong PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,7 +16,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest -NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils Modified: head/devel/pyside-tools/Makefile ============================================================================== --- head/devel/pyside-tools/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/devel/pyside-tools/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= pyside-tools PORTVERSION= 0.2.15 +PORTREVISION= 1 CATEGORIES= devel PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} @@ -20,7 +21,6 @@ USE_GITHUB= yes GH_ACCOUNT= PySide GH_PROJECT= Tools -NO_ARCH= yes USES= cmake python:2 shebangfix SHEBANG_FILES= pyside-uic pysideuic/icon_cache.py USE_QT4= moc_build qmake_build rcc_build uic_build Modified: head/finance/R-cran-PerformanceAnalytics/Makefile ============================================================================== --- head/finance/R-cran-PerformanceAnalytics/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/finance/R-cran-PerformanceAnalytics/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= PerformanceAnalytics PORTVERSION= 1.4.3541 +PORTREVISION= 1 CATEGORIES= finance DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -15,6 +16,6 @@ LICENSE_COMB= dual RUN_DEPENDS= R-cran-zoo>0:math/R-cran-zoo \ R-cran-xts>=0.9:math/R-cran-xts -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/finance/R-cran-TTR/Makefile ============================================================================== --- head/finance/R-cran-TTR/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/finance/R-cran-TTR/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= TTR +PORTREVISION= 1 DISTVERSION= 0.23-1 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,6 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-xts>=0.9.3:math/R-cran-xts -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/finance/R-cran-ccgarch/Makefile ============================================================================== --- head/finance/R-cran-ccgarch/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/finance/R-cran-ccgarch/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= ccgarch DISTVERSION= 0.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,6 +13,6 @@ COMMENT= Conditional Correlation GARCH models LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/finance/R-cran-fBasics/Makefile ============================================================================== --- head/finance/R-cran-fBasics/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/finance/R-cran-fBasics/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= fBasics PORTVERSION= 3011.87 +PORTREVISION= 1 CATEGORIES= finance DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -17,6 +18,6 @@ RUN_DEPENDS= R-cran-timeDate>0:finance/R-cran-timeDate R-cran-stabledist>0:math/R-cran-stabledist \ R-cran-gss>0:math/R-cran-gss -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/finance/R-cran-lmtest/Makefile ============================================================================== --- head/finance/R-cran-lmtest/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/finance/R-cran-lmtest/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= lmtest +PORTREVISION= 1 DISTVERSION= 0.9-35 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -15,6 +16,6 @@ RUN_DEPENDS= R-cran-zoo>=0:math/R-cran-zoo \ R-cran-strucchange>0:finance/R-cran-strucchange \ R-cran-sandwich>=2.2.4:math/R-cran-sandwich -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/finance/R-cran-urca/Makefile ============================================================================== --- head/finance/R-cran-urca/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/finance/R-cran-urca/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= urca +PORTREVISION= 1 DISTVERSION= 1.3-0 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +12,6 @@ COMMENT= Unit root and cointegration tests for time se LICENSE= GPLv2+ -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/ftp/R-cran-RCurl/Makefile ============================================================================== --- head/ftp/R-cran-RCurl/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/ftp/R-cran-RCurl/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= RCurl +PORTREVISION= 1 DISTVERSION= 1.95-4.8 CATEGORIES= ftp DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -15,6 +16,6 @@ BUILD_DEPENDS= curl-config:ftp/curl RUN_DEPENDS= R-cran-bitops>0:devel/R-cran-bitops LIB_DEPENDS= libcurl.so:ftp/curl -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/graphics/R-cran-GDD/Makefile ============================================================================== --- head/graphics/R-cran-GDD/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/graphics/R-cran-GDD/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= GDD DISTVERSION= 0.1-13.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -17,6 +17,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} WRKSRC= ${WRKDIR}/${PORTNAME} -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/graphics/R-cran-png/Makefile ============================================================================== --- head/graphics/R-cran-png/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/graphics/R-cran-png/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= png DISTVERSION= 0.1-7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -15,6 +15,6 @@ LICENSE_COMB= dual LIB_DEPENDS= libpng.so:graphics/png -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/graphics/R-cran-rtiff/Makefile ============================================================================== --- head/graphics/R-cran-rtiff/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/graphics/R-cran-rtiff/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= rtiff PORTVERSION= 1.4.5 +PORTREVISION= 1 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -14,7 +15,7 @@ LICENSE= GPLv3 LIB_DEPENDS= libtiff.so:graphics/tiff RUN_DEPENDS= R-cran-pixmap>0:graphics/R-cran-pixmap -USES= cran:auto-plist +USES= cran:auto-plist,compiles LDFLAGS+= -L${LOCALBASE}/lib Modified: head/java/intellij-ultimate/Makefile ============================================================================== --- head/java/intellij-ultimate/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/java/intellij-ultimate/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -25,6 +25,8 @@ USE_JAVA= yes JAVA_VERSION= 1.8+ NO_ARCH= yes +NO_ARCH_IGNORE= libnative_auth.so libnative_console.so libnative_filesystem.so \ + libnative_misc.so libnative_synchronization.so NO_BUILD= yes USE_LDCONFIG= ${IDEA_HOME}/plugins/tfsIntegration/lib/native/freebsd/x86_64/ USE_LDCONFIG32= ${IDEA_HOME}/plugins/tfsIntegration/lib/native/freebsd/x86/ Modified: head/math/R-cran-Amelia/Makefile ============================================================================== --- head/math/R-cran-Amelia/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-Amelia/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= Amelia +PORTREVISION= 1 DISTVERSION= 1.7.4 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -17,6 +18,6 @@ BUILD_DEPENDS= R-cran-Rcpp>=0.11:devel/R-cran-Rcpp \ RUN_DEPENDS= R-cran-Rcpp>=0.11:devel/R-cran-Rcpp \ R-cran-RcppArmadillo>=0:math/R-cran-RcppArmadillo -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-Matching/Makefile ============================================================================== --- head/math/R-cran-Matching/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-Matching/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= Matching +PORTREVISION= 1 DISTVERSION= 4.9-2 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -12,6 +13,6 @@ COMMENT= Multivariate and Propensity Score Matching wi LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-NMF/Makefile ============================================================================== --- head/math/R-cran-NMF/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-NMF/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= NMF PORTVERSION= 0.20.6 +PORTREVISION= 1 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -25,6 +26,6 @@ RUN_DEPENDS= R-cran-pkgmaker>=0.20:devel/R-cran-pkgmak R-cran-ggplot2>0:graphics/R-cran-ggplot2 \ R-cran-reshape2>0:devel/R-cran-reshape2 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-RHmm/Makefile ============================================================================== --- head/math/R-cran-RHmm/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-RHmm/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= RHmm PORTVERSION= 2.0.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -13,6 +13,6 @@ COMMENT= Hidden Markov Models simulations and estimati LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-RSvgDevice/Makefile ============================================================================== --- head/math/R-cran-RSvgDevice/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-RSvgDevice/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= RSvgDevice PORTVERSION= 0.6.4.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -13,6 +13,6 @@ COMMENT= R SVG graphics device LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-VGAM/Makefile ============================================================================== --- head/math/R-cran-VGAM/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-VGAM/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= VGAM +PORTREVISION= 1 DISTVERSION= 1.0-3 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -12,6 +13,6 @@ COMMENT= Vector Generalized Linear and Additive Models LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-bdsmatrix/Makefile ============================================================================== --- head/math/R-cran-bdsmatrix/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-bdsmatrix/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= bdsmatrix DISTVERSION= 1.3-2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -12,6 +12,6 @@ COMMENT= Routines for Block Diagonal Symmetric matrice LICENSE= LGPL20 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-car/Makefile ============================================================================== --- head/math/R-cran-car/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-car/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -23,6 +23,4 @@ TEST_DEPENDS= R-cran-lmtest>0:finance/R-cran-lmtest \ USES= cran:auto-plist -NO_ARCH= yes - .include Modified: head/math/R-cran-dplyr/Makefile ============================================================================== --- head/math/R-cran-dplyr/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-dplyr/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= dplyr +PORTREVISION= 1 DISTVERSION= 0.5.0 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -21,6 +22,6 @@ BUILD_DEPENDS= R-cran-Rcpp>=0.11:devel/R-cran-Rcpp \ R-cran-assertthat>=0:math/R-cran-assertthat RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-fracdiff/Makefile ============================================================================== --- head/math/R-cran-fracdiff/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-fracdiff/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,7 +3,7 @@ PORTNAME= fracdiff DISTVERSION= 1.4-2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,6 +13,6 @@ COMMENT= Fractionally differenced ARIMA aka ARFIMA(p,d LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-geepack/Makefile ============================================================================== --- head/math/R-cran-geepack/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-geepack/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= geepack +PORTREVISION= 1 DISTVERSION= 1.2-1 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +12,6 @@ COMMENT= Generalized Estimating Equation Package LICENSE= GPLv3 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-gpclib/Makefile ============================================================================== --- head/math/R-cran-gpclib/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-gpclib/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,13 +3,13 @@ PORTNAME= gpclib DISTVERSION= 1.5-5 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= General Polygon Clipping Library for R -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-igraph/Makefile ============================================================================== --- head/math/R-cran-igraph/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-igraph/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= igraph +PORTREVISION= 1 DISTVERSION= 1.0.1 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -17,7 +18,7 @@ RUN_DEPENDS= R-cran-magrittr>0:devel/R-cran-magrittr \ R-cran-NMF>0:math/R-cran-NMF \ R-cran-irlba>0:math/R-cran-irlba -USES= cran:auto-plist +USES= cran:auto-plist,compiles USE_GNOME= libxml2 .include Modified: head/math/R-cran-lazyeval/Makefile ============================================================================== --- head/math/R-cran-lazyeval/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-lazyeval/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -2,6 +2,7 @@ # $FreeBSD$ PORTNAME= lazyeval +PORTREVISION= 1 DISTVERSION= 0.2.0 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,6 +12,6 @@ COMMENT= Disciplined approach to non-standard evaluati LICENSE= GPLv3 -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-minqa/Makefile ============================================================================== --- head/math/R-cran-minqa/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-minqa/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= minqa PORTVERSION= 1.2.4 +PORTREVISION= 1 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -13,6 +14,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R-cran-Rcpp>=0.9.10:devel/R-cran-Rcpp -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-mvtnorm/Makefile ============================================================================== --- head/math/R-cran-mvtnorm/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-mvtnorm/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,13 +3,13 @@ PORTNAME= mvtnorm PORTVERSION= 0.9.96 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION:C/\./-/g:C/-/./1} MAINTAINER= wen@FreeBSD.org COMMENT= Multivariate Normal and t Distributions -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-nloptr/Makefile ============================================================================== --- head/math/R-cran-nloptr/Makefile Sun Jun 18 17:58:40 2017 (r443844) +++ head/math/R-cran-nloptr/Makefile Sun Jun 18 18:09:16 2017 (r443845) @@ -3,6 +3,7 @@ PORTNAME= nloptr PORTVERSION= 1.0.4 +PORTREVISION= 1 CATEGORIES= math *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Sun Jun 18 18:50:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18C2CD8BBA0; Sun, 18 Jun 2017 18:50:46 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8C9D78458; Sun, 18 Jun 2017 18:50:45 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IIojA9091429; Sun, 18 Jun 2017 18:50:45 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IIoil1091425; Sun, 18 Jun 2017 18:50:44 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706181850.v5IIoil1091425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sun, 18 Jun 2017 18:50:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443846 - head/devel/liteide X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 18:50:46 -0000 Author: ultima Date: Sun Jun 18 18:50:44 2017 New Revision: 443846 URL: https://svnweb.freebsd.org/changeset/ports/443846 Log: * Updated to 32 * Changed default to QT5 Changelog: https://github.com/visualfc/liteide/releases/tag/x32 PR: 220067 Submitted by: Dmitri Goutnik (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11257 Modified: head/devel/liteide/Makefile head/devel/liteide/distinfo head/devel/liteide/pkg-message head/devel/liteide/pkg-plist Modified: head/devel/liteide/Makefile ============================================================================== --- head/devel/liteide/Makefile Sun Jun 18 18:09:16 2017 (r443845) +++ head/devel/liteide/Makefile Sun Jun 18 18:50:44 2017 (r443846) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= liteide -PORTVERSION= 31 +PORTVERSION= 32 DISTVERSIONPREFIX= x CATEGORIES= devel editors @@ -28,7 +28,7 @@ ICON_SIZES= 16 24 32 48 64 128 OPTIONS_DEFINE= DEBUG DOCS OPTIONS_SINGLE= QT OPTIONS_SINGLE_QT= QT4 QT5 -OPTIONS_DEFAULT= QT4 +OPTIONS_DEFAULT= QT5 OPTIONS_SUB= yes DEBUG_CONFIGURE_ENABLE= debug Modified: head/devel/liteide/distinfo ============================================================================== --- head/devel/liteide/distinfo Sun Jun 18 18:09:16 2017 (r443845) +++ head/devel/liteide/distinfo Sun Jun 18 18:50:44 2017 (r443846) @@ -1,3 +1,3 @@ -TIMESTAMP = 1488552551 -SHA256 (visualfc-liteide-x31_GH0.tar.gz) = e71ea7d119d6788ea94025231d466a2e881d864cdd03eb3a4d851910271ce459 -SIZE (visualfc-liteide-x31_GH0.tar.gz) = 2329597 +TIMESTAMP = 1497557725 +SHA256 (visualfc-liteide-x32_GH0.tar.gz) = dcc4dc8c6a2fa7ae0582dd18ecc0884a8d7c804eb78b433aac70149fef743ee0 +SIZE (visualfc-liteide-x32_GH0.tar.gz) = 2355398 Modified: head/devel/liteide/pkg-message ============================================================================== --- head/devel/liteide/pkg-message Sun Jun 18 18:09:16 2017 (r443845) +++ head/devel/liteide/pkg-message Sun Jun 18 18:50:44 2017 (r443846) @@ -1,11 +1,15 @@ -====================================================================== +======================================================================= In order to have full Go support, please install LiteIDE Golang Tools: go get -u github.com/visualfc/gotools -To have code autocompletion, you'll also need gocode: +and set LITEIDE_TOOL_PATH environment variable to point to the directory +where gotools binary is installed. To have code autocompletion, you'll +also need gocode: + go get -u github.com/nsf/gocode +or pkg install devel/go-gocode -====================================================================== +======================================================================= Modified: head/devel/liteide/pkg-plist ============================================================================== --- head/devel/liteide/pkg-plist Sun Jun 18 18:09:16 2017 (r443845) +++ head/devel/liteide/pkg-plist Sun Jun 18 18:50:44 2017 (r443846) @@ -15,6 +15,7 @@ lib/liteide/libgolangapi.a lib/liteide/libgolangastapi.a lib/liteide/libgolangdocapi.a lib/liteide/libhtmlutil.a +lib/liteide/libiconutil.a lib/liteide/libjson.a lib/liteide/libliteapi.a lib/liteide/libliteapp.so @@ -78,9 +79,13 @@ share/icons/hicolor/64x64/apps/liteide.png %%DATADIR%%/liteapp/mimetype/liteeditor.xml %%DATADIR%%/liteapp/mimetype/qsqleditor.xml %%DATADIR%%/liteapp/qss/black.qss +%%DATADIR%%/liteapp/qss/carbon.qss %%DATADIR%%/liteapp/qss/coffee.qss %%DATADIR%%/liteapp/qss/default.qss +%%DATADIR%%/liteapp/qss/default_macos.qss %%DATADIR%%/liteapp/qss/evilworks.qss +%%DATADIR%%/liteapp/qss/gray.qss +%%DATADIR%%/liteapp/qss/sublime.qss %%DATADIR%%/liteapp/qss/vs-dark.qss %%DATADIR%%/liteapp/template/empty/root %%DATADIR%%/liteapp/template/empty/setup.inf @@ -105,56 +110,13 @@ share/icons/hicolor/64x64/apps/liteide.png %%DATADIR%%/liteapp/template/mdsrc/root.md %%DATADIR%%/liteapp/template/mdsrc/setup.inf %%DATADIR%%/liteapp/template/project.sub -%%DATADIR%%/litebuild/blue/bk.png -%%DATADIR%%/litebuild/blue/build.png -%%DATADIR%%/litebuild/blue/builddebug.png -%%DATADIR%%/litebuild/blue/buildrun.png -%%DATADIR%%/litebuild/blue/buildtest.png -%%DATADIR%%/litebuild/blue/clean.png -%%DATADIR%%/litebuild/blue/cleanall.png -%%DATADIR%%/litebuild/blue/cover.png -%%DATADIR%%/litebuild/blue/debug.png -%%DATADIR%%/litebuild/blue/doc.png -%%DATADIR%%/litebuild/blue/filebuild.png -%%DATADIR%%/litebuild/blue/filerun.png -%%DATADIR%%/litebuild/blue/filetest.png -%%DATADIR%%/litebuild/blue/fmt.png -%%DATADIR%%/litebuild/blue/get.png -%%DATADIR%%/litebuild/blue/gopm.png -%%DATADIR%%/litebuild/blue/image.pdn -%%DATADIR%%/litebuild/blue/install.png -%%DATADIR%%/litebuild/blue/lint.png -%%DATADIR%%/litebuild/blue/rebuild.png -%%DATADIR%%/litebuild/blue/reget.png -%%DATADIR%%/litebuild/blue/run.png -%%DATADIR%%/litebuild/blue/runterm.png -%%DATADIR%%/litebuild/blue/test.png -%%DATADIR%%/litebuild/blue/testbench.png -%%DATADIR%%/litebuild/blue/testcover.png -%%DATADIR%%/litebuild/blue/update.png -%%DATADIR%%/litebuild/blue/utils.png -%%DATADIR%%/litebuild/blue/vet.png %%DATADIR%%/litebuild/build.md %%DATADIR%%/litebuild/command/go.api %%DATADIR%%/litebuild/gosrc.xml -%%DATADIR%%/litebuild/gray/bk.png -%%DATADIR%%/litebuild/gray/build.png -%%DATADIR%%/litebuild/gray/buildrun.png -%%DATADIR%%/litebuild/gray/clean.png -%%DATADIR%%/litebuild/gray/cleanall.png -%%DATADIR%%/litebuild/gray/filebuild.png -%%DATADIR%%/litebuild/gray/filerun.png -%%DATADIR%%/litebuild/gray/fmt.png -%%DATADIR%%/litebuild/gray/install.png -%%DATADIR%%/litebuild/gray/run.png -%%DATADIR%%/litebuild/gray/runterm.png -%%DATADIR%%/litebuild/gray/test.png -%%DATADIR%%/litebuild/gray/vet.png %%DATADIR%%/litebuild/lua.xml %%DATADIR%%/litebuild/python.xml %%DATADIR%%/litebuild/qlang.xml %%DATADIR%%/litebuild/rust.xml -%%DATADIR%%/litebuild/tmpl/image.pdn %%DATADIR%%/liteeditor/color/carbon.xml %%DATADIR%%/liteeditor/color/clearday.xml %%DATADIR%%/liteeditor/color/cobalt black.xml @@ -174,6 +136,7 @@ share/icons/hicolor/64x64/apps/liteide.png %%DATADIR%%/liteeditor/color/visualstudio.xml %%DATADIR%%/liteeditor/kate/alert.xml %%DATADIR%%/liteeditor/kate/alert_indent.xml +%%DATADIR%%/liteeditor/kate/awk.xml %%DATADIR%%/liteeditor/kate/bash.xml %%DATADIR%%/liteeditor/kate/c.xml %%DATADIR%%/liteeditor/kate/cmake.xml From owner-svn-ports-head@freebsd.org Sun Jun 18 18:56:19 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2E03D8BBF5; Sun, 18 Jun 2017 18:56:19 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 813D27877E; Sun, 18 Jun 2017 18:56:19 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IIuID1095278; Sun, 18 Jun 2017 18:56:18 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IIuIRG095276; Sun, 18 Jun 2017 18:56:18 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706181856.v5IIuIRG095276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sun, 18 Jun 2017 18:56:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443847 - head/databases/mongodb34-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: Sun, 18 Jun 2017 18:56:19 -0000 Author: ultima Date: Sun Jun 18 18:56:18 2017 New Revision: 443847 URL: https://svnweb.freebsd.org/changeset/ports/443847 Log: * Updated to 3.4.5 Changelog: https://github.com/mongodb/mongo-tools/commits/r3.4.5 PR: 220046 Submitted by: Šimun Mikecin (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11255 Modified: head/databases/mongodb34-tools/Makefile head/databases/mongodb34-tools/distinfo Modified: head/databases/mongodb34-tools/Makefile ============================================================================== --- head/databases/mongodb34-tools/Makefile Sun Jun 18 18:50:44 2017 (r443846) +++ head/databases/mongodb34-tools/Makefile Sun Jun 18 18:56:18 2017 (r443847) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mongodb34-tools -PORTVERSION= 3.4.4 +PORTVERSION= 3.4.5 DISTVERSIONPREFIX= r CATEGORIES= databases net Modified: head/databases/mongodb34-tools/distinfo ============================================================================== --- head/databases/mongodb34-tools/distinfo Sun Jun 18 18:50:44 2017 (r443846) +++ head/databases/mongodb34-tools/distinfo Sun Jun 18 18:56:18 2017 (r443847) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493214871 -SHA256 (mongodb-mongo-tools-r3.4.4_GH0.tar.gz) = d14f4ce153aec373459c802e5a159661ccfde4e5df39d8d750586bae54896cdd -SIZE (mongodb-mongo-tools-r3.4.4_GH0.tar.gz) = 4700326 +TIMESTAMP = 1497616431 +SHA256 (mongodb-mongo-tools-r3.4.5_GH0.tar.gz) = e6fd1b17199a5c52cdf2a6d771c5e34ee406cd7897441cdd1fc48cc69a3f42aa +SIZE (mongodb-mongo-tools-r3.4.5_GH0.tar.gz) = 4712420 From owner-svn-ports-head@freebsd.org Sun Jun 18 19:28:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8D1BD8C547; Sun, 18 Jun 2017 19:28:41 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7406979476; Sun, 18 Jun 2017 19:28:41 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IJSewo008202; Sun, 18 Jun 2017 19:28:40 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IJSemx008198; Sun, 18 Jun 2017 19:28:40 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706181928.v5IJSemx008198@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 18 Jun 2017 19:28:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443848 - in head/devel: . py-bsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 19:28:41 -0000 Author: wg Date: Sun Jun 18 19:28:40 2017 New Revision: 443848 URL: https://svnweb.freebsd.org/changeset/ports/443848 Log: devel/py-bsd: Python wrappers for various BSD libc and system calls WWW: https://github.com/freenas/py-bsd Added: head/devel/py-bsd/ head/devel/py-bsd/Makefile (contents, props changed) head/devel/py-bsd/distinfo (contents, props changed) head/devel/py-bsd/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 18 18:56:18 2017 (r443847) +++ head/devel/Makefile Sun Jun 18 19:28:40 2017 (r443848) @@ -4176,6 +4176,7 @@ SUBDIR += py-bluelet SUBDIR += py-boto SUBDIR += py-botocore + SUBDIR += py-bsd SUBDIR += py-cached-property SUBDIR += py-cachetools SUBDIR += py-calendar Added: head/devel/py-bsd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bsd/Makefile Sun Jun 18 19:28:40 2017 (r443848) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= netif +PORTVERSION= 1.0.20170329 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Python wrappers for various BSD libc and system calls + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= cython>0:lang/cython \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +USE_GITHUB= yes +GH_ACCOUNT= freenas +GH_PROJECT= py-bsd +GH_TAGNAME= 6d148fa + +USES= python +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34 +.endif + +.include Added: head/devel/py-bsd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bsd/distinfo Sun Jun 18 19:28:40 2017 (r443848) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497784988 +SHA256 (freenas-py-bsd-1.0.20170329-6d148fa_GH0.tar.gz) = 3398de5028f197572ed4bc2c8952283a2462cf1b38477d5a2a38ce26ce689b4a +SIZE (freenas-py-bsd-1.0.20170329-6d148fa_GH0.tar.gz) = 44561 Added: head/devel/py-bsd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bsd/pkg-descr Sun Jun 18 19:28:40 2017 (r443848) @@ -0,0 +1,3 @@ +Python wrappers for various BSD libc and system calls. + +WWW: https://github.com/freenas/py-bsd From owner-svn-ports-head@freebsd.org Sun Jun 18 19:35:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DB07D8C6D8; Sun, 18 Jun 2017 19:35:28 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3E9679814; Sun, 18 Jun 2017 19:35:27 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IJZR1O012089; Sun, 18 Jun 2017 19:35:27 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IJZRP3012088; Sun, 18 Jun 2017 19:35:27 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706181935.v5IJZRP3012088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 18 Jun 2017 19:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443849 - head/devel/py-bsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 19:35:28 -0000 Author: wg Date: Sun Jun 18 19:35:26 2017 New Revision: 443849 URL: https://svnweb.freebsd.org/changeset/ports/443849 Log: devel/py-bsd: fix copy-n-paste Modified: head/devel/py-bsd/Makefile Modified: head/devel/py-bsd/Makefile ============================================================================== --- head/devel/py-bsd/Makefile Sun Jun 18 19:28:40 2017 (r443848) +++ head/devel/py-bsd/Makefile Sun Jun 18 19:35:26 2017 (r443849) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTNAME= netif +PORTNAME= bsd PORTVERSION= 1.0.20170329 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} From owner-svn-ports-head@freebsd.org Sun Jun 18 19:36:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8CA3D8C732; Sun, 18 Jun 2017 19:36:38 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4696798F4; Sun, 18 Jun 2017 19:36:38 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IJab6x012232; Sun, 18 Jun 2017 19:36:37 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IJab0d012231; Sun, 18 Jun 2017 19:36:37 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706181936.v5IJab0d012231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 18 Jun 2017 19:36:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443850 - head/net/py-netif X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 19:36:38 -0000 Author: wg Date: Sun Jun 18 19:36:37 2017 New Revision: 443850 URL: https://svnweb.freebsd.org/changeset/ports/443850 Log: net/py-netif: depends on py-bsd Modified: head/net/py-netif/Makefile Modified: head/net/py-netif/Makefile ============================================================================== --- head/net/py-netif/Makefile Sun Jun 18 19:35:26 2017 (r443849) +++ head/net/py-netif/Makefile Sun Jun 18 19:36:37 2017 (r443850) @@ -3,6 +3,7 @@ PORTNAME= netif PORTVERSION= 1.0.20170424 +PORTREVISION= 1 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,6 +13,7 @@ COMMENT= Python network configuration library for Free LICENSE= BSD2CLAUSE BUILD_DEPENDS= cython>0:lang/cython +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsd>0:devel/py-bsd USE_GITHUB= yes GH_ACCOUNT= freenas From owner-svn-ports-head@freebsd.org Sun Jun 18 19:38:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37206D8C784; Sun, 18 Jun 2017 19:38:21 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E15B799DB; Sun, 18 Jun 2017 19:38:20 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IJcKKJ012450; Sun, 18 Jun 2017 19:38:20 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IJcJAB012445; Sun, 18 Jun 2017 19:38:19 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706181938.v5IJcJAB012445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sun, 18 Jun 2017 19:38:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443851 - in head/cad/freecad: . 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, 18 Jun 2017 19:38:21 -0000 Author: ultima Date: Sun Jun 18 19:38:19 2017 New Revision: 443851 URL: https://svnweb.freebsd.org/changeset/ports/443851 Log: * Updated to 20170527 (d28bae3) PR: 219624 Submitted by: Thibault Jouan (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11254 Added: head/cad/freecad/files/patch-src_Base_Console.cpp (contents, props changed) Modified: head/cad/freecad/Makefile head/cad/freecad/distinfo head/cad/freecad/files/patch-src_Gui_CMakeLists.txt head/cad/freecad/pkg-plist Modified: head/cad/freecad/Makefile ============================================================================== --- head/cad/freecad/Makefile Sun Jun 18 19:36:37 2017 (r443850) +++ head/cad/freecad/Makefile Sun Jun 18 19:38:19 2017 (r443851) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= FreeCAD -DISTVERSION= 0.17.g20170310 -PORTREVISION= 5 +DISTVERSION= 0.17.g20170616 CATEGORIES= cad MAINTAINER= tj+freebsd_ports@a13.fr @@ -33,7 +32,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ RUN_DEPENDS= pivy>0:graphics/py-pivy USE_GITHUB= yes -GH_TAGNAME= 91c59c7 +GH_TAGNAME= d28bae3 USES= dos2unix compiler:c++11-lib cmake:outsource fortran jpeg \ python localbase Modified: head/cad/freecad/distinfo ============================================================================== --- head/cad/freecad/distinfo Sun Jun 18 19:36:37 2017 (r443850) +++ head/cad/freecad/distinfo Sun Jun 18 19:38:19 2017 (r443851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489314013 -SHA256 (FreeCAD-FreeCAD-0.17.g20170310-91c59c7_GH0.tar.gz) = a3f97637842f2215f1be90dd876c23a2446a939aabe10e3c2fdf583e68dfa333 -SIZE (FreeCAD-FreeCAD-0.17.g20170310-91c59c7_GH0.tar.gz) = 120327486 +TIMESTAMP = 1497621665 +SHA256 (FreeCAD-FreeCAD-0.17.g20170616-d28bae3_GH0.tar.gz) = 3da1d1384bfdf573a4edca04ba97be8abfa4847d0479ec3cc8d11aa73a193a82 +SIZE (FreeCAD-FreeCAD-0.17.g20170616-d28bae3_GH0.tar.gz) = 120122816 Added: head/cad/freecad/files/patch-src_Base_Console.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/freecad/files/patch-src_Base_Console.cpp Sun Jun 18 19:38:19 2017 (r443851) @@ -0,0 +1,11 @@ +--- src/Base/Console.cpp.orig 2017-06-16 13:04:23 UTC ++++ src/Base/Console.cpp +@@ -714,7 +714,7 @@ void ConsoleObserverFile::Log (const + ConsoleObserverStd::ConsoleObserverStd() : + # if defined(FC_OS_WIN32) + useColorStderr( true ) +-# elif defined(FC_OS_LINUX) || defined(FC_OS_MACOSX) ++# else + useColorStderr( isatty(STDERR_FILENO) ) + # endif + { Modified: head/cad/freecad/files/patch-src_Gui_CMakeLists.txt ============================================================================== --- head/cad/freecad/files/patch-src_Gui_CMakeLists.txt Sun Jun 18 19:36:37 2017 (r443850) +++ head/cad/freecad/files/patch-src_Gui_CMakeLists.txt Sun Jun 18 19:38:19 2017 (r443851) @@ -1,8 +1,8 @@ ---- src/Gui/CMakeLists.txt.orig 2016-09-07 14:39:54 UTC +--- src/Gui/CMakeLists.txt.orig 2017-06-16 13:00:26 UTC +++ src/Gui/CMakeLists.txt -@@ -57,7 +57,7 @@ else(MSVC) +@@ -58,7 +58,7 @@ else(MSVC) + FreeCADApp ${COIN3D_LIBRARIES} - ${QT_LIBRARIES} ${Boost_LIBRARIES} - ${OPENGL_gl_LIBRARY} + ${OPENGL_gl_LIBRARY} -L%%LOCALBASE%%/lib Modified: head/cad/freecad/pkg-plist ============================================================================== --- head/cad/freecad/pkg-plist Sun Jun 18 19:36:37 2017 (r443850) +++ head/cad/freecad/pkg-plist Sun Jun 18 19:38:19 2017 (r443851) @@ -20,7 +20,6 @@ FreeCAD/Mod/Arch/ArchRebar.py FreeCAD/Mod/Arch/ArchRoof.py FreeCAD/Mod/Arch/ArchSchedule.py FreeCAD/Mod/Arch/ArchSectionPlane.py -FreeCAD/Mod/Arch/ArchServer.py FreeCAD/Mod/Arch/ArchSite.py FreeCAD/Mod/Arch/ArchSpace.py FreeCAD/Mod/Arch/ArchStairs.py @@ -155,24 +154,28 @@ FreeCAD/Mod/Fem/importToolsFem.py FreeCAD/Mod/Fem/importVTKResults.py FreeCAD/Mod/Fem/importZ88Mesh.py FreeCAD/Mod/Fem/importZ88O2Results.py +FreeCAD/Mod/Fem/readFenicsXDMF.py +FreeCAD/Mod/Fem/readFenicsXML.py +FreeCAD/Mod/Fem/test_files/__init__.py +FreeCAD/Mod/Fem/test_files/ccx/__init__.py FreeCAD/Mod/Fem/test_files/ccx/cube.fcstd FreeCAD/Mod/Fem/test_files/ccx/cube_frequency.dat FreeCAD/Mod/Fem/test_files/ccx/cube_frequency.frd FreeCAD/Mod/Fem/test_files/ccx/cube_frequency.inp FreeCAD/Mod/Fem/test_files/ccx/cube_frequency_expected_values +FreeCAD/Mod/Fem/test_files/ccx/cube_mesh.py FreeCAD/Mod/Fem/test_files/ccx/cube_static.dat FreeCAD/Mod/Fem/test_files/ccx/cube_static.frd FreeCAD/Mod/Fem/test_files/ccx/cube_static.inp FreeCAD/Mod/Fem/test_files/ccx/cube_static_expected_values -FreeCAD/Mod/Fem/test_files/ccx/mesh_points.csv -FreeCAD/Mod/Fem/test_files/ccx/mesh_volumes.csv -FreeCAD/Mod/Fem/test_files/ccx/spine_points.csv +FreeCAD/Mod/Fem/test_files/ccx/spine_mesh.py FreeCAD/Mod/Fem/test_files/ccx/spine_thermomech.dat FreeCAD/Mod/Fem/test_files/ccx/spine_thermomech.fcstd FreeCAD/Mod/Fem/test_files/ccx/spine_thermomech.frd FreeCAD/Mod/Fem/test_files/ccx/spine_thermomech.inp FreeCAD/Mod/Fem/test_files/ccx/spine_thermomech_expected_values -FreeCAD/Mod/Fem/test_files/ccx/spine_volumes.csv +FreeCAD/Mod/Fem/writeFenicsXDMF.py +FreeCAD/Mod/Fem/writeFenicsXML.py FreeCAD/Mod/Idf/Idf.py FreeCAD/Mod/Idf/Idflibs/0603_SMD.stp FreeCAD/Mod/Idf/Idflibs/0805_SMD.stp @@ -345,7 +348,6 @@ FreeCAD/Mod/Path/PathScripts/PathToolLenOffset.py FreeCAD/Mod/Path/PathScripts/PathToolLibraryManager.py FreeCAD/Mod/Path/PathScripts/PathUtils.py FreeCAD/Mod/Path/PathScripts/PostUtils.py -FreeCAD/Mod/Path/PathScripts/TooltableEditor.py FreeCAD/Mod/Path/PathScripts/__init__.py FreeCAD/Mod/Path/PathScripts/centroid_post.py FreeCAD/Mod/Path/PathScripts/comparams_post.py @@ -355,16 +357,13 @@ FreeCAD/Mod/Path/PathScripts/example_post.py FreeCAD/Mod/Path/PathScripts/example_pre.py FreeCAD/Mod/Path/PathScripts/kdtree.py FreeCAD/Mod/Path/PathScripts/linuxcnc_post.py -FreeCAD/Mod/Path/PathScripts/nc/__init__.py -FreeCAD/Mod/Path/PathScripts/nc/format.py -FreeCAD/Mod/Path/PathScripts/nc/iso.py -FreeCAD/Mod/Path/PathScripts/nc/iso_codes.py -FreeCAD/Mod/Path/PathScripts/nc/nc.py FreeCAD/Mod/Path/PathScripts/opensbp_post.py FreeCAD/Mod/Path/PathScripts/opensbp_pre.py FreeCAD/Mod/Path/PathScripts/phillips_post.py +FreeCAD/Mod/Path/PathScripts/PathDressupRampEntry.py FreeCAD/Mod/Path/PathScripts/rml_post.py FreeCAD/Mod/Path/PathScripts/slic3r_pre.py +FreeCAD/Mod/Path/PathScripts/smoothie_post.py FreeCAD/Mod/Path/PathTests/PathTestUtils.py FreeCAD/Mod/Path/PathTests/TestPathCore.py FreeCAD/Mod/Path/PathTests/TestPathDepthParams.py @@ -486,7 +485,10 @@ FreeCAD/Mod/Spreadsheet/importXLSX.py FreeCAD/Mod/Start/Init.py FreeCAD/Mod/Start/InitGui.py FreeCAD/Mod/Start/StartPage/StartPage.py +FreeCAD/Mod/Start/StartPage/TranslationTexts.py FreeCAD/Mod/Start/StartPage/__init__.py +FreeCAD/Mod/Surface/Init.py +FreeCAD/Mod/Surface/InitGui.py FreeCAD/Mod/TechDraw/Init.py FreeCAD/Mod/TechDraw/InitGui.py FreeCAD/Mod/TechDraw/TestTechDrawApp.py @@ -500,9 +502,12 @@ FreeCAD/Mod/Test/TestGui.py FreeCAD/Mod/Test/UnicodeTests.py FreeCAD/Mod/Test/UnitTests.py FreeCAD/Mod/Test/Workbench.py +FreeCAD/Mod/Test/__init__.py FreeCAD/Mod/Test/qtunittest.py FreeCAD/Mod/Test/testmakeWireString.py FreeCAD/Mod/Test/unittestgui.py +FreeCAD/Mod/Tux/PersistentToolbars.py +FreeCAD/Mod/Tux/PersistentToolbarsGui.py FreeCAD/Mod/Tux/InitGui.py FreeCAD/Mod/Tux/NavigationIndicatorGui.py FreeCAD/Mod/Tux/Tux_rc.py @@ -788,9 +793,27 @@ FreeCAD/data/Mod/Start/StartPage/PartDesignExample.png FreeCAD/data/Mod/Start/StartPage/Ship.png FreeCAD/data/Mod/Start/StartPage/Ship.py FreeCAD/data/Mod/Start/StartPage/ShipExample.png +FreeCAD/data/Mod/Start/StartPage/StartPage.css +FreeCAD/data/Mod/Start/StartPage/StartPage.html +FreeCAD/data/Mod/Start/StartPage/StartPage.js FreeCAD/data/Mod/Start/StartPage/blank.png FreeCAD/data/Mod/Start/StartPage/complete.jpg FreeCAD/data/Mod/Start/StartPage/freecad-doc.png +FreeCAD/data/Mod/Start/StartPage/images/ArchDesign.png +FreeCAD/data/Mod/Start/StartPage/images/ArchExample.png +FreeCAD/data/Mod/Start/StartPage/images/Background.jpg +FreeCAD/data/Mod/Start/StartPage/images/Banner.jpeg +FreeCAD/data/Mod/Start/StartPage/images/Complete.png +FreeCAD/data/Mod/Start/StartPage/images/FreeCAD.png +FreeCAD/data/Mod/Start/StartPage/images/Mesh.png +FreeCAD/data/Mod/Start/StartPage/images/PartDesign.png +FreeCAD/data/Mod/Start/StartPage/images/PartDesignExample.png +FreeCAD/data/Mod/Start/StartPage/images/Ship.png +FreeCAD/data/Mod/Start/StartPage/images/ShipExample.png +FreeCAD/data/Mod/Start/StartPage/images/blank.png +FreeCAD/data/Mod/Start/StartPage/images/complete.jpg +FreeCAD/data/Mod/Start/StartPage/images/freecad-doc.png +FreeCAD/data/Mod/Start/StartPage/images/web.png FreeCAD/data/Mod/Start/StartPage/web.png FreeCAD/data/Mod/TechDraw/Resources/icons/preferences-techdraw.svg FreeCAD/data/Mod/TechDraw/Templates/A0_Landscape_ISO7200TD.svg @@ -820,8 +843,6 @@ FreeCAD/data/freecad.svg FreeCAD/data/freecad.xpm FreeCAD/doc/freecad.qch FreeCAD/doc/freecad.qhc -FreeCAD/lib/Complete.so -FreeCAD/lib/CompleteGui.so FreeCAD/lib/DraftUtils.so FreeCAD/lib/Drawing.so FreeCAD/lib/DrawingGui.so @@ -860,6 +881,8 @@ FreeCAD/lib/Spreadsheet.so FreeCAD/lib/SpreadsheetGui.so FreeCAD/lib/Start.so FreeCAD/lib/StartGui.so +FreeCAD/lib/Surface.so +FreeCAD/lib/SurfaceGui.so FreeCAD/lib/TechDraw.so FreeCAD/lib/TechDrawGui.so FreeCAD/lib/Web.so From owner-svn-ports-head@freebsd.org Sun Jun 18 21:04:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB667D8E7A9; Sun, 18 Jun 2017 21:04:14 +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 BA91F7CA3A; Sun, 18 Jun 2017 21:04:14 +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 v5IL4DxP049588; Sun, 18 Jun 2017 21:04:13 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IL4D7I049586; Sun, 18 Jun 2017 21:04:13 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201706182104.v5IL4D7I049586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 18 Jun 2017 21:04:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443852 - head/x11-toolkits/kirigami2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 18 Jun 2017 21:04:15 -0000 Author: tcberner Date: Sun Jun 18 21:04:13 2017 New Revision: 443852 URL: https://svnweb.freebsd.org/changeset/ports/443852 Log: Update to 2.2.0 . Modified: head/x11-toolkits/kirigami2/Makefile head/x11-toolkits/kirigami2/distinfo Modified: head/x11-toolkits/kirigami2/Makefile ============================================================================== --- head/x11-toolkits/kirigami2/Makefile Sun Jun 18 19:38:19 2017 (r443851) +++ head/x11-toolkits/kirigami2/Makefile Sun Jun 18 21:04:13 2017 (r443852) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kirigami2 -PORTVERSION= 2.1.1 +PORTVERSION= 2.2.0 CATEGORIES= x11-toolkits kde # kde-framework MASTER_SITES= KDE/stable/${PORTNAME:C/2//} DIST_SUBDIR= KDE/kirigami Modified: head/x11-toolkits/kirigami2/distinfo ============================================================================== --- head/x11-toolkits/kirigami2/distinfo Sun Jun 18 19:38:19 2017 (r443851) +++ head/x11-toolkits/kirigami2/distinfo Sun Jun 18 21:04:13 2017 (r443852) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494254399 -SHA256 (KDE/kirigami/kirigami2-2.1.1.tar.xz) = ea3796058f302dabf21b7c58a05e543da5d7407414a9001d26d4318962a872ad -SIZE (KDE/kirigami/kirigami2-2.1.1.tar.xz) = 274564 +TIMESTAMP = 1497817559 +SHA256 (KDE/kirigami/kirigami2-2.2.0.tar.xz) = b8e0b5088c39740dd002d5bf8046ea219cb63f7d9e19083202f7ba05cc3a4c05 +SIZE (KDE/kirigami/kirigami2-2.2.0.tar.xz) = 275832 From owner-svn-ports-head@freebsd.org Mon Jun 19 00:52:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ABCFD917D1; Mon, 19 Jun 2017 00:52:22 +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 41B0E81A40; Mon, 19 Jun 2017 00:52:22 +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 v5J0qLII042528; Mon, 19 Jun 2017 00:52:21 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J0qLvo042526; Mon, 19 Jun 2017 00:52:21 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201706190052.v5J0qLvo042526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Mon, 19 Jun 2017 00:52:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443853 - head/math/py-keras X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 00:52:22 -0000 Author: wen Date: Mon Jun 19 00:52:21 2017 New Revision: 443853 URL: https://svnweb.freebsd.org/changeset/ports/443853 Log: - Update to 2.0.5 PR: 220092 Submitted by: neel@neelc.org(maintainer) Modified: head/math/py-keras/Makefile head/math/py-keras/distinfo Modified: head/math/py-keras/Makefile ============================================================================== --- head/math/py-keras/Makefile Sun Jun 18 21:04:13 2017 (r443852) +++ head/math/py-keras/Makefile Mon Jun 19 00:52:21 2017 (r443853) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= keras -PORTVERSION= 2.0.4 +PORTVERSION= 2.0.5 CATEGORIES= math PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/math/py-keras/distinfo ============================================================================== --- head/math/py-keras/distinfo Sun Jun 18 21:04:13 2017 (r443852) +++ head/math/py-keras/distinfo Mon Jun 19 00:52:21 2017 (r443853) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496602495 -SHA256 (fchollet-keras-2.0.4_GH0.tar.gz) = 2988421421ca0fd91738cd327e4b12998bff28b2e106a576835dc211fa093486 -SIZE (fchollet-keras-2.0.4_GH0.tar.gz) = 345790 +TIMESTAMP = 1497827798 +SHA256 (fchollet-keras-2.0.5_GH0.tar.gz) = cc32f91e6d1f549f72abe5cc23ac1309cb364777027d1b5faa02af1e02efe163 +SIZE (fchollet-keras-2.0.5_GH0.tar.gz) = 369712 From owner-svn-ports-head@freebsd.org Mon Jun 19 01:09:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07FBFD919D3; Mon, 19 Jun 2017 01:09:22 +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 BD6EB81E51; Mon, 19 Jun 2017 01:09:21 +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 v5J19KHi046744; Mon, 19 Jun 2017 01:09:20 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J19KHo046743; Mon, 19 Jun 2017 01:09:20 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706190109.v5J19KHo046743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Mon, 19 Jun 2017 01:09:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443854 - head/math/newmat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 01:09:22 -0000 Author: stephen Date: Mon Jun 19 01:09:20 2017 New Revision: 443854 URL: https://svnweb.freebsd.org/changeset/ports/443854 Log: - Take maintainership. Modified: head/math/newmat/Makefile Modified: head/math/newmat/Makefile ============================================================================== --- head/math/newmat/Makefile Mon Jun 19 00:52:21 2017 (r443853) +++ head/math/newmat/Makefile Mon Jun 19 01:09:20 2017 (r443854) @@ -8,7 +8,7 @@ CATEGORIES= math MASTER_SITES= http://www.robertnz.net/ftp/ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= stephen@FreeBSD.org COMMENT= C++ matrix library NO_WRKSUBDIR= yes From owner-svn-ports-head@freebsd.org Mon Jun 19 02:00:19 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 391E1D92B2C; Mon, 19 Jun 2017 02:00:19 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 042CE83757; Mon, 19 Jun 2017 02:00:18 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5J20I4d067311; Mon, 19 Jun 2017 02:00:18 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J20HF2067297; Mon, 19 Jun 2017 02:00:17 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201706190200.v5J20HF2067297@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Mon, 19 Jun 2017 02:00:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443855 - in head/mail/mutt: . 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, 19 Jun 2017 02:00:19 -0000 Author: ak Date: Mon Jun 19 02:00:16 2017 New Revision: 443855 URL: https://svnweb.freebsd.org/changeset/ports/443855 Log: - Update mail/mutt to 1.8.3 - Move post-patch to pre-configure so it doesn't interfere with patch debugging - Use more up-to-date version of date_conditional patch - Clean up default options patches to be as offset/fuzz free as possible PR: 219786 Submitted by: dereks@lifeofadishwasher.com (maintainer) Modified: head/mail/mutt/Makefile head/mail/mutt/distinfo head/mail/mutt/files/extra-patch-ifdef head/mail/mutt/files/extra-patch-maildir-mtime head/mail/mutt/files/extra-patch-parent-child-match head/mail/mutt/files/extra-patch-reverse_reply head/mail/mutt/files/extra-patch-smartdate head/mail/mutt/files/extra-patch-smime-outlook head/mail/mutt/files/patch-dgc-deepif head/mail/mutt/files/patch-smime-self head/mail/mutt/files/patch-smime-sender head/mail/mutt/files/patch-threadcomplete Modified: head/mail/mutt/Makefile ============================================================================== --- head/mail/mutt/Makefile Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/Makefile Mon Jun 19 02:00:16 2017 (r443855) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= mutt -PORTVERSION= 1.8.2 -PORTREVISION?= 1 +PORTVERSION= 1.8.3 +PORTREVISION?= 0 CATEGORIES+= mail ipv6 MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/ \ ftp://ftp.fu-berlin.de/pub/unix/mail/mutt/ \ @@ -17,10 +17,10 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES+= http://www.mutt.org.ua/download/mutt-${VVV_PATCH_VERSION}/:vvv \ http://www2.mutt.org.ua/download/mutt-${VVV_PATCH_VERSION}/:vvv \ - https://www.schrab.com/aaron/mutt/:ats \ + https://github.com/aschrab/mutt/compare/dev-base...feature/:ats \ http://vc.org.ua/mutt/:vc PATCH_DIST_STRIP= -p1 -PATCHFILES= patch-1.7.0.ats.date_conditional.1:ats +PATCHFILES= date-conditional.diff:ats MAINTAINER?= dereks@lifeofadishwasher.com COMMENT?= Small but powerful text based program for read/writing e-mail @@ -187,6 +187,8 @@ IDN_LIB_DEPENDS= libidn.so:dns/libidn IDN_CONFIGURE_WITH= idn IDN_IMPLIES= ICONV +IFDEF_PATCH_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-ifdef + GPGME_LIB_DEPENDS+= libgpgme.so:security/gpgme GPGME_LIB_DEPENDS+= libgpg-error.so:security/libgpg-error GPGME_LIB_DEPENDS+= libassuan.so:security/libassuan @@ -212,8 +214,8 @@ DOCS_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-doc-ref .include # un/comment as each VERSION is created for PORTVERSION -#VVV_PATCH_VERSION= 1.8.0 -#GREETING_PATCH_VERSION= 1.8.1 +VVV_PATCH_VERSION= 1.8.2 +#GREETING_PATCH_VERSION= 1.8.3 .if !defined(VVV_PATCH_VERSION) VVV_PATCH_VERSION= ${PORTVERSION} @@ -264,12 +266,9 @@ post-install: post-install-NNTP-on: ${INSTALL_DATA} ${WRKSRC}/ChangeLog.nntp ${STAGEDIR}${DOCSDIR} -post-patch-IFDEF_PATCH-on: - @${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} -p1 < ${PATCHDIR}/extra-patch-ifdef - WRKSRC= ${WRKDIR}/${DISTNAME:S/i$//} -post-patch: +pre-configure:: @${REINPLACE_CMD} -e 's,/usr/bin/gpg,${LOCALBASE}/bin/gpg,g' \ ${WRKSRC}/contrib/gpg.rc @${REINPLACE_CMD} -e 's,pgp6,pgp,g' \ Modified: head/mail/mutt/distinfo ============================================================================== --- head/mail/mutt/distinfo Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/distinfo Mon Jun 19 02:00:16 2017 (r443855) @@ -1,14 +1,14 @@ -TIMESTAMP = 1494678618 -SHA256 (mutt/mutt-1.8.2.tar.gz) = 1d057bf1b565f2c38ee50c9a661654cbbe4165f98e25bfa361ebbd707d96f235 -SIZE (mutt/mutt-1.8.2.tar.gz) = 4118429 +TIMESTAMP = 1496461712 +SHA256 (mutt/mutt-1.8.3.tar.gz) = 9b81746d67ffeca5ea44f60893b70dc93c86d4bc10187d4dd360185e4d42ed42 +SIZE (mutt/mutt-1.8.3.tar.gz) = 4122012 SHA256 (mutt/patch-1.8.2.vvv.nntp.gz) = 940cf7fd4fbea39f48bd5594180a7be5c3cc6714d62eeb3f2e5fbc0ab4b3545b SIZE (mutt/patch-1.8.2.vvv.nntp.gz) = 60675 SHA256 (mutt/patch-1.8.2.vvv.nntp_ru.gz) = c85a288ed6864c311cbc70b31bab9f0d0d1051846becb5e8fe737609fd939a9c SIZE (mutt/patch-1.8.2.vvv.nntp_ru.gz) = 3465 -SHA256 (mutt/patch-1.7.0.ats.date_conditional.1) = a7f65e0b6e59713582b3b0a1c3d3c0e54e5875f5dfe3bda285e51a5b6d96e14e -SIZE (mutt/patch-1.7.0.ats.date_conditional.1) = 2415 -SHA256 (mutt/mutt-1.8.2.vc.greeting) = 73113eb0a3eb761755315ab03c0b6bcb316c09603461a1f8a3f54bd870a576cc -SIZE (mutt/mutt-1.8.2.vc.greeting) = 4499 +SHA256 (mutt/date-conditional.diff) = 8936c5fe7a2a62a68f2a8d001c7a6dddf138c48186a338482b6639507ba9133e +SIZE (mutt/date-conditional.diff) = 2023 +SHA256 (mutt/mutt-1.8.3.vc.greeting) = 73113eb0a3eb761755315ab03c0b6bcb316c09603461a1f8a3f54bd870a576cc +SIZE (mutt/mutt-1.8.3.vc.greeting) = 4499 SHA256 (mutt/patch-1.8.2.vvv.initials.gz) = e929c863dd012624b2ac724cd296f346374cd2522f256020fa458e94890ca750 SIZE (mutt/patch-1.8.2.vvv.initials.gz) = 686 SHA256 (mutt/patch-1.8.2.vvv.quote.gz) = 03b1aa4aa9152b968fc1709e68207073df62b9b1a5da43ff1d680d6dfe17fe35 Modified: head/mail/mutt/files/extra-patch-ifdef ============================================================================== --- head/mail/mutt/files/extra-patch-ifdef Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/extra-patch-ifdef Mon Jun 19 02:00:16 2017 (r443855) @@ -1,8 +1,8 @@ ---- PATCHES.orig 2017-04-12 23:01:05 UTC +--- PATCHES.orig 2017-06-03 23:06:11 UTC +++ PATCHES @@ -0,0 +1 @@ +patch-1.5.4.cd.ifdef.1 ---- init.c.orig 2017-04-12 23:01:17 UTC +--- init.c.orig 2017-05-30 19:27:52 UTC +++ init.c @@ -656,6 +656,52 @@ static mbchar_table *parse_mbchar_table return t; @@ -57,9 +57,9 @@ static int parse_unignore (BUFFER *buf, BUFFER *s, unsigned long data, BUFFER *err) { do ---- init.h.orig 2017-04-12 23:01:17 UTC +--- init.h.orig 2017-06-03 23:06:11 UTC +++ init.h -@@ -3889,6 +3889,7 @@ static int parse_lists (BUFFER *, BUFFER +@@ -3904,6 +3904,7 @@ static int parse_lists (BUFFER *, BUFFER static int parse_unlists (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_alias (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_unalias (BUFFER *, BUFFER *, unsigned long, BUFFER *); @@ -67,7 +67,7 @@ static int parse_ignore (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_unignore (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_source (BUFFER *, BUFFER *, unsigned long, BUFFER *); -@@ -3951,6 +3952,7 @@ const struct command_t Commands[] = { +@@ -3966,6 +3967,7 @@ const struct command_t Commands[] = { { "hdr_order", parse_list, UL &HeaderOrderList }, #ifdef HAVE_ICONV { "iconv-hook", mutt_parse_hook, MUTT_ICONVHOOK }, Modified: head/mail/mutt/files/extra-patch-maildir-mtime ============================================================================== --- head/mail/mutt/files/extra-patch-maildir-mtime Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/extra-patch-maildir-mtime Mon Jun 19 02:00:16 2017 (r443855) @@ -1,10 +1,10 @@ ---- PATCHES Dec 2002 17:44:54 -0000 3.6 -+++ PATCHES Feb 2004 13:19:42 -0000 +--- PATCHES.orig 2017-06-03 22:37:15 UTC ++++ PATCHES @@ -0,0 +1 @@ +patch-1.5.7.ust.maildir-mtime.2 ---- browser.c.orig Wed Jan 26 13:41:04 2005 -+++ browser.c Wed Feb 9 09:20:14 2005 -@@ -27,6 +27,7 @@ +--- browser.c.orig 2017-06-03 22:37:03 UTC ++++ browser.c +@@ -32,6 +32,7 @@ #ifdef USE_IMAP #include "imap.h" #endif @@ -12,7 +12,7 @@ #include #include -@@ -346,6 +347,21 @@ +@@ -413,6 +414,21 @@ static void init_state (struct browser_s menu->data = state->entry; } @@ -34,7 +34,7 @@ static int examine_directory (MUTTMENU *menu, struct browser_state *state, char *d, const char *prefix) { -@@ -409,6 +425,7 @@ +@@ -476,6 +492,7 @@ static int examine_directory (MUTTMENU * tmp = Incoming; while (tmp && mutt_strcmp (buffer, tmp->path)) tmp = tmp->next; @@ -42,7 +42,7 @@ if (tmp && Context && !mutt_strcmp (tmp->realpath, Context->realpath)) { -@@ -454,6 +471,7 @@ +@@ -549,6 +566,7 @@ static int examine_mailboxes (MUTTMENU * strfcpy (buffer, NONULL(tmp->path), sizeof (buffer)); mutt_pretty_mailbox (buffer, sizeof (buffer)); Modified: head/mail/mutt/files/extra-patch-parent-child-match ============================================================================== --- head/mail/mutt/files/extra-patch-parent-child-match Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/extra-patch-parent-child-match Mon Jun 19 02:00:16 2017 (r443855) @@ -1,6 +1,6 @@ ---- doc/manual.xml.head.orig 2017-02-24 18:29:36 UTC +--- doc/manual.xml.head.orig 2017-05-30 19:27:52 UTC +++ doc/manual.xml.head -@@ -4259,6 +4259,22 @@ variable all, which allow +@@ -4265,6 +4265,22 @@ variable all, which allow their system defaults. @@ -23,9 +23,9 @@ ---- mutt.h.orig 2017-02-24 18:29:36 UTC +--- mutt.h.orig 2017-06-03 23:16:03 UTC +++ mutt.h -@@ -863,6 +863,8 @@ typedef struct pattern_t +@@ -865,6 +865,8 @@ typedef struct pattern_t unsigned int alladdr : 1; unsigned int stringmatch : 1; unsigned int groupmatch : 1; @@ -34,7 +34,7 @@ unsigned int ign_case : 1; /* ignore case for local stringmatch searches */ unsigned int isalias : 1; int min; ---- pattern.c.orig 2017-02-24 18:29:37 UTC +--- pattern.c.orig 2017-05-30 19:26:40 UTC +++ pattern.c @@ -46,6 +46,7 @@ static int eat_regexp (pattern_t *pat, B static int eat_date (pattern_t *pat, BUFFER *, BUFFER *); Modified: head/mail/mutt/files/extra-patch-reverse_reply ============================================================================== --- head/mail/mutt/files/extra-patch-reverse_reply Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/extra-patch-reverse_reply Mon Jun 19 02:00:16 2017 (r443855) @@ -1,10 +1,10 @@ ---- PATCHES.orig 2017-04-12 23:01:05 UTC +--- PATCHES.orig 2017-06-03 23:21:18 UTC +++ PATCHES @@ -0,0 +1 @@ +patch-1.5.6.cb.reverse_reply.2 ---- init.h.orig 2017-04-12 23:01:17 UTC +--- init.h.orig 2017-06-03 23:21:18 UTC +++ init.h -@@ -2575,6 +2575,13 @@ struct option_t MuttVars[] = { +@@ -2588,6 +2588,13 @@ struct option_t MuttVars[] = { ** possibly including eventual real names. When it is \fIunset\fP, mutt will ** override any such real names with the setting of the $$realname variable. */ @@ -18,9 +18,9 @@ { "rfc2047_parameters", DT_BOOL, R_NONE, OPTRFC2047PARAMS, 0 }, /* ** .pp ---- mutt.h.orig 2017-04-12 23:01:17 UTC +--- mutt.h.orig 2017-06-03 23:21:23 UTC +++ mutt.h -@@ -438,6 +438,7 @@ enum +@@ -440,6 +440,7 @@ enum OPTREVALIAS, OPTREVNAME, OPTREVREAL, @@ -28,7 +28,7 @@ OPTRFC2047PARAMS, OPTSAVEADDRESS, OPTSAVEEMPTY, ---- protos.h.orig 2017-04-12 23:01:17 UTC +--- protos.h.orig 2017-05-30 19:27:53 UTC +++ protos.h @@ -93,6 +93,7 @@ ADDRESS *mutt_get_address (ENVELOPE *, c ADDRESS *mutt_lookup_alias (const char *s); @@ -38,7 +38,7 @@ ADDRESS *mutt_expand_aliases (ADDRESS *); ADDRESS *mutt_parse_adrlist (ADDRESS *, const char *); ---- send.c.orig 2017-04-12 23:01:07 UTC +--- send.c.orig 2017-05-30 19:27:53 UTC +++ send.c @@ -585,6 +585,10 @@ void mutt_fix_reply_recipients (ENVELOPE /* the CC field can get cluttered, especially with lists */ @@ -51,7 +51,7 @@ env->cc = mutt_remove_xrefs (env->to, env->cc); if (env->cc && !env->to) ---- sendlib.c.orig 2017-04-12 23:01:08 UTC +--- sendlib.c.orig 2017-05-30 19:27:53 UTC +++ sendlib.c @@ -2714,6 +2714,35 @@ static void set_noconv_flags (BODY *b, s } Modified: head/mail/mutt/files/extra-patch-smartdate ============================================================================== --- head/mail/mutt/files/extra-patch-smartdate Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/extra-patch-smartdate Mon Jun 19 02:00:16 2017 (r443855) @@ -1,6 +1,6 @@ ---- hdrline.c.orig 2017-02-24 18:29:36 UTC +--- hdrline.c.orig 2017-06-03 23:31:21 UTC +++ hdrline.c -@@ -248,6 +248,89 @@ static char *apply_subject_mods (ENVELOP +@@ -249,6 +249,89 @@ static char *apply_subject_mods (ENVELOP * %Y = `x-label:' field (if present, tree unfolded, and != parent's x-label) * %Z = status flags */ @@ -90,7 +90,7 @@ static const char * hdr_format_str (char *dest, size_t destlen, -@@ -421,7 +504,13 @@ hdr_format_str (char *dest, +@@ -469,7 +552,13 @@ hdr_format_str (char *dest, if (!do_locales) setlocale (LC_TIME, "C"); @@ -105,7 +105,7 @@ if (!do_locales) setlocale (LC_TIME, ""); ---- mutt.h.orig 2017-02-24 18:29:36 UTC +--- mutt.h.orig 2017-05-30 19:27:53 UTC +++ mutt.h @@ -134,6 +134,16 @@ typedef enum MUTT_FORMAT_NOFILTER = (1<<7) /* do not allow filtering on this pass */ Modified: head/mail/mutt/files/extra-patch-smime-outlook ============================================================================== --- head/mail/mutt/files/extra-patch-smime-outlook Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/extra-patch-smime-outlook Mon Jun 19 02:00:16 2017 (r443855) @@ -1,6 +1,6 @@ ---- crypt.c.orig Fri Mar 7 09:23:44 2003 -+++ crypt.c Fri Mar 21 00:06:48 2003 -@@ -440,7 +440,7 @@ +--- crypt.c.orig 2017-05-30 19:27:52 UTC ++++ crypt.c +@@ -491,7 +491,7 @@ int mutt_is_application_smime (BODY *m) { len++; if (!ascii_strcasecmp ((t+len), "p7m")) Modified: head/mail/mutt/files/patch-dgc-deepif ============================================================================== --- head/mail/mutt/files/patch-dgc-deepif Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/patch-dgc-deepif Mon Jun 19 02:00:16 2017 (r443855) @@ -1,6 +1,6 @@ ---- muttlib.c.orig 2017-04-19 01:05:29 UTC +--- muttlib.c.orig 2017-06-03 02:20:37 UTC +++ muttlib.c -@@ -1369,6 +1369,12 @@ +@@ -1378,6 +1378,12 @@ void mutt_FormatString (char *dest, /* count = 0; while (count < sizeof (ifstring) && *src && *src != '?' && *src != '&') { @@ -13,7 +13,7 @@ *cp++ = *src++; count++; } -@@ -1381,7 +1387,13 @@ +@@ -1390,7 +1396,13 @@ void mutt_FormatString (char *dest, /* count = 0; while (count < sizeof (elsestring) && *src && *src != '?') { Modified: head/mail/mutt/files/patch-smime-self ============================================================================== --- head/mail/mutt/files/patch-smime-self Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/patch-smime-self Mon Jun 19 02:00:16 2017 (r443855) @@ -1,4 +1,4 @@ ---- contrib/smime.rc.orig 2016-10-08 19:30:21 UTC +--- contrib/smime.rc.orig 2017-05-30 19:26:40 UTC +++ contrib/smime.rc @@ -23,8 +23,12 @@ set crypt_verify_sig = yes @@ -14,7 +14,7 @@ # Uncomment to make mutt ask what key to use when trying to decrypt a message. # It will use the default key above (if that was set) else. # unset smime_decrypt_use_default_key ---- crypt.c.orig 2016-10-08 19:35:50 UTC +--- crypt.c.orig 2017-06-04 00:05:52 UTC +++ crypt.c @@ -229,8 +229,18 @@ int mutt_protect (HEADER *msg, char *key if ((WithCrypto & APPLICATION_SMIME) @@ -37,9 +37,9 @@ { /* signed ? free it! */ return (-1); ---- init.h.orig 2016-10-08 19:35:50 UTC +--- init.h.orig 2017-06-04 00:05:52 UTC +++ init.h -@@ -2997,6 +2997,11 @@ struct option_t MuttVars[] = { +@@ -3017,6 +3017,11 @@ struct option_t MuttVars[] = { ** possible \fCprintf(3)\fP-like sequences. ** (S/MIME only) */ @@ -51,9 +51,9 @@ { "smime_encrypt_with", DT_STR, R_NONE, UL &SmimeCryptAlg, UL "aes256" }, /* ** .pp ---- mutt.h.orig 2016-10-08 19:30:21 UTC +--- mutt.h.orig 2017-06-04 00:05:52 UTC +++ mutt.h -@@ -274,6 +274,7 @@ enum +@@ -284,6 +284,7 @@ enum OPT_FORWEDIT, OPT_FCCATTACH, OPT_INCLUDE, Modified: head/mail/mutt/files/patch-smime-sender ============================================================================== --- head/mail/mutt/files/patch-smime-sender Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/patch-smime-sender Mon Jun 19 02:00:16 2017 (r443855) @@ -1,4 +1,4 @@ ---- commands.c.orig 2017-04-12 23:01:17 UTC +--- commands.c.orig 2017-05-30 19:27:52 UTC +++ commands.c @@ -185,7 +185,7 @@ int mutt_display_message (HEADER *cur) { @@ -9,7 +9,7 @@ mutt_message ( _("S/MIME signature successfully verified.")); else mutt_error ( _("S/MIME certificate owner does not match sender.")); ---- contrib/smime.rc.orig 2017-04-12 23:01:05 UTC +--- contrib/smime.rc.orig 2017-06-04 00:06:24 UTC +++ contrib/smime.rc @@ -8,7 +8,10 @@ set smime_is_default @@ -23,9 +23,9 @@ # Passphrase expiration set smime_timeout=300 ---- init.h.orig 2017-04-12 23:01:17 UTC +--- init.h.orig 2017-06-04 00:06:24 UTC +++ init.h -@@ -2980,6 +2980,15 @@ struct option_t MuttVars[] = { +@@ -3000,6 +3000,15 @@ struct option_t MuttVars[] = { ** to determine the key to use. It will ask you to supply a key, if it can't find one. ** (S/MIME only) */ @@ -41,9 +41,9 @@ { "smime_sign_as", DT_SYN, R_NONE, UL "smime_default_key", 0 }, { "smime_default_key", DT_STR, R_NONE, UL &SmimeDefaultKey, 0 }, /* ---- mutt.h.orig 2017-04-12 23:01:17 UTC +--- mutt.h.orig 2017-06-04 00:06:24 UTC +++ mutt.h -@@ -499,6 +499,7 @@ enum +@@ -513,6 +513,7 @@ enum OPTCRYPTTIMESTAMP, OPTSMIMEISDEFAULT, OPTASKCERTLABEL, Modified: head/mail/mutt/files/patch-threadcomplete ============================================================================== --- head/mail/mutt/files/patch-threadcomplete Mon Jun 19 01:09:20 2017 (r443854) +++ head/mail/mutt/files/patch-threadcomplete Mon Jun 19 02:00:16 2017 (r443855) @@ -1,6 +1,6 @@ ---- mutt.h.orig 2017-02-27 01:20:29 UTC +--- mutt.h.orig 2017-06-03 22:52:35 UTC +++ mutt.h -@@ -201,6 +201,7 @@ enum +@@ -211,6 +211,7 @@ enum MUTT_EXPIRED, MUTT_SUPERSEDED, MUTT_TRASH, @@ -8,9 +8,9 @@ /* actions for mutt_pattern_comp/mutt_pattern_exec */ MUTT_AND, ---- pattern.c.orig 2017-02-27 01:20:06 UTC +--- pattern.c.orig 2017-06-03 22:52:35 UTC +++ pattern.c -@@ -56,6 +56,7 @@ static const struct pattern_flags +@@ -57,6 +57,7 @@ static const struct pattern_flags } Flags[] = { @@ -18,7 +18,7 @@ { 'A', MUTT_ALL, 0, NULL }, { 'b', MUTT_BODY, MUTT_FULL_MSG, eat_regexp }, { 'B', MUTT_WHOLE_MSG, MUTT_FULL_MSG, eat_regexp }, -@@ -1236,6 +1237,16 @@ mutt_pattern_exec (struct pattern_t *pat +@@ -1302,6 +1303,16 @@ pattern_exec (struct pattern_t *pat, pat else result = mutt_is_list_cc (pat->alladdr, h->env->to, h->env->cc); return (pat->not ^ result); From owner-svn-ports-head@freebsd.org Mon Jun 19 02:04:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B3ACD92C7F; Mon, 19 Jun 2017 02:04:26 +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 6652583AAA; Mon, 19 Jun 2017 02:04:26 +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 v5J24P4V071336; Mon, 19 Jun 2017 02:04:25 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J24PJQ071334; Mon, 19 Jun 2017 02:04:25 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201706190204.v5J24PJQ071334@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 19 Jun 2017 02:04:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443856 - head/sysutils/qjail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 02:04:26 -0000 Author: adamw Date: Mon Jun 19 02:04:25 2017 New Revision: 443856 URL: https://svnweb.freebsd.org/changeset/ports/443856 Log: Update to 5.3 qjail-5.3-change-log 1. Adam Weinberger sent email about bug he found. The qjail console -c "ls /user/local" jailname command was not working correctly. This error was introduced by changes done to correct coding syntax problems that the hs-shellcheck package found and published in qjail-5.2. Fixed now. 2. Adam Weinberger also sent email containing a patch that standardized error messages and corrected some spelling errors. After review the patch was applied. 3. Checked all the 'kill' messages for 'Error:' prefix and added the prefix where it was missing to complete the standardization. 4. While reviewing the patch changes I noticed that the "qjail install" logic had some duplicated code. I removed it to make more of it part of the fall through logic path. 5. While working on the "qjail install" logic, 11.1-BETA1 was published. It cam to my attention that BETA and RC Release Engineering builds are now having distribution files built. Changed the 'qjail install' logic to auto handle BETA, RC, builds in the same manner RELEASE, and RELEASE-p builds were being handled. 6. Corrected the qjail manual to reflect the changes made to the script. PR: 220113 Submitted by: maintainer (Joe Barbish) MFH: 2017Q2 Modified: head/sysutils/qjail/Makefile head/sysutils/qjail/distinfo Modified: head/sysutils/qjail/Makefile ============================================================================== --- head/sysutils/qjail/Makefile Mon Jun 19 02:00:16 2017 (r443855) +++ head/sysutils/qjail/Makefile Mon Jun 19 02:04:25 2017 (r443856) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qjail -PORTVERSION= 5.2 +PORTVERSION= 5.3 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME} Modified: head/sysutils/qjail/distinfo ============================================================================== --- head/sysutils/qjail/distinfo Mon Jun 19 02:00:16 2017 (r443855) +++ head/sysutils/qjail/distinfo Mon Jun 19 02:04:25 2017 (r443856) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490990068 -SHA256 (qjail-5.2.tar.bz2) = c322b82b7285062ab8a61aa35642d8ffc3c7fbe62e95b9037b7f83d6058012e7 -SIZE (qjail-5.2.tar.bz2) = 65473 +TIMESTAMP = 1497798324 +SHA256 (qjail-5.3.tar.bz2) = aa0d80da77404cba2192e6cf772bff644335f6bbdaa97d9012ba3c00d8b7d0cd +SIZE (qjail-5.3.tar.bz2) = 65586 From owner-svn-ports-head@freebsd.org Mon Jun 19 03:46:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93799D94496; Mon, 19 Jun 2017 03:46:47 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6159C1E00; Mon, 19 Jun 2017 03:46:47 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5J3kkUT012112; Mon, 19 Jun 2017 03:46:46 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J3kkIm012109; Mon, 19 Jun 2017 03:46:46 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706190346.v5J3kkIm012109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 19 Jun 2017 03:46:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443857 - in head: . textproc textproc/ssddiff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 03:46:47 -0000 Author: danfe Date: Mon Jun 19 03:46:46 2017 New Revision: 443857 URL: https://svnweb.freebsd.org/changeset/ports/443857 Log: Resurrect `textproc/ssddiff' and unbreak by providing a bunch of working mirrors. Original upstream (alioth.debian.org) exists and seems alive, but for some reason no longer allows unauthenticated downloads. Keep it for the reference though, it might get fixed one day. Added: head/textproc/ssddiff/ - copied from r418056, head/textproc/ssddiff/ Modified: head/MOVED head/textproc/Makefile head/textproc/ssddiff/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Mon Jun 19 02:04:25 2017 (r443856) +++ head/MOVED Mon Jun 19 03:46:46 2017 (r443857) @@ -8407,7 +8407,6 @@ lang/stalin||2016-07-04|Has expired: Broken for more t french/eric4||2016-07-04|Has expired: Depends on expiring devel/eric4 textproc/exslt||2016-07-04|Has expired: Broken for more than 6 months textproc/xt||2016-07-04|Has expired: Broken for more than 6 months -textproc/ssddiff||2016-07-04|Has expired: Broken for more than 6 months textproc/xslint||2016-07-04|Has expired: Broken for more than 6 months textproc/cbedic||2016-07-04|Has expired: Broken for more than 6 months textproc/tralics||2016-07-04|Has expired: Broken for more than 6 months Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jun 19 02:04:25 2017 (r443856) +++ head/textproc/Makefile Mon Jun 19 03:46:46 2017 (r443857) @@ -1641,6 +1641,7 @@ SUBDIR += sr-hunspell SUBDIR += srilm SUBDIR += ss-hunspell + SUBDIR += ssddiff SUBDIR += stardict-dict-fa_IR SUBDIR += stardict-dictd_mova SUBDIR += stardict-quick Modified: head/textproc/ssddiff/Makefile ============================================================================== --- head/textproc/ssddiff/Makefile Mon Jul 4 20:44:22 2016 (r418056) +++ head/textproc/ssddiff/Makefile Mon Jun 19 03:46:46 2017 (r443857) @@ -5,14 +5,15 @@ PORTNAME= ssddiff PORTVERSION= 0.2 PORTREVISION= 2 CATEGORIES= textproc -MASTER_SITES= http://alioth.debian.org/frs/download.php/1469/ +MASTER_SITES= http://freebsd.nsu.ru/distfiles/ \ + http://ftp.is.co.za/FreeBSD/ports/distfiles/ \ + ftp://ftp.rediris.es/sites/ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ \ + http://ftp.nchc.org.tw/BSD/FreeBSD/ports/distfiles/ \ + ftp://ftp.eunet.cz/FreeBSD/ports/distfiles/ \ + https://alioth.debian.org/frs/download.php/file/1469/ MAINTAINER= ports@FreeBSD.org COMMENT= Diff application for semistructured data such as XML files - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 LICENSE= GPLv2+ From owner-svn-ports-head@freebsd.org Mon Jun 19 03:47:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80433D944E8; Mon, 19 Jun 2017 03:47:55 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A6861F04; Mon, 19 Jun 2017 03:47:55 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5J3lsba012261; Mon, 19 Jun 2017 03:47:54 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J3lslm012259; Mon, 19 Jun 2017 03:47:54 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706190347.v5J3lslm012259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 19 Jun 2017 03:47:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443858 - head/sysutils/cpu-x X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 03:47:55 -0000 Author: danfe Date: Mon Jun 19 03:47:54 2017 New Revision: 443858 URL: https://svnweb.freebsd.org/changeset/ports/443858 Log: - Make GTK+3 frontend optional (but enabled by default) - Adjust USES and LIB_DEPENDS as reported by `stage-qa' Modified: head/sysutils/cpu-x/Makefile head/sysutils/cpu-x/pkg-plist Modified: head/sysutils/cpu-x/Makefile ============================================================================== --- head/sysutils/cpu-x/Makefile Mon Jun 19 03:46:46 2017 (r443857) +++ head/sysutils/cpu-x/Makefile Mon Jun 19 03:47:54 2017 (r443858) @@ -4,7 +4,7 @@ PORTNAME= cpu-x PORTVERSION= 3.1.3 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= danfe@FreeBSD.org @@ -15,19 +15,26 @@ LICENSE= GPLv3 BUILD_DEPENDS= nasm:devel/nasm LIB_DEPENDS= libcpuid.so:sysutils/libcpuid \ libpci.so:devel/libpci \ - libstatgrab.so:devel/libstatgrab + libstatgrab.so:devel/libstatgrab \ + libcurl.so:ftp/curl USE_GITHUB= yes GH_ACCOUNT= X0rg GH_PROJECT= ${PORTNAME:tu} -USES= cmake execinfo gettext-tools ncurses pkgconfig -USE_GNOME= gtk30 -INSTALLS_ICONS= yes +USES= cmake execinfo gettext ncurses pkgconfig PORTDOCS= ChangeLog README.md -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS X11 +OPTIONS_DEFAULT= X11 +OPTIONS_SUB= yes + +X11_DESC= Build GTK+3 frontend in addition to ncurses one + +X11_USE= GNOME=gtk30 +X11_CMAKE_OFF= -DWITH_GTK:BOOL=OFF +X11_VARS= INSTALLS_ICONS=yes post-patch: @${REINPLACE_CMD} -e 's, -Wno-unused-result,,' ${WRKSRC}/CMakeLists.txt Modified: head/sysutils/cpu-x/pkg-plist ============================================================================== --- head/sysutils/cpu-x/pkg-plist Mon Jun 19 03:46:46 2017 (r443857) +++ head/sysutils/cpu-x/pkg-plist Mon Jun 19 03:47:54 2017 (r443858) @@ -1,36 +1,36 @@ bin/cpu-x -bin/cpu-x_polkit -share/applications/cpu-x.desktop -share/applications/cpu-x-root.desktop -share/icons/hicolor/16x16/apps/cpu-x.png -share/icons/hicolor/22x22/apps/cpu-x.png -share/icons/hicolor/24x24/apps/cpu-x.png -share/icons/hicolor/32x32/apps/cpu-x.png -share/icons/hicolor/36x36/apps/cpu-x.png -share/icons/hicolor/48x48/apps/cpu-x.png -share/icons/hicolor/64x64/apps/cpu-x.png -share/icons/hicolor/72x72/apps/cpu-x.png -share/icons/hicolor/96x96/apps/cpu-x.png -share/icons/hicolor/128x128/apps/cpu-x.png -share/icons/hicolor/192x192/apps/cpu-x.png -share/icons/hicolor/256x256/apps/cpu-x.png -share/icons/hicolor/384x384/apps/cpu-x.png -share/icons/hicolor/512x512/apps/cpu-x.png +%%X11%%bin/cpu-x_polkit +%%X11%%share/applications/cpu-x.desktop +%%X11%%share/applications/cpu-x-root.desktop +%%X11%%share/icons/hicolor/16x16/apps/cpu-x.png +%%X11%%share/icons/hicolor/22x22/apps/cpu-x.png +%%X11%%share/icons/hicolor/24x24/apps/cpu-x.png +%%X11%%share/icons/hicolor/32x32/apps/cpu-x.png +%%X11%%share/icons/hicolor/36x36/apps/cpu-x.png +%%X11%%share/icons/hicolor/48x48/apps/cpu-x.png +%%X11%%share/icons/hicolor/64x64/apps/cpu-x.png +%%X11%%share/icons/hicolor/72x72/apps/cpu-x.png +%%X11%%share/icons/hicolor/96x96/apps/cpu-x.png +%%X11%%share/icons/hicolor/128x128/apps/cpu-x.png +%%X11%%share/icons/hicolor/192x192/apps/cpu-x.png +%%X11%%share/icons/hicolor/256x256/apps/cpu-x.png +%%X11%%share/icons/hicolor/384x384/apps/cpu-x.png +%%X11%%share/icons/hicolor/512x512/apps/cpu-x.png share/locale/fr/LC_MESSAGES/cpu-x.mo share/locale/pt_BR/LC_MESSAGES/cpu-x.mo -share/polkit-1/actions/org.pkexec.cpu-x.policy -%%DATADIR%%/AMD.png -%%DATADIR%%/CPU-X.png -%%DATADIR%%/Centaur.png -%%DATADIR%%/Cyrix.png -%%DATADIR%%/Intel.png -%%DATADIR%%/NSC.png -%%DATADIR%%/NexGen.png -%%DATADIR%%/Rise.png -%%DATADIR%%/SiS.png -%%DATADIR%%/Transmeta.png -%%DATADIR%%/UMC.png -%%DATADIR%%/Unknown.png -%%DATADIR%%/cpu-x-gtk-3.12.css -%%DATADIR%%/cpu-x-gtk-3.12.ui -%%DATADIR%%/cpu-x-gtk-3.20.css +%%X11%%share/polkit-1/actions/org.pkexec.cpu-x.policy +%%X11%%%%DATADIR%%/AMD.png +%%X11%%%%DATADIR%%/CPU-X.png +%%X11%%%%DATADIR%%/Centaur.png +%%X11%%%%DATADIR%%/Cyrix.png +%%X11%%%%DATADIR%%/Intel.png +%%X11%%%%DATADIR%%/NSC.png +%%X11%%%%DATADIR%%/NexGen.png +%%X11%%%%DATADIR%%/Rise.png +%%X11%%%%DATADIR%%/SiS.png +%%X11%%%%DATADIR%%/Transmeta.png +%%X11%%%%DATADIR%%/UMC.png +%%X11%%%%DATADIR%%/Unknown.png +%%X11%%%%DATADIR%%/cpu-x-gtk-3.12.css +%%X11%%%%DATADIR%%/cpu-x-gtk-3.12.ui +%%X11%%%%DATADIR%%/cpu-x-gtk-3.20.css From owner-svn-ports-head@freebsd.org Mon Jun 19 03:51:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A8ACD94561; Mon, 19 Jun 2017 03:51:26 +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 DCE6520BE; Mon, 19 Jun 2017 03:51:25 +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 v5J3pPYe014781; Mon, 19 Jun 2017 03:51:25 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J3pPin014780; Mon, 19 Jun 2017 03:51:25 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706190351.v5J3pPin014780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Mon, 19 Jun 2017 03:51:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443859 - 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: Mon, 19 Jun 2017 03:51:26 -0000 Author: dbn Date: Mon Jun 19 03:51:24 2017 New Revision: 443859 URL: https://svnweb.freebsd.org/changeset/ports/443859 Log: emulators/i386-wine: update package checksum The wine packages were accidentially regenerated. Modified: head/emulators/i386-wine/distinfo Modified: head/emulators/i386-wine/distinfo ============================================================================== --- head/emulators/i386-wine/distinfo Mon Jun 19 03:47:54 2017 (r443858) +++ head/emulators/i386-wine/distinfo Mon Jun 19 03:51:24 2017 (r443859) @@ -1,5 +1,5 @@ -TIMESTAMP = 1497478082 -SHA256 (freebsd:10:x86:64/i386-wine-2.0.1_2,1.txz) = 1b48601ffac1e12ada2dd7c0b9e09ad34a4b5119c8e6d3800145e2beccf0fe46 -SIZE (freebsd:10:x86:64/i386-wine-2.0.1_2,1.txz) = 52957900 -SHA256 (freebsd:11:x86:64/i386-wine-2.0.1_2,1.txz) = 8b8b7d0d05895fd5cef0e0ce7963463b00693e16db0d2260ba6fdb126e4458cb -SIZE (freebsd:11:x86:64/i386-wine-2.0.1_2,1.txz) = 52651396 +TIMESTAMP = 1497823681 +SHA256 (freebsd:10:x86:64/i386-wine-2.0.1_2,1.txz) = 0cdf7160ae74c5b646cd454287f175fa14e290d5b324db41c05ded7de644da71 +SIZE (freebsd:10:x86:64/i386-wine-2.0.1_2,1.txz) = 52980584 +SHA256 (freebsd:11:x86:64/i386-wine-2.0.1_2,1.txz) = 7b207d89434d8dab5fd0e22aeafbabf5e81875b1ae153b9610de810f4aa47231 +SIZE (freebsd:11:x86:64/i386-wine-2.0.1_2,1.txz) = 52662924 From owner-svn-ports-head@freebsd.org Mon Jun 19 05:09:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF33CD95982; Mon, 19 Jun 2017 05:09:03 +0000 (UTC) (envelope-from olivier@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AFA7A640F3; Mon, 19 Jun 2017 05:09:03 +0000 (UTC) (envelope-from olivier@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5J592xX046197; Mon, 19 Jun 2017 05:09:02 GMT (envelope-from olivier@FreeBSD.org) Received: (from olivier@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J5920J046195; Mon, 19 Jun 2017 05:09:02 GMT (envelope-from olivier@FreeBSD.org) Message-Id: <201706190509.v5J5920J046195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivier set sender to olivier@FreeBSD.org using -f From: Olivier Cochard Date: Mon, 19 Jun 2017 05:09:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443860 - head/net/py-maxminddb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 05:09:04 -0000 Author: olivier Date: Mon Jun 19 05:09:02 2017 New Revision: 443860 URL: https://svnweb.freebsd.org/changeset/ports/443860 Log: Update to 1.3.0 PR: 220121 Reported by: Yuri Victorovich Modified: head/net/py-maxminddb/Makefile head/net/py-maxminddb/distinfo Modified: head/net/py-maxminddb/Makefile ============================================================================== --- head/net/py-maxminddb/Makefile Mon Jun 19 03:51:24 2017 (r443859) +++ head/net/py-maxminddb/Makefile Mon Jun 19 05:09:02 2017 (r443860) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= maxminddb -PORTVERSION= 1.2.3 +PORTVERSION= 1.3.0 DISTVERSIONPREFIX= v CATEGORIES= net python geography PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-maxminddb/distinfo ============================================================================== --- head/net/py-maxminddb/distinfo Mon Jun 19 03:51:24 2017 (r443859) +++ head/net/py-maxminddb/distinfo Mon Jun 19 05:09:02 2017 (r443860) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484322587 -SHA256 (maxmind-MaxMind-DB-Reader-python-v1.2.3_GH0.tar.gz) = 44cbc7999cf2877cc960d3160d6d6b030c0c69895b659a3db005ead3303fa8a6 -SIZE (maxmind-MaxMind-DB-Reader-python-v1.2.3_GH0.tar.gz) = 29807 +TIMESTAMP = 1497847251 +SHA256 (maxmind-MaxMind-DB-Reader-python-v1.3.0_GH0.tar.gz) = 3669e42da55e96d45132219f33ce0744764d49cce0b5fe6d6186e4bfc1f19c9b +SIZE (maxmind-MaxMind-DB-Reader-python-v1.3.0_GH0.tar.gz) = 30440 From owner-svn-ports-head@freebsd.org Mon Jun 19 05:24:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76530D95D33; Mon, 19 Jun 2017 05:24:37 +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 4605B64764; Mon, 19 Jun 2017 05:24: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 v5J5OapH054247; Mon, 19 Jun 2017 05:24:36 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J5Oap3054243; Mon, 19 Jun 2017 05:24:36 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201706190524.v5J5Oap3054243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 19 Jun 2017 05:24:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443861 - head/games/libgnome-games-support X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 05:24:37 -0000 Author: kwm Date: Mon Jun 19 05:24:35 2017 New Revision: 443861 URL: https://svnweb.freebsd.org/changeset/ports/443861 Log: Update libgnome-games-support to 1.2.2. Update WWW to point to the real git repo and not the github mirror. Modified: head/games/libgnome-games-support/Makefile head/games/libgnome-games-support/distinfo head/games/libgnome-games-support/pkg-descr head/games/libgnome-games-support/pkg-plist Modified: head/games/libgnome-games-support/Makefile ============================================================================== --- head/games/libgnome-games-support/Makefile Mon Jun 19 05:09:02 2017 (r443860) +++ head/games/libgnome-games-support/Makefile Mon Jun 19 05:24:35 2017 (r443861) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libgnome-games-support -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= games gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/games/libgnome-games-support/distinfo ============================================================================== --- head/games/libgnome-games-support/distinfo Mon Jun 19 05:09:02 2017 (r443860) +++ head/games/libgnome-games-support/distinfo Mon Jun 19 05:24:35 2017 (r443861) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481231681 -SHA256 (gnome3/libgnome-games-support-1.2.1.tar.xz) = a626396c72603add6bae1ab0b5bee1d58657cc7e232b1fe6fda746b960715ee7 -SIZE (gnome3/libgnome-games-support-1.2.1.tar.xz) = 340664 +TIMESTAMP = 1497849645 +SHA256 (gnome3/libgnome-games-support-1.2.2.tar.xz) = 4fefcf500ccd629b39925cb56903a0c8208cbc8d9236bca08d3a00561f7b0b13 +SIZE (gnome3/libgnome-games-support-1.2.2.tar.xz) = 341928 Modified: head/games/libgnome-games-support/pkg-descr ============================================================================== --- head/games/libgnome-games-support/pkg-descr Mon Jun 19 05:09:02 2017 (r443860) +++ head/games/libgnome-games-support/pkg-descr Mon Jun 19 05:24:35 2017 (r443861) @@ -1,4 +1,4 @@ libgnome-games-support is a small library intended for internal use by GNOME Games, but it may be used by others. -WWW: https://github.com/GNOME/libgnome-games-support +WWW: https://git.gnome.org/browse/libgnome-games-support Modified: head/games/libgnome-games-support/pkg-plist ============================================================================== --- head/games/libgnome-games-support/pkg-plist Mon Jun 19 05:09:02 2017 (r443860) +++ head/games/libgnome-games-support/pkg-plist Mon Jun 19 05:24:35 2017 (r443861) @@ -3,6 +3,7 @@ lib/libgnome-games-support-1.so lib/libgnome-games-support-1.so.2 lib/libgnome-games-support-1.so.2.0.4 libdata/pkgconfig/libgnome-games-support-1.pc +share/locale/be/LC_MESSAGES/libgnome-games-support.mo share/locale/bg/LC_MESSAGES/libgnome-games-support.mo share/locale/ca/LC_MESSAGES/libgnome-games-support.mo share/locale/cs/LC_MESSAGES/libgnome-games-support.mo @@ -19,6 +20,7 @@ share/locale/fr/LC_MESSAGES/libgnome-games-support.mo share/locale/fur/LC_MESSAGES/libgnome-games-support.mo share/locale/gl/LC_MESSAGES/libgnome-games-support.mo share/locale/he/LC_MESSAGES/libgnome-games-support.mo +share/locale/hr/LC_MESSAGES/libgnome-games-support.mo share/locale/hu/LC_MESSAGES/libgnome-games-support.mo share/locale/id/LC_MESSAGES/libgnome-games-support.mo share/locale/it/LC_MESSAGES/libgnome-games-support.mo @@ -38,5 +40,6 @@ share/locale/sr@latin/LC_MESSAGES/libgnome-games-suppo share/locale/sv/LC_MESSAGES/libgnome-games-support.mo share/locale/tr/LC_MESSAGES/libgnome-games-support.mo share/locale/uk/LC_MESSAGES/libgnome-games-support.mo +share/locale/zh_CN/LC_MESSAGES/libgnome-games-support.mo share/locale/zh_TW/LC_MESSAGES/libgnome-games-support.mo share/vala/vapi/libgnome-games-support-1.vapi From owner-svn-ports-head@freebsd.org Mon Jun 19 07:17:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D298ED9773F; Mon, 19 Jun 2017 07:17:10 +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 9B29B67308; Mon, 19 Jun 2017 07:17:10 +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 v5J7H97c099145; Mon, 19 Jun 2017 07:17:09 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J7H9Nn099140; Mon, 19 Jun 2017 07:17:09 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201706190717.v5J7H9Nn099140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 19 Jun 2017 07:17:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443862 - in head/deskutils/calibre: . 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, 19 Jun 2017 07:17:10 -0000 Author: madpilot Date: Mon Jun 19 07:17:09 2017 New Revision: 443862 URL: https://svnweb.freebsd.org/changeset/ports/443862 Log: Update deskutils/calibre to 3.0.0. Deleted: head/deskutils/calibre/files/patch-resources_content__server_browse_browse.html head/deskutils/calibre/files/patch-resources_content__server_index.html head/deskutils/calibre/files/patch-src_calibre_library_server_content.py Modified: head/deskutils/calibre/Makefile head/deskutils/calibre/distinfo head/deskutils/calibre/files/patch-setup_build__environment.py head/deskutils/calibre/files/patch-src_calibre_linux.py head/deskutils/calibre/pkg-plist Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Mon Jun 19 05:24:35 2017 (r443861) +++ head/deskutils/calibre/Makefile Mon Jun 19 07:17:09 2017 (r443862) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= calibre -PORTVERSION= 2.85.1 -PORTREVISION= 1 +PORTVERSION= 3.0.0 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ @@ -24,10 +23,12 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:datab ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml \ - ${PYTHON_PKGNAMEPREFIX}cssutils>=0.9.9,1:www/py-cssutils \ - ${PYTHON_PKGNAMEPREFIX}apsw>=0:databases/py-apsw + ${PYTHON_PKGNAMEPREFIX}cssutils>=1.0.1,1:www/py-cssutils \ + ${PYTHON_PKGNAMEPREFIX}apsw>=0:databases/py-apsw \ + ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0.3:devel/py-msgpack-python \ + ${PYTHON_PKGNAMEPREFIX}regex>=0:textproc/py-regex RUN_DEPENDS= xdg-open:devel/xdg-utils \ - ${PYTHON_PKGNAMEPREFIX}cssutils>=0.9.9,1:www/py-cssutils \ + ${PYTHON_PKGNAMEPREFIX}cssutils>=1.0.1,1:www/py-cssutils \ ${PYTHON_PKGNAMEPREFIX}dnspython>=0:dns/py-dnspython \ ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}beautifulsoup32>=0:www/py-beautifulsoup32 \ @@ -39,6 +40,9 @@ RUN_DEPENDS= xdg-open:devel/xdg-utils \ ${PYTHON_PKGNAMEPREFIX}netifaces>=0:net/py-netifaces \ ${PYTHON_PKGNAMEPREFIX}cssselect>=0:www/py-cssselect \ ${PYTHON_PKGNAMEPREFIX}apsw>=0:databases/py-apsw \ + ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0.3:devel/py-msgpack-python \ + ${PYTHON_PKGNAMEPREFIX}regex>=0:textproc/py-regex \ + ${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet \ pdftohtml:graphics/poppler-utils USE_RC_SUBR= calibre @@ -70,9 +74,6 @@ MAKE_ENV+= FC_INC_DIR="${LOCALBASE}/include/fontconfig QMAKE=${QMAKE} .include - -post-patch: - @${FIND} ${WRKSRC}/resources/content_server -name "*.orig" -delete do-build: @${MKDIR} ${WRKDIR}/calibre-config ${WRKDIR}/xdg-config Modified: head/deskutils/calibre/distinfo ============================================================================== --- head/deskutils/calibre/distinfo Mon Jun 19 05:24:35 2017 (r443861) +++ head/deskutils/calibre/distinfo Mon Jun 19 07:17:09 2017 (r443862) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494660273 -SHA256 (calibre-2.85.1.tar.xz) = 8c8db280c51b26284bff1c066fb503ecef9e1f15f7e2e7b4f705c817ee041abd -SIZE (calibre-2.85.1.tar.xz) = 37783284 +TIMESTAMP = 1497602270 +SHA256 (calibre-3.0.0.tar.xz) = 7cdaa5c55c8c13d6b5389ee11231c64944f5272297938e426be3a4fcf63a13fe +SIZE (calibre-3.0.0.tar.xz) = 35969076 Modified: head/deskutils/calibre/files/patch-setup_build__environment.py ============================================================================== --- head/deskutils/calibre/files/patch-setup_build__environment.py Mon Jun 19 05:24:35 2017 (r443861) +++ head/deskutils/calibre/files/patch-setup_build__environment.py Mon Jun 19 07:17:09 2017 (r443862) @@ -1,11 +1,11 @@ ---- setup/build_environment.py.orig 2016-06-24 01:54:27 UTC +--- setup/build_environment.py.orig 2017-06-16 04:00:12 UTC +++ setup/build_environment.py -@@ -98,7 +98,7 @@ pyqt['sip_bin'] = os.environ.get('SIP_BI +@@ -84,7 +84,7 @@ pyqt['sip_bin'] = os.environ.get('SIP_BIN', 'sip') from PyQt5.QtCore import PYQT_CONFIGURATION pyqt['sip_flags'] = PYQT_CONFIGURATION['sip_flags'] def get_sip_dir(): -- q = os.environ.get('SIP_DIR', sys.prefix if iswindows else os.path.join(sys.prefix, 'share', 'sip')) -+ q = os.environ.get('SIP_DIR', sys.prefix if iswindows else os.path.join(sys.prefix, 'share', 'py-sip')) +- q = os.environ.get('SIP_DIR', os.path.join(sys.prefix, 'share', 'sip') if iswindows else os.path.join(sys.prefix, 'share', 'sip')) ++ q = os.environ.get('SIP_DIR', os.path.join(sys.prefix, 'share', 'sip') if iswindows else os.path.join(sys.prefix, 'share', 'py-sip')) for x in ('', 'Py2-PyQt5', 'PyQt5', 'sip/PyQt5'): base = os.path.join(q, x) if os.path.exists(os.path.join(base, 'QtWidgets')): Modified: head/deskutils/calibre/files/patch-src_calibre_linux.py ============================================================================== --- head/deskutils/calibre/files/patch-src_calibre_linux.py Mon Jun 19 05:24:35 2017 (r443861) +++ head/deskutils/calibre/files/patch-src_calibre_linux.py Mon Jun 19 07:17:09 2017 (r443862) @@ -1,6 +1,6 @@ ---- src/calibre/linux.py.orig 2015-08-28 03:16:27 UTC +--- src/calibre/linux.py.orig 2017-06-16 04:00:12 UTC +++ src/calibre/linux.py -@@ -997,7 +997,7 @@ Name=E-book Viewer +@@ -1008,7 +1008,7 @@ Name=E-book Viewer GenericName=Viewer for E-books Comment=Viewer for E-books in all the major formats TryExec=ebook-viewer @@ -9,7 +9,7 @@ Icon=calibre-viewer Categories=Graphics;Viewer; ''' -@@ -1010,7 +1010,7 @@ Name=Edit E-book +@@ -1021,7 +1021,7 @@ Name=Edit E-book GenericName=Edit E-books Comment=Edit e-books in various formats TryExec=ebook-edit @@ -18,7 +18,7 @@ Icon=calibre-ebook-edit Categories=Office; ''' -@@ -1023,7 +1023,7 @@ Name=calibre +@@ -1034,7 +1034,7 @@ Name=calibre GenericName=E-book library management Comment=E-book library management: Convert, view, share, catalogue all your e-books TryExec=calibre Modified: head/deskutils/calibre/pkg-plist ============================================================================== --- head/deskutils/calibre/pkg-plist Mon Jun 19 05:24:35 2017 (r443861) +++ head/deskutils/calibre/pkg-plist Mon Jun 19 07:17:09 2017 (r443862) @@ -32,6 +32,31 @@ lib/calibre/calibre/db/backend.py lib/calibre/calibre/db/backup.py lib/calibre/calibre/db/cache.py lib/calibre/calibre/db/categories.py +lib/calibre/calibre/db/cli/__init__.py +lib/calibre/calibre/db/cli/cmd_add.py +lib/calibre/calibre/db/cli/cmd_add_custom_column.py +lib/calibre/calibre/db/cli/cmd_add_format.py +lib/calibre/calibre/db/cli/cmd_backup_metadata.py +lib/calibre/calibre/db/cli/cmd_catalog.py +lib/calibre/calibre/db/cli/cmd_check_library.py +lib/calibre/calibre/db/cli/cmd_clone.py +lib/calibre/calibre/db/cli/cmd_custom_columns.py +lib/calibre/calibre/db/cli/cmd_embed_metadata.py +lib/calibre/calibre/db/cli/cmd_export.py +lib/calibre/calibre/db/cli/cmd_list.py +lib/calibre/calibre/db/cli/cmd_list_categories.py +lib/calibre/calibre/db/cli/cmd_remove.py +lib/calibre/calibre/db/cli/cmd_remove_custom_column.py +lib/calibre/calibre/db/cli/cmd_remove_format.py +lib/calibre/calibre/db/cli/cmd_restore_database.py +lib/calibre/calibre/db/cli/cmd_saved_searches.py +lib/calibre/calibre/db/cli/cmd_search.py +lib/calibre/calibre/db/cli/cmd_set_custom.py +lib/calibre/calibre/db/cli/cmd_set_metadata.py +lib/calibre/calibre/db/cli/cmd_show_metadata.py +lib/calibre/calibre/db/cli/main.py +lib/calibre/calibre/db/cli/tests.py +lib/calibre/calibre/db/cli/utils.py lib/calibre/calibre/db/delete_service.py lib/calibre/calibre/db/errors.py lib/calibre/calibre/db/fields.py @@ -335,6 +360,7 @@ lib/calibre/calibre/ebooks/metadata/book/base.py lib/calibre/calibre/ebooks/metadata/book/formatter.py lib/calibre/calibre/ebooks/metadata/book/json_codec.py lib/calibre/calibre/ebooks/metadata/book/render.py +lib/calibre/calibre/ebooks/metadata/book/serialize.py lib/calibre/calibre/ebooks/metadata/cli.py lib/calibre/calibre/ebooks/metadata/docx.py lib/calibre/calibre/ebooks/metadata/epub.py @@ -690,6 +716,7 @@ lib/calibre/calibre/gui2/catalog/catalog_csv_xml.py lib/calibre/calibre/gui2/catalog/catalog_epub_mobi.py lib/calibre/calibre/gui2/catalog/catalog_epub_mobi_ui.py lib/calibre/calibre/gui2/catalog/catalog_tab_template_ui.py +lib/calibre/calibre/gui2/changes.py lib/calibre/calibre/gui2/comments_editor.py lib/calibre/calibre/gui2/complete2.py lib/calibre/calibre/gui2/convert/__init__.py @@ -830,8 +857,6 @@ lib/calibre/calibre/gui2/dialogs/saved_search_editor.p lib/calibre/calibre/gui2/dialogs/saved_search_editor_ui.py lib/calibre/calibre/gui2/dialogs/scheduler.py lib/calibre/calibre/gui2/dialogs/search.py -lib/calibre/calibre/gui2/dialogs/search_item_ui.py -lib/calibre/calibre/gui2/dialogs/search_ui.py lib/calibre/calibre/gui2/dialogs/select_formats.py lib/calibre/calibre/gui2/dialogs/smartdevice.py lib/calibre/calibre/gui2/dialogs/smartdevice_ui.py @@ -919,7 +944,6 @@ lib/calibre/calibre/gui2/preferences/search_ui.py lib/calibre/calibre/gui2/preferences/sending.py lib/calibre/calibre/gui2/preferences/sending_ui.py lib/calibre/calibre/gui2/preferences/server.py -lib/calibre/calibre/gui2/preferences/server_ui.py lib/calibre/calibre/gui2/preferences/template_functions.py lib/calibre/calibre/gui2/preferences/template_functions_ui.py lib/calibre/calibre/gui2/preferences/texture_chooser.py @@ -1139,7 +1163,6 @@ lib/calibre/calibre/library/catalogs/epub_mobi.py lib/calibre/calibre/library/catalogs/epub_mobi_builder.py lib/calibre/calibre/library/catalogs/utils.py lib/calibre/calibre/library/check_library.py -lib/calibre/calibre/library/cli.py lib/calibre/calibre/library/coloring.py lib/calibre/calibre/library/comments.py lib/calibre/calibre/library/custom_columns.py @@ -1150,29 +1173,15 @@ lib/calibre/calibre/library/prefs.py lib/calibre/calibre/library/restore.py lib/calibre/calibre/library/save_to_disk.py lib/calibre/calibre/library/schema_upgrades.py -lib/calibre/calibre/library/server/__init__.py -lib/calibre/calibre/library/server/ajax.py -lib/calibre/calibre/library/server/base.py -lib/calibre/calibre/library/server/browse.py -lib/calibre/calibre/library/server/cache.py -lib/calibre/calibre/library/server/content.py -lib/calibre/calibre/library/server/main.py -lib/calibre/calibre/library/server/mobile.py -lib/calibre/calibre/library/server/opds.py -lib/calibre/calibre/library/server/utils.py -lib/calibre/calibre/library/server/xml.py lib/calibre/calibre/library/sqlite.py -lib/calibre/calibre/library/test_cli.py lib/calibre/calibre/libunzip.py lib/calibre/calibre/linux.py lib/calibre/calibre/plugins/_patiencediff_c.so -lib/calibre/calibre/plugins/_regex.so lib/calibre/calibre/plugins/bzzdec.so lib/calibre/calibre/plugins/cPalmdoc.so lib/calibre/calibre/plugins/certgen.so lib/calibre/calibre/plugins/chm_extra.so lib/calibre/calibre/plugins/chmlib.so -lib/calibre/calibre/plugins/dukpy.so lib/calibre/calibre/plugins/freetype.so lib/calibre/calibre/plugins/html.so lib/calibre/calibre/plugins/hunspell.so @@ -1205,14 +1214,18 @@ lib/calibre/calibre/srv/auth.py lib/calibre/calibre/srv/auto_reload.py lib/calibre/calibre/srv/bonjour.py lib/calibre/calibre/srv/books.py +lib/calibre/calibre/srv/cdb.py +lib/calibre/calibre/srv/changes.py lib/calibre/calibre/srv/code.py lib/calibre/calibre/srv/content.py +lib/calibre/calibre/srv/embedded.py lib/calibre/calibre/srv/errors.py lib/calibre/calibre/srv/handler.py lib/calibre/calibre/srv/http_request.py lib/calibre/calibre/srv/http_response.py lib/calibre/calibre/srv/jobs.py lib/calibre/calibre/srv/legacy.py +lib/calibre/calibre/srv/library_broker.py lib/calibre/calibre/srv/loop.py lib/calibre/calibre/srv/metadata.py lib/calibre/calibre/srv/opds.py @@ -1337,6 +1350,7 @@ lib/calibre/calibre/utils/resources.py lib/calibre/calibre/utils/rss_gen.py lib/calibre/calibre/utils/run_tests.py lib/calibre/calibre/utils/search_query_parser.py +lib/calibre/calibre/utils/serialize.py lib/calibre/calibre/utils/serve_coffee.py lib/calibre/calibre/utils/sftp.py lib/calibre/calibre/utils/shared_file.py @@ -1349,6 +1363,7 @@ lib/calibre/calibre/utils/soupparser.py lib/calibre/calibre/utils/speedups.py lib/calibre/calibre/utils/spell/__init__.py lib/calibre/calibre/utils/terminal.py +lib/calibre/calibre/utils/test_lock.py lib/calibre/calibre/utils/text2int.py lib/calibre/calibre/utils/threadpool.py lib/calibre/calibre/utils/titlecase.py @@ -1374,89 +1389,6 @@ lib/calibre/calibre/web/feeds/templates.py lib/calibre/calibre/web/fetch/__init__.py lib/calibre/calibre/web/fetch/simple.py lib/calibre/calibre/web/fetch/utils.py -lib/calibre/chardet/__init__.py -lib/calibre/chardet/big5freq.py -lib/calibre/chardet/big5prober.py -lib/calibre/chardet/chardistribution.py -lib/calibre/chardet/charsetgroupprober.py -lib/calibre/chardet/charsetprober.py -lib/calibre/chardet/codingstatemachine.py -lib/calibre/chardet/constants.py -lib/calibre/chardet/escprober.py -lib/calibre/chardet/escsm.py -lib/calibre/chardet/eucjpprober.py -lib/calibre/chardet/euckrfreq.py -lib/calibre/chardet/euckrprober.py -lib/calibre/chardet/euctwfreq.py -lib/calibre/chardet/euctwprober.py -lib/calibre/chardet/gb2312freq.py -lib/calibre/chardet/gb2312prober.py -lib/calibre/chardet/hebrewprober.py -lib/calibre/chardet/jisfreq.py -lib/calibre/chardet/jpcntx.py -lib/calibre/chardet/langbulgarianmodel.py -lib/calibre/chardet/langcyrillicmodel.py -lib/calibre/chardet/langgreekmodel.py -lib/calibre/chardet/langhebrewmodel.py -lib/calibre/chardet/langhungarianmodel.py -lib/calibre/chardet/langthaimodel.py -lib/calibre/chardet/latin1prober.py -lib/calibre/chardet/mbcharsetprober.py -lib/calibre/chardet/mbcsgroupprober.py -lib/calibre/chardet/mbcssm.py -lib/calibre/chardet/sbcharsetprober.py -lib/calibre/chardet/sbcsgroupprober.py -lib/calibre/chardet/sjisprober.py -lib/calibre/chardet/test.py -lib/calibre/chardet/universaldetector.py -lib/calibre/chardet/utf8prober.py -lib/calibre/cherrypy/__init__.py -lib/calibre/cherrypy/_cpchecker.py -lib/calibre/cherrypy/_cpcompat.py -lib/calibre/cherrypy/_cpconfig.py -lib/calibre/cherrypy/_cpdispatch.py -lib/calibre/cherrypy/_cperror.py -lib/calibre/cherrypy/_cplogging.py -lib/calibre/cherrypy/_cpmodpy.py -lib/calibre/cherrypy/_cpnative_server.py -lib/calibre/cherrypy/_cpreqbody.py -lib/calibre/cherrypy/_cprequest.py -lib/calibre/cherrypy/_cpserver.py -lib/calibre/cherrypy/_cpthreadinglocal.py -lib/calibre/cherrypy/_cptools.py -lib/calibre/cherrypy/_cptree.py -lib/calibre/cherrypy/_cpwsgi.py -lib/calibre/cherrypy/_cpwsgi_server.py -lib/calibre/cherrypy/lib/__init__.py -lib/calibre/cherrypy/lib/auth.py -lib/calibre/cherrypy/lib/auth_basic.py -lib/calibre/cherrypy/lib/auth_digest.py -lib/calibre/cherrypy/lib/caching.py -lib/calibre/cherrypy/lib/covercp.py -lib/calibre/cherrypy/lib/cpstats.py -lib/calibre/cherrypy/lib/cptools.py -lib/calibre/cherrypy/lib/encoding.py -lib/calibre/cherrypy/lib/gctools.py -lib/calibre/cherrypy/lib/http.py -lib/calibre/cherrypy/lib/httpauth.py -lib/calibre/cherrypy/lib/httputil.py -lib/calibre/cherrypy/lib/jsontools.py -lib/calibre/cherrypy/lib/profiler.py -lib/calibre/cherrypy/lib/reprconf.py -lib/calibre/cherrypy/lib/sessions.py -lib/calibre/cherrypy/lib/static.py -lib/calibre/cherrypy/lib/xmlrpcutil.py -lib/calibre/cherrypy/process/__init__.py -lib/calibre/cherrypy/process/plugins.py -lib/calibre/cherrypy/process/servers.py -lib/calibre/cherrypy/process/win32.py -lib/calibre/cherrypy/process/wspbus.py -lib/calibre/cherrypy/scaffold/__init__.py -lib/calibre/cherrypy/wsgiserver/__init__.py -lib/calibre/cherrypy/wsgiserver/ssl_builtin.py -lib/calibre/cherrypy/wsgiserver/ssl_pyopenssl.py -lib/calibre/cherrypy/wsgiserver/wsgiserver2.py -lib/calibre/cherrypy/wsgiserver/wsgiserver3.py lib/calibre/css_selectors/__init__.py lib/calibre/css_selectors/errors.py lib/calibre/css_selectors/ordered_set.py @@ -1539,15 +1471,6 @@ lib/calibre/odf/text.py lib/calibre/odf/thumbnail.py lib/calibre/odf/userfield.py lib/calibre/odf/xforms.py -lib/calibre/regex/__init__.py -lib/calibre/regex/_regex_core.py -lib/calibre/routes/__init__.py -lib/calibre/routes/base.py -lib/calibre/routes/lru.py -lib/calibre/routes/mapper.py -lib/calibre/routes/middleware.py -lib/calibre/routes/route.py -lib/calibre/routes/util.py lib/calibre/templite/__init__.py lib/calibre/tinycss/__init__.py lib/calibre/tinycss/color3.py @@ -1592,54 +1515,6 @@ lib/calibre/tinycss/version.py %%DATADIR%%/content-server/mathjax.zip.xz %%DATADIR%%/content-server/mobile.css %%DATADIR%%/content-server/reset.css -%%DATADIR%%/content_server/av.jpg -%%DATADIR%%/content_server/bg_search_box.png -%%DATADIR%%/content_server/browse/browse.css -%%DATADIR%%/content_server/browse/browse.html -%%DATADIR%%/content_server/browse/browse.js -%%DATADIR%%/content_server/browse/details.html -%%DATADIR%%/content_server/browse/summary.html -%%DATADIR%%/content_server/btn_search_box.png -%%DATADIR%%/content_server/button-donate.png -%%DATADIR%%/content_server/calibre.png -%%DATADIR%%/content_server/calibre_banner.png -%%DATADIR%%/content_server/date.js -%%DATADIR%%/content_server/default_cover.jpg -%%DATADIR%%/content_server/first.png -%%DATADIR%%/content_server/gui.css -%%DATADIR%%/content_server/gui.js -%%DATADIR%%/content_server/index.html -%%DATADIR%%/content_server/jquery.corner.js -%%DATADIR%%/content_server/jquery.js -%%DATADIR%%/content_server/jquery.multiselect.css -%%DATADIR%%/content_server/jquery.multiselect.min.js -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_flat_75_aaaaaa_40x100.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_glass_100_f5f0e5_1x400.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_glass_25_cb842e_1x400.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_glass_70_ede4d4_1x400.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_highlight-hard_65_fee4bd_1x100.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-bg_inset-soft_100_f4f0ec_1x100.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-icons_c47a23_256x240.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-icons_cb672b_256x240.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-icons_f08000_256x240.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-icons_f35f07_256x240.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-icons_ff7519_256x240.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/images/ui-icons_ffffff_256x240.png -%%DATADIR%%/content_server/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css -%%DATADIR%%/content_server/jquery_ui/js/jquery-ui-1.8.5.custom.min.js -%%DATADIR%%/content_server/last.png -%%DATADIR%%/content_server/loading.gif -%%DATADIR%%/content_server/logo.png -%%DATADIR%%/content_server/mobile.css -%%DATADIR%%/content_server/next.png -%%DATADIR%%/content_server/previous.png -%%DATADIR%%/content_server/read/monocle.js -%%DATADIR%%/content_server/stacktrace.js -%%DATADIR%%/content_server/star-half.png -%%DATADIR%%/content_server/star-off.png -%%DATADIR%%/content_server/star-on.png %%DATADIR%%/csscolorparser.js %%DATADIR%%/default_tweaks.py %%DATADIR%%/dictionaries/en-GB/en-GB.aff @@ -1674,6 +1549,7 @@ lib/calibre/tinycss/version.py %%DATADIR%%/fonts/liberation/LiberationSerif-Regular.ttf %%DATADIR%%/images.qrc %%DATADIR%%/images/add_book.png +%%DATADIR%%/images/apple-touch-icon.png %%DATADIR%%/images/arrow-down.png %%DATADIR%%/images/arrow-up.png %%DATADIR%%/images/auto-reload.png @@ -1760,6 +1636,7 @@ lib/calibre/tinycss/version.py %%DATADIR%%/images/format-text-superscript.png %%DATADIR%%/images/format-text-underline.png %%DATADIR%%/images/forward.png +%%DATADIR%%/images/gear.png %%DATADIR%%/images/gmail_logo.png %%DATADIR%%/images/grid.png %%DATADIR%%/images/help.png @@ -1907,6 +1784,7 @@ lib/calibre/tinycss/version.py %%DATADIR%%/quick_start/eng.epub %%DATADIR%%/quick_start/fra.epub %%DATADIR%%/quick_start/ita.epub +%%DATADIR%%/quick_start/swe.epub %%DATADIR%%/rapydscript/compiler.js.xz %%DATADIR%%/rapydscript/lib/aes.pyj %%DATADIR%%/rapydscript/lib/elementmaker.pyj @@ -1941,6 +1819,7 @@ lib/calibre/tinycss/version.py %%DATADIR%%/viewer/hyphenate/patterns.zip %%DATADIR%%/viewer/hyphenation.js %%DATADIR%%/viewer/images.js +%%DATADIR%%/viewer/jquery.js %%DATADIR%%/viewer/jquery_scrollTo.js %%DATADIR%%/viewer/mathjax/MathJax.js %%DATADIR%%/viewer/mathjax/extensions/AssistiveMML.js From owner-svn-ports-head@freebsd.org Mon Jun 19 08:12:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78FADD98387; Mon, 19 Jun 2017 08:12:28 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40E8D687C3; Mon, 19 Jun 2017 08:12:28 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5J8CRQ4021079; Mon, 19 Jun 2017 08:12:27 GMT (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J8CRQA021077; Mon, 19 Jun 2017 08:12:27 GMT (envelope-from knu@FreeBSD.org) Message-Id: <201706190812.v5J8CRQA021077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: knu set sender to knu@FreeBSD.org using -f From: Akinori MUSHA Date: Mon, 19 Jun 2017 08:12:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443863 - head/lang/php-mode.el X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 08:12:28 -0000 Author: knu Date: Mon Jun 19 08:12:27 2017 New Revision: 443863 URL: https://svnweb.freebsd.org/changeset/ports/443863 Log: Update to 1.18.2 PR: 219987 Submitted by: Yasuhiro KIMURA Modified: head/lang/php-mode.el/Makefile head/lang/php-mode.el/distinfo Modified: head/lang/php-mode.el/Makefile ============================================================================== --- head/lang/php-mode.el/Makefile Mon Jun 19 07:17:09 2017 (r443862) +++ head/lang/php-mode.el/Makefile Mon Jun 19 08:12:27 2017 (r443863) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php-mode.el -PORTVERSION= 1.17.0 +PORTVERSION= 1.18.2 DISTVERSIONPREFIX= v CATEGORIES= lang elisp Modified: head/lang/php-mode.el/distinfo ============================================================================== --- head/lang/php-mode.el/distinfo Mon Jun 19 07:17:09 2017 (r443862) +++ head/lang/php-mode.el/distinfo Mon Jun 19 08:12:27 2017 (r443863) @@ -1,2 +1,3 @@ -SHA256 (ejmr-php-mode-v1.17.0_GH0.tar.gz) = 4393e452e7ade8b7479a3b942b985a9495f6a961b443308718756038d21c231d -SIZE (ejmr-php-mode-v1.17.0_GH0.tar.gz) = 72583 +TIMESTAMP = 1497450052 +SHA256 (ejmr-php-mode-v1.18.2_GH0.tar.gz) = 16b26a5584139db2dbc05414a686f54173d7505d7aa041ca12238188c23ea90c +SIZE (ejmr-php-mode-v1.18.2_GH0.tar.gz) = 81772 From owner-svn-ports-head@freebsd.org Mon Jun 19 09:02:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0743CD98F01; Mon, 19 Jun 2017 09:02:36 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB01B6A864; Mon, 19 Jun 2017 09:02:35 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5J92YdB044541; Mon, 19 Jun 2017 09:02:34 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J92YEu044539; Mon, 19 Jun 2017 09:02:34 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201706190902.v5J92YEu044539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dumbbell set sender to dumbbell@FreeBSD.org using -f From: =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= Date: Mon, 19 Jun 2017 09:02:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443864 - head/net/concourse-fly X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 09:02:36 -0000 Author: dumbbell Date: Mon Jun 19 09:02:34 2017 New Revision: 443864 URL: https://svnweb.freebsd.org/changeset/ports/443864 Log: net/concourse-fly: Update to 3.2.1 Modified: head/net/concourse-fly/Makefile head/net/concourse-fly/distinfo Modified: head/net/concourse-fly/Makefile ============================================================================== --- head/net/concourse-fly/Makefile Mon Jun 19 08:12:27 2017 (r443863) +++ head/net/concourse-fly/Makefile Mon Jun 19 09:02:34 2017 (r443864) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= concourse -PORTVERSION= 3.2.0 +PORTVERSION= 3.2.1 CATEGORIES= net sysutils MASTER_SITES= LOCAL/dumbbell/concourse/ PKGNAMESUFFIX= -fly Modified: head/net/concourse-fly/distinfo ============================================================================== --- head/net/concourse-fly/distinfo Mon Jun 19 08:12:27 2017 (r443863) +++ head/net/concourse-fly/distinfo Mon Jun 19 09:02:34 2017 (r443864) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497596170 -SHA256 (concourse-3.2.0.tar.xz) = 458bb0973751dbca283e218e2fa7dcd3014df9569dbd24db5189cd54c10402e9 -SIZE (concourse-3.2.0.tar.xz) = 22901852 +TIMESTAMP = 1497853980 +SHA256 (concourse-3.2.1.tar.xz) = 642765677bba14bf131f90ead3993beefddb3e4f6655dd9d3f8e8bce682de3a4 +SIZE (concourse-3.2.1.tar.xz) = 23058224 From owner-svn-ports-head@freebsd.org Mon Jun 19 09:02:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39CBAD98F39; Mon, 19 Jun 2017 09:02: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 088556A940; Mon, 19 Jun 2017 09:02:56 +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 v5J92uaV044641; Mon, 19 Jun 2017 09:02:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J92una044640; Mon, 19 Jun 2017 09:02:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706190902.v5J92una044640@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 19 Jun 2017 09:02:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443865 - head/audio/amarok-kde4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 09:02:57 -0000 Author: amdmi3 Date: Mon Jun 19 09:02:55 2017 New Revision: 443865 URL: https://svnweb.freebsd.org/changeset/ports/443865 Log: - Update WWW Approved by: portmgr blanket Modified: head/audio/amarok-kde4/pkg-descr Modified: head/audio/amarok-kde4/pkg-descr ============================================================================== --- head/audio/amarok-kde4/pkg-descr Mon Jun 19 09:02:34 2017 (r443864) +++ head/audio/amarok-kde4/pkg-descr Mon Jun 19 09:02:55 2017 (r443865) @@ -3,4 +3,4 @@ Windows with an intuitive interface. It makes playing love and discovering new music easier than ever before - and it looks good doing it! -WWW: http://amarok.kde.org +WWW: https://amarok.kde.org/ From owner-svn-ports-head@freebsd.org Mon Jun 19 09:43:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73C02D995CF; Mon, 19 Jun 2017 09:43: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 38FD76E71E; Mon, 19 Jun 2017 09:43: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 v5J9gxDi060838; Mon, 19 Jun 2017 09:42:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J9gxRr060835; Mon, 19 Jun 2017 09:42:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706190942.v5J9gxRr060835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 19 Jun 2017 09:42:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443866 - in head/x11-toolkits/scintilla: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 09:43:00 -0000 Author: amdmi3 Date: Mon Jun 19 09:42:59 2017 New Revision: 443866 URL: https://svnweb.freebsd.org/changeset/ports/443866 Log: - Update to 3.7.5 PR: 219711 Submitted by: lightside@gmx.com Approved by: cyberbotx@cyberbotx.com (maintainer) Modified: head/x11-toolkits/scintilla/Makefile head/x11-toolkits/scintilla/distinfo head/x11-toolkits/scintilla/files/patch-makefile Modified: head/x11-toolkits/scintilla/Makefile ============================================================================== --- head/x11-toolkits/scintilla/Makefile Mon Jun 19 09:02:55 2017 (r443865) +++ head/x11-toolkits/scintilla/Makefile Mon Jun 19 09:42:59 2017 (r443866) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= scintilla -PORTVERSION= 3.7.4 +PORTVERSION= 3.7.5 CATEGORIES= x11-toolkits MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= scite${PORTVERSION:S/.//g} Modified: head/x11-toolkits/scintilla/distinfo ============================================================================== --- head/x11-toolkits/scintilla/distinfo Mon Jun 19 09:02:55 2017 (r443865) +++ head/x11-toolkits/scintilla/distinfo Mon Jun 19 09:42:59 2017 (r443866) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490054625 -SHA256 (scite374.tgz) = 197372e80db2c16c86d9677a56a430209dc2f2adfdf9b7bda73b62dd19eb1e20 -SIZE (scite374.tgz) = 2329831 +TIMESTAMP = 1495751226 +SHA256 (scite375.tgz) = 51e6861284077268d4929bb2ff9c516e2ca8914b2bd0ac315d177befe24aef86 +SIZE (scite375.tgz) = 2380823 Modified: head/x11-toolkits/scintilla/files/patch-makefile ============================================================================== --- head/x11-toolkits/scintilla/files/patch-makefile Mon Jun 19 09:02:55 2017 (r443865) +++ head/x11-toolkits/scintilla/files/patch-makefile Mon Jun 19 09:42:59 2017 (r443866) @@ -1,4 +1,4 @@ ---- makefile.orig 2016-12-01 09:53:41 UTC +--- makefile.orig 2017-05-24 01:26:25 UTC +++ makefile @@ -9,14 +9,6 @@ srcdir ?= . @@ -31,7 +31,7 @@ vpath %.h $(srcdir) $(srcdir)/../src $(srcdir)/../include $(srcdir)/../lexlib @@ -98,7 +95,7 @@ GLIB_GENMARSHAL_FLAGS = --prefix=scintil - LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard $(srcdir)/../lexers/Lex*.cxx)))) + LEXOBJS:=$(addsuffix .o,$(basename $(sort $(notdir $(wildcard $(srcdir)/../lexers/Lex*.cxx))))) -all: $(COMPLIB) +all: $(COMPLIB) $(LEXRLIB) From owner-svn-ports-head@freebsd.org Mon Jun 19 09:43:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1005FD995D6; Mon, 19 Jun 2017 09:43: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 D4AA76E721; Mon, 19 Jun 2017 09:43: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 v5J9h3aq060977; Mon, 19 Jun 2017 09:43:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5J9h2k5060975; Mon, 19 Jun 2017 09:43:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706190943.v5J9h2k5060975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 19 Jun 2017 09:43:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443867 - head/editors/scite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 09:43:04 -0000 Author: amdmi3 Date: Mon Jun 19 09:43:02 2017 New Revision: 443867 URL: https://svnweb.freebsd.org/changeset/ports/443867 Log: - Update to 3.7.5 PR: 219711 Submitted by: lightside@gmx.com Approved by: cyberbotx@cyberbotx.com (maintainer) Modified: head/editors/scite/Makefile head/editors/scite/distinfo Modified: head/editors/scite/Makefile ============================================================================== --- head/editors/scite/Makefile Mon Jun 19 09:42:59 2017 (r443866) +++ head/editors/scite/Makefile Mon Jun 19 09:43:02 2017 (r443867) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= scite -PORTVERSION= 3.7.4 +PORTVERSION= 3.7.5 CATEGORIES= editors gnome MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} Modified: head/editors/scite/distinfo ============================================================================== --- head/editors/scite/distinfo Mon Jun 19 09:42:59 2017 (r443866) +++ head/editors/scite/distinfo Mon Jun 19 09:43:02 2017 (r443867) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490054625 -SHA256 (scite374.tgz) = 197372e80db2c16c86d9677a56a430209dc2f2adfdf9b7bda73b62dd19eb1e20 -SIZE (scite374.tgz) = 2329831 +TIMESTAMP = 1495751226 +SHA256 (scite375.tgz) = 51e6861284077268d4929bb2ff9c516e2ca8914b2bd0ac315d177befe24aef86 +SIZE (scite375.tgz) = 2380823 From owner-svn-ports-head@freebsd.org Mon Jun 19 10:01:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C628AD99886; Mon, 19 Jun 2017 10:01:25 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A04C56EE33; Mon, 19 Jun 2017 10:01:25 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JA1OHC068591; Mon, 19 Jun 2017 10:01:24 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JA1NwX068564; Mon, 19 Jun 2017 10:01:23 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201706191001.v5JA1NwX068564@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Mon, 19 Jun 2017 10:01:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443868 - in head: comms/pear-Horde_ActiveSync devel/pear-Horde_Alarm devel/pear-Horde_Cli devel/pear-Horde_Core devel/pear-Horde_Date X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 10:01:25 -0000 Author: mm Date: Mon Jun 19 10:01:23 2017 New Revision: 443868 URL: https://svnweb.freebsd.org/changeset/ports/443868 Log: Horde package update: comms/pear-Horde_ActiveSync 2.38.4 -> 2.38.5 devel/pear-Horde_Alarm 2.2.9 -> 2.2.10 devel/pear-Horde_Cli 2.2.0 -> 2.2.3 devel/pear-Horde_Core 2.28.3 -> 2.29.0 devel/pear-Horde_Date 2.3.2 -> 2.4.0 Modified: head/comms/pear-Horde_ActiveSync/Makefile head/comms/pear-Horde_ActiveSync/distinfo head/devel/pear-Horde_Alarm/Makefile head/devel/pear-Horde_Alarm/distinfo head/devel/pear-Horde_Cli/Makefile head/devel/pear-Horde_Cli/distinfo head/devel/pear-Horde_Core/Makefile head/devel/pear-Horde_Core/distinfo head/devel/pear-Horde_Date/Makefile head/devel/pear-Horde_Date/distinfo Modified: head/comms/pear-Horde_ActiveSync/Makefile ============================================================================== --- head/comms/pear-Horde_ActiveSync/Makefile Mon Jun 19 09:43:02 2017 (r443867) +++ head/comms/pear-Horde_ActiveSync/Makefile Mon Jun 19 10:01:23 2017 (r443868) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_ActiveSync -PORTVERSION= 2.38.4 +PORTVERSION= 2.38.5 CATEGORIES= comms www pear MAINTAINER= horde@FreeBSD.org Modified: head/comms/pear-Horde_ActiveSync/distinfo ============================================================================== --- head/comms/pear-Horde_ActiveSync/distinfo Mon Jun 19 09:43:02 2017 (r443867) +++ head/comms/pear-Horde_ActiveSync/distinfo Mon Jun 19 10:01:23 2017 (r443868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493852967 -SHA256 (Horde/Horde_ActiveSync-2.38.4.tgz) = 267788d9129c0b20acfd8b90f4f8baffc614eb16bc30786b7e147a8103700ab4 -SIZE (Horde/Horde_ActiveSync-2.38.4.tgz) = 386351 +TIMESTAMP = 1497866454 +SHA256 (Horde/Horde_ActiveSync-2.38.5.tgz) = cdc2aab534a5872a5d91311074f2d8e62ba0b47432b200292a767fcc9da9bba3 +SIZE (Horde/Horde_ActiveSync-2.38.5.tgz) = 386362 Modified: head/devel/pear-Horde_Alarm/Makefile ============================================================================== --- head/devel/pear-Horde_Alarm/Makefile Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Alarm/Makefile Mon Jun 19 10:01:23 2017 (r443868) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Horde_Alarm -PORTVERSION= 2.2.9 +PORTVERSION= 2.2.10 CATEGORIES= devel www pear MAINTAINER= horde@FreeBSD.org Modified: head/devel/pear-Horde_Alarm/distinfo ============================================================================== --- head/devel/pear-Horde_Alarm/distinfo Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Alarm/distinfo Mon Jun 19 10:01:23 2017 (r443868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493852970 -SHA256 (Horde/Horde_Alarm-2.2.9.tgz) = fe8a06fb16b87c10d588c73fab3da31bbd104f8fcfcd6dca830fd97d3c67d94c -SIZE (Horde/Horde_Alarm-2.2.9.tgz) = 38991 +TIMESTAMP = 1497866456 +SHA256 (Horde/Horde_Alarm-2.2.10.tgz) = 5d429afef8f359a60f0adc4d04fd5050dd91cb18fdf1e9aa74ffdf83e6c7bd81 +SIZE (Horde/Horde_Alarm-2.2.10.tgz) = 39026 Modified: head/devel/pear-Horde_Cli/Makefile ============================================================================== --- head/devel/pear-Horde_Cli/Makefile Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Cli/Makefile Mon Jun 19 10:01:23 2017 (r443868) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_Cli -PORTVERSION= 2.2.0 +PORTVERSION= 2.2.3 CATEGORIES= devel www pear MAINTAINER= horde@FreeBSD.org Modified: head/devel/pear-Horde_Cli/distinfo ============================================================================== --- head/devel/pear-Horde_Cli/distinfo Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Cli/distinfo Mon Jun 19 10:01:23 2017 (r443868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493852976 -SHA256 (Horde/Horde_Cli-2.2.0.tgz) = 11832d7eb51880e69729e2082e496f9b6054e1980cfd54784d5cc828fd34cef0 -SIZE (Horde/Horde_Cli-2.2.0.tgz) = 29360 +TIMESTAMP = 1497866459 +SHA256 (Horde/Horde_Cli-2.2.3.tgz) = 4a492419136c9cc277b4a31e425b8501e41e0cb0603241c277ddc35817576561 +SIZE (Horde/Horde_Cli-2.2.3.tgz) = 29446 Modified: head/devel/pear-Horde_Core/Makefile ============================================================================== --- head/devel/pear-Horde_Core/Makefile Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Core/Makefile Mon Jun 19 10:01:23 2017 (r443868) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Horde_Core -PORTVERSION= 2.28.3 +PORTVERSION= 2.29.0 CATEGORIES= devel www pear PKGNAMEPREFIX= pear- Modified: head/devel/pear-Horde_Core/distinfo ============================================================================== --- head/devel/pear-Horde_Core/distinfo Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Core/distinfo Mon Jun 19 10:01:23 2017 (r443868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491287765 -SHA256 (Horde/Horde_Core-2.28.3.tgz) = d98ba32a20a870dcb25c955eebcf53b4064ad6c939340508fc938f6a7f4829c3 -SIZE (Horde/Horde_Core-2.28.3.tgz) = 1659764 +TIMESTAMP = 1497866464 +SHA256 (Horde/Horde_Core-2.29.0.tgz) = ac6fea797d1910c3418348831b1d25a838d9833d0c8b7739c6380dd37cd6fae2 +SIZE (Horde/Horde_Core-2.29.0.tgz) = 1660738 Modified: head/devel/pear-Horde_Date/Makefile ============================================================================== --- head/devel/pear-Horde_Date/Makefile Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Date/Makefile Mon Jun 19 10:01:23 2017 (r443868) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Horde_Date -PORTVERSION= 2.3.2 +PORTVERSION= 2.4.0 CATEGORIES= devel www pear MAINTAINER= horde@FreeBSD.org Modified: head/devel/pear-Horde_Date/distinfo ============================================================================== --- head/devel/pear-Horde_Date/distinfo Mon Jun 19 09:43:02 2017 (r443867) +++ head/devel/pear-Horde_Date/distinfo Mon Jun 19 10:01:23 2017 (r443868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481937643 -SHA256 (Horde/Horde_Date-2.3.2.tgz) = 3783dc62364c9f5f54d070556ede9d805c64c533ed0b77fafbe837543c3fa723 -SIZE (Horde/Horde_Date-2.3.2.tgz) = 72551 +TIMESTAMP = 1497866467 +SHA256 (Horde/Horde_Date-2.4.0.tgz) = ebfcde32886e5402effbc83c72e54d310ea43b281c9ccbc4d2aabed5e6e76b9d +SIZE (Horde/Horde_Date-2.4.0.tgz) = 73405 From owner-svn-ports-head@freebsd.org Mon Jun 19 10:32:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CE15D99FB4; Mon, 19 Jun 2017 10:32:32 +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 683EC6FEF2; Mon, 19 Jun 2017 10:32:32 +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 v5JAWVtM081535; Mon, 19 Jun 2017 10:32:31 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JAWV2i081533; Mon, 19 Jun 2017 10:32:31 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706191032.v5JAWV2i081533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 19 Jun 2017 10:32:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443869 - 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: Mon, 19 Jun 2017 10:32:32 -0000 Author: mat Date: Mon Jun 19 10:32:31 2017 New Revision: 443869 URL: https://svnweb.freebsd.org/changeset/ports/443869 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 Mon Jun 19 10:01:23 2017 (r443868) +++ head/dns/bind9-devel/Makefile Mon Jun 19 10:32:31 2017 (r443869) @@ -31,8 +31,8 @@ LICENSE= MPL LICENSE_FILE= ${WRKSRC}/COPYRIGHT # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.12.0a.2017.06.14 -HASH= d6b626e +ISCVERSION= 9.12.0a.2017.06.17 +HASH= 5aa648e USES= cpe libedit Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Jun 19 10:01:23 2017 (r443868) +++ head/dns/bind9-devel/distinfo Mon Jun 19 10:32:31 2017 (r443869) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497526827 -SHA256 (bind9-d6b626e.tar.gz) = 4c665fb50d3360510754fe27de6117827d04bf075300518943012a995b1cf52a -SIZE (bind9-d6b626e.tar.gz) = 11875169 +TIMESTAMP = 1497868229 +SHA256 (bind9-5aa648e.tar.gz) = 57a3bbef89727430ff6503cf10006f71f246c7abd71aa990abf1e3bf4dde96a7 +SIZE (bind9-5aa648e.tar.gz) = 11875649 From owner-svn-ports-head@freebsd.org Mon Jun 19 10:32:39 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1635CD99FD3; Mon, 19 Jun 2017 10:32:39 +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 E4A206FF10; Mon, 19 Jun 2017 10:32:38 +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 v5JAWcY4081674; Mon, 19 Jun 2017 10:32:38 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JAWbPF081671; Mon, 19 Jun 2017 10:32:37 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706191032.v5JAWbPF081671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 19 Jun 2017 10:32:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443870 - in head/lang/perl5-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: Mon, 19 Jun 2017 10:32:39 -0000 Author: mat Date: Mon Jun 19 10:32:37 2017 New Revision: 443870 URL: https://svnweb.freebsd.org/changeset/ports/443870 Log: Update to v5.27.0-326-gd730a80. Changes: https://github.com/Perl/perl5/compare/v5.27.0-286-gf717dc4...v5.27.0-326-gd730a80 Sponsored by: Absolight Modified: head/lang/perl5-devel/Makefile (contents, props changed) head/lang/perl5-devel/distinfo (contents, props changed) head/lang/perl5-devel/files/patch-t_porting_customized.dat (contents, props changed) Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Mon Jun 19 10:32:31 2017 (r443869) +++ head/lang/perl5-devel/Makefile Mon Jun 19 10:32:37 2017 (r443870) @@ -35,7 +35,7 @@ TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} \ USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.27.0-286-gf717dc4 +GH_TAGNAME= v5.27.0-326-gd730a80 OPTIONS_DEFINE= DEBUG GDBM PERL_64BITINT MULTIPLICITY SITECUSTOMIZE \ THREADS PERL_MALLOC DTRACE DOT_INC Modified: head/lang/perl5-devel/distinfo ============================================================================== --- head/lang/perl5-devel/distinfo Mon Jun 19 10:32:31 2017 (r443869) +++ head/lang/perl5-devel/distinfo Mon Jun 19 10:32:37 2017 (r443870) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497262662 -SHA256 (perl/Perl-perl5-v5.27.0-286-gf717dc4_GH0.tar.gz) = 8376614b4ae7767b5a9acb73d71c338601da62b2fac121aaf79356e942ab0334 -SIZE (perl/Perl-perl5-v5.27.0-286-gf717dc4_GH0.tar.gz) = 18519043 +TIMESTAMP = 1497867464 +SHA256 (perl/Perl-perl5-v5.27.0-326-gd730a80_GH0.tar.gz) = 3e4e5389c4aef2a513918323b5ed5a59e517b05b556e0b1bbe556df43d53a34d +SIZE (perl/Perl-perl5-v5.27.0-326-gd730a80_GH0.tar.gz) = 18528432 Modified: head/lang/perl5-devel/files/patch-t_porting_customized.dat ============================================================================== --- head/lang/perl5-devel/files/patch-t_porting_customized.dat Mon Jun 19 10:32:31 2017 (r443869) +++ head/lang/perl5-devel/files/patch-t_porting_customized.dat Mon Jun 19 10:32:37 2017 (r443870) @@ -1,10 +1,10 @@ ---- t/porting/customized.dat.orig 2017-03-19 18:51:10 UTC +--- t/porting/customized.dat.orig 2017-06-18 21:44:07 UTC +++ t/porting/customized.dat @@ -1,6 +1,7 @@ Digest cpan/Digest/Digest.pm 43f7f544cb11842b2f55c73e28930da50774e081 Encode cpan/Encode/Unicode/Unicode.pm 9749692c67f7d69083034de9184a93f070ab4799 ExtUtils::Constant cpan/ExtUtils-Constant/t/Constant.t a0369c919e216fb02767a637666bb4577ad79b02 +ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm ac29a8dc1c7d6f0aca4abff0730c05bde1dab3ad - File::Path cpan/File-Path/lib/File/Path.pm fd8ce4420a0c113d3f47dd3223859743655c1da8 - File::Path cpan/File-Path/t/Path_win32.t 94b9276557ce7f80b91f6fd9bfa7a0cd9bf9683e - JSON::PP cpan/JSON-PP/bin/json_pp a7b8de6c201ef177ee82624ee4ca6a47cc1a3b4f + Locale::Maketext::Simple cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm 57ed38905791a17c150210cd6f42ead22a7707b6 + Math::Complex cpan/Math-Complex/lib/Math/Complex.pm 198ea6c6c584f5ea79a0fd7e9d411d0878f3b2af + Math::Complex cpan/Math-Complex/t/Complex.t 4f307ed6fc59f1e5fb0e6b11103fc631b6bdb335 From owner-svn-ports-head@freebsd.org Mon Jun 19 13:05:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28FB7D9C95F; Mon, 19 Jun 2017 13:05:14 +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 ED28A73DC3; Mon, 19 Jun 2017 13:05: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 v5JD5DYV041820; Mon, 19 Jun 2017 13:05:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JD5DX5041818; Mon, 19 Jun 2017 13:05:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706191305.v5JD5DX5041818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 19 Jun 2017 13:05:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443871 - head/multimedia/mpc-qt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 13:05:14 -0000 Author: jbeich Date: Mon Jun 19 13:05:12 2017 New Revision: 443871 URL: https://svnweb.freebsd.org/changeset/ports/443871 Log: multimedia/mpc-qt: update to 0.0.0.s20170618 Changes: https://github.com/cmdrkotori/mpc-qt/compare/999d18f...55cfb22 MFH: 2017Q2 Modified: head/multimedia/mpc-qt/Makefile (contents, props changed) head/multimedia/mpc-qt/distinfo (contents, props changed) Modified: head/multimedia/mpc-qt/Makefile ============================================================================== --- head/multimedia/mpc-qt/Makefile Mon Jun 19 10:32:37 2017 (r443870) +++ head/multimedia/mpc-qt/Makefile Mon Jun 19 13:05:12 2017 (r443871) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mpc-qt -DISTVERSION= 0.0.0.s20170616 +DISTVERSION= 0.0.0.s20170618 CATEGORIES= multimedia audio MASTER_SITES= https://aur.archlinux.org/cgit/aur.git/plain/${PORTNAME}.desktop?h=${PORTNAME}-git&id=b1a6b91&dummy=/:desktop DISTFILES= ${PORTNAME}.desktop:desktop @@ -16,7 +16,7 @@ LIB_DEPENDS= libmpv.so:multimedia/mpv USE_GITHUB= yes GH_ACCOUNT= cmdrkotori -GH_TAGNAME= 999d18f +GH_TAGNAME= 55cfb22 USES= compiler:c++11-lib desktop-file-utils pkgconfig qmake USE_QT5= qmake_build buildtools_build linguisttools_build \ Modified: head/multimedia/mpc-qt/distinfo ============================================================================== --- head/multimedia/mpc-qt/distinfo Mon Jun 19 10:32:37 2017 (r443870) +++ head/multimedia/mpc-qt/distinfo Mon Jun 19 13:05:12 2017 (r443871) @@ -1,5 +1,5 @@ -TIMESTAMP = 1497597838 +TIMESTAMP = 1497783196 SHA256 (mpc-qt.desktop) = 7694745aac0e52c050a6bc069a0686b025e509136919d985d3c4495eec0f1c9d SIZE (mpc-qt.desktop) = 1270 -SHA256 (cmdrkotori-mpc-qt-0.0.0.s20170616-999d18f_GH0.tar.gz) = 7fd9c37de32475804761e5d1eb683c3b47d96df1077f55dbe45880389f674d27 -SIZE (cmdrkotori-mpc-qt-0.0.0.s20170616-999d18f_GH0.tar.gz) = 156036 +SHA256 (cmdrkotori-mpc-qt-0.0.0.s20170618-55cfb22_GH0.tar.gz) = 3473afda5ff64a85d2cce10b32985bef35ff3639e61967c76784d7671e2f1081 +SIZE (cmdrkotori-mpc-qt-0.0.0.s20170618-55cfb22_GH0.tar.gz) = 155997 From owner-svn-ports-head@freebsd.org Mon Jun 19 13:14:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C3B6D9CB5C; Mon, 19 Jun 2017 13:14:33 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26A82742B8; Mon, 19 Jun 2017 13:14:33 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JDEWnp045938; Mon, 19 Jun 2017 13:14:32 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JDEWuG045936; Mon, 19 Jun 2017 13:14:32 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201706191314.v5JDEWuG045936@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Mon, 19 Jun 2017 13:14:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443872 - head/emulators/winetricks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 13:14:33 -0000 Author: lifanov Date: Mon Jun 19 13:14:31 2017 New Revision: 443872 URL: https://svnweb.freebsd.org/changeset/ports/443872 Log: update emulators/winetricks to 20170614 release Modified: head/emulators/winetricks/Makefile head/emulators/winetricks/distinfo Modified: head/emulators/winetricks/Makefile ============================================================================== --- head/emulators/winetricks/Makefile Mon Jun 19 13:05:12 2017 (r443871) +++ head/emulators/winetricks/Makefile Mon Jun 19 13:14:31 2017 (r443872) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= winetricks -PORTVERSION= 20170517 +PORTVERSION= 20170614 CATEGORIES= emulators MAINTAINER= lifanov@FreeBSD.org Modified: head/emulators/winetricks/distinfo ============================================================================== --- head/emulators/winetricks/distinfo Mon Jun 19 13:05:12 2017 (r443871) +++ head/emulators/winetricks/distinfo Mon Jun 19 13:14:31 2017 (r443872) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495127177 -SHA256 (Winetricks-winetricks-20170517_GH0.tar.gz) = 6699e0169c06d11c5467ae6440d8634575602af2f77430e31a781b2dc1790805 -SIZE (Winetricks-winetricks-20170517_GH0.tar.gz) = 637815 +TIMESTAMP = 1497878029 +SHA256 (Winetricks-winetricks-20170614_GH0.tar.gz) = c31a51b006511b0ee47c662ef0ef98dd77c6ae410b083927c27674200974d173 +SIZE (Winetricks-winetricks-20170614_GH0.tar.gz) = 637249 From owner-svn-ports-head@freebsd.org Mon Jun 19 13:42:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7701CD9D333; Mon, 19 Jun 2017 13:42:22 +0000 (UTC) (envelope-from olivier@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4728C750F4; Mon, 19 Jun 2017 13:42:22 +0000 (UTC) (envelope-from olivier@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JDgLZ5058191; Mon, 19 Jun 2017 13:42:21 GMT (envelope-from olivier@FreeBSD.org) Received: (from olivier@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JDgLpG058189; Mon, 19 Jun 2017 13:42:21 GMT (envelope-from olivier@FreeBSD.org) Message-Id: <201706191342.v5JDgLpG058189@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivier set sender to olivier@FreeBSD.org using -f From: Olivier Cochard Date: Mon, 19 Jun 2017 13:42:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443873 - head/graphics/ttygif X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 13:42:22 -0000 Author: olivier Date: Mon Jun 19 13:42:21 2017 New Revision: 443873 URL: https://svnweb.freebsd.org/changeset/ports/443873 Log: Update to 1.4.0 Modified: head/graphics/ttygif/Makefile head/graphics/ttygif/distinfo Modified: head/graphics/ttygif/Makefile ============================================================================== --- head/graphics/ttygif/Makefile Mon Jun 19 13:14:31 2017 (r443872) +++ head/graphics/ttygif/Makefile Mon Jun 19 13:42:21 2017 (r443873) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= ttygif -PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTVERSION= 1.4.0 CATEGORIES= graphics MAINTAINER= olivier@FreeBSD.org Modified: head/graphics/ttygif/distinfo ============================================================================== --- head/graphics/ttygif/distinfo Mon Jun 19 13:14:31 2017 (r443872) +++ head/graphics/ttygif/distinfo Mon Jun 19 13:42:21 2017 (r443873) @@ -1,2 +1,3 @@ -SHA256 (icholy-ttygif-1.2.1_GH0.tar.gz) = 661bf2ddb248773aa77881e72e6d2f1513ea470a6b282fc33ea2cf9646c5dc97 -SIZE (icholy-ttygif-1.2.1_GH0.tar.gz) = 6199 +TIMESTAMP = 1497849034 +SHA256 (icholy-ttygif-1.4.0_GH0.tar.gz) = 6ca3dc5dcade2bdcf8000068ae991eac518204960c157634d92f87248c3cee2a +SIZE (icholy-ttygif-1.4.0_GH0.tar.gz) = 8166 From owner-svn-ports-head@freebsd.org Mon Jun 19 13:43:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32FA4D9D3A5; Mon, 19 Jun 2017 13:43:38 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0FA9475201; Mon, 19 Jun 2017 13:43:37 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JDhbFQ058411; Mon, 19 Jun 2017 13:43:37 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JDhatK058406; Mon, 19 Jun 2017 13:43:36 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706191343.v5JDhatK058406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 19 Jun 2017 13:43:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443874 - in head/devel: . p5-List-Regexp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 13:43:38 -0000 Author: danfe Date: Mon Jun 19 13:43:36 2017 New Revision: 443874 URL: https://svnweb.freebsd.org/changeset/ports/443874 Log: Add `devel/p5-List-Regexp', a Perl module that converts a list of strings to a regular expression. WWW: http://search.cpan.org/dist/List-Regexp/ Submitted by: Zeus Panchenko Added: head/devel/p5-List-Regexp/ head/devel/p5-List-Regexp/Makefile (contents, props changed) head/devel/p5-List-Regexp/distinfo (contents, props changed) head/devel/p5-List-Regexp/pkg-descr (contents, props changed) head/devel/p5-List-Regexp/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jun 19 13:42:21 2017 (r443873) +++ head/devel/Makefile Mon Jun 19 13:43:36 2017 (r443874) @@ -2683,6 +2683,7 @@ SUBDIR += p5-List-Objects-WithUtils SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet + SUBDIR += p5-List-Regexp SUBDIR += p5-List-Rotation-Cycle SUBDIR += p5-List-SomeUtils SUBDIR += p5-List-SomeUtils-XS Added: head/devel/p5-List-Regexp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Regexp/Makefile Mon Jun 19 13:43:36 2017 (r443874) @@ -0,0 +1,18 @@ +# Created by: Zeus Panchenko +# $FreeBSD$ + +PORTNAME= List-Regexp +PORTVERSION= 1.03 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Convert list of strings to a regular expression + +LICENSE= GPLv3+ + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-List-Regexp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Regexp/distinfo Mon Jun 19 13:43:36 2017 (r443874) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475524207 +SHA256 (List-Regexp-1.03.tar.gz) = fb5d06ccbbb353a46dea0ed5f415ffc20a907e1f98b94b305b77567d34725eef +SIZE (List-Regexp-1.03.tar.gz) = 19317 Added: head/devel/p5-List-Regexp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Regexp/pkg-descr Mon Jun 19 13:43:36 2017 (r443874) @@ -0,0 +1,5 @@ +Returns a regular expression that will match any string from the input +list @strings. First argument can be a reference to a hash, which +controls how the regular expression is built. + +WWW: http://search.cpan.org/dist/List-Regexp/ Added: head/devel/p5-List-Regexp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Regexp/pkg-plist Mon Jun 19 13:43:36 2017 (r443874) @@ -0,0 +1,4 @@ +bin/regexp-opt +%%SITE_PERL%%/List/Regexp.pm +%%PERL5_MAN1%%/regexp-opt.1.gz +%%PERL5_MAN3%%/List::Regexp.3.gz From owner-svn-ports-head@freebsd.org Mon Jun 19 14:07:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FBA8D9D67C; Mon, 19 Jun 2017 14:07:10 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E40975945; Mon, 19 Jun 2017 14:07:10 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JE79m1066786; Mon, 19 Jun 2017 14:07:09 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JE790u066784; Mon, 19 Jun 2017 14:07:09 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201706191407.v5JE790u066784@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Mon, 19 Jun 2017 14:07:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443875 - in head/sysutils/xen-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, 19 Jun 2017 14:07:10 -0000 Author: royger (src committer) Date: Mon Jun 19 14:07:09 2017 New Revision: 443875 URL: https://svnweb.freebsd.org/changeset/ports/443875 Log: xen-tools: fix ASL QEMU code In order to build with newer IASL compiler found in FreeBSD 12 Approved by: bapt Sponsored by: Citrix Systems R&D MFH: 2017Q2 Added: head/sysutils/xen-tools/files/iasl-qemuu.patch (contents, props changed) Modified: head/sysutils/xen-tools/Makefile Modified: head/sysutils/xen-tools/Makefile ============================================================================== --- head/sysutils/xen-tools/Makefile Mon Jun 19 13:43:36 2017 (r443874) +++ head/sysutils/xen-tools/Makefile Mon Jun 19 14:07:09 2017 (r443875) @@ -3,7 +3,7 @@ PORTNAME= xen PKGNAMESUFFIX= -tools PORTVERSION= 4.7.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils emulators MASTER_SITES= http://downloads.xenproject.org/release/xen/${PORTVERSION}/ Added: head/sysutils/xen-tools/files/iasl-qemuu.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xen-tools/files/iasl-qemuu.patch Mon Jun 19 14:07:09 2017 (r443875) @@ -0,0 +1,26 @@ +diff --git a/hw/i386/acpi-dsdt.dsl b/hw/i386/acpi-dsdt.dsl +index a2d84ecf8f..e86d3eb263 100644 +--- a/hw/i386/acpi-dsdt.dsl ++++ b/hw/i386/acpi-dsdt.dsl +@@ -62,8 +62,6 @@ DefinitionBlock ( + + Scope(\_SB.PCI0) { + +- External(ISA, DeviceObj) +- + Device(ISA) { + Name(_ADR, 0x00010000) + +diff --git a/hw/i386/q35-acpi-dsdt.dsl b/hw/i386/q35-acpi-dsdt.dsl +index 16eaca3fae..44fa4a9c0c 100644 +--- a/hw/i386/q35-acpi-dsdt.dsl ++++ b/hw/i386/q35-acpi-dsdt.dsl +@@ -55,8 +55,6 @@ DefinitionBlock ( + Name(_ADR, 0x00) + Name(_UID, 1) + +- External(ISA, DeviceObj) +- + // _OSC: based on sample of ACPI3.0b spec + Name(SUPP, 0) // PCI _OSC Support Field value + Name(CTRL, 0) // PCI _OSC Control Field value From owner-svn-ports-head@freebsd.org Mon Jun 19 14:08:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F303D9D6D9; Mon, 19 Jun 2017 14:08:36 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDA3E75A52; Mon, 19 Jun 2017 14:08:35 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JE8YKb067026; Mon, 19 Jun 2017 14:08:34 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JE8YQs067022; Mon, 19 Jun 2017 14:08:34 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706191408.v5JE8YQs067022@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 19 Jun 2017 14:08:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443876 - in head/x11: . flruler flruler/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, 19 Jun 2017 14:08:36 -0000 Author: danfe Date: Mon Jun 19 14:08:34 2017 New Revision: 443876 URL: https://svnweb.freebsd.org/changeset/ports/443876 Log: A program for measuring the pixel size of on-screen elements. Intended for GUI debugging to verify widget separations and sizes, though may also be used for general computer graphics debugging purposes, including measuring pixel distances of images, web applications, etc. You can easily make copies of the ruler and reoriented it via either the keyboard or mouse. WWW: http://seriss.com/people/erco/fltk/flruler/ Added: head/x11/flruler/ head/x11/flruler/Makefile (contents, props changed) head/x11/flruler/distinfo (contents, props changed) head/x11/flruler/files/ head/x11/flruler/files/patch-Makefile (contents, props changed) head/x11/flruler/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Mon Jun 19 14:07:09 2017 (r443875) +++ head/x11/Makefile Mon Jun 19 14:08:34 2017 (r443876) @@ -66,6 +66,7 @@ SUBDIR += fireflies SUBDIR += fixesproto SUBDIR += florence + SUBDIR += flruler SUBDIR += fluxbg SUBDIR += fpc-x11 SUBDIR += fstobdf Added: head/x11/flruler/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/flruler/Makefile Mon Jun 19 14:08:34 2017 (r443876) @@ -0,0 +1,46 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= flruler +PORTVERSION= 1.05 +CATEGORIES= x11 +MASTER_SITES= http://seriss.com/people/erco/fltk/flruler/ + +MAINTAINER= danfe@FreeBSD.org +COMMENT= On-screen pixel ruler + +LICENSE= GPLv2 + +BUILD_DEPENDS= ${LOCALBASE}/lib/libfltk.a:x11-toolkits/fltk + +USES= gmake perl5 +USE_PERL5= build +USE_XORG= x11 xcursor xext xfixes xft xinerama + +PLIST_FILES= bin/flruler man/man1/flruler.1.gz \ + share/icons/hicolor/128x128/apps/flruler.png +PORTDOCS= * + +DESKTOP_ENTRIES= "Flruler" "${COMMENT}" "${PORTNAME}.png" \ + "${PORTNAME}" "Utility;" false + +OPTIONS_DEFINE= DOCS + +post-patch: +# New windows won't get created with zero width and height for some reason + @${REINPLACE_CMD} -e 's/,0,0/,1,1/' ${WRKSRC}/flruler.C + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/docs/${PORTNAME}.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/128x128/apps + ${INSTALL_DATA} ${WRKSRC}/misc/flruler-icon.png \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/128x128/apps/${PORTNAME}.png + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} CHANGES.txt TODO.txt \ + docs/${PORTNAME}.html ${STAGEDIR}${DOCSDIR} + +.include Added: head/x11/flruler/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/flruler/distinfo Mon Jun 19 14:08:34 2017 (r443876) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470190812 +SHA256 (flruler-1.05.tar.gz) = ece02a65bb408eaa83e46e0359bb1d8c07852b331f6f59975d8ae06c7197faaf +SIZE (flruler-1.05.tar.gz) = 25842 Added: head/x11/flruler/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/flruler/files/patch-Makefile Mon Jun 19 14:08:34 2017 (r443876) @@ -0,0 +1,30 @@ +--- Makefile.orig 2016-08-03 02:19:58 UTC ++++ Makefile +@@ -2,15 +2,13 @@ + SHELL=/bin/sh + VERSION=$(shell awk '/^[0-9]*\.[^ \t]/ {print $$1; exit(0);}' CHANGES.txt) + +-FLTK_DIR=/usr/local/src/fltk-1.3.x-svn +- + # FLTK BUILD +-CXX = $(shell $(FLTK_DIR)/fltk-config --cxx) +-CC = $(shell $(FLTK_DIR)/fltk-config --cxx) ++CXX = $(shell fltk-config --cxx) ++CC = $(shell fltk-config --cxx) + DEBUG = -g +-CXXFLAGS = $(shell $(FLTK_DIR)/fltk-config --cxxflags ) -I. -DVERSION=\"$(VERSION)\" -Wall ++CXXFLAGS = $(shell fltk-config --cxxflags ) -I. -DVERSION=\"$(VERSION)\" -Wall + CFLAGS = -Wall +-LDLIBS = $(shell $(FLTK_DIR)/fltk-config --ldstaticflags ) ++LDLIBS = $(shell fltk-config --ldstaticflags ) + LINK = $(CXX) + OS = $(shell uname -s) + +@@ -30,7 +28,6 @@ all: flruler docs + + flruler: flruler.o + $(LINK) flruler.o -o flruler $(LDLIBS) +- strip flruler + ifeq ($(OS),Darwin) + echo Creating flruler.app + rm -rf flruler.app Added: head/x11/flruler/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/flruler/pkg-descr Mon Jun 19 14:08:34 2017 (r443876) @@ -0,0 +1,9 @@ +A program for measuring the pixel size of on-screen elements. Intended for +GUI debugging to verify widget separations and sizes, though may also be +used for general computer graphics debugging purposes, including measuring +pixel distances of images, web applications, etc. + +You can easily make copies of the ruler and reoriented it via either the +keyboard or mouse. + +WWW: http://seriss.com/people/erco/fltk/flruler/ From owner-svn-ports-head@freebsd.org Mon Jun 19 15:05:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55773D9E98E; Mon, 19 Jun 2017 15:05:23 +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 2625677A08; Mon, 19 Jun 2017 15:05:23 +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 v5JF5MAE091412; Mon, 19 Jun 2017 15:05:22 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JF5MrV091410; Mon, 19 Jun 2017 15:05:22 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201706191505.v5JF5MrV091410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Mon, 19 Jun 2017 15:05:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443877 - head/www/linux-flashplayer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 15:05:23 -0000 Author: jkim Date: Mon Jun 19 15:05:21 2017 New Revision: 443877 URL: https://svnweb.freebsd.org/changeset/ports/443877 Log: Update to 26.0.0.131. PR: 220084 MFH: 2017Q2 Modified: head/www/linux-flashplayer/Makefile head/www/linux-flashplayer/distinfo Modified: head/www/linux-flashplayer/Makefile ============================================================================== --- head/www/linux-flashplayer/Makefile Mon Jun 19 14:08:34 2017 (r443876) +++ head/www/linux-flashplayer/Makefile Mon Jun 19 15:05:21 2017 (r443877) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplayer -PORTVERSION= 26.0.0.126 +PORTVERSION= 26.0.0.131 CATEGORIES= www multimedia linux MASTER_SITES= https://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION}/ PKGNAMEPREFIX= linux- Modified: head/www/linux-flashplayer/distinfo ============================================================================== --- head/www/linux-flashplayer/distinfo Mon Jun 19 14:08:34 2017 (r443876) +++ head/www/linux-flashplayer/distinfo Mon Jun 19 15:05:21 2017 (r443877) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497548309 -SHA256 (flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz) = da0ebfb4cfedb0c684a312be758e142801d32ca2ba610a55656aa9462d2fc1de -SIZE (flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz) = 8490374 +TIMESTAMP = 1497884523 +SHA256 (flashplayer/26.0.0.131/flash_player_npapi_linux.i386.tar.gz) = ae301d3885c96a07d342460a9c128ad51fa47067cfb98268bad23d1ca287fb4b +SIZE (flashplayer/26.0.0.131/flash_player_npapi_linux.i386.tar.gz) = 8490534 From owner-svn-ports-head@freebsd.org Mon Jun 19 15:33:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 774E7D9F23C; Mon, 19 Jun 2017 15:33: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 3FBAA79019; Mon, 19 Jun 2017 15:33: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 v5JFXqs3004268; Mon, 19 Jun 2017 15:33:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JFXqqc004267; Mon, 19 Jun 2017 15:33:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706191533.v5JFXqqc004267@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 19 Jun 2017 15:33:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443878 - head/graphics/yagf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 15:33:53 -0000 Author: amdmi3 Date: Mon Jun 19 15:33:52 2017 New Revision: 443878 URL: https://svnweb.freebsd.org/changeset/ports/443878 Log: - Update WWW Approved by: portmgr blanket Modified: head/graphics/yagf/pkg-descr Modified: head/graphics/yagf/pkg-descr ============================================================================== --- head/graphics/yagf/pkg-descr Mon Jun 19 15:05:21 2017 (r443877) +++ head/graphics/yagf/pkg-descr Mon Jun 19 15:33:52 2017 (r443878) @@ -4,4 +4,4 @@ XSane, perform images preprocessing and recognize text cuneiform from a single command centre. YAGF also makes it easy to scan and recognize several images sequentially. -WWW: http://symmetrica.net/cuneiform-linux/yagf-en.html +WWW: https://sourceforge.net/projects/yagf-ocr/ From owner-svn-ports-head@freebsd.org Mon Jun 19 16:06:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3F95D9FF65; Mon, 19 Jun 2017 16:06:13 +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 725B57A6FE; Mon, 19 Jun 2017 16:06:13 +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 v5JG6C6j017094; Mon, 19 Jun 2017 16:06:12 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JG6CWf017093; Mon, 19 Jun 2017 16:06:12 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706191606.v5JG6CWf017093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 19 Jun 2017 16:06:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443880 - head/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: Mon, 19 Jun 2017 16:06:13 -0000 Author: mat Date: Mon Jun 19 16:06:12 2017 New Revision: 443880 URL: https://svnweb.freebsd.org/changeset/ports/443880 Log: The THREADS option is defined twice, remove one of them. It makes poudriere think that options changed, and forces openssl to be rebuilt at every bulk run. Sponsored by: Absolight Modified: head/security/openssl-devel/Makefile (contents, props changed) Modified: head/security/openssl-devel/Makefile ============================================================================== --- head/security/openssl-devel/Makefile Mon Jun 19 15:35:04 2017 (r443879) +++ head/security/openssl-devel/Makefile Mon Jun 19 16:06:12 2017 (r443880) @@ -30,7 +30,7 @@ OPTIONS_GROUP_OPTIMIZE= ASM SSE2 THREADS OPTIONS_DEFINE_i386= I386 OPTIONS_GROUP_PROTOCOLS= NEXTPROTONEG SCTP SSL3 -OPTIONS_DEFINE= MAN3 RFC3779 SHARED THREADS ZLIB +OPTIONS_DEFINE= MAN3 RFC3779 SHARED ZLIB .if ${MACHINE_ARCH} == "amd64" OPTIONS_GROUP_OPTIMIZE+= EC From owner-svn-ports-head@freebsd.org Mon Jun 19 16:06:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A4F4BD9FF9B; Mon, 19 Jun 2017 16:06:22 +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 73BA07A747; Mon, 19 Jun 2017 16:06:22 +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 v5JG6Ls1017219; Mon, 19 Jun 2017 16:06:21 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JG6Liw017217; Mon, 19 Jun 2017 16:06:21 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706191606.v5JG6Liw017217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Mon, 19 Jun 2017 16:06:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443881 - head/devel/py-typed-ast X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 16:06:22 -0000 Author: dbn Date: Mon Jun 19 16:06:21 2017 New Revision: 443881 URL: https://svnweb.freebsd.org/changeset/ports/443881 Log: devel/py-typed-ast: update to 1.0.4 ChangeLog: - Implement partial support for Python 3.4: - Forbid the use of async/await keywords - Forbid the use of the '@' operator - Note: PEP 448 is not restricted Modified: head/devel/py-typed-ast/Makefile head/devel/py-typed-ast/distinfo Modified: head/devel/py-typed-ast/Makefile ============================================================================== --- head/devel/py-typed-ast/Makefile Mon Jun 19 16:06:12 2017 (r443880) +++ head/devel/py-typed-ast/Makefile Mon Jun 19 16:06:21 2017 (r443881) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= typed-ast -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-typed-ast/distinfo ============================================================================== --- head/devel/py-typed-ast/distinfo Mon Jun 19 16:06:12 2017 (r443880) +++ head/devel/py-typed-ast/distinfo Mon Jun 19 16:06:21 2017 (r443881) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492156600 -SHA256 (typed-ast-1.0.3.tar.gz) = 67184179697ea9128fa8fec1d3b4e26b41d6a2eceab4674c6e3da4b024309862 -SIZE (typed-ast-1.0.3.tar.gz) = 200353 +TIMESTAMP = 1497887869 +SHA256 (typed-ast-1.0.4.tar.gz) = 73f09aac0119f6664a3f471a1ec1c9b719f572bc9212913cea96a78b22c2e96e +SIZE (typed-ast-1.0.4.tar.gz) = 200529 From owner-svn-ports-head@freebsd.org Mon Jun 19 16:53:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9D1EDA0BA3; Mon, 19 Jun 2017 16:53:47 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA3417BFB1; Mon, 19 Jun 2017 16:53:47 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JGrkXK037186; Mon, 19 Jun 2017 16:53:46 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JGrkfL037184; Mon, 19 Jun 2017 16:53:46 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706191653.v5JGrkfL037184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 19 Jun 2017 16:53:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443883 - head/www/py-aiohttp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 16:53:48 -0000 Author: wg Date: Mon Jun 19 16:53:46 2017 New Revision: 443883 URL: https://svnweb.freebsd.org/changeset/ports/443883 Log: www/py-aiohttp: update to 2.1.0 Approved by: maintainer (via email) Modified: head/www/py-aiohttp/Makefile head/www/py-aiohttp/distinfo Modified: head/www/py-aiohttp/Makefile ============================================================================== --- head/www/py-aiohttp/Makefile Mon Jun 19 16:08:58 2017 (r443882) +++ head/www/py-aiohttp/Makefile Mon Jun 19 16:53:46 2017 (r443883) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= aiohttp -PORTVERSION= 0.21.2 +PORTVERSION= 2.1.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,8 +13,13 @@ COMMENT= HTTP client/server for asyncio LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc/py3-chardet +BUILD_DEPENDS= cython:lang/cython +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc/py3-chardet \ + ${PYTHON_PKGNAMEPREFIX}multidict>0:www/py-multidict \ + ${PYTHON_PKGNAMEPREFIX}yarl>0:www/py-yarl \ + ${PYTHON_PKGNAMEPREFIX}async_timeout>0:devel/py-async_timeout TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ + ${PYTHON_PKGNAMEPREFIX}pytest-timeout>0:devel/py-pytest-timeout \ ${PYTHON_PKGNAMEPREFIX}gunicorn>0:www/py-gunicorn USES= python:3.4+ Modified: head/www/py-aiohttp/distinfo ============================================================================== --- head/www/py-aiohttp/distinfo Mon Jun 19 16:08:58 2017 (r443882) +++ head/www/py-aiohttp/distinfo Mon Jun 19 16:53:46 2017 (r443883) @@ -1,2 +1,3 @@ -SHA256 (aiohttp-0.21.2.tar.gz) = 991e574309815036ca36889a8917005bb795522acd2ba9cc870e07c260c092b5 -SIZE (aiohttp-0.21.2.tar.gz) = 528570 +TIMESTAMP = 1497629998 +SHA256 (aiohttp-2.1.0.tar.gz) = 3e80d944e9295b1360e422d89746b99e23a99118420f826f990a632d284e21df +SIZE (aiohttp-2.1.0.tar.gz) = 748642 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:02:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA482DA0D12; Mon, 19 Jun 2017 17:02:47 +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 87CFC7C3FC; Mon, 19 Jun 2017 17:02:47 +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 v5JH2kpk041348; Mon, 19 Jun 2017 17:02:46 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JH2kBN041341; Mon, 19 Jun 2017 17:02:46 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201706191702.v5JH2kBN041341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Mon, 19 Jun 2017 17:02:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443884 - in head/cad/qcad: . 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, 19 Jun 2017 17:02:48 -0000 Author: mr Date: Mon Jun 19 17:02:46 2017 New Revision: 443884 URL: https://svnweb.freebsd.org/changeset/ports/443884 Log: Update to 3.17.1.0 Added: head/cad/qcad/files/patch-src_core_RBlockReferenceEntity.cpp (contents, props changed) Modified: head/cad/qcad/Makefile head/cad/qcad/distinfo head/cad/qcad/files/patch-qcad.pro head/cad/qcad/pkg-plist Modified: head/cad/qcad/Makefile ============================================================================== --- head/cad/qcad/Makefile Mon Jun 19 16:53:46 2017 (r443883) +++ head/cad/qcad/Makefile Mon Jun 19 17:02:46 2017 (r443884) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= qcad -PORTVERSION= 3.16.7.0 +PORTVERSION= 3.17.1.0 DISTVERSIONPREFIX= v -PORTREVISION= 2 +#PORTREVISION= 1 CATEGORIES= cad DIST_SUBDIR= ${PORTNAME} Modified: head/cad/qcad/distinfo ============================================================================== --- head/cad/qcad/distinfo Mon Jun 19 16:53:46 2017 (r443883) +++ head/cad/qcad/distinfo Mon Jun 19 17:02:46 2017 (r443884) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490111118 -SHA256 (qcad/qcad-qcad-v3.16.7.0_GH0.tar.gz) = 35d368ae6708300573b9b4565883f33cf63d6c2bd1e1b2d69d76c3aac4a6db93 -SIZE (qcad/qcad-qcad-v3.16.7.0_GH0.tar.gz) = 28771247 +TIMESTAMP = 1496501047 +SHA256 (qcad/qcad-qcad-v3.17.1.0_GH0.tar.gz) = 9456e45681bf9bb9a8baf50f0d707c11e5d71987390fdd0c6a4df8345858cf5b +SIZE (qcad/qcad-qcad-v3.17.1.0_GH0.tar.gz) = 29372817 Modified: head/cad/qcad/files/patch-qcad.pro ============================================================================== --- head/cad/qcad/files/patch-qcad.pro Mon Jun 19 16:53:46 2017 (r443883) +++ head/cad/qcad/files/patch-qcad.pro Mon Jun 19 17:02:46 2017 (r443884) @@ -1,13 +1,13 @@ ---- qcad.pro.orig 2017-03-21 17:03:39.136811000 +0000 -+++ qcad.pro 2017-03-21 16:00:21.618687000 +0000 +--- qcad.pro.orig 2017-06-03 16:46:16.887320000 +0200 ++++ qcad.pro 2017-06-03 16:46:29.469101000 +0200 @@ -13,7 +13,7 @@ } } -else { -- SUBDIRS += $$system("ls -d ../qcad?* 2>/dev/null | grep -v qcadmobile") +- SUBDIRS += $$system("ls -d ../qcad?* 2>/dev/null | grep -v $(basename $(pwd))$ | grep -v qcadmobile") -} +#else { -+# SUBDIRS += $$system("ls -d ../qcad?* 2>/dev/null | grep -v qcadmobile") ++# SUBDIRS += $$system("ls -d ../qcad?* 2>/dev/null | grep -v $(basename $(pwd))$ | grep -v qcadmobile") +#} !r_mobile { Added: head/cad/qcad/files/patch-src_core_RBlockReferenceEntity.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/qcad/files/patch-src_core_RBlockReferenceEntity.cpp Mon Jun 19 17:02:46 2017 (r443884) @@ -0,0 +1,9 @@ +--- src/core/RBlockReferenceEntity.cpp.orig 2017-06-18 19:08:03.431567000 +0200 ++++ src/core/RBlockReferenceEntity.cpp 2017-06-18 19:08:31.008331000 +0200 +@@ -418,5 +418,5 @@ + QStack blockRefStack = e.getBlockRefViewportStack(); + bool skip = false; +- for (int i=blockRefStack.length()-1; i>=0; i--) { ++ for (int i=blockRefStack.size()-1; i>=0; i--) { + REntity* ent = blockRefStack.at(i); + RBlockReferenceEntity* blockRef = dynamic_cast(ent); Modified: head/cad/qcad/pkg-plist ============================================================================== --- head/cad/qcad/pkg-plist Mon Jun 19 16:53:46 2017 (r443883) +++ head/cad/qcad/pkg-plist Mon Jun 19 17:02:46 2017 (r443884) @@ -1200,8 +1200,10 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_zh_CN.ts %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_zh_TW.qm %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_zh_TW.ts +%%DATADIR%%/scripts/Block/InsertScriptItem/InsertScriptItem-inverse.svg %%DATADIR%%/scripts/Block/InsertScriptItem/InsertScriptItem.js %%DATADIR%%/scripts/Block/InsertScriptItem/InsertScriptItem.pro +%%DATADIR%%/scripts/Block/InsertScriptItem/InsertScriptItem.svg %%DATADIR%%/scripts/Block/InsertScriptItem/InsertScriptItemInit.js %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_cs.qm %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_cs.ts @@ -7680,6 +7682,7 @@ lib/libstemmer.a %%DATADIR%%/scripts/Edit/ClipboardOperation.js %%DATADIR%%/scripts/Edit/Collapse-inverse.svg %%DATADIR%%/scripts/Edit/Collapse.svg +%%DATADIR%%/scripts/Edit/ConvertUnit/ConvertUnit-inverse.svg %%DATADIR%%/scripts/Edit/ConvertUnit/ConvertUnit.js %%DATADIR%%/scripts/Edit/ConvertUnit/ConvertUnit.pro %%DATADIR%%/scripts/Edit/ConvertUnit/ConvertUnit.svg @@ -11874,6 +11877,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ExAddBlock.pro %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_de.qm %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_de.ts +%%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_it.qm +%%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_it.ts %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_ru.qm %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_ru.ts %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_sk.qm @@ -11882,6 +11887,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ExAddBlock/ts/ExAddBlock_sl.ts %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/BlockExamples/ts/BlockExamples_sk.qm @@ -11896,6 +11903,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ExSetColor/test.dxf %%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/CommandLineExamples/ts/CommandLineExamples_sk.qm @@ -11909,6 +11918,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ExDrawColors.pro %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_de.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_de.ts +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_it.qm +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_it.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_ru.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_ru.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExDrawColors/ts/ExDrawColors_sk.qm @@ -11922,6 +11933,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ExLineDoveInit.js %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_de.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_de.ts +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_it.qm +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_it.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_ru.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_ru.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExLineDove/ts/ExLineDove_sk.qm @@ -11932,6 +11945,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ExText.pro %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_de.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_de.ts +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_it.qm +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_it.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_ru.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_ru.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExText/ts/ExText_sk.qm @@ -11942,6 +11957,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ExThreePoints.pro %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_de.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_de.ts +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_it.qm +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_it.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_ru.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_ru.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_sk.qm @@ -11950,6 +11967,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ExThreePoints/ts/ExThreePoints_sl.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/DrawExamples/ts/DrawExamples_sk.qm @@ -11964,6 +11983,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/points.txt %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_de.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_de.ts +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_it.qm +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_it.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_ru.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_ru.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExDumpPolyline/ts/ExDumpPolyline_sk.qm @@ -11974,6 +11995,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ExRegisterFileExporter.pro %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_de.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_de.ts +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_it.qm +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_it.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_ru.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_ru.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileExporter/ts/ExRegisterFileExporter_sk.qm @@ -11984,6 +12007,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ExRegisterFileImporter.pro %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_de.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_de.ts +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_it.qm +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_it.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_ru.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_ru.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExRegisterFileImporter/ts/ExRegisterFileImporter_sk.qm @@ -11995,6 +12020,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ExXmlExportInit.js %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_de.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_de.ts +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_it.qm +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_it.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_ru.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_ru.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlExport/ts/ExXmlExport_sk.qm @@ -12006,6 +12033,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ExXmlImportInit.js %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_de.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_de.ts +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_it.qm +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_it.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_ru.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_ru.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ExXmlImport/ts/ExXmlImport_sk.qm @@ -12019,6 +12048,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/IOExamples/_AutoLoadInitFileDialog/readme.txt %%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/IOExamples/ts/IOExamples_sk.qm @@ -12030,6 +12061,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ExAddLayer.pro %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_de.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_de.ts +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_it.qm +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_it.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_ru.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_ru.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExAddLayer/ts/ExAddLayer_sk.qm @@ -12040,6 +12073,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ExLayerCustomProperty.pro %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_de.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_de.ts +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_it.qm +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_it.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_ru.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_ru.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerCustomProperty/ts/ExLayerCustomProperty_sk.qm @@ -12051,6 +12086,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ExLayerFromHatchesInit.js %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_de.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_de.ts +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_it.qm +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_it.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_ru.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_ru.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerFromHatches/ts/ExLayerFromHatches_sk.qm @@ -12061,6 +12098,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ExLayerWhiteToBlack.pro %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_de.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_de.ts +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_it.qm +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_it.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_ru.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_ru.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ExLayerWhiteToBlack/ts/ExLayerWhiteToBlack_sk.qm @@ -12071,6 +12110,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/LayerExamples/LayerExamples.pro %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/LayerExamples/ts/LayerExamples_sk.qm @@ -12084,6 +12125,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ExTransactionListener.pro %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_de.qm %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_de.ts +%%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_it.qm +%%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_it.ts %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_ru.qm %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_ru.ts %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ExTransactionListener/ts/ExTransactionListener_sk.qm @@ -12094,6 +12137,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ListenerExamples.pro %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/ListenerExamples/ts/ListenerExamples_sk.qm @@ -12105,6 +12150,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ExMathSpiral.pro %%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_de.qm %%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_de.ts +%%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_it.qm +%%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_it.ts %%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_ru.qm %%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_ru.ts %%DATADIR%%/scripts/Misc/Examples/MathExamples/ExMathSpiral/ts/ExMathSpiral_sk.qm @@ -12115,6 +12162,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/MathExamples/MathExamples.pro %%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/MathExamples/ts/MathExamples_sk.qm @@ -12126,6 +12175,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ExDirListing.pro %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_de.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_de.ts +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_it.qm +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_it.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_ru.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_ru.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExDirListing/ts/ExDirListing_sk.qm @@ -12137,6 +12188,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/MyAction.png %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_de.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_de.ts +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_it.qm +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_it.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_ru.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_ru.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExMainWindow/ts/ExMainWindow_sk.qm @@ -12147,6 +12200,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ExProcess.pro %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_de.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_de.ts +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_it.qm +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_it.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_ru.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_ru.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExProcess/ts/ExProcess_sk.qm @@ -12158,6 +12213,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ExResizeWindow.ui %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_de.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_de.ts +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_it.qm +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_it.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_ru.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_ru.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ExResizeWindow/ts/ExResizeWindow_sk.qm @@ -12168,6 +12225,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/QtExamples/QtExamples.pro %%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_de.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_de.ts +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_it.qm +%%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_it.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_ru.qm %%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_ru.ts %%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/QtExamples_sk.qm @@ -12177,6 +12236,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Examples/QtExamples/ts/ts.pro %%DATADIR%%/scripts/Misc/Examples/ts/Examples_de.qm %%DATADIR%%/scripts/Misc/Examples/ts/Examples_de.ts +%%DATADIR%%/scripts/Misc/Examples/ts/Examples_it.qm +%%DATADIR%%/scripts/Misc/Examples/ts/Examples_it.ts %%DATADIR%%/scripts/Misc/Examples/ts/Examples_ru.qm %%DATADIR%%/scripts/Misc/Examples/ts/Examples_ru.ts %%DATADIR%%/scripts/Misc/Examples/ts/Examples_sk.qm @@ -12190,6 +12251,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/BlockFixNames.pro %%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_de.qm %%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_de.ts +%%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_it.qm +%%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_it.ts %%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_ru.qm %%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_ru.ts %%DATADIR%%/scripts/Misc/MiscBlock/BlockFixNames/ts/BlockFixNames_sk.qm @@ -12200,6 +12263,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/BlockListAttributes.pro %%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_de.qm %%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_de.ts +%%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_it.qm +%%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_it.ts %%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_ru.qm %%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_ru.ts %%DATADIR%%/scripts/Misc/MiscBlock/BlockListAttributes/ts/BlockListAttributes_sk.qm @@ -12210,6 +12275,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/BlockListExport.pro %%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_de.qm %%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_de.ts +%%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_it.qm +%%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_it.ts %%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_ru.qm %%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_ru.ts %%DATADIR%%/scripts/Misc/MiscBlock/BlockListExport/ts/BlockListExport_sk.qm @@ -12220,6 +12287,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscBlock/MiscBlock.pro %%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_de.qm %%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_de.ts +%%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_it.qm +%%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_it.ts %%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_ru.qm %%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_ru.ts %%DATADIR%%/scripts/Misc/MiscBlock/ts/MiscBlock_sk.qm @@ -12231,6 +12300,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/DevDebug.pro %%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_de.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_de.ts +%%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_it.qm +%%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_it.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_ru.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_ru.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/DevDebug/ts/DevDebug_sk.qm @@ -12247,6 +12318,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ToggleTitleBar.svg %%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_de.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_de.ts +%%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_it.qm +%%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_it.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_ru.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_ru.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/EcmaScriptShell/ts/EcmaScriptShell_sk.qm @@ -12263,6 +12336,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/doc/RunScript.png %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_de.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_de.ts +%%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_it.qm +%%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_it.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_ru.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_ru.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_sk.qm @@ -12271,6 +12346,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDevelopment/RunScript/ts/RunScript_sl.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_de.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_de.ts +%%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_it.qm +%%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_it.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_ru.qm %%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_ru.ts %%DATADIR%%/scripts/Misc/MiscDevelopment/ts/MiscDevelopment_sk.qm @@ -12286,6 +12363,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/Counter/CounterInit.js %%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/Counter/ts/Counter_sk.qm @@ -12304,6 +12383,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/Cross/doc/CrossFigure.svg %%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/Cross/ts/Cross_sk.qm @@ -12314,6 +12395,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/DrawBoundingBox.pro %%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/DrawBoundingBox/ts/DrawBoundingBox_sk.qm @@ -12328,6 +12411,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/LineBoxJointInit.js %%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineBoxJoint/ts/LineBoxJoint_sk.qm @@ -12342,6 +12427,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/LineDove/LineDoveInit.js %%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineDove/ts/LineDove_sk.qm @@ -12356,6 +12443,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/LineRadicalAxisInit.js %%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineRadicalAxis/ts/LineRadicalAxis_sk.qm @@ -12369,6 +12458,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/LineSimilarityAxesInit.js %%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/LineSimilarityAxes/ts/LineSimilarityAxes_sk.qm @@ -12384,6 +12475,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/PointPole/PointPoleInit.js %%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/PointPole/ts/PointPole_sk.qm @@ -12397,6 +12490,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/PointPowerCenterInit.js %%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/PointPowerCenter/ts/PointPowerCenter_sk.qm @@ -12410,6 +12505,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/XLineHorizontalInit.js %%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/XLineHorizontal/ts/XLineHorizontal_sk.qm @@ -12423,6 +12520,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/XLineVerticalInit.js %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_sk.qm @@ -12431,6 +12530,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscDraw/XLineVertical/ts/XLineVertical_sl.ts %%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_de.qm %%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_de.ts +%%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_it.qm +%%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_it.ts %%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_ru.qm %%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_ru.ts %%DATADIR%%/scripts/Misc/MiscDraw/ts/MiscDraw_sk.qm @@ -12443,6 +12544,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/data.txt %%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_de.qm %%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_de.ts +%%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_it.qm +%%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_it.ts %%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_ru.qm %%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_ru.ts %%DATADIR%%/scripts/Misc/MiscIO/ImportPoints/ts/ImportPoints_sk.qm @@ -12460,6 +12563,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscIO/MolImport/mol/1x1cm.mol %%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_de.qm %%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_de.ts +%%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_it.qm +%%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_it.ts %%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_ru.qm %%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_ru.ts %%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_sk.qm @@ -12468,6 +12573,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscIO/MolImport/ts/MolImport_sl.ts %%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_de.qm %%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_de.ts +%%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_it.qm +%%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_it.ts %%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_ru.qm %%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_ru.ts %%DATADIR%%/scripts/Misc/MiscIO/ts/MiscIO_sk.qm @@ -12479,6 +12586,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ChangeFontToArial.pro %%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_de.qm %%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_de.ts +%%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_it.qm +%%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_it.ts %%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_ru.qm %%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_ru.ts %%DATADIR%%/scripts/Misc/MiscModify/ChangeFontToArial/ts/ChangeFontToArial_sk.qm @@ -12489,6 +12598,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/FlushBackLog.pro %%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_de.qm %%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_de.ts +%%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_it.qm +%%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_it.ts %%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_ru.qm %%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_ru.ts %%DATADIR%%/scripts/Misc/MiscModify/FlushBackLog/ts/FlushBackLog_sk.qm @@ -12501,6 +12612,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ReloadLinetypes.pro %%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_de.qm %%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_de.ts +%%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_it.qm +%%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_it.ts %%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_ru.qm %%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_ru.ts %%DATADIR%%/scripts/Misc/MiscModify/ReloadLinetypes/ts/ReloadLinetypes_sk.qm @@ -12511,6 +12624,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/SplineToLine.pro %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_de.qm %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_de.ts +%%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_it.qm +%%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_it.ts %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_ru.qm %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_ru.ts %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_sk.qm @@ -12519,6 +12634,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscModify/SplineToLine/ts/SplineToLine_sl.ts %%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_de.qm %%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_de.ts +%%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_it.qm +%%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_it.ts %%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_ru.qm %%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_ru.ts %%DATADIR%%/scripts/Misc/MiscModify/ts/MiscModify_sk.qm @@ -12534,6 +12651,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/SelectByHandleInit.js %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_de.qm %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_de.ts +%%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_it.qm +%%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_it.ts %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_ru.qm %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_ru.ts %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_sk.qm @@ -12542,6 +12661,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/MiscSelect/SelectByHandle/ts/SelectByHandle_sl.ts %%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_de.qm %%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_de.ts +%%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_it.qm +%%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_it.ts %%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_ru.qm %%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_ru.ts %%DATADIR%%/scripts/Misc/MiscSelect/ts/MiscSelect_sk.qm @@ -12597,6 +12718,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/LaunchCommandLineTool/LaunchCommandLineTool.pro %%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_de.qm %%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_de.ts +%%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_it.qm +%%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_it.ts %%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_ru.qm %%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_ru.ts %%DATADIR%%/scripts/Misc/Tutorials/CommandLineTools/ts/CommandLineTools_sk.qm @@ -12618,6 +12741,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/MyScripts.js %%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_de.qm %%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_de.ts +%%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_it.qm +%%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_it.ts %%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_ru.qm %%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_ru.ts %%DATADIR%%/scripts/Misc/Tutorials/MenusAndToolBars/ts/MenusAndToolBars_sk.qm @@ -12631,6 +12756,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/PersistentWidgets.ui %%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_de.qm %%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_de.ts +%%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_it.qm +%%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_it.ts %%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_ru.qm %%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_ru.ts %%DATADIR%%/scripts/Misc/Tutorials/PersistentWidgets/ts/PersistentWidgets_sk.qm @@ -12643,6 +12770,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Misc/Tutorials/Tutorials.pro %%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_de.qm %%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_de.ts +%%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_it.qm +%%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_it.ts %%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_ru.qm %%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_ru.ts %%DATADIR%%/scripts/Misc/Tutorials/ts/Tutorials_sk.qm @@ -13418,6 +13547,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Modify/FlipHorizontal/Tests/required/FlipHorizontalTest00_000.dxf %%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal.png %%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal_de.html +%%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal_desc_de.html +%%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal_desc_en.html %%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal_en.html %%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal_it.html %%DATADIR%%/scripts/Modify/FlipHorizontal/doc/FlipHorizontal_ja.html @@ -13470,6 +13601,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Modify/FlipVertical/Tests/required/FlipVerticalTest00_000.dxf %%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical.png %%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical_de.html +%%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical_desc_de.html +%%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical_desc_en.html %%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical_en.html %%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical_it.html %%DATADIR%%/scripts/Modify/FlipVertical/doc/FlipVertical_ja.html From owner-svn-ports-head@freebsd.org Mon Jun 19 17:04:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B067DA0D50; Mon, 19 Jun 2017 17:04:26 +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 B691F7C509; Mon, 19 Jun 2017 17:04:25 +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 v5JH4Opv041560; Mon, 19 Jun 2017 17:04:24 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JH4O1r041557; Mon, 19 Jun 2017 17:04:24 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201706191704.v5JH4O1r041557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Mon, 19 Jun 2017 17:04:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443885 - 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: Mon, 19 Jun 2017 17:04:26 -0000 Author: mr Date: Mon Jun 19 17:04:24 2017 New Revision: 443885 URL: https://svnweb.freebsd.org/changeset/ports/443885 Log: Update to 20170602115111. Modified: head/cad/kicad-devel/Makefile.git_rev head/cad/kicad-devel/distinfo head/cad/kicad-devel/pkg-plist Modified: head/cad/kicad-devel/Makefile.git_rev ============================================================================== --- head/cad/kicad-devel/Makefile.git_rev Mon Jun 19 17:02:46 2017 (r443884) +++ head/cad/kicad-devel/Makefile.git_rev Mon Jun 19 17:04:24 2017 (r443885) @@ -1,2 +1,2 @@ -GIT_SRC_HASH= 9fe780f1b3cd8a3d0d44a78c7381fae3add52b29 -GIT_SRC_DATE= 20170322171812 +GIT_SRC_HASH= ac9a64a1736617846a479f825e535dcf8f786b38 +GIT_SRC_DATE= 20170602115111 Modified: head/cad/kicad-devel/distinfo ============================================================================== --- head/cad/kicad-devel/distinfo Mon Jun 19 17:02:46 2017 (r443884) +++ head/cad/kicad-devel/distinfo Mon Jun 19 17:04:24 2017 (r443885) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490205970 -SHA256 (kicad/kicad-r20170322171812.tar.bz2) = 80dc261521f5f5707fb853486c881a2da8a70cb7fb6fe8036e3e70763621e211 -SIZE (kicad/kicad-r20170322171812.tar.bz2) = 221779506 +TIMESTAMP = 1496501733 +SHA256 (kicad/kicad-r20170602115111.tar.bz2) = 2966419d1b469adc46c3ced313cca584afb9bb279b2ce36bb00d1910df837063 +SIZE (kicad/kicad-r20170602115111.tar.bz2) = 239926339 Modified: head/cad/kicad-devel/pkg-plist ============================================================================== --- head/cad/kicad-devel/pkg-plist Mon Jun 19 17:02:46 2017 (r443884) +++ head/cad/kicad-devel/pkg-plist Mon Jun 19 17:04:24 2017 (r443885) @@ -12,20 +12,30 @@ bin/idf2vrml bin/idfcyl bin/idfrect bin/kicad +bin/kicad-ogltest bin/pcb_calculator bin/pcbnew bin/pl_editor lib/kicad/plugins/3d/libs3d_plugin_idf.so lib/kicad/plugins/3d/libs3d_plugin_vrml.so +lib/kicad/plugins/README-bom.txt lib/kicad/plugins/bom2csv.xsl lib/kicad/plugins/bom2grouped_csv.xsl +lib/kicad/plugins/bom_csv_grouped_by_value.py +lib/kicad/plugins/bom_csv_grouped_by_value_with_fp.py +lib/kicad/plugins/bom_csv_sorted_by_ref.py +lib/kicad/plugins/bom_html_grouped_by_value.py +lib/kicad/plugins/bom_html_with_advanced_grouping.py +lib/kicad/plugins/bom_sorted_by_ref.py lib/kicad/plugins/bom_with_title_block_2_csv.xsl +lib/kicad/plugins/kicad_netlist_reader.py lib/kicad/plugins/netlist_form_OrcadPcb2.xsl lib/kicad/plugins/netlist_form_cadstar-RINF.xsl lib/kicad/plugins/netlist_form_cadstar.xsl lib/kicad/plugins/netlist_form_pads-pcb.xsl lib/libkicad_3dsg.so lib/libkicad_3dsg.so.2.0.0 +share/appdata/kicad.appdata.xml %%DESKTOPDIR%%/bitmap2component.desktop %%DESKTOPDIR%%/eeschema.desktop %%DESKTOPDIR%%/gerbview.desktop @@ -33,17 +43,6 @@ lib/libkicad_3dsg.so.2.0.0 %%DESKTOPDIR%%/pcbcalculator.desktop %%DESKTOPDIR%%/pcbnew.desktop %%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/README-bom.txt -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_csv_grouped_by_value.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_csv_grouped_by_value_with_fp.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_csv_sorted_by_ref.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_html_by_value.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_html_grouped_by_value.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_html_with_advanced_grouping.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/bom_sorted_by_ref.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/kicad_netlist_reader.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/round_robin.py -%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/round_value_robin.py %%PORTDOCS%%%%DOCSDIR%%/scripts/ddr3_length_match.py %%PORTDOCS%%%%DOCSDIR%%/scripts/lib_convert.py %%PORTDOCS%%%%DOCSDIR%%/scripts/library-repos-install.bat @@ -192,9 +191,10 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/demos/pic_programmer/pic_programmer.sch %%DATADIR%%/demos/pic_programmer/pic_sockets.sch %%DATADIR%%/demos/pspice/pspice-cache.lib -%%DATADIR%%/demos/pspice/pspice.cir %%DATADIR%%/demos/pspice/pspice.pro %%DATADIR%%/demos/pspice/pspice.sch +%%DATADIR%%/demos/pspice/schematic_libspice.dcm +%%DATADIR%%/demos/pspice/schematic_libspice.lib %%DATADIR%%/demos/python_scripts_examples/action_menu_add_automatic_border.py %%DATADIR%%/demos/python_scripts_examples/action_menu_text_by_date.py %%DATADIR%%/demos/python_scripts_examples/action_plugin_test_undoredo.py @@ -423,6 +423,8 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/library/graphic.lib %%DATADIR%%/library/hc11.dcm %%DATADIR%%/library/hc11.lib +%%DATADIR%%/library/infineon.dcm +%%DATADIR%%/library/infineon.lib %%DATADIR%%/library/intel.dcm %%DATADIR%%/library/intel.lib %%DATADIR%%/library/interface.dcm @@ -626,6 +628,7 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h8mm.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h9.5mm.step %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h9.5mm.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled.step %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled.wrl %%DATADIR%%/modules/packages3d/Buzzers_Beepers.3dshapes/Buzzer_12x9.5RM7.6.wings %%DATADIR%%/modules/packages3d/Buzzers_Beepers.3dshapes/Buzzer_12x9.5RM7.6.wrl @@ -1684,6 +1687,36 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_XH_S15B-XH-A_15x2.50mm_Angled.wrl %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_XH_S16B-XH-A_16x2.50mm_Angled.step %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_XH_S16B-XH-A_16x2.50mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-02_02x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-02_02x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-03_03x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-03_03x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-04_04x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-04_04x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-05_05x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-05_05x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-06_06x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-06_06x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-07_07x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-07_07x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-08_08x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-08_08x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-09_09x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-09_09x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-10_10x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-10_10x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-11_11x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-11_11x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-12_12x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-12_12x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-13_13x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-13_13x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-14_14x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-14_14x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-15_15x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-15_15x2.54mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-16_16x2.54mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_KK-6410-16_16x2.54mm_Straight.wrl %%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53047-0210.wings %%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53047-0210.wrl %%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53047-0310.wings @@ -1758,6 +1791,48 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53398-1471_14x1.25mm_Straight.wrl %%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53398-1571_15x1.25mm_Straight.step %%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53398-1571_15x1.25mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x08_Pitch0.5mm_55560-0161.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x08_Pitch0.5mm_55560-0161.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x10_Pitch0.5mm_55560-0201.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x10_Pitch0.5mm_55560-0201.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x11_Pitch0.5mm_55560-0221.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x11_Pitch0.5mm_55560-0221.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x12_Pitch0.5mm_55560-0241.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x12_Pitch0.5mm_55560-0241.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x15_Pitch0.5mm_55560-0301.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x15_Pitch0.5mm_55560-0301.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x17_Pitch0.5mm_55560-0341.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x17_Pitch0.5mm_55560-0341.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x20_Pitch0.5mm_55560-0401.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x20_Pitch0.5mm_55560-0401.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x23_Pitch0.5mm_55560-0461.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x23_Pitch0.5mm_55560-0461.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x25_Pitch0.5mm_55560-0501.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x25_Pitch0.5mm_55560-0501.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x30_Pitch0.5mm_55560-0601.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x30_Pitch0.5mm_55560-0601.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x40_Pitch0.5mm_55560-0801.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Plug_2x40_Pitch0.5mm_55560-0801.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x08_Pitch0.5mm_54722-0164.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x08_Pitch0.5mm_54722-0164.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x10_Pitch0.5mm_54722-0204.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x10_Pitch0.5mm_54722-0204.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x11_Pitch0.5mm_54722-0224.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x11_Pitch0.5mm_54722-0224.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x12_Pitch0.5mm_54722-0244.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x12_Pitch0.5mm_54722-0244.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x15_Pitch0.5mm_54722-0304.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x15_Pitch0.5mm_54722-0304.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x17_Pitch0.5mm_54722-0344.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x17_Pitch0.5mm_54722-0344.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x20_Pitch0.5mm_54722-0404.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x20_Pitch0.5mm_54722-0404.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x25_Pitch0.5mm_54722-0504.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x25_Pitch0.5mm_54722-0504.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x30_Pitch0.5mm_54722-0604.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x30_Pitch0.5mm_54722-0604.wrl +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x40_Pitch0.5mm_54722-0804.step +%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_SlimStack_Receptacle_2x40_Pitch0.5mm_54722-0804.wrl %%DATADIR%%/modules/packages3d/Connectors_Phoenix.3dshapes/PhoenixContact_GMSTB-GF_02x7.62mm_Angled_ThreadedFlange.step %%DATADIR%%/modules/packages3d/Connectors_Phoenix.3dshapes/PhoenixContact_GMSTB-GF_02x7.62mm_Angled_ThreadedFlange.wrl %%DATADIR%%/modules/packages3d/Connectors_Phoenix.3dshapes/PhoenixContact_GMSTB-GF_02x7.62mm_Angled_ThreadedFlange_MountHole.step @@ -2952,181 +3027,182 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Crystals.3dshapes/crystals_round_master.FCStd %%DATADIR%%/modules/packages3d/Crystals.3dshapes/resonator_2pin_master.FCStd %%DATADIR%%/modules/packages3d/Crystals.3dshapes/resonator_3pin_master.FCStd -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_D-Pak_TO252AA.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_D-Pak_TO252AA.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_DualDiode.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_DualDiode.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_DualDiode_ThermalVias.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_DualDiode_ThermalVias.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_SingleDiode.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_SingleDiode.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_SingleDiode_ThermalVias.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DD-PAK_TO263_SingleDiode_ThermalVias.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DO-214AB.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DO-214AB.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DO-214AB_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_DO-214AB_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF-RM10_Universal_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF-RM10_Universal_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF_Standard.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF_Standard.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MiniMELF_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MiniMELF_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MiniMELF_Standard.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MiniMELF_Standard.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA-SMB_Universal_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA-SMB_Universal_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA_Standard.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA_Standard.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB-SMC_Universal_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB-SMC_Universal_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB_Standard.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB_Standard.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC-RM10_Universal_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC-RM10_Universal_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC_Handsoldering.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC_Handsoldering.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC_Standard.wings -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC_Standard.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_0603.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_0603.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_0805.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_0805.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_1206.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_1206.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_2010.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_2010.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_2114.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_2114.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_3220.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_3220.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MELF.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MicroMELF.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MicroMELF.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MiniMELF.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_MiniMELF.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_PowerDI-123.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_PowerDI-123.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SC-80.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SC-80.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMA.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMB.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SMC.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-110.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-110.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123F.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123F.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-323.step %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-323.wrl -%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_TUMD2.wings +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-323F.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-323F.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-523.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-523.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOT-23.step +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_SOT-23.wrl +%%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_TUMD2.step %%DATADIR%%/modules/packages3d/Diodes_SMD.3dshapes/D_TUMD2.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KPW_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KPW_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KPW_P7.62mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KPW_P7.62mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KPW_P7.62mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KPW_P7.62mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P7.62mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P7.62mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P7.62mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5KP_P7.62mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_5W_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P2.54mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P2.54mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P2.54mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P2.54mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P7.62mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_A-405_P7.62mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_Bridge_DIP8.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_Bridge_DIP8.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_Bridge_DIP8_SMD.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_Bridge_DIP8_SMD.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P15.24mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P15.24mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P2.54mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P2.54mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P2.54mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P2.54mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-15_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P15.24mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P15.24mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201AD_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P15.24mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P15.24mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-201_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P15.24mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P15.24mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-27_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P7.62mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_DO-41_SOD81_P7.62mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P20.00mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P20.00mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P7.62mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P7.62mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P7.62mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_P600_R-6_P7.62mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P10.16mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P10.16mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P1%%PYTHON_VER%%0mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P1%%PYTHON_VER%%0mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P2.54mm_Vertical_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P2.54mm_Vertical_AnodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P2.54mm_Vertical_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P2.54mm_Vertical_KathodeUp.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P5.08mm_Horizontal.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/D_T-1_P5.08mm_Horizontal.wrl -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/Diode_ver_glass_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/Diode_ver_glass_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/Diode_ver_plastic_AnodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/Diode_ver_plastic_KathodeUp.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/diode_hor_glass_master.FCStd -%%DATADIR%%/modules/packages3d/Diodes_ThroughHole.3dshapes/diode_hor_plastic_master.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KPW_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KPW_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KPW_P7.62mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KPW_P7.62mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KPW_P7.62mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KPW_P7.62mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P7.62mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P7.62mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P7.62mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5KP_P7.62mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_5W_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P2.54mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P2.54mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P2.54mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P2.54mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P7.62mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_A-405_P7.62mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_Bridge_DIP8.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_Bridge_DIP8.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_Bridge_DIP8_SMD.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_Bridge_DIP8_SMD.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P15.24mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P15.24mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P2.54mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P2.54mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P2.54mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P2.54mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-15_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P15.24mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P15.24mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201AD_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P15.24mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P15.24mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-201_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P15.24mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P15.24mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-27_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P7.62mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_DO-41_SOD81_P7.62mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P20.00mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P20.00mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P7.62mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P7.62mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P7.62mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_P600_R-6_P7.62mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P10.16mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P10.16mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P1%%PYTHON_VER%%0mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P1%%PYTHON_VER%%0mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P2.54mm_Vertical_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P2.54mm_Vertical_AnodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P2.54mm_Vertical_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P2.54mm_Vertical_KathodeUp.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/D_T-1_P5.08mm_Horizontal.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/Diode_Bridge_18_5x5_5.step +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/Diode_Bridge_18_5x5_5.wrl +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/Diode_ver_glass_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/Diode_ver_glass_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/Diode_ver_plastic_AnodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/Diode_ver_plastic_KathodeUp.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/diode_hor_glass_master.FCStd +%%DATADIR%%/modules/packages3d/Diodes_THT.3dshapes/diode_hor_plastic_master.FCStd %%DATADIR%%/modules/packages3d/Discret.3dshapes/C1-1.wings %%DATADIR%%/modules/packages3d/Discret.3dshapes/C1-1.wrl %%DATADIR%%/modules/packages3d/Discret.3dshapes/C1.5V8H.wings @@ -3290,155 +3366,181 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_LV25-P.fcstd %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_LV25-P.step %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_LV25-P.wrl -%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-256_16x16_17.0x17.0mm_Pitch1.0mm.wings +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-1023_32x32_33.0x33.0mm_Pitch1.0mm.step +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-1023_32x32_33.0x33.0mm_Pitch1.0mm.wrl +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-1156_34x34_35.0x35.0mm_Pitch1.0mm.step +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-1156_34x34_35.0x35.0mm_Pitch1.0mm.wrl +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-256_16x16_17.0x17.0mm_Pitch1.0mm.step %%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-256_16x16_17.0x17.0mm_Pitch1.0mm.wrl %%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-352_26x26_35.0x35.0mm_Pitch1.27mm.wings %%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-352_26x26_35.0x35.0mm_Pitch1.27mm.wrl -%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-48_6x8_8.0x9.0mm_Pitch0.8mm.wings +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-400_20x20_21.0x21.0mm_Pitch1.0mm.step +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-400_20x20_21.0x21.0mm_Pitch1.0mm.wrl +%%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-48_6x8_8.0x9.0mm_Pitch0.8mm.step %%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-48_6x8_8.0x9.0mm_Pitch0.8mm.wrl %%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-64_10x10_9.0x9.0mm_Pitch0.8mm.wings %%DATADIR%%/modules/packages3d/Housings_BGA.3dshapes/BGA-64_10x10_9.0x9.0mm_Pitch0.8mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-10-1EP_2x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-10-1EP_2x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-10-1EP_2x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-10-1EP_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-10-1EP_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-10-1EP_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_2x3mm_Pitch0.45mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_2x3mm_Pitch0.45mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_2x3mm_Pitch0.45mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_3x3mm_Pitch0.45mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_3x3mm_Pitch0.45mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_3x3mm_Pitch0.45mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_3x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_3x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_3x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_4x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_4x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_4x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_4x4mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_4x4mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-12-1EP_4x4mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_3x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_3x3mm_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_3x3mm_Pitch0.4mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_3x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_3x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_4x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_4x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-14-1EP_4x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_3x4mm_Pitch0.45mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_3x4mm_Pitch0.45mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_3x4mm_Pitch0.45mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_3x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_3x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_3x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_4x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_4x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_4x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_5x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_5x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-16-1EP_5x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-18-1EP_3x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-18-1EP_3x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-18-1EP_3x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-18-1EP_4x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-18-1EP_4x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-18-1EP_4x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-20-1EP_5x6mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-20-1EP_5x6mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-20-1EP_5x6mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-22-1EP_5x6mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-22-1EP_5x6mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-22-1EP_5x6mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-24-1EP_4x7mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-24-1EP_4x7mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-24-1EP_4x7mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-32-1EP_4x7mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-32-1EP_4x7mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-32-1EP_4x7mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-44-1EP_5x8.9mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-44-1EP_5x8.9mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-44-1EP_5x8.9mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_3x3mm_Pitch0.95mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_3x3mm_Pitch0.95mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_3x3mm_Pitch0.95mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x2mm_Pitch0.45mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x2mm_Pitch0.45mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x2mm_Pitch0.45mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x2mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x2mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x2mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x2mm_Pitch0.45mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x2mm_Pitch0.45mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x2mm_Pitch0.45mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x2mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x2mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x2mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_4x4mm_Pitch0.8mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_4x4mm_Pitch0.8mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_4x4mm_Pitch0.8mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_6x5mm_Pitch1.27mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_6x5mm_Pitch1.27mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8_2x2mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8_2x2mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-12-1EP_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-12-1EP_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-12-1EP_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_4x4mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_4x4mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_4x4mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_3x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_5x5mm_Pitch0.8mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-16-1EP_5x5mm_Pitch0.8mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_3x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_3x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_4x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_4x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_4x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_4x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_4x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_4x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_5x5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_5x5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-20-1EP_5x5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_3x4mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_3x3mm_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_3x3mm_Pitch0.4mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_3x4mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_3x4mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_4x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_4x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_4x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_4x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_4x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_4x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_5x5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_5x5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24-1EP_5x5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_3x6mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24_3x3mm_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24_3x3mm_Pitch0.4mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24_4x4mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-24_4x4mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_3x6mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_3x6mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_4x4mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_4x4mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_4x4mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_4x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_4x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_4x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x6mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x6mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x6mm_Pitch0.5mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_6x6mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_6x6mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_4x4mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_4x4mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_4x4mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_5x5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_5x5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_5x5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_7x7mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_7x7mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-32-1EP_7x7mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-36-1EP_5x6mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-36-1EP_5x6mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-36-1EP_5x6mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-38-1EP_4x6mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-36-1EP_6x6mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-36-1EP_6x6mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-38-1EP_4x6mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-38-1EP_4x6mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-38-1EP_5x7mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-38-1EP_5x7mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-38-1EP_5x7mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-40-1EP_5x5mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-40-1EP_5x5mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-40-1EP_5x5mm_Pitch0.4mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-40-1EP_6x6mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-40-1EP_6x6mm_Pitch0.5mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-42-1EP_5x6mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-42-1EP_5x6mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-44-1EP_7x7mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-44-1EP_7x7mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-44-1EP_7x7mm_Pitch0.5mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-44-1EP_8x8mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-44-1EP_8x8mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-52-1EP_7x8mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-52-1EP_7x8mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-52-1EP_7x8mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_Pitch0.4mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-64-1EP_9x9mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-64-1EP_9x9mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-10_1.4x1.8mm_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-10_1.4x1.8mm_Pitch0.4mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_4x4mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_4x4mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_4x4mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-20-1EP_3x3mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-20-1EP_3x3mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-20-1EP_3x3mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-20-1EP_4x4mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-20-1EP_4x4mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-20-1EP_4x4mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-28-1EP_4x4mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-28-1EP_4x4mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-28-1EP_4x4mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-40-1EP_5x5mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-40-1EP_5x5mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-40-1EP_5x5mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-48-1EP_6x6mm_Pitch0.4mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-48-1EP_6x6mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-48-1EP_6x6mm_Pitch0.4mm.wrl -%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/VDFN-8-1EP_2x2mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/VDFN-8-1EP_2x2mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/VDFN-8-1EP_2x2mm_Pitch0.5mm.wrl %%DATADIR%%/modules/packages3d/Housings_DIP.3dshapes/DIP-10_W7.62mm.wrl %%DATADIR%%/modules/packages3d/Housings_DIP.3dshapes/DIP-10_W7.62mm_LongPads.wrl @@ -3600,76 +3702,109 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl %%DATADIR%%/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.step %%DATADIR%%/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/ETSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/ETSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/ETSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-10-1EP_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/HTSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm_ThermalPad.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/HTSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm_ThermalPad.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/HTSSOP-28_4.4x9.7mm_Pitch0.65mm_ThermalPad.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/HTSSOP-28_4.4x9.7mm_Pitch0.65mm_ThermalPad.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-10-1EP_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-10-1EP_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-10_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-10_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-10_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-1EP_3x4mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-16-1EP_3x4mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-16-1EP_3x4mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-16_3x4mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-16_3x4mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-1EP_3x4mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12-1EP_3x4mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12_3x4mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12_3x4mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-12_3x4mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-8-1EP_3x3mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-16-1EP_3x4mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-16-1EP_3x4mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-16_3x4mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-16_3x4mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/MSOP-8-1EP_3x3mm_Pitch0.65mm.step %%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.step %%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/OnSemi_Micro8.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/OnSemi_Micro8.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/PSOP-44_16.9x27.17mm_Pitch1.27mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/PSOP-44_16.9x27.17mm_Pitch1.27mm.wrl %%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.step %%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 +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/QSOP-24_3.9x8.7mm_Pitch0.635mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/QSOP-24_3.9x8.7mm_Pitch0.635mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SOP-16_4.4x10.4mm_Pitch1.27mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SOP-16_4.4x10.4mm_Pitch1.27mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SOP-4_4.4x2.8mm_Pitch1.27mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SOP-4_4.4x2.8mm_Pitch1.27mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-14_5.3x6.2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-14_5.3x6.2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_3.9x4.9mm_Pitch0.635mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_3.9x4.9mm_Pitch0.635mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_3.9x4.9mm_Pitch0.635mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_4.4x5.2mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_4.4x5.2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_4.4x5.2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_5.3x6.2mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_5.3x6.2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-16_5.3x6.2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-20_4.4x6.5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-20_4.4x6.5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-20_4.4x6.5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-20_5.3x7.2mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-20_5.3x7.2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-20_5.3x7.2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-24_3.9x8.7mm_Pitch0.635mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-24_3.9x8.7mm_Pitch0.635mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-24_3.9x8.7mm_Pitch0.635mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-24_5.3x8.2mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-24_5.3x8.2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-24_5.3x8.2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-28_5.3x10.2mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-28_5.3x10.2mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-28_5.3x10.2mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-48_7.5x15.9mm_Pitch0.635mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-48_7.5x15.9mm_Pitch0.635mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-48_7.5x15.9mm_Pitch0.635mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-56_7.5x18.5mm_Pitch0.635mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-56_7.5x18.5mm_Pitch0.635mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-56_7.5x18.5mm_Pitch0.635mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-10_3x3mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-8_2.95x2.8mm_Pitch0.65mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/SSOP-8_2.95x2.8mm_Pitch0.65mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSOP-I-48_12x18.4mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSOP-I-48_12x18.4mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSOP-II-32_21.0x10.2mm_Pitch1.27mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSOP-II-32_21.0x10.2mm_Pitch1.27mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-10_3x3mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-10_3x3mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-14_4.4x5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-14_4.4x5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-14_4.4x5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-16-1EP_4.4x5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-16-1EP_4.4x5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-16-1EP_4.4x5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-16_4.4x5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-16_4.4x5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-16_4.4x5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-20_4.4x6.5mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-20_4.4x6.5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-20_4.4x6.5mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-24_4.4x7.8mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-24_4.4x7.8mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-24_4.4x7.8mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-28_4.4x9.7mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-28_4.4x9.7mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-28_4.4x9.7mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-32_6.1x11mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-32_6.1x11mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-32_6.1x11mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-38_4.4x9.7mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-38_4.4x9.7mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-38_4.4x9.7mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-48_6.1x12.5mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-44_4.4x11.2mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-44_4.4x11.2mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-48_6.1x12.5mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-48_6.1x12.5mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-56_6.1x14mm_Pitch0.5mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-56_6.1x14mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-56_6.1x14mm_Pitch0.5mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-8_3x3mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-8_3x3mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-8_3x3mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-8_4.4x3mm_Pitch0.65mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-8_4.4x3mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/TSSOP-8_4.4x3mm_Pitch0.65mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSO-40_7.6x15.4mm_Pitch0.762mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSO-40_7.6x15.4mm_Pitch0.762mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSO-40_7.6x15.4mm_Pitch0.762mm.wrl -%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSO-56_11.1x21.5mm_Pitch0.75mm.wings +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSO-56_11.1x21.5mm_Pitch0.75mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSO-56_11.1x21.5mm_Pitch0.75mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSSOP-8_2.3x2mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSSOP-8_2.3x2mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSSOP-8_2.4x2.1mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/VSSOP-8_2.4x2.1mm_Pitch0.5mm.wrl %%DATADIR%%/modules/packages3d/IR-DirectFETs.3dshapes/IR-directFET_L8-Outline_Names.wings %%DATADIR%%/modules/packages3d/IR-DirectFETs.3dshapes/IR-directFET_L8-Outline_Names.wrl %%DATADIR%%/modules/packages3d/IR-DirectFETs.3dshapes/IR-directFET_L8-Outline_Numbers.wings @@ -4860,26 +4995,28 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Potentiometers.3dshapes/Trimmer_PT-x_vertical_Master.FCStd %%DATADIR%%/modules/packages3d/Power_Packages_SMD.3dshapes/PowerSO-20.wings %%DATADIR%%/modules/packages3d/Power_Packages_SMD.3dshapes/PowerSO-20.wrl -%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SANYOU_SRD_Series_Form_C.wings -%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SANYOU_SRD_Series_Form_C.wrl -%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDS_OMRON-G6E.wings -%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDS_OMRON-G6E.wrl %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_HJR-4102.FCStd %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_HJR-4102.wrl +%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_OMRON-G6E.wings +%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_OMRON-G6E.wrl +%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.wings +%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.wrl %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_SingleRow_Laying_FinderType34Point51.wings %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_SingleRow_Laying_FinderType34Point51.wrl %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_SingleRow_Standing_FinderType34Point51.wings %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPDT_SingleRow_Standing_FinderType34Point51.wrl -%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPST_Schrack-RP-3SL_bistable.wings -%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPST_Schrack-RP-3SL_bistable.wrl %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPST_Schrack-RP-3SL_mono.wings %%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPST_Schrack-RP-3SL_mono.wrl +%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPST_Schrack-RP3SL-1coil_RM5mm.wings +%%DATADIR%%/modules/packages3d/Relays_THT.3dshapes/Relay_SPST_Schrack-RP3SL-1coil_RM5mm.wrl %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0201.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0201.wrl %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0402.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0402.wrl %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0603.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0603.wrl +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0612.step +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0612.wrl %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_1206.step @@ -4898,36 +5035,42 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_2512.wrl %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_2816.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_2816.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_2x0603.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_2x0603.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_2x0603.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_4x0402.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_4x0402.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_4x0402.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_4x0603.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_4x0603.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Concave_4x0603.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x0402.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x0402.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x0402.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x0603.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x0603.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x0603.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x1206.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x1206.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_2x1206.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x0402.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x0402.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x0402.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x0603.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x0603.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x0603.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x1206.wings +%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x1206.step %%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_4x1206.wrl -%%DATADIR%%/modules/packages3d/Resistors_SMD.3dshapes/R_Array_Convex_5x0603.wings *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Mon Jun 19 17:25:59 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E789DA1500; Mon, 19 Jun 2017 17:25:59 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D2F57CEB3; Mon, 19 Jun 2017 17:25:59 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHPwjd050118; Mon, 19 Jun 2017 17:25:58 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHPwvc050115; Mon, 19 Jun 2017 17:25:58 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201706191725.v5JHPwvc050115@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Mon, 19 Jun 2017 17:25:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443886 - in head/mail/davmail: . 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, 19 Jun 2017 17:25:59 -0000 Author: rodrigo Date: Mon Jun 19 17:25:57 2017 New Revision: 443886 URL: https://svnweb.freebsd.org/changeset/ports/443886 Log: Add profiles suport in davemail. It is useful when you need to connect to more than one exchange server. Bump portrevioon PR: 218140 Submitted by: jjuanino@gmail.com Approved by: maintainer Added: head/mail/davmail/files/pkg-message.in (contents, props changed) Modified: head/mail/davmail/Makefile head/mail/davmail/files/davmail.in Modified: head/mail/davmail/Makefile ============================================================================== --- head/mail/davmail/Makefile Mon Jun 19 17:04:24 2017 (r443885) +++ head/mail/davmail/Makefile Mon Jun 19 17:25:57 2017 (r443886) @@ -3,6 +3,7 @@ PORTNAME= davmail PORTVERSION= 4.8.0 +PORTREVISION= 1 CATEGORIES= mail java MASTER_SITES= SF/davmail/davmail/${PORTVERSION} DISTNAME= ${PORTNAME}-src-${PORTVERSION}-${REVISION} @@ -30,7 +31,7 @@ GROUPS= davmail DATADIR= ${JAVASHAREDIR}/${PORTNAME} USE_RC_SUBR= davmail -SUB_FILES= davmail.sh +SUB_FILES= davmail.sh pkg-message post-patch: @${REINPLACE_CMD} -e 's#exec=\"davmail\"#exec=\"${PREFIX}/bin/davmail\"#' \ Modified: head/mail/davmail/files/davmail.in ============================================================================== --- head/mail/davmail/files/davmail.in Mon Jun 19 17:04:24 2017 (r443885) +++ head/mail/davmail/files/davmail.in Mon Jun 19 17:25:57 2017 (r443886) @@ -12,6 +12,7 @@ # davmail_config (path): Set to # "%%PREFIX%%/etc/davmail.properties" # by default +# davmail_profiles: Set to "" by default . /etc/rc.subr @@ -38,6 +39,55 @@ pidfiledir="/var/run/davmail" pidfile="${pidfiledir}/davmail.pid" procname="$(davmail_procname)" required_files=${davmail_config} + +if [ -n "$2" ]; then + profile="$2" + if [ "x${davmail_profiles}" != "x" ]; then + if [ ! -f %%PREFIX%%/etc/davmail.${profile}.properties ]; then + echo "You must setup a davmail.${profile}.properties config file" + return 1 + fi + eval davmail_enable="\${davmail_${profile}_enable:-${davmail_enable}}" + pidfile="${pidfiledir}/davmail.${profile}.pid" + davmail_config="%%PREFIX%%/etc/davmail.${profile}.properties" + required_files="${davmail_config}" + fi +else + if [ "x${davmail_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${davmail_profiles}; do + eval _enable="\${davmail_${profile}_enable}" + case "x${_enable:-${davmail_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=davmail_enable + else + _var=davmail_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${davmail_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> davmail profile: ${profile}" + %%PREFIX%%/etc/rc.d/davmail $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + command="/usr/sbin/daemon" command_args="-p ${pidfile} %%LOCALBASE%%/bin/java -cp '%%DATADIR%%/davmail.jar:%%DATADIR%%/lib/*' davmail.DavGateway '${davmail_config}'" Added: head/mail/davmail/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/davmail/files/pkg-message.in Mon Jun 19 17:25:57 2017 (r443886) @@ -0,0 +1,9 @@ +In order to connect to several exchange servers, it is needed setup davmail +profiles. You have to set davmail_profiles in rc.conf, and configure +%%LOCALBASE%%/etc/davmail..properties properly. Example: + +davmail_profiles="exchange1 exchange2" +(and configure both %%LOCALBASE%%/etc/davmail.exchange[12].properties) + +You can also disable an specific profile by mean of +davmail__enable="NO" in rc.conf. From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CBFE7DA1533; Mon, 19 Jun 2017 17:26:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C1E27CF99; Mon, 19 Jun 2017 17:26:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQQqW050266; Mon, 19 Jun 2017 17:26:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQQak050264; Mon, 19 Jun 2017 17:26:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQQak050264@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443887 - head/www/py-hyperlink X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:27 -0000 Author: sunpoet Date: Mon Jun 19 17:26:26 2017 New Revision: 443887 URL: https://svnweb.freebsd.org/changeset/ports/443887 Log: Update to 17.2.0 Changes: https://github.com/python-hyper/hyperlink/blob/master/CHANGELOG.md Modified: head/www/py-hyperlink/Makefile head/www/py-hyperlink/distinfo Modified: head/www/py-hyperlink/Makefile ============================================================================== --- head/www/py-hyperlink/Makefile Mon Jun 19 17:25:57 2017 (r443886) +++ head/www/py-hyperlink/Makefile Mon Jun 19 17:26:26 2017 (r443887) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hyperlink -PORTVERSION= 17.1.1 +PORTVERSION= 17.2.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-hyperlink/distinfo ============================================================================== --- head/www/py-hyperlink/distinfo Mon Jun 19 17:25:57 2017 (r443886) +++ head/www/py-hyperlink/distinfo Mon Jun 19 17:26:26 2017 (r443887) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497730578 -SHA256 (hyperlink-17.1.1.tar.gz) = a7462dee03672b8f853c26e1ab9e3b1fd4c90a6efde64ab44a851c2472445018 -SIZE (hyperlink-17.1.1.tar.gz) = 23067 +TIMESTAMP = 1497889419 +SHA256 (hyperlink-17.2.0.tar.gz) = b81cf0578e9475bef36ee3c48cafb8f3f68c1b66df12c7c4da5ce125790dab27 +SIZE (hyperlink-17.2.0.tar.gz) = 24641 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0631DDA1552; Mon, 19 Jun 2017 17:26:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C85857CFB3; Mon, 19 Jun 2017 17:26:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQWQL050387; Mon, 19 Jun 2017 17:26:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQVRF050385; Mon, 19 Jun 2017 17:26:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQVRF050385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443888 - head/devel/py-simplejson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:33 -0000 Author: sunpoet Date: Mon Jun 19 17:26:31 2017 New Revision: 443888 URL: https://svnweb.freebsd.org/changeset/ports/443888 Log: Update to 3.11.0 Changes: https://github.com/simplejson/simplejson/blob/master/CHANGES.txt Modified: head/devel/py-simplejson/Makefile head/devel/py-simplejson/distinfo Modified: head/devel/py-simplejson/Makefile ============================================================================== --- head/devel/py-simplejson/Makefile Mon Jun 19 17:26:26 2017 (r443887) +++ head/devel/py-simplejson/Makefile Mon Jun 19 17:26:31 2017 (r443888) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= simplejson -PORTVERSION= 3.10.0 +PORTVERSION= 3.11.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-simplejson/distinfo ============================================================================== --- head/devel/py-simplejson/distinfo Mon Jun 19 17:26:26 2017 (r443887) +++ head/devel/py-simplejson/distinfo Mon Jun 19 17:26:31 2017 (r443888) @@ -1,3 +1,3 @@ -TIMESTAMP = 1482197691 -SHA256 (simplejson-3.10.0.tar.gz) = 953be622e88323c6f43fad61ffd05bebe73b9fd9863a46d68b052d2aa7d71ce2 -SIZE (simplejson-3.10.0.tar.gz) = 77953 +TIMESTAMP = 1497889429 +SHA256 (simplejson-3.11.0.tar.gz) = 3d399d3d1e96416f4553cb44243ba1ce2c441b6741eed1484ada7ab28fadbc35 +SIZE (simplejson-3.11.0.tar.gz) = 78219 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01E13DA1579; Mon, 19 Jun 2017 17:26:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C59B37D01D; Mon, 19 Jun 2017 17:26:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQaF1050510; Mon, 19 Jun 2017 17:26:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQa3L050508; Mon, 19 Jun 2017 17:26:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQa3L050508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443889 - head/www/py-beaker X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:38 -0000 Author: sunpoet Date: Mon Jun 19 17:26:36 2017 New Revision: 443889 URL: https://svnweb.freebsd.org/changeset/ports/443889 Log: Update to 1.9.0 - Sort USE_PYTHON Changes: https://beaker.readthedocs.io/en/latest/changes.html#changes-in-beaker Modified: head/www/py-beaker/Makefile head/www/py-beaker/distinfo Modified: head/www/py-beaker/Makefile ============================================================================== --- head/www/py-beaker/Makefile Mon Jun 19 17:26:31 2017 (r443888) +++ head/www/py-beaker/Makefile Mon Jun 19 17:26:36 2017 (r443889) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= beaker -PORTVERSION= 1.8.1 +PORTVERSION= 1.9.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ COMMENT= Session and Caching library with WSGI Middlew LICENSE= BSD3CLAUSE USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils NO_ARCH= yes .include Modified: head/www/py-beaker/distinfo ============================================================================== --- head/www/py-beaker/distinfo Mon Jun 19 17:26:31 2017 (r443888) +++ head/www/py-beaker/distinfo Mon Jun 19 17:26:36 2017 (r443889) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477285058 -SHA256 (Beaker-1.8.1.tar.gz) = 6735aa2fff7ea0915fc7f97a11830abcad19e4d1b02433caf4238a2b54ae1ec0 -SIZE (Beaker-1.8.1.tar.gz) = 37064 +TIMESTAMP = 1497889439 +SHA256 (Beaker-1.9.0.tar.gz) = 317d0f9a3618364a4ce447d227b698bd7cdcad57301326ce8013d200abd695bf +SIZE (Beaker-1.9.0.tar.gz) = 39817 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0FAEDA15A1; Mon, 19 Jun 2017 17:26:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9FA3A7D088; Mon, 19 Jun 2017 17:26:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQfaG050615; Mon, 19 Jun 2017 17:26:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQfLh050614; Mon, 19 Jun 2017 17:26:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQfLh050614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443890 - head/textproc/rubygem-liquid3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:42 -0000 Author: sunpoet Date: Mon Jun 19 17:26:41 2017 New Revision: 443890 URL: https://svnweb.freebsd.org/changeset/ports/443890 Log: Mark DEPRECATED and set EXPIRATION_DATE to 2017-07-31 Modified: head/textproc/rubygem-liquid3/Makefile Modified: head/textproc/rubygem-liquid3/Makefile ============================================================================== --- head/textproc/rubygem-liquid3/Makefile Mon Jun 19 17:26:36 2017 (r443889) +++ head/textproc/rubygem-liquid3/Makefile Mon Jun 19 17:26:41 2017 (r443890) @@ -12,8 +12,10 @@ COMMENT= Library for rendering safe templates LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -NO_ARCH= yes +DEPRECATED= Use textproc/rubygem-liquid instead +EXPIRATION_DATE=2017-07-31 +NO_ARCH= yes USE_RUBY= yes USES= gem From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC939DA15C4; Mon, 19 Jun 2017 17:26:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93D9D7D0E1; Mon, 19 Jun 2017 17:26:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQkfm050739; Mon, 19 Jun 2017 17:26:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQk4d050737; Mon, 19 Jun 2017 17:26:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQk4d050737@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443891 - head/www/rubygem-jekyll X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:48 -0000 Author: sunpoet Date: Mon Jun 19 17:26:46 2017 New Revision: 443891 URL: https://svnweb.freebsd.org/changeset/ports/443891 Log: Update to 3.5.0 Changes: https://github.com/jekyll/jekyll/blob/master/History.markdown Modified: head/www/rubygem-jekyll/Makefile head/www/rubygem-jekyll/distinfo Modified: head/www/rubygem-jekyll/Makefile ============================================================================== --- head/www/rubygem-jekyll/Makefile Mon Jun 19 17:26:41 2017 (r443890) +++ head/www/rubygem-jekyll/Makefile Mon Jun 19 17:26:46 2017 (r443891) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll -PORTVERSION= 3.4.4 +PORTVERSION= 3.5.0 CATEGORIES= www rubygems MASTER_SITES= RG @@ -17,7 +17,7 @@ RUN_DEPENDS= rubygem-addressable>=2.4:www/rubygem-addr rubygem-jekyll-sass-converter>=1.0:textproc/rubygem-jekyll-sass-converter \ rubygem-jekyll-watch>=1.1:www/rubygem-jekyll-watch \ rubygem-kramdown>=1.3:textproc/rubygem-kramdown \ - rubygem-liquid3>=3.0.0:textproc/rubygem-liquid3 \ + rubygem-liquid>=4.0:textproc/rubygem-liquid \ rubygem-mercenary>=0.3.3:devel/rubygem-mercenary \ rubygem-pathutil>=0.9:devel/rubygem-pathutil \ rubygem-rouge1>=1.7:textproc/rubygem-rouge1 \ Modified: head/www/rubygem-jekyll/distinfo ============================================================================== --- head/www/rubygem-jekyll/distinfo Mon Jun 19 17:26:41 2017 (r443890) +++ head/www/rubygem-jekyll/distinfo Mon Jun 19 17:26:46 2017 (r443891) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497778512 -SHA256 (rubygem/jekyll-3.4.4.gem) = f3b0ec67d4bb1d71c5c6e329de2cca229ffa6e170c461436ce590b98112a12e6 -SIZE (rubygem/jekyll-3.4.4.gem) = 91136 +TIMESTAMP = 1497889451 +SHA256 (rubygem/jekyll-3.5.0.gem) = 595e9d713455c9f383b7aeff31279d18065785fcc26fd4d2e367f8cbab62d503 +SIZE (rubygem/jekyll-3.5.0.gem) = 92672 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 284DCDA15ED; Mon, 19 Jun 2017 17:26:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E93B87D163; Mon, 19 Jun 2017 17:26:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQq0j050863; Mon, 19 Jun 2017 17:26:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQpek050861; Mon, 19 Jun 2017 17:26:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQpek050861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443892 - head/polish/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:53 -0000 Author: sunpoet Date: Mon Jun 19 17:26:51 2017 New Revision: 443892 URL: https://svnweb.freebsd.org/changeset/ports/443892 Log: Update to 20170618 Modified: head/polish/hunspell/Makefile head/polish/hunspell/distinfo Modified: head/polish/hunspell/Makefile ============================================================================== --- head/polish/hunspell/Makefile Mon Jun 19 17:26:46 2017 (r443891) +++ head/polish/hunspell/Makefile Mon Jun 19 17:26:51 2017 (r443892) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20170611 +PORTVERSION= 20170618 CATEGORIES= polish textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME} DISTNAME= sjp-myspell-pl-${PORTVERSION} Modified: head/polish/hunspell/distinfo ============================================================================== --- head/polish/hunspell/distinfo Mon Jun 19 17:26:46 2017 (r443891) +++ head/polish/hunspell/distinfo Mon Jun 19 17:26:51 2017 (r443892) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497257480 -SHA256 (hunspell/sjp-myspell-pl-20170611.zip) = 17a0b2b8e6c8479cc034db7724a36a595e614255431d29d8fd3d190e5a951b2c -SIZE (hunspell/sjp-myspell-pl-20170611.zip) = 1169029 +TIMESTAMP = 1497889784 +SHA256 (hunspell/sjp-myspell-pl-20170618.zip) = 0532aad04aea2ac44256eb9f469b5b4ad14531b79068390e98b5685e67383871 +SIZE (hunspell/sjp-myspell-pl-20170618.zip) = 1168242 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:26:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79C7DDA1615; Mon, 19 Jun 2017 17:26:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48D167D1E2; Mon, 19 Jun 2017 17:26:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHQvRS050984; Mon, 19 Jun 2017 17:26:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHQvNb050983; Mon, 19 Jun 2017 17:26:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191726.v5JHQvNb050983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:26:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443893 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:26:58 -0000 Author: sunpoet Date: Mon Jun 19 17:26:57 2017 New Revision: 443893 URL: https://svnweb.freebsd.org/changeset/ports/443893 Log: Update to 2017.06.18 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Mon Jun 19 17:26:51 2017 (r443892) +++ head/german/mythes/Makefile Mon Jun 19 17:26:57 2017 (r443893) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2017.06.11 +PORTVERSION= 2017.06.18 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Mon Jun 19 17:26:51 2017 (r443892) +++ head/german/mythes/distinfo Mon Jun 19 17:26:57 2017 (r443893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497257493 -SHA256 (mythes/Deutscher-Thesaurus-20170611.oxt) = b54bf2cf86928cefacd57ab6990bb296584deebe335b05d904eba068f1cbe4c0 -SIZE (mythes/Deutscher-Thesaurus-20170611.oxt) = 8588705 +TIMESTAMP = 1497875785 +SHA256 (mythes/Deutscher-Thesaurus-20170618.oxt) = 145f5051405f26eed05dbcadf150dfbfbb5146f60a41a854108028d06488beca +SIZE (mythes/Deutscher-Thesaurus-20170618.oxt) = 8608935 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:27:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 881BDDA1640; Mon, 19 Jun 2017 17:27:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 554667D257; Mon, 19 Jun 2017 17:27:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHR2vV051110; Mon, 19 Jun 2017 17:27:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHR2El051108; Mon, 19 Jun 2017 17:27:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191727.v5JHR2El051108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:27:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443894 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:27:03 -0000 Author: sunpoet Date: Mon Jun 19 17:27:02 2017 New Revision: 443894 URL: https://svnweb.freebsd.org/changeset/ports/443894 Log: Update to 2017.06.18 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Mon Jun 19 17:26:57 2017 (r443893) +++ head/textproc/sk-mythes/Makefile Mon Jun 19 17:27:02 2017 (r443894) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2017.06.11 +PORTVERSION= 2017.06.18 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Mon Jun 19 17:26:57 2017 (r443893) +++ head/textproc/sk-mythes/distinfo Mon Jun 19 17:27:02 2017 (r443894) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497257499 -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20170611.zip) = 35eef38c748fcd3c69adbccdc21f2c54ce5b1c99da0828f95bdb552fc07aac88 -SIZE (mythes/OOo-Thesaurus2-sk_SK-20170611.zip) = 239473 +TIMESTAMP = 1497875791 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20170618.zip) = 025d323e7b4783d1407e9aae30a7bffdc72ea460956b700ec62a60b617f4ba45 +SIZE (mythes/OOo-Thesaurus2-sk_SK-20170618.zip) = 239473 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:27:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1988CDA1665; Mon, 19 Jun 2017 17:27:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC4F67D2BE; Mon, 19 Jun 2017 17:27:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHR7LR051217; Mon, 19 Jun 2017 17:27:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHR7FU051216; Mon, 19 Jun 2017 17:27:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191727.v5JHR7FU051216@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:27:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443895 - head/x11-fonts/croscorefonts-fonts-ttf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:27:08 -0000 Author: sunpoet Date: Mon Jun 19 17:27:06 2017 New Revision: 443895 URL: https://svnweb.freebsd.org/changeset/ports/443895 Log: Do not silence installation messages Modified: head/x11-fonts/croscorefonts-fonts-ttf/Makefile Modified: head/x11-fonts/croscorefonts-fonts-ttf/Makefile ============================================================================== --- head/x11-fonts/croscorefonts-fonts-ttf/Makefile Mon Jun 19 17:27:02 2017 (r443894) +++ head/x11-fonts/croscorefonts-fonts-ttf/Makefile Mon Jun 19 17:27:06 2017 (r443895) @@ -22,7 +22,7 @@ SUB_FILES= pkg-message FONTNAME= ChromeOS do-install: - @${MKDIR} ${STAGEDIR}${FONTSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} *.ttf ${STAGEDIR}${FONTSDIR} + ${MKDIR} ${STAGEDIR}${FONTSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/*.ttf ${STAGEDIR}${FONTSDIR}/ .include From owner-svn-ports-head@freebsd.org Mon Jun 19 17:27:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 556DEDA168F; Mon, 19 Jun 2017 17:27:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E2A27D333; Mon, 19 Jun 2017 17:27:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHRCl7051337; Mon, 19 Jun 2017 17:27:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHRBmj051335; Mon, 19 Jun 2017 17:27:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191727.v5JHRBmj051335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:27:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443896 - head/graphics/p5-Image-ExifTool-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, 19 Jun 2017 17:27:13 -0000 Author: sunpoet Date: Mon Jun 19 17:27:11 2017 New Revision: 443896 URL: https://svnweb.freebsd.org/changeset/ports/443896 Log: Update to 10.56 Changes: http://www.sno.phy.queensu.ca/~phil/exiftool/history.html PR: 220129 Submitted by: Daniel Lin (maintainer) Modified: head/graphics/p5-Image-ExifTool-devel/Makefile head/graphics/p5-Image-ExifTool-devel/distinfo Modified: head/graphics/p5-Image-ExifTool-devel/Makefile ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/Makefile Mon Jun 19 17:27:06 2017 (r443895) +++ head/graphics/p5-Image-ExifTool-devel/Makefile Mon Jun 19 17:27:11 2017 (r443896) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Image-ExifTool -PORTVERSION= 10.47 +PORTVERSION= 10.56 CATEGORIES= graphics perl5 MASTER_SITES= http://www.sno.phy.queensu.ca/~phil/exiftool/ PKGNAMEPREFIX= p5- Modified: head/graphics/p5-Image-ExifTool-devel/distinfo ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/distinfo Mon Jun 19 17:27:06 2017 (r443895) +++ head/graphics/p5-Image-ExifTool-devel/distinfo Mon Jun 19 17:27:11 2017 (r443896) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490175833 -SHA256 (Image-ExifTool-10.47.tar.gz) = e3376f2c1ec4f256fe3810808bc7b16076c6e6364bc5719f3fa82abb6adf5608 -SIZE (Image-ExifTool-10.47.tar.gz) = 4242443 +TIMESTAMP = 1497889300 +SHA256 (Image-ExifTool-10.56.tar.gz) = c89f225841effbc74643fa116bb619718aa02a9b483529ecbee2c34d36208788 +SIZE (Image-ExifTool-10.56.tar.gz) = 4257308 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:27:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E41ADA16BE; Mon, 19 Jun 2017 17:27:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BD977D3AB; Mon, 19 Jun 2017 17:27:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHRHBO051474; Mon, 19 Jun 2017 17:27:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHRHui051472; Mon, 19 Jun 2017 17:27:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706191727.v5JHRHui051472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Jun 2017 17:27:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443897 - head/devel/hhdate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:27:18 -0000 Author: sunpoet Date: Mon Jun 19 17:27:16 2017 New Revision: 443897 URL: https://svnweb.freebsd.org/changeset/ports/443897 Log: Update to 2.2 Changes: https://github.com/HowardHinnant/date/releases PR: 220130 Submitted by: Andreas Sommer (maintainer) Modified: head/devel/hhdate/Makefile head/devel/hhdate/distinfo (contents, props changed) Modified: head/devel/hhdate/Makefile ============================================================================== --- head/devel/hhdate/Makefile Mon Jun 19 17:27:11 2017 (r443896) +++ head/devel/hhdate/Makefile Mon Jun 19 17:27:16 2017 (r443897) @@ -2,11 +2,8 @@ # $FreeBSD$ PORTNAME= hhdate -# New versions aren't released often, so using the number of commits since -# last release as a.b.c.NUMCOMMITS (see `git describe --tags ${GH_TAGNAME}`). -# 35 = commit a little after 2.1.0 to have LICENSE file and fixed unit tests. -PORTVERSION= 2.1.0.35 -PORTREVISION= 1 +PORTVERSION= 2.2 +DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= andreas.sommer87@googlemail.com @@ -18,7 +15,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USE_GITHUB= yes GH_ACCOUNT= HowardHinnant GH_PROJECT= date -GH_TAGNAME= 3ab6510cab764c1a20926b1e8442af4c9e8a16b2 NO_ARCH= yes NO_BUILD= yes Modified: head/devel/hhdate/distinfo ============================================================================== --- head/devel/hhdate/distinfo Mon Jun 19 17:27:11 2017 (r443896) +++ head/devel/hhdate/distinfo Mon Jun 19 17:27:16 2017 (r443897) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490643114 -SHA256 (HowardHinnant-date-2.1.0.35-3ab6510cab764c1a20926b1e8442af4c9e8a16b2_GH0.tar.gz) = 3b0e98ec702a2e53dda919b3fb77fa094c262829c2cda99813fe8cea43c79126 -SIZE (HowardHinnant-date-2.1.0.35-3ab6510cab764c1a20926b1e8442af4c9e8a16b2_GH0.tar.gz) = 776175 +TIMESTAMP = 1497889098 +SHA256 (HowardHinnant-date-v2.2_GH0.tar.gz) = e552bec642006fdee4e4d5e6270bbcb37a2b84b36c3433054e3ae9b02925644a +SIZE (HowardHinnant-date-v2.2_GH0.tar.gz) = 779794 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:27:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADEB6DA16F1; Mon, 19 Jun 2017 17:27:25 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CE757D452; Mon, 19 Jun 2017 17:27:25 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHRObF051608; Mon, 19 Jun 2017 17:27:24 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHRODl051607; Mon, 19 Jun 2017 17:27:24 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706191727.v5JHRODl051607@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Mon, 19 Jun 2017 17:27:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443898 - head/science/libsvm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:27:25 -0000 Author: ultima Date: Mon Jun 19 17:27:24 2017 New Revision: 443898 URL: https://svnweb.freebsd.org/changeset/ports/443898 Log: * Updated to 3.22 * New maintainer Jov Changelog: http://www.csie.ntu.edu.tw/~cjlin/libsvm/log PR: 220102 Submitted by: Jov (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11269 Modified: head/science/libsvm/Makefile head/science/libsvm/distinfo Modified: head/science/libsvm/Makefile ============================================================================== --- head/science/libsvm/Makefile Mon Jun 19 17:27:16 2017 (r443897) +++ head/science/libsvm/Makefile Mon Jun 19 17:27:24 2017 (r443898) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= libsvm -PORTVERSION= 3.21 +PORTVERSION= 3.22 CATEGORIES= science math MASTER_SITES= http://www.csie.ntu.edu.tw/~cjlin/libsvm/ \ http://www.csie.ntu.edu.tw/~cjlin/libsvm/oldfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= amutu@amutu.com COMMENT= Library for Support Vector Machines LICENSE= BSD3CLAUSE Modified: head/science/libsvm/distinfo ============================================================================== --- head/science/libsvm/distinfo Mon Jun 19 17:27:16 2017 (r443897) +++ head/science/libsvm/distinfo Mon Jun 19 17:27:24 2017 (r443898) @@ -1,2 +1,3 @@ -SHA256 (libsvm-3.21.zip) = e6a45a48c5cb13eb609382168ae9b296325bf5f6590d5e38fff0a7ac309552c8 -SIZE (libsvm-3.21.zip) = 874175 +TIMESTAMP = 1497776801 +SHA256 (libsvm-3.22.zip) = 8815e8138083600046f9218f74c39f3590ee89604a909103ee7c31df33bb04fe +SIZE (libsvm-3.22.zip) = 878140 From owner-svn-ports-head@freebsd.org Mon Jun 19 17:30:39 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51AA4DA1757; Mon, 19 Jun 2017 17:30:39 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2EA9F7DA01; Mon, 19 Jun 2017 17:30:39 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHUcZQ052328; Mon, 19 Jun 2017 17:30:38 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHUcsJ051950; Mon, 19 Jun 2017 17:30:38 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706191730.v5JHUcsJ051950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Mon, 19 Jun 2017 17:30:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443899 - in head/games/eduke32: . 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, 19 Jun 2017 17:30:39 -0000 Author: ultima Date: Mon Jun 19 17:30:37 2017 New Revision: 443899 URL: https://svnweb.freebsd.org/changeset/ports/443899 Log: * Updated to 20170614 (r6180) * Added non-default option GCC PR: 220039 Submitted by: Piotr Kubaj (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11253 Added: head/games/eduke32/files/patch-source_build_src_lz4.c (contents, props changed) Modified: head/games/eduke32/Makefile head/games/eduke32/distinfo Modified: head/games/eduke32/Makefile ============================================================================== --- head/games/eduke32/Makefile Mon Jun 19 17:27:24 2017 (r443898) +++ head/games/eduke32/Makefile Mon Jun 19 17:30:37 2017 (r443899) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= eduke32 -PORTVERSION= 20170225 -PORTREVISION= 2 +PORTVERSION= 20170614 CATEGORIES= games MASTER_SITES= http://dukeworld.duke4.net/eduke32/synthesis/${PORTVERSION}-${SVNREVISION}/:eduke32 \ http://www.duke4.org/files/nightfright/hrp/:hrp \ @@ -30,12 +29,11 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libpng16.so:graphics/png USES= execinfo gmake pkgconfig tar:xz -USE_GCC= any USE_GL= gl glu USE_GNOME= gtk20 USE_SDL= sdl2 mixer2 WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}-${SVNREVISION} -SVNREVISION= 6079 +SVNREVISION= 6180 DATADIR= ${PREFIX}/share/duke3d SUB_FILES= pkg-message MAKEFILE= GNUmakefile @@ -46,12 +44,14 @@ PORTEXAMPLES= * BROKEN_sparc64= does not compile on sparc64 -OPTIONS_DEFINE= EXAMPLES HRP OFFENSIVE SHAREWARE VOXEL +OPTIONS_DEFINE= EXAMPLES GCC HRP OFFENSIVE SHAREWARE VOXEL OPTIONS_DEFINE_i386= ASM OPTIONS_DEFAULT_i386= ASM ASM_BUILD_DEPENDS= nasm:devel/nasm ASM_MAKE_ARGS_OFF= NOASM=1 +GCC_MAKE_ARGS_OFF= CLANG=1 LTO=0 +GCC_USE= gcc=yes HRP_DESC= Install High Resolution Pack HRP_DISTFILES= duke3d_hrp.zip:hrp HRP_PLIST_FILES= ${DATADIR}/duke3d_hrp.zip Modified: head/games/eduke32/distinfo ============================================================================== --- head/games/eduke32/distinfo Mon Jun 19 17:27:24 2017 (r443898) +++ head/games/eduke32/distinfo Mon Jun 19 17:30:37 2017 (r443899) @@ -1,6 +1,6 @@ -TIMESTAMP = 1489745171 -SHA256 (eduke32_src_20170225-6079.tar.xz) = 23cecc904df1e1e528c499e775a4dce7417cc70b8d97e7dcef068ff197e6a0a7 -SIZE (eduke32_src_20170225-6079.tar.xz) = 14759072 +TIMESTAMP = 1497598231 +SHA256 (eduke32_src_20170614-6180.tar.xz) = 5afab56358face5e89323dbb9d35051d4878514613c8254ba6557661a3258ea0 +SIZE (eduke32_src_20170614-6180.tar.xz) = 14874472 SHA256 (duke3d_hrp.zip) = f217df456b4f11055041731033e35e4402fada99253e714e37c4a27e6fdc78a5 SIZE (duke3d_hrp.zip) = 933440151 SHA256 (duke3d_xxx.zip) = c31713e6400a175a1bfa3bd369d132f8a8abce8915c113549f98262b9a84b534 Added: head/games/eduke32/files/patch-source_build_src_lz4.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/eduke32/files/patch-source_build_src_lz4.c Mon Jun 19 17:30:37 2017 (r443899) @@ -0,0 +1,11 @@ +--- source/build/src/lz4.c.orig 2017-06-16 07:39:10 UTC ++++ source/build/src/lz4.c +@@ -65,7 +65,7 @@ + /************************************** + * Includes + **************************************/ +-#include "lz4.h" ++#include "../include/lz4.h" + + + /************************************** From owner-svn-ports-head@freebsd.org Mon Jun 19 17:39:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94169DA18A5; Mon, 19 Jun 2017 17:39:22 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AEAD7DE24; Mon, 19 Jun 2017 17:39:22 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHdLPY055899; Mon, 19 Jun 2017 17:39:21 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHdLum055897; Mon, 19 Jun 2017 17:39:21 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706191739.v5JHdLum055897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Mon, 19 Jun 2017 17:39:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443900 - head/mail/alpine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 17:39:22 -0000 Author: ultima Date: Mon Jun 19 17:39:21 2017 New Revision: 443900 URL: https://svnweb.freebsd.org/changeset/ports/443900 Log: * Removed options SSL, ISPELL, NOSPELL * Added option ASPELL set as default * Modernized makefile PR: 219895 Submitted by: Marco Beishuizen (maintainer) Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11263 Modified: head/mail/alpine/Makefile head/mail/alpine/pkg-descr Modified: head/mail/alpine/Makefile ============================================================================== --- head/mail/alpine/Makefile Mon Jun 19 17:30:37 2017 (r443899) +++ head/mail/alpine/Makefile Mon Jun 19 17:39:21 2017 (r443900) @@ -2,7 +2,7 @@ PORTNAME?= alpine PORTVERSION= 2.21 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= mail news ipv6 MASTER_SITES= http://alpine.freeiz.com/alpine/release/src/ DIST_SUBDIR= alpine-${PORTVERSION} @@ -12,114 +12,77 @@ COMMENT?= Mail and news client descended from Pine LICENSE= APACHE20 -OPTIONS_DEFINE= DOCS SSL THREADS MOUSE NLS ISPELL NOSPELL -OPTIONS_DEFAULT+= SSL THREADS MOUSE -SSL_DESC= Build with SSL (installs: security/openssl if pre 10.x) -MOUSE_DESC= Enable mouse support for xterm -ISPELL_DESC= Use ispell instead of aspell as default speller -NOSPELL_DESC= Use no default speller (overrides both) +USES+= ssl libtool ncurses tar:xz gettext-runtime +GNU_CONFIGURE= yes +MAKE_JOBS_UNSAFE= yes +CONFIGURE_ARGS+= --with-debug-level=2 \ + --enable-background-post \ + --without-krb5 \ + --without-tcl \ + --with-system-pinerc=${PREFIX}/etc/alpine.conf \ + --with-system-fixed-pinerc=${PREFIX}/etc/alpine.conf.fixed \ + --with-password-prog=/usr/bin/passwd \ + --with-system-mail-directory=/var/mail \ + --with-ssl-dir=${OPENSSLDIR} \ + --with-ssl-include-dir=${OPENSSLINC} \ + --with-ssl-lib-dir=${OPENSSLLIB} \ + --with-ssl-certs-dir=${OPENSSLDIR}/certs +MAKE_ARGS+= CC="${CC}" CXX="${CXX}" GCCCFLAGS="${CFLAGS}" -.if !defined(PICO_ALPINE_SLAVE) +OPTIONS_DEFINE= ASPELL CONS25 DOCS IPV6 LDAP MAILDIR MOUSE PASSFILE NLS THREADS +OPTIONS_DEFAULT= ASPELL MOUSE THREADS +.if defined(PICO_ALPINE_SLAVE) +OPTIONS_EXCLUDE= CONS25 IPV6 LDAP MAILDIR PASSFILE +.endif -OPTIONS_DEFINE+= PICO IPV6 LDAP PASSFILE CONS25 MAILDIR SSL -OPTIONS_DEFAULT+= PICO SSL -PICO_DESC= Build and install pico, the default editor -PASSFILE_DESC= Support for a stored password file (DANGEROUS) CONS25_DESC= Add a patch to support color for default console MAILDIR_DESC= Add a patch for maildir support -.endif +PASSFILE_DESC= Support for a stored password file -USES+= libtool ncurses tar:xz gettext-runtime +# Option ASPELL +ASPELL_CONFIGURE_ON= --with-interactive-spellcheck=${LOCALBASE}/bin/aspell +ASPELL_CONFIGURE_OFF= --with-simple-spellcheck +ASPELL_BUILD_DEPENDS= aspell:textproc/aspell +ASPELL_RUN_DEPENDS= aspell:textproc/aspell -MAKE_JOBS_UNSAFE= yes +# Option CONS25 +CONS25_EXTRA_PATCHES= ${FILESDIR}/cons25-alpine_keymenu.c -GNU_CONFIGURE= yes +# Option IPV6 +IPV6_CONFIGURE_WITH= ipv6 -THREADS_CONFIGURE_WITH= pthread -MOUSE_CONFIGURE_ENABLE= mouse -NLS_CONFIGURE_ENABLE= nls -IPV6_CONFIGURE_WITH= ipv6 -SSL_USES= ssl +# Option LDAP +LDAP_USE= openldap=yes +LDAP_CONFIGURE_WITH= ldap +LDAP_CONFIGURE_ON= --with-ldap-dir=${LOCALBASE} -.if !defined(PICO_ALPINE_SLAVE) +# Option MAILDIR +MAILDIR_PATCH_SITES= http://alpine.freeiz.com/alpine/patches/alpine-${PORTVERSION}/ +MAILDIR_PATCHFILES+= maildir.patch.gz:-p1 -PORTDOCSbase= LICENSE NOTICE README -PORTDOCSdoc= brochure.txt -PORTDOCShtml= tech-notes/background.html tech-notes/cmd-line.html \ - tech-notes/config-notes.html tech-notes/config.html \ - tech-notes/index.html tech-notes/installation.html \ - tech-notes/introduction.html tech-notes/low-level.html \ - tech-notes/tech-notes.txt -PORTDOCS= ${PORTDOCSbase} ${PORTDOCSdoc} ${PORTDOCShtml} +# Option MOUSE +MOUSE_CONFIGURE_ENABLE= mouse -CONFIGURE_ARGS+=--with-system-pinerc=${PREFIX}/etc/alpine.conf \ - --with-system-fixed-pinerc=${PREFIX}/etc/alpine.conf.fixed \ - --with-password-prog=/usr/bin/passwd \ - --with-system-mail-directory=/var/mail +# Option NLS +NLS_CONFIGURE_ENABLE= nls -.endif -CONFIGURE_ARGS+=--with-debug-level=2 \ - --enable-background-post --without-krb5 --without-tcl +# Option PASSFILE +PASSFILE_CONFIGURE_WITH= passfile +PASSFILE_CONFIGURE_ON= --with-passfile=.alpine.pwd -MAKE_ARGS+= CC="${CC}" CXX="${CXX}" GCCCFLAGS="${CFLAGS}" +# Option THREADS +THREADS_CONFIGURE_WITH= pthread -.include - -.if ${PORT_OPTIONS:MSSL} -CONFIGURE_ARGS+= --with-ssl-dir=${OPENSSLDIR} \ - --with-ssl-include-dir=${OPENSSLINC} \ - --with-ssl-lib-dir=${OPENSSLLIB} \ - --with-ssl-certs-dir=${OPENSSLDIR}/certs -.else -CONFIGURE_ARGS+= --without-ssl -.endif - -.include - -.if ${PORT_OPTIONS:MSSL} && ${SSL_DEFAULT:Mopenssl-devel} -BROKEN= Does not build with openssl-devel -.endif - -.if ! ${PORT_OPTIONS:MNOSPELL} -.if ! ${PORT_OPTIONS:MISPELL} -CONFIGURE_ARGS+=--with-interactive-spellcheck=${LOCALBASE}/bin/aspell -BUILD_DEPENDS+= aspell:textproc/aspell -RUN_DEPENDS+= aspell:textproc/aspell -.else -CONFIGURE_ARGS+= --with-interactive-spellcheck=${LOCALBASE}/bin/ispell -BUILD_DEPENDS+= ispell:textproc/aspell-ispell -RUN_DEPENDS+= ispell:textproc/aspell-ispell -.endif -.else -CONFIGURE_ARGS+=--without-simple-spellcheck --without-interactive-spellcheck -.endif - .if !defined(PICO_ALPINE_SLAVE) -.if ${PORT_OPTIONS:MPICO} -RUN_DEPENDS+= pico:editors/pico-alpine -.endif +PORTDOCSbase= LICENSE NOTICE README +PORTDOCSdoc= brochure.txt +PORTDOCShtml= tech-notes/background.html tech-notes/cmd-line.html \ + tech-notes/config-notes.html tech-notes/config.html \ + tech-notes/index.html tech-notes/installation.html \ + tech-notes/introduction.html tech-notes/low-level.html \ + tech-notes/tech-notes.txt +PORTDOCS= ${PORTDOCSbase} ${PORTDOCSdoc} ${PORTDOCShtml} -.if ${PORT_OPTIONS:MLDAP} -USE_OPENLDAP= yes -CONFIGURE_ARGS+= --with-ldap-dir=${LOCALBASE} -.else -CONFIGURE_ARGS+= --without-ldap -.endif - -.if ${PORT_OPTIONS:MPASSFILE} -ALPINE_PASSFILE?= .alpine.pwd -CONFIGURE_ARGS+= --with-passfile=.alpine.pwd -.endif - -.if ${PORT_OPTIONS:MMAILDIR} -PATCH_SITES= http://alpine.freeiz.com/alpine/patches/alpine-${PORTVERSION}/ -PATCHFILES+= maildir.patch.gz:-p1 -.endif - -.if ${PORT_OPTIONS:MCONS25} -EXTRA_PATCHES= ${FILESDIR}/cons25-alpine_keymenu.c -.endif - post-patch: @${CP} ${WRKSRC}/imap/Makefile ${WRKSRC}/imap/Makefile.presed @${SED} -e "s#^\(all:.*\) bundled\$$#\1#" \ @@ -152,7 +115,8 @@ post-patch: post-install: ${STAGEDIR}${PREFIX}/bin/alpine -conf > ${STAGEDIR}${PREFIX}/etc/alpine.conf.sample -.if ${PORT_OPTIONS:MDOCS} + +post-install-DOCS-on: ${INSTALL} -d ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${DOCSDIR}/tech-notes .for f in ${PORTDOCSbase} ${INSTALL_MAN} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR} @@ -163,11 +127,6 @@ post-install: .for f in ${PORTDOCShtml} ${INSTALL_MAN} ${WRKSRC}/doc/$f ${STAGEDIR}${DOCSDIR}/tech-notes .endfor -.endif +.endif # !defined(PICO_ALPINE_SLAVE) -# PKG_PREFIX=${STAGEDIR}${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -# @${CAT} ${PKGMESSAGE} - -.endif # !defined(PICO_ALPINE_SLAVE) - -.include +.include Modified: head/mail/alpine/pkg-descr ============================================================================== --- head/mail/alpine/pkg-descr Mon Jun 19 17:30:37 2017 (r443899) +++ head/mail/alpine/pkg-descr Mon Jun 19 17:39:21 2017 (r443900) @@ -18,4 +18,4 @@ Alpine's basic feature set includes: Alpine supports MIME (Multipurpose Internet Mail Extensions), an Internet Standard for representing multipart and multimedia data in email. -WWW: http://patches.freeiz.com/alpine/ +WWW: http://alpine.freeiz.com/alpine/ From owner-svn-ports-head@freebsd.org Mon Jun 19 17:50:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D04FDA1A5C; Mon, 19 Jun 2017 17:50:07 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 329DE7E2F5; Mon, 19 Jun 2017 17:50:07 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JHo6le060351; Mon, 19 Jun 2017 17:50:06 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JHo6jB060349; Mon, 19 Jun 2017 17:50:06 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201706191750.v5JHo6jB060349@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Mon, 19 Jun 2017 17:50:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443901 - in head/devel/libatomic_ops: . 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, 19 Jun 2017 17:50:07 -0000 Author: rodrigo Date: Mon Jun 19 17:50:06 2017 New Revision: 443901 URL: https://svnweb.freebsd.org/changeset/ports/443901 Log: Add a missed patch for arm build Bump PORTREVISION PR: 220008 Submitted by: mikael.urankar@gmail.com Approved by: maintainer Added: head/devel/libatomic_ops/files/ head/devel/libatomic_ops/files/patch-src_atomic__ops_sysdeps_gcc_arm.h (contents, props changed) Modified: head/devel/libatomic_ops/Makefile Modified: head/devel/libatomic_ops/Makefile ============================================================================== --- head/devel/libatomic_ops/Makefile Mon Jun 19 17:39:21 2017 (r443900) +++ head/devel/libatomic_ops/Makefile Mon Jun 19 17:50:06 2017 (r443901) @@ -3,6 +3,7 @@ PORTNAME= libatomic_ops PORTVERSION= 7.4.6 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel Added: head/devel/libatomic_ops/files/patch-src_atomic__ops_sysdeps_gcc_arm.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libatomic_ops/files/patch-src_atomic__ops_sysdeps_gcc_arm.h Mon Jun 19 17:50:06 2017 (r443901) @@ -0,0 +1,12 @@ +--- src/atomic_ops/sysdeps/gcc/arm.h.orig 2016-03-12 13:41:24 UTC ++++ src/atomic_ops/sysdeps/gcc/arm.h +@@ -58,7 +58,8 @@ + # if !defined(__ARM_ARCH_6__) && !defined(__ARM_ARCH_6J__) \ + && !defined(__ARM_ARCH_6T2__) && !defined(__ARM_ARCH_6Z__) \ + && !defined(__ARM_ARCH_6ZT2__) +-# if !defined(__ARM_ARCH_6K__) && !defined(__ARM_ARCH_6ZK__) ++# if !defined(__ARM_ARCH_6K__) && !defined(__ARM_ARCH_6KZ__) \ ++ && !defined(__ARM_ARCH_6ZK__) + /* DMB is present in ARMv6M and ARMv7+. */ + # define AO_ARM_HAVE_DMB + # endif From owner-svn-ports-head@freebsd.org Mon Jun 19 18:04:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2776FDA1D0E; Mon, 19 Jun 2017 18:04:33 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8FBF7EAD8; Mon, 19 Jun 2017 18:04:32 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JI4V9L068492; Mon, 19 Jun 2017 18:04:31 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JI4VG0068490; Mon, 19 Jun 2017 18:04:31 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201706191804.v5JI4VG0068490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Mon, 19 Jun 2017 18:04:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443903 - in head/devel/git: . 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, 19 Jun 2017 18:04:33 -0000 Author: garga Date: Mon Jun 19 18:04:31 2017 New Revision: 443903 URL: https://svnweb.freebsd.org/changeset/ports/443903 Log: - Replace git-send-email.perl patch by a different fix committed upstream. With previous version, when user tries to send multiple e-mails using an authenticated SMTP server, it asks for password on first one and rejects all other with "authentication failed" error - Bump PORTREVISION Reported by: novel Tested by: novel Obtained from: Git repository, commits: 0ead000c3aca13a10ae51a3c74c866981e0d33b8 bfbfc9a953d8e26b029110c05581b22f9f0d77e9 MFH: 2017Q2 Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/devel/git/Makefile head/devel/git/files/patch-git-send-email.perl Modified: head/devel/git/Makefile ============================================================================== --- head/devel/git/Makefile Mon Jun 19 17:55:19 2017 (r443902) +++ head/devel/git/Makefile Mon Jun 19 18:04:31 2017 (r443903) @@ -3,7 +3,7 @@ PORTNAME= git DISTVERSION= 2.13.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ Modified: head/devel/git/files/patch-git-send-email.perl ============================================================================== --- head/devel/git/files/patch-git-send-email.perl Mon Jun 19 17:55:19 2017 (r443902) +++ head/devel/git/files/patch-git-send-email.perl Mon Jun 19 18:04:31 2017 (r443903) @@ -1,45 +1,51 @@ ---- git-send-email.perl.orig 2017-03-21 10:10:31 UTC +diff --git a/git-send-email.perl b/git-send-email.perl +index eea0a517f71b6..0d90439d9a8e5 100755 +--- git-send-email.perl +++ git-send-email.perl -@@ -27,6 +27,7 @@ use Term::ANSIColor; - use File::Temp qw/ tempdir tempfile /; - use File::Spec::Functions qw(catfile); - use Error qw(:try); -+use Net::SMTP 2.34; - use Git; - use Git::I18N; +@@ -1353,10 +1353,12 @@ sub send_message { + die __("The required SMTP server is not properly defined.") + } -@@ -1355,7 +1356,6 @@ EOF - ++ require Net::SMTP; ++ my $use_net_smtp_ssl = version->parse($Net::SMTP::VERSION) < version->parse("2.34"); ++ $smtp_domain ||= maildomain(); ++ if ($smtp_encryption eq 'ssl') { $smtp_server_port ||= 465; # ssmtp - require Net::SMTP::SSL; - $smtp_domain ||= maildomain(); +- $smtp_domain ||= maildomain(); require IO::Socket::SSL; -@@ -1365,35 +1365,22 @@ EOF - $IO::Socket::SSL::DEBUG = 1; - } - -- # Net::SMTP::SSL->new() does not forward any SSL options -- IO::Socket::SSL::set_client_defaults( -- ssl_verify_params()); + # Suppress "variable accessed once" warning. +@@ -1368,34 +1370,48 @@ sub send_message { + # Net::SMTP::SSL->new() does not forward any SSL options + IO::Socket::SSL::set_client_defaults( + ssl_verify_params()); - $smtp ||= Net::SMTP::SSL->new($smtp_server, - Hello => $smtp_domain, - Port => $smtp_server_port, - Debug => $debug_net_smtp); -+ $smtp = Net::SMTP->new($smtp_server, -+ Hello => $smtp_domain, -+ Port => $smtp_server_port, -+ SSL => 1, -+ ssl_verify_params(), -+ Debug => $debug_net_smtp); ++ ++ if ($use_net_smtp_ssl) { ++ require Net::SMTP::SSL; ++ $smtp ||= Net::SMTP::SSL->new($smtp_server, ++ Hello => $smtp_domain, ++ Port => $smtp_server_port, ++ Debug => $debug_net_smtp); ++ } ++ else { ++ $smtp ||= Net::SMTP->new($smtp_server, ++ Hello => $smtp_domain, ++ Port => $smtp_server_port, ++ Debug => $debug_net_smtp, ++ SSL => 1); ++ } } else { - require Net::SMTP; - $smtp_domain ||= maildomain(); $smtp_server_port ||= 25; -- $smtp ||= Net::SMTP->new($smtp_server, -+ $smtp = Net::SMTP->new($smtp_server, + $smtp ||= Net::SMTP->new($smtp_server, Hello => $smtp_domain, Debug => $debug_net_smtp, Port => $smtp_server_port); @@ -48,16 +54,32 @@ - $smtp->command('STARTTLS'); - $smtp->response(); - if ($smtp->code == 220) { -- $smtp = Net::SMTP::SSL->start_SSL($smtp, -- ssl_verify_params()) ++ if ($use_net_smtp_ssl) { ++ $smtp->command('STARTTLS'); ++ $smtp->response(); ++ if ($smtp->code != 220) { ++ die sprintf(__("Server does not support STARTTLS! %s"), $smtp->message); ++ } ++ require Net::SMTP::SSL; + $smtp = Net::SMTP::SSL->start_SSL($smtp, + ssl_verify_params()) - or die "STARTTLS failed! ".IO::Socket::SSL::errstr(); - $smtp_encryption = ''; - # Send EHLO again to receive fresh - # supported commands - $smtp->hello($smtp_domain); - } else { -+ $smtp->starttls(ssl_verify_params()); -+ if ($smtp->code != 250) { - die sprintf(__("Server does not support STARTTLS! %s"), $smtp->message); +- die sprintf(__("Server does not support STARTTLS! %s"), $smtp->message); ++ or die sprintf(__("STARTTLS failed! %s"), IO::Socket::SSL::errstr()); ++ } ++ else { ++ $smtp->starttls(ssl_verify_params()) ++ or die sprintf(__("STARTTLS failed! %s"), IO::Socket::SSL::errstr()); } ++ $smtp_encryption = ''; ++ # Send EHLO again to receive fresh ++ # supported commands ++ $smtp->hello($smtp_domain); } + } + From owner-svn-ports-head@freebsd.org Mon Jun 19 18:05:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1D6ADA1D50; Mon, 19 Jun 2017 18:05:27 +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 9D8BE7EBDC; Mon, 19 Jun 2017 18:05:27 +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 v5JI5QTM068677; Mon, 19 Jun 2017 18:05:26 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JI5QQt068675; Mon, 19 Jun 2017 18:05:26 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201706191805.v5JI5QQt068675@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 19 Jun 2017 18:05:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443904 - in head/security/p5-Crypt-OpenSSL-CA: . 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, 19 Jun 2017 18:05:27 -0000 Author: pi Date: Mon Jun 19 18:05:26 2017 New Revision: 443904 URL: https://svnweb.freebsd.org/changeset/ports/443904 Log: security/p5-Crypt-OpenSSL-CA: add functions to retrieve CRL-related infos PR: 220134 Submitted by: Borodin Oleg Added: head/security/p5-Crypt-OpenSSL-CA/files/ head/security/p5-Crypt-OpenSSL-CA/files/patch-lib_Crypt_OpenSSL_CA.pm (contents, props changed) Modified: head/security/p5-Crypt-OpenSSL-CA/Makefile Modified: head/security/p5-Crypt-OpenSSL-CA/Makefile ============================================================================== --- head/security/p5-Crypt-OpenSSL-CA/Makefile Mon Jun 19 18:04:31 2017 (r443903) +++ head/security/p5-Crypt-OpenSSL-CA/Makefile Mon Jun 19 18:05:26 2017 (r443904) @@ -3,7 +3,7 @@ PORTNAME= Crypt-OpenSSL-CA PORTVERSION= 0.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Added: head/security/p5-Crypt-OpenSSL-CA/files/patch-lib_Crypt_OpenSSL_CA.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-OpenSSL-CA/files/patch-lib_Crypt_OpenSSL_CA.pm Mon Jun 19 18:05:26 2017 (r443904) @@ -0,0 +1,320 @@ +--- lib/Crypt/OpenSSL/CA.pm.orig 2017-06-19 18:02:36 UTC ++++ lib/Crypt/OpenSSL/CA.pm +@@ -2064,6 +2064,43 @@ void DESTROY(SV* sv_self) { + } + X509_CRL_BASE + ++ ++=head2 parse_CRL ($pem_crl) ++ ++Creates and returns an I object. ++ ++=cut ++ ++sub parse_CRL { ++ my ($class, $pemcrl) = @_; ++ ++ unless ($pemcrl) { ++ croak("CRL pem must by"); ++ } ++ return $class->_parse_CRL($pemcrl); ++} ++ ++ ++ ++use Crypt::OpenSSL::CA::Inline::C <<"_PARSE_CRL"; ++static ++SV* _parse_CRL(char *class, const char* pemcrl) { ++ BIO *crlbio; ++ X509_CRL *crl = NULL; ++ ++ crlbio = BIO_new_mem_buf((void *) pemcrl, -1); ++ if (crlbio == NULL) { ++ croak("BIO_new_mem_buf failed"); ++ } ++ crl = PEM_read_bio_X509_CRL(crlbio, NULL, NULL, NULL); ++ if (crl == NULL) { ++ X509_CRL_free(crl); ++ sslcroak("unable to parse CRL"); ++ } ++ return perl_wrap("${\__PACKAGE__}", crl); ++} ++_PARSE_CRL ++ + =head2 new () + + =head2 new ($version) +@@ -2120,10 +2157,47 @@ void set_issuer_DN(SV* sv_self, SV* sv_dn) { + } + SET_ISSUER_DN + ++=head2 get_issuer_DN() ++ ++Get DN string of issuer the CRL ++ ++=cut ++ ++use Crypt::OpenSSL::CA::Inline::C <<"GET_ISSUER"; ++ ++static ++SV* get_issuer_DN(SV* sv_self) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ BIO* mem = BIO_new(BIO_s_mem()); ++ ASN1_TIME *next_update; ++ X509_NAME *issuer = NULL; ++ ++ if (! mem) { ++ croak("Cannot allocate BIO"); ++ } ++ ++ issuer = X509_NAME_new(); ++ ++ if (!(issuer = X509_CRL_get_issuer(self))) { ++ sslcroak("X509_CRL_get_issuer failed"); ++ } ++ if (!(X509_NAME_print_ex(mem, issuer, 0, XN_FLAG_ONELINE) && (BIO_write(mem, "\\0", 1) > 0))) { ++ sslcroak("X509_CRL_get_nextUpdate failed"); ++ } ++ return BIO_mem_to_SV(mem); ++} ++GET_ISSUER ++ ++ + =head2 set_lastUpdate ($enddate) + + =head2 set_nextUpdate ($startdate) + ++=head2 get_nextUpdate () ++ ++=head2 get_lastUpdate () ++ ++ + Sets the validity period of the certificate. The dates must be in the + GMT timezone, with the format yyyymmddhhmmssZ (it's a literal Z at the + end, meaning "Zulu" in case you care). +@@ -2141,6 +2215,24 @@ void set_lastUpdate(SV* sv_self, char* startdate) { + } + + static ++SV* get_lastUpdate(SV* sv_self) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ BIO* mem = BIO_new(BIO_s_mem()); ++ ASN1_TIME *last_update; ++ ++ if (! mem) { ++ croak("Cannot allocate BIO"); ++ } ++ if (!(last_update = X509_CRL_get_lastUpdate(self))) { ++ sslcroak("X509_CRL_get_lastUpdate"); ++ } ++ if (!(ASN1_TIME_print(mem, last_update) && (BIO_write(mem, "\\0", 1) > 0))) { ++ sslcroak("X509_CRL_get_lastUpdate failed"); ++ } ++ return BIO_mem_to_SV(mem); ++} ++ ++static + void set_nextUpdate(SV* sv_self, char* enddate) { + ASN1_TIME* newtime; + X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); +@@ -2149,8 +2241,190 @@ void set_nextUpdate(SV* sv_self, char* enddate) { + X509_CRL_set_nextUpdate(self, time); + ASN1_TIME_free(time); + } ++ ++ ++static ++SV* get_nextUpdate(SV* sv_self) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ BIO* mem = BIO_new(BIO_s_mem()); ++ ASN1_TIME *next_update; ++ ++ if (! mem) { ++ croak("Cannot allocate BIO"); ++ } ++ if (!(next_update = X509_CRL_get_nextUpdate(self))) { ++ sslcroak("X509_CRL_get_nextUpdate"); ++ } ++ if (!(ASN1_TIME_print(mem, next_update) && (BIO_write(mem, "\\0", 1) > 0))) { ++ sslcroak("ASN1_TIME_print failed"); ++ } ++ return BIO_mem_to_SV(mem); ++} + SET_UPDATES + ++ ++ ++=head2 get_entryNumbers() ++ ++Get array of revoked serial numbers. ++ ++=cut ++ ++use Crypt::OpenSSL::CA::Inline::C <<"GET_ENTRY_NUMBERS"; ++ ++static ++SV* get_entryNumbers(SV* sv_self) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ STACK_OF(X509_REVOKED) *rev = NULL; ++ X509_REVOKED *rev_entry = NULL; ++ int revnum, i; ++ ++ if (!(rev = X509_CRL_get_REVOKED(self))) { ++ sslcroak("X509_CRL_get_REVOKED failed"); ++ } ++ if (!(revnum = sk_X509_REVOKED_num(rev))) { ++ sslcroak("sk_X509_REVOKED_num failed"); ++ } ++ ++ SV* serial_SV = NULL; ++ SV* revokedate_SV = NULL; ++ HV* hash = NULL; ++ AV* array = newAV(); ++ ++ char* revokedate_label = "revokedate"; ++ char* serial_label = "serial"; ++ ++ BIO* mem = NULL; ++ for(i = 0; i < revnum; i++) { ++ if (!(hash = newHV())) { ++ croak("Cannot allocate HV"); ++ } ++ ++ if (!(rev_entry = sk_X509_REVOKED_value(rev, i))) { ++ sslcroak("sk_X509_REVOKED_value failed"); ++ } ++ ++ if (!(mem = BIO_new(BIO_s_mem()))) { ++ croak("Cannot allocate BIO"); ++ } ++ BIO_write(mem, "0x", 2); ++ i2a_ASN1_INTEGER(mem, rev_entry->serialNumber); ++ BIO_write(mem, "\\0", 1); ++ serial_SV = BIO_mem_to_SV(mem); ++ hv_store(hash, serial_label, strlen(serial_label), serial_SV, 0); ++ ++ if (!(mem = BIO_new(BIO_s_mem()))) { ++ croak("Cannot allocate BIO"); ++ } ++ ASN1_TIME_print(mem, rev_entry->revocationDate); ++ BIO_write(mem, "\\0", 1); ++ revokedate_SV = BIO_mem_to_SV(mem); ++ hv_store(hash, revokedate_label, strlen(revokedate_label), revokedate_SV, 0); ++ ++ av_push(array, newRV_noinc((SV*)hash)); ++ } ++ return newRV_noinc((SV*)array); ++} ++GET_ENTRY_NUMBERS ++ ++=head2 get_entry_count() ++ ++Get count of CRL entries. ++ ++=cut ++ ++use Crypt::OpenSSL::CA::Inline::C <<"GET_ENTRY_COUNT"; ++ ++int get_entry_count(SV* sv_self) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ BIO* mem = BIO_new(BIO_s_mem()); ++ STACK_OF(X509_REVOKED) *rev = NULL; ++ int count; ++ ++ if (! mem) { ++ croak("Cannot allocate BIO"); ++ } ++ if (!(rev = X509_CRL_get_REVOKED(self))) { ++ sslcroak("X509_CRL_get_REVOKED failed"); ++ } ++ if (!(count = sk_X509_REVOKED_num(rev))) { ++ sslcroak("sk_X509_REVOKED_num failed"); ++ } ++ return count; ++} ++GET_ENTRY_COUNT ++ ++ ++=head2 get_entry_revoke_date( $num ) ++ ++Get revoke date of entry in the CRL. Count begin from zero. ++ ++=cut ++ ++use Crypt::OpenSSL::CA::Inline::C <<"GET_ENTRY_REVOKE_DATE"; ++ ++static ++SV* get_entry_revoke_date(SV* sv_self, int num) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ BIO* mem = BIO_new(BIO_s_mem()); ++ ASN1_TIME *next_update; ++ STACK_OF(X509_REVOKED) *rev = NULL; ++ X509_REVOKED *rev_entry = NULL; ++ int revnum, i; ++ ++ if (! mem) { ++ croak("Cannot allocate BIO"); ++ } ++ if (!(rev = X509_CRL_get_REVOKED(self))) { ++ sslcroak("X509_CRL_get_REVOKED failed"); ++ } ++ if (!(rev_entry = sk_X509_REVOKED_value(rev, num))) { ++ sslcroak("sk_X509_REVOKED_value failed"); ++ } ++ ASN1_TIME_print(mem, rev_entry->revocationDate); ++ if (!(BIO_write(mem, "\\0", 1) > 0)) { ++ sslcroak("BIO_write failed"); ++ } ++ return BIO_mem_to_SV(mem); ++} ++GET_ENTRY_REVOKE_DATE ++ ++ ++=head2 get_entry_serial( $num ) ++ ++Get serial number of entry in the CRL. ++ ++ ++=cut ++ ++use Crypt::OpenSSL::CA::Inline::C <<"GET_ENTRY_SERIAL"; ++ ++static ++SV* get_entry_serial(SV* sv_self, int num) { ++ X509_CRL* self = perl_unwrap("${\__PACKAGE__}", X509_CRL *, sv_self); ++ BIO* mem = BIO_new(BIO_s_mem()); ++ STACK_OF(X509_REVOKED) *rev = NULL; ++ X509_REVOKED *rev_entry = NULL; ++ ++ if (! mem) { ++ croak("Cannot allocate BIO"); ++ } ++ if (!(rev = X509_CRL_get_REVOKED(self))) { ++ sslcroak("X509_CRL_get_REVOKED failed"); ++ } ++ BIO_write(mem, "0x", 2); ++ if (!(rev_entry = sk_X509_REVOKED_value(rev, num))) { ++ sslcroak("sk_X509_REVOKED_value failed"); ++ } ++ i2a_ASN1_INTEGER(mem, rev_entry->serialNumber); ++ if (!(BIO_write(mem, "\\0", 1) > 0)) { ++ sslcroak("BIO_write failed"); ++ } ++ return BIO_mem_to_SV(mem); ++} ++GET_ENTRY_SERIAL ++ ++ + =head2 set_extension ($extname, $value, %options, %more_openssl_config) + + =head2 add_extension ($extname, $value, %options, %more_openssl_config) +@@ -2427,6 +2701,9 @@ Returns a textual representation of all the fields ins + C. + + =cut ++ ++ ++ + + use Crypt::OpenSSL::CA::Inline::C <<"DUMP"; + static From owner-svn-ports-head@freebsd.org Mon Jun 19 18:14:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8834FDA1FD4; Mon, 19 Jun 2017 18:14: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 5792E7F2E3; Mon, 19 Jun 2017 18:14: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 v5JIEt7M073013; Mon, 19 Jun 2017 18:14:55 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JIEtDc073010; Mon, 19 Jun 2017 18:14:55 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201706191814.v5JIEtDc073010@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 19 Jun 2017 18:14:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443905 - in head/security/p5-Crypt-OpenSSL-RSA: . 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, 19 Jun 2017 18:14:56 -0000 Author: pi Date: Mon Jun 19 18:14:54 2017 New Revision: 443905 URL: https://svnweb.freebsd.org/changeset/ports/443905 Log: security/p5-Crypt-OpenSSL-RSA: add functions to work with private keys - new_private_key(privkey_string) Create encrypted private RSA key from privkey_string - new_private_key(privkey_string, password) parse existed encrypted private RSA key from privkey_string - get_enc_private_key_string(password) - get_enc_private_key_string(password, cipher) Encrypt and return encrypted PEM PKCS coded RSA private key PR: 220136 Submitted by: Borodin Oleg Added: head/security/p5-Crypt-OpenSSL-RSA/files/ head/security/p5-Crypt-OpenSSL-RSA/files/patch-RSA.pm (contents, props changed) head/security/p5-Crypt-OpenSSL-RSA/files/patch-RSA.xs (contents, props changed) head/security/p5-Crypt-OpenSSL-RSA/files/patch-t_rsa.t (contents, props changed) Modified: head/security/p5-Crypt-OpenSSL-RSA/Makefile Modified: head/security/p5-Crypt-OpenSSL-RSA/Makefile ============================================================================== --- head/security/p5-Crypt-OpenSSL-RSA/Makefile Mon Jun 19 18:05:26 2017 (r443904) +++ head/security/p5-Crypt-OpenSSL-RSA/Makefile Mon Jun 19 18:14:54 2017 (r443905) @@ -3,7 +3,7 @@ PORTNAME= Crypt-OpenSSL-RSA PORTVERSION= 0.28 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Added: head/security/p5-Crypt-OpenSSL-RSA/files/patch-RSA.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-OpenSSL-RSA/files/patch-RSA.pm Mon Jun 19 18:14:54 2017 (r443905) @@ -0,0 +1,61 @@ +--- RSA.pm.orig 2017-06-19 18:08:26 UTC ++++ RSA.pm +@@ -14,8 +14,31 @@ $VERSION = '0.28'; + + bootstrap Crypt::OpenSSL::RSA $VERSION; + ++sub new_private_key { ++ ++ my ($self, $keystring, $passin) = @_; ++ ++ if (length ($passin) > 0 ) { ++ return $self->_new_enc_private_key($keystring, $passin); ++ } ++ return $self->_new_private_key($keystring); ++} ++ ++sub get_private_key_string { ++ ++ my ($self, $passout, $cipher) = @_; ++ ++ if (length ($passout) > 0 && length ($cipher) > 0) { ++ return $self->_get_enc_private_key_string($passout, $cipher); ++ } elsif (length $passout > 0) { ++ return $self->_get_enc_private_key_string($passout, "aes-256-cbc"); ++ } ++ return $self->_get_private_key_string(); ++} ++ + BEGIN { eval { require Crypt::OpenSSL::Bignum; }; } + ++ + 1; + + __END__ +@@ -96,7 +119,9 @@ sub new_public_key + } + } + +-=item new_private_key ++=item new_private_key(privkey_string) ++=cut ++=item new_private_key(privkey_string, password) + + Create a new Crypt::OpenSSL::RSA object by loading a private key in + from an string containing the Base64/DER encoding of the PKCS1 +@@ -179,8 +204,14 @@ header and footer lines: + and is the format that is produced by running C. + + =item get_private_key_string ++=cut ++=item get_enc_private_key_string(password) ++=cut ++=item get_enc_private_key_string(password, cipher) + +-Return the DER-encoded PKCS1 representation of the private key. ++Return the unencripted or encripted DER-encoded PKCS1 representation ++of the private key. For stoping of potential leak unencrypted private key ++if cipher name is unknown will use DES3 (DES-EDE3) cipher. + + =item encrypt + Added: head/security/p5-Crypt-OpenSSL-RSA/files/patch-RSA.xs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-OpenSSL-RSA/files/patch-RSA.xs Mon Jun 19 18:14:54 2017 (r443905) @@ -0,0 +1,109 @@ +--- RSA.xs.orig 2017-06-19 18:08:26 UTC ++++ RSA.xs +@@ -179,6 +179,30 @@ RSA* _load_rsa_key(SV* p_keyStringSv, + return rsa; + } + ++ ++RSA* _load_enc_rsa_key(SV* p_keyStringSv, ++ RSA*(*p_loader)(BIO*, RSA**, pem_password_cb*, void*), char* password) ++{ ++ STRLEN keyStringLength; ++ char* keyString; ++ ++ RSA* rsa; ++ BIO* stringBIO; ++ ++ keyString = SvPV(p_keyStringSv, keyStringLength); ++ ++ CHECK_OPEN_SSL(stringBIO = BIO_new_mem_buf(keyString, keyStringLength)); ++ ++ rsa = p_loader(stringBIO, NULL, NULL, password); ++ ++ CHECK_OPEN_SSL(BIO_set_close(stringBIO, BIO_CLOSE) == 1); ++ BIO_free(stringBIO); ++ ++ CHECK_OPEN_SSL(rsa); ++ return rsa; ++} ++ ++ + SV* rsa_crypt(rsaData* p_rsa, SV* p_from, + int (*p_crypt)(int, const unsigned char*, unsigned char*, RSA*, int)) + { +@@ -214,7 +238,7 @@ BOOT: + ERR_load_crypto_strings(); + + SV* +-new_private_key(proto, key_string_SV) ++_new_private_key(proto, key_string_SV) + SV* proto; + SV* key_string_SV; + CODE: +@@ -223,7 +247,24 @@ new_private_key(proto, key_string_SV) + OUTPUT: + RETVAL + ++ + SV* ++_new_enc_private_key(proto, key_string_SV, password_SV) ++ SV* proto; ++ SV* key_string_SV; ++ SV* password_SV; ++ PREINIT: ++ char* password; ++ CODE: ++ password = SvPV_nolen(password_SV); ++ ++ RETVAL = make_rsa_obj( ++ proto, _load_enc_rsa_key(key_string_SV, PEM_read_bio_RSAPrivateKey, password)); ++ OUTPUT: ++ RETVAL ++ ++ ++SV* + _new_public_key_pkcs1(proto, key_string_SV) + SV* proto; + SV* key_string_SV; +@@ -251,7 +292,7 @@ DESTROY(p_rsa) + Safefree(p_rsa); + + SV* +-get_private_key_string(p_rsa) ++_get_private_key_string(p_rsa) + rsaData* p_rsa; + PREINIT: + BIO* stringBIO; +@@ -259,6 +300,32 @@ get_private_key_string(p_rsa) + CHECK_OPEN_SSL(stringBIO = BIO_new(BIO_s_mem())); + PEM_write_bio_RSAPrivateKey( + stringBIO, p_rsa->rsa, NULL, NULL, 0, NULL, NULL); ++ RETVAL = extractBioString(stringBIO); ++ ++ OUTPUT: ++ RETVAL ++ ++ ++SV* ++_get_enc_private_key_string(p_rsa, passout_SV, cipher_SV) ++ rsaData* p_rsa; ++ SV* passout_SV; ++ SV* cipher_SV; ++ PREINIT: ++ char* passout; ++ char* cipher; ++ ++ BIO* stringBIO; ++ const EVP_CIPHER *enc; ++ CODE: ++ passout = SvPV_nolen(passout_SV); ++ cipher = SvPV_nolen(cipher_SV); ++ ++ CHECK_OPEN_SSL(stringBIO = BIO_new(BIO_s_mem())); ++ enc = EVP_get_cipherbyname(cipher); ++ if (enc == NULL) { enc = EVP_get_cipherbyname("DES3"); } ++ PEM_write_bio_RSAPrivateKey( ++ stringBIO, p_rsa->rsa, enc, NULL, 0, NULL, passout); + RETVAL = extractBioString(stringBIO); + + OUTPUT: Added: head/security/p5-Crypt-OpenSSL-RSA/files/patch-t_rsa.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Crypt-OpenSSL-RSA/files/patch-t_rsa.t Mon Jun 19 18:14:54 2017 (r443905) @@ -0,0 +1,27 @@ +--- t/rsa.t.orig 2017-06-19 18:08:26 UTC ++++ t/rsa.t +@@ -4,7 +4,7 @@ use Test; + use Crypt::OpenSSL::Random; + use Crypt::OpenSSL::RSA; + +-BEGIN { plan tests => 43 + (UNIVERSAL::can("Crypt::OpenSSL::RSA", "use_sha512_hash") ? 4*5 : 0) } ++BEGIN { plan tests => 46 + (UNIVERSAL::can("Crypt::OpenSSL::RSA", "use_sha512_hash") ? 4*5 : 0) } + + sub _Test_Encrypt_And_Decrypt + { +@@ -83,6 +83,15 @@ my $private_key_string = $rsa->get_private_key_string( + my $public_key_string = $rsa->get_public_key_string(); + + ok($private_key_string and $public_key_string); ++ ++my $enc_private_key_string_default = $rsa->get_private_key_string('12345'); ++ok($enc_private_key_string_default); ++ ++my $enc_private_key_string_des3 = $rsa->get_private_key_string('12345', 'des3-cbc'); ++ok($enc_private_key_string_des3); ++ ++my $enc_private_key_string_idea = $rsa->get_private_key_string('12345', 'IDEA'); ++ok($enc_private_key_string_idea); + + my $plaintext = "The quick brown fox jumped over the lazy dog"; + my $rsa_priv = Crypt::OpenSSL::RSA->new_private_key($private_key_string); From owner-svn-ports-head@freebsd.org Mon Jun 19 20:47:01 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C908BDA432F; Mon, 19 Jun 2017 20:47:01 +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 A331D83312; Mon, 19 Jun 2017 20:47:01 +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 v5JKl01n034149; Mon, 19 Jun 2017 20:47:00 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JKl0gw034144; Mon, 19 Jun 2017 20:47:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706192047.v5JKl0gw034144@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 19 Jun 2017 20:47:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443906 - in head/emulators: . rpcs3 rpcs3/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, 19 Jun 2017 20:47:01 -0000 Author: jbeich Date: Mon Jun 19 20:47:00 2017 New Revision: 443906 URL: https://svnweb.freebsd.org/changeset/ports/443906 Log: emulators/rpcs3: add new port RPCS3 is an open-source Sony PlayStation 3 emulator and debugger written in C++ for Windows and Linux. The project began development on May 23rd, 2011 and currently sports modern Vulkan, Direct3D 12 and OpenGL graphic APIs. The emulator is capable of booting and playing hundreds of commercial games. With each and every contribution and donation, more and more games are becoming closer and closer to either booting or full playability. https://rpcs3.net/ Added: head/emulators/rpcs3/ head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) head/emulators/rpcs3/files/ head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c (contents, props changed) head/emulators/rpcs3/pkg-descr (contents, props changed) Modified: head/emulators/Makefile (contents, props changed) Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Mon Jun 19 18:14:54 2017 (r443905) +++ head/emulators/Makefile Mon Jun 19 20:47:00 2017 (r443906) @@ -131,6 +131,7 @@ SUBDIR += raine SUBDIR += riscv-fesvr SUBDIR += riscv-isa-sim + SUBDIR += rpcs3 SUBDIR += rtc SUBDIR += rubygem-fission SUBDIR += simh Added: head/emulators/rpcs3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/rpcs3/Makefile Mon Jun 19 20:47:00 2017 (r443906) @@ -0,0 +1,54 @@ +# $FreeBSD$ + +PORTNAME= rpcs3 +DISTVERSIONPREFIX= v +DISTVERSION= 0.0.2-312 +DISTVERSIONSUFFIX= -gcddf0bf7 # tracking #2813 +CATEGORIES= emulators + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= PS3 emulator/debugger + +LICENSE= BSD3CLAUSE BSL GPLv2 MIT ZLIB +LICENSE_COMB= multi +LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/3rdparty/cereal/LICENSE +LICENSE_FILE_BSL= ${WRKSRC}/Utilities/LICENSE_1_0.txt +LICENSE_FILE_MIT= ${WRKSRC}/3rdparty/GSL/LICENSE +LICENSE_FILE_ZLIB= ${WRKSRC}/asmjit/LICENSE.md + +LIB_DEPENDS= libLLVM-4.0.so:devel/llvm40 \ + libpng.so:graphics/png \ + libavcodec.so:multimedia/ffmpeg + +ONLY_FOR_ARCHS= amd64 + +USE_GITHUB= yes +GH_ACCOUNT= RPCS3 +GH_TUPLE= RPCS3:hidapi:hidapi-0.8.0-rc1-23-gc095a22:hidapi/3rdparty/hidapi \ + RPCS3:pugixml:f205aaf:pugixml/3rdparty/pugixml \ + RPCS3:yaml-cpp:release-0.5.3-62-g017626a:yamlcpp/Utilities/yaml-cpp \ + kobalicek:asmjit:1370fe6:asmjit/asmjit \ + Microsoft:GSL:fc5fce4:GSL/3rdparty/GSL \ + USCiLab:cereal:v1.2.0:cereal/3rdparty/cereal + +USES= cmake compiler:c++14-lang iconv:wchar_t localbase:ldflags \ + openal:soft pkgconfig +USE_GL= gl glew +USE_QT5= qmake_build buildtools_build core gui widgets +CMAKE_ARGS+= -DUSE_SYSTEM_LIBPNG=on -DUSE_SYSTEM_FFMPEG=on +CXXFLAGS+= -D_GLIBCXX_USE_C99 # XXX ports/193528 +CXXFLAGS+= -Wno-macro-redefined # __STDC_*_MACROS sys/cdefs.h vs. llvm-config +LDFLAGS+= -Wl,--as-needed # GLU +PLIST_FILES= bin/${PORTNAME} \ + share/applications/${PORTNAME}.desktop \ + share/icons/hicolor/48x48/apps/${PORTNAME}.png \ + share/icons/hicolor/scalable/apps/${PORTNAME}.svg \ + +post-patch: + @${REINPLACE_CMD} -e 's/5\.8/5\.7/' ${WRKSRC}/${PORTNAME}/CMakeLists.txt + @${REINPLACE_CMD} \ + -e 's/"unknown"/"${GH_TAGNAME}"/' \ + -e 's/^\(VERSION =\).*/\1 ${GH_TAGNAME}/' \ + ${WRKSRC}/${PORTNAME}/git-version.cmake + +.include Added: head/emulators/rpcs3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/rpcs3/distinfo Mon Jun 19 20:47:00 2017 (r443906) @@ -0,0 +1,15 @@ +TIMESTAMP = 1497896268 +SHA256 (RPCS3-rpcs3-v0.0.2-312-gcddf0bf7_GH0.tar.gz) = 77ac9a9666c178c1c52c470b9c047bb4caa14ba92925fc8e3a5509e8c6275767 +SIZE (RPCS3-rpcs3-v0.0.2-312-gcddf0bf7_GH0.tar.gz) = 11247315 +SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 +SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 +SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 +SIZE (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 76332 +SHA256 (RPCS3-yaml-cpp-release-0.5.3-62-g017626a_GH0.tar.gz) = 1d4b32443f137c23b68d3cb183ba6fb48eb76be2b0b30016970adff5c770d841 +SIZE (RPCS3-yaml-cpp-release-0.5.3-62-g017626a_GH0.tar.gz) = 65888 +SHA256 (kobalicek-asmjit-1370fe6_GH0.tar.gz) = cc064a8e495959ee525803bd83a4f9b2b3bf6e9aacbc7538e8ac3c20fb12e83e +SIZE (kobalicek-asmjit-1370fe6_GH0.tar.gz) = 447958 +SHA256 (Microsoft-GSL-fc5fce4_GH0.tar.gz) = 2df1538ff240bf4dd3ef44ba8c832451376fff8e74f7734d32fc8c337557a64d +SIZE (Microsoft-GSL-fc5fce4_GH0.tar.gz) = 38809 +SHA256 (USCiLab-cereal-v1.2.0_GH0.tar.gz) = 1ccf3ed205a7a2f0d6a060415b123f1ae0d984cd4435db01af8de11a2eda49c1 +SIZE (USCiLab-cereal-v1.2.0_GH0.tar.gz) = 299883 Added: head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c Mon Jun 19 20:47:00 2017 (r443906) @@ -0,0 +1,11 @@ +--- 3rdparty/hidapi/libusb/hid.c.orig 2017-04-29 01:03:27 UTC ++++ 3rdparty/hidapi/libusb/hid.c +@@ -397,7 +397,7 @@ static wchar_t *get_usb_string(libusb_device_handle *d + size_t inbytes; + size_t outbytes; + size_t res; +-#ifdef __FreeBSD__ ++#if defined(__FreeBSD__) && __FreeBSD__ < 10 + const char *inptr; + #else + char *inptr; Added: head/emulators/rpcs3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/rpcs3/pkg-descr Mon Jun 19 20:47:00 2017 (r443906) @@ -0,0 +1,9 @@ +RPCS3 is an open-source Sony PlayStation 3 emulator and debugger +written in C++ for Windows and Linux. The project began development on +May 23rd, 2011 and currently sports modern Vulkan, Direct3D 12 and +OpenGL graphic APIs. The emulator is capable of booting and playing +hundreds of commercial games. With each and every contribution and +donation, more and more games are becoming closer and closer to either +booting or full playability. + +WWW: https://rpcs3.net/ From owner-svn-ports-head@freebsd.org Mon Jun 19 21:02:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02D39DA4B38; Mon, 19 Jun 2017 21:02:21 +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 C517D84246; Mon, 19 Jun 2017 21:02:20 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JL2JYA042436; Mon, 19 Jun 2017 21:02:19 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JL2J2H042433; Mon, 19 Jun 2017 21:02:19 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201706192102.v5JL2J2H042433@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 19 Jun 2017 21:02:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443908 - head/net-im/py-matrix-synapse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 21:02:21 -0000 Author: feld Date: Mon Jun 19 21:02:19 2017 New Revision: 443908 URL: https://svnweb.freebsd.org/changeset/ports/443908 Log: net-im/py-matrix-synapse: Update to 0.21.1 Changelog: https://github.com/matrix-org/synapse/releases/tag/v0.21.1 Modified: head/net-im/py-matrix-synapse/Makefile head/net-im/py-matrix-synapse/distinfo Modified: head/net-im/py-matrix-synapse/Makefile ============================================================================== --- head/net-im/py-matrix-synapse/Makefile Mon Jun 19 20:51:57 2017 (r443907) +++ head/net-im/py-matrix-synapse/Makefile Mon Jun 19 21:02:19 2017 (r443908) @@ -3,7 +3,7 @@ PORTNAME= matrix-synapse DISTVERSIONPREFIX= v -DISTVERSION= 0.21.0 +DISTVERSION= 0.21.1 PORTREVISION= 0 CATEGORIES= net-im python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net-im/py-matrix-synapse/distinfo ============================================================================== --- head/net-im/py-matrix-synapse/distinfo Mon Jun 19 20:51:57 2017 (r443907) +++ head/net-im/py-matrix-synapse/distinfo Mon Jun 19 21:02:19 2017 (r443908) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495223493 -SHA256 (matrix-org-synapse-v0.21.0_GH0.tar.gz) = aa9b77f115460da9124ac45802462572698147f6ea107192a32f254498eb55b6 -SIZE (matrix-org-synapse-v0.21.0_GH0.tar.gz) = 812809 +TIMESTAMP = 1497881596 +SHA256 (matrix-org-synapse-v0.21.1_GH0.tar.gz) = 74b79d6f7ca3185ec2cf136b213bf4160e3ad68531fdbb07a3f997781046dd55 +SIZE (matrix-org-synapse-v0.21.1_GH0.tar.gz) = 811697 From owner-svn-ports-head@freebsd.org Mon Jun 19 21:06:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 226F0DA4C73; Mon, 19 Jun 2017 21:06:56 +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 E478F844AB; Mon, 19 Jun 2017 21:06:55 +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 v5JL6thj042713; Mon, 19 Jun 2017 21:06:55 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JL6tia042712; Mon, 19 Jun 2017 21:06:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706192106.v5JL6tia042712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 19 Jun 2017 21:06:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443909 - head/emulators/rpcs3/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, 19 Jun 2017 21:06:56 -0000 Author: jbeich Date: Mon Jun 19 21:06:54 2017 New Revision: 443909 URL: https://svnweb.freebsd.org/changeset/ports/443909 Log: emulators/rpcs3: restore patch comment Modified: head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c (contents, props changed) Modified: head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c ============================================================================== --- head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c Mon Jun 19 21:02:19 2017 (r443908) +++ head/emulators/rpcs3/files/patch-3rdparty_hidapi_libusb_hid.c Mon Jun 19 21:06:54 2017 (r443909) @@ -1,3 +1,11 @@ +3rdparty/hidapi/libusb/hid.c:458:18: warning: passing 'const char **' to parameter of type 'char **' discards qualifiers in nested pointer types [-Wincompatible-pointer-types-discards-qualifiers] + res = iconv(ic, &inptr, &inbytes, &outptr, &outbytes); + ^~~~~~ +/usr/local/include/iconv.h:85:43: note: passing argument to parameter 'inbuf' here +extern size_t iconv (iconv_t cd, char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft); + ^ +1 warning generated. + --- 3rdparty/hidapi/libusb/hid.c.orig 2017-04-29 01:03:27 UTC +++ 3rdparty/hidapi/libusb/hid.c @@ -397,7 +397,7 @@ static wchar_t *get_usb_string(libusb_device_handle *d From owner-svn-ports-head@freebsd.org Mon Jun 19 21:16:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDEB6DA4EFF; Mon, 19 Jun 2017 21:16:12 +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 A8F7A84B29; Mon, 19 Jun 2017 21:16:12 +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 v5JLGBrI047045; Mon, 19 Jun 2017 21:16:11 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JLGBZ8047043; Mon, 19 Jun 2017 21:16:11 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201706192116.v5JLGBZ8047043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 19 Jun 2017 21:16:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443911 - in head/mail/dovecot2: . 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, 19 Jun 2017 21:16:13 -0000 Author: adamw Date: Mon Jun 19 21:16:11 2017 New Revision: 443911 URL: https://svnweb.freebsd.org/changeset/ports/443911 Log: Add an upstream patch to fix a potential crash or a scenario where mail is mis-marked as corrupted. Submitted by: arved Obtained from: https://github.com/dovecot/core/commit/8a5fe0c06f48b202a5f1d3dd49f7ed7ed92d64ae MFH: 2017Q2 Added: head/mail/dovecot2/files/patch-upstream-corrupted_cache_record (contents, props changed) Modified: head/mail/dovecot2/Makefile Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Mon Jun 19 21:07:11 2017 (r443910) +++ head/mail/dovecot2/Makefile Mon Jun 19 21:16:11 2017 (r443911) @@ -14,6 +14,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.30.2 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= https://www.dovecot.org/releases/${PORTVERSION:R:R}/ PKGNAMESUFFIX= 2 Added: head/mail/dovecot2/files/patch-upstream-corrupted_cache_record ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/dovecot2/files/patch-upstream-corrupted_cache_record Mon Jun 19 21:16:11 2017 (r443911) @@ -0,0 +1,26 @@ +From 8a5fe0c06f48b202a5f1d3dd49f7ed7ed92d64ae Mon Sep 17 00:00:00 2001 +From: Timo Sirainen +Date: Fri, 9 Jun 2017 14:31:15 +0300 +Subject: [PATCH] lib-storage: Fix setting the correct cache record corrupted + +It was mixing UIDs and sequences, so a wrong mail could have been set +corrupted or it could have crashed with: + +Panic: file mail-index-transaction-update.c: line 1018 (mail_index_update_ext): assertion failed: (seq > 0 && (seq <= mail_index_view_get_messages_count(t->view) || seq <= t->last_new_seq)) +--- + src/lib-storage/mail-storage.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/lib-storage/mail-storage.c b/src/lib-storage/mail-storage.c +index 067a65bc1..2405161e0 100644 +--- src/lib-storage/mail-storage.c ++++ src/lib-storage/mail-storage.c +@@ -2754,7 +2754,7 @@ void mail_set_mail_cache_corrupted(struct mail *mail, const char *fmt, ...) + va_start(va, fmt); + + T_BEGIN { +- mail_cache_set_seq_corrupted_reason(cache_view, mail->uid, ++ mail_cache_set_seq_corrupted_reason(cache_view, mail->seq, + t_strdup_printf("UID %u: %s", + mail->uid, + t_strdup_vprintf(fmt, va))); From owner-svn-ports-head@freebsd.org Mon Jun 19 21:53:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00009DA59CC; Mon, 19 Jun 2017 21:53:50 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D09791285; Mon, 19 Jun 2017 21:53:50 +0000 (UTC) (envelope-from lx@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JLroDT063024; Mon, 19 Jun 2017 21:53:50 GMT (envelope-from lx@FreeBSD.org) Received: (from lx@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JLrnEo063021; Mon, 19 Jun 2017 21:53:49 GMT (envelope-from lx@FreeBSD.org) Message-Id: <201706192153.v5JLrnEo063021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lx set sender to lx@FreeBSD.org using -f From: David Thiel Date: Mon, 19 Jun 2017 21:53:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443912 - head/sysutils/osquery X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 21:53:51 -0000 Author: lx Date: Mon Jun 19 21:53:49 2017 New Revision: 443912 URL: https://svnweb.freebsd.org/changeset/ports/443912 Log: Update to 2.5.1, which fixes remote TLS logging. Approved by: zi@ Modified: head/sysutils/osquery/Makefile head/sysutils/osquery/distinfo head/sysutils/osquery/pkg-plist Modified: head/sysutils/osquery/Makefile ============================================================================== --- head/sysutils/osquery/Makefile Mon Jun 19 21:16:11 2017 (r443911) +++ head/sysutils/osquery/Makefile Mon Jun 19 21:53:49 2017 (r443912) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= osquery -PORTVERSION= 2.4.6 +PORTVERSION= 2.5.1 CATEGORIES= sysutils MAINTAINER= zi@FreeBSD.org @@ -25,7 +25,8 @@ LIB_DEPENDS= libaugeas.so:textproc/augeas \ libsnappy.so:archivers/snappy \ librocksdb-lite.so:databases/rocksdb-lite \ libthrift.so:devel/thrift-cpp \ - libcppnetlib-uri.so:devel/cpp-netlib + libcppnetlib-uri.so:devel/cpp-netlib \ + libzstd.so:archivers/zstd RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss USES= cmake:outsource gmake libtool python:build compiler:c++11-lib \ @@ -40,7 +41,7 @@ USE_GITHUB= yes GH_ACCOUNT= facebook ${PORTNAME}:tp GH_PROJECT= third-party:tp GH_SUBDIR= third-party:tp -GH_TAGNAME= 2.4.5:tp +GH_TAGNAME= ${PORTVERSION}:tp # Some options for things that bring in many dependencies OPTIONS_DEFINE= TSK AWS YARA LLDPD @@ -84,7 +85,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/tools/deployment/osquery.example.conf \ ${STAGEDIR}${PREFIX}/etc/osquery.conf.sample - ${TOUCH} ${STAGEDIR}${PREFIX}/etc/osquery.flags ${MKDIR} ${STAGEDIR}/var/db/osquery ${STAGEDIR}/var/log/osquery + # The flags file must exist, even if empty. Using @sample + # prevents a populated flags file from being nuked on upgrade. + ${TOUCH} ${STAGEDIR}${PREFIX}/etc/osquery.flags.sample \ + ${STAGEDIR}${PREFIX}/etc/osquery.flags .include Modified: head/sysutils/osquery/distinfo ============================================================================== --- head/sysutils/osquery/distinfo Mon Jun 19 21:16:11 2017 (r443911) +++ head/sysutils/osquery/distinfo Mon Jun 19 21:53:49 2017 (r443912) @@ -1,5 +1,5 @@ -TIMESTAMP = 1496944739 -SHA256 (facebook-osquery-2.4.6_GH0.tar.gz) = 85bb3cdee8e8fc37c8137d433fa0387c8df2e898e37c4c368a7d6eedfca67439 -SIZE (facebook-osquery-2.4.6_GH0.tar.gz) = 914437 -SHA256 (osquery-third-party-2.4.5_GH0.tar.gz) = 1c1021ce27a9997563a4b784b21cc03b07a6c40b65611620977d13de165efac3 -SIZE (osquery-third-party-2.4.5_GH0.tar.gz) = 3229301 +TIMESTAMP = 1497907614 +SHA256 (facebook-osquery-2.5.1_GH0.tar.gz) = 7a04670d09b59f9a278fb551fbf9bcd7ebaa5469f0e2cb069411e7733117cb04 +SIZE (facebook-osquery-2.5.1_GH0.tar.gz) = 923981 +SHA256 (osquery-third-party-2.5.1_GH0.tar.gz) = baf258578b71272b7a5a83198ae9035ae2e84c0b2ae96c2b1eb3036ab7a9fc56 +SIZE (osquery-third-party-2.5.1_GH0.tar.gz) = 3229310 Modified: head/sysutils/osquery/pkg-plist ============================================================================== --- head/sysutils/osquery/pkg-plist Mon Jun 19 21:16:11 2017 (r443911) +++ head/sysutils/osquery/pkg-plist Mon Jun 19 21:53:49 2017 (r443912) @@ -1,7 +1,6 @@ bin/osqueryi @dir /var/db/osquery @dir /var/log/osquery -etc/osquery.flags include/osquery/config.h include/osquery/core.h include/osquery/database.h @@ -23,3 +22,4 @@ include/osquery/tables.h lib/libosquery.a sbin/osqueryd @sample etc/osquery.conf.sample +@sample etc/osquery.flags.sample From owner-svn-ports-head@freebsd.org Mon Jun 19 22:31:48 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF086DA6198; Mon, 19 Jun 2017 22:31:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6315524C3; Mon, 19 Jun 2017 22:31:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JMVlMb077734; Mon, 19 Jun 2017 22:31:47 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JMVl2K077732; Mon, 19 Jun 2017 22:31:47 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706192231.v5JMVl2K077732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 19 Jun 2017 22:31:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443913 - head/dns/py-dns-lexicon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 22:31:48 -0000 Author: dbaio Date: Mon Jun 19 22:31:47 2017 New Revision: 443913 URL: https://svnweb.freebsd.org/changeset/ports/443913 Log: dns/py-dns-lexicon: Update to 2.1.7 Changes: https://github.com/AnalogJ/lexicon/releases/tag/v2.1.7 PR: 220007 Submitted by: Goran Mekić (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11220 Modified: head/dns/py-dns-lexicon/Makefile head/dns/py-dns-lexicon/distinfo Modified: head/dns/py-dns-lexicon/Makefile ============================================================================== --- head/dns/py-dns-lexicon/Makefile Mon Jun 19 21:53:49 2017 (r443912) +++ head/dns/py-dns-lexicon/Makefile Mon Jun 19 22:31:47 2017 (r443913) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dns-lexicon -PORTVERSION= 2.1.5 +PORTVERSION= 2.1.7 CATEGORIES= dns python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/dns/py-dns-lexicon/distinfo ============================================================================== --- head/dns/py-dns-lexicon/distinfo Mon Jun 19 21:53:49 2017 (r443912) +++ head/dns/py-dns-lexicon/distinfo Mon Jun 19 22:31:47 2017 (r443913) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496054699 -SHA256 (dns-lexicon-2.1.5.tar.gz) = e1c12b6ae8f6e559058294b8cea61d49dc4aa458b4a20ae8162b2dd62d637f28 -SIZE (dns-lexicon-2.1.5.tar.gz) = 29119 +TIMESTAMP = 1497545100 +SHA256 (dns-lexicon-2.1.7.tar.gz) = 12c72743dd2b3ca23e3fb8ea57e0d20b03e4f4560b7ab1734977a2bd226f3b49 +SIZE (dns-lexicon-2.1.7.tar.gz) = 32365 From owner-svn-ports-head@freebsd.org Mon Jun 19 22:45:59 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8199DA64BB; Mon, 19 Jun 2017 22:45:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A42D12B14; Mon, 19 Jun 2017 22:45:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JMjw9Y083882; Mon, 19 Jun 2017 22:45:58 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JMjwPh083876; Mon, 19 Jun 2017 22:45:58 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706192245.v5JMjwPh083876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 19 Jun 2017 22:45:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443914 - in head/sysutils/apcupsd: . 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, 19 Jun 2017 22:45:59 -0000 Author: dbaio Date: Mon Jun 19 22:45:58 2017 New Revision: 443914 URL: https://svnweb.freebsd.org/changeset/ports/443914 Log: sysutils/apcupsd: Several improvements Add support for running multiple instances of apcupsd[1] Add an option to use `shutdown -p` rather than `shutdown -h`[2] Set as @sample several scripts that can be customized[3] Add an option for build with MODBUS USB driver support (Enabled by default)[4] Set LICENSE_FILE [5] Sort OPTIONS and make a small adjustment in pkg-message Take maintainer'ship PR: 180336 [1] PR: 187924 [2][3] PR: 215809 [4] PR: 220002 [5] Submitted by: leres@ee.lbl.gov [1] Submitted by: tdb [3] Submitted by: ipluta@wp.pl [4] Submitted by: takefu@airport.fm [5] Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11224 Modified: head/sysutils/apcupsd/Makefile head/sysutils/apcupsd/files/apcupsd.in head/sysutils/apcupsd/files/patch-platforms_etc_Makefile head/sysutils/apcupsd/files/pkg-message.in head/sysutils/apcupsd/pkg-plist Modified: head/sysutils/apcupsd/Makefile ============================================================================== --- head/sysutils/apcupsd/Makefile Mon Jun 19 22:31:47 2017 (r443913) +++ head/sysutils/apcupsd/Makefile Mon Jun 19 22:45:58 2017 (r443914) @@ -3,14 +3,15 @@ PORTNAME= apcupsd PORTVERSION= 3.14.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20-%20Stable/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dbaio@FreeBSD.org COMMENT= Set of programs for controlling APC UPS LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake GNU_CONFIGURE= yes @@ -26,54 +27,55 @@ CONFIGURE_ENV+= LD="${CXX}" \ USE_RC_SUBR= apcupsd SUB_FILES= pkg-message -OPTIONS_DEFINE= APCSMART_DRV APCDUMB_DRV CLIENT_ONLY CGI PCNET_DRV USB_DRV \ - SNMP_DRV SNMP_DRV_OLD TCP_WRAPPERS TEST_DRV GAPCMON \ - DOCS MODBUS -OPTIONS_DEFAULT= APCSMART_DRV APCDUMB_DRV PCNET_DRV SNMP_DRV USB_DRV \ - TCP_WRAPPERS MODBUS +OPTIONS_DEFINE= APCDUMB_DRV APCSMART_DRV CGI CLIENT_ONLY DOCS GAPCMON MODBUS \ + MODBUS_USB PCNET_DRV SHUTDOWN_POWEROFF SNMP_DRV SNMP_DRV_OLD \ + TCP_WRAPPERS TEST_DRV USB_DRV +OPTIONS_DEFAULT= APCDUMB_DRV APCSMART_DRV MODBUS MODBUS_USB PCNET_DRV \ + SNMP_DRV TCP_WRAPPERS USB_DRV OPTIONS_SUB= yes -APCSMART_DRV_DESC= APC SmartUPS serial driver support APCDUMB_DRV_DESC= Dumb UPS driver support -CLIENT_ONLY_DESC= Only NIS client (no network server or drivers) +APCSMART_DRV_DESC= APC SmartUPS serial driver support CGI_DESC= Build CGI programs to show status +CLIENT_ONLY_DESC= Only NIS client (no network server or drivers) +GAPCMON_DESC= Build GTK GUI front-end +MODBUS_DESC= MODBUS driver support +MODBUS_USB_DESC= MODBUS USB driver support PCNET_DRV_DESC= PowerChute Network Shutdown driver support -USB_DRV_DESC= USB driver support +SHUTDOWN_POWEROFF_DESC= Shutdown behavior with Halt and Power off SNMP_DRV_DESC= SNMP driver support SNMP_DRV_OLD_DESC= Old SNMP driver support TCP_WRAPPERS_DESC= ${LIBWRAP_DESC} TEST_DRV_DESC= Test driver support -GAPCMON_DESC= Build GTK GUI front-end -MODBUS_DESC= MODBUS driver support +USB_DRV_DESC= USB driver support -#PORTDOCS= ${PORTNAME}.pdf - -APCSMART_DRV_CONFIGURE_ENABLE= apcsmart APCDUMB_DRV_CONFIGURE_ENABLE= dumb -CLIENT_ONLY_CONFIGURE_ON= --enable-net \ - --disable-apcsmart --disable-dumb --disable-usb \ - --disable-snmp --disable-test --disable-pcnet +APCSMART_DRV_CONFIGURE_ENABLE= apcsmart CGI_CONFIGURE_ENABLE= cgi CGI_CONFIGURE_ON= --with-cgi-bin=${ETCDIR}/cgi CGI_LIB_DEPENDS= libgd.so:graphics/gd +CLIENT_ONLY_CONFIGURE_ON= --enable-net \ + --disable-apcsmart --disable-dumb --disable-usb \ + --disable-snmp --disable-test --disable-pcnet GAPCMON_CONFIGURE_ENABLE= gapcmon GAPCMON_USES= pkgconfig GAPCMON_USE= GNOME=gconf2 GAPCMON_CONFLICTS= gapcmon-[0-9]* +MODBUS_CONFIGURE_ENABLE= modbus +MODBUS_USB_CONFIGURE_ENABLE= modbus-usb PCNET_DRV_CONFIGURE_ENABLE= pcnet -USB_DRV_CONFIGURE_ENABLE= usb SNMP_DRV_CONFIGURE_ENABLE= snmp -MODBUS_CONFIGURE_ENABLE= modbus SNMP_DRV_OLD_CONFIGURE_ENABLE= net-snmp SNMP_DRV_OLD_LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp TCP_WRAPPERS_CONFIGURE_WITH= libwrap=yes TEST_DRV_CONFIGURE_ENABLE= test +USB_DRV_CONFIGURE_ENABLE= usb -#CONFIGURE_ARGS+= --with-libwrap=yes -#CONFIGURE_ENV+= LIBS="-lcurses -lmenu" -#PLIST_SUB+= POWERFL="" - .include + +post-patch-SHUTDOWN_POWEROFF-on: + ${REINPLACE_CMD} -e 's|-h now|-p now|' \ + ${WRKSRC}/platforms/freebsd/apccontrol.in pre-configure: .if ${PORT_OPTIONS:MCLIENT_ONLY} && ( ${PORT_OPTIONS:MAPCSMART_DRV} || \ Modified: head/sysutils/apcupsd/files/apcupsd.in ============================================================================== --- head/sysutils/apcupsd/files/apcupsd.in Mon Jun 19 22:31:47 2017 (r443913) +++ head/sysutils/apcupsd/files/apcupsd.in Mon Jun 19 22:45:58 2017 (r443914) @@ -11,24 +11,73 @@ # # apcupsd_enable (bool): Set to "NO" by default. # Set it to "YES" to enable apcupsd. -# apcupsd_args (str): Custom additional arguments to be passed -# to apcupsd (default empty). +# apcupsd_flags (str): Custom additional arguments to be passed +# to apcupsd (default --kill-on-powerfail). +# apcupsd_configs (str): A list of configs to run multiple instances. # . /etc/rc.subr -name="apcupsd" +name=apcupsd rcvar=apcupsd_enable load_rc_config $name : ${apcupsd_enable="NO"} : ${apcupsd_flags="--kill-on-powerfail"} -: ${apcupsd_pidfile="/var/run/apcupsd.pid"} -: ${apcupsd_lockfile="/var/spool/lock/apcupsd.lock"} -pidfile="/var/run/apcupsd.pid" -required_files="%%ETCDIR%%/apcupsd.conf" -command="%%PREFIX%%/sbin/apcupsd" +pidfile=/var/run/${name}.pid +required_files="${apcupsd_configs:-%%ETCDIR%%/apcupsd.conf}" +command=%%PREFIX%%/sbin/${name} +restart_cmd=${name}_restart_cmd -run_rc_command "$1" +apcupsd_precmd() +{ + config=$1 + + dn="`/usr/bin/dirname ${pidfile}`" + if [ -n "${config}" ]; then + # Specific config + base="`/usr/bin/basename ${config} .conf`" + pidfile="${dn}/${base}.pid" + command_args="-f ${config} -P ${pidfile}" + else + # Default config + command_args="" + fi +} + +apcupsd_restart_cmd() +{ + if [ -n "${apcupsd_configs}" ]; then + # One or more named configs + for config in ${apcupsd_configs}; do + apcupsd_precmd ${config} + run_rc_command stop + done + for config in ${apcupsd_configs}; do + apcupsd_precmd ${config} + run_rc_command start + done + else + # Default config + apcupsd_precmd + run_rc_command stop + run_rc_command start + fi +} + +if [ "$1" = restart ]; then + apcupsd_precmd + run_rc_command $1 +elif [ -n "${apcupsd_configs}" ]; then + # One or more named configs + for config in ${apcupsd_configs}; do + apcupsd_precmd ${config} + run_rc_command $1 + done +else + # Default config + apcupsd_precmd + run_rc_command $1 +fi Modified: head/sysutils/apcupsd/files/patch-platforms_etc_Makefile ============================================================================== --- head/sysutils/apcupsd/files/patch-platforms_etc_Makefile Mon Jun 19 22:31:47 2017 (r443913) +++ head/sysutils/apcupsd/files/patch-platforms_etc_Makefile Mon Jun 19 22:45:58 2017 (r443914) @@ -1,11 +1,21 @@ --- platforms/etc/Makefile.orig 2014-04-09 22:15:34 UTC +++ platforms/etc/Makefile -@@ -8,7 +8,7 @@ all-uninstall: uninstall-etc +@@ -8,12 +8,12 @@ all-uninstall: uninstall-etc install-etc: $(call MKDIR,$(sysconfdir)) - $(call INSTNEW,644,apcupsd.conf,$(sysconfdir)) +- $(call INSTORIG,744,changeme,$(sysconfdir)) +- $(call INSTORIG,744,commfailure,$(sysconfdir)) +- $(call INSTORIG,744,commok,$(sysconfdir)) +- $(call INSTORIG,744,offbattery,$(sysconfdir)) +- $(call INSTORIG,744,onbattery,$(sysconfdir)) + $(call INSTDATA,644,apcupsd.conf,$(sysconfdir)/apcupsd.conf.sample) - $(call INSTORIG,744,changeme,$(sysconfdir)) - $(call INSTORIG,744,commfailure,$(sysconfdir)) - $(call INSTORIG,744,commok,$(sysconfdir)) ++ $(call INSTDATA,744,changeme,$(sysconfdir)/changeme.sample) ++ $(call INSTDATA,744,commfailure,$(sysconfdir)/commfailure.sample) ++ $(call INSTDATA,744,commok,$(sysconfdir)/commok.sample) ++ $(call INSTDATA,744,offbattery,$(sysconfdir)/offbattery.sample) ++ $(call INSTDATA,744,onbattery,$(sysconfdir)/onbattery.sample) + + uninstall-etc: + Modified: head/sysutils/apcupsd/files/pkg-message.in ============================================================================== --- head/sysutils/apcupsd/files/pkg-message.in Mon Jun 19 22:31:47 2017 (r443913) +++ head/sysutils/apcupsd/files/pkg-message.in Mon Jun 19 22:45:58 2017 (r443914) @@ -1,26 +1,23 @@ ********************************************************************** -Read the manual +Read the manual: + http://www.apcupsd.org/manual/manual.html + http://www.apcupsd.org/manual/manual.pdf - %%DOCSDIR%%/apcupsd.pdf - -to do site specific configuration assigenments! Especially have a -detailed look into the chapter describing the shutdown procedure. - -Sample files are installed in %%ETCDIR%%. These files -must be copied and/or configured for a proper working apcupsd. +Sample files and scripts are installed in %%ETCDIR%%. You need to modify %%ETCDIR%%/apcupsd.conf as follows: For serial cable: DEVICE /dev/cuadX (or /dev/cuaaX for [45.]x) For USB cable: DEVICE (yes, leave it blank after DEVICE) -NOTE that for USB cable you must comment out the line +NOTE that for USB cable you need uhid support. - device uhid # "Human Interface Devices" +To compile this driver into the kernel, place the following line in your +kernel configuration file: + device uhid -in your kernel configuration file and recompile the kernel. -Your keyboard and mouse will still work. - -WARNING USB support on FreeBSD is still considered BETA! +Alternatively, to load the driver as a module at boot time, place the +following line in loader.conf(5): + uhid_load="YES" Add apcupsd_enable=YES to your /etc/rc.conf[.local] to have apcupsd starting up at boot time. Modified: head/sysutils/apcupsd/pkg-plist ============================================================================== --- head/sysutils/apcupsd/pkg-plist Mon Jun 19 22:31:47 2017 (r443913) +++ head/sysutils/apcupsd/pkg-plist Mon Jun 19 22:45:58 2017 (r443914) @@ -4,11 +4,11 @@ sbin/apctest sbin/smtp @sample %%ETCDIR%%/apcupsd.conf.sample %%ETCDIR%%/apccontrol -%%ETCDIR%%/changeme -%%ETCDIR%%/commfailure -%%ETCDIR%%/commok -%%ETCDIR%%/onbattery -%%ETCDIR%%/offbattery +@sample %%ETCDIR%%/changeme.sample +@sample %%ETCDIR%%/commfailure.sample +@sample %%ETCDIR%%/commok.sample +@sample %%ETCDIR%%/onbattery.sample +@sample %%ETCDIR%%/offbattery.sample %%CGI%%@sample %%ETCDIR%%/apcupsd.css.sample %%CGI%%@sample %%ETCDIR%%/hosts.conf.sample %%CGI%%@sample %%ETCDIR%%/multimon.conf.sample From owner-svn-ports-head@freebsd.org Mon Jun 19 23:24:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 349D5DA6BDD; Mon, 19 Jun 2017 23:24:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 109CC3A05; Mon, 19 Jun 2017 23:24:56 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JNOufN099916; Mon, 19 Jun 2017 23:24:56 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JNOupL099913; Mon, 19 Jun 2017 23:24:56 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706192324.v5JNOupL099913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 19 Jun 2017 23:24:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443915 - in head/security/masscan: . 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, 19 Jun 2017 23:24:57 -0000 Author: dbaio Date: Mon Jun 19 23:24:55 2017 New Revision: 443915 URL: https://svnweb.freebsd.org/changeset/ports/443915 Log: security/masscan: Update to 1.0.4 Include a patch for build it in 10.3, 11 and CURRENT Changes: https://github.com/robertdavidgraham/masscan/releases/tag/1.0.4 PR: 219886 Submitted by: taguchi.ch@gmail.com (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11260 Added: head/security/masscan/files/ head/security/masscan/files/patch-src_smack1.c (contents, props changed) Modified: head/security/masscan/Makefile head/security/masscan/distinfo Modified: head/security/masscan/Makefile ============================================================================== --- head/security/masscan/Makefile Mon Jun 19 22:45:58 2017 (r443914) +++ head/security/masscan/Makefile Mon Jun 19 23:24:55 2017 (r443915) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= masscan -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= security MAINTAINER= taguchi.ch@gmail.com @@ -21,10 +21,13 @@ MAKE_ARGS= SYS=freebsd CC="${CC}" CFLAGS="${CFLAGS}" PLIST_FILES= bin/masscan man/man8/masscan.8.gz -pre-build: - @${REINPLACE_CMD} -e "s|SYS :=|SYS ?=|"\ - -e "s|describe --tags|describe --tags 2> /dev/null|" ${WRKSRC}/Makefile +.include +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +BUILD_DEPENDS+= clang38:lang/clang38 +CC= clang38 +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/masscan ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/masscan.8 ${STAGEDIR}${MANPREFIX}/man/man8 @@ -32,4 +35,4 @@ do-install: regression-test: build ${WRKSRC}/bin/masscan --selftest -.include +.include Modified: head/security/masscan/distinfo ============================================================================== --- head/security/masscan/distinfo Mon Jun 19 22:45:58 2017 (r443914) +++ head/security/masscan/distinfo Mon Jun 19 23:24:55 2017 (r443915) @@ -1,2 +1,3 @@ -SHA256 (robertdavidgraham-masscan-1.0.3_GH0.tar.gz) = 331edd529df1904bcbcfb43029ced7e2dafe1744841e74cd9fc9f440b8301085 -SIZE (robertdavidgraham-masscan-1.0.3_GH0.tar.gz) = 333393 +TIMESTAMP = 1497024027 +SHA256 (robertdavidgraham-masscan-1.0.4_GH0.tar.gz) = 51de345f677f46595fc3bd747bfb61bc9ff130adcbec48f3401f8057c8702af9 +SIZE (robertdavidgraham-masscan-1.0.4_GH0.tar.gz) = 343513 Added: head/security/masscan/files/patch-src_smack1.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/masscan/files/patch-src_smack1.c Mon Jun 19 23:24:55 2017 (r443915) @@ -0,0 +1,11 @@ +--- src/smack1.c.orig 2017-06-06 03:59:39 UTC ++++ src/smack1.c +@@ -115,6 +115,8 @@ + #include "pixie-timer.h" + #if defined(_MSC_VER) + #include ++#elif defined(__llvm__) ++#include + #elif defined(__GNUC__) + static __inline__ unsigned long long __rdtsc(void) + { From owner-svn-ports-head@freebsd.org Mon Jun 19 23:37:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 284D1DA6DDC; Mon, 19 Jun 2017 23:37:58 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDA963F4E; Mon, 19 Jun 2017 23:37:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5JNbvv9004202; Mon, 19 Jun 2017 23:37:57 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5JNbuJV004200; Mon, 19 Jun 2017 23:37:56 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706192337.v5JNbuJV004200@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 19 Jun 2017 23:37:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443916 - head/mail/py-authres X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 19 Jun 2017 23:37:58 -0000 Author: dbaio Date: Mon Jun 19 23:37:56 2017 New Revision: 443916 URL: https://svnweb.freebsd.org/changeset/ports/443916 Log: mail/py-authres: Update to 0.900 While I'm here: Add LICENSE_FILE Set architecture neutral PR: 220093 Submitted by: Yasuhiro KIMURA (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11261 Modified: head/mail/py-authres/Makefile head/mail/py-authres/distinfo Modified: head/mail/py-authres/Makefile ============================================================================== --- head/mail/py-authres/Makefile Mon Jun 19 23:24:55 2017 (r443915) +++ head/mail/py-authres/Makefile Mon Jun 19 23:37:56 2017 (r443916) @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= authres -PORTVERSION= 0.800 +PORTVERSION= 0.900 CATEGORIES= mail python -MASTER_SITES= http://launchpad.net/authentication-results-python/${PORTVERSION}/0.8/+download/ +MASTER_SITES= http://launchpad.net/authentication-results-python/${PORTVERSION}/${PORTVERSION}/+download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yasu@utahime.org COMMENT= Python module for RFC 5451 Authentication-Results headers LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/COPYING +NO_ARCH= yes USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/mail/py-authres/distinfo ============================================================================== --- head/mail/py-authres/distinfo Mon Jun 19 23:24:55 2017 (r443915) +++ head/mail/py-authres/distinfo Mon Jun 19 23:37:56 2017 (r443916) @@ -1,2 +1,3 @@ -SHA256 (authres-0.800.tar.gz) = d28e3976a7d418917cbbf384018aa0e8a0489e41bfd9847309c5f8efb19f6efd -SIZE (authres-0.800.tar.gz) = 19863 +TIMESTAMP = 1497792798 +SHA256 (authres-0.900.tar.gz) = de91d6cc6e5c6fef545bbf0a810a765fab4ca162906d14f3f2a6b9858602c186 +SIZE (authres-0.900.tar.gz) = 20189 From owner-svn-ports-head@freebsd.org Tue Jun 20 00:10:59 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2ED5DA7567; Tue, 20 Jun 2017 00:10:59 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E89264AEA; Tue, 20 Jun 2017 00:10:59 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5K0AwPq016566; Tue, 20 Jun 2017 00:10:58 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K0Awve016565; Tue, 20 Jun 2017 00:10:58 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201706200010.v5K0Awve016565@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Tue, 20 Jun 2017 00:10:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443917 - head/devel/llvm40 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 00:10:59 -0000 Author: brooks Date: Tue Jun 20 00:10:58 2017 New Revision: 443917 URL: https://svnweb.freebsd.org/changeset/ports/443917 Log: Fix build with CLANG disabled. PR: 220142 Modified: head/devel/llvm40/Makefile Modified: head/devel/llvm40/Makefile ============================================================================== --- head/devel/llvm40/Makefile Mon Jun 19 23:37:56 2017 (r443916) +++ head/devel/llvm40/Makefile Tue Jun 20 00:10:58 2017 (r443917) @@ -33,10 +33,7 @@ USES= cmake:outsource compiler:c++11-lib libedit ninj _USES_PYTHON?= python:build USES+= ${_USES_PYTHON} USE_LDCONFIG= ${LLVM_PREFIX}/lib -SHEBANG_FILES= utils/lit/lit.py utils/llvm-lit/llvm-lit.in \ - tools/clang/tools/scan-view/bin/scan-view \ - tools/clang/tools/clang-format/git-clang-format \ - tools/clang/tools/clang-format/clang-format-diff.py +SHEBANG_FILES= utils/lit/lit.py utils/llvm-lit/llvm-lit.in SUB_FILES= llvm-wrapper.sh SUB_LIST= LLVM_PREFIX="${LLVM_PREFIX}" LLVM_SUFFIX="${LLVM_SUFFIX}" @@ -205,6 +202,9 @@ COMMANDS+= c-index-test \ MAN1SRCS+= clang.1 \ scan-build.1 CLANG_PATTERN= (c-index-test|clang|scan-|Reporter.py|ScanView.py|scanview.css|sorttable.js|startfile.py|-analyzer) +SHEBANG_FILES+= tools/clang/tools/scan-view/bin/scan-view \ + tools/clang/tools/clang-format/git-clang-format \ + tools/clang/tools/clang-format/clang-format-diff.py .endif .if ${PORT_OPTIONS:MCOMPILER_RT} From owner-svn-ports-head@freebsd.org Tue Jun 20 00:59:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E442DDA7D21; Tue, 20 Jun 2017 00:59:27 +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 B23EB65ACD; Tue, 20 Jun 2017 00:59:27 +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 v5K0xQYE036662; Tue, 20 Jun 2017 00:59:26 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K0xQhf036660; Tue, 20 Jun 2017 00:59:26 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200059.v5K0xQhf036660@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 00:59:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443918 - head/math/octave-forge-splines X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 00:59:28 -0000 Author: stephen Date: Tue Jun 20 00:59:26 2017 New Revision: 443918 URL: https://svnweb.freebsd.org/changeset/ports/443918 Log: - Update to 1.3.0. Modified: head/math/octave-forge-splines/Makefile head/math/octave-forge-splines/distinfo Modified: head/math/octave-forge-splines/Makefile ============================================================================== --- head/math/octave-forge-splines/Makefile Tue Jun 20 00:10:58 2017 (r443917) +++ head/math/octave-forge-splines/Makefile Tue Jun 20 00:59:26 2017 (r443918) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-splines -PORTVERSION= 1.2.9 -PORTREVISION= 3 +PORTVERSION= 1.3.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-splines/distinfo ============================================================================== --- head/math/octave-forge-splines/distinfo Tue Jun 20 00:10:58 2017 (r443917) +++ head/math/octave-forge-splines/distinfo Tue Jun 20 00:59:26 2017 (r443918) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/splines-1.2.9.tar.gz) = 38bf16ec867ece9cee31ef9a3a3a00d1bf9b30ebe44a06b640836aa9add3900f -SIZE (octave-forge/splines-1.2.9.tar.gz) = 28941 +TIMESTAMP = 1497920201 +SHA256 (octave-forge/splines-1.3.0.tar.gz) = b2112eeec977c590ea446086ba98cf5aea5ef00bcc7c810dde03e882e067644f +SIZE (octave-forge/splines-1.3.0.tar.gz) = 28041 From owner-svn-ports-head@freebsd.org Tue Jun 20 01:02:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65180DA7E86; Tue, 20 Jun 2017 01:02:11 +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 3518565E28; Tue, 20 Jun 2017 01:02:11 +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 v5K12Apa039803; Tue, 20 Jun 2017 01:02:10 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K12A8n039801; Tue, 20 Jun 2017 01:02:10 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200102.v5K12A8n039801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 01:02:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443919 - in head/math/octave-forge-interval: . 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, 20 Jun 2017 01:02:11 -0000 Author: stephen Date: Tue Jun 20 01:02:10 2017 New Revision: 443919 URL: https://svnweb.freebsd.org/changeset/ports/443919 Log: - Update to 2.1.0. Deleted: head/math/octave-forge-interval/files/ Modified: head/math/octave-forge-interval/Makefile head/math/octave-forge-interval/distinfo Modified: head/math/octave-forge-interval/Makefile ============================================================================== --- head/math/octave-forge-interval/Makefile Tue Jun 20 00:59:26 2017 (r443918) +++ head/math/octave-forge-interval/Makefile Tue Jun 20 01:02:10 2017 (r443919) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-interval -PORTVERSION= 2.0.0 -PORTREVISION= 4 +PORTVERSION= 2.1.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-interval/distinfo ============================================================================== --- head/math/octave-forge-interval/distinfo Tue Jun 20 00:59:26 2017 (r443918) +++ head/math/octave-forge-interval/distinfo Tue Jun 20 01:02:10 2017 (r443919) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479788527 -SHA256 (octave-forge/interval-2.0.0.tar.gz) = 9fb708dcf64cb9a7bb96fde3e336f75248c9eb8fdad481c90b04d9d0dda48368 -SIZE (octave-forge/interval-2.0.0.tar.gz) = 1114142 +TIMESTAMP = 1497920403 +SHA256 (octave-forge/interval-2.1.0.tar.gz) = c2754e4216e768b5f2e76bae34233a9a97cb36b20a7f5f23603b74193947a4b0 +SIZE (octave-forge/interval-2.1.0.tar.gz) = 2853637 From owner-svn-ports-head@freebsd.org Tue Jun 20 01:04:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC43BDA7EFD; Tue, 20 Jun 2017 01:04:21 +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 BA17766068; Tue, 20 Jun 2017 01:04:21 +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 v5K14Knm040648; Tue, 20 Jun 2017 01:04:20 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K14K2H040646; Tue, 20 Jun 2017 01:04:20 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200104.v5K14K2H040646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 01:04:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443920 - head/math/octave-forge-stk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 01:04:22 -0000 Author: stephen Date: Tue Jun 20 01:04:20 2017 New Revision: 443920 URL: https://svnweb.freebsd.org/changeset/ports/443920 Log: - Update to 2.4.0. Modified: head/math/octave-forge-stk/Makefile head/math/octave-forge-stk/distinfo Modified: head/math/octave-forge-stk/Makefile ============================================================================== --- head/math/octave-forge-stk/Makefile Tue Jun 20 01:02:10 2017 (r443919) +++ head/math/octave-forge-stk/Makefile Tue Jun 20 01:04:20 2017 (r443920) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-stk -PORTVERSION= 2.3.4 -PORTREVISION= 2 +PORTVERSION= 2.4.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-stk/distinfo ============================================================================== --- head/math/octave-forge-stk/distinfo Tue Jun 20 01:02:10 2017 (r443919) +++ head/math/octave-forge-stk/distinfo Tue Jun 20 01:04:20 2017 (r443920) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/stk-2.3.4.tar.gz) = c62eee1e4bcdf9865bc371304ea6adaea816657926ae99c8a8ae5c45787c86d6 -SIZE (octave-forge/stk-2.3.4.tar.gz) = 229003 +TIMESTAMP = 1497920572 +SHA256 (octave-forge/stk-2.4.0.tar.gz) = c81cc65668b13ce55c4e581e28815780887fa076b9f5e8bf05da9821f07695de +SIZE (octave-forge/stk-2.4.0.tar.gz) = 310977 From owner-svn-ports-head@freebsd.org Tue Jun 20 01:10:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91328D8608E; Tue, 20 Jun 2017 01:10:00 +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 5E9D9662A1; Tue, 20 Jun 2017 01:10:00 +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 v5K19xQp040935; Tue, 20 Jun 2017 01:09:59 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K19xYR040933; Tue, 20 Jun 2017 01:09:59 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200109.v5K19xYR040933@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 01:09:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443921 - head/math/octave-forge-statistics X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 01:10:00 -0000 Author: stephen Date: Tue Jun 20 01:09:59 2017 New Revision: 443921 URL: https://svnweb.freebsd.org/changeset/ports/443921 Log: - Update to 1.3.0. Modified: head/math/octave-forge-statistics/Makefile head/math/octave-forge-statistics/distinfo Modified: head/math/octave-forge-statistics/Makefile ============================================================================== --- head/math/octave-forge-statistics/Makefile Tue Jun 20 01:04:20 2017 (r443920) +++ head/math/octave-forge-statistics/Makefile Tue Jun 20 01:09:59 2017 (r443921) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-statistics -PORTVERSION= 1.2.4 -PORTREVISION= 4 +PORTVERSION= 1.3.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-statistics/distinfo ============================================================================== --- head/math/octave-forge-statistics/distinfo Tue Jun 20 01:04:20 2017 (r443920) +++ head/math/octave-forge-statistics/distinfo Tue Jun 20 01:09:59 2017 (r443921) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/statistics-1.2.4.tar.gz) = 027d1caf6794c6a6aea06f3ab4a1897ecc57cd3e7297bf2d1b6abbed6057e121 -SIZE (octave-forge/statistics-1.2.4.tar.gz) = 126566 +TIMESTAMP = 1497920791 +SHA256 (octave-forge/statistics-1.3.0.tar.gz) = 06454e3a7ae6d2b7c5f442638c29c28ea8e5976766373fffcf0e297d5d076a33 +SIZE (octave-forge/statistics-1.3.0.tar.gz) = 140963 From owner-svn-ports-head@freebsd.org Tue Jun 20 01:18:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3328D870D2; Tue, 20 Jun 2017 01:18:25 +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 AA38B66CBD; Tue, 20 Jun 2017 01:18:25 +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 v5K1IOaS044852; Tue, 20 Jun 2017 01:18:24 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K1IOhq044850; Tue, 20 Jun 2017 01:18:24 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200118.v5K1IOhq044850@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 01:18:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443922 - head/math/octave-forge-geometry X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 01:18:26 -0000 Author: stephen Date: Tue Jun 20 01:18:24 2017 New Revision: 443922 URL: https://svnweb.freebsd.org/changeset/ports/443922 Log: - Update to 3.0.0. Modified: head/math/octave-forge-geometry/Makefile head/math/octave-forge-geometry/distinfo Modified: head/math/octave-forge-geometry/Makefile ============================================================================== --- head/math/octave-forge-geometry/Makefile Tue Jun 20 01:09:59 2017 (r443921) +++ head/math/octave-forge-geometry/Makefile Tue Jun 20 01:18:24 2017 (r443922) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-geometry -PORTVERSION= 2.1.1 -PORTREVISION= 2 +PORTVERSION= 3.0.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -16,14 +15,11 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${DISTNAME} -WRKSRC= ${WRKDIR}/${OCTSRC} +WRKSRC= ${WRKDIR}/${OCTSRC}/src RUN_DEPENDS+= py*-lxml>=0:devel/py-lxml .include "${.CURDIR}/../../Mk/bsd.octave.mk" - -do-build: - @${DO_NADA} post-build: cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} Modified: head/math/octave-forge-geometry/distinfo ============================================================================== --- head/math/octave-forge-geometry/distinfo Tue Jun 20 01:09:59 2017 (r443921) +++ head/math/octave-forge-geometry/distinfo Tue Jun 20 01:18:24 2017 (r443922) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/geometry-2.1.1.tar.gz) = 6d089df0d58c701d703cf055c5a8ef7b39e64f6bb918a0656e05aef28ec59b51 -SIZE (octave-forge/geometry-2.1.1.tar.gz) = 195772 +TIMESTAMP = 1497921064 +SHA256 (octave-forge/geometry-3.0.0.tar.gz) = 76014bf3477b8c23b173dfe0e57a7e191f2318722123028d70f2ce0ea23ec8a8 +SIZE (octave-forge/geometry-3.0.0.tar.gz) = 314082 From owner-svn-ports-head@freebsd.org Tue Jun 20 01:20:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A51DD87268; Tue, 20 Jun 2017 01:20:04 +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 349E466E5A; Tue, 20 Jun 2017 01:20:04 +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 v5K1K3aP045056; Tue, 20 Jun 2017 01:20:03 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K1K37P045052; Tue, 20 Jun 2017 01:20:03 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706200120.v5K1K37P045052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Tue, 20 Jun 2017 01:20:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443923 - head/science/InsightToolkit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 01:20:04 -0000 Author: woodsb02 Date: Tue Jun 20 01:20:02 2017 New Revision: 443923 URL: https://svnweb.freebsd.org/changeset/ports/443923 Log: science/InsightToolkit: Update to 4.12.0 Changes this release: http://public.kitware.com/pipermail/community/2017-June/013214.html Modified: head/science/InsightToolkit/Makefile head/science/InsightToolkit/distinfo head/science/InsightToolkit/pkg-plist Modified: head/science/InsightToolkit/Makefile ============================================================================== --- head/science/InsightToolkit/Makefile Tue Jun 20 01:18:24 2017 (r443922) +++ head/science/InsightToolkit/Makefile Tue Jun 20 01:20:02 2017 (r443923) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= InsightToolkit -PORTVERSION= 4.11.1 +PORTVERSION= 4.12.0 CATEGORIES= science biology MASTER_SITES= SF/itk/itk/${ITK_VER} Modified: head/science/InsightToolkit/distinfo ============================================================================== --- head/science/InsightToolkit/distinfo Tue Jun 20 01:18:24 2017 (r443922) +++ head/science/InsightToolkit/distinfo Tue Jun 20 01:20:02 2017 (r443923) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496329796 -SHA256 (InsightToolkit-4.11.1.tar.gz) = ac7cf8f1cc98fb65b563dae66548b620a5a2d97f898ec03125cc0c92c714b8a5 -SIZE (InsightToolkit-4.11.1.tar.gz) = 18862243 +TIMESTAMP = 1497919705 +SHA256 (InsightToolkit-4.12.0.tar.gz) = fd9d2a5df6795e52824f1fc158d7532fdadc0031302c29e5d593ada147bf337a +SIZE (InsightToolkit-4.12.0.tar.gz) = 18903159 Modified: head/science/InsightToolkit/pkg-plist ============================================================================== --- head/science/InsightToolkit/pkg-plist Tue Jun 20 01:18:24 2017 (r443922) +++ head/science/InsightToolkit/pkg-plist Tue Jun 20 01:20:02 2017 (r443923) @@ -1939,6 +1939,10 @@ include/ITK-%%ITK_VER%%/itkMomentsThresholdCalculator. include/ITK-%%ITK_VER%%/itkMomentsThresholdImageFilter.h include/ITK-%%ITK_VER%%/itkMorphologicalGradientImageFilter.h include/ITK-%%ITK_VER%%/itkMorphologicalGradientImageFilter.hxx +include/ITK-%%ITK_VER%%/itkMorphologicalWatershedFromMarkersImageFilter.h +include/ITK-%%ITK_VER%%/itkMorphologicalWatershedFromMarkersImageFilter.hxx +include/ITK-%%ITK_VER%%/itkMorphologicalWatershedImageFilter.h +include/ITK-%%ITK_VER%%/itkMorphologicalWatershedImageFilter.hxx include/ITK-%%ITK_VER%%/itkMorphologyHistogram.h include/ITK-%%ITK_VER%%/itkMorphologyImageFilter.h include/ITK-%%ITK_VER%%/itkMorphologyImageFilter.hxx @@ -2382,6 +2386,10 @@ include/ITK-%%ITK_VER%%/itkRegionGrowImageFilter.h include/ITK-%%ITK_VER%%/itkRegionGrowImageFilter.hxx include/ITK-%%ITK_VER%%/itkRegionOfInterestImageFilter.h include/ITK-%%ITK_VER%%/itkRegionOfInterestImageFilter.hxx +include/ITK-%%ITK_VER%%/itkRegionalMaximaImageFilter.h +include/ITK-%%ITK_VER%%/itkRegionalMaximaImageFilter.hxx +include/ITK-%%ITK_VER%%/itkRegionalMinimaImageFilter.h +include/ITK-%%ITK_VER%%/itkRegionalMinimaImageFilter.hxx include/ITK-%%ITK_VER%%/itkRegistrationParameterScalesEstimator.h include/ITK-%%ITK_VER%%/itkRegistrationParameterScalesEstimator.hxx include/ITK-%%ITK_VER%%/itkRegistrationParameterScalesFromIndexShift.h @@ -2895,6 +2903,10 @@ include/ITK-%%ITK_VER%%/itkVTKPolyDataReader.hxx include/ITK-%%ITK_VER%%/itkVTKPolyDataWriter.h include/ITK-%%ITK_VER%%/itkVTKPolyDataWriter.hxx include/ITK-%%ITK_VER%%/itkValarrayImageContainer.h +include/ITK-%%ITK_VER%%/itkValuedRegionalExtremaImageFilter.h +include/ITK-%%ITK_VER%%/itkValuedRegionalExtremaImageFilter.hxx +include/ITK-%%ITK_VER%%/itkValuedRegionalMaximaImageFilter.h +include/ITK-%%ITK_VER%%/itkValuedRegionalMinimaImageFilter.h include/ITK-%%ITK_VER%%/itkVanHerkGilWermanDilateImageFilter.h include/ITK-%%ITK_VER%%/itkVanHerkGilWermanErodeDilateImageFilter.h include/ITK-%%ITK_VER%%/itkVanHerkGilWermanErodeDilateImageFilter.hxx From owner-svn-ports-head@freebsd.org Tue Jun 20 01:49:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5935CD8883B; Tue, 20 Jun 2017 01:49:55 +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 27A5068130; Tue, 20 Jun 2017 01:49:55 +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 v5K1nsrW057299; Tue, 20 Jun 2017 01:49:54 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K1nssl057297; Tue, 20 Jun 2017 01:49:54 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200149.v5K1nssl057297@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 01:49:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443924 - in head/science/getdp: . 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, 20 Jun 2017 01:49:55 -0000 Author: stephen Date: Tue Jun 20 01:49:53 2017 New Revision: 443924 URL: https://svnweb.freebsd.org/changeset/ports/443924 Log: - Update to 2.11.0. Deleted: head/science/getdp/files/patch-Common_Message.cpp Modified: head/science/getdp/Makefile head/science/getdp/distinfo Modified: head/science/getdp/Makefile ============================================================================== --- head/science/getdp/Makefile Tue Jun 20 01:20:02 2017 (r443923) +++ head/science/getdp/Makefile Tue Jun 20 01:49:53 2017 (r443924) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= getdp -PORTVERSION= 2.8.0 -PORTREVISION= 3 +PORTVERSION= 2.11.0 CATEGORIES= science MASTER_SITES= http://www.geuz.org/getdp/src/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source Modified: head/science/getdp/distinfo ============================================================================== --- head/science/getdp/distinfo Tue Jun 20 01:20:02 2017 (r443923) +++ head/science/getdp/distinfo Tue Jun 20 01:49:53 2017 (r443924) @@ -1,2 +1,3 @@ -SHA256 (getdp-2.8.0-source.tgz) = 7941809d01b3b045f70382b719dc1bcfeea9d794ac075771a1e82be0960748dd -SIZE (getdp-2.8.0-source.tgz) = 1539456 +TIMESTAMP = 1497921803 +SHA256 (getdp-2.11.0-source.tgz) = fc3b51e50357466849dbd07656107c8ac9d01c294b04c4801d2c227c1b1273eb +SIZE (getdp-2.11.0-source.tgz) = 1597360 From owner-svn-ports-head@freebsd.org Tue Jun 20 02:44:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68246D8AC6D; Tue, 20 Jun 2017 02:44:47 +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 386B16E37D; Tue, 20 Jun 2017 02:44:47 +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 v5K2ikVM081695; Tue, 20 Jun 2017 02:44:46 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K2ikG2081694; Tue, 20 Jun 2017 02:44:46 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201706200244.v5K2ikG2081694@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 20 Jun 2017 02:44:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443925 - head/sysutils/py3-iocage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 02:44:47 -0000 Author: araujo Date: Tue Jun 20 02:44:45 2017 New Revision: 443925 URL: https://svnweb.freebsd.org/changeset/ports/443925 Log: - As of r439592 (2017-04-27), python 3.6 is the default python3 on FreeBSD so we can remove NO_PACKAGE. PR: ports/220098 Submitted by: Randy Westlund Modified: head/sysutils/py3-iocage/Makefile Modified: head/sysutils/py3-iocage/Makefile ============================================================================== --- head/sysutils/py3-iocage/Makefile Tue Jun 20 01:49:53 2017 (r443924) +++ head/sysutils/py3-iocage/Makefile Tue Jun 20 02:44:45 2017 (r443925) @@ -11,8 +11,6 @@ COMMENT= FreeBSD jail manager written in Python3 LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -NO_PACKAGE= should be compiled using python ${PYTHON_VER} or greater - BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.0.0:devel/py3-pytest-runner RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=6.7:devel/py3-click \ ${PYTHON_PKGNAMEPREFIX}tqdm>=4.10.0:misc/py3-tqdm \ From owner-svn-ports-head@freebsd.org Tue Jun 20 03:09:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABC02D8BD6A; Tue, 20 Jun 2017 03:09:03 +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 7BCFF6F60A; Tue, 20 Jun 2017 03:09:03 +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 v5K392A2090788; Tue, 20 Jun 2017 03:09:02 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3927p090785; Tue, 20 Jun 2017 03:09:02 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200309.v5K3927p090785@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:09:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443926 - head/math/GiNaC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:09:03 -0000 Author: stephen Date: Tue Jun 20 03:09:02 2017 New Revision: 443926 URL: https://svnweb.freebsd.org/changeset/ports/443926 Log: - Update 1.7.2. Modified: head/math/GiNaC/Makefile head/math/GiNaC/distinfo head/math/GiNaC/pkg-plist Modified: head/math/GiNaC/Makefile ============================================================================== --- head/math/GiNaC/Makefile Tue Jun 20 02:44:45 2017 (r443925) +++ head/math/GiNaC/Makefile Tue Jun 20 03:09:02 2017 (r443926) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= GiNaC -PORTVERSION= 1.7.0 +PORTVERSION= 1.7.2 CATEGORIES= math MASTER_SITES= ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/ \ http://www.ginac.de/ Modified: head/math/GiNaC/distinfo ============================================================================== --- head/math/GiNaC/distinfo Tue Jun 20 02:44:45 2017 (r443925) +++ head/math/GiNaC/distinfo Tue Jun 20 03:09:02 2017 (r443926) @@ -1,2 +1,3 @@ -SHA256 (ginac-1.7.0.tar.bz2) = ac9aa202b8b9683175a40b7a4d55f28616225291a4e2cbfe71378e0d02c944bd -SIZE (ginac-1.7.0.tar.bz2) = 1028959 +TIMESTAMP = 1497927687 +SHA256 (ginac-1.7.2.tar.bz2) = 24b75b61c5cb272534e35b3f2cfd64f053b28aee7402af4b0e569ec4de21d8b7 +SIZE (ginac-1.7.2.tar.bz2) = 1056339 Modified: head/math/GiNaC/pkg-plist ============================================================================== --- head/math/GiNaC/pkg-plist Tue Jun 20 02:44:45 2017 (r443925) +++ head/math/GiNaC/pkg-plist Tue Jun 20 03:09:02 2017 (r443926) @@ -50,7 +50,7 @@ include/ginac/wildcard.h lib/libginac.a lib/libginac.so lib/libginac.so.6 -lib/libginac.so.6.0.0 +lib/libginac.so.6.0.2 libdata/pkgconfig/ginac.pc libexec/ginac-excompiler man/man1/ginsh.1.gz From owner-svn-ports-head@freebsd.org Tue Jun 20 03:31:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76FF9D8CDF1; Tue, 20 Jun 2017 03:31:14 +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 4738D706B9; Tue, 20 Jun 2017 03:31:14 +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 v5K3VD0m099791; Tue, 20 Jun 2017 03:31:13 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3VDu0099789; Tue, 20 Jun 2017 03:31:13 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200331.v5K3VDu0099789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:31:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443927 - head/science/getdp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:31:14 -0000 Author: stephen Date: Tue Jun 20 03:31:13 2017 New Revision: 443927 URL: https://svnweb.freebsd.org/changeset/ports/443927 Log: - Update to 2.11.1. Modified: head/science/getdp/Makefile head/science/getdp/distinfo Modified: head/science/getdp/Makefile ============================================================================== --- head/science/getdp/Makefile Tue Jun 20 03:09:02 2017 (r443926) +++ head/science/getdp/Makefile Tue Jun 20 03:31:13 2017 (r443927) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= getdp -PORTVERSION= 2.11.0 +PORTVERSION= 2.11.1 CATEGORIES= science MASTER_SITES= http://www.geuz.org/getdp/src/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source Modified: head/science/getdp/distinfo ============================================================================== --- head/science/getdp/distinfo Tue Jun 20 03:09:02 2017 (r443926) +++ head/science/getdp/distinfo Tue Jun 20 03:31:13 2017 (r443927) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497921803 -SHA256 (getdp-2.11.0-source.tgz) = fc3b51e50357466849dbd07656107c8ac9d01c294b04c4801d2c227c1b1273eb -SIZE (getdp-2.11.0-source.tgz) = 1597360 +TIMESTAMP = 1497926316 +SHA256 (getdp-2.11.1-source.tgz) = bb32d1d24e110eab209e57701d0754289f62402d5ee6672be596310b1a359997 +SIZE (getdp-2.11.1-source.tgz) = 1919890 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:31:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30F28D8CE2E; Tue, 20 Jun 2017 03:31:53 +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 F2EF3707F2; Tue, 20 Jun 2017 03:31:52 +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 v5K3VqcY002831; Tue, 20 Jun 2017 03:31:52 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3VqeP002829; Tue, 20 Jun 2017 03:31:52 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200331.v5K3VqeP002829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:31:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443928 - head/math/octave-forge-splines X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:31:53 -0000 Author: stephen Date: Tue Jun 20 03:31:51 2017 New Revision: 443928 URL: https://svnweb.freebsd.org/changeset/ports/443928 Log: - Update to 1.3.2. Modified: head/math/octave-forge-splines/Makefile head/math/octave-forge-splines/distinfo Modified: head/math/octave-forge-splines/Makefile ============================================================================== --- head/math/octave-forge-splines/Makefile Tue Jun 20 03:31:13 2017 (r443927) +++ head/math/octave-forge-splines/Makefile Tue Jun 20 03:31:51 2017 (r443928) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-splines -PORTVERSION= 1.3.0 +PORTVERSION= 1.3.2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. -OCTSRC= ${OCTAVE_PKGNAME} +OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src Modified: head/math/octave-forge-splines/distinfo ============================================================================== --- head/math/octave-forge-splines/distinfo Tue Jun 20 03:31:13 2017 (r443927) +++ head/math/octave-forge-splines/distinfo Tue Jun 20 03:31:51 2017 (r443928) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497920201 -SHA256 (octave-forge/splines-1.3.0.tar.gz) = b2112eeec977c590ea446086ba98cf5aea5ef00bcc7c810dde03e882e067644f -SIZE (octave-forge/splines-1.3.0.tar.gz) = 28041 +TIMESTAMP = 1497927783 +SHA256 (octave-forge/splines-1.3.2.tar.gz) = 61cb4c8420e23e7a9febd014ecfc4314d8977635976571edaae7749f651d2b1f +SIZE (octave-forge/splines-1.3.2.tar.gz) = 30006 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:32:24 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01FCDD8CECC; Tue, 20 Jun 2017 03:32:24 +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 C683870952; Tue, 20 Jun 2017 03:32:23 +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 v5K3WMqO002973; Tue, 20 Jun 2017 03:32:22 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3WMtp002971; Tue, 20 Jun 2017 03:32:22 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200332.v5K3WMtp002971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:32:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443929 - head/math/octave-forge-stk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:32:24 -0000 Author: stephen Date: Tue Jun 20 03:32:22 2017 New Revision: 443929 URL: https://svnweb.freebsd.org/changeset/ports/443929 Log: - Update to 2.4.2. Modified: head/math/octave-forge-stk/Makefile head/math/octave-forge-stk/distinfo Modified: head/math/octave-forge-stk/Makefile ============================================================================== --- head/math/octave-forge-stk/Makefile Tue Jun 20 03:31:51 2017 (r443928) +++ head/math/octave-forge-stk/Makefile Tue Jun 20 03:32:22 2017 (r443929) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-stk -PORTVERSION= 2.4.0 +PORTVERSION= 2.4.2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-stk/distinfo ============================================================================== --- head/math/octave-forge-stk/distinfo Tue Jun 20 03:31:51 2017 (r443928) +++ head/math/octave-forge-stk/distinfo Tue Jun 20 03:32:22 2017 (r443929) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497920572 -SHA256 (octave-forge/stk-2.4.0.tar.gz) = c81cc65668b13ce55c4e581e28815780887fa076b9f5e8bf05da9821f07695de -SIZE (octave-forge/stk-2.4.0.tar.gz) = 310977 +TIMESTAMP = 1497927848 +SHA256 (octave-forge/stk-2.4.2.tar.gz) = cef2e4d40012a9fe8ff690efb0b78527eedbe9514e39432e76968875e0d9e874 +SIZE (octave-forge/stk-2.4.2.tar.gz) = 315557 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:33:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18B85D8CF84; Tue, 20 Jun 2017 03:33:15 +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 DAFD770A91; Tue, 20 Jun 2017 03:33:14 +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 v5K3XEku003142; Tue, 20 Jun 2017 03:33:14 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3XDn4003140; Tue, 20 Jun 2017 03:33:13 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200333.v5K3XDn4003140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443930 - head/math/octave-forge-ncarray X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:33:15 -0000 Author: stephen Date: Tue Jun 20 03:33:13 2017 New Revision: 443930 URL: https://svnweb.freebsd.org/changeset/ports/443930 Log: - Update to 1.0.4. Modified: head/math/octave-forge-ncarray/Makefile head/math/octave-forge-ncarray/distinfo Modified: head/math/octave-forge-ncarray/Makefile ============================================================================== --- head/math/octave-forge-ncarray/Makefile Tue Jun 20 03:32:22 2017 (r443929) +++ head/math/octave-forge-ncarray/Makefile Tue Jun 20 03:33:13 2017 (r443930) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-ncarray -PORTVERSION= 1.0.3 -PORTREVISION= 4 +PORTVERSION= 1.0.4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-ncarray/distinfo ============================================================================== --- head/math/octave-forge-ncarray/distinfo Tue Jun 20 03:32:22 2017 (r443929) +++ head/math/octave-forge-ncarray/distinfo Tue Jun 20 03:33:13 2017 (r443930) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/ncarray-1.0.3.tar.gz) = a71a53386cdadaee8cf620d9d6d96e8404198d10da05150ed93d1b1d609b37fc -SIZE (octave-forge/ncarray-1.0.3.tar.gz) = 22487 +TIMESTAMP = 1497926513 +SHA256 (octave-forge/ncarray-1.0.4.tar.gz) = ed615f4ea88a5f8c577c747c63674a3b91597fd26ec1cfe0d902ef19e38f266d +SIZE (octave-forge/ncarray-1.0.4.tar.gz) = 23852 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:33:48 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF754D8CFCC; Tue, 20 Jun 2017 03:33:48 +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 BD74170B7B; Tue, 20 Jun 2017 03:33:48 +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 v5K3Xl5P003276; Tue, 20 Jun 2017 03:33:47 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3XlMT003274; Tue, 20 Jun 2017 03:33:47 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200333.v5K3XlMT003274@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:33:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443931 - head/math/octave-forge-symbolic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:33:49 -0000 Author: stephen Date: Tue Jun 20 03:33:47 2017 New Revision: 443931 URL: https://svnweb.freebsd.org/changeset/ports/443931 Log: - Update to 2.5.0. Modified: head/math/octave-forge-symbolic/Makefile head/math/octave-forge-symbolic/distinfo Modified: head/math/octave-forge-symbolic/Makefile ============================================================================== --- head/math/octave-forge-symbolic/Makefile Tue Jun 20 03:33:13 2017 (r443930) +++ head/math/octave-forge-symbolic/Makefile Tue Jun 20 03:33:47 2017 (r443931) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-symbolic -PORTVERSION= 2.4.0 -PORTREVISION= 2 +PORTVERSION= 2.5.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-symbolic/distinfo ============================================================================== --- head/math/octave-forge-symbolic/distinfo Tue Jun 20 03:33:13 2017 (r443930) +++ head/math/octave-forge-symbolic/distinfo Tue Jun 20 03:33:47 2017 (r443931) @@ -1,3 +1,3 @@ -TIMESTAMP = 1465222699 -SHA256 (octave-forge/symbolic-2.4.0.tar.gz) = beb51d20679db7abc85e8f065c0acae23615139e9fe2b290418230b585f76ed6 -SIZE (octave-forge/symbolic-2.4.0.tar.gz) = 245802 +TIMESTAMP = 1497926832 +SHA256 (octave-forge/symbolic-2.5.0.tar.gz) = d8b3d10c3e04214b8aebb9de90f6df258e2baedd4b36feb4673c7d1d28c752ba +SIZE (octave-forge/symbolic-2.5.0.tar.gz) = 253841 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:34:16 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99109D8D033; Tue, 20 Jun 2017 03:34:16 +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 69A9370C5F; Tue, 20 Jun 2017 03:34:16 +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 v5K3YF1Z003411; Tue, 20 Jun 2017 03:34:15 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3YFco003409; Tue, 20 Jun 2017 03:34:15 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200334.v5K3YFco003409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:34:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443932 - 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, 20 Jun 2017 03:34:16 -0000 Author: stephen Date: Tue Jun 20 03:34:15 2017 New Revision: 443932 URL: https://svnweb.freebsd.org/changeset/ports/443932 Log: - Update to 1.2.5. 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 Jun 20 03:33:47 2017 (r443931) +++ head/math/octave-forge-queueing/Makefile Tue Jun 20 03:34:15 2017 (r443932) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-queueing -PORTVERSION= 1.2.4 -PORTREVISION= 2 +PORTVERSION= 1.2.5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-queueing/distinfo ============================================================================== --- head/math/octave-forge-queueing/distinfo Tue Jun 20 03:33:47 2017 (r443931) +++ head/math/octave-forge-queueing/distinfo Tue Jun 20 03:34:15 2017 (r443932) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473732020 -SHA256 (octave-forge/queueing-1.2.4.tar.gz) = 19cffaf8bc7f6fa8705195680543e9bcacff92e9480a1e54c8617604d89536ea -SIZE (octave-forge/queueing-1.2.4.tar.gz) = 936997 +TIMESTAMP = 1497926873 +SHA256 (octave-forge/queueing-1.2.5.tar.gz) = 8f6f7efd55dd6b5948184967bb6e1d7c5516ff52992e2e0888d27ab1ccd450b1 +SIZE (octave-forge/queueing-1.2.5.tar.gz) = 949893 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:34:54 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B3BAAD8D0DA; Tue, 20 Jun 2017 03:34:54 +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 814C270D70; Tue, 20 Jun 2017 03:34:54 +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 v5K3Yr9H003548; Tue, 20 Jun 2017 03:34:53 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3YrFd003546; Tue, 20 Jun 2017 03:34:53 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200334.v5K3YrFd003546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:34:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443933 - head/math/octave-forge-video X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:34:54 -0000 Author: stephen Date: Tue Jun 20 03:34:53 2017 New Revision: 443933 URL: https://svnweb.freebsd.org/changeset/ports/443933 Log: - Update to 1.2.4. Modified: head/math/octave-forge-video/Makefile head/math/octave-forge-video/distinfo Modified: head/math/octave-forge-video/Makefile ============================================================================== --- head/math/octave-forge-video/Makefile Tue Jun 20 03:34:15 2017 (r443932) +++ head/math/octave-forge-video/Makefile Tue Jun 20 03:34:53 2017 (r443933) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-video -PORTVERSION= 1.2.3 -PORTREVISION= 4 +PORTVERSION= 1.2.4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-video/distinfo ============================================================================== --- head/math/octave-forge-video/distinfo Tue Jun 20 03:34:15 2017 (r443932) +++ head/math/octave-forge-video/distinfo Tue Jun 20 03:34:53 2017 (r443933) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472397526 -SHA256 (octave-forge/video-1.2.3.tar.gz) = 421630132aaee6109f6cfaec651c0b21d0e9e4b487c344ed43ede18916f9cf16 -SIZE (octave-forge/video-1.2.3.tar.gz) = 49739 +TIMESTAMP = 1497926922 +SHA256 (octave-forge/video-1.2.4.tar.gz) = 69af2f5b7c9d96318d5528b150ec8aa12873e974bd16c714698a8558c5aee339 +SIZE (octave-forge/video-1.2.4.tar.gz) = 53044 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:35:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 167A2D8D19C; Tue, 20 Jun 2017 03:35:38 +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 D70F770EA0; Tue, 20 Jun 2017 03:35:37 +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 v5K3Zafo003703; Tue, 20 Jun 2017 03:35:36 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3Zaxn003701; Tue, 20 Jun 2017 03:35:36 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200335.v5K3Zaxn003701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:35:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443934 - head/math/octave-forge-generate_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:35:38 -0000 Author: stephen Date: Tue Jun 20 03:35:36 2017 New Revision: 443934 URL: https://svnweb.freebsd.org/changeset/ports/443934 Log: - Update to 0.1.13. Modified: head/math/octave-forge-generate_html/Makefile head/math/octave-forge-generate_html/distinfo Modified: head/math/octave-forge-generate_html/Makefile ============================================================================== --- head/math/octave-forge-generate_html/Makefile Tue Jun 20 03:34:53 2017 (r443933) +++ head/math/octave-forge-generate_html/Makefile Tue Jun 20 03:35:36 2017 (r443934) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-generate_html -PORTVERSION= 0.1.12 -PORTREVISION= 2 +PORTVERSION= 0.1.13 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-generate_html/distinfo ============================================================================== --- head/math/octave-forge-generate_html/distinfo Tue Jun 20 03:34:53 2017 (r443933) +++ head/math/octave-forge-generate_html/distinfo Tue Jun 20 03:35:36 2017 (r443934) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468791132 -SHA256 (octave-forge/generate_html-0.1.12.tar.gz) = 56be982050c9429b67e3d1d9bac51de054c2230db2175e0d77d4fe0ffd9bf2bf -SIZE (octave-forge/generate_html-0.1.12.tar.gz) = 32898 +TIMESTAMP = 1497926967 +SHA256 (octave-forge/generate_html-0.1.13.tar.gz) = c912f4df5affeaaa647d9c307f7f1c7be96e130377be6deed961e58feba3de54 +SIZE (octave-forge/generate_html-0.1.13.tar.gz) = 31927 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:36:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02C21D8D22B; Tue, 20 Jun 2017 03:36:08 +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 C703471093; Tue, 20 Jun 2017 03:36:07 +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 v5K3a6No003839; Tue, 20 Jun 2017 03:36:06 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3a6Qv003838; Tue, 20 Jun 2017 03:36:06 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200336.v5K3a6Qv003838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:36:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443935 - head/math/octave-forge-netcdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:36:08 -0000 Author: stephen Date: Tue Jun 20 03:36:06 2017 New Revision: 443935 URL: https://svnweb.freebsd.org/changeset/ports/443935 Log: - Update to 1.0.11. Modified: head/math/octave-forge-netcdf/Makefile head/math/octave-forge-netcdf/distinfo Modified: head/math/octave-forge-netcdf/Makefile ============================================================================== --- head/math/octave-forge-netcdf/Makefile Tue Jun 20 03:35:36 2017 (r443934) +++ head/math/octave-forge-netcdf/Makefile Tue Jun 20 03:36:06 2017 (r443935) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-netcdf -PORTVERSION= 1.0.9 -PORTREVISION= 2 +PORTVERSION= 1.0.11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-netcdf/distinfo ============================================================================== --- head/math/octave-forge-netcdf/distinfo Tue Jun 20 03:35:36 2017 (r443934) +++ head/math/octave-forge-netcdf/distinfo Tue Jun 20 03:36:06 2017 (r443935) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/netcdf-1.0.9.tar.gz) = 3a074d796ab8f256b215d0d1b4853f26501082494cf5b4881afcb2ae2c01d83e -SIZE (octave-forge/netcdf-1.0.9.tar.gz) = 70717 +TIMESTAMP = 1497927016 +SHA256 (octave-forge/netcdf-1.0.11.tar.gz) = e02da3a27b281be15a13e0126d1235cbe1da704398a313ae21db6f4de79fa5c2 +SIZE (octave-forge/netcdf-1.0.11.tar.gz) = 70741 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:39:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7316D8D359; Tue, 20 Jun 2017 03:39:28 +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 82C77711FC; Tue, 20 Jun 2017 03:39:28 +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 v5K3dR5w004054; Tue, 20 Jun 2017 03:39:27 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3dRUp004052; Tue, 20 Jun 2017 03:39:27 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200339.v5K3dRUp004052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:39:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443936 - 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: Tue, 20 Jun 2017 03:39:28 -0000 Author: stephen Date: Tue Jun 20 03:39:27 2017 New Revision: 443936 URL: https://svnweb.freebsd.org/changeset/ports/443936 Log: - Update to 2.4.7. 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 Tue Jun 20 03:36:06 2017 (r443935) +++ head/math/octave-forge-io/Makefile Tue Jun 20 03:39:27 2017 (r443936) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-io -PORTVERSION= 2.4.5 -PORTREVISION= 2 +PORTVERSION= 2.4.7 PORTEPOCH= 1 CATEGORIES= math @@ -15,7 +14,7 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. -OCTSRC= ${OCTAVE_PKGNAME} +OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src Modified: head/math/octave-forge-io/distinfo ============================================================================== --- head/math/octave-forge-io/distinfo Tue Jun 20 03:36:06 2017 (r443935) +++ head/math/octave-forge-io/distinfo Tue Jun 20 03:39:27 2017 (r443936) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479655778 -SHA256 (octave-forge/io-2.4.5.tar.gz) = ff350de1f431588e44c146c64ea56bba16076095161161cea86ca75e1335456e -SIZE (octave-forge/io-2.4.5.tar.gz) = 207982 +TIMESTAMP = 1497927062 +SHA256 (octave-forge/io-2.4.7.tar.gz) = 9a926c5eb0ae6e101b1ab999ce9c09d1b4339e1dc578e5ad3f5d760e9787bf9a +SIZE (octave-forge/io-2.4.7.tar.gz) = 207855 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:40:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C42E6D8D394; Tue, 20 Jun 2017 03:40:00 +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 8D895712D3; Tue, 20 Jun 2017 03:40:00 +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 v5K3dxKd004188; Tue, 20 Jun 2017 03:39:59 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3dxiH004186; Tue, 20 Jun 2017 03:39:59 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200339.v5K3dxiH004186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 03:39:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443937 - head/math/octave-forge-nurbs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:40:00 -0000 Author: stephen Date: Tue Jun 20 03:39:59 2017 New Revision: 443937 URL: https://svnweb.freebsd.org/changeset/ports/443937 Log: - Update to 1.3.13. Modified: head/math/octave-forge-nurbs/Makefile head/math/octave-forge-nurbs/distinfo Modified: head/math/octave-forge-nurbs/Makefile ============================================================================== --- head/math/octave-forge-nurbs/Makefile Tue Jun 20 03:39:27 2017 (r443936) +++ head/math/octave-forge-nurbs/Makefile Tue Jun 20 03:39:59 2017 (r443937) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-nurbs -PORTVERSION= 1.3.10 -PORTREVISION= 4 +PORTVERSION= 1.3.13 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -16,7 +15,7 @@ USES= compiler:openmp # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. -OCTSRC= ${OCTAVE_PKGNAME} +OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src Modified: head/math/octave-forge-nurbs/distinfo ============================================================================== --- head/math/octave-forge-nurbs/distinfo Tue Jun 20 03:39:27 2017 (r443936) +++ head/math/octave-forge-nurbs/distinfo Tue Jun 20 03:39:59 2017 (r443937) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/nurbs-1.3.10.tar.gz) = 964a15e537dbd213fc76d06e0241029ac9d7872c791bf0e9737bd8d9e7739d69 -SIZE (octave-forge/nurbs-1.3.10.tar.gz) = 91243 +TIMESTAMP = 1497927521 +SHA256 (octave-forge/nurbs-1.3.13.tar.gz) = dbbfe7072750330e61040e3a9cf6967733229c3272fb4115bb83dd616aa37e7e +SIZE (octave-forge/nurbs-1.3.13.tar.gz) = 108549 From owner-svn-ports-head@freebsd.org Tue Jun 20 03:56:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 581EED8DB1D; Tue, 20 Jun 2017 03:56:51 +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 2683B71F16; Tue, 20 Jun 2017 03:56:51 +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 v5K3uo1d012484; Tue, 20 Jun 2017 03:56:50 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K3uoXx012483; Tue, 20 Jun 2017 03:56:50 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201706200356.v5K3uoXx012483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 20 Jun 2017 03:56:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443938 - head/sysutils/py3-iocage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 03:56:51 -0000 Author: araujo Date: Tue Jun 20 03:56:49 2017 New Revision: 443938 URL: https://svnweb.freebsd.org/changeset/ports/443938 Log: Remove pre-everything hook forgotten in my latest commit. Modified: head/sysutils/py3-iocage/Makefile Modified: head/sysutils/py3-iocage/Makefile ============================================================================== --- head/sysutils/py3-iocage/Makefile Tue Jun 20 03:39:59 2017 (r443937) +++ head/sysutils/py3-iocage/Makefile Tue Jun 20 03:56:49 2017 (r443938) @@ -30,16 +30,4 @@ USE_PYTHON= autoplist distutils CONFLICTS= py-iocage-[0-9]* iocage-[0-9]* iocage-devel-[0-9]* -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "##################################################" - @${ECHO_MSG} " The new iocage needs python ${PYTHON_VER} or greater." - @${ECHO_MSG} "" - @${ECHO_MSG} " If you want use the new iocage, stop the build now and" - @${ECHO_MSG} " add this line to your /etc/make.conf, and then restart the build." - @${ECHO_MSG} "" - @${ECHO_MSG} " DEFAULT_VERSIONS+=python3=${PYTHON_VER}" - @${ECHO_MSG} "##################################################" - @${ECHO_MSG} "" - .include From owner-svn-ports-head@freebsd.org Tue Jun 20 04:17:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C080D8E56A; Tue, 20 Jun 2017 04:17:33 +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 D818472887; Tue, 20 Jun 2017 04:17: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 v5K4HWQn020832; Tue, 20 Jun 2017 04:17:32 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K4HVwS020829; Tue, 20 Jun 2017 04:17:31 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200417.v5K4HVwS020829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 04:17:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443939 - in head/math/librsb: . 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, 20 Jun 2017 04:17:33 -0000 Author: stephen Date: Tue Jun 20 04:17:31 2017 New Revision: 443939 URL: https://svnweb.freebsd.org/changeset/ports/443939 Log: - Update to 1.2.0r7. Deleted: head/math/librsb/files/ Modified: head/math/librsb/Makefile head/math/librsb/distinfo head/math/librsb/pkg-plist Modified: head/math/librsb/Makefile ============================================================================== --- head/math/librsb/Makefile Tue Jun 20 03:56:49 2017 (r443938) +++ head/math/librsb/Makefile Tue Jun 20 04:17:31 2017 (r443939) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= librsb -PORTVERSION= 1.2.0r4 -PORTREVISION= 3 +PORTVERSION= 1.2.0r7 CATEGORIES= math MASTER_SITES= SF/librsb DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/-rc/} @@ -22,17 +21,11 @@ INSTALL_TARGET= install-strip GNU_CONFIGURE= yes CFLAGS+= -fPIC CONFIGURE_ARGS= --enable-fortran-module-install \ - --enable-matrix-types="double, double complex" \ - --with-memhinfo="${RSB_USER_SET_MEM_HIERARCHY_INFO}" + --enable-matrix-types="double, double complex" SHEBANG_FILES= scripts/*.sh +USE_LDCONFIG= yes MANUAL_PACKAGE_BUILD= Optimizes for the local machine - -pre-configure: - @if [ -z "${RSB_USER_SET_MEM_HIERARCHY_INFO}" ]; then \ - ${CAT} ${FILESDIR}/memhinfo.txt; \ - exit 1; \ - fi post-patch: @${REINPLACE_CMD} -E s/sed/gsed/g ${WRKSRC}/scripts/*.sh Modified: head/math/librsb/distinfo ============================================================================== --- head/math/librsb/distinfo Tue Jun 20 03:56:49 2017 (r443938) +++ head/math/librsb/distinfo Tue Jun 20 04:17:31 2017 (r443939) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470435344 -SHA256 (librsb-1.2.0-rc4.tar.gz) = 21635cc174fcb1a58a6bd73bb74d86a106c85e9535872dccc988e8720488a3d4 -SIZE (librsb-1.2.0-rc4.tar.gz) = 2216622 +TIMESTAMP = 1497930681 +SHA256 (librsb-1.2.0-rc7.tar.gz) = 49ac0ab07ba9ea02028dfe18c0401c6c5831bbb1f05b59256133a5b27c674a8c +SIZE (librsb-1.2.0-rc7.tar.gz) = 2223136 Modified: head/math/librsb/pkg-plist ============================================================================== --- head/math/librsb/pkg-plist Tue Jun 20 03:56:49 2017 (r443938) +++ head/math/librsb/pkg-plist Tue Jun 20 04:17:31 2017 (r443939) @@ -8,6 +8,9 @@ include/rsb.h include/rsb.mod include/rsb_types.h lib/librsb.a +lib/librsb.so +lib/librsb.so.0 +lib/librsb.so.0.0.0 %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/examples/autotune.c @@ -18,6 +21,7 @@ lib/librsb.a %%PORTDOCS%%%%DOCSDIR%%/examples/hello.c %%PORTDOCS%%%%DOCSDIR%%/examples/io-spblas.c %%PORTDOCS%%%%DOCSDIR%%/examples/make.sh +%%PORTDOCS%%%%DOCSDIR%%/examples/make.sh.in %%PORTDOCS%%%%DOCSDIR%%/examples/pd.mtx %%PORTDOCS%%%%DOCSDIR%%/examples/power.c %%PORTDOCS%%%%DOCSDIR%%/examples/transpose.c From owner-svn-ports-head@freebsd.org Tue Jun 20 04:18:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F983D8E67F; Tue, 20 Jun 2017 04:18:12 +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 4FBFD729AD; Tue, 20 Jun 2017 04:18:12 +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 v5K4IBwc020971; Tue, 20 Jun 2017 04:18:11 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K4IBYe020969; Tue, 20 Jun 2017 04:18:11 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706200418.v5K4IBYe020969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 20 Jun 2017 04:18:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443940 - head/math/octave-forge-sparsersb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 04:18:12 -0000 Author: stephen Date: Tue Jun 20 04:18:11 2017 New Revision: 443940 URL: https://svnweb.freebsd.org/changeset/ports/443940 Log: - Update to 1.0.5. Modified: head/math/octave-forge-sparsersb/Makefile head/math/octave-forge-sparsersb/distinfo Modified: head/math/octave-forge-sparsersb/Makefile ============================================================================== --- head/math/octave-forge-sparsersb/Makefile Tue Jun 20 04:17:31 2017 (r443939) +++ head/math/octave-forge-sparsersb/Makefile Tue Jun 20 04:18:11 2017 (r443940) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-sparsersb -PORTVERSION= 1.0.1 -PORTREVISION= 2 +PORTVERSION= 1.0.5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -12,7 +11,7 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME} LICENSE= GPLv3 LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING -BUILD_DEPENDS= ${LOCALBASE}/lib/librsb.a:math/librsb +LIB_DEPENDS= librsb.so:math/librsb # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. Modified: head/math/octave-forge-sparsersb/distinfo ============================================================================== --- head/math/octave-forge-sparsersb/distinfo Tue Jun 20 04:17:31 2017 (r443939) +++ head/math/octave-forge-sparsersb/distinfo Tue Jun 20 04:18:11 2017 (r443940) @@ -1,3 +1,3 @@ -TIMESTAMP = 1470434595 -SHA256 (octave-forge/sparsersb-1.0.1.tar.gz) = 28fee45c4524dc3b8d969c6770253f226d3daec0d41f19606af3d081ba4ff69f -SIZE (octave-forge/sparsersb-1.0.1.tar.gz) = 84455 +TIMESTAMP = 1497931798 +SHA256 (octave-forge/sparsersb-1.0.5.tar.gz) = 888c1f4f6ebf8fb6e09c1bf2ae647dc902bee860d91ecb0c82ef875d16412d17 +SIZE (octave-forge/sparsersb-1.0.5.tar.gz) = 90522 From owner-svn-ports-head@freebsd.org Tue Jun 20 04:41:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00754D8F261; Tue, 20 Jun 2017 04:41:29 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF67D73508; Tue, 20 Jun 2017 04:41:28 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5K4fRen031266; Tue, 20 Jun 2017 04:41:27 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K4fREP031264; Tue, 20 Jun 2017 04:41:27 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201706200441.v5K4fREP031264@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Tue, 20 Jun 2017 04:41:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443941 - in head/net-im: telepathy-logger-qt4 telepathy-qt4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 04:41:29 -0000 Author: fluffy Date: Tue Jun 20 04:41:27 2017 New Revision: 443941 URL: https://svnweb.freebsd.org/changeset/ports/443941 Log: Limit net-im/telepathy*-qt* components to use python2 only as it hardcoded in src With hat: kde Modified: head/net-im/telepathy-logger-qt4/Makefile head/net-im/telepathy-qt4/Makefile Modified: head/net-im/telepathy-logger-qt4/Makefile ============================================================================== --- head/net-im/telepathy-logger-qt4/Makefile Tue Jun 20 04:18:11 2017 (r443940) +++ head/net-im/telepathy-logger-qt4/Makefile Tue Jun 20 04:41:27 2017 (r443941) @@ -17,7 +17,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus \ libtelepathy-logger.so:net-im/telepathy-logger \ libtelepathy-qt4.so:net-im/telepathy-qt4 -USES= bison:build cmake kde:4 pkgconfig python:build tar:bzip2 +USES= bison:build cmake kde:4 pkgconfig python:2,build tar:bzip2 USE_GNOME= glib20 libxml2 USE_GSTREAMER= qt4 USE_KDE= # empty Modified: head/net-im/telepathy-qt4/Makefile ============================================================================== --- head/net-im/telepathy-qt4/Makefile Tue Jun 20 04:18:11 2017 (r443940) +++ head/net-im/telepathy-qt4/Makefile Tue Jun 20 04:41:27 2017 (r443941) @@ -22,7 +22,7 @@ OPTIONS_DEFINE= DOCS USE_GNOME= glib20 libxslt:build USE_GSTREAMER= yes -USES= cmake:outsource gettext pathfix pkgconfig python:build +USES= cmake:outsource gettext pathfix pkgconfig python:2,build CMAKE_ARGS= -DENABLE_EXAMPLES:BOOL=False \ -DENABLE_FARSIGHT:BOOL=False \ -DENABLE_FARSTREAM:BOOL=True \ From owner-svn-ports-head@freebsd.org Tue Jun 20 06:30:24 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E65D0D91091; Tue, 20 Jun 2017 06:30:24 +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 B702F75D3B; Tue, 20 Jun 2017 06:30:24 +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 v5K6UNaR073681; Tue, 20 Jun 2017 06:30:23 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K6UNXu073680; Tue, 20 Jun 2017 06:30:23 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201706200630.v5K6UNXu073680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Tue, 20 Jun 2017 06:30:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443942 - head/net/libvncserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 06:30:25 -0000 Author: araujo Date: Tue Jun 20 06:30:23 2017 New Revision: 443942 URL: https://svnweb.freebsd.org/changeset/ports/443942 Log: Take maintainership. Modified: head/net/libvncserver/Makefile Modified: head/net/libvncserver/Makefile ============================================================================== --- head/net/libvncserver/Makefile Tue Jun 20 04:41:27 2017 (r443941) +++ head/net/libvncserver/Makefile Tue Jun 20 06:30:23 2017 (r443942) @@ -6,7 +6,7 @@ PORTVERSION= 0.9.11 DISTVERSIONPREFIX= LibVNCServer- CATEGORIES= net devel -MAINTAINER= ports@FreeBSD.org +MAINTAINER= araujo@FreeBSD.org COMMENT= Provide an easy API to a custom vnc server LICENSE= GPLv2 From owner-svn-ports-head@freebsd.org Tue Jun 20 07:05:16 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49A41D9178E; Tue, 20 Jun 2017 07:05:16 +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 23435769B0; Tue, 20 Jun 2017 07:05:16 +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 v5K75FLm089663; Tue, 20 Jun 2017 07:05:15 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K75FFu089661; Tue, 20 Jun 2017 07:05:15 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201706200705.v5K75FFu089661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 20 Jun 2017 07:05:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443943 - 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, 20 Jun 2017 07:05:16 -0000 Author: brnrd Date: Tue Jun 20 07:05:14 2017 New Revision: 443943 URL: https://svnweb.freebsd.org/changeset/ports/443943 Log: security/vuxml: Document Apache httpd vulnerabilities Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Jun 20 06:30:23 2017 (r443942) +++ head/security/vuxml/vuln.xml Tue Jun 20 07:05:14 2017 (r443943) @@ -58,6 +58,62 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + Apache httpd -- several vulnerabilities + + + apache22 + 2.2.32 + + + apache24 + 2.4.26 + + + + +

The Apache httpd project reports:

+
+
    +
  • ap_get_basic_auth_pw() Authentication Bypass (CVE-2017-3167):
    + Use of the ap_get_basic_auth_pw() by third-party modules outside + of the authentication phase may lead to authentication requirements + being bypassed.
  • +
  • mod_ssl Null Pointer Dereference (CVE-2017-3169):
    mod_ssl may + dereference a NULL pointer when third-party modules + call ap_hook_process_connection() during an HTTP request to an HTTPS + port.
  • +
  • mod_http2 Null Pointer Dereference (CVE-2017-7659):
    A maliciously + constructed HTTP/2 request could cause mod_http2 to dereference a NULL + pointer and crash the server process.
  • +
  • ap_find_token() Buffer Overread (CVE-2017-7668):
    The HTTP strict + parsing changes added in 2.2.32 and 2.4.24 introduced a bug in token + list parsing, which allows ap_find_token() to search past the end of its + input string. By maliciously crafting a sequence of request headers, an + attacker may be able to cause a segmentation fault, or to force + ap_find_token() to return an incorrect value.
  • +
  • mod_mime Buffer Overread (CVE-2017-7679):
    mod_mime can read one + byte past the end of a buffer when sending a malicious Content-Type + response header.
  • +
+
+ +
+ + https://httpd.apache.org/security/vulnerabilities_24.html + https://httpd.apache.org/security/vulnerabilities_22.html + CVE-2017-3167 + CVE-2017-3169 + CVE-2017-7659 + CVE-2017-7668 + CVE-2017-7679 + + + 2017-06-20 + 2017-06-20 + +
+ chromium -- multiple vulnerabilities @@ -7090,7 +7146,7 @@ Notes: Apache httpd -- several vulnerabilities - apache24 + APAche24 2.4.25 From owner-svn-ports-head@freebsd.org Tue Jun 20 07:12:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0908ED91812; Tue, 20 Jun 2017 07:12:04 +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 C292876D06; Tue, 20 Jun 2017 07:12: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 v5K7C25R093521; Tue, 20 Jun 2017 07:12:02 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K7C2pj093519; Tue, 20 Jun 2017 07:12:02 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201706200712.v5K7C2pj093519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 20 Jun 2017 07:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443944 - head/www/phalcon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 07:12:04 -0000 Author: vanilla Date: Tue Jun 20 07:12:02 2017 New Revision: 443944 URL: https://svnweb.freebsd.org/changeset/ports/443944 Log: Update to 3.2.0. PR: 220128 Submitted by: maintainer Modified: head/www/phalcon/Makefile head/www/phalcon/distinfo Modified: head/www/phalcon/Makefile ============================================================================== --- head/www/phalcon/Makefile Tue Jun 20 07:05:14 2017 (r443943) +++ head/www/phalcon/Makefile Tue Jun 20 07:12:02 2017 (r443944) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phalcon -PORTVERSION= 3.1.2 +PORTVERSION= 3.2.0 DISTVERSIONPREFIX= v CATEGORIES= www Modified: head/www/phalcon/distinfo ============================================================================== --- head/www/phalcon/distinfo Tue Jun 20 07:05:14 2017 (r443943) +++ head/www/phalcon/distinfo Tue Jun 20 07:12:02 2017 (r443944) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491634417 -SHA256 (phalcon-cphalcon-v3.1.2_GH0.tar.gz) = da619cab5979b3592b5e880a5e286e8d59841e911000be944fcddb030a7af587 -SIZE (phalcon-cphalcon-v3.1.2_GH0.tar.gz) = 6436291 +TIMESTAMP = 1497931403 +SHA256 (phalcon-cphalcon-v3.2.0_GH0.tar.gz) = 32f83fc7ab4eeee37a6577e5920ed5d94f455c723cf9499d195fad3be30c104e +SIZE (phalcon-cphalcon-v3.2.0_GH0.tar.gz) = 6561886 From owner-svn-ports-head@freebsd.org Tue Jun 20 09:01:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55987D935E3; Tue, 20 Jun 2017 09:01: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 23BC079C0F; Tue, 20 Jun 2017 09:01: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 v5K91SbG034606; Tue, 20 Jun 2017 09:01:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5K91SOp034603; Tue, 20 Jun 2017 09:01:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706200901.v5K91SOp034603@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 20 Jun 2017 09:01:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443945 - head/x11/xtrlock X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 09:01:29 -0000 Author: amdmi3 Date: Tue Jun 20 09:01:27 2017 New Revision: 443945 URL: https://svnweb.freebsd.org/changeset/ports/443945 Log: - Add LICENSE_FILE - Switch to USES=localbase - Simplify installation, cosmetic fixes - Update WWW Added: head/x11/xtrlock/pkg-plist (contents, props changed) Modified: head/x11/xtrlock/Makefile head/x11/xtrlock/pkg-descr Modified: head/x11/xtrlock/Makefile ============================================================================== --- head/x11/xtrlock/Makefile Tue Jun 20 07:12:02 2017 (r443944) +++ head/x11/xtrlock/Makefile Tue Jun 20 09:01:27 2017 (r443945) @@ -11,30 +11,25 @@ MAINTAINER= ports@FreeBSD.org COMMENT= X Transparent Lock LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/GPL-3.txt WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +USES= localbase USE_XORG= x11 -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lX11 -lcrypt +LIBS+= -lX11 -lcrypt -PLIST_FILES= bin/xtrlock man/man1/${PORTNAME}.1.gz -BINMODE= 4555 - -post-extract: - @${LN} -sf xtrlock.man ${WRKSRC}/xtrlock.1 - post-patch: @${REINPLACE_CMD} -e \ 's||| ; \ s|||' ${WRKSRC}/xtrlock.c do-build: - (cd ${WRKSRC} && ${CC} ${CFLAGS} -o xtrlock xtrlock.c ${LDFLAGS}) + (cd ${WRKSRC} && ${CC} ${CFLAGS} -o xtrlock xtrlock.c ${LDFLAGS} ${LIBS}) do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} xtrlock ${STAGEDIR}${PREFIX}/bin) - (cd ${WRKSRC} && ${INSTALL_MAN} xtrlock.1 ${STAGEDIR}${MANPREFIX}/man/man1) + ${INSTALL_PROGRAM} ${WRKSRC}/xtrlock ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/xtrlock.man ${STAGEDIR}${MANPREFIX}/man/man1/${PORTNAME}.1 .include Modified: head/x11/xtrlock/pkg-descr ============================================================================== --- head/x11/xtrlock/pkg-descr Tue Jun 20 07:12:02 2017 (r443944) +++ head/x11/xtrlock/pkg-descr Tue Jun 20 09:01:27 2017 (r443945) @@ -1,3 +1,3 @@ A minimal xlock with minimum usage of resources. -WWW: http://packages.qa.debian.org/x/xtrlock.html +WWW: https://packages.qa.debian.org/x/xtrlock.html Added: head/x11/xtrlock/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xtrlock/pkg-plist Tue Jun 20 09:01:27 2017 (r443945) @@ -0,0 +1,2 @@ +@(,,4555) bin/xtrlock +man/man1/xtrlock.1.gz From owner-svn-ports-head@freebsd.org Tue Jun 20 10:15:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2254AD9491D; Tue, 20 Jun 2017 10:15:30 +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 F21A67BBC0; Tue, 20 Jun 2017 10:15:29 +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 v5KAFTxW066795; Tue, 20 Jun 2017 10:15:29 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KAFS2t066791; Tue, 20 Jun 2017 10:15:28 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706201015.v5KAFS2t066791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 20 Jun 2017 10:15:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443946 - in head/databases: . pecl-cassandra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 10:15:30 -0000 Author: mat Date: Tue Jun 20 10:15:28 2017 New Revision: 443946 URL: https://svnweb.freebsd.org/changeset/ports/443946 Log: A modern, feature-rich and highly tunable PHP client library for Apache Cassandra and DataStax Enterprise. Using exclusively Cassandra's binary protocol and Cassandra Query Language v3. WWW: https://pecl.php.net/package/cassandra PR: 219706 Submitted by: daniel@blodan.se Sponsored by: Absolight Added: head/databases/pecl-cassandra/ head/databases/pecl-cassandra/Makefile (contents, props changed) head/databases/pecl-cassandra/distinfo (contents, props changed) head/databases/pecl-cassandra/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Jun 20 09:01:27 2017 (r443945) +++ head/databases/Makefile Tue Jun 20 10:15:28 2017 (r443946) @@ -540,6 +540,7 @@ SUBDIR += pear-Structures_DataGrid_DataSource_MDB2 SUBDIR += pear-Structures_DataGrid_DataSource_PDO SUBDIR += pear-XML_Query2XML + SUBDIR += pecl-cassandra SUBDIR += pecl-chdb SUBDIR += pecl-couchbase SUBDIR += pecl-dbase Added: head/databases/pecl-cassandra/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pecl-cassandra/Makefile Tue Jun 20 10:15:28 2017 (r443946) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= cassandra +PORTVERSION= 1.3.0 +CATEGORIES= databases + +MAINTAINER= daniel@blodan.se +COMMENT= Extension to access Cassandra + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libuv.so:devel/libuv \ + libcassandra.so:databases/cassandra-cpp-driver \ + libgmp.so:math/gmp + +USES= php:pecl localbase + +.include Added: head/databases/pecl-cassandra/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pecl-cassandra/distinfo Tue Jun 20 10:15:28 2017 (r443946) @@ -0,0 +1,3 @@ +TIMESTAMP = 1496320704 +SHA256 (PECL/cassandra-1.3.0.tgz) = d87cab8a1d28b5e5028f23849974ef845c3e4b971fd7c64518447a7f2d38fb6d +SIZE (PECL/cassandra-1.3.0.tgz) = 162241 Added: head/databases/pecl-cassandra/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pecl-cassandra/pkg-descr Tue Jun 20 10:15:28 2017 (r443946) @@ -0,0 +1,7 @@ +A modern, feature-rich and highly tunable PHP client +library for Apache Cassandra and DataStax Enterprise. + +Using exclusively Cassandra's binary protocol and +Cassandra Query Language v3. + +WWW: https://pecl.php.net/package/cassandra From owner-svn-ports-head@freebsd.org Tue Jun 20 10:52:54 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9B43D955A7; Tue, 20 Jun 2017 10:52:54 +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 8F7BC7CC3D; Tue, 20 Jun 2017 10:52: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 v5KAqriI082840; Tue, 20 Jun 2017 10:52:53 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KAqrNN082839; Tue, 20 Jun 2017 10:52:53 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706201052.v5KAqrNN082839@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 20 Jun 2017 10:52:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443948 - head/net/gnatsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 10:52:54 -0000 Author: olgeni Date: Tue Jun 20 10:52:53 2017 New Revision: 443948 URL: https://svnweb.freebsd.org/changeset/ports/443948 Log: Use GH_ACCOUNT and PORTNAME in GO_PKGNAME. Modified: head/net/gnatsd/Makefile Modified: head/net/gnatsd/Makefile ============================================================================== --- head/net/gnatsd/Makefile Tue Jun 20 10:46:15 2017 (r443947) +++ head/net/gnatsd/Makefile Tue Jun 20 10:52:53 2017 (r443948) @@ -12,7 +12,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= go -GO_PKGNAME= github.com/nats-io/gnatsd +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} USE_GITHUB= yes GH_ACCOUNT= nats-io From owner-svn-ports-head@freebsd.org Tue Jun 20 13:04:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DF74D984BB; Tue, 20 Jun 2017 13:04:26 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B3F680E08; Tue, 20 Jun 2017 13:04:25 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KD4O6h035774; Tue, 20 Jun 2017 13:04:24 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KD4OsQ035765; Tue, 20 Jun 2017 13:04:24 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201706201304.v5KD4OsQ035765@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Tue, 20 Jun 2017 13:04:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443949 - in head/emulators/xen-kernel: . 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, 20 Jun 2017 13:04:26 -0000 Author: royger (src committer) Date: Tue Jun 20 13:04:23 2017 New Revision: 443949 URL: https://svnweb.freebsd.org/changeset/ports/443949 Log: xen: apply XSA-{217,218,219,220,221,222,224} Approved by: bapt Sponsored by: Citrix Systems R&D MFH: 2017Q2 Added: head/emulators/xen-kernel/files/0001-IOMMU-handle-IOMMU-mapping-and-unmapping-failures.patch (contents, props changed) head/emulators/xen-kernel/files/0001-gnttab-Fix-handling-of-dev_bus_addr-during-unmap.patch (contents, props changed) head/emulators/xen-kernel/files/0002-gnttab-fix-unmap-pin-accounting-race.patch (contents, props changed) head/emulators/xen-kernel/files/0002-gnttab-never-create-host-mapping-unless-asked-to.patch (contents, props changed) head/emulators/xen-kernel/files/0003-gnttab-Avoid-potential-double-put-of-maptrack-entry.patch (contents, props changed) head/emulators/xen-kernel/files/0003-gnttab-correct-logic-to-get-page-references-during-m.patch (contents, props changed) head/emulators/xen-kernel/files/0004-gnttab-__gnttab_unmap_common_complete-is-all-or-noth.patch (contents, props changed) head/emulators/xen-kernel/files/0004-gnttab-correct-maptrack-table-accesses.patch (contents, props changed) head/emulators/xen-kernel/files/xsa217.patch (contents, props changed) head/emulators/xen-kernel/files/xsa219-4.8.patch (contents, props changed) head/emulators/xen-kernel/files/xsa220-4.7.patch (contents, props changed) head/emulators/xen-kernel/files/xsa221.patch (contents, props changed) head/emulators/xen-kernel/files/xsa222-1-4.7.patch (contents, props changed) head/emulators/xen-kernel/files/xsa222-2-4.7.patch (contents, props changed) Modified: head/emulators/xen-kernel/Makefile Modified: head/emulators/xen-kernel/Makefile ============================================================================== --- head/emulators/xen-kernel/Makefile Tue Jun 20 10:52:53 2017 (r443948) +++ head/emulators/xen-kernel/Makefile Tue Jun 20 13:04:23 2017 (r443949) @@ -2,7 +2,7 @@ PORTNAME= xen PORTVERSION= 4.7.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= http://downloads.xenproject.org/release/xen/${PORTVERSION}/ PKGNAMESUFFIX= -kernel @@ -45,7 +45,21 @@ EXTRA_PATCHES= ${FILESDIR}/0001-xen-logdirty-prevent-p ${FILESDIR}/xsa212.patch:-p1 \ ${FILESDIR}/xsa213-4.7.patch:-p1 \ ${FILESDIR}/xsa214.patch:-p1 \ - ${FILESDIR}/xsa215.patch:-p1 + ${FILESDIR}/xsa215.patch:-p1 \ + ${FILESDIR}/xsa217.patch:-p1 \ + ${FILESDIR}/0001-IOMMU-handle-IOMMU-mapping-and-unmapping-failures.patch:-p1 \ + ${FILESDIR}/0002-gnttab-fix-unmap-pin-accounting-race.patch:-p1 \ + ${FILESDIR}/0003-gnttab-Avoid-potential-double-put-of-maptrack-entry.patch:-p1 \ + ${FILESDIR}/0004-gnttab-correct-maptrack-table-accesses.patch:-p1 \ + ${FILESDIR}/xsa219-4.8.patch:-p1 \ + ${FILESDIR}/xsa220-4.7.patch:-p1 \ + ${FILESDIR}/xsa221.patch:-p1 \ + ${FILESDIR}/xsa222-1-4.7.patch:-p1 \ + ${FILESDIR}/xsa222-2-4.7.patch:-p1 \ + ${FILESDIR}/0001-gnttab-Fix-handling-of-dev_bus_addr-during-unmap.patch:-p1 \ + ${FILESDIR}/0002-gnttab-never-create-host-mapping-unless-asked-to.patch:-p1 \ + ${FILESDIR}/0003-gnttab-correct-logic-to-get-page-references-during-m.patch:-p1 \ + ${FILESDIR}/0004-gnttab-__gnttab_unmap_common_complete-is-all-or-noth.patch:-p1 .include Added: head/emulators/xen-kernel/files/0001-IOMMU-handle-IOMMU-mapping-and-unmapping-failures.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0001-IOMMU-handle-IOMMU-mapping-and-unmapping-failures.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,78 @@ +From 03f872b98f24e25cafb478b5d7c34e1eb18e1e4c Mon Sep 17 00:00:00 2001 +From: Quan Xu +Date: Fri, 2 Jun 2017 12:30:34 +0100 +Subject: [PATCH 1/4] IOMMU: handle IOMMU mapping and unmapping failures + +Treat IOMMU mapping and unmapping failures as a fatal to the DomU +If IOMMU mapping and unmapping failed, crash the DomU and propagate +the error up to the call trees. + +No spamming of the log can occur. For DomU, we avoid logging any +message for already dying domains. For Dom0, that'll still be more +verbose than we'd really like, but it at least wouldn't outright +flood the console. + +Signed-off-by: Quan Xu +Reviewed-by: Kevin Tian +Reviewed-by: Jan Beulich +--- + xen/drivers/passthrough/iommu.c | 30 ++++++++++++++++++++++++++++-- + 1 file changed, 28 insertions(+), 2 deletions(-) + +diff --git a/xen/drivers/passthrough/iommu.c b/xen/drivers/passthrough/iommu.c +index 1a315ee..927966f 100644 +--- a/xen/drivers/passthrough/iommu.c ++++ b/xen/drivers/passthrough/iommu.c +@@ -239,21 +239,47 @@ int iommu_map_page(struct domain *d, unsigned long gfn, unsigned long mfn, + unsigned int flags) + { + const struct domain_iommu *hd = dom_iommu(d); ++ int rc; + + if ( !iommu_enabled || !hd->platform_ops ) + return 0; + +- return hd->platform_ops->map_page(d, gfn, mfn, flags); ++ rc = hd->platform_ops->map_page(d, gfn, mfn, flags); ++ if ( unlikely(rc) ) ++ { ++ if ( !d->is_shutting_down && printk_ratelimit() ) ++ printk(XENLOG_ERR ++ "d%d: IOMMU mapping gfn %#lx to mfn %#lx failed: %d\n", ++ d->domain_id, gfn, mfn, rc); ++ ++ if ( !is_hardware_domain(d) ) ++ domain_crash(d); ++ } ++ ++ return rc; + } + + int iommu_unmap_page(struct domain *d, unsigned long gfn) + { + const struct domain_iommu *hd = dom_iommu(d); ++ int rc; + + if ( !iommu_enabled || !hd->platform_ops ) + return 0; + +- return hd->platform_ops->unmap_page(d, gfn); ++ rc = hd->platform_ops->unmap_page(d, gfn); ++ if ( unlikely(rc) ) ++ { ++ if ( !d->is_shutting_down && printk_ratelimit() ) ++ printk(XENLOG_ERR ++ "d%d: IOMMU unmapping gfn %#lx failed: %d\n", ++ d->domain_id, gfn, rc); ++ ++ if ( !is_hardware_domain(d) ) ++ domain_crash(d); ++ } ++ ++ return rc; + } + + static void iommu_free_pagetables(unsigned long unused) +-- +2.1.4 + Added: head/emulators/xen-kernel/files/0001-gnttab-Fix-handling-of-dev_bus_addr-during-unmap.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0001-gnttab-Fix-handling-of-dev_bus_addr-during-unmap.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,111 @@ +From fd97f5f5ba9375163c8d8771fe551bb4a6423b36 Mon Sep 17 00:00:00 2001 +From: George Dunlap +Date: Thu, 15 Jun 2017 16:24:02 +0100 +Subject: [PATCH 1/4] gnttab: Fix handling of dev_bus_addr during unmap + +If a grant has been mapped with the GNTTAB_device_map flag, calling +grant_unmap_ref() with dev_bus_addr set to zero should cause the +GNTTAB_device_map part of the mapping to be left alone. + +Unfortunately, at the moment, op->dev_bus_addr is implicitly checked +before clearing the map and adjusting the pin count, but only the bits +above 12; and it is not checked at all before dropping page +references. This means a guest can repeatedly make such a call to +cause the reference count to drop to zero, causing the page to be +freed and re-used, even though it's still mapped in its pagetables. + +To fix this, always check op->dev_bus_addr explicitly for being +non-zero, as well as op->flag & GNTMAP_device_map, before doing +operations on the device_map. + +While we're here, make the logic a bit cleaner: + +* Always initialize op->frame to zero and set it from act->frame, to reduce the +chance of untrusted input being used + +* Explicitly check the full dev_bus_addr against act->frame << + PAGE_SHIFT, rather than ignoring the lower 12 bits + +This is part of XSA-224. + +Reported-by: Jan Beulich +Signed-off-by: George Dunlap +Signed-off-by: Jan Beulich +--- + xen/common/grant_table.c | 23 +++++++++++------------ + 1 file changed, 11 insertions(+), 12 deletions(-) + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index c4d73af..69cbdb6 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -1089,8 +1089,6 @@ __gnttab_unmap_common( + ld = current->domain; + lgt = ld->grant_table; + +- op->frame = (unsigned long)(op->dev_bus_addr >> PAGE_SHIFT); +- + if ( unlikely(op->handle >= lgt->maptrack_limit) ) + { + gdprintk(XENLOG_INFO, "Bad handle (%d).\n", op->handle); +@@ -1174,16 +1172,14 @@ __gnttab_unmap_common( + goto act_release_out; + } + +- if ( op->frame == 0 ) +- { +- op->frame = act->frame; +- } +- else ++ op->frame = act->frame; ++ ++ if ( op->dev_bus_addr ) + { +- if ( unlikely(op->frame != act->frame) ) ++ if ( unlikely(op->dev_bus_addr != pfn_to_paddr(act->frame)) ) + PIN_FAIL(act_release_out, GNTST_general_error, +- "Bad frame number doesn't match gntref. (%lx != %lx)\n", +- op->frame, act->frame); ++ "Bus address doesn't match gntref (%"PRIx64" != %"PRIpaddr")\n", ++ op->dev_bus_addr, pfn_to_paddr(act->frame)); + + map->flags &= ~GNTMAP_device_map; + } +@@ -1276,7 +1272,8 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + else + status = &status_entry(rgt, op->ref); + +- if ( unlikely(op->frame != act->frame) ) ++ if ( op->dev_bus_addr && ++ unlikely(op->dev_bus_addr != pfn_to_paddr(act->frame)) ) + { + /* + * Suggests that __gntab_unmap_common failed early and so +@@ -1287,7 +1284,7 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + + pg = mfn_to_page(op->frame); + +- if ( op->flags & GNTMAP_device_map ) ++ if ( op->dev_bus_addr && (op->flags & GNTMAP_device_map) ) + { + if ( !is_iomem_page(act->frame) ) + { +@@ -1358,6 +1355,7 @@ __gnttab_unmap_grant_ref( + /* Intialise these in case common contains old state */ + common->new_addr = 0; + common->rd = NULL; ++ common->frame = 0; + + __gnttab_unmap_common(common); + op->status = common->status; +@@ -1422,6 +1420,7 @@ __gnttab_unmap_and_replace( + /* Intialise these in case common contains old state */ + common->dev_bus_addr = 0; + common->rd = NULL; ++ common->frame = 0; + + __gnttab_unmap_common(common); + op->status = common->status; +-- +2.1.4 + Added: head/emulators/xen-kernel/files/0002-gnttab-fix-unmap-pin-accounting-race.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0002-gnttab-fix-unmap-pin-accounting-race.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,102 @@ +From 2c146b4f763f47180a0effb8d8045b0ebb93652c Mon Sep 17 00:00:00 2001 +From: Jan Beulich +Date: Fri, 2 Jun 2017 12:22:42 +0100 +Subject: [PATCH 2/4] gnttab: fix unmap pin accounting race + +Once all {writable} mappings of a grant entry have been unmapped, the +hypervisor informs the guest that the grant entry has been released by +clearing the _GTF_{reading,writing} usage flags in the guest's grant +table as appropriate. + +Unfortunately, at the moment, the code that updates the accounting +happens in a different critical section than the one which updates the +usage flags; this means that under the right circumstances, there may be +a window in time after the hypervisor reported the grant as being free +during which the grant referee still had access to the page. + +Move the grant accounting code into the same critical section as the +reporting code to make sure this kind of race can't happen. + +This is part of XSA-218. + +Reported-by: Jann Horn +Signed-off-by: Jan Beulich +--- + xen/common/grant_table.c | 32 +++++++++++++++++--------------- + 1 file changed, 17 insertions(+), 15 deletions(-) + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index 8b22299..cfc483f 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -1150,15 +1150,8 @@ __gnttab_unmap_common( + PIN_FAIL(act_release_out, GNTST_general_error, + "Bad frame number doesn't match gntref. (%lx != %lx)\n", + op->frame, act->frame); +- if ( op->flags & GNTMAP_device_map ) +- { +- ASSERT(act->pin & (GNTPIN_devw_mask | GNTPIN_devr_mask)); +- op->map->flags &= ~GNTMAP_device_map; +- if ( op->flags & GNTMAP_readonly ) +- act->pin -= GNTPIN_devr_inc; +- else +- act->pin -= GNTPIN_devw_inc; +- } ++ ++ op->map->flags &= ~GNTMAP_device_map; + } + + if ( (op->host_addr != 0) && (op->flags & GNTMAP_host_map) ) +@@ -1168,12 +1161,7 @@ __gnttab_unmap_common( + op->flags)) < 0 ) + goto act_release_out; + +- ASSERT(act->pin & (GNTPIN_hstw_mask | GNTPIN_hstr_mask)); + op->map->flags &= ~GNTMAP_host_map; +- if ( op->flags & GNTMAP_readonly ) +- act->pin -= GNTPIN_hstr_inc; +- else +- act->pin -= GNTPIN_hstw_inc; + } + + act_release_out: +@@ -1266,6 +1254,12 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + else + put_page_and_type(pg); + } ++ ++ ASSERT(act->pin & (GNTPIN_devw_mask | GNTPIN_devr_mask)); ++ if ( op->flags & GNTMAP_readonly ) ++ act->pin -= GNTPIN_devr_inc; ++ else ++ act->pin -= GNTPIN_devw_inc; + } + + if ( (op->host_addr != 0) && (op->flags & GNTMAP_host_map) ) +@@ -1274,7 +1268,9 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + { + /* + * Suggests that __gntab_unmap_common failed in +- * replace_grant_host_mapping() so nothing further to do ++ * replace_grant_host_mapping() or IOMMU handling, so nothing ++ * further to do (short of re-establishing the mapping in the ++ * latter case). + */ + goto act_release_out; + } +@@ -1285,6 +1281,12 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + put_page_type(pg); + put_page(pg); + } ++ ++ ASSERT(act->pin & (GNTPIN_hstw_mask | GNTPIN_hstr_mask)); ++ if ( op->flags & GNTMAP_readonly ) ++ act->pin -= GNTPIN_hstr_inc; ++ else ++ act->pin -= GNTPIN_hstw_inc; + } + + if ( (op->map->flags & (GNTMAP_device_map|GNTMAP_host_map)) == 0 ) +-- +2.1.4 + Added: head/emulators/xen-kernel/files/0002-gnttab-never-create-host-mapping-unless-asked-to.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0002-gnttab-never-create-host-mapping-unless-asked-to.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,42 @@ +From 8894a0c20d920aada305aade0591c1e77167b1db Mon Sep 17 00:00:00 2001 +From: Jan Beulich +Date: Fri, 2 Jun 2017 15:21:27 +0100 +Subject: [PATCH 2/4] gnttab: never create host mapping unless asked to + +We shouldn't create a host mapping unless asked to even in the case of +mapping a granted MMIO page. In particular the mapping wouldn't be torn +down when processing the matching unmap request. + +This is part of XSA-224. + +Reported-by: Jan Beulich +Signed-off-by: Jan Beulich +--- + xen/common/grant_table.c | 11 +++++++---- + 1 file changed, 7 insertions(+), 4 deletions(-) + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index 69cbdb6..452538e 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -911,10 +911,13 @@ __gnttab_map_grant_ref( + goto undo_out; + } + +- rc = create_grant_host_mapping( +- op->host_addr, frame, op->flags, cache_flags); +- if ( rc != GNTST_okay ) +- goto undo_out; ++ if ( op->flags & GNTMAP_host_map ) ++ { ++ rc = create_grant_host_mapping(op->host_addr, frame, op->flags, ++ cache_flags); ++ if ( rc != GNTST_okay ) ++ goto undo_out; ++ } + } + else if ( owner == rd || owner == dom_cow ) + { +-- +2.1.4 + Added: head/emulators/xen-kernel/files/0003-gnttab-Avoid-potential-double-put-of-maptrack-entry.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0003-gnttab-Avoid-potential-double-put-of-maptrack-entry.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,232 @@ +From 39b704785a8d330c02e8e2d2368c80dbaf679bc0 Mon Sep 17 00:00:00 2001 +From: George Dunlap +Date: Thu, 15 Jun 2017 12:05:14 +0100 +Subject: [PATCH 3/4] gnttab: Avoid potential double-put of maptrack entry + +Each grant mapping for a particular domain is tracked by an in-Xen +"maptrack" entry. This entry is is referenced by a "handle", which is +given to the guest when it calls gnttab_map_grant_ref(). + +There are two types of mapping a particular handle can refer to: +GNTMAP_host_map and GNTMAP_device_map. A given +gnttab_unmap_grant_ref() call can remove either only one or both of +these entries. When a particular handle has no entries left, it must +be freed. + +gnttab_unmap_grant_ref() loops through its grant unmap request list +twice. It first removes entries from any host pagetables and (if +appropraite) iommus; then it does a single domain TLB flush; then it +does the clean-up, including telling the granter that entries are no +longer being used (if appropriate). + +At the moment, it's during the first pass that the maptrack flags are +cleared, but the second pass that the maptrack entry is freed. + +Unfortunately this allows the following race, which results in a +double-free: + + A: (pass 1) clear host_map + B: (pass 1) clear device_map + A: (pass 2) See that maptrack entry has no mappings, free it + B: (pass 2) See that maptrack entry has no mappings, free it # + +Unfortunately, unlike the active entry pinning update, we can't simply +move the maptrack flag changes to the second half, because the +maptrack flags are used to determine if iommu entries need to be +added: a domain's iommu must never have fewer permissions than the +maptrack flags indicate, or a subsequent map_grant_ref() might fail to +add the necessary iommu entries. + +Instead, free the maptrack entry in the first pass if there are no +further mappings. + +This is part of XSA-218. + +Reported-by: Jan Beulich +Signed-off-by: George Dunlap +Signed-off-by: Jan Beulich +--- + xen/common/grant_table.c | 79 +++++++++++++++++++++++++++++++++--------------- + 1 file changed, 54 insertions(+), 25 deletions(-) + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index cfc483f..81a1a8b 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -98,8 +98,8 @@ struct gnttab_unmap_common { + /* Shared state beteen *_unmap and *_unmap_complete */ + u16 flags; + unsigned long frame; +- struct grant_mapping *map; + struct domain *rd; ++ grant_ref_t ref; + }; + + /* Number of unmap operations that are done between each tlb flush */ +@@ -1079,6 +1079,8 @@ __gnttab_unmap_common( + struct grant_table *lgt, *rgt; + struct active_grant_entry *act; + s16 rc = 0; ++ struct grant_mapping *map; ++ bool_t put_handle = 0; + + ld = current->domain; + lgt = ld->grant_table; +@@ -1092,11 +1094,11 @@ __gnttab_unmap_common( + return; + } + +- op->map = &maptrack_entry(lgt, op->handle); ++ map = &maptrack_entry(lgt, op->handle); + + grant_read_lock(lgt); + +- if ( unlikely(!read_atomic(&op->map->flags)) ) ++ if ( unlikely(!read_atomic(&map->flags)) ) + { + grant_read_unlock(lgt); + gdprintk(XENLOG_INFO, "Zero flags for handle (%d).\n", op->handle); +@@ -1104,7 +1106,7 @@ __gnttab_unmap_common( + return; + } + +- dom = op->map->domid; ++ dom = map->domid; + grant_read_unlock(lgt); + + if ( unlikely((rd = rcu_lock_domain_by_id(dom)) == NULL) ) +@@ -1129,16 +1131,43 @@ __gnttab_unmap_common( + + grant_read_lock(rgt); + +- op->flags = read_atomic(&op->map->flags); +- if ( unlikely(!op->flags) || unlikely(op->map->domid != dom) ) ++ op->rd = rd; ++ op->ref = map->ref; ++ ++ /* ++ * We can't assume there was no racing unmap for this maptrack entry, ++ * and hence we can't assume map->ref is valid for rd. While the checks ++ * below (with the active entry lock held) will reject any such racing ++ * requests, we still need to make sure we don't attempt to acquire an ++ * invalid lock. ++ */ ++ smp_rmb(); ++ if ( unlikely(op->ref >= nr_grant_entries(rgt)) ) + { +- gdprintk(XENLOG_WARNING, "Unstable handle %u\n", op->handle); ++ gdprintk(XENLOG_WARNING, "Unstable handle %#x\n", op->handle); + rc = GNTST_bad_handle; +- goto unmap_out; ++ goto unlock_out; + } + +- op->rd = rd; +- act = active_entry_acquire(rgt, op->map->ref); ++ act = active_entry_acquire(rgt, op->ref); ++ ++ /* ++ * Note that we (ab)use the active entry lock here to protect against ++ * multiple unmaps of the same mapping here. We don't want to hold lgt's ++ * lock, and we only hold rgt's lock for reading (but the latter wouldn't ++ * be the right one anyway). Hence the easiest is to rely on a lock we ++ * hold anyway; see docs/misc/grant-tables.txt's "Locking" section. ++ */ ++ ++ op->flags = read_atomic(&map->flags); ++ smp_rmb(); ++ if ( unlikely(!op->flags) || unlikely(map->domid != dom) || ++ unlikely(map->ref != op->ref) ) ++ { ++ gdprintk(XENLOG_WARNING, "Unstable handle %#x\n", op->handle); ++ rc = GNTST_bad_handle; ++ goto act_release_out; ++ } + + if ( op->frame == 0 ) + { +@@ -1151,7 +1180,7 @@ __gnttab_unmap_common( + "Bad frame number doesn't match gntref. (%lx != %lx)\n", + op->frame, act->frame); + +- op->map->flags &= ~GNTMAP_device_map; ++ map->flags &= ~GNTMAP_device_map; + } + + if ( (op->host_addr != 0) && (op->flags & GNTMAP_host_map) ) +@@ -1161,14 +1190,23 @@ __gnttab_unmap_common( + op->flags)) < 0 ) + goto act_release_out; + +- op->map->flags &= ~GNTMAP_host_map; ++ map->flags &= ~GNTMAP_host_map; ++ } ++ ++ if ( !(map->flags & (GNTMAP_device_map|GNTMAP_host_map)) ) ++ { ++ map->flags = 0; ++ put_handle = 1; + } + + act_release_out: + active_entry_release(act); +- unmap_out: ++ unlock_out: + grant_read_unlock(rgt); + ++ if ( put_handle ) ++ put_maptrack_handle(lgt, op->handle); ++ + if ( rc == GNTST_okay && gnttab_need_iommu_mapping(ld) ) + { + unsigned int kind; +@@ -1205,7 +1243,6 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + grant_entry_header_t *sha; + struct page_info *pg; + uint16_t *status; +- bool_t put_handle = 0; + + if ( rd == NULL ) + { +@@ -1226,13 +1263,13 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + if ( rgt->gt_version == 0 ) + goto unlock_out; + +- act = active_entry_acquire(rgt, op->map->ref); +- sha = shared_entry_header(rgt, op->map->ref); ++ act = active_entry_acquire(rgt, op->ref); ++ sha = shared_entry_header(rgt, op->ref); + + if ( rgt->gt_version == 1 ) + status = &sha->flags; + else +- status = &status_entry(rgt, op->map->ref); ++ status = &status_entry(rgt, op->ref); + + if ( unlikely(op->frame != act->frame) ) + { +@@ -1289,9 +1326,6 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + act->pin -= GNTPIN_hstw_inc; + } + +- if ( (op->map->flags & (GNTMAP_device_map|GNTMAP_host_map)) == 0 ) +- put_handle = 1; +- + if ( ((act->pin & (GNTPIN_devw_mask|GNTPIN_hstw_mask)) == 0) && + !(op->flags & GNTMAP_readonly) ) + gnttab_clear_flag(_GTF_writing, status); +@@ -1304,11 +1338,6 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + unlock_out: + grant_read_unlock(rgt); + +- if ( put_handle ) +- { +- op->map->flags = 0; +- put_maptrack_handle(ld->grant_table, op->handle); +- } + rcu_unlock_domain(rd); + } + +-- +2.1.4 + Added: head/emulators/xen-kernel/files/0003-gnttab-correct-logic-to-get-page-references-during-m.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0003-gnttab-correct-logic-to-get-page-references-during-m.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,186 @@ +From 5d491e3cf32ff03552db9d66e842964fec06dcd4 Mon Sep 17 00:00:00 2001 +From: George Dunlap +Date: Fri, 2 Jun 2017 15:21:27 +0100 +Subject: [PATCH 3/4] gnttab: correct logic to get page references during map + requests + +The rules for reference counting are somewhat complicated: + +* Each of GNTTAB_host_map and GNTTAB_device_map need their own +reference count + +* If the mapping is writeable: + - GNTTAB_host_map needs a type count under only some conditions + - GNTTAB_device_map always needs a type count + +If the mapping succeeds, we need to keep all of these; if the mapping +fails, we need to release whatever references we have acquired so far. + +Additionally, the code that does a lot of this calculation "inherits" +a reference as part of the process of finding out who the owner is. + +Finally, if the grant is mapped as writeable (without the +GNTMAP_readonly flag), but the hypervisor cannot grab a +PGT_writeable_page type, the entire operation should fail. + +Unfortunately, the current code has several logic holes: + +* If a grant is mapped only GNTTAB_device_map, and with a writeable + mapping, but in conditions where a *host* type count is not + necessary, the code will fail to grab the necessary type count. + +* If a grant is mapped both GNTTAB_device_map and GNTTAB_host_map, + with a writeable mapping, in conditions where the host type count is + not necessary, *and* where the page cannot be changed to type + PGT_writeable, the condition will not be detected. + +In both cases, this means that on success, the type count will be +erroneously reduced when the grant is unmapped. In the second case, +the type count will be erroneously reduced on the failure path as +well. (In the first case the failure path logic has the same hole +as the reference grabbing logic.) + +Additionally, the return value of get_page() is not checked; but this +may fail even if the first get_page() succeeded due to a reference +counting overflow. + +First of all, simplify the restoration logic by explicitly counting +the reference and type references acquired. + +Consider each mapping type separately, explicitly marking the +'incoming' reference as used so we know when we need to grab a second +one. + +Finally, always check the return value of get_page[_type]() and go to +the failure path if appropriate. + +This is part of XSA-224. + +Reported-by: Jan Beulich +Signed-off-by: George Dunlap +Signed-off-by: Jan Beulich +--- + xen/common/grant_table.c | 58 +++++++++++++++++++++++++++--------------------- + 1 file changed, 33 insertions(+), 25 deletions(-) + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index 452538e..5e92e2c 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -758,12 +758,12 @@ __gnttab_map_grant_ref( + struct grant_table *lgt, *rgt; + struct vcpu *led; + int handle; +- unsigned long frame = 0, nr_gets = 0; ++ unsigned long frame = 0; + struct page_info *pg = NULL; + int rc = GNTST_okay; + u32 old_pin; + u32 act_pin; +- unsigned int cache_flags; ++ unsigned int cache_flags, refcnt = 0, typecnt = 0; + struct active_grant_entry *act = NULL; + struct grant_mapping *mt; + grant_entry_header_t *shah; +@@ -889,11 +889,17 @@ __gnttab_map_grant_ref( + else + owner = page_get_owner(pg); + ++ if ( owner ) ++ refcnt++; ++ + if ( !pg || (owner == dom_io) ) + { + /* Only needed the reference to confirm dom_io ownership. */ + if ( pg ) ++ { + put_page(pg); ++ refcnt--; ++ } + + if ( paging_mode_external(ld) ) + { +@@ -921,27 +927,38 @@ __gnttab_map_grant_ref( + } + else if ( owner == rd || owner == dom_cow ) + { +- if ( gnttab_host_mapping_get_page_type(op, ld, rd) ) ++ if ( (op->flags & GNTMAP_device_map) && !(op->flags & GNTMAP_readonly) ) + { + if ( (owner == dom_cow) || + !get_page_type(pg, PGT_writable_page) ) + goto could_not_pin; ++ typecnt++; + } + +- nr_gets++; + if ( op->flags & GNTMAP_host_map ) + { +- rc = create_grant_host_mapping(op->host_addr, frame, op->flags, 0); +- if ( rc != GNTST_okay ) +- goto undo_out; +- ++ /* ++ * Only need to grab another reference if device_map claimed ++ * the other one. ++ */ + if ( op->flags & GNTMAP_device_map ) + { +- nr_gets++; +- (void)get_page(pg, rd); +- if ( !(op->flags & GNTMAP_readonly) ) +- get_page_type(pg, PGT_writable_page); ++ if ( !get_page(pg, rd) ) ++ goto could_not_pin; ++ refcnt++; ++ } ++ ++ if ( gnttab_host_mapping_get_page_type(op, ld, rd) ) ++ { ++ if ( (owner == dom_cow) || ++ !get_page_type(pg, PGT_writable_page) ) ++ goto could_not_pin; ++ typecnt++; + } ++ ++ rc = create_grant_host_mapping(op->host_addr, frame, op->flags, 0); ++ if ( rc != GNTST_okay ) ++ goto undo_out; + } + } + else +@@ -950,8 +967,6 @@ __gnttab_map_grant_ref( + if ( !rd->is_dying ) + gdprintk(XENLOG_WARNING, "Could not pin grant frame %lx\n", + frame); +- if ( owner != NULL ) +- put_page(pg); + rc = GNTST_general_error; + goto undo_out; + } +@@ -1014,18 +1029,11 @@ __gnttab_map_grant_ref( + return; + + undo_out: +- if ( nr_gets > 1 ) +- { +- if ( !(op->flags & GNTMAP_readonly) ) +- put_page_type(pg); +- put_page(pg); +- } +- if ( nr_gets > 0 ) +- { +- if ( gnttab_host_mapping_get_page_type(op, ld, rd) ) +- put_page_type(pg); ++ while ( typecnt-- ) ++ put_page_type(pg); ++ ++ while ( refcnt-- ) + put_page(pg); +- } + + grant_read_lock(rgt); + +-- +2.1.4 + Added: head/emulators/xen-kernel/files/0004-gnttab-__gnttab_unmap_common_complete-is-all-or-noth.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xen-kernel/files/0004-gnttab-__gnttab_unmap_common_complete-is-all-or-noth.patch Tue Jun 20 13:04:23 2017 (r443949) @@ -0,0 +1,319 @@ +From 3ad26b95cd9bacedad5ba503515cf6e618162be1 Mon Sep 17 00:00:00 2001 +From: Jan Beulich +Date: Thu, 15 Jun 2017 16:25:27 +0100 +Subject: [PATCH 4/4] gnttab: __gnttab_unmap_common_complete() is + all-or-nothing + +All failures have to be detected in __gnttab_unmap_common(), the +completion function must not skip part of its processing. In particular +the GNTMAP_device_map related putting of page references and adjustment +of pin count must not occur if __gnttab_unmap_common() signaled an +error. Furthermore the function must not make adjustments to global +state (here: clearing GNTTAB_device_map) before all possibly failing +operations have been performed. + +There's one exception for IOMMU related failures: As IOMMU manipulation +occurs after GNTMAP_*_map have been cleared already, the related page +reference and pin count adjustments need to be done nevertheless. A +fundamental requirement for the correctness of this is that +iommu_{,un}map_page() crash any affected DomU in case of failure. + +The version check appears to be pointless (or could perhaps be a +BUG_ON() or ASSERT()), but for the moment also move it. + +This is part of XSA-224. + +Reported-by: Jan Beulich +Signed-off-by: Jan Beulich +--- + xen/common/grant_table.c | 108 ++++++++++++++++++-------------------- + xen/include/asm-arm/grant_table.h | 2 +- + xen/include/asm-x86/grant_table.h | 5 +- + 3 files changed, 55 insertions(+), 60 deletions(-) + +diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c +index 5e92e2c..025aad0 100644 +--- a/xen/common/grant_table.c ++++ b/xen/common/grant_table.c +@@ -96,7 +96,7 @@ struct gnttab_unmap_common { + int16_t status; + + /* Shared state beteen *_unmap and *_unmap_complete */ +- u16 flags; ++ u16 done; + unsigned long frame; + struct domain *rd; + grant_ref_t ref; +@@ -948,7 +948,8 @@ __gnttab_map_grant_ref( + refcnt++; + } + +- if ( gnttab_host_mapping_get_page_type(op, ld, rd) ) ++ if ( gnttab_host_mapping_get_page_type(op->flags & GNTMAP_readonly, ++ ld, rd) ) + { + if ( (owner == dom_cow) || + !get_page_type(pg, PGT_writable_page) ) +@@ -1095,6 +1096,7 @@ __gnttab_unmap_common( + struct active_grant_entry *act; + s16 rc = 0; + struct grant_mapping *map; ++ unsigned int flags; + bool_t put_handle = 0; + + ld = current->domain; +@@ -1145,6 +1147,20 @@ __gnttab_unmap_common( + + grant_read_lock(rgt); + ++ if ( rgt->gt_version == 0 ) ++ { ++ /* ++ * This ought to be impossible, as such a mapping should not have ++ * been established (see the nr_grant_entries(rgt) bounds check in ++ * __gnttab_map_grant_ref()). Doing this check only in ++ * __gnttab_unmap_common_complete() - as it used to be done - would, ++ * however, be too late. ++ */ ++ rc = GNTST_bad_gntref; ++ flags = 0; ++ goto unlock_out; ++ } ++ + op->rd = rd; + op->ref = map->ref; + +@@ -1160,6 +1176,7 @@ __gnttab_unmap_common( + { + gdprintk(XENLOG_WARNING, "Unstable handle %#x\n", op->handle); + rc = GNTST_bad_handle; ++ flags = 0; + goto unlock_out; + } + +@@ -1173,9 +1190,9 @@ __gnttab_unmap_common( + * hold anyway; see docs/misc/grant-tables.txt's "Locking" section. + */ + +- op->flags = read_atomic(&map->flags); ++ flags = read_atomic(&map->flags); + smp_rmb(); +- if ( unlikely(!op->flags) || unlikely(map->domid != dom) || ++ if ( unlikely(!flags) || unlikely(map->domid != dom) || + unlikely(map->ref != op->ref) ) + { + gdprintk(XENLOG_WARNING, "Unstable handle %#x\n", op->handle); +@@ -1185,24 +1202,27 @@ __gnttab_unmap_common( + + op->frame = act->frame; + +- if ( op->dev_bus_addr ) +- { +- if ( unlikely(op->dev_bus_addr != pfn_to_paddr(act->frame)) ) +- PIN_FAIL(act_release_out, GNTST_general_error, +- "Bus address doesn't match gntref (%"PRIx64" != %"PRIpaddr")\n", +- op->dev_bus_addr, pfn_to_paddr(act->frame)); +- +- map->flags &= ~GNTMAP_device_map; +- } ++ if ( op->dev_bus_addr && ++ unlikely(op->dev_bus_addr != pfn_to_paddr(act->frame)) ) ++ PIN_FAIL(act_release_out, GNTST_general_error, ++ "Bus address doesn't match gntref (%"PRIx64" != %"PRIpaddr")\n", ++ op->dev_bus_addr, pfn_to_paddr(act->frame)); + +- if ( (op->host_addr != 0) && (op->flags & GNTMAP_host_map) ) ++ if ( op->host_addr && (flags & GNTMAP_host_map) ) + { + if ( (rc = replace_grant_host_mapping(op->host_addr, + op->frame, op->new_addr, +- op->flags)) < 0 ) ++ flags)) < 0 ) + goto act_release_out; + + map->flags &= ~GNTMAP_host_map; ++ op->done |= GNTMAP_host_map | (flags & GNTMAP_readonly); ++ } ++ ++ if ( op->dev_bus_addr && (flags & GNTMAP_device_map) ) ++ { ++ map->flags &= ~GNTMAP_device_map; ++ op->done |= GNTMAP_device_map | (flags & GNTMAP_readonly); + } + + if ( !(map->flags & (GNTMAP_device_map|GNTMAP_host_map)) ) +@@ -1239,7 +1259,7 @@ __gnttab_unmap_common( + } + + /* If just unmapped a writable mapping, mark as dirtied */ +- if ( rc == GNTST_okay && !(op->flags & GNTMAP_readonly) ) ++ if ( rc == GNTST_okay && !(flags & GNTMAP_readonly) ) + gnttab_mark_dirty(rd, op->frame); + + op->status = rc; +@@ -1256,13 +1276,9 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + struct page_info *pg; + uint16_t *status; + +- if ( rd == NULL ) ++ if ( !op->done ) + { +- /* +- * Suggests that __gntab_unmap_common failed in +- * rcu_lock_domain_by_id() or earlier, and so we have nothing +- * to complete +- */ ++ /* __gntab_unmap_common() didn't do anything - nothing to complete. */ + return; + } + +@@ -1272,8 +1288,6 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + rgt = rd->grant_table; + + grant_read_lock(rgt); +- if ( rgt->gt_version == 0 ) +- goto unlock_out; + + act = active_entry_acquire(rgt, op->ref); + sha = shared_entry_header(rgt, op->ref); +@@ -1283,72 +1297,50 @@ __gnttab_unmap_common_complete(struct gnttab_unmap_common *op) + else + status = &status_entry(rgt, op->ref); + +- if ( op->dev_bus_addr && +- unlikely(op->dev_bus_addr != pfn_to_paddr(act->frame)) ) +- { +- /* +- * Suggests that __gntab_unmap_common failed early and so +- * nothing further to do +- */ +- goto act_release_out; +- } +- + pg = mfn_to_page(op->frame); + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Jun 20 13:05:43 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A985CD9850D; Tue, 20 Jun 2017 13:05:43 +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 6429C80F0C; Tue, 20 Jun 2017 13:05: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 v5KD5gDB036007; Tue, 20 Jun 2017 13:05:42 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KD5g0t036003; Tue, 20 Jun 2017 13:05:42 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706201305.v5KD5g0t036003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 20 Jun 2017 13:05:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443950 - in head/x11: . pantheon-terminal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:05:43 -0000 Author: amdmi3 Date: Tue Jun 20 13:05:41 2017 New Revision: 443950 URL: https://svnweb.freebsd.org/changeset/ports/443950 Log: A super lightweight, beautiful, and simple terminal. Comes with sane defaults, browser-class tabs, sudo paste protection, smart copy/paste, and little to no configuration. WWW: https://github.com/elementary/terminal Added: head/x11/pantheon-terminal/ head/x11/pantheon-terminal/Makefile (contents, props changed) head/x11/pantheon-terminal/distinfo (contents, props changed) head/x11/pantheon-terminal/pkg-descr (contents, props changed) head/x11/pantheon-terminal/pkg-plist (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Tue Jun 20 13:04:23 2017 (r443949) +++ head/x11/Makefile Tue Jun 20 13:05:41 2017 (r443950) @@ -250,6 +250,7 @@ SUBDIR += p5-X11-XCB SUBDIR += p5-X11-Xlib SUBDIR += p5-XTerm-Conf + SUBDIR += pantheon-terminal SUBDIR += pipeglade SUBDIR += pixman SUBDIR += plasma-scriptengine-python Added: head/x11/pantheon-terminal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pantheon-terminal/Makefile Tue Jun 20 13:05:41 2017 (r443950) @@ -0,0 +1,36 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= pantheon-terminal +PORTVERSION= 0.4.2 +CATEGORIES= x11 + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Lightweight, beautiful, and simple terminal from Elementary OS + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libgranite.so:x11-toolkits/granite +BUILD_DEPENDS= valac:lang/vala + +USE_GITHUB= yes +GH_ACCOUNT= elementary +GH_PROJECT= terminal + +USES= cmake desktop-file-utils gettext pkgconfig +CMAKE_ARGS= -DGSETTINGS_COMPILE:BOOL=NO +USE_GNOME= glib20 gtk30 intltool vte3 +GLIB_SCHEMAS= org.pantheon.terminal.gschema.xml + +PORTDOCS= AUTHORS README.md + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +.include Added: head/x11/pantheon-terminal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pantheon-terminal/distinfo Tue Jun 20 13:05:41 2017 (r443950) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497955852 +SHA256 (elementary-terminal-0.4.2_GH0.tar.gz) = 8443c137007ff89c61b55395c99f484fbe681b47c4fbecb1608c81ea8e1d6106 +SIZE (elementary-terminal-0.4.2_GH0.tar.gz) = 109075 Added: head/x11/pantheon-terminal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pantheon-terminal/pkg-descr Tue Jun 20 13:05:41 2017 (r443950) @@ -0,0 +1,5 @@ +A super lightweight, beautiful, and simple terminal. Comes with +sane defaults, browser-class tabs, sudo paste protection, smart +copy/paste, and little to no configuration. + +WWW: https://github.com/elementary/terminal Added: head/x11/pantheon-terminal/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/pantheon-terminal/pkg-plist Tue Jun 20 13:05:41 2017 (r443950) @@ -0,0 +1,203 @@ +bin/pantheon-terminal +share/appdata/pantheon-terminal.appdata.xml +share/applications/open-pantheon-terminal-here.desktop +share/applications/org.pantheon.terminal.desktop +share/locale/aa/LC_MESSAGES/pantheon-terminal.mo +share/locale/ab/LC_MESSAGES/pantheon-terminal.mo +share/locale/ae/LC_MESSAGES/pantheon-terminal.mo +share/locale/af/LC_MESSAGES/pantheon-terminal.mo +share/locale/ak/LC_MESSAGES/pantheon-terminal.mo +share/locale/am/LC_MESSAGES/pantheon-terminal.mo +share/locale/an/LC_MESSAGES/pantheon-terminal.mo +share/locale/ar/LC_MESSAGES/pantheon-terminal.mo +share/locale/as/LC_MESSAGES/pantheon-terminal.mo +share/locale/ast/LC_MESSAGES/pantheon-terminal.mo +share/locale/av/LC_MESSAGES/pantheon-terminal.mo +share/locale/ay/LC_MESSAGES/pantheon-terminal.mo +share/locale/az/LC_MESSAGES/pantheon-terminal.mo +share/locale/ba/LC_MESSAGES/pantheon-terminal.mo +share/locale/be/LC_MESSAGES/pantheon-terminal.mo +share/locale/bg/LC_MESSAGES/pantheon-terminal.mo +share/locale/bh/LC_MESSAGES/pantheon-terminal.mo +share/locale/bi/LC_MESSAGES/pantheon-terminal.mo +share/locale/bm/LC_MESSAGES/pantheon-terminal.mo +share/locale/bn/LC_MESSAGES/pantheon-terminal.mo +share/locale/bo/LC_MESSAGES/pantheon-terminal.mo +share/locale/br/LC_MESSAGES/pantheon-terminal.mo +share/locale/bs/LC_MESSAGES/pantheon-terminal.mo +share/locale/ca/LC_MESSAGES/pantheon-terminal.mo +share/locale/ce/LC_MESSAGES/pantheon-terminal.mo +share/locale/ch/LC_MESSAGES/pantheon-terminal.mo +share/locale/ckb/LC_MESSAGES/pantheon-terminal.mo +share/locale/co/LC_MESSAGES/pantheon-terminal.mo +share/locale/cr/LC_MESSAGES/pantheon-terminal.mo +share/locale/cs/LC_MESSAGES/pantheon-terminal.mo +share/locale/cu/LC_MESSAGES/pantheon-terminal.mo +share/locale/cv/LC_MESSAGES/pantheon-terminal.mo +share/locale/cy/LC_MESSAGES/pantheon-terminal.mo +share/locale/da/LC_MESSAGES/pantheon-terminal.mo +share/locale/de/LC_MESSAGES/pantheon-terminal.mo +share/locale/dv/LC_MESSAGES/pantheon-terminal.mo +share/locale/dz/LC_MESSAGES/pantheon-terminal.mo +share/locale/ee/LC_MESSAGES/pantheon-terminal.mo +share/locale/el/LC_MESSAGES/pantheon-terminal.mo +share/locale/en_AU/LC_MESSAGES/pantheon-terminal.mo +share/locale/en_CA/LC_MESSAGES/pantheon-terminal.mo +share/locale/en_GB/LC_MESSAGES/pantheon-terminal.mo +share/locale/eo/LC_MESSAGES/pantheon-terminal.mo +share/locale/es/LC_MESSAGES/pantheon-terminal.mo +share/locale/et/LC_MESSAGES/pantheon-terminal.mo +share/locale/eu/LC_MESSAGES/pantheon-terminal.mo +share/locale/fa/LC_MESSAGES/pantheon-terminal.mo +share/locale/ff/LC_MESSAGES/pantheon-terminal.mo +share/locale/fi/LC_MESSAGES/pantheon-terminal.mo +share/locale/fj/LC_MESSAGES/pantheon-terminal.mo +share/locale/fo/LC_MESSAGES/pantheon-terminal.mo +share/locale/fr/LC_MESSAGES/pantheon-terminal.mo +share/locale/fr_CA/LC_MESSAGES/pantheon-terminal.mo +share/locale/fy/LC_MESSAGES/pantheon-terminal.mo +share/locale/ga/LC_MESSAGES/pantheon-terminal.mo +share/locale/gd/LC_MESSAGES/pantheon-terminal.mo +share/locale/gl/LC_MESSAGES/pantheon-terminal.mo +share/locale/gn/LC_MESSAGES/pantheon-terminal.mo +share/locale/gu/LC_MESSAGES/pantheon-terminal.mo +share/locale/gv/LC_MESSAGES/pantheon-terminal.mo +share/locale/ha/LC_MESSAGES/pantheon-terminal.mo +share/locale/he/LC_MESSAGES/pantheon-terminal.mo +share/locale/hi/LC_MESSAGES/pantheon-terminal.mo +share/locale/ho/LC_MESSAGES/pantheon-terminal.mo +share/locale/hr/LC_MESSAGES/pantheon-terminal.mo +share/locale/ht/LC_MESSAGES/pantheon-terminal.mo +share/locale/hu/LC_MESSAGES/pantheon-terminal.mo +share/locale/hy/LC_MESSAGES/pantheon-terminal.mo +share/locale/hz/LC_MESSAGES/pantheon-terminal.mo +share/locale/ia/LC_MESSAGES/pantheon-terminal.mo +share/locale/id/LC_MESSAGES/pantheon-terminal.mo +share/locale/ie/LC_MESSAGES/pantheon-terminal.mo +share/locale/ig/LC_MESSAGES/pantheon-terminal.mo +share/locale/ii/LC_MESSAGES/pantheon-terminal.mo +share/locale/ik/LC_MESSAGES/pantheon-terminal.mo +share/locale/io/LC_MESSAGES/pantheon-terminal.mo +share/locale/is/LC_MESSAGES/pantheon-terminal.mo +share/locale/it/LC_MESSAGES/pantheon-terminal.mo +share/locale/iu/LC_MESSAGES/pantheon-terminal.mo +share/locale/ja/LC_MESSAGES/pantheon-terminal.mo +share/locale/jv/LC_MESSAGES/pantheon-terminal.mo +share/locale/ka/LC_MESSAGES/pantheon-terminal.mo +share/locale/kg/LC_MESSAGES/pantheon-terminal.mo +share/locale/ki/LC_MESSAGES/pantheon-terminal.mo +share/locale/kj/LC_MESSAGES/pantheon-terminal.mo +share/locale/kk/LC_MESSAGES/pantheon-terminal.mo +share/locale/kl/LC_MESSAGES/pantheon-terminal.mo +share/locale/km/LC_MESSAGES/pantheon-terminal.mo +share/locale/kn/LC_MESSAGES/pantheon-terminal.mo +share/locale/ko/LC_MESSAGES/pantheon-terminal.mo +share/locale/kr/LC_MESSAGES/pantheon-terminal.mo +share/locale/ks/LC_MESSAGES/pantheon-terminal.mo +share/locale/ku/LC_MESSAGES/pantheon-terminal.mo +share/locale/kv/LC_MESSAGES/pantheon-terminal.mo +share/locale/kw/LC_MESSAGES/pantheon-terminal.mo +share/locale/ky/LC_MESSAGES/pantheon-terminal.mo +share/locale/la/LC_MESSAGES/pantheon-terminal.mo +share/locale/lb/LC_MESSAGES/pantheon-terminal.mo +share/locale/lg/LC_MESSAGES/pantheon-terminal.mo +share/locale/li/LC_MESSAGES/pantheon-terminal.mo +share/locale/ln/LC_MESSAGES/pantheon-terminal.mo +share/locale/lo/LC_MESSAGES/pantheon-terminal.mo +share/locale/lt/LC_MESSAGES/pantheon-terminal.mo +share/locale/lu/LC_MESSAGES/pantheon-terminal.mo +share/locale/lv/LC_MESSAGES/pantheon-terminal.mo +share/locale/mg/LC_MESSAGES/pantheon-terminal.mo +share/locale/mh/LC_MESSAGES/pantheon-terminal.mo +share/locale/mi/LC_MESSAGES/pantheon-terminal.mo +share/locale/mk/LC_MESSAGES/pantheon-terminal.mo +share/locale/ml/LC_MESSAGES/pantheon-terminal.mo +share/locale/mn/LC_MESSAGES/pantheon-terminal.mo +share/locale/mo/LC_MESSAGES/pantheon-terminal.mo +share/locale/mr/LC_MESSAGES/pantheon-terminal.mo +share/locale/ms/LC_MESSAGES/pantheon-terminal.mo +share/locale/mt/LC_MESSAGES/pantheon-terminal.mo +share/locale/my/LC_MESSAGES/pantheon-terminal.mo +share/locale/na/LC_MESSAGES/pantheon-terminal.mo +share/locale/nb/LC_MESSAGES/pantheon-terminal.mo +share/locale/nd/LC_MESSAGES/pantheon-terminal.mo +share/locale/ne/LC_MESSAGES/pantheon-terminal.mo +share/locale/ng/LC_MESSAGES/pantheon-terminal.mo +share/locale/nl/LC_MESSAGES/pantheon-terminal.mo +share/locale/nn/LC_MESSAGES/pantheon-terminal.mo +share/locale/no/LC_MESSAGES/pantheon-terminal.mo +share/locale/nr/LC_MESSAGES/pantheon-terminal.mo +share/locale/nv/LC_MESSAGES/pantheon-terminal.mo +share/locale/ny/LC_MESSAGES/pantheon-terminal.mo +share/locale/oc/LC_MESSAGES/pantheon-terminal.mo +share/locale/oj/LC_MESSAGES/pantheon-terminal.mo +share/locale/om/LC_MESSAGES/pantheon-terminal.mo +share/locale/or/LC_MESSAGES/pantheon-terminal.mo +share/locale/os/LC_MESSAGES/pantheon-terminal.mo +share/locale/pa/LC_MESSAGES/pantheon-terminal.mo +share/locale/pi/LC_MESSAGES/pantheon-terminal.mo +share/locale/pl/LC_MESSAGES/pantheon-terminal.mo +share/locale/ps/LC_MESSAGES/pantheon-terminal.mo +share/locale/pt/LC_MESSAGES/pantheon-terminal.mo +share/locale/pt_BR/LC_MESSAGES/pantheon-terminal.mo +share/locale/qu/LC_MESSAGES/pantheon-terminal.mo +share/locale/rm/LC_MESSAGES/pantheon-terminal.mo +share/locale/rn/LC_MESSAGES/pantheon-terminal.mo +share/locale/ro/LC_MESSAGES/pantheon-terminal.mo +share/locale/ru/LC_MESSAGES/pantheon-terminal.mo +share/locale/rue/LC_MESSAGES/pantheon-terminal.mo +share/locale/rw/LC_MESSAGES/pantheon-terminal.mo +share/locale/sa/LC_MESSAGES/pantheon-terminal.mo +share/locale/sc/LC_MESSAGES/pantheon-terminal.mo +share/locale/sd/LC_MESSAGES/pantheon-terminal.mo +share/locale/se/LC_MESSAGES/pantheon-terminal.mo +share/locale/sg/LC_MESSAGES/pantheon-terminal.mo +share/locale/si/LC_MESSAGES/pantheon-terminal.mo +share/locale/sk/LC_MESSAGES/pantheon-terminal.mo +share/locale/sl/LC_MESSAGES/pantheon-terminal.mo +share/locale/sm/LC_MESSAGES/pantheon-terminal.mo +share/locale/sma/LC_MESSAGES/pantheon-terminal.mo +share/locale/sn/LC_MESSAGES/pantheon-terminal.mo +share/locale/so/LC_MESSAGES/pantheon-terminal.mo +share/locale/sq/LC_MESSAGES/pantheon-terminal.mo +share/locale/sr/LC_MESSAGES/pantheon-terminal.mo +share/locale/ss/LC_MESSAGES/pantheon-terminal.mo +share/locale/st/LC_MESSAGES/pantheon-terminal.mo +share/locale/su/LC_MESSAGES/pantheon-terminal.mo +share/locale/sv/LC_MESSAGES/pantheon-terminal.mo +share/locale/sw/LC_MESSAGES/pantheon-terminal.mo +share/locale/ta/LC_MESSAGES/pantheon-terminal.mo +share/locale/te/LC_MESSAGES/pantheon-terminal.mo +share/locale/tg/LC_MESSAGES/pantheon-terminal.mo +share/locale/th/LC_MESSAGES/pantheon-terminal.mo +share/locale/ti/LC_MESSAGES/pantheon-terminal.mo +share/locale/tk/LC_MESSAGES/pantheon-terminal.mo +share/locale/tl/LC_MESSAGES/pantheon-terminal.mo +share/locale/tlh/LC_MESSAGES/pantheon-terminal.mo +share/locale/tn/LC_MESSAGES/pantheon-terminal.mo +share/locale/to/LC_MESSAGES/pantheon-terminal.mo +share/locale/tr/LC_MESSAGES/pantheon-terminal.mo +share/locale/ts/LC_MESSAGES/pantheon-terminal.mo +share/locale/tt/LC_MESSAGES/pantheon-terminal.mo +share/locale/tw/LC_MESSAGES/pantheon-terminal.mo +share/locale/ty/LC_MESSAGES/pantheon-terminal.mo +share/locale/ug/LC_MESSAGES/pantheon-terminal.mo +share/locale/uk/LC_MESSAGES/pantheon-terminal.mo +share/locale/ur/LC_MESSAGES/pantheon-terminal.mo +share/locale/uz/LC_MESSAGES/pantheon-terminal.mo +share/locale/ve/LC_MESSAGES/pantheon-terminal.mo +share/locale/vi/LC_MESSAGES/pantheon-terminal.mo +share/locale/vo/LC_MESSAGES/pantheon-terminal.mo +share/locale/wa/LC_MESSAGES/pantheon-terminal.mo +share/locale/wo/LC_MESSAGES/pantheon-terminal.mo +share/locale/xh/LC_MESSAGES/pantheon-terminal.mo +share/locale/yi/LC_MESSAGES/pantheon-terminal.mo +share/locale/yo/LC_MESSAGES/pantheon-terminal.mo +share/locale/za/LC_MESSAGES/pantheon-terminal.mo +share/locale/zh/LC_MESSAGES/pantheon-terminal.mo +share/locale/zh_CN/LC_MESSAGES/pantheon-terminal.mo +share/locale/zh_HK/LC_MESSAGES/pantheon-terminal.mo +share/locale/zh_TW/LC_MESSAGES/pantheon-terminal.mo +share/locale/zu/LC_MESSAGES/pantheon-terminal.mo +%%DATADIR%%/enable-fish-completion-notifications +%%DATADIR%%/enable-zsh-completion-notifications From owner-svn-ports-head@freebsd.org Tue Jun 20 13:17:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BD70D98823; Tue, 20 Jun 2017 13:17:38 +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 07254814CA; Tue, 20 Jun 2017 13:17:37 +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 v5KDHbFe040198; Tue, 20 Jun 2017 13:17:37 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDHb6k040197; Tue, 20 Jun 2017 13:17:37 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201706201317.v5KDHb6k040197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 20 Jun 2017 13:17:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443951 - head/net/asterisk13 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:17:38 -0000 Author: madpilot Date: Tue Jun 20 13:17:36 2017 New Revision: 443951 URL: https://svnweb.freebsd.org/changeset/ports/443951 Log: - Fix user provided menuselect support - Make it work also when SYSINFO option is turned on MFH: 2017Q2 Modified: head/net/asterisk13/Makefile Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Tue Jun 20 13:05:41 2017 (r443950) +++ head/net/asterisk13/Makefile Tue Jun 20 13:17:36 2017 (r443951) @@ -250,6 +250,9 @@ post-extract-G729-on: post-patch: @${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/samples/musiconhold.conf.sample +.if exists(${FILESDIR}/.asterisk.makeopts) + ${CP} ${FILESDIR}/.asterisk.makeopts ${WRKSRC}/menuselect.makeopts +.endif post-patch-SYSINFO-on: @${REINPLACE_CMD} -e 's/%%LIBSYSINFO%%/-lsysinfo/' ${WRKSRC}/main/Makefile @@ -257,9 +260,6 @@ post-patch-SYSINFO-on: post-patch-SYSINFO-off: @${REINPLACE_CMD} -e '/#define HAVE_SYSINFO 1/d' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/%%LIBSYSINFO%%/d' ${WRKSRC}/main/Makefile -.if exists(${FILESDIR}/.asterisk.makeopts) - ${CP} ${USER_MAKEOPTS_FILE} ${WRKSRC}/menuselect.makeopts -.endif post-configure: @cd ${WRKSRC} && ${MAKE_CMD} menuselect.makeopts From owner-svn-ports-head@freebsd.org Tue Jun 20 13:19:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64527D988A9; Tue, 20 Jun 2017 13:19:56 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 344A18162A; Tue, 20 Jun 2017 13:19:56 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDJtVA040442; Tue, 20 Jun 2017 13:19:55 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDJtxf040440; Tue, 20 Jun 2017 13:19:55 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201706201319.v5KDJtxf040440@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Tue, 20 Jun 2017 13:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443952 - head/sysutils/docker-compose X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:19:56 -0000 Author: lifanov Date: Tue Jun 20 13:19:55 2017 New Revision: 443952 URL: https://svnweb.freebsd.org/changeset/ports/443952 Log: update sysutils/docker-compose to 1.14.0 Changes: https://github.com/docker/compose/releases/tag/1.14.0 Modified: head/sysutils/docker-compose/Makefile head/sysutils/docker-compose/distinfo Modified: head/sysutils/docker-compose/Makefile ============================================================================== --- head/sysutils/docker-compose/Makefile Tue Jun 20 13:17:36 2017 (r443951) +++ head/sysutils/docker-compose/Makefile Tue Jun 20 13:19:55 2017 (r443952) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= docker-compose -PORTVERSION= 1.13.0 +PORTVERSION= 1.14.0 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP Modified: head/sysutils/docker-compose/distinfo ============================================================================== --- head/sysutils/docker-compose/distinfo Tue Jun 20 13:17:36 2017 (r443951) +++ head/sysutils/docker-compose/distinfo Tue Jun 20 13:19:55 2017 (r443952) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493826266 -SHA256 (docker-compose-1.13.0.tar.gz) = 3c7b62cd0ab5f33d21db197d8a74739d320a6fe32e4ef8282c35d4dee5a7c77c -SIZE (docker-compose-1.13.0.tar.gz) = 201429 +TIMESTAMP = 1497963588 +SHA256 (docker-compose-1.14.0.tar.gz) = 5649124df5f11b66298e54e6abde0e6991cafa33bc8d69ad037736bf4e276c79 +SIZE (docker-compose-1.14.0.tar.gz) = 205658 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:21:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98254D98905; Tue, 20 Jun 2017 13:21:30 +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 6C071817C0; Tue, 20 Jun 2017 13:21:30 +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 v5KDLTc9042838; Tue, 20 Jun 2017 13:21:29 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDLTDx042837; Tue, 20 Jun 2017 13:21:29 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201706201321.v5KDLTDx042837@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 20 Jun 2017 13:21:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443953 - head/net/asterisk11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:21:30 -0000 Author: madpilot Date: Tue Jun 20 13:21:29 2017 New Revision: 443953 URL: https://svnweb.freebsd.org/changeset/ports/443953 Log: - Prevent asterisk build system from unconditionally using -march=native [1] - Add an OPTIMIZED_CFLAGS option, disabled by default, to allow enabling the native flag - While here, convert to option target helpers. Reported by: "Andrey V. Elsukov" (via email) [1] MFH: 2017Q2 Modified: head/net/asterisk11/Makefile Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Tue Jun 20 13:19:55 2017 (r443952) +++ head/net/asterisk11/Makefile Tue Jun 20 13:21:29 2017 (r443953) @@ -2,7 +2,7 @@ PORTNAME= asterisk PORTVERSION= 11.25.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ @@ -54,7 +54,7 @@ CONFLICTS_BUILD= linuxthreads-* pjsip-* CONFLICTS_INSTALL= asterisk*-13* OPTIONS_DEFINE= BACKTRACE CURL EXCHANGE FREETDS LDAP LUA \ - MP3PLAYER OOH323 RADIUS SNMP SPANDSP SRTP \ + MP3PLAYER OOH323 OPTIMIZED_CFLAGS RADIUS SNMP SPANDSP SRTP \ SYSINFO UUID XMPP OPTIONS_DEFAULT= BACKTRACE CURL FREETDS GSM LUA MP3PLAYER \ NEWT MYSQL ODBC PGSQL RADIUS SNMP SPANDSP SPEEX \ @@ -218,40 +218,43 @@ PLIST_SUB+= ASTERISK_USER=${ASTERISK_USER} \ post-extract: @${FIND} ${WRKSRC} -name '*.d' -delete -.if ${PORT_OPTIONS:MG729} +post-extract-G729-on: ${CP} ${DISTDIR}/${ASTERISK_CORE_G729_SOUNDS} ${WRKSRC}/sounds ${CP} ${DISTDIR}/${ASTERISK_MOH_G729_SOUNDS} ${WRKSRC}/sounds -.endif post-patch: @${REINPLACE_CMD} -e 's|/var/lib|${PREFIX}/share|g' ${WRKSRC}/configs/musiconhold.conf.sample @${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure -.if ${PORT_OPTIONS:MSYSINFO} - @${REINPLACE_CMD} -e 's/%%LIBSYSINFO%%/-lsysinfo/' ${WRKSRC}/main/Makefile -.else - @${REINPLACE_CMD} -e '/#define HAVE_SYSINFO 1/d' ${WRKSRC}/configure - @${REINPLACE_CMD} -e '/%%LIBSYSINFO%%/d' ${WRKSRC}/main/Makefile -.endif .if exists(${FILESDIR}/.asterisk.makeopts) ${CP} ${FILESDIR}/.asterisk.makeopts ${WRKSRC}/menuselect.makeopts .endif +post-patch-SYSINFO-on: + @${REINPLACE_CMD} -e 's/%%LIBSYSINFO%%/-lsysinfo/' ${WRKSRC}/main/Makefile + +post-patch-SYSINFO-off: + @${REINPLACE_CMD} -e '/#define HAVE_SYSINFO 1/d' ${WRKSRC}/configure + @${REINPLACE_CMD} -e '/%%LIBSYSINFO%%/d' ${WRKSRC}/main/Makefile + post-configure: @cd ${WRKSRC} && ${MAKE_CMD} menuselect.makeopts @cd ${WRKSRC} && ./menuselect/menuselect --disable res_timing_kqueue menuselect.makeopts @cd ${WRKSRC} && ./menuselect/menuselect --enable chan_mgcp menuselect.makeopts @cd ${WRKSRC} && ./menuselect/menuselect --enable res_pktccops menuselect.makeopts -.if ${PORT_OPTIONS:MMYSQL} + +post-configure-MYSQL-on: @cd ${WRKSRC} && ./menuselect/menuselect --enable res_config_mysql menuselect.makeopts @cd ${WRKSRC} && ./menuselect/menuselect --enable app_mysql menuselect.makeopts @cd ${WRKSRC} && ./menuselect/menuselect --enable cdr_mysql menuselect.makeopts -.endif -.if ${PORT_OPTIONS:MOOH323} + +post-configure-OOH323-on: @cd ${WRKSRC} && ./menuselect/menuselect --enable chan_ooh323 menuselect.makeopts -.endif -.if ${PORT_OPTIONS:MNEWG711} + +post-configure-NEWG711-on: @cd ${WRKSRC} && ./menuselect/menuselect --enable G711_NEW_ALGORITHM menuselect.makeopts -.endif + +post-configure-OPTIMIZED_CFLAGS-off: + @cd ${WRKSRC} && ./menuselect/menuselect --disable BUILD_NATIVE menuselect.makeopts pre-build: @${MKDIR} ${WRKSRC}/res/pjproject/pjnath/lib ${WRKSRC}/res/pjproject/pjlib-util/lib \ From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3CFA3D98AC9; Tue, 20 Jun 2017 13:28:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06B1681B1E; Tue, 20 Jun 2017 13:28:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSEn8044803; Tue, 20 Jun 2017 13:28:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSEUu044801; Tue, 20 Jun 2017 13:28:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSEUu044801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443954 - head/devel/p5-Debug-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: Tue, 20 Jun 2017 13:28:15 -0000 Author: sunpoet Date: Tue Jun 20 13:28:13 2017 New Revision: 443954 URL: https://svnweb.freebsd.org/changeset/ports/443954 Log: Update to 0.30 Changes: http://search.cpan.org/dist/Debug-Client/Changes Modified: head/devel/p5-Debug-Client/Makefile head/devel/p5-Debug-Client/distinfo Modified: head/devel/p5-Debug-Client/Makefile ============================================================================== --- head/devel/p5-Debug-Client/Makefile Tue Jun 20 13:21:29 2017 (r443953) +++ head/devel/p5-Debug-Client/Makefile Tue Jun 20 13:28:13 2017 (r443954) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Debug-Client -PORTVERSION= 0.29 -PORTREVISION= 1 +PORTVERSION= 0.30 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,14 +13,13 @@ COMMENT= Client for the standard Perl debugger LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-PadWalker>=1.96:devel/p5-PadWalker \ - p5-Term-ReadLine-Gnu>=1.2:devel/p5-Term-ReadLine-Gnu +BUILD_DEPENDS= p5-PadWalker>=1.98:devel/p5-PadWalker \ + p5-Term-ReadLine-Gnu>=1.20:devel/p5-Term-ReadLine-Gnu RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-HomeDir>=1:devel/p5-File-HomeDir \ - p5-Term-ReadLine-Gnu>=1.20:devel/p5-Term-ReadLine-Gnu \ - p5-Test-CheckDeps>=0.006:devel/p5-Test-CheckDeps \ - p5-Test-Class>=0.39:devel/p5-Test-Class \ - p5-Test-Deep>=0.110:devel/p5-Test-Deep \ + p5-Test-CheckDeps>=0.010:devel/p5-Test-CheckDeps \ + p5-Test-Class>=0.42:devel/p5-Test-Class \ + p5-Test-Deep>=0.112:devel/p5-Test-Deep \ p5-Test-Requires>=0.07:devel/p5-Test-Requires NO_ARCH= yes Modified: head/devel/p5-Debug-Client/distinfo ============================================================================== --- head/devel/p5-Debug-Client/distinfo Tue Jun 20 13:21:29 2017 (r443953) +++ head/devel/p5-Debug-Client/distinfo Tue Jun 20 13:28:13 2017 (r443954) @@ -1,2 +1,3 @@ -SHA256 (Debug-Client-0.29.tar.gz) = 51f4ea6c6991221024a08b6106d4af1455452fae3b809b0bf0a208fbddb30efa -SIZE (Debug-Client-0.29.tar.gz) = 41615 +TIMESTAMP = 1497958467 +SHA256 (Debug-Client-0.30.tar.gz) = f5d9013a98e25a97eabcdcd888a3bf65f9ff047dac38d761488192386e2375b2 +SIZE (Debug-Client-0.30.tar.gz) = 41779 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 727B6D98AE8; Tue, 20 Jun 2017 13:28:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4332581B30; Tue, 20 Jun 2017 13:28:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSJr7044926; Tue, 20 Jun 2017 13:28:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSJuc044924; Tue, 20 Jun 2017 13:28:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSJuc044924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443955 - head/databases/py-sqlalchemy11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:20 -0000 Author: sunpoet Date: Tue Jun 20 13:28:19 2017 New Revision: 443955 URL: https://svnweb.freebsd.org/changeset/ports/443955 Log: Update to 1.1.11 Changes: https://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html Modified: head/databases/py-sqlalchemy11/Makefile head/databases/py-sqlalchemy11/distinfo Modified: head/databases/py-sqlalchemy11/Makefile ============================================================================== --- head/databases/py-sqlalchemy11/Makefile Tue Jun 20 13:28:13 2017 (r443954) +++ head/databases/py-sqlalchemy11/Makefile Tue Jun 20 13:28:19 2017 (r443955) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sqlalchemy -PORTVERSION= 1.1.10 +PORTVERSION= 1.1.11 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-sqlalchemy11/distinfo ============================================================================== --- head/databases/py-sqlalchemy11/distinfo Tue Jun 20 13:28:13 2017 (r443954) +++ head/databases/py-sqlalchemy11/distinfo Tue Jun 20 13:28:19 2017 (r443955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495298913 -SHA256 (SQLAlchemy-1.1.10.tar.gz) = dbd92b8af2306d600efa98ed36262d73aad227440a758c8dc3a067ca30096bd3 -SIZE (SQLAlchemy-1.1.10.tar.gz) = 5191849 +TIMESTAMP = 1497958481 +SHA256 (SQLAlchemy-1.1.11.tar.gz) = 76f76965e9a968ba3aecd2a8bc0d991cea04fd9a182e6c95c81f1551487b0211 +SIZE (SQLAlchemy-1.1.11.tar.gz) = 5197520 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A5BAD98B10; Tue, 20 Jun 2017 13:28:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0923081B81; Tue, 20 Jun 2017 13:28:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSO6L045046; Tue, 20 Jun 2017 13:28:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSOKN045044; Tue, 20 Jun 2017 13:28:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSOKN045044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443956 - head/www/py-hyperlink X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:25 -0000 Author: sunpoet Date: Tue Jun 20 13:28:23 2017 New Revision: 443956 URL: https://svnweb.freebsd.org/changeset/ports/443956 Log: Update to 17.2.1 Changes: https://github.com/python-hyper/hyperlink/blob/master/CHANGELOG.md Modified: head/www/py-hyperlink/Makefile head/www/py-hyperlink/distinfo Modified: head/www/py-hyperlink/Makefile ============================================================================== --- head/www/py-hyperlink/Makefile Tue Jun 20 13:28:19 2017 (r443955) +++ head/www/py-hyperlink/Makefile Tue Jun 20 13:28:23 2017 (r443956) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hyperlink -PORTVERSION= 17.2.0 +PORTVERSION= 17.2.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-hyperlink/distinfo ============================================================================== --- head/www/py-hyperlink/distinfo Tue Jun 20 13:28:19 2017 (r443955) +++ head/www/py-hyperlink/distinfo Tue Jun 20 13:28:23 2017 (r443956) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497889419 -SHA256 (hyperlink-17.2.0.tar.gz) = b81cf0578e9475bef36ee3c48cafb8f3f68c1b66df12c7c4da5ce125790dab27 -SIZE (hyperlink-17.2.0.tar.gz) = 24641 +TIMESTAMP = 1497958491 +SHA256 (hyperlink-17.2.1.tar.gz) = 2c74b35662416f44823d50e59305f761a933723ae6528cc5b0d711361453f28b +SIZE (hyperlink-17.2.1.tar.gz) = 24670 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94760D98B40; Tue, 20 Jun 2017 13:28:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63B4981BFA; Tue, 20 Jun 2017 13:28:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSTKX045169; Tue, 20 Jun 2017 13:28:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDST45045167; Tue, 20 Jun 2017 13:28:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDST45045167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443957 - head/devel/rubygem-extras X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:30 -0000 Author: sunpoet Date: Tue Jun 20 13:28:29 2017 New Revision: 443957 URL: https://svnweb.freebsd.org/changeset/ports/443957 Log: Update to 0.2.0 Changes: https://github.com/envygeeks/extras/commits/master Modified: head/devel/rubygem-extras/Makefile head/devel/rubygem-extras/distinfo Modified: head/devel/rubygem-extras/Makefile ============================================================================== --- head/devel/rubygem-extras/Makefile Tue Jun 20 13:28:23 2017 (r443956) +++ head/devel/rubygem-extras/Makefile Tue Jun 20 13:28:29 2017 (r443957) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= extras -PORTVERSION= 0.1.0 +PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-extras/distinfo ============================================================================== --- head/devel/rubygem-extras/distinfo Tue Jun 20 13:28:23 2017 (r443956) +++ head/devel/rubygem-extras/distinfo Tue Jun 20 13:28:29 2017 (r443957) @@ -1,2 +1,3 @@ -SHA256 (rubygem/extras-0.1.0.gem) = a8bcf5040f413f0f112109e156bf63930eb2e79adcdb96736982f26f6e3e04d2 -SIZE (rubygem/extras-0.1.0.gem) = 7168 +TIMESTAMP = 1497958498 +SHA256 (rubygem/extras-0.2.0.gem) = 1c5481008a02121d2e86f12fa8e9e93f90a7363e005905e86eaf4f8d5d4e4fa5 +SIZE (rubygem/extras-0.2.0.gem) = 7168 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC9ABD98B69; Tue, 20 Jun 2017 13:28:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D0B281C6B; Tue, 20 Jun 2017 13:28:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSY5k045291; Tue, 20 Jun 2017 13:28:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSYJk045289; Tue, 20 Jun 2017 13:28:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSYJk045289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443958 - head/devel/rubygem-activesupport50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:35 -0000 Author: sunpoet Date: Tue Jun 20 13:28:34 2017 New Revision: 443958 URL: https://svnweb.freebsd.org/changeset/ports/443958 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/activesupport/CHANGELOG.md Modified: head/devel/rubygem-activesupport50/Makefile head/devel/rubygem-activesupport50/distinfo Modified: head/devel/rubygem-activesupport50/Makefile ============================================================================== --- head/devel/rubygem-activesupport50/Makefile Tue Jun 20 13:28:29 2017 (r443957) +++ head/devel/rubygem-activesupport50/Makefile Tue Jun 20 13:28:34 2017 (r443958) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activesupport -PORTVERSION= 5.0.3 +PORTVERSION= 5.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/devel/rubygem-activesupport50/distinfo ============================================================================== --- head/devel/rubygem-activesupport50/distinfo Tue Jun 20 13:28:29 2017 (r443957) +++ head/devel/rubygem-activesupport50/distinfo Tue Jun 20 13:28:34 2017 (r443958) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671811 -SHA256 (rubygem/activesupport-5.0.3.gem) = d2de4474dd71b095400f1f3e492284b4a29e300b95b45a8fef1cdfa78bb4d42c -SIZE (rubygem/activesupport-5.0.3.gem) = 363520 +TIMESTAMP = 1497958505 +SHA256 (rubygem/activesupport-5.0.4.gem) = ec3af21ed8df9fdd20d9b9c9a8bef3fc3b7d8b69bcb15a7dbdf8f37072bf2c23 +SIZE (rubygem/activesupport-5.0.4.gem) = 363520 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7586DD98B95; Tue, 20 Jun 2017 13:28:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4061F81CDF; Tue, 20 Jun 2017 13:28:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSdWL045412; Tue, 20 Jun 2017 13:28:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSdjr045410; Tue, 20 Jun 2017 13:28:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSdjr045410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443959 - head/databases/rubygem-activemodel50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:40 -0000 Author: sunpoet Date: Tue Jun 20 13:28:39 2017 New Revision: 443959 URL: https://svnweb.freebsd.org/changeset/ports/443959 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/activemodel/CHANGELOG.md Modified: head/databases/rubygem-activemodel50/Makefile head/databases/rubygem-activemodel50/distinfo Modified: head/databases/rubygem-activemodel50/Makefile ============================================================================== --- head/databases/rubygem-activemodel50/Makefile Tue Jun 20 13:28:34 2017 (r443958) +++ head/databases/rubygem-activemodel50/Makefile Tue Jun 20 13:28:39 2017 (r443959) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activemodel -PORTVERSION= 5.0.3 +PORTVERSION= 5.0.4 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/databases/rubygem-activemodel50/distinfo ============================================================================== --- head/databases/rubygem-activemodel50/distinfo Tue Jun 20 13:28:34 2017 (r443958) +++ head/databases/rubygem-activemodel50/distinfo Tue Jun 20 13:28:39 2017 (r443959) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671816 -SHA256 (rubygem/activemodel-5.0.3.gem) = f6a65c53795e45ca20c721f6d91d4d68a47734affe4d349c65f1acd1e1960370 -SIZE (rubygem/activemodel-5.0.3.gem) = 53760 +TIMESTAMP = 1497958510 +SHA256 (rubygem/activemodel-5.0.4.gem) = 6145ae036d43b5b19c91c1d8c8936d06b475f17bf8a255919ce4afb6015d7216 +SIZE (rubygem/activemodel-5.0.4.gem) = 53760 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80997D98BB9; Tue, 20 Jun 2017 13:28:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5005781D4E; Tue, 20 Jun 2017 13:28:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSigd045535; Tue, 20 Jun 2017 13:28:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSiCu045534; Tue, 20 Jun 2017 13:28:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSiCu045534@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443960 - head/databases/rubygem-activerecord50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:45 -0000 Author: sunpoet Date: Tue Jun 20 13:28:44 2017 New Revision: 443960 URL: https://svnweb.freebsd.org/changeset/ports/443960 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/activerecord/CHANGELOG.md Modified: head/databases/rubygem-activerecord50/Makefile head/databases/rubygem-activerecord50/distinfo Modified: head/databases/rubygem-activerecord50/Makefile ============================================================================== --- head/databases/rubygem-activerecord50/Makefile Tue Jun 20 13:28:39 2017 (r443959) +++ head/databases/rubygem-activerecord50/Makefile Tue Jun 20 13:28:44 2017 (r443960) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activerecord -PORTVERSION= 5.0.3 +PORTVERSION= 5.0.4 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/databases/rubygem-activerecord50/distinfo ============================================================================== --- head/databases/rubygem-activerecord50/distinfo Tue Jun 20 13:28:39 2017 (r443959) +++ head/databases/rubygem-activerecord50/distinfo Tue Jun 20 13:28:44 2017 (r443960) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671823 -SHA256 (rubygem/activerecord-5.0.3.gem) = 6a38454baf683ff1894ae6e877531a2510a66ac76d11cd47dda90a25ca7bf057 -SIZE (rubygem/activerecord-5.0.3.gem) = 361472 +TIMESTAMP = 1497958518 +SHA256 (rubygem/activerecord-5.0.4.gem) = d82ba1b3519e50c509e0da488f224e5a6164633ebd3c00053e55ade49a8a3d6b +SIZE (rubygem/activerecord-5.0.4.gem) = 361472 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F43DD98BE1; Tue, 20 Jun 2017 13:28:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFDB981DCD; Tue, 20 Jun 2017 13:28:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSn2A045656; Tue, 20 Jun 2017 13:28:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSnxh045654; Tue, 20 Jun 2017 13:28:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSnxh045654@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443961 - head/devel/rubygem-actionview50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:51 -0000 Author: sunpoet Date: Tue Jun 20 13:28:49 2017 New Revision: 443961 URL: https://svnweb.freebsd.org/changeset/ports/443961 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/actionview/CHANGELOG.md Modified: head/devel/rubygem-actionview50/Makefile head/devel/rubygem-actionview50/distinfo Modified: head/devel/rubygem-actionview50/Makefile ============================================================================== --- head/devel/rubygem-actionview50/Makefile Tue Jun 20 13:28:44 2017 (r443960) +++ head/devel/rubygem-actionview50/Makefile Tue Jun 20 13:28:49 2017 (r443961) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= actionview -PORTVERSION= 5.0.3 -PORTREVISION= 1 +PORTVERSION= 5.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/devel/rubygem-actionview50/distinfo ============================================================================== --- head/devel/rubygem-actionview50/distinfo Tue Jun 20 13:28:44 2017 (r443960) +++ head/devel/rubygem-actionview50/distinfo Tue Jun 20 13:28:49 2017 (r443961) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671831 -SHA256 (rubygem/actionview-5.0.3.gem) = 6b488cd87023024bdbc75f7fed1e9a705c16e4d8635210d71c61b87f7a46491d -SIZE (rubygem/actionview-5.0.3.gem) = 152064 +TIMESTAMP = 1497958526 +SHA256 (rubygem/actionview-5.0.4.gem) = f5b53d280c894afd423be26ffc7546266fd6490c91f7e0e3c2dd6524d8d3dbcb +SIZE (rubygem/actionview-5.0.4.gem) = 152064 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:28:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04CD3D98C0C; Tue, 20 Jun 2017 13:28:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C55DF81E3C; Tue, 20 Jun 2017 13:28:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSsnv045783; Tue, 20 Jun 2017 13:28:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSsNa045781; Tue, 20 Jun 2017 13:28:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSsNa045781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443962 - head/devel/rubygem-activejob50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:28:56 -0000 Author: sunpoet Date: Tue Jun 20 13:28:54 2017 New Revision: 443962 URL: https://svnweb.freebsd.org/changeset/ports/443962 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/activejob/CHANGELOG.md Modified: head/devel/rubygem-activejob50/Makefile head/devel/rubygem-activejob50/distinfo Modified: head/devel/rubygem-activejob50/Makefile ============================================================================== --- head/devel/rubygem-activejob50/Makefile Tue Jun 20 13:28:49 2017 (r443961) +++ head/devel/rubygem-activejob50/Makefile Tue Jun 20 13:28:54 2017 (r443962) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= activejob -PORTVERSION= 5.0.3 -PORTREVISION= 1 +PORTVERSION= 5.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/devel/rubygem-activejob50/distinfo ============================================================================== --- head/devel/rubygem-activejob50/distinfo Tue Jun 20 13:28:49 2017 (r443961) +++ head/devel/rubygem-activejob50/distinfo Tue Jun 20 13:28:54 2017 (r443962) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671837 -SHA256 (rubygem/activejob-5.0.3.gem) = 2f317f286af8511d8b05f18a2e1140fdeaea811ae19d65505a73ce050df685f4 -SIZE (rubygem/activejob-5.0.3.gem) = 25088 +TIMESTAMP = 1497958532 +SHA256 (rubygem/activejob-5.0.4.gem) = 65997364e723bf8b041172cb5562da08181d45bbed8d04d9516dc8b6672e1d7f +SIZE (rubygem/activejob-5.0.4.gem) = 25088 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:01 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CEC3D98C2A; Tue, 20 Jun 2017 13:29:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD65281EA8; Tue, 20 Jun 2017 13:29:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDSxqO045909; Tue, 20 Jun 2017 13:28:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDSxrE045907; Tue, 20 Jun 2017 13:28:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201328.v5KDSxrE045907@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:28:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443963 - head/www/rubygem-actionpack50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:01 -0000 Author: sunpoet Date: Tue Jun 20 13:28:59 2017 New Revision: 443963 URL: https://svnweb.freebsd.org/changeset/ports/443963 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/actionpack/CHANGELOG.md Modified: head/www/rubygem-actionpack50/Makefile head/www/rubygem-actionpack50/distinfo Modified: head/www/rubygem-actionpack50/Makefile ============================================================================== --- head/www/rubygem-actionpack50/Makefile Tue Jun 20 13:28:54 2017 (r443962) +++ head/www/rubygem-actionpack50/Makefile Tue Jun 20 13:28:59 2017 (r443963) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= actionpack -PORTVERSION= 5.0.3 -PORTREVISION= 1 +PORTVERSION= 5.0.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/www/rubygem-actionpack50/distinfo ============================================================================== --- head/www/rubygem-actionpack50/distinfo Tue Jun 20 13:28:54 2017 (r443962) +++ head/www/rubygem-actionpack50/distinfo Tue Jun 20 13:28:59 2017 (r443963) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671845 -SHA256 (rubygem/actionpack-5.0.3.gem) = e142cc12cf87fac7231dab990f2484170b4f8e8870f0aa39d37ab8ea535507ca -SIZE (rubygem/actionpack-5.0.3.gem) = 212480 +TIMESTAMP = 1497958540 +SHA256 (rubygem/actionpack-5.0.4.gem) = 22e48ed14a49ef76278fa249035aaf2fb1d8a9abc649444a2510a94ffba3d7e3 +SIZE (rubygem/actionpack-5.0.4.gem) = 212480 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:06 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26C5ED98C55; Tue, 20 Jun 2017 13:29:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA44981F22; Tue, 20 Jun 2017 13:29:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDT5kn046033; Tue, 20 Jun 2017 13:29:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDT4ND046031; Tue, 20 Jun 2017 13:29:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDT4ND046031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443964 - head/www/rubygem-actioncable50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:06 -0000 Author: sunpoet Date: Tue Jun 20 13:29:04 2017 New Revision: 443964 URL: https://svnweb.freebsd.org/changeset/ports/443964 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/actioncable/CHANGELOG.md Modified: head/www/rubygem-actioncable50/Makefile head/www/rubygem-actioncable50/distinfo Modified: head/www/rubygem-actioncable50/Makefile ============================================================================== --- head/www/rubygem-actioncable50/Makefile Tue Jun 20 13:28:59 2017 (r443963) +++ head/www/rubygem-actioncable50/Makefile Tue Jun 20 13:29:04 2017 (r443964) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actioncable -PORTVERSION= 5.0.3 +PORTVERSION= 5.0.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/www/rubygem-actioncable50/distinfo ============================================================================== --- head/www/rubygem-actioncable50/distinfo Tue Jun 20 13:28:59 2017 (r443963) +++ head/www/rubygem-actioncable50/distinfo Tue Jun 20 13:29:04 2017 (r443964) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671851 -SHA256 (rubygem/actioncable-5.0.3.gem) = 7b8d1c987dd7f424a293254985165ef6fccfdda65086ad86ea0917162670feed -SIZE (rubygem/actioncable-5.0.3.gem) = 42496 +TIMESTAMP = 1497958547 +SHA256 (rubygem/actioncable-5.0.4.gem) = f296d82b6494bc6591963f2cd91a08f6853f3ce9b784ab8a6bada5588ceee280 +SIZE (rubygem/actioncable-5.0.4.gem) = 42496 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C274D98C72; Tue, 20 Jun 2017 13:29:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7A4B81F8F; Tue, 20 Jun 2017 13:29:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDT9A8046156; Tue, 20 Jun 2017 13:29:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDT95m046154; Tue, 20 Jun 2017 13:29:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDT95m046154@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443965 - head/mail/rubygem-actionmailer50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:11 -0000 Author: sunpoet Date: Tue Jun 20 13:29:09 2017 New Revision: 443965 URL: https://svnweb.freebsd.org/changeset/ports/443965 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/actionmailer/CHANGELOG.md Modified: head/mail/rubygem-actionmailer50/Makefile head/mail/rubygem-actionmailer50/distinfo Modified: head/mail/rubygem-actionmailer50/Makefile ============================================================================== --- head/mail/rubygem-actionmailer50/Makefile Tue Jun 20 13:29:04 2017 (r443964) +++ head/mail/rubygem-actionmailer50/Makefile Tue Jun 20 13:29:09 2017 (r443965) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= actionmailer -PORTVERSION= 5.0.3 -PORTREVISION= 1 +PORTVERSION= 5.0.4 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/mail/rubygem-actionmailer50/distinfo ============================================================================== --- head/mail/rubygem-actionmailer50/distinfo Tue Jun 20 13:29:04 2017 (r443964) +++ head/mail/rubygem-actionmailer50/distinfo Tue Jun 20 13:29:09 2017 (r443965) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671859 -SHA256 (rubygem/actionmailer-5.0.3.gem) = e8ca4e0536c1da624bd77458d4f9453a801ffdadaf905ecb72ef617c2cab463c -SIZE (rubygem/actionmailer-5.0.3.gem) = 28672 +TIMESTAMP = 1497958554 +SHA256 (rubygem/actionmailer-5.0.4.gem) = 31cb0ca3654c4b9423480fd5b43dec6740c3c234195b50c9906745587ed8c6cc +SIZE (rubygem/actionmailer-5.0.4.gem) = 28672 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC482D98CA2; Tue, 20 Jun 2017 13:29:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7994182003; Tue, 20 Jun 2017 13:29:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTEPG046278; Tue, 20 Jun 2017 13:29:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTEiq046276; Tue, 20 Jun 2017 13:29:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTEiq046276@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443966 - head/www/rubygem-railties50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:15 -0000 Author: sunpoet Date: Tue Jun 20 13:29:14 2017 New Revision: 443966 URL: https://svnweb.freebsd.org/changeset/ports/443966 Log: Update to 5.0.4 Changes: https://github.com/rails/rails/blob/5-0-stable/railties/CHANGELOG.md Modified: head/www/rubygem-railties50/Makefile head/www/rubygem-railties50/distinfo Modified: head/www/rubygem-railties50/Makefile ============================================================================== --- head/www/rubygem-railties50/Makefile Tue Jun 20 13:29:09 2017 (r443965) +++ head/www/rubygem-railties50/Makefile Tue Jun 20 13:29:14 2017 (r443966) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= railties -PORTVERSION= 5.0.3 +PORTVERSION= 5.0.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/www/rubygem-railties50/distinfo ============================================================================== --- head/www/rubygem-railties50/distinfo Tue Jun 20 13:29:09 2017 (r443965) +++ head/www/rubygem-railties50/distinfo Tue Jun 20 13:29:14 2017 (r443966) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494671867 -SHA256 (rubygem/railties-5.0.3.gem) = 57022d00b580dc7f896570b3c5d188aed5fcaf4b1d84fc03381b740d1a82da1b -SIZE (rubygem/railties-5.0.3.gem) = 223744 +TIMESTAMP = 1497958562 +SHA256 (rubygem/railties-5.0.4.gem) = 534fbe66df5f7a8c4e2926e7497a7b876f1d34e33b56238db29faf159ad778dc +SIZE (rubygem/railties-5.0.4.gem) = 223744 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2236D98CD0; Tue, 20 Jun 2017 13:29:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C06CE82075; Tue, 20 Jun 2017 13:29:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTJx1046399; Tue, 20 Jun 2017 13:29:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTJHQ046397; Tue, 20 Jun 2017 13:29:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTJHQ046397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443967 - head/devel/p5-Minion X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:21 -0000 Author: sunpoet Date: Tue Jun 20 13:29:19 2017 New Revision: 443967 URL: https://svnweb.freebsd.org/changeset/ports/443967 Log: Update to 7.0 Changes: http://search.cpan.org/dist/Minion/Changes Modified: head/devel/p5-Minion/Makefile head/devel/p5-Minion/distinfo Modified: head/devel/p5-Minion/Makefile ============================================================================== --- head/devel/p5-Minion/Makefile Tue Jun 20 13:29:14 2017 (r443966) +++ head/devel/p5-Minion/Makefile Tue Jun 20 13:29:19 2017 (r443967) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Minion -PORTVERSION= 6.06 +PORTVERSION= 7.0 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/devel/p5-Minion/distinfo ============================================================================== --- head/devel/p5-Minion/distinfo Tue Jun 20 13:29:14 2017 (r443966) +++ head/devel/p5-Minion/distinfo Tue Jun 20 13:29:19 2017 (r443967) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496751420 -SHA256 (Minion-6.06.tar.gz) = 72cccfa5721754b4616cf1476a296586bea477be3fbdad21ed79315c087e7ec5 -SIZE (Minion-6.06.tar.gz) = 35304 +TIMESTAMP = 1497958570 +SHA256 (Minion-7.0.tar.gz) = 0c2017a984fade4960ac5674c777e84f96e33ea94a6a5835e75696d57c87bd8d +SIZE (Minion-7.0.tar.gz) = 36775 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 706FED98D03; Tue, 20 Jun 2017 13:29:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3EEB3820F9; Tue, 20 Jun 2017 13:29:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTPYE046522; Tue, 20 Jun 2017 13:29:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTPpE046520; Tue, 20 Jun 2017 13:29:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTPpE046520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443968 - head/devel/p5-Regexp-Assemble X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:26 -0000 Author: sunpoet Date: Tue Jun 20 13:29:25 2017 New Revision: 443968 URL: https://svnweb.freebsd.org/changeset/ports/443968 Log: Update to 0.38 - Add LICENSE_FILE Changes: http://search.cpan.org/dist/Regexp-Assemble/Changes Modified: head/devel/p5-Regexp-Assemble/Makefile head/devel/p5-Regexp-Assemble/distinfo Modified: head/devel/p5-Regexp-Assemble/Makefile ============================================================================== --- head/devel/p5-Regexp-Assemble/Makefile Tue Jun 20 13:29:19 2017 (r443967) +++ head/devel/p5-Regexp-Assemble/Makefile Tue Jun 20 13:29:25 2017 (r443968) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Regexp-Assemble -PORTVERSION= 0.37 +PORTVERSION= 0.38 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -12,6 +12,7 @@ COMMENT= Assemble multiple Regular Expressions into on LICENSE= ART10 GPLv1 LICENSE_COMB= dual +LICENSE_FILE_ART10= ${WRKSRC}/LICENSE NO_ARCH= yes USES= perl5 tar:tgz Modified: head/devel/p5-Regexp-Assemble/distinfo ============================================================================== --- head/devel/p5-Regexp-Assemble/distinfo Tue Jun 20 13:29:19 2017 (r443967) +++ head/devel/p5-Regexp-Assemble/distinfo Tue Jun 20 13:29:25 2017 (r443968) @@ -1,2 +1,3 @@ -SHA256 (Regexp-Assemble-0.37.tgz) = 6ebde38bd8b9a058f136a2607c92acdb51966419d0c1efb6bc8f9134342c6bbd -SIZE (Regexp-Assemble-0.37.tgz) = 100414 +TIMESTAMP = 1497958579 +SHA256 (Regexp-Assemble-0.38.tgz) = a06be7f9ae1b73c9bfd5b6662b141c0d70469e9c19bb4413a6ee56f82adae442 +SIZE (Regexp-Assemble-0.38.tgz) = 106551 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A45ED98D44; Tue, 20 Jun 2017 13:29:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5896282175; Tue, 20 Jun 2017 13:29:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTUm4046644; Tue, 20 Jun 2017 13:29:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTU9L046642; Tue, 20 Jun 2017 13:29:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTU9L046642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443969 - head/devel/py-simplejson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:31 -0000 Author: sunpoet Date: Tue Jun 20 13:29:30 2017 New Revision: 443969 URL: https://svnweb.freebsd.org/changeset/ports/443969 Log: Update to 3.11.1 Changes: https://github.com/simplejson/simplejson/blob/master/CHANGES.txt Modified: head/devel/py-simplejson/Makefile head/devel/py-simplejson/distinfo Modified: head/devel/py-simplejson/Makefile ============================================================================== --- head/devel/py-simplejson/Makefile Tue Jun 20 13:29:25 2017 (r443968) +++ head/devel/py-simplejson/Makefile Tue Jun 20 13:29:30 2017 (r443969) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= simplejson -PORTVERSION= 3.11.0 +PORTVERSION= 3.11.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-simplejson/distinfo ============================================================================== --- head/devel/py-simplejson/distinfo Tue Jun 20 13:29:25 2017 (r443968) +++ head/devel/py-simplejson/distinfo Tue Jun 20 13:29:30 2017 (r443969) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497889429 -SHA256 (simplejson-3.11.0.tar.gz) = 3d399d3d1e96416f4553cb44243ba1ce2c441b6741eed1484ada7ab28fadbc35 -SIZE (simplejson-3.11.0.tar.gz) = 78219 +TIMESTAMP = 1497958588 +SHA256 (simplejson-3.11.1.tar.gz) = 01a22d49ddd9a168b136f26cac87d9a335660ce07aa5c630b8e3607d6f4325e7 +SIZE (simplejson-3.11.1.tar.gz) = 78145 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD4A3D98D7A; Tue, 20 Jun 2017 13:29:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BE27821EF; Tue, 20 Jun 2017 13:29:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTZpN046765; Tue, 20 Jun 2017 13:29:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTZGX046763; Tue, 20 Jun 2017 13:29:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTZGX046763@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443970 - head/devel/rubygem-aws-sdk-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, 20 Jun 2017 13:29:36 -0000 Author: sunpoet Date: Tue Jun 20 13:29:35 2017 New Revision: 443970 URL: https://svnweb.freebsd.org/changeset/ports/443970 Log: Update to 2.9.43 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Tue Jun 20 13:29:30 2017 (r443969) +++ head/devel/rubygem-aws-sdk-core/Makefile Tue Jun 20 13:29:35 2017 (r443970) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.9.42 +PORTVERSION= 2.9.43 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Tue Jun 20 13:29:30 2017 (r443969) +++ head/devel/rubygem-aws-sdk-core/distinfo Tue Jun 20 13:29:35 2017 (r443970) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497688142 -SHA256 (rubygem/aws-sdk-core-2.9.42.gem) = f46bc53037d0c2b2faf5db2706c2bfc9e2f9dd7d638319a621d78129e0711eb8 -SIZE (rubygem/aws-sdk-core-2.9.42.gem) = 1031168 +TIMESTAMP = 1497958597 +SHA256 (rubygem/aws-sdk-core-2.9.43.gem) = d4be841a3ebda409d0a84cce61bdc4ae292ef628d248964446ddf80a286883bc +SIZE (rubygem/aws-sdk-core-2.9.43.gem) = 1031168 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAB2CD98DA3; Tue, 20 Jun 2017 13:29:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9606D82263; Tue, 20 Jun 2017 13:29:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTeCu046888; Tue, 20 Jun 2017 13:29:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTe9M046886; Tue, 20 Jun 2017 13:29:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTe9M046886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443971 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:41 -0000 Author: sunpoet Date: Tue Jun 20 13:29:40 2017 New Revision: 443971 URL: https://svnweb.freebsd.org/changeset/ports/443971 Log: Update to 2.9.43 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Tue Jun 20 13:29:35 2017 (r443970) +++ head/devel/rubygem-aws-sdk-resources/Makefile Tue Jun 20 13:29:40 2017 (r443971) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.9.42 +PORTVERSION= 2.9.43 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Tue Jun 20 13:29:35 2017 (r443970) +++ head/devel/rubygem-aws-sdk-resources/distinfo Tue Jun 20 13:29:40 2017 (r443971) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497688147 -SHA256 (rubygem/aws-sdk-resources-2.9.42.gem) = 00528fbde374b75e19ada6eb0881b897a80d2b856a1623cda205049d894e22e1 -SIZE (rubygem/aws-sdk-resources-2.9.42.gem) = 48640 +TIMESTAMP = 1497958603 +SHA256 (rubygem/aws-sdk-resources-2.9.43.gem) = acfba0ac13b21f2bbd8f0fc4114da7726801e199f59fb73ff9eec9e0c5a8241f +SIZE (rubygem/aws-sdk-resources-2.9.43.gem) = 48640 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F32E4D98DCF; Tue, 20 Jun 2017 13:29:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1DDF822DB; Tue, 20 Jun 2017 13:29:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDTjtF047009; Tue, 20 Jun 2017 13:29:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDTjqW047007; Tue, 20 Jun 2017 13:29:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDTjqW047007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443972 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:47 -0000 Author: sunpoet Date: Tue Jun 20 13:29:45 2017 New Revision: 443972 URL: https://svnweb.freebsd.org/changeset/ports/443972 Log: Update to 2.9.43 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Tue Jun 20 13:29:40 2017 (r443971) +++ head/devel/rubygem-aws-sdk/Makefile Tue Jun 20 13:29:45 2017 (r443972) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -PORTVERSION= 2.9.42 +PORTVERSION= 2.9.43 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Tue Jun 20 13:29:40 2017 (r443971) +++ head/devel/rubygem-aws-sdk/distinfo Tue Jun 20 13:29:45 2017 (r443972) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497688152 -SHA256 (rubygem/aws-sdk-2.9.42.gem) = 28126ffebc5d5ee92b25d8d3eb6ce78fec9a953599feb80da067144b7372f54a -SIZE (rubygem/aws-sdk-2.9.42.gem) = 4608 +TIMESTAMP = 1497958608 +SHA256 (rubygem/aws-sdk-2.9.43.gem) = c419f490fc382d4b34b2c448fb86893ec9ae4ebce461d019b039a0398d7e7384 +SIZE (rubygem/aws-sdk-2.9.43.gem) = 4608 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:29:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F5E3D98DFD; Tue, 20 Jun 2017 13:29:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA11E8234F; Tue, 20 Jun 2017 13:29:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDToW6047131; Tue, 20 Jun 2017 13:29:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDToZ5047129; Tue, 20 Jun 2017 13:29:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201329.v5KDToZ5047129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:29:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443973 - head/www/rubygem-hamlit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:29:52 -0000 Author: sunpoet Date: Tue Jun 20 13:29:50 2017 New Revision: 443973 URL: https://svnweb.freebsd.org/changeset/ports/443973 Log: Update to 2.8.2 Changes: https://github.com/k0kubun/hamlit/blob/master/CHANGELOG.md Modified: head/www/rubygem-hamlit/Makefile head/www/rubygem-hamlit/distinfo Modified: head/www/rubygem-hamlit/Makefile ============================================================================== --- head/www/rubygem-hamlit/Makefile Tue Jun 20 13:29:45 2017 (r443972) +++ head/www/rubygem-hamlit/Makefile Tue Jun 20 13:29:50 2017 (r443973) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= hamlit -PORTVERSION= 2.8.1 -PORTREVISION= 2 +PORTVERSION= 2.8.2 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-hamlit/distinfo ============================================================================== --- head/www/rubygem-hamlit/distinfo Tue Jun 20 13:29:45 2017 (r443972) +++ head/www/rubygem-hamlit/distinfo Tue Jun 20 13:29:50 2017 (r443973) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491291830 -SHA256 (rubygem/hamlit-2.8.1.gem) = 0116fa4700bc78c10d21199fc772a612139ae169c75ebc5d8ee3b664247ddaec -SIZE (rubygem/hamlit-2.8.1.gem) = 70656 +TIMESTAMP = 1497958615 +SHA256 (rubygem/hamlit-2.8.2.gem) = 536008a82030e0ad44a654f1b0b117685d5c584bbfde40fc00f8a2134de0eab4 +SIZE (rubygem/hamlit-2.8.2.gem) = 70656 From owner-svn-ports-head@freebsd.org Tue Jun 20 13:36:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5043BD992D4; Tue, 20 Jun 2017 13:36:52 +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 A1A2C83180; Tue, 20 Jun 2017 13:36:51 +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 v5KDaolp051035; Tue, 20 Jun 2017 13:36:50 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDao4Y051031; Tue, 20 Jun 2017 13:36:50 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201706201336.v5KDao4Y051031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 20 Jun 2017 13:36:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443974 - in head/www/pydio: . 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, 20 Jun 2017 13:36:52 -0000 Author: madpilot Date: Tue Jun 20 13:36:50 2017 New Revision: 443974 URL: https://svnweb.freebsd.org/changeset/ports/443974 Log: - Update www/pydio to 8.0.1 PR: 220148 Submitted by: net@arrishq.net (maintainer) Modified: head/www/pydio/Makefile head/www/pydio/distinfo head/www/pydio/files/pkg-message.in head/www/pydio/pkg-plist Modified: head/www/pydio/Makefile ============================================================================== --- head/www/pydio/Makefile Tue Jun 20 13:29:50 2017 (r443973) +++ head/www/pydio/Makefile Tue Jun 20 13:36:50 2017 (r443974) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pydio -PORTVERSION= 8.0.0 +PORTVERSION= 8.0.1 CATEGORIES= www MASTER_SITES= https://download.pydio.com/pub/core/archives/ DISTNAME= ${PORTNAME}-core-${PORTVERSION} Modified: head/www/pydio/distinfo ============================================================================== --- head/www/pydio/distinfo Tue Jun 20 13:29:50 2017 (r443973) +++ head/www/pydio/distinfo Tue Jun 20 13:36:50 2017 (r443974) @@ -1,3 +1,3 @@ -TIMESTAMP = 1488207715 -SHA256 (pydio-core-8.0.0.tar.gz) = 0d0e88a237b652a6f35c8735ab41e6f64a9c73333e67c424214ca417c4f1b490 -SIZE (pydio-core-8.0.0.tar.gz) = 54933292 +TIMESTAMP = 1497952085 +SHA256 (pydio-core-8.0.1.tar.gz) = db01fc0006dd3da5ee4ccf958dbd206ea67c24ecf6c7a8aed05a7ba252f606fd +SIZE (pydio-core-8.0.1.tar.gz) = 54719473 Modified: head/www/pydio/files/pkg-message.in ============================================================================== --- head/www/pydio/files/pkg-message.in Tue Jun 20 13:29:50 2017 (r443973) +++ head/www/pydio/files/pkg-message.in Tue Jun 20 13:36:50 2017 (r443974) @@ -60,20 +60,6 @@ is completed, Pydio may be updated using the web inter If you are upgrading from Pydio 7 to Pydio 8, please read follow the following quickstart guide for FreeBSD users. -If the installer / upgrader fails upon trying to access it and there is -an error message in your PHP log about "open_basedir" restriction from - -%%WWWDIR%%/pydio/plugins/gui.ajax/RichClient.php - -editing the file and changing line 512 from: - -if(file_exists(AJXP_INSTALL_PATH . "." . $imagesFolder)){ - -to - -if(file_exists(AJXP_INSTALL_PATH . "/" . $imagesFolder)){ - -should help with this issue. When using MySQL as database backend and the user you use for accessing the database might temporary need all privileges (GRANT ALL PRIVILEGES) Modified: head/www/pydio/pkg-plist ============================================================================== --- head/www/pydio/pkg-plist Tue Jun 20 13:29:50 2017 (r443973) +++ head/www/pydio/pkg-plist Tue Jun 20 13:36:50 2017 (r443974) @@ -4,36 +4,42 @@ %%WWWDIR%%/base.conf.php %%WWWDIR%%/cmd.php %%WWWDIR%%/conf/.htaccess +%%WWWDIR%%/conf/RELEASE_NOTE +%%WWWDIR%%/conf/VERSION +%%WWWDIR%%/conf/VERSION.php +%%WWWDIR%%/proxy.php +%%WWWDIR%%/publicLet.inc.php +%%WWWDIR%%/robots.txt +%%WWWDIR%%/runTests.php +%%WWWDIR%%/worker.php @sample %%WWWDIR%%/conf/bootstrap_conf.php.sample @sample %%WWWDIR%%/conf/bootstrap_context.php.sample @sample %%WWWDIR%%/conf/bootstrap_repositories.php.sample %%WWWDIR%%/conf/extensions.conf.php %%WWWDIR%%/conf/index.html %%WWWDIR%%/conf/mime.types -%%WWWDIR%%/conf/RELEASE_NOTE -%%WWWDIR%%/conf/VERSION -%%WWWDIR%%/conf/VERSION.php %%WWWDIR%%/core/compat.php %%WWWDIR%%/core/composer.json %%WWWDIR%%/core/composer.lock +%%WWWDIR%%/core/doc/API.odt +%%WWWDIR%%/core/doc/API_3.0.odt %%WWWDIR%%/core/doc/Ajaxplorer-DriverAPI-v2.3.pdf %%WWWDIR%%/core/doc/Ajaxplorer-DriverAPI-v3.pdf -%%WWWDIR%%/core/doc/ajaxplorer-manual-2.37-dist.html -%%WWWDIR%%/core/doc/API_3.0.odt -%%WWWDIR%%/core/doc/API.odt %%WWWDIR%%/core/doc/CHOSEN.txt %%WWWDIR%%/core/doc/CREDITS-ONLY.txt %%WWWDIR%%/core/doc/CREDITS.txt -%%WWWDIR%%/core/doc/hooks.json %%WWWDIR%%/core/doc/INSTALL.txt -%%WWWDIR%%/core/doc/LICENSE_until3.2.4.txt %%WWWDIR%%/core/doc/LICENSE-CAS.txt %%WWWDIR%%/core/doc/LICENSE-SABREDAV.txt %%WWWDIR%%/core/doc/LICENSE.txt -%%WWWDIR%%/core/doc/npm-licenses.csv +%%WWWDIR%%/core/doc/LICENSE_until3.2.4.txt %%WWWDIR%%/core/doc/PREVIOUS_RELEASES %%WWWDIR%%/core/doc/TROUBLESHOOTING.txt +%%WWWDIR%%/core/doc/ajaxplorer-manual-2.37-dist.html +%%WWWDIR%%/core/doc/hooks.json +%%WWWDIR%%/core/doc/npm-licenses.csv %%WWWDIR%%/core/src/index.html +%%WWWDIR%%/core/src/lib/HttpClient.php %%WWWDIR%%/core/src/lib/dibi/dibi.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiFirebirdDriver.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiMsSql2005Driver.php @@ -41,8 +47,8 @@ %%WWWDIR%%/core/src/lib/dibi/drivers/DibiMsSqlDriver.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiMsSqlReflector.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiMySqlDriver.php -%%WWWDIR%%/core/src/lib/dibi/drivers/DibiMySqliDriver.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiMySqlReflector.php +%%WWWDIR%%/core/src/lib/dibi/drivers/DibiMySqliDriver.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiOdbcDriver.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiOracleDriver.php %%WWWDIR%%/core/src/lib/dibi/drivers/DibiPdoDriver.php @@ -52,8 +58,8 @@ %%WWWDIR%%/core/src/lib/dibi/drivers/DibiSqliteReflector.php %%WWWDIR%%/core/src/lib/dibi/libs/Dibi.php %%WWWDIR%%/core/src/lib/dibi/libs/DibiConnection.php -%%WWWDIR%%/core/src/lib/dibi/libs/DibiDatabaseInfo.php %%WWWDIR%%/core/src/lib/dibi/libs/DibiDataSource.php +%%WWWDIR%%/core/src/lib/dibi/libs/DibiDatabaseInfo.php %%WWWDIR%%/core/src/lib/dibi/libs/DibiDateTime.php %%WWWDIR%%/core/src/lib/dibi/libs/DibiEvent.php %%WWWDIR%%/core/src/lib/dibi/libs/DibiException.php @@ -68,7 +74,6 @@ %%WWWDIR%%/core/src/lib/dibi/libs/DibiRow.php %%WWWDIR%%/core/src/lib/dibi/libs/DibiTranslator.php %%WWWDIR%%/core/src/lib/dibi/libs/interfaces.php -%%WWWDIR%%/core/src/lib/HttpClient.php %%WWWDIR%%/core/src/lib/pclzip.lib.php %%WWWDIR%%/core/src/phpunit/HOWTO %%WWWDIR%%/core/src/phpunit/Pydio/Tests/Atomics/CryptoTests.php @@ -191,10 +196,10 @@ %%WWWDIR%%/core/src/pydio/Core/Utils/DBHelper.php %%WWWDIR%%/core/src/pydio/Core/Utils/FileHelper.php %%WWWDIR%%/core/src/pydio/Core/Utils/Http/BruteForceHelper.php -%%WWWDIR%%/core/src/pydio/Core/Utils/Http/captcha_words.txt %%WWWDIR%%/core/src/pydio/Core/Utils/Http/CaptchaProvider.php %%WWWDIR%%/core/src/pydio/Core/Utils/Http/CookiesHelper.php %%WWWDIR%%/core/src/pydio/Core/Utils/Http/UserAgent.php +%%WWWDIR%%/core/src/pydio/Core/Utils/Http/captcha_words.txt %%WWWDIR%%/core/src/pydio/Core/Utils/Reflection/DiagnosticRunner.php %%WWWDIR%%/core/src/pydio/Core/Utils/Reflection/DocsParser.php %%WWWDIR%%/core/src/pydio/Core/Utils/Reflection/LocaleExtractor.php @@ -211,14 +216,8 @@ %%WWWDIR%%/core/src/pydio/Core/Utils/Vars/XMLFilter.php %%WWWDIR%%/core/src/pydio/Core/Utils/XMLHelper.php %%WWWDIR%%/core/src/pydio/Tests/AbstractTest.php -%%WWWDIR%%/core/src/pydio/Tests/api_test.phtml %%WWWDIR%%/core/src/pydio/Tests/Client.php %%WWWDIR%%/core/src/pydio/Tests/CryptoFunctions.php -%%WWWDIR%%/core/src/pydio/Tests/PHP_APC.php -%%WWWDIR%%/core/src/pydio/Tests/PHP_file_uploads.php -%%WWWDIR%%/core/src/pydio/Tests/PHP_INTL.php -%%WWWDIR%%/core/src/pydio/Tests/PHP_magic_quotes.php -%%WWWDIR%%/core/src/pydio/Tests/PHP_OB.php %%WWWDIR%%/core/src/pydio/Tests/PHPCLI.php %%WWWDIR%%/core/src/pydio/Tests/PHPDomXML.php %%WWWDIR%%/core/src/pydio/Tests/PHPErrorLevel.php @@ -228,14 +227,20 @@ %%WWWDIR%%/core/src/pydio/Tests/PHPOS.php %%WWWDIR%%/core/src/pydio/Tests/PHPSession.php %%WWWDIR%%/core/src/pydio/Tests/PHPVersion.php +%%WWWDIR%%/core/src/pydio/Tests/PHP_APC.php +%%WWWDIR%%/core/src/pydio/Tests/PHP_INTL.php +%%WWWDIR%%/core/src/pydio/Tests/PHP_OB.php +%%WWWDIR%%/core/src/pydio/Tests/PHP_file_uploads.php +%%WWWDIR%%/core/src/pydio/Tests/PHP_magic_quotes.php %%WWWDIR%%/core/src/pydio/Tests/PydioVersion.php -%%WWWDIR%%/core/src/pydio/Tests/ServerEncoding.php %%WWWDIR%%/core/src/pydio/Tests/SSLEncryption.php -%%WWWDIR%%/core/src/pydio/Tests/startup.phtml +%%WWWDIR%%/core/src/pydio/Tests/ServerEncoding.php %%WWWDIR%%/core/src/pydio/Tests/Upload.php %%WWWDIR%%/core/src/pydio/Tests/UsersConfig.php %%WWWDIR%%/core/src/pydio/Tests/Writeability.php %%WWWDIR%%/core/src/pydio/Tests/Zlib.php +%%WWWDIR%%/core/src/pydio/Tests/api_test.phtml +%%WWWDIR%%/core/src/pydio/Tests/startup.phtml %%WWWDIR%%/core/vendor/autoload.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.22.10 %%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.22.11 @@ -272,10 +277,24 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.27.1 %%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.27.2 %%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.27.3 -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/codecov.yml -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/composer.json +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.27.4 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.27.5 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.0 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.1 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.10 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.2 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.3 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.4 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.5 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.6 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.7 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.8 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.28.9 +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/.changes/3.29.0 %%WWWDIR%%/core/vendor/aws/aws-sdk-php/LICENSE.md %%WWWDIR%%/core/vendor/aws/aws-sdk-php/NOTICE.md +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/codecov.yml +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/composer.json %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Acm/AcmClient.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Acm/Exception/AcmException.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Api/AbstractModel.php @@ -323,6 +342,8 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ApplicationDiscoveryService/Exception/ApplicationDiscoveryServiceException.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Appstream/AppstreamClient.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Appstream/Exception/AppstreamException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Athena/AthenaClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Athena/Exception/AthenaException.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/AutoScaling/AutoScalingClient.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/AutoScaling/Exception/AutoScalingException.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/AwsClient.php @@ -390,6 +411,232 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Credentials/CredentialsInterface.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Credentials/EcsCredentialProvider.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Credentials/InstanceProfileProvider.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DataPipeline/DataPipelineClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DataPipeline/Exception/DataPipelineException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/DatabaseMigrationServiceClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/Exception/DatabaseMigrationServiceException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DeviceFarm/DeviceFarmClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DeviceFarm/Exception/DeviceFarmException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectConnect/DirectConnectClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectConnect/Exception/DirectConnectException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectoryService/DirectoryServiceClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectoryService/Exception/DirectoryServiceException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DoctrineCacheAdapter.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/BinaryValue.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/DynamoDbClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/Exception/DynamoDbException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/LockingSessionConnection.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/Marshaler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/NumberValue.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/SessionConnectionInterface.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/SessionHandler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/SetValue.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/StandardSessionConnection.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/WriteRequestBatch.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDbStreams/DynamoDbStreamsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDbStreams/Exception/DynamoDbStreamsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ec2/Ec2Client.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ec2/Exception/Ec2Exception.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecr/EcrClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecr/Exception/EcrException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecs/EcsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecs/Exception/EcsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Efs/EfsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Efs/Exception/EfsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElastiCache/ElastiCacheClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElastiCache/Exception/ElastiCacheException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/ElasticBeanstalkClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/Exception/ElasticBeanstalkException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/ElasticLoadBalancingClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/Exception/ElasticLoadBalancingV2Exception.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticTranscoder/ElasticTranscoderClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticTranscoder/Exception/ElasticTranscoderException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticsearchService/ElasticsearchServiceClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticsearchService/Exception/ElasticsearchServiceException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Emr/EmrClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Emr/Exception/EmrException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/Partition.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/AwsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/CredentialsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/MultipartUploadException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Firehose/Exception/FirehoseException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Firehose/FirehoseClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/GameLift/Exception/GameLiftException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/GameLift/GameLiftClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/Exception/GlacierException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/GlacierClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/MultipartUploader.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/TreeHash.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Greengrass/Exception/GreengrassException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Greengrass/GreengrassClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleHandler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleStream.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/PsrStream.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HandlerList.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HasDataTrait.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HashInterface.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HashingStream.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Health/Exception/HealthException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Health/HealthClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/History.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iam/Exception/IamException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iam/IamClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/IdempotencyTokenMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ImportExport/Exception/ImportExportException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ImportExport/ImportExportClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Inspector/Exception/InspectorException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Inspector/InspectorClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iot/Exception/IotException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iot/IotClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/IotDataPlane/Exception/IotDataPlaneException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/IotDataPlane/IotDataPlaneClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/JsonCompiler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kinesis/Exception/KinesisException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kinesis/KinesisClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/KinesisAnalytics/Exception/KinesisAnalyticsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/KinesisAnalytics/KinesisAnalyticsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kms/Exception/KmsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kms/KmsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lambda/Exception/LambdaException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lambda/LambdaClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexModelBuildingService/Exception/LexModelBuildingServiceException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexModelBuildingService/LexModelBuildingServiceClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexRuntimeService/Exception/LexRuntimeServiceException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexRuntimeService/LexRuntimeServiceClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lightsail/Exception/LightsailException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lightsail/LightsailClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LruArrayCache.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MTurk/Exception/MTurkException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MTurk/MTurkClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MachineLearning/Exception/MachineLearningException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MachineLearning/MachineLearningClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/Exception/MarketplaceCommerceAnalyticsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/MarketplaceCommerceAnalyticsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/Exception/MarketplaceEntitlementServiceException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/MarketplaceEntitlementServiceClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceMetering/Exception/MarketplaceMeteringException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceMetering/MarketplaceMeteringClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Middleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MockHandler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MultiRegionClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploader.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Multipart/UploadState.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorks/Exception/OpsWorksException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorks/OpsWorksClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorksCM/Exception/OpsWorksCMException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorksCM/OpsWorksCMClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Organizations/Exception/OrganizationsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Organizations/OrganizationsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/PhpHash.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Pinpoint/Exception/PinpointException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Pinpoint/PinpointClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Polly/Exception/PollyException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Polly/PollyClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/PresignUrlMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rds/AuthTokenGenerator.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rds/Exception/RdsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rds/RdsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Redshift/Exception/RedshiftException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Redshift/RedshiftClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rekognition/Exception/RekognitionException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rekognition/RekognitionClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/ResourceGroupsTaggingAPIClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Result.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResultInterface.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResultPaginator.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/RetryMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53/Exception/Route53Exception.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53/Route53Client.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53Domains/Exception/Route53DomainsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53Domains/Route53DomainsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/S3Exception.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/S3MultipartUploadException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/MultipartUploader.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PostObject.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3Client.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3ClientInterface.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Transfer.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sdk.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ServiceCatalog/Exception/ServiceCatalogException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ServiceCatalog/ServiceCatalogClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ses/Exception/SesException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ses/SesClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Shield/Exception/ShieldException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Shield/ShieldClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/AnonymousSignature.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/S3SignatureV4.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureInterface.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureProvider.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureTrait.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureV4.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sms/Exception/SmsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sms/SmsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/SnowBall/Exception/SnowBallException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/SnowBall/SnowBallClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sns/Exception/SnsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sns/SnsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sqs/Exception/SqsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sqs/SqsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ssm/SsmClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/StorageGateway/Exception/StorageGatewayException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/StorageGateway/StorageGatewayClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sts/Exception/StsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sts/StsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Support/Exception/SupportException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Support/SupportClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Swf/Exception/SwfException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Swf/SwfClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/TraceMiddleware.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Waf/Exception/WafException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Waf/WafClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WafRegional/Exception/WafRegionalException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WafRegional/WafRegionalClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Waiter.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkDocs/Exception/WorkDocsException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkDocs/WorkDocsClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkSpaces/Exception/WorkSpacesException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkSpaces/WorkSpacesClient.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WrappedHttpHandler.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/XRay/Exception/XRayException.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/XRay/XRayClient.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/acm/2015-12-08/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/apigateway/2015-07-09/api-2.json.php @@ -399,6 +646,8 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/appstream/2016-12-01/waiters-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/athena/2017-05-18/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/autoscaling/2011-01-01/waiters-2.json.php @@ -459,6 +708,7 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/cognito-identity/2014-06-30/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/cognito-idp/2016-04-18/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/cognito-sync/2014-06-30/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/config/2014-11-12/paginators-1.json.php @@ -474,6 +724,7 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/discovery/2015-11-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/dms/2016-01-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/ds/2015-04-16/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/dynamodb/2011-12-05/paginators-1.json.php @@ -539,6 +790,7 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/waiters-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/glacier/2012-06-01/waiters-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/greengrass/2017-06-07/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/health/2016-08-04/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/iam/2010-05-08/api-2.json.php @@ -547,11 +799,14 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/importexport/2010-06-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/inspector/2016-02-16/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/iot/2015-05-28/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kinesis/2013-12-02/waiters-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kinesisanalytics/2015-08-14/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/kms/2014-11-01/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/lambda/2015-03-31/api-2.json.php @@ -559,6 +814,7 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/lex-models/2017-04-19/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/lightsail/2016-11-28/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/logs/2014-03-28/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/machinelearning/2014-12-12/api-2.json.php @@ -628,6 +884,7 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/streams.dynamodb/2012-08-10/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/api-2.json.php +%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/sts/2011-06-15/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/support/2013-04-15/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/swf/2012-01-25/api-2.json.php @@ -641,242 +898,18 @@ %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/api-2.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/workspaces/2015-04-08/paginators-1.json.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/data/xray/2016-04-12/api-2.json.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/DatabaseMigrationServiceClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DatabaseMigrationService/Exception/DatabaseMigrationServiceException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DataPipeline/DataPipelineClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DataPipeline/Exception/DataPipelineException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DeviceFarm/DeviceFarmClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DeviceFarm/Exception/DeviceFarmException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectConnect/DirectConnectClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectConnect/Exception/DirectConnectException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectoryService/DirectoryServiceClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DirectoryService/Exception/DirectoryServiceException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DoctrineCacheAdapter.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/BinaryValue.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/DynamoDbClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/Exception/DynamoDbException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/LockingSessionConnection.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/Marshaler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/NumberValue.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/SessionConnectionInterface.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/SessionHandler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/SetValue.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/StandardSessionConnection.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDb/WriteRequestBatch.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDbStreams/DynamoDbStreamsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/DynamoDbStreams/Exception/DynamoDbStreamsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ec2/Ec2Client.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ec2/Exception/Ec2Exception.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecr/EcrClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecr/Exception/EcrException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecs/EcsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ecs/Exception/EcsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Efs/EfsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Efs/Exception/EfsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElastiCache/ElastiCacheClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElastiCache/Exception/ElastiCacheException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/ElasticBeanstalkClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticBeanstalk/Exception/ElasticBeanstalkException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/ElasticLoadBalancingClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticLoadBalancingV2/Exception/ElasticLoadBalancingV2Exception.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticsearchService/ElasticsearchServiceClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticsearchService/Exception/ElasticsearchServiceException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticTranscoder/ElasticTranscoderClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ElasticTranscoder/Exception/ElasticTranscoderException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Emr/EmrClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Emr/Exception/EmrException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/EndpointProvider.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/Partition.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/PartitionEndpointProvider.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/PartitionInterface.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Endpoint/PatternEndpointProvider.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/AwsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/CouldNotCreateChecksumException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/CredentialsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/MultipartUploadException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/UnresolvedApiException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/UnresolvedEndpointException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Exception/UnresolvedSignatureException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Firehose/Exception/FirehoseException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Firehose/FirehoseClient.php %%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/functions.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/GameLift/Exception/GameLiftException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/GameLift/GameLiftClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/Exception/GlacierException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/GlacierClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/MultipartUploader.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Glacier/TreeHash.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleHandler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleStream.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/PsrStream.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Handler/GuzzleV6/GuzzleHandler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HandlerList.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HasDataTrait.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HashingStream.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/HashInterface.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Health/Exception/HealthException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Health/HealthClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/History.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iam/Exception/IamException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iam/IamClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/IdempotencyTokenMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ImportExport/Exception/ImportExportException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ImportExport/ImportExportClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Inspector/Exception/InspectorException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Inspector/InspectorClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iot/Exception/IotException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Iot/IotClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/IotDataPlane/Exception/IotDataPlaneException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/IotDataPlane/IotDataPlaneClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/JsonCompiler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kinesis/Exception/KinesisException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kinesis/KinesisClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/KinesisAnalytics/Exception/KinesisAnalyticsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/KinesisAnalytics/KinesisAnalyticsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kms/Exception/KmsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Kms/KmsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lambda/Exception/LambdaException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lambda/LambdaClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexModelBuildingService/Exception/LexModelBuildingServiceException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexModelBuildingService/LexModelBuildingServiceClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexRuntimeService/Exception/LexRuntimeServiceException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LexRuntimeService/LexRuntimeServiceClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lightsail/Exception/LightsailException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Lightsail/LightsailClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/LruArrayCache.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MachineLearning/Exception/MachineLearningException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MachineLearning/MachineLearningClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/Exception/MarketplaceCommerceAnalyticsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceCommerceAnalytics/MarketplaceCommerceAnalyticsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/Exception/MarketplaceEntitlementServiceException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceEntitlementService/MarketplaceEntitlementServiceClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceMetering/Exception/MarketplaceMeteringException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MarketplaceMetering/MarketplaceMeteringClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Middleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MockHandler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MTurk/Exception/MTurkException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MTurk/MTurkClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploader.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Multipart/UploadState.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/MultiRegionClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorks/Exception/OpsWorksException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorks/OpsWorksClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorksCM/Exception/OpsWorksCMException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/OpsWorksCM/OpsWorksCMClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Organizations/Exception/OrganizationsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Organizations/OrganizationsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/PhpHash.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Pinpoint/Exception/PinpointException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Pinpoint/PinpointClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Polly/Exception/PollyException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Polly/PollyClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/PresignUrlMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/PsrCacheAdapter.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rds/AuthTokenGenerator.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rds/Exception/RdsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rds/RdsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Redshift/Exception/RedshiftException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Redshift/RedshiftClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rekognition/Exception/RekognitionException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Rekognition/RekognitionClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResourceGroupsTaggingAPI/ResourceGroupsTaggingAPIClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Result.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResultInterface.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ResultPaginator.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/RetryMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53/Exception/Route53Exception.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53/Route53Client.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53Domains/Exception/Route53DomainsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Route53Domains/Route53DomainsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/AmbiguousSuccessParser.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/ApplyChecksumMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/BatchDelete.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/BucketEndpointMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/DeleteMultipleObjectsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/PermanentRedirectException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/S3Exception.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Exception/S3MultipartUploadException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/GetBucketLocationParser.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/MultipartCopy.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/MultipartUploader.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/MultipartUploadingTrait.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/ObjectCopier.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/ObjectUploader.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PermanentRedirectMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PostObject.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PostObjectV4.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/PutObjectUrlMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/RetryableMalformedResponseParser.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3Client.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3ClientInterface.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3ClientTrait.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3EndpointMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3MultiRegionClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/S3UriParser.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/SSECMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/StreamWrapper.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/S3/Transfer.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sdk.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ServiceCatalog/Exception/ServiceCatalogException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/ServiceCatalog/ServiceCatalogClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ses/Exception/SesException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ses/SesClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Shield/Exception/ShieldException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Shield/ShieldClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/AnonymousSignature.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/S3SignatureV4.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureInterface.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureProvider.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureTrait.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Signature/SignatureV4.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sms/Exception/SmsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sms/SmsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/SnowBall/Exception/SnowBallException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/SnowBall/SnowBallClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sns/Exception/SnsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sns/SnsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sqs/Exception/SqsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sqs/SqsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ssm/Exception/SsmException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Ssm/SsmClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/StorageGateway/Exception/StorageGatewayException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/StorageGateway/StorageGatewayClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sts/Exception/StsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Sts/StsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Support/Exception/SupportException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Support/SupportClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Swf/Exception/SwfException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Swf/SwfClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/TraceMiddleware.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Waf/Exception/WafException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Waf/WafClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WafRegional/Exception/WafRegionalException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WafRegional/WafRegionalClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/Waiter.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkDocs/Exception/WorkDocsException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkDocs/WorkDocsClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkSpaces/Exception/WorkSpacesException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WorkSpaces/WorkSpacesClient.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/WrappedHttpHandler.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/XRay/Exception/XRayException.php -%%WWWDIR%%/core/vendor/aws/aws-sdk-php/src/XRay/XRayClient.php %%WWWDIR%%/core/vendor/bin/jp.php %%WWWDIR%%/core/vendor/bin/sabredav %%WWWDIR%%/core/vendor/bin/vobjectvalidate.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/.gitignore %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/.scrutinizer.yml %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/.travis.yml +%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/LICENSE +%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/README.md %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/composer.json %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/composer.lock -%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/LICENSE %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/phpunit.xml.dist -%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/README.md %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/src/AccessToken.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/src/GrantType/AuthorizationCode.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/src/GrantType/ClientCredentials.php @@ -888,25 +921,30 @@ %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/src/GrantType/RefreshTokenGrantTypeInterface.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/src/Oauth2Subscriber.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/AccessTokenTest.php -%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/bootstrap.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/GrantType/AuthorizationCodeTest.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/GrantType/JwtBearerTest.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/GrantType/PasswordCredentialsTest.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/GrantType/RefreshTokenTest.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/MockOAuth2Server.php %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/OAuth2SubscriberTest.php -%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/private.key %%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/TestBase.php +%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/bootstrap.php +%%WWWDIR%%/core/vendor/commerceguys/guzzle-oauth2-plugin/tests/private.key +%%WWWDIR%%/core/vendor/composer/ClassLoader.php +%%WWWDIR%%/core/vendor/composer/LICENSE %%WWWDIR%%/core/vendor/composer/autoload_classmap.php %%WWWDIR%%/core/vendor/composer/autoload_files.php %%WWWDIR%%/core/vendor/composer/autoload_namespaces.php %%WWWDIR%%/core/vendor/composer/autoload_psr4.php %%WWWDIR%%/core/vendor/composer/autoload_real.php %%WWWDIR%%/core/vendor/composer/autoload_static.php -%%WWWDIR%%/core/vendor/composer/ClassLoader.php %%WWWDIR%%/core/vendor/composer/installed.json -%%WWWDIR%%/core/vendor/composer/LICENSE %%WWWDIR%%/core/vendor/dapphp/securimage/AHGBold.ttf +%%WWWDIR%%/core/vendor/dapphp/securimage/LICENSE.txt +%%WWWDIR%%/core/vendor/dapphp/securimage/README.FONT.txt +%%WWWDIR%%/core/vendor/dapphp/securimage/README.md +%%WWWDIR%%/core/vendor/dapphp/securimage/README.txt +%%WWWDIR%%/core/vendor/dapphp/securimage/WavFile.php %%WWWDIR%%/core/vendor/dapphp/securimage/audio/.htaccess %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/0.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/1.wav @@ -934,7 +972,6 @@ %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/C.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/D.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/E.wav -%%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/error.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/F.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/G.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/H.wav @@ -959,6 +996,7 @@ %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/X.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/Y.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/Z.wav +%%WWWDIR%%/core/vendor/dapphp/securimage/audio/en/error.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/noise/check-point-1.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/noise/crowd-talking-1.wav %%WWWDIR%%/core/vendor/dapphp/securimage/audio/noise/crowd-talking-6.wav @@ -988,22 +1026,18 @@ %%WWWDIR%%/core/vendor/dapphp/securimage/images/audio_icon.png %%WWWDIR%%/core/vendor/dapphp/securimage/images/loading.png %%WWWDIR%%/core/vendor/dapphp/securimage/images/refresh.png -%%WWWDIR%%/core/vendor/dapphp/securimage/LICENSE.txt -%%WWWDIR%%/core/vendor/dapphp/securimage/README.FONT.txt -%%WWWDIR%%/core/vendor/dapphp/securimage/README.md -%%WWWDIR%%/core/vendor/dapphp/securimage/README.txt -%%WWWDIR%%/core/vendor/dapphp/securimage/securimage_play.php -%%WWWDIR%%/core/vendor/dapphp/securimage/securimage_play.swf -%%WWWDIR%%/core/vendor/dapphp/securimage/securimage_show.php %%WWWDIR%%/core/vendor/dapphp/securimage/securimage.css %%WWWDIR%%/core/vendor/dapphp/securimage/securimage.js %%WWWDIR%%/core/vendor/dapphp/securimage/securimage.php -%%WWWDIR%%/core/vendor/dapphp/securimage/WavFile.php +%%WWWDIR%%/core/vendor/dapphp/securimage/securimage_play.php +%%WWWDIR%%/core/vendor/dapphp/securimage/securimage_play.swf +%%WWWDIR%%/core/vendor/dapphp/securimage/securimage_show.php %%WWWDIR%%/core/vendor/dapphp/securimage/words/words.txt -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/config -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/description %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/FETCH_HEAD %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/HEAD +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/ORIG_HEAD +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/config +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/description %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/hooks/applypatch-msg.sample %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/hooks/commit-msg.sample %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/hooks/post-update.sample @@ -1021,9 +1055,8 @@ %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/logs/refs/remotes/composer/forcedisconnect %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/logs/refs/remotes/composer/master %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/logs/refs/remotes/origin/HEAD -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/objects/pack/pack-d595481bacdaba385a2d1bfa34620e5b6e744ad5.idx -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/objects/pack/pack-d595481bacdaba385a2d1bfa34620e5b6e744ad5.pack -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/ORIG_HEAD +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/objects/pack/pack-61d6e10a56b776c950ac2c98fcb9123fd3b94b6b.idx +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/objects/pack/pack-61d6e10a56b776c950ac2c98fcb9123fd3b94b6b.pack %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/packed-refs %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/refs/heads/master %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/refs/remotes/composer/eventloop @@ -1032,6 +1065,7 @@ %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.git/refs/remotes/origin/HEAD %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.gitignore %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/.gitmodules +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/LICENSE %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/bootstrap.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/composer.json %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/cruft/simple-sub.php @@ -1039,7 +1073,6 @@ %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/cruft/test-dedupe.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/cruft/test-pub.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/cruft/test-sub.php -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/LICENSE %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/readme.md %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Connection/Connection.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Connection/ConnectionInterface.php @@ -1061,72 +1094,72 @@ %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Lookup/Nsqlookupd.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Message/Message.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Message/MessageInterface.php -%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/nsqphp.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/RequeueStrategy/DelaysList.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/RequeueStrategy/FixedDelay.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/RequeueStrategy/GrowingDelay.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/RequeueStrategy/RequeueStrategyInterface.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Wire/Reader.php %%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/Wire/Writer.php +%%WWWDIR%%/core/vendor/davegardnerisme/nsqphp/src/nsqphp/nsqphp.php %%WWWDIR%%/core/vendor/evenement/evenement/.gitignore %%WWWDIR%%/core/vendor/evenement/evenement/.travis.yml %%WWWDIR%%/core/vendor/evenement/evenement/CHANGELOG.md -%%WWWDIR%%/core/vendor/evenement/evenement/composer.json %%WWWDIR%%/core/vendor/evenement/evenement/LICENSE -%%WWWDIR%%/core/vendor/evenement/evenement/phpunit.xml.dist %%WWWDIR%%/core/vendor/evenement/evenement/README.md +%%WWWDIR%%/core/vendor/evenement/evenement/composer.json +%%WWWDIR%%/core/vendor/evenement/evenement/phpunit.xml.dist %%WWWDIR%%/core/vendor/evenement/evenement/src/Evenement/EventEmitter.php %%WWWDIR%%/core/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php %%WWWDIR%%/core/vendor/evenement/evenement/src/Evenement/EventEmitterTrait.php -%%WWWDIR%%/core/vendor/evenement/evenement/tests/bootstrap.php %%WWWDIR%%/core/vendor/evenement/evenement/tests/Evenement/Tests/EventEmitterTest.php %%WWWDIR%%/core/vendor/evenement/evenement/tests/Evenement/Tests/Listener.php +%%WWWDIR%%/core/vendor/evenement/evenement/tests/bootstrap.php %%WWWDIR%%/core/vendor/firebase/php-jwt/.gitignore %%WWWDIR%%/core/vendor/firebase/php-jwt/.travis.yml %%WWWDIR%%/core/vendor/firebase/php-jwt/Authentication/JWT.php -%%WWWDIR%%/core/vendor/firebase/php-jwt/composer.json -%%WWWDIR%%/core/vendor/firebase/php-jwt/composer.lock -%%WWWDIR%%/core/vendor/firebase/php-jwt/composer.phar %%WWWDIR%%/core/vendor/firebase/php-jwt/Exceptions/BeforeValidException.php %%WWWDIR%%/core/vendor/firebase/php-jwt/Exceptions/ExpiredException.php %%WWWDIR%%/core/vendor/firebase/php-jwt/Exceptions/SignatureInvalidException.php %%WWWDIR%%/core/vendor/firebase/php-jwt/LICENSE +%%WWWDIR%%/core/vendor/firebase/php-jwt/README.md +%%WWWDIR%%/core/vendor/firebase/php-jwt/composer.json +%%WWWDIR%%/core/vendor/firebase/php-jwt/composer.lock +%%WWWDIR%%/core/vendor/firebase/php-jwt/composer.phar %%WWWDIR%%/core/vendor/firebase/php-jwt/package.xml %%WWWDIR%%/core/vendor/firebase/php-jwt/phpunit.xml.dist -%%WWWDIR%%/core/vendor/firebase/php-jwt/README.md %%WWWDIR%%/core/vendor/firebase/php-jwt/run-tests.sh +%%WWWDIR%%/core/vendor/firebase/php-jwt/tests/JWTTest.php %%WWWDIR%%/core/vendor/firebase/php-jwt/tests/autoload.php.dist %%WWWDIR%%/core/vendor/firebase/php-jwt/tests/bootstrap.php -%%WWWDIR%%/core/vendor/firebase/php-jwt/tests/JWTTest.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/.gitignore %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/.travis.yml +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/LICENSE +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/README.md %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/composer.json %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/composer.lock -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/LICENSE %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/phpunit.xml.dist -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/README.md %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/src/FileLoader.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/src/JsonLoader.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/src/PhpLoader.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/src/YamlLoader.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/bootstrap.php -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import_import.json -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import_import.php -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import_import.yml -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import.json -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import.php -%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import.yml %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description.json %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description.yml +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import.json +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import.php +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import.yml +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import_import.json +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import_import.php +%%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/description_import_import.yml %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/invalid.json %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/invalid.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/fixtures/invalid.yml %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/suite/JsonLoaderTest.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/suite/PhpLoaderTest.php %%WWWDIR%%/core/vendor/gimler/guzzle-description-loader/tests/suite/YamlLoaderTest.php -%%WWWDIR%%/core/vendor/guzzlehttp/command/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/command/LICENSE +%%WWWDIR%%/core/vendor/guzzlehttp/command/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/command/src/AbstractClient.php %%WWWDIR%%/core/vendor/guzzlehttp/command/src/Command.php %%WWWDIR%%/core/vendor/guzzlehttp/command/src/CommandInterface.php @@ -1145,11 +1178,11 @@ %%WWWDIR%%/core/vendor/guzzlehttp/command/src/Subscriber/ResultMock.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/.gitignore %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/.travis.yml -%%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/LICENSE %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/Makefile -%%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/phpunit.xml.dist %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/README.rst +%%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/composer.json +%%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/phpunit.xml.dist %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/src/Description.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/src/DescriptionInterface.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/src/GuzzleClient.php @@ -1205,9 +1238,10 @@ %%WWWDIR%%/core/vendor/guzzlehttp/guzzle-services/tests/Subscriber/ValidateInputTest.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/.travis.yml %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/CHANGELOG.md -%%WWWDIR%%/core/vendor/guzzlehttp/guzzle/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/LICENSE %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/README.md +%%WWWDIR%%/core/vendor/guzzlehttp/guzzle/UPGRADING.md +%%WWWDIR%%/core/vendor/guzzlehttp/guzzle/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/src/BatchResults.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/src/Client.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/src/ClientInterface.php @@ -1279,19 +1313,16 @@ %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/src/UriTemplate.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/src/Url.php %%WWWDIR%%/core/vendor/guzzlehttp/guzzle/src/Utils.php -%%WWWDIR%%/core/vendor/guzzlehttp/guzzle/UPGRADING.md %%WWWDIR%%/core/vendor/guzzlehttp/promises/CHANGELOG.md -%%WWWDIR%%/core/vendor/guzzlehttp/promises/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/promises/LICENSE %%WWWDIR%%/core/vendor/guzzlehttp/promises/Makefile %%WWWDIR%%/core/vendor/guzzlehttp/promises/README.md +%%WWWDIR%%/core/vendor/guzzlehttp/promises/composer.json %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/AggregateException.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/CancellationException.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/Coroutine.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/EachPromise.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/FulfilledPromise.php -%%WWWDIR%%/core/vendor/guzzlehttp/promises/src/functions_include.php -%%WWWDIR%%/core/vendor/guzzlehttp/promises/src/functions.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/Promise.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/PromiseInterface.php %%WWWDIR%%/core/vendor/guzzlehttp/promises/src/PromisorInterface.php @@ -1299,17 +1330,17 @@ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Jun 20 13:59:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 784DFD99782; Tue, 20 Jun 2017 13:59:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51AEB83B7D; Tue, 20 Jun 2017 13:59:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KDx9Ag059412; Tue, 20 Jun 2017 13:59:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KDx8GL059406; Tue, 20 Jun 2017 13:59:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201359.v5KDx8GL059406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 13:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443975 - in head: games/aquaria multimedia/libmediainfo sysutils/fusefs-encfs textproc/tinyxml2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 13:59:10 -0000 Author: sunpoet Date: Tue Jun 20 13:59:08 2017 New Revision: 443975 URL: https://svnweb.freebsd.org/changeset/ports/443975 Log: Update textproc/tinyxml2 to 5.0.0 - Use PLIST instead of PLIST_FILES - Bump PORTREVISION for shlib change Changes: https://github.com/leethomason/tinyxml2/commits/master Added: head/textproc/tinyxml2/pkg-plist (contents, props changed) Modified: head/games/aquaria/Makefile head/multimedia/libmediainfo/Makefile head/sysutils/fusefs-encfs/Makefile head/textproc/tinyxml2/Makefile head/textproc/tinyxml2/distinfo Modified: head/games/aquaria/Makefile ============================================================================== --- head/games/aquaria/Makefile Tue Jun 20 13:36:50 2017 (r443974) +++ head/games/aquaria/Makefile Tue Jun 20 13:59:08 2017 (r443975) @@ -4,6 +4,7 @@ PORTNAME= aquaria DISTVERSIONPREFIX= OSE-v DISTVERSION= 1.002-22 DISTVERSIONSUFFIX= -g84366ad +PORTREVISION= 1 CATEGORIES= games MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/libmediainfo/Makefile ============================================================================== --- head/multimedia/libmediainfo/Makefile Tue Jun 20 13:36:50 2017 (r443974) +++ head/multimedia/libmediainfo/Makefile Tue Jun 20 13:59:08 2017 (r443975) @@ -3,6 +3,7 @@ PORTNAME= libmediainfo PORTVERSION= 0.7.96 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://mediaarea.net/download/binary/mediainfo/${PORTVERSION}/ \ LOCAL/sunpoet Modified: head/sysutils/fusefs-encfs/Makefile ============================================================================== --- head/sysutils/fusefs-encfs/Makefile Tue Jun 20 13:36:50 2017 (r443974) +++ head/sysutils/fusefs-encfs/Makefile Tue Jun 20 13:59:08 2017 (r443975) @@ -3,7 +3,7 @@ PORTNAME= encfs PORTVERSION= 1.9.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= sysutils PKGNAMEPREFIX= fusefs- Modified: head/textproc/tinyxml2/Makefile ============================================================================== --- head/textproc/tinyxml2/Makefile Tue Jun 20 13:36:50 2017 (r443974) +++ head/textproc/tinyxml2/Makefile Tue Jun 20 13:59:08 2017 (r443975) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tinyxml2 -PORTVERSION= 4.0.1 +PORTVERSION= 5.0.0 PORTEPOCH= 1 CATEGORIES= textproc @@ -17,20 +17,15 @@ CMAKE_ARGS= -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS USE_LDCONFIG= yes USES= cmake dos2unix pathfix -PLIST_FILES= include/tinyxml2.h \ - lib/libtinyxml2.a \ - lib/libtinyxml2.so \ - lib/libtinyxml2.so.${PORTVERSION:R:R} \ - lib/libtinyxml2.so.${PORTVERSION} \ - libdata/pkgconfig/tinyxml2.pc -PORTEXAMPLES= resources xmltest.cpp +PLIST_SUB= PORTVERSION=${PORTVERSION} SHLIB_VER=${PORTVERSION:R:R} +PORTEXAMPLES= * GH_ACCOUNT= leethomason USE_GITHUB= yes post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ - cd ${WRKSRC}/ && ${COPYTREE_SHARE} "${PORTEXAMPLES}" ${STAGEDIR}${EXAMPLESDIR}/ + cd ${WRKSRC}/ && ${COPYTREE_SHARE} resources ${STAGEDIR}${EXAMPLESDIR}/ do-test: cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} xmltest && ./xmltest Modified: head/textproc/tinyxml2/distinfo ============================================================================== --- head/textproc/tinyxml2/distinfo Tue Jun 20 13:36:50 2017 (r443974) +++ head/textproc/tinyxml2/distinfo Tue Jun 20 13:59:08 2017 (r443975) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495726911 -SHA256 (leethomason-tinyxml2-4.0.1_GH0.tar.gz) = 14b38ef25cc136d71339ceeafb4856bb638d486614103453eccd323849267f20 -SIZE (leethomason-tinyxml2-4.0.1_GH0.tar.gz) = 344295 +TIMESTAMP = 1497958457 +SHA256 (leethomason-tinyxml2-5.0.0_GH0.tar.gz) = d88cd8cece80162a2d7a1a0801aa4fc771d4ed6b094b475d00f303eda30bc87d +SIZE (leethomason-tinyxml2-5.0.0_GH0.tar.gz) = 349522 Added: head/textproc/tinyxml2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/tinyxml2/pkg-plist Tue Jun 20 13:59:08 2017 (r443975) @@ -0,0 +1,9 @@ +include/tinyxml2.h +lib/cmake/tinyxml2/tinyxml2Config.cmake +lib/cmake/tinyxml2/tinyxml2Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/tinyxml2/tinyxml2Targets.cmake +lib/libtinyxml2.a +lib/libtinyxml2.so +lib/libtinyxml2.so.%%SHLIB_VER%% +lib/libtinyxml2.so.%%PORTVERSION%% +libdata/pkgconfig/tinyxml2.pc From owner-svn-ports-head@freebsd.org Tue Jun 20 14:10:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2429AD99A9D; Tue, 20 Jun 2017 14:10:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E84E984141; Tue, 20 Jun 2017 14:10:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KEAQIn063624; Tue, 20 Jun 2017 14:10:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KEAQkY063623; Tue, 20 Jun 2017 14:10:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201410.v5KEAQkY063623@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 14:10:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443976 - head/textproc/tinyxml2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 14:10:27 -0000 Author: sunpoet Date: Tue Jun 20 14:10:25 2017 New Revision: 443976 URL: https://svnweb.freebsd.org/changeset/ports/443976 Log: Do not build xmltest unconditionally Modified: head/textproc/tinyxml2/Makefile Modified: head/textproc/tinyxml2/Makefile ============================================================================== --- head/textproc/tinyxml2/Makefile Tue Jun 20 13:59:08 2017 (r443975) +++ head/textproc/tinyxml2/Makefile Tue Jun 20 14:10:25 2017 (r443976) @@ -13,7 +13,7 @@ LICENSE= ZLIB OPTIONS_DEFINE= EXAMPLES -CMAKE_ARGS= -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON +CMAKE_ARGS= -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_TESTS=OFF USE_LDCONFIG= yes USES= cmake dos2unix pathfix From owner-svn-ports-head@freebsd.org Tue Jun 20 14:24:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9410D99DA0; Tue, 20 Jun 2017 14:24:14 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DDF484A0E; Tue, 20 Jun 2017 14:24:14 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KEODlb071520; Tue, 20 Jun 2017 14:24:13 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KEODIA071518; Tue, 20 Jun 2017 14:24:13 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201706201424.v5KEODIA071518@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 20 Jun 2017 14:24:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443977 - head/www/rubygem-rails50 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 14:24:14 -0000 Author: jrm Date: Tue Jun 20 14:24:13 2017 New Revision: 443977 URL: https://svnweb.freebsd.org/changeset/ports/443977 Log: www/rubygem-rails50: Update to version 5.0.4 Modified: head/www/rubygem-rails50/Makefile head/www/rubygem-rails50/distinfo Modified: head/www/rubygem-rails50/Makefile ============================================================================== --- head/www/rubygem-rails50/Makefile Tue Jun 20 14:10:25 2017 (r443976) +++ head/www/rubygem-rails50/Makefile Tue Jun 20 14:24:13 2017 (r443977) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rails -PORTVERSION= 5.0.3 +PORTVERSION= 5.0.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 Modified: head/www/rubygem-rails50/distinfo ============================================================================== --- head/www/rubygem-rails50/distinfo Tue Jun 20 14:10:25 2017 (r443976) +++ head/www/rubygem-rails50/distinfo Tue Jun 20 14:24:13 2017 (r443977) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495662793 -SHA256 (rubygem/rails-5.0.3.gem) = fba5f99999f1b01367010f0d85a28b5d992d5866766fbc3d485bce8e14915f2b -SIZE (rubygem/rails-5.0.3.gem) = 6144 +TIMESTAMP = 1497967264 +SHA256 (rubygem/rails-5.0.4.gem) = 956e9bd0acf86701b139432eb3c9e6bc6d2f51e7cccec9a5dcf9c7d3cb14d87d +SIZE (rubygem/rails-5.0.4.gem) = 6144 From owner-svn-ports-head@freebsd.org Tue Jun 20 14:36:50 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58D73D9A14C; Tue, 20 Jun 2017 14:36:50 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2948F803; Tue, 20 Jun 2017 14:36:50 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KEanbv075876; Tue, 20 Jun 2017 14:36:49 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KEan6m075874; Tue, 20 Jun 2017 14:36:49 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201706201436.v5KEan6m075874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Tue, 20 Jun 2017 14:36:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443978 - head/sysutils/ndmpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 14:36:50 -0000 Author: lifanov Date: Tue Jun 20 14:36:49 2017 New Revision: 443978 URL: https://svnweb.freebsd.org/changeset/ports/443978 Log: sysutils/ndmpd: move to Github, NFC Modified: head/sysutils/ndmpd/Makefile head/sysutils/ndmpd/distinfo Modified: head/sysutils/ndmpd/Makefile ============================================================================== --- head/sysutils/ndmpd/Makefile Tue Jun 20 14:24:13 2017 (r443977) +++ head/sysutils/ndmpd/Makefile Tue Jun 20 14:36:49 2017 (r443978) @@ -2,17 +2,18 @@ PORTNAME= ndmpd PORTVERSION= 1.0 +DISTVERSIONPREFIX= v CATEGORIES= sysutils -MASTER_SITES= https://bitbucket.org/araujobsd/ndmp-freebsd/get/ MAINTAINER= lifanov@FreeBSD.org COMMENT= Network Data Management Protocol daemon LICENSE= BSD3CLAUSE -WRKSRC= ${WRKDIR}/araujobsd-ndmp-freebsd-daa00f9dc732 +USE_GITHUB= yes +GH_ACCOUNT= lifanov -ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS= amd64 i386 PLIST_FILES= sbin/ndmpd etc/ndmpd.conf.example do-install: Modified: head/sysutils/ndmpd/distinfo ============================================================================== --- head/sysutils/ndmpd/distinfo Tue Jun 20 14:24:13 2017 (r443977) +++ head/sysutils/ndmpd/distinfo Tue Jun 20 14:36:49 2017 (r443978) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496990060 -SHA256 (ndmpd-1.0.tar.gz) = 17cfad7791e4de0b5eaf3896eccab71a47a95b66ec85e9166700536e3e406ede -SIZE (ndmpd-1.0.tar.gz) = 1402623 +TIMESTAMP = 1497969268 +SHA256 (lifanov-ndmpd-v1.0_GH0.tar.gz) = 87dce8f173e4a67012161335bb1dfdd25c08e608d8d400643093c7eef6f6e575 +SIZE (lifanov-ndmpd-v1.0_GH0.tar.gz) = 1402275 From owner-svn-ports-head@freebsd.org Tue Jun 20 15:04:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8730D9AA77; Tue, 20 Jun 2017 15:04:46 +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 B58741B5E; Tue, 20 Jun 2017 15:04:46 +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 v5KF4jA1088674; Tue, 20 Jun 2017 15:04:45 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KF4jfe088673; Tue, 20 Jun 2017 15:04:45 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706201504.v5KF4jfe088673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 20 Jun 2017 15:04:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443983 - head/emulators/rpcs3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 15:04:47 -0000 Author: jbeich Date: Tue Jun 20 15:04:45 2017 New Revision: 443983 URL: https://svnweb.freebsd.org/changeset/ports/443983 Log: emulators/rpcs3: unbreak non-parallel build rpcs3/rpcs3_version.cpp:3:10: fatal error: 'git-version.h' file not found #include "git-version.h" ^~~~~~~~~~~~~~~ 1 error generated. Reported by: pkg-fallout Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Tue Jun 20 14:46:14 2017 (r443982) +++ head/emulators/rpcs3/Makefile Tue Jun 20 15:04:45 2017 (r443983) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.2-312 -DISTVERSIONSUFFIX= -gcddf0bf7 # tracking #2813 +DISTVERSION= 0.0.2-313 +DISTVERSIONSUFFIX= -g7c99639f # tracking #2813 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Tue Jun 20 14:46:14 2017 (r443982) +++ head/emulators/rpcs3/distinfo Tue Jun 20 15:04:45 2017 (r443983) @@ -1,6 +1,6 @@ -TIMESTAMP = 1497896268 -SHA256 (RPCS3-rpcs3-v0.0.2-312-gcddf0bf7_GH0.tar.gz) = 77ac9a9666c178c1c52c470b9c047bb4caa14ba92925fc8e3a5509e8c6275767 -SIZE (RPCS3-rpcs3-v0.0.2-312-gcddf0bf7_GH0.tar.gz) = 11247315 +TIMESTAMP = 1497970210 +SHA256 (RPCS3-rpcs3-v0.0.2-313-g7c99639f_GH0.tar.gz) = f2be2e83eb78ecc49dfe32ae7a633f6ac86985aaecfbf198749363e76283c0e4 +SIZE (RPCS3-rpcs3-v0.0.2-313-g7c99639f_GH0.tar.gz) = 11247042 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-head@freebsd.org Tue Jun 20 15:05:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1982FD9AA9F; Tue, 20 Jun 2017 15:05:07 +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 DE0E61C52; Tue, 20 Jun 2017 15:05:06 +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 v5KF56wB088815; Tue, 20 Jun 2017 15:05:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KF5688088813; Tue, 20 Jun 2017 15:05:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706201505.v5KF5688088813@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 20 Jun 2017 15:05:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443984 - head/www/py-flexget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 15:05:07 -0000 Author: jbeich Date: Tue Jun 20 15:05:05 2017 New Revision: 443984 URL: https://svnweb.freebsd.org/changeset/ports/443984 Log: www/py-flexget: update to 2.10.62 Changes: https://github.com/Flexget/Flexget/compare/2.10.60...2.10.62 Modified: head/www/py-flexget/Makefile (contents, props changed) head/www/py-flexget/distinfo (contents, props changed) Modified: head/www/py-flexget/Makefile ============================================================================== --- head/www/py-flexget/Makefile Tue Jun 20 15:04:45 2017 (r443983) +++ head/www/py-flexget/Makefile Tue Jun 20 15:05:05 2017 (r443984) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.10.60 +PORTVERSION= 2.10.62 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-flexget/distinfo ============================================================================== --- head/www/py-flexget/distinfo Tue Jun 20 15:04:45 2017 (r443983) +++ head/www/py-flexget/distinfo Tue Jun 20 15:05:05 2017 (r443984) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496715229 -SHA256 (flexget-Flexget-2.10.60_GH0.tar.gz) = 7af6b652e568e02803ac46bff37a45dbe48db4d16ffcc0eacaa8815f1fb48eb4 -SIZE (flexget-Flexget-2.10.60_GH0.tar.gz) = 6711381 +TIMESTAMP = 1497924840 +SHA256 (flexget-Flexget-2.10.62_GH0.tar.gz) = 3994c8f5eff60083d38b4f7dee94a54189c4ba09ce806c61b675357fd6a51909 +SIZE (flexget-Flexget-2.10.62_GH0.tar.gz) = 6711672 From owner-svn-ports-head@freebsd.org Tue Jun 20 15:14:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 934AED9AC8E; Tue, 20 Jun 2017 15:14:03 +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 65682217B; Tue, 20 Jun 2017 15:14:03 +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 v5KFE2nY093188; Tue, 20 Jun 2017 15:14:02 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KFE2sQ093182; Tue, 20 Jun 2017 15:14:02 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201706201514.v5KFE2sQ093182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Tue, 20 Jun 2017 15:14:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443985 - in head/games/widelands: . 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, 20 Jun 2017 15:14:03 -0000 Author: madpilot Date: Tue Jun 20 15:14:01 2017 New Revision: 443985 URL: https://svnweb.freebsd.org/changeset/ports/443985 Log: - Update games/widelands to build19 PR: 216457 Submitted by: Piotr Kubaj Approved by: maintainer timeout Added: head/games/widelands/files/patch-cmake_WlFunctions.cmake (contents, props changed) head/games/widelands/pkg-plist (contents, props changed) Deleted: head/games/widelands/files/patch-src-i18n.cc Modified: head/games/widelands/Makefile head/games/widelands/distinfo head/games/widelands/files/patch-CMakeLists.txt Modified: head/games/widelands/Makefile ============================================================================== --- head/games/widelands/Makefile Tue Jun 20 15:05:05 2017 (r443984) +++ head/games/widelands/Makefile Tue Jun 20 15:14:01 2017 (r443985) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= widelands -DISTVERSION= build18 -PORTREVISION= 11 +DISTVERSION= build19 CATEGORIES= games -MASTER_SITES= https://launchpadlibrarian.net/167260749/ \ +MASTER_SITES= https://launchpad.net/widelands/${DISTVERSION}/${DISTVERSION}/+download/ \ http://mirror.amdmi3.ru/distfiles/ DISTNAME= ${PORTNAME}-${DISTVERSION}-src @@ -19,19 +18,18 @@ LIB_DEPENDS= libpng.so:graphics/png BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs USES= cmake:outsource compiler:c++11-lib execinfo gettext \ - lua:51 tar:bzip2 python:build -CMAKE_ARGS= -DWL_INSTALL_PREFIX="${PREFIX}" \ - -DWL_INSTALL_DATADIR="share/widelands" \ + lua:52 tar:bzip2 python:build +CMAKE_ARGS= -DWL_INSTALL_BASEDIR="${PREFIX}" \ + -DWL_INSTALL_DATADIR="${DATADIR}" \ + -DWL_INSTALL_DOCDIR="${DOCSDIR}" \ -DWL_INSTALL_BINDIR="bin" \ -DWL_VERSION="${DISTVERSION}" \ - -DWL_COMPILERFLAG_OPTIMIZATIONS="" + -DWL_OPTIMIZE_FLAGS="" USE_GL= glew -USE_SDL= sdl mixer image net ttf gfx +USE_SDL= sdl2 mixer2 image2 net2 ttf2 -PLIST_FILES= bin/widelands PORTDATA= * -PLIST_DIRS= %%DATADIR%%/maps/Desert\ Tournament.wmf/scripting \ - %%DATADIR%%/maps/Swamp\ Monks.wmf/scripting +PORTDOCS= * DESKTOP_ENTRIES="Widelands" \ "" \ Modified: head/games/widelands/distinfo ============================================================================== --- head/games/widelands/distinfo Tue Jun 20 15:05:05 2017 (r443984) +++ head/games/widelands/distinfo Tue Jun 20 15:14:01 2017 (r443985) @@ -1,2 +1,3 @@ -SHA256 (widelands-build18-src.tar.bz2) = 6dffd9178f93ff7a9c3c0c9b31b7d3b8eb060c79fbd98901e6311837390b7de3 -SIZE (widelands-build18-src.tar.bz2) = 183443325 +TIMESTAMP = 1494019260 +SHA256 (widelands-build19-src.tar.bz2) = e511f9d26828a2b71b64cdfc6674e6e847543b2da73961ab882acca36c7c01a6 +SIZE (widelands-build19-src.tar.bz2) = 181609391 Modified: head/games/widelands/files/patch-CMakeLists.txt ============================================================================== --- head/games/widelands/files/patch-CMakeLists.txt Tue Jun 20 15:05:05 2017 (r443984) +++ head/games/widelands/files/patch-CMakeLists.txt Tue Jun 20 15:14:01 2017 (r443985) @@ -1,11 +1,47 @@ ---- CMakeLists.txt.orig 2014-02-22 13:06:51.000000000 +0400 -+++ CMakeLists.txt 2014-02-26 18:16:19.484090644 +0400 -@@ -254,7 +254,7 @@ - # CMAKE only defines "-g", but we need -DDEBUG also, and we need -DNOPARACHUTE (for SDL) in Debug - set (CMAKE_CXX_FLAGS_DEBUG "${WL_COMPILERFLAG_CXXSTD} -g -DDEBUG -DNOPARACHUTE${WL_COMPILERFLAG_OLDSTYLECAST}${WL_COMPILERFLAG_GENERICWARNINGS}${WL_COMPILERFLAG_EXTRAWARNINGS}${WL_COMPILERFLAG_GCCWARNINGS}${WL_COMPILERFLAG_STRICT}" CACHE STRING "Set by widelands CMakeLists.txt" FORCE) +--- CMakeLists.txt.orig 2016-11-10 07:28:01 UTC ++++ CMakeLists.txt +@@ -93,7 +93,7 @@ endif (NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQU + if(CMAKE_BUILD_TYPE STREQUAL "Debug") + set(WL_DEBUG_FLAGS "-g -DDEBUG") + elseif(CMAKE_BUILD_TYPE STREQUAL "Release") +- set(WL_OPTIMIZE_FLAGS "-O3") ++ set(WL_OPTIMIZE_FLAGS "-O3" CACHE STRING "") + set(WL_DEBUG_FLAGS "-DNDEBUG -DNOPARACHUTE") + elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") + set(WL_OPTIMIZE_FLAGS "-O3") +@@ -225,7 +225,7 @@ if (NOT DEFINED WL_VERSION) + else (NOT DEFINED WL_VERSION) + add_custom_target ( + InputRevision ALL +- COMMAND ${CMAKE_COMMAND -DWL_INSTALL_BASEDIR=${WL_INSTALL_BASEDIR} -DWL_VERSION=${WL_VERSION} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DSOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR} -DBINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/InputRevision.cmake ++ COMMAND ${CMAKE_COMMAND} -DWL_INSTALL_BASEDIR=${WL_INSTALL_BASEDIR} -DWL_VERSION=${WL_VERSION} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DSOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR} -DBINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/InputRevision.cmake + ) + endif (NOT DEFINED WL_VERSION) --set (WL_COMPILERFLAG_OPTIMIZATIONS "-O3") -+set (WL_COMPILERFLAG_OPTIMIZATIONS "-O3" CACHE STRING "") +@@ -244,7 +244,7 @@ add_custom_target(_run_all_tests ALL - #This can be removed if no one uses gcc 4.5.1 or 4.5.2 any more - IF (CMAKE_COMPILER_IS_GNUCXX) + install ( + FILES ${CMAKE_CURRENT_BINARY_DIR}/VERSION +- DESTINATION ${WL_INSTALL_BASEDIR} ++ DESTINATION ${WL_INSTALL_DOCDIR} + CONFIGURATIONS Debug;Release + COMPONENT CoreVersionFile + ) +@@ -294,7 +294,7 @@ install( + COPYING + CREDITS + ChangeLog +- DESTINATION ${WL_INSTALL_BASEDIR} ++ DESTINATION ${WL_INSTALL_DOCDIR} + CONFIGURATIONS Debug;Release + COMPONENT CoreLicenseFiles + ) +@@ -302,7 +302,7 @@ install( + install( + DIRECTORY + doc +- DESTINATION ${WL_INSTALL_BASEDIR} ++ DESTINATION ${WL_INSTALL_DOCDIR} + CONFIGURATIONS Debug + COMPONENT DocFiles + PATTERN "CMakeLists.txt" EXCLUDE Added: head/games/widelands/files/patch-cmake_WlFunctions.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/files/patch-cmake_WlFunctions.cmake Tue Jun 20 15:14:01 2017 (r443985) @@ -0,0 +1,9 @@ +--- cmake/WlFunctions.cmake.orig 2016-11-10 07:28:01 UTC ++++ cmake/WlFunctions.cmake +@@ -276,5 +276,5 @@ function(wl_binary NAME) + + #Quoting the CMake documentation on DESTINATION: + #"If a relative path is given it is interpreted relative to the value of CMAKE_INSTALL_PREFIX" +- install(TARGETS ${NAME} DESTINATION "." COMPONENT ExecutableFiles) ++ install(TARGETS ${NAME} DESTINATION "bin" COMPONENT ExecutableFiles) + endfunction() Added: head/games/widelands/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/widelands/pkg-plist Tue Jun 20 15:14:01 2017 (r443985) @@ -0,0 +1,51 @@ +bin/widelands +bin/wl_map_info +bin/wl_map_object_info +bin/wl_render_richtext +@dir %%DATADIR%%/maps/Archipelago_Sea.wmf/scripting +@dir %%DATADIR%%/maps/Atoll.wmf/scripting +@dir %%DATADIR%%/maps/Calvisson.wmf/scripting +@dir %%DATADIR%%/maps/Checkmate.wmf/scripting +@dir %%DATADIR%%/maps/Comet_Island_v2.wmf/scripting +@dir %%DATADIR%%/maps/Crater.wmf/scripting +@dir %%DATADIR%%/maps/Crossing_the_Horizon.wmf/scripting +@dir %%DATADIR%%/maps/Desert_Tournament.wmf/scripting +@dir %%DATADIR%%/maps/Dolomites_v2.wmf/scripting +@dir %%DATADIR%%/maps/Elven_Forests.wmf/scripting +@dir %%DATADIR%%/maps/Fellowships_v2.wmf/scripting +@dir %%DATADIR%%/maps/Finnish_Lakes.wmf/scripting +@dir %%DATADIR%%/maps/Firegames.wmf/scripting +@dir %%DATADIR%%/maps/Four_Castles.wmf/scripting +@dir %%DATADIR%%/maps/Four_Mountains.wmf/scripting +@dir %%DATADIR%%/maps/Full_Moon_v2.wmf/scripting +@dir %%DATADIR%%/maps/Glacier_Lake_v2.wmf/scripting +@dir %%DATADIR%%/maps/Golden_Peninsula.wmf/scripting +@dir %%DATADIR%%/maps/Ice_wars.wmf/scripting +@dir %%DATADIR%%/maps/Impact.wmf/scripting +@dir %%DATADIR%%/maps/Islands_at_War.wmf/scripting +@dir %%DATADIR%%/maps/Kings_and_Queens_v2.wmf/scripting +@dir %%DATADIR%%/maps/Lake_of_Tranquility.wmf/scripting +@dir %%DATADIR%%/maps/Last_Bastion_v2.wmf/scripting +@dir %%DATADIR%%/maps/Last_Survivors.wmf/scripting +@dir %%DATADIR%%/maps/Mystical_Maze.wmf/scripting +@dir %%DATADIR%%/maps/Rendez-Vous.wmf/scripting +@dir %%DATADIR%%/maps/River_Explorers.wmf/scripting +@dir %%DATADIR%%/maps/Riverlands.wmf/scripting +@dir %%DATADIR%%/maps/Sun_of_Fire.wmf/scripting +@dir %%DATADIR%%/maps/Swamp_Island.wmf/scripting +@dir %%DATADIR%%/maps/Swamp_Monks.wmf/scripting +@dir %%DATADIR%%/maps/The_Big_Lake.wmf/scripting +@dir %%DATADIR%%/maps/The_Far_North.wmf/scripting +@dir %%DATADIR%%/maps/The_Long_Way.wmf/scripting +@dir %%DATADIR%%/maps/The_Nile_v2.wmf/scripting +@dir %%DATADIR%%/maps/The_Oasis_Triangle.wmf/scripting +@dir %%DATADIR%%/maps/The_Pass_Through_the_Mountains.wmf/scripting +@dir %%DATADIR%%/maps/The_Thaw.wmf/scripting +@dir %%DATADIR%%/maps/Three_Warriors.wmf/scripting +@dir %%DATADIR%%/maps/Together_We're_Strong.wmf/scripting +@dir %%DATADIR%%/maps/Twin_Lagoons_v2.wmf/scripting +@dir %%DATADIR%%/maps/Twinkling_Waves.wmf/scripting +@dir %%DATADIR%%/maps/Two_Frontiers.wmf/scripting +@dir %%DATADIR%%/maps/Volcanic_Winter.wmf/scripting +@dir %%DATADIR%%/maps/Wideworld.wmf/scripting +@dir %%DATADIR%%/maps/Wisent_Valley.wmf/scripting From owner-svn-ports-head@freebsd.org Tue Jun 20 15:26:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E68F2D9B0D0; Tue, 20 Jun 2017 15:26:45 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mail.lifanov.com (mail.lifanov.com [206.125.175.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C675E29B5; Tue, 20 Jun 2017 15:26:45 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from lm0.local (rrcs-96-10-213-43.midsouth.biz.rr.com [96.10.213.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.lifanov.com (Postfix) with ESMTPSA id 68428239591; Tue, 20 Jun 2017 11:26:38 -0400 (EDT) Subject: Re: svn commit: r441282 - in head: . security security/acme.sh To: Alexey Dokuchaev , Joseph Mingrone Cc: Adam Weinberger , Dan Langille , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201705200227.v4K2RjjG055940@repo.freebsd.org> <989C2BB0-AC4E-4C76-AB15-9F616A6EF392@adamw.org> <86d1b3lwx0.fsf@phe.ftfl.ca> <20170520101021.GA39767@FreeBSD.org> From: Nikolai Lifanov Message-ID: <5bf4f792-efd0-4e27-6dba-c7a4d4dba353@FreeBSD.org> Date: Tue, 20 Jun 2017 11:26:28 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <20170520101021.GA39767@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="VTX8K9EWddBSGvEMqSQWxOQXwnVkldJIo" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 15:26:46 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --VTX8K9EWddBSGvEMqSQWxOQXwnVkldJIo Content-Type: multipart/mixed; boundary="xUrvhMWhc9GQdiFLu7JpsLbsTfrRL8k6P"; protected-headers="v1" From: Nikolai Lifanov To: Alexey Dokuchaev , Joseph Mingrone Cc: Adam Weinberger , Dan Langille , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <5bf4f792-efd0-4e27-6dba-c7a4d4dba353@FreeBSD.org> Subject: Re: svn commit: r441282 - in head: . security security/acme.sh References: <201705200227.v4K2RjjG055940@repo.freebsd.org> <989C2BB0-AC4E-4C76-AB15-9F616A6EF392@adamw.org> <86d1b3lwx0.fsf@phe.ftfl.ca> <20170520101021.GA39767@FreeBSD.org> In-Reply-To: <20170520101021.GA39767@FreeBSD.org> --xUrvhMWhc9GQdiFLu7JpsLbsTfrRL8k6P Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 5/20/17 6:10 AM, Alexey Dokuchaev wrote: > On Sat, May 20, 2017 at 06:06:35AM -0300, Joseph Mingrone wrote: >> ... >> The link below is a patch with proposed changes. >> >> http://ftfl.ca/misc/acme.sh-2.6.9.diff >> >> Changelog: >> - Add OPTION_SINGLE for choosing one of cURL or Wget for HTTP(s) quer= ies >> - Update CURL/WGET descriptions [1] >=20 > These are better; even /more/ better would to be teach it to use fetch(= 1) > which is in the base. >=20 >> - Silence porlint warnings >=20 > USERS and GROUPS values are still misaligned (need extra tab after =3D)= =2E >=20 > ./danfe >=20 Sorry for necropost, but I investigated using fetch(1) and it's a no-go. The fetch(1) utility and fetch(3) don't implement POST and can't send custom headers, which is required for the use in acme.sh. - Nikolai --xUrvhMWhc9GQdiFLu7JpsLbsTfrRL8k6P-- --VTX8K9EWddBSGvEMqSQWxOQXwnVkldJIo Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQJIBAEBCAAyFiEE5oT6TcuaWvG5gtjzZ6sv56ecR0UFAllJPqwUHGxpZmFub3ZA ZnJlZWJzZC5vcmcACgkQZ6sv56ecR0VrUA/9HLdYNYwq4aDfqGSTgs6UfJ2KLXem lxsdpy4N+Px2Zws4XiBHt+wQbh3+hcKXC4naUTxZq7rAiXEhqIabsuhTmPwTqAYK 7KbS74Bn2zW/U7m3nmX2FdJCmxw0u0NFXR0dCYx5bDoRYJ04gyvKs4fx1wAribBL cK3zmhgRkJE1a6fQ1ABVjTM4iGsfUqqL++35pCrTnaPpbIRputIV5fxeQaj3dede dXSgw1wSkR6AgnkXTOp4HHRYJHGQgqFvliskmolSdnzZ0LGFNZwgL7mvTFSzjpNG SzUJe/62UHu3ndDuGtKTcAcJ8C2wAju1sQFBZpX+3bglV92kmM8BBin2IuQADBys jnhccHRpayB+m87+prHpFKE1e7SoxVeivKGfThfaBM9jne1+8qWe9C1RC1iVCxQA Zw0yS2YPhGLu2g9nH0f3eVF0r+gZBqONC/RBPKb0bXGxHMLgw5bjNq51wX68kaFi asHxecpwo93hGPH8C9mPkmf0V0zcJwW/OehiOI+UFmHhy683MACDeUYA1MFGdTwF /uOtBf/RrTAijU3VfFCrRLjgs8MAMOIKw6NFTagGbocZoEu6U+FjdjWqfxGR2U0W NTvzasqHVmBQOEDEm3TmuWqW3yIGFJ8RVJhIdZho2UQciokxaMOYFuA1tVf8esme geF4tbIGthUDAzA= =srWP -----END PGP SIGNATURE----- --VTX8K9EWddBSGvEMqSQWxOQXwnVkldJIo-- From owner-svn-ports-head@freebsd.org Tue Jun 20 15:51:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 888D6D9BA65; Tue, 20 Jun 2017 15:51:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 570853B18; Tue, 20 Jun 2017 15:51:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KFp32Y008540; Tue, 20 Jun 2017 15:51:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KFp3Mg008538; Tue, 20 Jun 2017 15:51:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201551.v5KFp3Mg008538@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 15:51:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443986 - head/textproc/p5-PPI X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 15:51:04 -0000 Author: sunpoet Date: Tue Jun 20 15:51:03 2017 New Revision: 443986 URL: https://svnweb.freebsd.org/changeset/ports/443986 Log: Update to 1.228 Changes: http://search.cpan.org/dist/PPI/Changes Modified: head/textproc/p5-PPI/Makefile head/textproc/p5-PPI/distinfo Modified: head/textproc/p5-PPI/Makefile ============================================================================== --- head/textproc/p5-PPI/Makefile Tue Jun 20 15:14:01 2017 (r443985) +++ head/textproc/p5-PPI/Makefile Tue Jun 20 15:51:03 2017 (r443986) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PPI -PORTVERSION= 1.224 +PORTVERSION= 1.228 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MITHALDU @@ -25,8 +25,7 @@ BUILD_DEPENDS= p5-Class-Inspector>=1.22:devel/p5-Class RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Object>=0.07:devel/p5-Test-Object \ - p5-Test-SubCalls>=1.07:devel/p5-Test-SubCalls \ - p5-Test-Warn>=0.30:devel/p5-Test-Warn + p5-Test-SubCalls>=1.07:devel/p5-Test-SubCalls PORTSCOUT= limit:^[0-9\.]*$$ Modified: head/textproc/p5-PPI/distinfo ============================================================================== --- head/textproc/p5-PPI/distinfo Tue Jun 20 15:14:01 2017 (r443985) +++ head/textproc/p5-PPI/distinfo Tue Jun 20 15:51:03 2017 (r443986) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494842331 -SHA256 (PPI-1.224.tar.gz) = 8d0f9faaea68515fb5aa6323115dcf98ea6c1dec4441f3844d3b9633b6cc9d94 -SIZE (PPI-1.224.tar.gz) = 257197 +TIMESTAMP = 1497973477 +SHA256 (PPI-1.228.tar.gz) = 96f59a71681af27c27e2c778c748eb2fee7a4cd40a8dc360a2761cabff1c36e6 +SIZE (PPI-1.228.tar.gz) = 257411 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:03:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8F46D9C11D; Tue, 20 Jun 2017 16:03:08 +0000 (UTC) (envelope-from dan@langille.org) Received: from clavin1.langille.org (clavin.langille.org [162.208.116.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "clavin.langille.org", Issuer "BSD Cabal Headquarters" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id BE66464710; Tue, 20 Jun 2017 16:03:08 +0000 (UTC) (envelope-from dan@langille.org) Received: from (clavin1.int.langille.org (clavin1.int.unixathome.org [10.4.7.7]) (Authenticated sender: hidden) with ESMTPSA id AD10A4A91 ; Tue, 20 Jun 2017 16:02:50 +0000 (UTC) From: Dan Langille Message-Id: Content-Type: multipart/signed; boundary="Apple-Mail=_79061AF9-5CA0-49D3-9E16-C43E8FF367A6"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: svn commit: r441282 - in head: . security security/acme.sh Date: Tue, 20 Jun 2017 12:02:29 -0400 In-Reply-To: <5bf4f792-efd0-4e27-6dba-c7a4d4dba353@FreeBSD.org> Cc: Alexey Dokuchaev , Joseph Mingrone , Adam Weinberger , Dan Langille , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org To: Nikolai Lifanov References: <201705200227.v4K2RjjG055940@repo.freebsd.org> <989C2BB0-AC4E-4C76-AB15-9F616A6EF392@adamw.org> <86d1b3lwx0.fsf@phe.ftfl.ca> <20170520101021.GA39767@FreeBSD.org> <5bf4f792-efd0-4e27-6dba-c7a4d4dba353@FreeBSD.org> X-Mailer: Apple Mail (2.3273) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:03:09 -0000 --Apple-Mail=_79061AF9-5CA0-49D3-9E16-C43E8FF367A6 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii > On Jun 20, 2017, at 11:26 AM, Nikolai Lifanov wrote: > > On 5/20/17 6:10 AM, Alexey Dokuchaev wrote: >> On Sat, May 20, 2017 at 06:06:35AM -0300, Joseph Mingrone wrote: >>> ... >>> The link below is a patch with proposed changes. >>> >>> http://ftfl.ca/misc/acme.sh-2.6.9.diff >>> >>> Changelog: >>> - Add OPTION_SINGLE for choosing one of cURL or Wget for HTTP(s) queries >>> - Update CURL/WGET descriptions [1] >> >> These are better; even /more/ better would to be teach it to use fetch(1) >> which is in the base. >> >>> - Silence porlint warnings >> >> USERS and GROUPS values are still misaligned (need extra tab after =). >> >> ./danfe >> > > Sorry for necropost, but I investigated using fetch(1) and it's a no-go. > The fetch(1) utility and fetch(3) don't implement POST and can't send > custom headers, which is required for the use in acme.sh. Thank you for that work. -- Dan Langille - BSDCan / PGCon dan@langille.org --Apple-Mail=_79061AF9-5CA0-49D3-9E16-C43E8FF367A6 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQF8BAEBCgBmBQJZSUcqXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDRUE3MDlFMjg3QjI3RkNCMjA0QzgxMDEy MTREM0Q1RDREQTc1RUQzAAoJECFNPV1Np17TREoH/jPBo+I+TC0teXEuO3Ros6CX QzO+J7HlqbFoMjjTIvi+tv5NeGwRW5O1d27poa4eGJJi4r0CwuS+FABQPhkCMHld Kx/FCnZAp/EqrczZwWhP/Cadf3B7WzlpNIEcXRf4PWWJ5tjv4pw9TBERuUk037zS qw1QzEiA2qQuIneRG9LUhtEASWi4qDWfTabBkzVPf7CUIuRK+HbBWU0Ueo6gJlgF 8aVW6IS4RY32fMTgAhNj5knMk1rwN9PWkLmTCOwG8ArDt6iPb3Ib/QqWuI6hBGoI 6JDD4kDzMZe91fBIIaue/4JtSoOfgZdFPvouEJR6mR/sUrikUVf9g4vp7YXAn8g= =PtR9 -----END PGP SIGNATURE----- --Apple-Mail=_79061AF9-5CA0-49D3-9E16-C43E8FF367A6-- From owner-svn-ports-head@freebsd.org Tue Jun 20 16:06:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 268EDD9C15D; Tue, 20 Jun 2017 16:06:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E026A64822; Tue, 20 Jun 2017 16:06:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KG6QXW013646; Tue, 20 Jun 2017 16:06:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KG6Pxf013644; Tue, 20 Jun 2017 16:06:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201606.v5KG6Pxf013644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 16:06:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443987 - head/devel/p5-CPAN-Perl-Releases X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:06:27 -0000 Author: sunpoet Date: Tue Jun 20 16:06:25 2017 New Revision: 443987 URL: https://svnweb.freebsd.org/changeset/ports/443987 Log: Update to 3.24 Changes: http://search.cpan.org/dist/CPAN-Perl-Releases/Changes Modified: head/devel/p5-CPAN-Perl-Releases/Makefile head/devel/p5-CPAN-Perl-Releases/distinfo Modified: head/devel/p5-CPAN-Perl-Releases/Makefile ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/Makefile Tue Jun 20 15:51:03 2017 (r443986) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Tue Jun 20 16:06:25 2017 (r443987) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 3.22 +PORTVERSION= 3.24 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Tue Jun 20 15:51:03 2017 (r443986) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Tue Jun 20 16:06:25 2017 (r443987) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496922746 -SHA256 (CPAN-Perl-Releases-3.22.tar.gz) = 3f665f0a9ee50b3dc8ffe71a355449ba6e5696b9faf736228f0c27b2311881af -SIZE (CPAN-Perl-Releases-3.22.tar.gz) = 24890 +TIMESTAMP = 1497974118 +SHA256 (CPAN-Perl-Releases-3.24.tar.gz) = 101a8b0f81e5eb14e9e7edce66510c6ec243cea646be194a282c85abd4a3fdc1 +SIZE (CPAN-Perl-Releases-3.24.tar.gz) = 24891 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:06:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6C51D9C194; Tue, 20 Jun 2017 16:06:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 71CDC64837; Tue, 20 Jun 2017 16:06:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KG6VfW013768; Tue, 20 Jun 2017 16:06:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KG6VVk013766; Tue, 20 Jun 2017 16:06:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201606.v5KG6VVk013766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 16:06:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443988 - head/devel/p5-Module-CoreList X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:06:32 -0000 Author: sunpoet Date: Tue Jun 20 16:06:31 2017 New Revision: 443988 URL: https://svnweb.freebsd.org/changeset/ports/443988 Log: Update to 5.20170621 Changes: http://search.cpan.org/dist/Module-CoreList/Changes Modified: head/devel/p5-Module-CoreList/Makefile head/devel/p5-Module-CoreList/distinfo Modified: head/devel/p5-Module-CoreList/Makefile ============================================================================== --- head/devel/p5-Module-CoreList/Makefile Tue Jun 20 16:06:25 2017 (r443987) +++ head/devel/p5-Module-CoreList/Makefile Tue Jun 20 16:06:31 2017 (r443988) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-CoreList -PORTVERSION= 5.20170531 +PORTVERSION= 5.20170621 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-CoreList/distinfo ============================================================================== --- head/devel/p5-Module-CoreList/distinfo Tue Jun 20 16:06:25 2017 (r443987) +++ head/devel/p5-Module-CoreList/distinfo Tue Jun 20 16:06:31 2017 (r443988) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496922768 -SHA256 (Module-CoreList-5.20170531.tar.gz) = 71404947472632f503fc332b0603cac710de6545b1a194ebd349fc03dd084f69 -SIZE (Module-CoreList-5.20170531.tar.gz) = 97704 +TIMESTAMP = 1497974127 +SHA256 (Module-CoreList-5.20170621.tar.gz) = 897bdcfb493ca24d993a941b69a0d4b7cd9af5203ed7d8da51ddf303a680c5af +SIZE (Module-CoreList-5.20170621.tar.gz) = 98894 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:06:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D8ECD9C1B2; Tue, 20 Jun 2017 16:06:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E03F86489E; Tue, 20 Jun 2017 16:06:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KG6bES013907; Tue, 20 Jun 2017 16:06:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KG6aE1013904; Tue, 20 Jun 2017 16:06:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706201606.v5KG6aE1013904@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Jun 2017 16:06:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443989 - head/www/p5-HTTP-Message X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:06:38 -0000 Author: sunpoet Date: Tue Jun 20 16:06:36 2017 New Revision: 443989 URL: https://svnweb.freebsd.org/changeset/ports/443989 Log: Update to 6.13 - Add LICENSE_FILE - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/HTTP-Message/Changes Modified: head/www/p5-HTTP-Message/Makefile head/www/p5-HTTP-Message/distinfo head/www/p5-HTTP-Message/pkg-plist Modified: head/www/p5-HTTP-Message/Makefile ============================================================================== --- head/www/p5-HTTP-Message/Makefile Tue Jun 20 16:06:31 2017 (r443988) +++ head/www/p5-HTTP-Message/Makefile Tue Jun 20 16:06:36 2017 (r443989) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= HTTP-Message -PORTVERSION= 6.11 +PORTVERSION= 6.13 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -12,6 +12,7 @@ COMMENT= Representation of HTTP style messages LICENSE= ART10 GPLv1 LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= p5-Encode-Locale>=1:converters/p5-Encode-Locale \ p5-HTTP-Date>=6:www/p5-HTTP-Date \ @@ -19,6 +20,7 @@ BUILD_DEPENDS= p5-Encode-Locale>=1:converters/p5-Encod p5-LWP-MediaTypes>=6:www/p5-LWP-MediaTypes \ p5-URI>=1.10:net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Try-Tiny>=0:lang/p5-Try-Tiny NO_ARCH= yes USES= perl5 Modified: head/www/p5-HTTP-Message/distinfo ============================================================================== --- head/www/p5-HTTP-Message/distinfo Tue Jun 20 16:06:31 2017 (r443988) +++ head/www/p5-HTTP-Message/distinfo Tue Jun 20 16:06:36 2017 (r443989) @@ -1,2 +1,3 @@ -SHA256 (HTTP-Message-6.11.tar.gz) = e7b368077ae6a188d99920411d8f52a8e5acfb39574d4f5c24f46fd22533d81b -SIZE (HTTP-Message-6.11.tar.gz) = 59981 +TIMESTAMP = 1497974274 +SHA256 (HTTP-Message-6.13.tar.gz) = f25f38428de851e5661e72f124476494852eb30812358b07f1c3a289f6f5eded +SIZE (HTTP-Message-6.13.tar.gz) = 74413 Modified: head/www/p5-HTTP-Message/pkg-plist ============================================================================== --- head/www/p5-HTTP-Message/pkg-plist Tue Jun 20 16:06:31 2017 (r443988) +++ head/www/p5-HTTP-Message/pkg-plist Tue Jun 20 16:06:36 2017 (r443989) @@ -10,6 +10,8 @@ %%SITE_PERL%%/HTTP/Status.pm %%PERL5_MAN3%%/HTTP::Config.3.gz %%PERL5_MAN3%%/HTTP::Headers.3.gz +%%PERL5_MAN3%%/HTTP::Headers::Auth.3.gz +%%PERL5_MAN3%%/HTTP::Headers::ETag.3.gz %%PERL5_MAN3%%/HTTP::Headers::Util.3.gz %%PERL5_MAN3%%/HTTP::Message.3.gz %%PERL5_MAN3%%/HTTP::Request.3.gz From owner-svn-ports-head@freebsd.org Tue Jun 20 16:15:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D814CD9C44D; Tue, 20 Jun 2017 16:15:22 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A81E76501C; Tue, 20 Jun 2017 16:15:22 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KGFLD5018029; Tue, 20 Jun 2017 16:15:21 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KGFLPC018027; Tue, 20 Jun 2017 16:15:21 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706201615.v5KGFLPC018027@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 16:15:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443990 - 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: Tue, 20 Jun 2017 16:15:23 -0000 Author: joneum Date: Tue Jun 20 16:15:21 2017 New Revision: 443990 URL: https://svnweb.freebsd.org/changeset/ports/443990 Log: - chinese/wordpress-zh_TW: Update to 4.7.5 - Changelog: https://wordpress.org/news/2017/05/wordpress-4-7-5/ Approved by: miwi (mentor) MFH: 2017Q2 Security: a5bb7ea0-3e58-11e7-94a2-00e04c1ea73d Differential Revision: https://reviews.freebsd.org/D11275 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 Tue Jun 20 16:06:36 2017 (r443989) +++ head/chinese/wordpress-zh_TW/Makefile Tue Jun 20 16:15:21 2017 (r443990) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -PORTVERSION= 4.7.4 +PORTVERSION= 4.7.5 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 Tue Jun 20 16:06:36 2017 (r443989) +++ head/chinese/wordpress-zh_TW/distinfo Tue Jun 20 16:15:21 2017 (r443990) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493061006 -SHA256 (wordpress-4.7.4-zh_TW.tar.gz) = 735745684249be7bcefc12da3eeac6e9043ee6566746471b01045423f3cbdf81 -SIZE (wordpress-4.7.4-zh_TW.tar.gz) = 8495717 +TIMESTAMP = 1497894983 +SHA256 (wordpress-4.7.5-zh_TW.tar.gz) = 56d1dabdb8ddddb7a8f586da1d8a2825b5c8b4f1863e4776a3f1c13a5d59d436 +SIZE (wordpress-4.7.5-zh_TW.tar.gz) = 7910609 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:29:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B26EDD9C851; Tue, 20 Jun 2017 16:29:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7669665695; Tue, 20 Jun 2017 16:29:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KGT6vK022355; Tue, 20 Jun 2017 16:29:06 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KGT6qr022353; Tue, 20 Jun 2017 16:29:06 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706201629.v5KGT6qr022353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 16:29:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443992 - head/www/uzbl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:29:07 -0000 Author: joneum Date: Tue Jun 20 16:29:06 2017 New Revision: 443992 URL: https://svnweb.freebsd.org/changeset/ports/443992 Log: - Upstream rerolled the distfiles *The difference between the old and the new tar ball is literally one additional hex digit in the embedded git version PR: 219824 Reported by: xmj Approved by: Klaus Aehlig (maintainer) xxx (mentor) Differential Revision: https://reviews.freebsd.org/D11214 Modified: head/www/uzbl/Makefile head/www/uzbl/distinfo Modified: head/www/uzbl/Makefile ============================================================================== --- head/www/uzbl/Makefile Tue Jun 20 16:16:47 2017 (r443991) +++ head/www/uzbl/Makefile Tue Jun 20 16:29:06 2017 (r443992) @@ -3,8 +3,8 @@ PORTNAME= uzbl PORTVERSION= 0.9.1 -PORTREVISION= 1 DISTVERSIONPREFIX=v +PORTREVISION= 2 CATEGORIES= www MAINTAINER= aehlig@linta.de Modified: head/www/uzbl/distinfo ============================================================================== --- head/www/uzbl/distinfo Tue Jun 20 16:16:47 2017 (r443991) +++ head/www/uzbl/distinfo Tue Jun 20 16:29:06 2017 (r443992) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481997827 -SHA256 (uzbl-uzbl-v0.9.1_GH0.tar.gz) = b5d6a0ffa602839f338af80b286c3550b85e68dd2412ccad3fea896ad2501ae9 +TIMESTAMP = 1496762021 +SHA256 (uzbl-uzbl-v0.9.1_GH0.tar.gz) = 5778216914b8f45bc92fe72c9e51dad38423314bbc4a8182e305c24a9b5d86ba SIZE (uzbl-uzbl-v0.9.1_GH0.tar.gz) = 257493 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:34:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0ED2D9C9A2; Tue, 20 Jun 2017 16:34:18 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8261D65A13; Tue, 20 Jun 2017 16:34:18 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KGYHNn026481; Tue, 20 Jun 2017 16:34:17 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KGYHUV026479; Tue, 20 Jun 2017 16:34:17 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706201634.v5KGYHUV026479@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 16:34:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443993 - head/net-mgmt/prometheus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:34:18 -0000 Author: joneum Date: Tue Jun 20 16:34:17 2017 New Revision: 443993 URL: https://svnweb.freebsd.org/changeset/ports/443993 Log: - net-mgmt/prometheus: Update from 1.6.3 to 1.7.1 - Changelog: https://github.com/prometheus/prometheus/releases/tag/v1.7.0 https://github.com/prometheus/prometheus/releases/tag/v1.7.1 PR: 220056 Submitted by: jevonearth (ports at ecadlabs.com) (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11273 Modified: head/net-mgmt/prometheus/Makefile head/net-mgmt/prometheus/distinfo Modified: head/net-mgmt/prometheus/Makefile ============================================================================== --- head/net-mgmt/prometheus/Makefile Tue Jun 20 16:29:06 2017 (r443992) +++ head/net-mgmt/prometheus/Makefile Tue Jun 20 16:34:17 2017 (r443993) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= prometheus -PORTVERSION= 1.6.3 +PORTVERSION= 1.7.1 DISTVERSIONPREFIX= v CATEGORIES= net-mgmt Modified: head/net-mgmt/prometheus/distinfo ============================================================================== --- head/net-mgmt/prometheus/distinfo Tue Jun 20 16:29:06 2017 (r443992) +++ head/net-mgmt/prometheus/distinfo Tue Jun 20 16:34:17 2017 (r443993) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495307047 -SHA256 (prometheus-prometheus-v1.6.3_GH0.tar.gz) = 1c2d01f3a44b53be3b672cbdb1843fbe8fc135020bbfb6c71b0a10b141a474e6 -SIZE (prometheus-prometheus-v1.6.3_GH0.tar.gz) = 5160067 +TIMESTAMP = 1497637077 +SHA256 (prometheus-prometheus-v1.7.1_GH0.tar.gz) = 209832310f5bef99faef3beaaa95263612a4d0126ca512c4a4c23a8543d3ccf5 +SIZE (prometheus-prometheus-v1.7.1_GH0.tar.gz) = 5122747 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:46:24 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37295D9CD00; Tue, 20 Jun 2017 16:46:24 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07802661B1; Tue, 20 Jun 2017 16:46:23 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KGkNO2030801; Tue, 20 Jun 2017 16:46:23 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KGkMm6030799; Tue, 20 Jun 2017 16:46:22 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706201646.v5KGkMm6030799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 16:46:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443994 - head/devel/awless X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:46:24 -0000 Author: joneum Date: Tue Jun 20 16:46:22 2017 New Revision: 443994 URL: https://svnweb.freebsd.org/changeset/ports/443994 Log: - devel/awless: Update from 0.0.17 to 0.1.0 PR: 220052 Submitted by: Dmitri Goutnik (dg at syrec.org) (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11268 Modified: head/devel/awless/Makefile head/devel/awless/distinfo Modified: head/devel/awless/Makefile ============================================================================== --- head/devel/awless/Makefile Tue Jun 20 16:34:17 2017 (r443993) +++ head/devel/awless/Makefile Tue Jun 20 16:46:22 2017 (r443994) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= awless -PORTVERSION= 0.0.17 +PORTVERSION= 0.1.0 +DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= dg@syrec.org Modified: head/devel/awless/distinfo ============================================================================== --- head/devel/awless/distinfo Tue Jun 20 16:34:17 2017 (r443993) +++ head/devel/awless/distinfo Tue Jun 20 16:46:22 2017 (r443994) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489076318 -SHA256 (wallix-awless-0.0.17_GH0.tar.gz) = 4e9baa3eb24a939100c3d8ad7ce96eccfbc4bf3ae4e13a87df8e257a1b57df08 -SIZE (wallix-awless-0.0.17_GH0.tar.gz) = 1941575 +TIMESTAMP = 1497633135 +SHA256 (wallix-awless-v0.1.0_GH0.tar.gz) = 2b378e4d02205117e8f984601a6d437cb83c98ee0dbf1643813669332719fb9f +SIZE (wallix-awless-v0.1.0_GH0.tar.gz) = 2329807 From owner-svn-ports-head@freebsd.org Tue Jun 20 16:55:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05E16D9CEF7; Tue, 20 Jun 2017 16:55:37 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C308D66595; Tue, 20 Jun 2017 16:55:36 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KGtZua034923; Tue, 20 Jun 2017 16:55:35 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KGtZqu034920; Tue, 20 Jun 2017 16:55:35 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706201655.v5KGtZqu034920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 16:55:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443995 - head/audio/ardour5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 16:55:37 -0000 Author: joneum Date: Tue Jun 20 16:55:35 2017 New Revision: 443995 URL: https://svnweb.freebsd.org/changeset/ports/443995 Log: - audio/ardour5: Update from 5.9.0 to 5.10.0 - Changelog: https://community.ardour.org/releases PR: 220044 Submitted by: Michael Beer (beerml at sigma6audio.de) (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11265 Modified: head/audio/ardour5/Makefile head/audio/ardour5/distinfo head/audio/ardour5/pkg-plist Modified: head/audio/ardour5/Makefile ============================================================================== --- head/audio/ardour5/Makefile Tue Jun 20 16:46:22 2017 (r443994) +++ head/audio/ardour5/Makefile Tue Jun 20 16:55:35 2017 (r443995) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ardour5 -PORTVERSION= 5.9.0 +PORTVERSION= 5.10.0 CATEGORIES= audio MASTER_SITES= https://github.com/beerml/ardour_releases/raw/master/ # The original master side points to the latest release only: Modified: head/audio/ardour5/distinfo ============================================================================== --- head/audio/ardour5/distinfo Tue Jun 20 16:46:22 2017 (r443994) +++ head/audio/ardour5/distinfo Tue Jun 20 16:55:35 2017 (r443995) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495441646 -SHA256 (Ardour-5.9.0.tar.bz2) = dffebbee16d3fce71e5f5657e99adb97a88515a6607e45397dd774e77b22f559 -SIZE (Ardour-5.9.0.tar.bz2) = 8830842 +TIMESTAMP = 1497599527 +SHA256 (Ardour-5.10.0.tar.bz2) = 2d88fad771e8f4df4c1ff06836152d486f392a71b4f369759934419b679ddd0f +SIZE (Ardour-5.10.0.tar.bz2) = 8844840 Modified: head/audio/ardour5/pkg-plist ============================================================================== --- head/audio/ardour5/pkg-plist Tue Jun 20 16:46:22 2017 (r443994) +++ head/audio/ardour5/pkg-plist Tue Jun 20 16:55:35 2017 (r443995) @@ -274,6 +274,7 @@ share/applications/ardour5.desktop %%DATADIR%%/midi_maps/midikb_wiimote.map %%DATADIR%%/midi_maps/xboard-61.map %%DATADIR%%/osc/TTC2.preset +%%DATADIR%%/osc/basic-touchosc.preset %%DATADIR%%/patchfiles/Alesis_DM5.midnam %%DATADIR%%/patchfiles/Alesis_NanoBass.midnam %%DATADIR%%/patchfiles/Alesis_NanoPiano.midnam From owner-svn-ports-head@freebsd.org Tue Jun 20 20:02:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E257FDA10D2; Tue, 20 Jun 2017 20:02:08 +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 B0B8671723; Tue, 20 Jun 2017 20:02:08 +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 v5KK27de011353; Tue, 20 Jun 2017 20:02:07 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KK27PB011350; Tue, 20 Jun 2017 20:02:07 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201706202002.v5KK27PB011350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 20 Jun 2017 20:02:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443996 - head/www/xpi-uBlock_origin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 20:02:09 -0000 Author: thierry Date: Tue Jun 20 20:02:07 2017 New Revision: 443996 URL: https://svnweb.freebsd.org/changeset/ports/443996 Log: Upgrade to 1.13.0. Changelog at Modified: head/www/xpi-uBlock_origin/Makefile head/www/xpi-uBlock_origin/distinfo head/www/xpi-uBlock_origin/pkg-plist Modified: head/www/xpi-uBlock_origin/Makefile ============================================================================== --- head/www/xpi-uBlock_origin/Makefile Tue Jun 20 16:55:35 2017 (r443995) +++ head/www/xpi-uBlock_origin/Makefile Tue Jun 20 20:02:07 2017 (r443996) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ublock_origin -PORTVERSION= 1.12.4 +PORTVERSION= 1.13.0 DISTVERSIONSUFFIX= -an+fx+sm+tb CATEGORIES= www Modified: head/www/xpi-uBlock_origin/distinfo ============================================================================== --- head/www/xpi-uBlock_origin/distinfo Tue Jun 20 16:55:35 2017 (r443995) +++ head/www/xpi-uBlock_origin/distinfo Tue Jun 20 20:02:07 2017 (r443996) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494968428 -SHA256 (xpi/ublock_origin-1.12.4-an+fx+sm+tb.xpi) = 52011d7fb82ddf9fb14c70a1a624242eb5e9e2639903ee379d44e0bed7b819c9 -SIZE (xpi/ublock_origin-1.12.4-an+fx+sm+tb.xpi) = 1681248 +TIMESTAMP = 1497988558 +SHA256 (xpi/ublock_origin-1.13.0-an+fx+sm+tb.xpi) = 9856ebdb40fe1c6212e74404d437a73ba4eb7bca7b9c162be0a75a1b764e9872 +SIZE (xpi/ublock_origin-1.13.0-an+fx+sm+tb.xpi) = 1724751 Modified: head/www/xpi-uBlock_origin/pkg-plist ============================================================================== --- head/www/xpi-uBlock_origin/pkg-plist Tue Jun 20 16:55:35 2017 (r443995) +++ head/www/xpi-uBlock_origin/pkg-plist Tue Jun 20 20:02:07 2017 (r443996) @@ -63,6 +63,7 @@ %%XPI_XPIDIR%%/js/assets.js %%XPI_XPIDIR%%/js/background.js %%XPI_XPIDIR%%/js/cloud-ui.js +%%XPI_XPIDIR%%/js/commands.js %%XPI_XPIDIR%%/js/contentscript.js %%XPI_XPIDIR%%/js/contextmenu.js %%XPI_XPIDIR%%/js/cosmetic-filtering.js From owner-svn-ports-head@freebsd.org Tue Jun 20 20:17:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25BB6DA1326; Tue, 20 Jun 2017 20:17:17 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E4E3071D53; Tue, 20 Jun 2017 20:17:16 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KKHFZu016348; Tue, 20 Jun 2017 20:17:15 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKHFqa016346; Tue, 20 Jun 2017 20:17:15 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706202017.v5KKHFqa016346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 20:17:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443997 - head/devel/ace+tao-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: Tue, 20 Jun 2017 20:17:17 -0000 Author: joneum Date: Tue Jun 20 20:17:15 2017 New Revision: 443997 URL: https://svnweb.freebsd.org/changeset/ports/443997 Log: - devel/ace+tao-doc: Update from 5.5.0 to 6.4.3 - Pass MAINTAINER'ship to submitter PR: 220040 Submitted by: Jov (amutu at amutu.com) (maintainer) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11244 Modified: head/devel/ace+tao-doc/Makefile head/devel/ace+tao-doc/distinfo Modified: head/devel/ace+tao-doc/Makefile ============================================================================== --- head/devel/ace+tao-doc/Makefile Tue Jun 20 20:02:07 2017 (r443996) +++ head/devel/ace+tao-doc/Makefile Tue Jun 20 20:17:15 2017 (r443997) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= ace+tao-doc -PORTVERSION= 5.5.0 +PORTVERSION= 6.4.3 CATEGORIES= devel MASTER_SITES= ftp://download.dre.vanderbilt.edu/previous_versions/ \ http://download.dre.vanderbilt.edu/previous_versions/ -DISTNAME= ACE-${PORTVERSION:C/\.0$//}-html +DISTNAME= ACE-html-${PORTVERSION:C/\.0$//} -MAINTAINER= ports@FreeBSD.org -COMMENT= The ACE+TAO HTML documentation +MAINTAINER= amutu@amutu.com +COMMENT= ACE+TAO HTML documentation USES= tar:bzip2 WRKSRC= ${WRKDIR}/html Modified: head/devel/ace+tao-doc/distinfo ============================================================================== --- head/devel/ace+tao-doc/distinfo Tue Jun 20 20:02:07 2017 (r443996) +++ head/devel/ace+tao-doc/distinfo Tue Jun 20 20:17:15 2017 (r443997) @@ -1,2 +1,3 @@ -SHA256 (ACE-5.5-html.tar.bz2) = 3386f0e00a06c2ea8108fe0337618e7ce97974820c7da79493a76d576991ce6d -SIZE (ACE-5.5-html.tar.bz2) = 55736598 +TIMESTAMP = 1497602240 +SHA256 (ACE-html-6.4.3.tar.bz2) = fec5dfef87d1e0b226b79cec97f63502e77134cfb11d14faa024af464c52c13e +SIZE (ACE-html-6.4.3.tar.bz2) = 219278399 From owner-svn-ports-head@freebsd.org Tue Jun 20 20:20:50 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44137DA1405; Tue, 20 Jun 2017 20:20: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 ADF4271FC9; Tue, 20 Jun 2017 20:20: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 v5KKKm9C022898; Tue, 20 Jun 2017 20:20:48 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKKjVK022857; Tue, 20 Jun 2017 20:20:45 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706202020.v5KKKjVK022857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 20 Jun 2017 20:20:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443998 - in head/www/chromium: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 20:20:50 -0000 Author: cpm Date: Tue Jun 20 20:20:44 2017 New Revision: 443998 URL: https://svnweb.freebsd.org/changeset/ports/443998 Log: www/chromium: update to 59.0.3071.104 - Use https in WWW and MASTER_SITES - Sort ONLY_FOR_ARCHS, USES, USE_GNOME and GN_ARGS - Put in correct place MAKE_ENV+= V=1 variable - Use LLD linker by default for supported archs - Fix DEBUG option - Fix gpu_info_collector.cc warning: control may reach end of non-void function [-Wreturn-type] - Get rid of multiple definition errors Changelog: https://chromium.googlesource.com/chromium/src/+log/58.0.3029.110..59.0.3071.104?pretty=fuller&n=10000 MFH: 2017Q2 Security: https://www.vuxml.org/freebsd/52f4b48b-4ac3-11e7-99aa-e8e0b747a45a.html Security: https://www.vuxml.org/freebsd/f53dd5cc-527f-11e7-a772-e8e0b747a45a.html Added: head/www/chromium/files/patch-base_debug_debugger__posix.cc (contents, props changed) head/www/chromium/files/patch-base_trace__event_trace__log.cc (contents, props changed) head/www/chromium/files/patch-build__overrides_pdfium.gni (contents, props changed) head/www/chromium/files/patch-build_config_freetype_BUILD.gn (contents, props changed) head/www/chromium/files/patch-chrome_browser_extensions_api_webrtc__audio__private_webrtc__audio__private__api.cc (contents, props changed) head/www/chromium/files/patch-chrome_browser_flag__descriptions.cc (contents, props changed) head/www/chromium/files/patch-chrome_browser_flag__descriptions.h (contents, props changed) head/www/chromium/files/patch-chrome_browser_memory__details__linux.cc (contents, props changed) head/www/chromium/files/patch-chrome_browser_resources_settings_appearance__page_appearance__page.html (contents, props changed) head/www/chromium/files/patch-components_tracing_child_child__trace__message__filter.cc (contents, props changed) head/www/chromium/files/patch-device_usb_BUILD.gn (contents, props changed) head/www/chromium/files/patch-services_service__manager_embedder_set__process__title__linux.cc (contents, props changed) head/www/chromium/files/patch-services_service__manager_embedder_set__process__title__linux.h (contents, props changed) head/www/chromium/files/patch-services_ui_gpu_gpu__service.cc (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_Assertions.cpp (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_Atomics.h (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_BUILD.gn (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_ByteSwap.h (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_ContainerAnnotations.h (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_StackUtil.cpp (contents, props changed) head/www/chromium/files/patch-third__party_WebKit_Source_platform_wtf_ThreadingPthreads.cpp (contents, props changed) head/www/chromium/files/patch-third__party_libxml_chromium_libxml__utils.cc (contents, props changed) head/www/chromium/files/patch-third__party_webrtc_base_byteorder.h (contents, props changed) head/www/chromium/files/patch-tools_grit_grit__rule.gni (contents, props changed) Deleted: head/www/chromium/files/patch-base_process_memory__stubs.cc head/www/chromium/files/patch-base_trace__event_malloc__dump__provider.cc head/www/chromium/files/patch-chrome_app_resources_locale__settings.grd head/www/chromium/files/patch-components_tracing_child_child__memory__dump__manager__delegate__impl.cc head/www/chromium/files/patch-content_browser_renderer__host_media_video__capture__manager.cc head/www/chromium/files/patch-content_common_set__process__title__linux.cc head/www/chromium/files/patch-content_common_set__process__title__linux.h head/www/chromium/files/patch-content_gpu_gpu__child__thread.cc head/www/chromium/files/patch-gpu_config_gpu__control__list__unittest.cc head/www/chromium/files/patch-third__party_WebKit_Source_wtf_Assertions.cpp head/www/chromium/files/patch-third__party_WebKit_Source_wtf_Atomics.h head/www/chromium/files/patch-third__party_WebKit_Source_wtf_BUILD.gn head/www/chromium/files/patch-third__party_WebKit_Source_wtf_ByteSwap.h head/www/chromium/files/patch-third__party_WebKit_Source_wtf_ContainerAnnotations.h head/www/chromium/files/patch-third__party_WebKit_Source_wtf_StackUtil.cpp head/www/chromium/files/patch-third__party_WebKit_Source_wtf_ThreadingPthreads.cpp head/www/chromium/files/patch-third__party_pdfium_pdfium.gni head/www/chromium/files/patch-ui_accessibility_platform_ax__platform__node.h head/www/chromium/files/patch-ui_app__list_app__list__constants.cc head/www/chromium/files/patch-ui_app__list_app__list__constants.h head/www/chromium/files/patch-ui_app__list_views_app__list__item__view.cc head/www/chromium/files/patch-ui_views_accessibility_native__view__accessibility.h head/www/chromium/files/patch-v8_src_wasm_wasm-result.h Modified: head/www/chromium/Makefile head/www/chromium/Makefile.tests head/www/chromium/distinfo head/www/chromium/files/patch-BUILD.gn head/www/chromium/files/patch-apps_ui_views_app__window__frame__view.cc head/www/chromium/files/patch-ash_display_mirror__window__controller.cc head/www/chromium/files/patch-base_BUILD.gn head/www/chromium/files/patch-base_allocator_allocator__shim.cc head/www/chromium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc head/www/chromium/files/patch-base_allocator_allocator__shim__unittest.cc head/www/chromium/files/patch-base_debug_thread__heap__usage__tracker.cc head/www/chromium/files/patch-base_files_file__path__unittest.cc head/www/chromium/files/patch-base_files_file__util.h head/www/chromium/files/patch-base_native__library__posix.cc head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc head/www/chromium/files/patch-base_process_launch.cc head/www/chromium/files/patch-base_process_memory.cc head/www/chromium/files/patch-base_process_memory.h head/www/chromium/files/patch-base_process_memory__unittest.cc head/www/chromium/files/patch-base_process_process__info__linux.cc head/www/chromium/files/patch-base_process_process__iterator__freebsd.cc head/www/chromium/files/patch-base_process_process__metrics.h head/www/chromium/files/patch-base_process_process__metrics__freebsd.cc head/www/chromium/files/patch-base_process_process__posix.cc head/www/chromium/files/patch-base_sys__info__freebsd.cc head/www/chromium/files/patch-base_sys__info__posix.cc head/www/chromium/files/patch-base_test_BUILD.gn head/www/chromium/files/patch-base_test_launcher_test__launcher.cc head/www/chromium/files/patch-base_test_test__file__util__posix.cc head/www/chromium/files/patch-base_threading_platform__thread__linux.cc head/www/chromium/files/patch-base_threading_thread__task__runner__handle.cc head/www/chromium/files/patch-base_trace__event_process__memory__dump.cc head/www/chromium/files/patch-breakpad_BUILD.gn head/www/chromium/files/patch-build_config_BUILD.gn head/www/chromium/files/patch-build_config_BUILDCONFIG.gn head/www/chromium/files/patch-build_config_allocator.gni head/www/chromium/files/patch-build_config_clang_BUILD.gn head/www/chromium/files/patch-build_config_compiler_BUILD.gn head/www/chromium/files/patch-build_config_crypto.gni head/www/chromium/files/patch-build_config_features.gni head/www/chromium/files/patch-build_config_sanitizers_BUILD.gn head/www/chromium/files/patch-build_config_ui.gni head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni head/www/chromium/files/patch-cc_layers_scrollbar__layer__impl__base.cc head/www/chromium/files/patch-cc_trees_property__tree.cc head/www/chromium/files/patch-chrome_BUILD.gn head/www/chromium/files/patch-chrome_app_chrome__command__ids.h head/www/chromium/files/patch-chrome_app_chrome__main.cc head/www/chromium/files/patch-chrome_app_chrome__main__delegate.cc head/www/chromium/files/patch-chrome_app_chrome__main__delegate.h head/www/chromium/files/patch-chrome_app_chromium__strings.grd head/www/chromium/files/patch-chrome_app_generated__resources.grd head/www/chromium/files/patch-chrome_app_google__chrome__strings.grd head/www/chromium/files/patch-chrome_app_mash_mash__runner.cc head/www/chromium/files/patch-chrome_app_settings__strings.grdp head/www/chromium/files/patch-chrome_app_shutdown__signal__handlers__posix.cc head/www/chromium/files/patch-chrome_browser_BUILD.gn head/www/chromium/files/patch-chrome_browser_about__flags.cc head/www/chromium/files/patch-chrome_browser_after__startup__task__utils.cc head/www/chromium/files/patch-chrome_browser_browser__process__impl.cc head/www/chromium/files/patch-chrome_browser_browser__process__impl.h head/www/chromium/files/patch-chrome_browser_browser__resources.grd head/www/chromium/files/patch-chrome_browser_chrome__browser__main.cc head/www/chromium/files/patch-chrome_browser_chrome__browser__main__linux.cc head/www/chromium/files/patch-chrome_browser_chrome__browser__main__posix.cc head/www/chromium/files/patch-chrome_browser_chrome__content__browser__client.cc head/www/chromium/files/patch-chrome_browser_chrome__content__browser__client.h head/www/chromium/files/patch-chrome_browser_diagnostics_diagnostics__writer.cc head/www/chromium/files/patch-chrome_browser_diagnostics_diagnostics__writer.h head/www/chromium/files/patch-chrome_browser_download_chrome__download__manager__delegate.cc head/www/chromium/files/patch-chrome_browser_download_download__commands.cc head/www/chromium/files/patch-chrome_browser_download_download__prefs.cc head/www/chromium/files/patch-chrome_browser_download_download__shelf__context__menu.cc head/www/chromium/files/patch-chrome_browser_download_download__status__updater.cc head/www/chromium/files/patch-chrome_browser_extensions_BUILD.gn head/www/chromium/files/patch-chrome_browser_extensions_activity__log_activity__log.cc head/www/chromium/files/patch-chrome_browser_extensions_api_image__writer__private_image__writer__private__api.cc head/www/chromium/files/patch-chrome_browser_extensions_api_messaging_message__service.cc head/www/chromium/files/patch-chrome_browser_extensions_api_runtime_chrome__runtime__api__delegate.cc head/www/chromium/files/patch-chrome_browser_extensions_api_settings__private_prefs__util.cc head/www/chromium/files/patch-chrome_browser_extensions_bookmark__app__helper.cc head/www/chromium/files/patch-chrome_browser_extensions_browser__context__keyed__service__factories.cc head/www/chromium/files/patch-chrome_browser_extensions_external__provider__impl.cc head/www/chromium/files/patch-chrome_browser_interstitials_chrome__controller__client.cc head/www/chromium/files/patch-chrome_browser_media__galleries_fileapi_mtp__device__map__service.cc head/www/chromium/files/patch-chrome_browser_media__galleries_media__file__system__registry.cc head/www/chromium/files/patch-chrome_browser_memory__details.cc head/www/chromium/files/patch-chrome_browser_metrics_chrome__browser__main__extra__parts__metrics.cc head/www/chromium/files/patch-chrome_browser_net_async__dns__field__trial.cc head/www/chromium/files/patch-chrome_browser_notifications_message__center__notification__manager.cc head/www/chromium/files/patch-chrome_browser_password__manager_chrome__password__manager__client.cc head/www/chromium/files/patch-chrome_browser_plugins_plugins__resource__service.cc head/www/chromium/files/patch-chrome_browser_policy_policy__prefs__browsertest.cc head/www/chromium/files/patch-chrome_browser_process__singleton__posix.cc head/www/chromium/files/patch-chrome_browser_profiles_profile__impl__io__data.cc head/www/chromium/files/patch-chrome_browser_renderer__context__menu_render__view__context__menu.cc head/www/chromium/files/patch-chrome_browser_renderer__preferences__util.cc head/www/chromium/files/patch-chrome_browser_resources_safe__browsing_gen__file__type__proto.py head/www/chromium/files/patch-chrome_browser_safe__browsing_incident__reporting_incident__reporting__service.cc head/www/chromium/files/patch-chrome_browser_safe__browsing_permission__reporter.cc head/www/chromium/files/patch-chrome_browser_sync_chrome__sync__client.cc head/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group.cc head/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group__sampler.cc head/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__group__sampler.h head/www/chromium/files/patch-chrome_browser_task__manager_sampling_task__manager__impl.cc head/www/chromium/files/patch-chrome_browser_tracing_crash__service__uploader.cc head/www/chromium/files/patch-chrome_browser_ui_BUILD.gn head/www/chromium/files/patch-chrome_browser_ui_browser__command__controller.cc head/www/chromium/files/patch-chrome_browser_ui_input__method_input__method__engine.h head/www/chromium/files/patch-chrome_browser_ui_startup_bad__flags__prompt.cc head/www/chromium/files/patch-chrome_browser_ui_startup_startup__browser__creator.cc head/www/chromium/files/patch-chrome_browser_ui_tab__helpers.cc head/www/chromium/files/patch-chrome_browser_ui_task__manager_task__manager__table__model.cc head/www/chromium/files/patch-chrome_browser_ui_toolbar_app__menu__model.cc head/www/chromium/files/patch-chrome_browser_ui_views_accelerator__table.cc head/www/chromium/files/patch-chrome_browser_ui_views_apps_chrome__native__app__window__views__aura.cc head/www/chromium/files/patch-chrome_browser_ui_views_chrome__browser__main__extra__parts__views.cc head/www/chromium/files/patch-chrome_browser_ui_views_chrome__views__delegate.h head/www/chromium/files/patch-chrome_browser_ui_views_first__run__dialog.cc head/www/chromium/files/patch-chrome_browser_ui_views_frame_opaque__browser__frame__view.cc head/www/chromium/files/patch-chrome_browser_ui_views_frame_opaque__browser__frame__view__platform__specific.cc head/www/chromium/files/patch-chrome_browser_ui_views_frame_system__menu__model__builder.cc head/www/chromium/files/patch-chrome_browser_ui_views_frame_system__menu__model__delegate.cc head/www/chromium/files/patch-chrome_browser_ui_views_tabs_tab__drag__controller.cc head/www/chromium/files/patch-chrome_browser_ui_views_tabs_tab__strip.cc head/www/chromium/files/patch-chrome_browser_ui_webui_about__ui.cc head/www/chromium/files/patch-chrome_browser_ui_webui_chrome__web__ui__controller__factory.cc head/www/chromium/files/patch-chrome_browser_ui_webui_options_browser__options__handler.cc head/www/chromium/files/patch-chrome_browser_ui_webui_options_browser__options__handler.h head/www/chromium/files/patch-chrome_browser_ui_webui_settings_appearance__handler.cc head/www/chromium/files/patch-chrome_browser_ui_webui_settings_appearance__handler.h head/www/chromium/files/patch-chrome_browser_ui_webui_settings_md__settings__localized__strings__provider.cc head/www/chromium/files/patch-chrome_browser_web__applications_web__app.cc head/www/chromium/files/patch-chrome_browser_web__applications_web__app.h head/www/chromium/files/patch-chrome_chrome__paks.gni head/www/chromium/files/patch-chrome_common_chrome__paths.cc head/www/chromium/files/patch-chrome_common_chrome__paths__internal.h head/www/chromium/files/patch-chrome_common_chrome__switches.cc head/www/chromium/files/patch-chrome_common_chrome__switches.h head/www/chromium/files/patch-chrome_common_extensions_api_BUILD.gn head/www/chromium/files/patch-chrome_common_extensions_chrome__extensions__client.cc head/www/chromium/files/patch-chrome_common_extensions_command.cc head/www/chromium/files/patch-chrome_common_features.gni head/www/chromium/files/patch-chrome_common_pref__names.cc head/www/chromium/files/patch-chrome_common_pref__names.h head/www/chromium/files/patch-chrome_common_url__constants.cc head/www/chromium/files/patch-chrome_common_url__constants.h head/www/chromium/files/patch-chrome_renderer_pepper_pepper__flash__font__file__host.cc head/www/chromium/files/patch-chrome_renderer_pepper_pepper__flash__font__file__host.h head/www/chromium/files/patch-chrome_test_BUILD.gn head/www/chromium/files/patch-chrome_test_base_in__process__browser__test.cc head/www/chromium/files/patch-chrome_test_base_testing__browser__process.h head/www/chromium/files/patch-chrome_test_chromedriver_chrome_chrome__finder.cc head/www/chromium/files/patch-chromecast_browser_cast__browser__main__parts.cc head/www/chromium/files/patch-chromecast_browser_cast__content__browser__client.cc head/www/chromium/files/patch-chromecast_crash_BUILD.gn head/www/chromium/files/patch-components_BUILD.gn head/www/chromium/files/patch-components_autofill_content_renderer_password__form__conversion__utils.cc head/www/chromium/files/patch-components_autofill_core_browser_autofill__experiments.cc head/www/chromium/files/patch-components_content__settings_core_browser_website__settings__registry.cc head/www/chromium/files/patch-components_cookie__config_cookie__store__util.cc head/www/chromium/files/patch-components_filesystem_file__system__app.cc head/www/chromium/files/patch-components_flags__ui_flags__state.cc head/www/chromium/files/patch-components_metrics_BUILD.gn head/www/chromium/files/patch-components_metrics_system__memory__stats__recorder__linux.cc head/www/chromium/files/patch-components_neterror_resources_neterror.js head/www/chromium/files/patch-components_policy_BUILD.gn head/www/chromium/files/patch-components_policy_resources_policy__templates.json head/www/chromium/files/patch-components_storage__monitor_storage__monitor.cc head/www/chromium/files/patch-components_storage__monitor_storage__monitor__freebsd.cc head/www/chromium/files/patch-components_sync_base_get__session__name.cc head/www/chromium/files/patch-components_tracing_common_process__metrics__memory__dump__provider.cc head/www/chromium/files/patch-components_tracing_common_process__metrics__memory__dump__provider.h head/www/chromium/files/patch-components_update__client_update__query__params.cc head/www/chromium/files/patch-content_app_BUILD.gn head/www/chromium/files/patch-content_app_content__main__runner.cc head/www/chromium/files/patch-content_browser_BUILD.gn head/www/chromium/files/patch-content_browser_accessibility_browser__accessibility.h head/www/chromium/files/patch-content_browser_accessibility_browser__accessibility__manager.h head/www/chromium/files/patch-content_browser_browser__main__loop.cc head/www/chromium/files/patch-content_browser_child__process__launcher__helper__linux.cc head/www/chromium/files/patch-content_browser_devtools_protocol_color__picker.cc head/www/chromium/files/patch-content_browser_download_base__file.cc head/www/chromium/files/patch-content_browser_gpu_gpu__data__manager__impl__private.cc head/www/chromium/files/patch-content_browser_gpu_gpu__data__manager__impl__private.h head/www/chromium/files/patch-content_browser_gpu_gpu__internals__ui.cc head/www/chromium/files/patch-content_browser_gpu_gpu__process__host.cc head/www/chromium/files/patch-content_browser_media_media__internals.cc head/www/chromium/files/patch-content_browser_memory_memory__coordinator__impl.cc head/www/chromium/files/patch-content_browser_memory_memory__monitor.cc head/www/chromium/files/patch-content_browser_ppapi__plugin__process__host.cc head/www/chromium/files/patch-content_browser_renderer__host_render__message__filter.cc head/www/chromium/files/patch-content_browser_renderer__host_render__message__filter.h head/www/chromium/files/patch-content_browser_renderer__host_render__process__host__impl.cc head/www/chromium/files/patch-content_browser_renderer__host_render__view__host__impl.cc head/www/chromium/files/patch-content_browser_renderer__host_render__widget__host__view__aura.cc head/www/chromium/files/patch-content_browser_renderer__host_render__widget__host__view__event__handler.cc head/www/chromium/files/patch-content_browser_tracing_tracing__controller__impl.cc head/www/chromium/files/patch-content_browser_utility__process__host__impl.cc head/www/chromium/files/patch-content_child_child__process.cc head/www/chromium/files/patch-content_child_child__process.h head/www/chromium/files/patch-content_child_child__thread__impl.cc head/www/chromium/files/patch-content_child_child__thread__impl.h head/www/chromium/files/patch-content_common_BUILD.gn head/www/chromium/files/patch-content_common_child__process__messages.h head/www/chromium/files/patch-content_common_content__switches__internal.cc head/www/chromium/files/patch-content_common_sandbox__linux_sandbox__debug__handling__linux.cc head/www/chromium/files/patch-content_common_view__messages.h head/www/chromium/files/patch-content_gpu_BUILD.gn head/www/chromium/files/patch-content_gpu_gpu__main.cc head/www/chromium/files/patch-content_gpu_in__process__gpu__thread.cc head/www/chromium/files/patch-content_public_common_child__process__host.h head/www/chromium/files/patch-content_public_common_content__switches.cc head/www/chromium/files/patch-content_public_common_content__switches.h head/www/chromium/files/patch-content_public_common_renderer__preferences.h head/www/chromium/files/patch-content_renderer_media_webrtc_processed__local__audio__source.cc head/www/chromium/files/patch-content_renderer_render__thread__impl.cc head/www/chromium/files/patch-content_renderer_renderer__blink__platform__impl.cc head/www/chromium/files/patch-content_renderer_renderer__blink__platform__impl.h head/www/chromium/files/patch-content_renderer_renderer__main__platform__delegate__linux.cc head/www/chromium/files/patch-content_renderer_webscrollbarbehavior__impl__aura.cc head/www/chromium/files/patch-content_shell_BUILD.gn head/www/chromium/files/patch-content_shell_browser_shell__browser__context.cc head/www/chromium/files/patch-content_shell_browser_shell__browser__main__parts.cc head/www/chromium/files/patch-content_test_BUILD.gn head/www/chromium/files/patch-crypto_nss__util.cc head/www/chromium/files/patch-device_BUILD.gn head/www/chromium/files/patch-device_battery_BUILD.gn head/www/chromium/files/patch-device_bluetooth_BUILD.gn head/www/chromium/files/patch-device_gamepad_gamepad__provider.cc head/www/chromium/files/patch-device_geolocation_location__arbitrator.cc head/www/chromium/files/patch-device_sensors_data__fetcher__shared__memory.h head/www/chromium/files/patch-device_serial_BUILD.gn head/www/chromium/files/patch-device_serial_serial__io__handler__posix.cc head/www/chromium/files/patch-device_usb_usb__context.cc head/www/chromium/files/patch-device_usb_usb__service__impl.cc head/www/chromium/files/patch-device_usb_usb__service__impl.h head/www/chromium/files/patch-extensions_browser_api_networking__private_networking__private__event__router__factory.cc head/www/chromium/files/patch-extensions_browser_api_serial_serial__api.cc head/www/chromium/files/patch-gpu_config_BUILD.gn head/www/chromium/files/patch-gpu_config_gpu__control__list.cc head/www/chromium/files/patch-gpu_config_gpu__info__collector.cc head/www/chromium/files/patch-gpu_config_gpu__test__config.cc head/www/chromium/files/patch-gpu_ipc_service_BUILD.gn head/www/chromium/files/patch-gpu_ipc_service_gpu__init.cc head/www/chromium/files/patch-gpu_vulkan_BUILD.gn head/www/chromium/files/patch-headless_lib_browser_headless__content__browser__client.cc head/www/chromium/files/patch-headless_lib_browser_headless__content__browser__client.h head/www/chromium/files/patch-headless_lib_headless__content__main__delegate.cc head/www/chromium/files/patch-headless_lib_headless__content__main__delegate.h head/www/chromium/files/patch-ipc_ipc__channel.h head/www/chromium/files/patch-ipc_ipc__message__utils.cc head/www/chromium/files/patch-ipc_ipc__message__utils.h head/www/chromium/files/patch-mash_package_mash__packaged__service.cc head/www/chromium/files/patch-media__audio__alsa__audio_manager_alsa.cc head/www/chromium/files/patch-media_audio_BUILD.gn head/www/chromium/files/patch-media_audio_audio__manager.cc head/www/chromium/files/patch-media_base_BUILD.gn head/www/chromium/files/patch-media_base_audio__latency.cc head/www/chromium/files/patch-media_base_video__frame.cc head/www/chromium/files/patch-media_base_video__frame.h head/www/chromium/files/patch-media_capture_BUILD.gn head/www/chromium/files/patch-media_capture_video_fake__video__capture__device__factory.cc head/www/chromium/files/patch-media_capture_video_file__video__capture__device__factory.cc head/www/chromium/files/patch-media_capture_video_linux_v4l2__capture__delegate.cc head/www/chromium/files/patch-media_capture_video_linux_video__capture__device__linux.cc head/www/chromium/files/patch-media_capture_video_video__capture__device__client.cc head/www/chromium/files/patch-media_capture_video_video__capture__device__factory.cc head/www/chromium/files/patch-media_cast_BUILD.gn head/www/chromium/files/patch-media_ffmpeg_ffmpeg__common.h head/www/chromium/files/patch-media_filters_ffmpeg__demuxer.cc head/www/chromium/files/patch-media_formats_common_offset__byte__queue.cc head/www/chromium/files/patch-media_formats_mp2t_es__parser__adts.cc head/www/chromium/files/patch-media_formats_mp2t_es__parser__mpeg1audio.cc head/www/chromium/files/patch-net_BUILD.gn head/www/chromium/files/patch-net_base_mime__util__unittest.cc head/www/chromium/files/patch-net_base_network__change__notifier.cc head/www/chromium/files/patch-net_dns_dns__util.cc head/www/chromium/files/patch-net_dns_host__resolver__proc.cc head/www/chromium/files/patch-net_http_http__auth__gssapi__posix.cc head/www/chromium/files/patch-net_proxy_proxy__config__service__linux.cc head/www/chromium/files/patch-net_proxy_proxy__service.cc head/www/chromium/files/patch-net_socket_udp__socket__posix.cc head/www/chromium/files/patch-net_tools_cert__verify__tool_verify__using__path__builder.cc head/www/chromium/files/patch-net_tools_get__server__time_get__server__time.cc head/www/chromium/files/patch-net_url__request_url__request__context__builder.cc head/www/chromium/files/patch-pdf_pdfium_pdfium__engine.cc head/www/chromium/files/patch-ppapi_proxy_file__io__resource.cc head/www/chromium/files/patch-ppapi_shared__impl_private_net__address__private__impl.cc head/www/chromium/files/patch-printing_BUILD.gn head/www/chromium/files/patch-remoting_host_BUILD.gn head/www/chromium/files/patch-remoting_host_host__details.cc head/www/chromium/files/patch-services_catalog_public_cpp_manifest__parsing__util.cc head/www/chromium/files/patch-services_catalog_store.cc head/www/chromium/files/patch-services_device_time__zone__monitor_time__zone__monitor__linux.cc head/www/chromium/files/patch-services_service__manager_public_cpp_standalone__service_standalone__service.cc head/www/chromium/files/patch-services_ui_gpu_gpu__main.cc head/www/chromium/files/patch-skia_BUILD.gn head/www/chromium/files/patch-skia_ext_SkMemory__new__handler.cpp head/www/chromium/files/patch-storage_browser_quota_quota__settings.cc head/www/chromium/files/patch-testing_gtest_src_gtest.cc head/www/chromium/files/patch-third__party_WebKit_Source_core_layout_BUILD.gn head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontCache.cpp head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontCache.h head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontPlatformData.cpp head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_FontPlatformData.h head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_SimpleFontData.cpp head/www/chromium/files/patch-third__party_WebKit_Source_platform_fonts_skia_FontCacheSkia.cpp head/www/chromium/files/patch-third__party_WebKit_Source_platform_heap_StackFrameDepth.cpp head/www/chromium/files/patch-third__party_WebKit_Source_web_PopupMenuImpl.cpp head/www/chromium/files/patch-third__party_angle_BUILD.gn head/www/chromium/files/patch-third__party_angle_src_tests_BUILD.gn head/www/chromium/files/patch-third__party_boringssl_src_crypto_ex__data.c head/www/chromium/files/patch-third__party_expat_BUILD.gn head/www/chromium/files/patch-third__party_ffmpeg_ffmpeg__generated.gni head/www/chromium/files/patch-third__party_harfbuzz-ng_BUILD.gn head/www/chromium/files/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_memory_singleton.h head/www/chromium/files/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_synchronization_lock.h head/www/chromium/files/patch-third__party_libusb_BUILD.gn head/www/chromium/files/patch-third__party_mesa_BUILD.gn head/www/chromium/files/patch-third__party_opus_BUILD.gn head/www/chromium/files/patch-third__party_pdfium_BUILD.gn head/www/chromium/files/patch-third__party_pdfium_fpdfsdk_javascript_JS__Value.cpp head/www/chromium/files/patch-third__party_pdfium_fpdfsdk_javascript_PublicMethods.cpp head/www/chromium/files/patch-third__party_pdfium_skia_BUILD.gn head/www/chromium/files/patch-third__party_webrtc_BUILD.gn head/www/chromium/files/patch-third__party_webrtc_base_BUILD.gn head/www/chromium/files/patch-third__party_webrtc_base_httpcommon.cc head/www/chromium/files/patch-third__party_webrtc_base_network.cc head/www/chromium/files/patch-third__party_webrtc_base_physicalsocketserver.cc head/www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc head/www/chromium/files/patch-third__party_webrtc_modules_audio__device_BUILD.gn head/www/chromium/files/patch-third__party_webrtc_modules_video__coding_BUILD.gn head/www/chromium/files/patch-third__party_webrtc_system__wrappers_BUILD.gn head/www/chromium/files/patch-third__party_widevine_cdm_BUILD.gn head/www/chromium/files/patch-third__party_yasm_BUILD.gn head/www/chromium/files/patch-third__party_zlib_BUILD.gn head/www/chromium/files/patch-tools_gn_args.cc head/www/chromium/files/patch-tools_gn_bootstrap_bootstrap.py head/www/chromium/files/patch-tools_perf_chrome__telemetry__build_BUILD.gn head/www/chromium/files/patch-ui_aura_BUILD.gn head/www/chromium/files/patch-ui_base_BUILD.gn head/www/chromium/files/patch-ui_base_dragdrop_os__exchange__data__provider__factory.cc head/www/chromium/files/patch-ui_base_ime_ime__engine__handler__interface.h head/www/chromium/files/patch-ui_base_ime_input__method__factory.cc head/www/chromium/files/patch-ui_base_resource_resource__bundle.cc head/www/chromium/files/patch-ui_base_ui__features.gni head/www/chromium/files/patch-ui_compositor_BUILD.gn head/www/chromium/files/patch-ui_events_devices_x11_device__data__manager__x11.cc head/www/chromium/files/patch-ui_events_event__switches.cc head/www/chromium/files/patch-ui_gfx_BUILD.gn head/www/chromium/files/patch-ui_gfx_canvas__skia.cc head/www/chromium/files/patch-ui_gfx_font__list.cc head/www/chromium/files/patch-ui_gfx_font__render__params.h head/www/chromium/files/patch-ui_gfx_render__text.cc head/www/chromium/files/patch-ui_gl_BUILD.gn head/www/chromium/files/patch-ui_gl_sync__control__vsync__provider.cc head/www/chromium/files/patch-ui_gl_sync__control__vsync__provider.h head/www/chromium/files/patch-ui_message__center_message__center__style.h head/www/chromium/files/patch-ui_message__center_views_message__center__button__bar.cc head/www/chromium/files/patch-ui_message__center_views_message__center__button__bar.h head/www/chromium/files/patch-ui_message__center_views_message__view__factory.cc head/www/chromium/files/patch-ui_views_BUILD.gn head/www/chromium/files/patch-ui_views_bubble_bubble__dialog__delegate.cc head/www/chromium/files/patch-ui_views_controls_label.cc head/www/chromium/files/patch-ui_views_controls_textfield_textfield.cc head/www/chromium/files/patch-ui_views_examples_widget__example.cc head/www/chromium/files/patch-ui_views_mus_BUILD.gn head/www/chromium/files/patch-ui_views_mus_aura__init.cc head/www/chromium/files/patch-ui_views_selection__controller.cc head/www/chromium/files/patch-ui_views_views__delegate.cc head/www/chromium/files/patch-ui_views_views__delegate.h head/www/chromium/files/patch-ui_views_views__switches.cc head/www/chromium/files/patch-ui_views_window_custom__frame__view.cc head/www/chromium/files/patch-ui_views_window_dialog__delegate.cc head/www/chromium/files/patch-v8_BUILD.gn head/www/chromium/files/patch-v8_src_base_platform_platform-posix.cc head/www/chromium/files/patch-v8_src_globals.h head/www/chromium/pkg-descr head/www/chromium/pkg-plist Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/Makefile Tue Jun 20 20:20:44 2017 (r443998) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 58.0.3029.110 -PORTREVISION= 2 +PORTVERSION= 59.0.3071.104 CATEGORIES= www -MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ +MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on MAINTAINER= chromium@FreeBSD.org @@ -59,16 +58,17 @@ LIB_DEPENDS= libspeechd.so:accessibility/speech-dispat RUN_DEPENDS= xdg-open:devel/xdg-utils \ droid-fonts-ttf>0:x11-fonts/droid-fonts-ttf -ONLY_FOR_ARCHS= i386 amd64 -USES= compiler bison cpe desktop-file-utils execinfo jpeg \ +ONLY_FOR_ARCHS= amd64 i386 +USES= bison compiler cpe desktop-file-utils execinfo jpeg \ ninja perl5 pkgconfig python:2,build shebangfix tar:xz CPE_VENDOR= google CPE_PRODUCT= chrome +USE_LDCONFIG= ${DATADIR} USE_PERL5= build USE_XORG= scrnsaverproto x11 xcb xcomposite xcursor xext xdamage xfixes xi \ xproto xrandr xrender xscrnsaver xtst -USE_GNOME= atk glib20 gtk20 gtk30 dconf libxslt libxml2 +USE_GNOME= atk dconf glib20 gtk20 gtk30 libxml2 libxslt MAKE_ARGS= -C out/${BUILDTYPE} SHEBANG_FILES= chrome/tools/build/linux/chrome-wrapper ALL_TARGET= chrome @@ -80,20 +80,22 @@ INSTALLS_ICONS= yes # Some parts don't have use_system_* flag, and can be turned on/off by using # replace_gn_files.py script, some parts just turned on/off for target host # OS "target_os == is_bsd", like libusb, libpci. -GN_ARGS+= is_clang=true \ - clang_use_chrome_plugins=false \ +GN_ARGS+= clang_use_chrome_plugins=false \ enable_media_router=true \ enable_nacl=false \ enable_one_click_signin=true \ enable_remoting=false \ enable_webrtc=false \ fieldtrial_testing_like_official_build=true \ + is_clang=true \ toolkit_views=true \ + treat_warnings_as_errors=false \ use_allocator="none" \ use_aura=true \ use_cups=true \ use_experimental_allocator_shim=false \ - treat_warnings_as_errors=false \ + use_gtk3=true \ + use_lld=true \ use_sysroot=false \ use_system_libjpeg=true \ use_system_sqlite=false # chrome has additional patches @@ -148,17 +150,13 @@ GN_ARGS+= proprietary_codecs=false GN_ARGS+= enable_hevc_demuxing=false .endif -DEBUG_MAKE_ENV= V=1 .if ${PORT_OPTIONS:MDEBUG} BUILDTYPE= Debug GN_ARGS+= is_debug=true GN_BOOTSTRAP_FLAGS+= --debug -#GN_ARGS+= is_component_build=true +MAKE_ENV+= V=1 .else BUILDTYPE= Release -.if ${ARCH} == amd64 -GN_ARGS+= use_lld=true # harder, better, faster, stronger -.endif GN_ARGS+= is_debug=false GN_ARGS+= symbol_level=0 GN_ARGS+= remove_webcore_debug_symbols=true @@ -246,8 +244,8 @@ test regression-test: build do-install: @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_MAN} ${WRKSRC}/out/${BUILDTYPE}/chrome.1 ${STAGEDIR}${MANPREFIX}/man/man1 -.for t in font_service test_ime_driver ui - ${INSTALL_DATA} ${WRKSRC}/out/${BUILDTYPE}/${t}.service \ +.for m in font_service test_ime_driver ui + ${INSTALL_DATA} ${WRKSRC}/out/${BUILDTYPE}/${m}.service \ ${STAGEDIR}${DATADIR} .endfor .for s in 22 24 48 64 128 256 @@ -276,6 +274,12 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/chrome ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/out/${BUILDTYPE}/mksnapshot \ ${STAGEDIR}${DATADIR} +.if ${PORT_OPTIONS:MDEBUG} + ${INSTALL_LIB} ${WRKSRC}/out/${BUILDTYPE}/*.so \ + ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/out/${BUILDTYPE}/character_data_generator \ + ${STAGEDIR}${DATADIR} +.endif .if ${PORT_OPTIONS:MDRIVER} ${INSTALL_PROGRAM} ${WRKSRC}/out/${BUILDTYPE}/chromedriver \ ${STAGEDIR}${PREFIX}/bin Modified: head/www/chromium/Makefile.tests ============================================================================== --- head/www/chromium/Makefile.tests Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/Makefile.tests Tue Jun 20 20:20:44 2017 (r443998) @@ -4,7 +4,6 @@ TEST_TARGETS= base_unittests \ crypto_unittests \ cacheinvalidation_unittests \ gpu_unittests \ - sync_unit_tests \ printing_unittests \ sql_unittests \ content_unittests \ Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/distinfo Tue Jun 20 20:20:44 2017 (r443998) @@ -1,5 +1,5 @@ -TIMESTAMP = 1494416961 -SHA256 (chromium-58.0.3029.110.tar.xz) = f24cef3dd2acf9dd5ccdeeca47fea42d1c1ddff32b7375dc9e0cd35a4e8d78ff -SIZE (chromium-58.0.3029.110.tar.xz) = 518167664 -SHA256 (chromium-58.0.3029.110-testdata.tar.xz) = 53ace1eaee38bc3bb11aef932851131d563a2deefb2fd9c9f1fa524b7098e472 -SIZE (chromium-58.0.3029.110-testdata.tar.xz) = 124161428 +TIMESTAMP = 1497583686 +SHA256 (chromium-59.0.3071.104.tar.xz) = a949fa166cdcdbd8419fbdb4583804613d9845130f0c851e4c647d79a4c300d0 +SIZE (chromium-59.0.3071.104.tar.xz) = 531895868 +SHA256 (chromium-59.0.3071.104-testdata.tar.xz) = 4826be59b1f29dcf25c9868d0cac296fb2c98a8f1f944e6a3d7cea275705b771 +SIZE (chromium-59.0.3071.104-testdata.tar.xz) = 124231072 Modified: head/www/chromium/files/patch-BUILD.gn ============================================================================== --- head/www/chromium/files/patch-BUILD.gn Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-BUILD.gn Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- BUILD.gn.orig 2017-04-19 19:06:27 UTC +--- BUILD.gn.orig 2017-06-05 19:03:00 UTC +++ BUILD.gn -@@ -220,7 +220,7 @@ group("both_gn_and_gyp") { +@@ -95,7 +95,7 @@ group("gn_all") { ] } @@ -9,7 +9,7 @@ deps += [ "//chrome", "//chrome/test:browser_tests", -@@ -277,7 +277,7 @@ group("both_gn_and_gyp") { +@@ -153,7 +153,7 @@ group("gn_all") { ] } @@ -18,7 +18,7 @@ # TODO(GYP): Figure out which of these should actually build on iOS, # and whether there should be other targets that are iOS-only and missing. deps += [ -@@ -322,7 +322,7 @@ group("both_gn_and_gyp") { +@@ -199,7 +199,7 @@ group("gn_all") { "//ui/touch_selection:ui_touch_selection_unittests", "//url/ipc:url_ipc_unittests", ] @@ -27,7 +27,7 @@ deps += [ "//ios:all" ] } -@@ -482,7 +482,7 @@ group("both_gn_and_gyp") { +@@ -359,7 +359,7 @@ group("gn_all") { ] } @@ -36,7 +36,7 @@ # The following are definitely linux-only. deps += [ "//chrome:manpage", -@@ -505,9 +505,16 @@ group("both_gn_and_gyp") { +@@ -382,9 +382,16 @@ group("gn_all") { # TODO(dpranke): add the linux_dump_symbols flag? deps += [ "//chrome:linux_symbols" ] } @@ -54,7 +54,7 @@ deps += [ "//base:base_i18n_perftests", "//base:base_perftests", -@@ -578,7 +585,7 @@ group("both_gn_and_gyp") { +@@ -455,7 +462,7 @@ group("gn_all") { if (enable_nacl) { deps += [ "//components/nacl/loader:nacl_loader_unittests" ] @@ -63,7 +63,7 @@ # TODO(dpranke): Figure out what platforms should actually have this. deps += [ "//components/nacl/loader:nacl_helper" ] -@@ -684,7 +691,7 @@ group("both_gn_and_gyp") { +@@ -557,7 +564,7 @@ group("gn_all") { deps += [ "//chrome/installer/mini_installer:next_version_mini_installer" ] } @@ -72,7 +72,7 @@ deps += [ "//breakpad:symupload($host_toolchain)" ] } -@@ -728,7 +735,7 @@ group("gn_only") { +@@ -595,7 +602,7 @@ group("gn_all") { deps += [ "//components/proximity_auth:proximity_auth_unittests" ] } @@ -81,7 +81,7 @@ deps += [ "//mash:all", "//media/mojo/services:media_service_unittests", -@@ -754,7 +761,7 @@ group("gn_only") { +@@ -620,7 +627,7 @@ group("gn_all") { } } @@ -90,7 +90,7 @@ # TODO(GYP): Figure out if any of these should be in gn_all # and figure out how cross-platform they are deps += [ -@@ -794,7 +801,7 @@ group("gn_only") { +@@ -659,7 +666,7 @@ group("gn_all") { } if (target_cpu == "x86" || target_cpu == "x64") { @@ -99,7 +99,7 @@ deps += [ "//chrome/test:load_library_perf_tests" ] } deps += [ -@@ -802,7 +809,7 @@ group("gn_only") { +@@ -667,7 +674,7 @@ group("gn_all") { "//third_party/libjpeg_turbo:simd_asm", ] } @@ -108,7 +108,7 @@ deps += [ "//v8:v8_shell" ] } } -@@ -812,7 +819,7 @@ group("gn_only") { +@@ -677,7 +684,7 @@ group("gn_all") { } if ((is_linux && !is_chromeos && !is_chromecast) || (is_win && use_drfuzz) || @@ -117,7 +117,7 @@ deps += [ "//testing/libfuzzer/fuzzers", "//testing/libfuzzer/tests:libfuzzer_tests", -@@ -844,7 +851,7 @@ group("gn_only") { +@@ -828,7 +835,7 @@ if (is_chromeos) { group("gn_mojo_targets") { testonly = true @@ -126,7 +126,7 @@ # TODO(GYP): Figure out if any of these should be in gn_all # and figure out how cross-platform they are deps = [ -@@ -870,7 +877,7 @@ group("gn_visibility") { +@@ -854,7 +861,7 @@ group("gn_visibility") { } } @@ -135,7 +135,7 @@ # This group includes all of the targets needed to build and test Blink, # including running the layout tests (see below). group("blink_tests") { -@@ -935,7 +942,7 @@ if (!is_ios) { +@@ -921,7 +928,7 @@ if (!is_ios) { data_deps += [ "//content/shell:content_shell_crash_service" ] } @@ -144,7 +144,7 @@ data_deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] } -@@ -943,7 +950,7 @@ if (!is_ios) { +@@ -929,7 +936,7 @@ if (!is_ios) { data_deps += [ "//breakpad:dump_syms($host_toolchain)" ] } Modified: head/www/chromium/files/patch-apps_ui_views_app__window__frame__view.cc ============================================================================== --- head/www/chromium/files/patch-apps_ui_views_app__window__frame__view.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-apps_ui_views_app__window__frame__view.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- apps/ui/views/app_window_frame_view.cc.orig 2017-04-19 19:06:27 UTC +--- apps/ui/views/app_window_frame_view.cc.orig 2017-06-05 19:03:00 UTC +++ apps/ui/views/app_window_frame_view.cc -@@ -132,7 +132,7 @@ gfx::Rect AppWindowFrameView::GetBoundsF +@@ -132,7 +132,7 @@ gfx::Rect AppWindowFrameView::GetBoundsForClientView() gfx::Rect AppWindowFrameView::GetWindowBoundsForClientBounds( const gfx::Rect& client_bounds) const { gfx::Rect window_bounds = client_bounds; Modified: head/www/chromium/files/patch-ash_display_mirror__window__controller.cc ============================================================================== --- head/www/chromium/files/patch-ash_display_mirror__window__controller.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-ash_display_mirror__window__controller.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- ash/display/mirror_window_controller.cc.orig 2017-04-19 19:06:27 UTC +--- ash/display/mirror_window_controller.cc.orig 2017-06-05 19:03:00 UTC +++ ash/display/mirror_window_controller.cc -@@ -251,7 +251,11 @@ void MirrorWindowController::UpdateWindo +@@ -249,7 +249,11 @@ void MirrorWindowController::UpdateWindow( return info.id() == iter->first; }) == display_info_list.end()) { CloseAndDeleteHost(iter->second, true); Modified: head/www/chromium/files/patch-base_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-base_BUILD.gn Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_BUILD.gn Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,15 @@ ---- base/BUILD.gn.orig 2017-04-19 19:06:28 UTC -+++ base/BUILD.gn -@@ -1156,6 +1156,9 @@ component("base") { +--- base/BUILD.gn.orig 2017-06-05 21:03:00.000000000 +0200 ++++ base/BUILD.gn 2017-06-13 19:23:34.211227000 +0200 +@@ -1098,7 +1098,7 @@ + "base_paths_win.h", + ] + +- if (is_linux) { ++ if (is_linux || is_bsd) { + sources += [ "base_paths_posix.cc" ] + } + } +@@ -1157,6 +1157,9 @@ deps += [ "//base/allocator:tcmalloc" ] } else if (is_linux && use_allocator == "none") { sources += [ "allocator/allocator_shim_default_dispatch_to_glibc.cc" ] @@ -10,7 +19,7 @@ } else if (is_android && use_allocator == "none") { sources += [ "allocator/allocator_shim_default_dispatch_to_linker_wrapped_symbols.cc", -@@ -1171,6 +1174,34 @@ component("base") { +@@ -1172,6 +1175,33 @@ } } @@ -28,7 +37,6 @@ + ] + sources += [ + "files/file_path_watcher_stub.cc", -+ "process/memory_stubs.cc", + "process/process_handle_freebsd.cc", + "process/process_iterator_freebsd.cc", + "process/process_metrics_freebsd.cc", @@ -45,7 +53,7 @@ # Allow more direct string conversions on platforms with native utf8 # strings if (is_mac || is_ios || is_chromeos || is_chromecast) { -@@ -1467,7 +1498,7 @@ component("base") { +@@ -1469,7 +1499,7 @@ } # Linux. @@ -54,7 +62,7 @@ if (is_asan || is_lsan || is_msan || is_tsan) { # For llvm-sanitizer. data += [ "//third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6" ] -@@ -1492,7 +1523,7 @@ component("base") { +@@ -1494,7 +1524,7 @@ "//base/third_party/xdg_user_dirs", ] } else { @@ -63,30 +71,16 @@ sources -= [ "nix/mime_util_xdg.cc", "nix/mime_util_xdg.h", -@@ -1508,6 +1539,13 @@ component("base") { - } - } - -+ if (is_bsd) { -+ sources -= [ -+ "threading/platform_thread_linux.cc", -+ ] -+ sources += [ "threading/platform_thread_freebsd.cc" ] +@@ -2325,6 +2355,12 @@ + "trace_event/trace_event_android_unittest.cc", + ] + set_sources_assignment_filter(sources_assignment_filter) + } + - # iOS - if (is_ios) { - set_sources_assignment_filter([]) -@@ -2309,6 +2347,12 @@ test("base_unittests") { - set_sources_assignment_filter(sources_assignment_filter) - } - + if (is_bsd) { + sources -= [ + "debug/proc_maps_linux_unittest.cc", + ] -+ } -+ + } + if (is_win) { - deps += [ "//base:scoped_handle_test_dll" ] - if (current_cpu == "x64") { Modified: head/www/chromium/files/patch-base_allocator_allocator__shim.cc ============================================================================== --- head/www/chromium/files/patch-base_allocator_allocator__shim.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_allocator_allocator__shim.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/allocator/allocator_shim.cc.orig 2017-04-19 19:06:28 UTC +--- base/allocator/allocator_shim.cc.orig 2017-06-05 19:03:00 UTC +++ base/allocator/allocator_shim.cc -@@ -81,7 +81,7 @@ inline const allocator::AllocatorDispatc +@@ -83,7 +83,7 @@ inline const allocator::AllocatorDispatch* GetChainHea // Unfortunately due to that bug NoBarrier_Load() is mistakenly fully // barriered on Linux+Clang, and that causes visible perf regressons. return reinterpret_cast( Modified: head/www/chromium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc ============================================================================== --- head/www/chromium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,15 +1,15 @@ ---- base/allocator/allocator_shim_default_dispatch_to_glibc.cc.orig 2017-04-19 19:06:28 UTC +--- base/allocator/allocator_shim_default_dispatch_to_glibc.cc.orig 2017-06-05 19:03:00 UTC +++ base/allocator/allocator_shim_default_dispatch_to_glibc.cc @@ -3,19 +3,28 @@ // found in the LICENSE file. #include "base/allocator/allocator_shim.h" -- --#include +#include +#include +#include +-#include +- // This translation unit defines a default dispatch for the allocator shim which // routes allocations to libc functions. -// The code here is strongly inspired from tcmalloc's libc_override_glibc.h. Modified: head/www/chromium/files/patch-base_allocator_allocator__shim__unittest.cc ============================================================================== --- head/www/chromium/files/patch-base_allocator_allocator__shim__unittest.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_allocator_allocator__shim__unittest.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/allocator/allocator_shim_unittest.cc.orig 2017-04-19 19:06:28 UTC +--- base/allocator/allocator_shim_unittest.cc.orig 2017-06-05 19:03:00 UTC +++ base/allocator/allocator_shim_unittest.cc -@@ -289,7 +289,7 @@ TEST_F(AllocatorShimTest, InterceptLibcS +@@ -293,7 +293,7 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { ASSERT_GE(aligned_allocs_intercepted_by_size[61], 1u); #endif // !OS_WIN @@ -9,7 +9,7 @@ void* memalign_ptr = memalign(128, 53); ASSERT_NE(nullptr, memalign_ptr); ASSERT_EQ(0u, reinterpret_cast(memalign_ptr) % 128); -@@ -302,7 +302,7 @@ TEST_F(AllocatorShimTest, InterceptLibcS +@@ -306,7 +306,7 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { ASSERT_GE(aligned_allocs_intercepted_by_alignment[kPageSize], 1u); // pvalloc rounds the size up to the next page. ASSERT_GE(aligned_allocs_intercepted_by_size[kPageSize], 1u); @@ -18,7 +18,7 @@ char* realloc_ptr = static_cast(malloc(10)); strcpy(realloc_ptr, "foobar"); -@@ -318,13 +318,13 @@ TEST_F(AllocatorShimTest, InterceptLibcS +@@ -322,13 +322,13 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { free(zero_alloc_ptr); ASSERT_GE(frees_intercepted_by_addr[Hash(zero_alloc_ptr)], 1u); Added: head/www/chromium/files/patch-base_debug_debugger__posix.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-base_debug_debugger__posix.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -0,0 +1,57 @@ +--- base/debug/debugger_posix.cc.orig 2017-06-18 01:23:49.065175000 +0200 ++++ base/debug/debugger_posix.cc 2017-06-18 01:58:29.603481000 +0200 +@@ -84,7 +84,7 @@ + KERN_PROC, + KERN_PROC_PID, + getpid() +-#if defined(OS_OPENBSD) ++#if defined(OS_BSD) + , sizeof(struct kinfo_proc), + 0 + #endif +@@ -92,33 +92,36 @@ + + // Caution: struct kinfo_proc is marked __APPLE_API_UNSTABLE. The source and + // binary interfaces may change. +- struct kinfo_proc info; +- size_t info_size = sizeof(info); ++ struct kinfo_proc *info; ++ size_t info_size; + +-#if defined(OS_OPENBSD) + if (sysctl(mib, arraysize(mib), NULL, &info_size, NULL, 0) < 0) + return -1; + ++ info = (struct kinfo_proc *)malloc(info_size); ++ + mib[5] = (info_size / sizeof(struct kinfo_proc)); +-#endif + +- int sysctl_result = sysctl(mib, arraysize(mib), &info, &info_size, NULL, 0); ++ int sysctl_result = sysctl(mib, arraysize(mib), info, &info_size, NULL, 0); + DCHECK_EQ(sysctl_result, 0); + if (sysctl_result != 0) { + is_set = true; + being_debugged = false; +- return being_debugged; ++ goto out; + } + + // This process is being debugged if the P_TRACED flag is set. + is_set = true; + #if defined(OS_FREEBSD) +- being_debugged = (info.ki_flag & P_TRACED) != 0; ++ being_debugged = (info->ki_flag & P_TRACED) != 0; + #elif defined(OS_BSD) +- being_debugged = (info.p_flag & P_TRACED) != 0; ++ being_debugged = (info->p_flag & P_TRACED) != 0; + #else +- being_debugged = (info.kp_proc.p_flag & P_TRACED) != 0; ++ being_debugged = (info->kp_proc.p_flag & P_TRACED) != 0; + #endif ++ ++out: ++ free(info); + return being_debugged; + } + Modified: head/www/chromium/files/patch-base_debug_thread__heap__usage__tracker.cc ============================================================================== --- head/www/chromium/files/patch-base_debug_thread__heap__usage__tracker.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_debug_thread__heap__usage__tracker.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/debug/thread_heap_usage_tracker.cc.orig 2017-04-19 19:06:28 UTC +--- base/debug/thread_heap_usage_tracker.cc.orig 2017-06-05 19:03:00 UTC +++ base/debug/thread_heap_usage_tracker.cc -@@ -16,11 +16,13 @@ +@@ -16,10 +16,12 @@ #include "base/threading/thread_local_storage.h" #include "build/build_config.h" @@ -9,8 +9,7 @@ #include #else #include - #endif +#endif + #endif namespace base { - namespace debug { Modified: head/www/chromium/files/patch-base_files_file__path__unittest.cc ============================================================================== --- head/www/chromium/files/patch-base_files_file__path__unittest.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_files_file__path__unittest.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/files/file_path_unittest.cc.orig 2017-04-19 19:06:28 UTC +--- base/files/file_path_unittest.cc.orig 2017-06-05 19:03:00 UTC +++ base/files/file_path_unittest.cc -@@ -1133,7 +1133,7 @@ TEST_F(FilePathTest, FromUTF8Unsafe_And_ +@@ -1133,7 +1133,7 @@ TEST_F(FilePathTest, FromUTF8Unsafe_And_AsUTF8Unsafe) "\xEF\xBC\xA1\xEF\xBC\xA2\xEF\xBC\xA3.txt" }, }; Modified: head/www/chromium/files/patch-base_files_file__util.h ============================================================================== --- head/www/chromium/files/patch-base_files_file__util.h Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_files_file__util.h Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/files/file_util.h.orig 2017-04-19 19:06:28 UTC +--- base/files/file_util.h.orig 2017-06-05 19:03:00 UTC +++ base/files/file_util.h -@@ -406,7 +406,7 @@ BASE_EXPORT bool VerifyPathControlledByA +@@ -406,7 +406,7 @@ BASE_EXPORT bool VerifyPathControlledByAdmin(const bas // the directory |path|, in the number of FilePath::CharType, or -1 on failure. BASE_EXPORT int GetMaximumPathComponentLength(const base::FilePath& path); Modified: head/www/chromium/files/patch-base_native__library__posix.cc ============================================================================== --- head/www/chromium/files/patch-base_native__library__posix.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_native__library__posix.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/native_library_posix.cc.orig 2017-04-19 19:06:28 UTC +--- base/native_library_posix.cc.orig 2017-06-05 19:03:00 UTC +++ base/native_library_posix.cc -@@ -35,7 +35,7 @@ NativeLibrary LoadNativeLibraryWithOptio +@@ -35,7 +35,7 @@ NativeLibrary LoadNativeLibraryWithOptions(const FileP // further investigation, as it might vary across versions. Crash here to // warn developers that they're trying to rely on uncertain behavior. CHECK(!options.prefer_own_symbols); Modified: head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc ============================================================================== --- head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/posix/unix_domain_socket_linux.cc.orig 2017-04-19 19:06:28 UTC +--- base/posix/unix_domain_socket_linux.cc.orig 2017-06-05 19:03:00 UTC +++ base/posix/unix_domain_socket_linux.cc @@ -23,6 +23,15 @@ @@ -16,7 +16,7 @@ const size_t UnixDomainSocket::kMaxFileDescriptors = 16; #if !defined(OS_NACL_NONSFI) -@@ -40,8 +49,14 @@ static bool CreateSocketPair(ScopedFD* o +@@ -37,8 +46,14 @@ bool CreateSocketPair(ScopedFD* one, ScopedFD* two) { // static bool UnixDomainSocket::EnableReceiveProcessId(int fd) { @@ -31,7 +31,7 @@ } #endif // !defined(OS_NACL_NONSFI) -@@ -147,7 +162,11 @@ ssize_t UnixDomainSocket::RecvMsgWithFla +@@ -144,7 +159,11 @@ ssize_t UnixDomainSocket::RecvMsgWithFlags(int fd, // The PNaCl toolchain for Non-SFI binary build does not support // SCM_CREDENTIALS. if (cmsg->cmsg_level == SOL_SOCKET && Modified: head/www/chromium/files/patch-base_process_launch.cc ============================================================================== --- head/www/chromium/files/patch-base_process_launch.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_launch.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/process/launch.cc.orig 2017-04-19 19:06:28 UTC +--- base/process/launch.cc.orig 2017-06-05 19:03:00 UTC +++ base/process/launch.cc -@@ -15,7 +15,7 @@ LaunchOptions::~LaunchOptions() = defaul +@@ -15,7 +15,7 @@ LaunchOptions::~LaunchOptions() = default; LaunchOptions LaunchOptionsForTest() { LaunchOptions options; Modified: head/www/chromium/files/patch-base_process_memory.cc ============================================================================== --- head/www/chromium/files/patch-base_process_memory.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_memory.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/process/memory.cc.orig 2017-04-19 19:06:28 UTC +--- base/process/memory.cc.orig 2017-06-05 19:03:00 UTC +++ base/process/memory.cc -@@ -31,7 +31,7 @@ void TerminateBecauseOutOfMemory(size_t +@@ -31,7 +31,7 @@ void TerminateBecauseOutOfMemory(size_t size) { #endif // Defined in memory_mac.mm for Mac. Modified: head/www/chromium/files/patch-base_process_memory.h ============================================================================== --- head/www/chromium/files/patch-base_process_memory.h Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_memory.h Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/process/memory.h.orig 2017-04-19 19:06:28 UTC +--- base/process/memory.h.orig 2017-06-05 19:03:00 UTC +++ base/process/memory.h -@@ -32,7 +32,7 @@ BASE_EXPORT void EnableTerminationOnOutO +@@ -32,7 +32,7 @@ BASE_EXPORT void EnableTerminationOnOutOfMemory(); // Crash reporting classifies such crashes as OOM. BASE_EXPORT void TerminateBecauseOutOfMemory(size_t size); Modified: head/www/chromium/files/patch-base_process_memory__unittest.cc ============================================================================== --- head/www/chromium/files/patch-base_process_memory__unittest.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_memory__unittest.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,7 +1,7 @@ ---- base/process/memory_unittest.cc.orig 2017-04-19 19:06:28 UTC +--- base/process/memory_unittest.cc.orig 2017-06-05 19:03:00 UTC +++ base/process/memory_unittest.cc -@@ -93,10 +93,10 @@ TEST(MemoryTest, AllocatorShimWorking) { - ASSERT_TRUE(base::allocator::IsAllocatorInitialized()); +@@ -101,10 +101,10 @@ TEST(MemoryTest, AllocatorShimWorking) { + #endif } -// OpenBSD does not support these tests. Don't test these on ASan/TSan/MSan @@ -13,7 +13,7 @@ BUILDFLAG(ENABLE_WIN_ALLOCATOR_SHIM_TESTS) && \ !defined(MEMORY_TOOL_REPLACES_ALLOCATOR) -@@ -488,5 +488,5 @@ TEST_F(OutOfMemoryHandledTest, Unchecked +@@ -508,5 +508,5 @@ TEST_F(OutOfMemoryHandledTest, UncheckedCalloc) { EXPECT_FALSE(base::UncheckedCalloc(1, test_size_, &value_)); EXPECT_TRUE(value_ == NULL); } Modified: head/www/chromium/files/patch-base_process_process__info__linux.cc ============================================================================== --- head/www/chromium/files/patch-base_process_process__info__linux.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_process__info__linux.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/process/process_info_linux.cc.orig 2017-04-19 19:06:28 UTC +--- base/process/process_info_linux.cc.orig 2017-06-05 19:03:00 UTC +++ base/process/process_info_linux.cc @@ -11,10 +11,28 @@ #include "base/process/process_handle.h" @@ -28,10 +28,10 @@ +#else int64_t start_ticks = internal::ReadProcSelfStatsAndGetFieldAsInt64(internal::VM_STARTTIME); - DCHECK(start_ticks); -@@ -22,6 +40,7 @@ const Time CurrentProcessInfo::CreationT - Time boot_time = internal::GetBootTime(); - DCHECK(!boot_time.is_null()); + if (!start_ticks) +@@ -24,6 +42,7 @@ const Time CurrentProcessInfo::CreationTime() { + if (boot_time.is_null()) + return Time(); return Time(boot_time + start_offset); +#endif } Modified: head/www/chromium/files/patch-base_process_process__iterator__freebsd.cc ============================================================================== --- head/www/chromium/files/patch-base_process_process__iterator__freebsd.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_process__iterator__freebsd.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/process/process_iterator_freebsd.cc.orig 2017-04-19 19:06:28 UTC +--- base/process/process_iterator_freebsd.cc.orig 2017-06-05 19:03:00 UTC +++ base/process/process_iterator_freebsd.cc @@ -10,6 +10,10 @@ #include @@ -11,7 +11,7 @@ #include "base/logging.h" #include "base/macros.h" #include "base/strings/string_split.h" -@@ -72,19 +76,13 @@ bool ProcessIterator::CheckForNextProces +@@ -72,19 +76,13 @@ bool ProcessIterator::CheckForNextProcess() { for (; index_of_kinfo_proc_ < kinfo_procs_.size(); ++index_of_kinfo_proc_) { size_t length; struct kinfo_proc kinfo = kinfo_procs_[index_of_kinfo_proc_]; Modified: head/www/chromium/files/patch-base_process_process__metrics.h ============================================================================== --- head/www/chromium/files/patch-base_process_process__metrics.h Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_process__metrics.h Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/process/process_metrics.h.orig 2017-04-19 19:06:28 UTC +--- base/process/process_metrics.h.orig 2017-06-05 19:03:00 UTC +++ base/process/process_metrics.h @@ -22,6 +22,12 @@ #include "base/values.h" @@ -13,7 +13,34 @@ #if defined(OS_MACOSX) #include #include "base/process/port_provider_mac.h" -@@ -329,13 +335,17 @@ BASE_EXPORT bool GetSystemMemoryInfo(Sys +@@ -205,7 +211,7 @@ class BASE_EXPORT ProcessMetrics { + // otherwise. + bool GetIOCounters(IoCounters* io_counters) const; + +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + // Returns the number of file descriptors currently open by the process, or + // -1 on error. + int GetOpenFdCount() const; +@@ -213,7 +219,7 @@ class BASE_EXPORT ProcessMetrics { + // Returns the soft limit of file descriptors that can be opened by the + // process, or -1 on error. + int GetOpenFdSoftLimit() const; +-#endif // defined(OS_LINUX) ++#endif // defined(OS_LINUX) || defined(OS_BSD) + + private: + #if !defined(OS_MACOSX) || defined(OS_IOS) +@@ -289,7 +295,7 @@ BASE_EXPORT void SetFdLimit(unsigned int max_descripto + #endif // defined(OS_POSIX) + + #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) || \ +- defined(OS_ANDROID) ++ defined(OS_ANDROID) || defined(OS_BSD) + // Data about system-wide memory consumption. Values are in KB. Available on + // Windows, Mac, Linux, Android and Chrome OS. + // +@@ -383,13 +389,17 @@ BASE_EXPORT bool GetSystemMemoryInfo(SystemMemoryInfoK // CPU-related ticks. Returns -1 on parse error. // Exposed for testing. BASE_EXPORT int ParseProcStatCPU(const std::string& input); Modified: head/www/chromium/files/patch-base_process_process__metrics__freebsd.cc ============================================================================== --- head/www/chromium/files/patch-base_process_process__metrics__freebsd.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_process__metrics__freebsd.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/process/process_metrics_freebsd.cc.orig 2017-04-19 19:06:28 UTC +--- base/process/process_metrics_freebsd.cc.orig 2017-06-05 19:03:00 UTC +++ base/process/process_metrics_freebsd.cc @@ -13,6 +13,9 @@ #include "base/memory/ptr_util.h" @@ -10,10 +10,12 @@ namespace base { ProcessMetrics::ProcessMetrics(ProcessHandle process) -@@ -122,4 +125,23 @@ size_t GetSystemCommitCharge() { - return mem_total - (mem_free*pagesize) - (mem_inactive*pagesize); - } +@@ -120,6 +123,25 @@ size_t GetSystemCommitCharge() { + pagesize = getpagesize(); + return mem_total - (mem_free*pagesize) - (mem_inactive*pagesize); ++} ++ +int GetNumberOfThreads(ProcessHandle process) { + // Taken from FreeBSD top (usr.bin/top/machine.c) + @@ -31,6 +33,6 @@ + return 0; + + return nproc; -+} -+ + } + } // namespace base Modified: head/www/chromium/files/patch-base_process_process__posix.cc ============================================================================== --- head/www/chromium/files/patch-base_process_process__posix.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_process_process__posix.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,5 +1,5 @@ ---- base/process/process_posix.cc.orig 2017-04-19 19:06:28 UTC -+++ base/process/process_posix.cc +--- base/process/process_posix.cc.orig 2017-06-15 21:03:00.000000000 +0200 ++++ base/process/process_posix.cc 2017-06-19 15:25:27.760111000 +0200 @@ -21,8 +21,18 @@ #include #endif @@ -19,7 +19,7 @@ #if !defined(OS_NACL_NONSFI) bool WaitpidWithTimeout(base::ProcessHandle handle, -@@ -184,13 +194,13 @@ bool WaitForExitWithTimeoutImpl(base::Pr +@@ -184,13 +194,13 @@ base::ProcessHandle parent_pid = base::GetParentProcessId(handle); base::ProcessHandle our_pid = base::GetCurrentProcessHandle(); if (parent_pid != our_pid) { @@ -36,7 +36,7 @@ } int status; -@@ -257,12 +267,16 @@ Process Process::DeprecatedGetProcessFro +@@ -256,12 +266,16 @@ return Process(handle); } @@ -55,7 +55,7 @@ // static void Process::TerminateCurrentProcessImmediately(int exit_code) { -@@ -370,15 +384,32 @@ bool Process::WaitForExitWithTimeout(Tim +@@ -369,15 +383,31 @@ bool Process::IsProcessBackgrounded() const { // See SetProcessBackgrounded(). DCHECK(IsValid()); @@ -82,7 +82,6 @@ + int priority = value ? kBackgroundPriority : kForegroundPriority; + int result = setpriority(PRIO_PROCESS, process_, priority); + -+ DPCHECK(result == 0); + return result == 0; +#endif // !defined(OS_FREEBSD) } Modified: head/www/chromium/files/patch-base_sys__info__freebsd.cc ============================================================================== --- head/www/chromium/files/patch-base_sys__info__freebsd.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_sys__info__freebsd.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/sys_info_freebsd.cc.orig 2017-04-19 19:06:28 UTC +--- base/sys_info_freebsd.cc.orig 2017-06-05 19:03:00 UTC +++ base/sys_info_freebsd.cc @@ -12,12 +12,34 @@ @@ -39,7 +39,7 @@ NOTREACHED(); return 0; } -@@ -25,14 +47,24 @@ int64_t SysInfo::AmountOfPhysicalMemory( +@@ -25,14 +47,24 @@ int64_t SysInfo::AmountOfPhysicalMemory() { } // static Modified: head/www/chromium/files/patch-base_sys__info__posix.cc ============================================================================== --- head/www/chromium/files/patch-base_sys__info__posix.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_sys__info__posix.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/sys_info_posix.cc.orig 2017-04-19 19:06:28 UTC +--- base/sys_info_posix.cc.orig 2017-06-05 19:03:00 UTC +++ base/sys_info_posix.cc @@ -35,7 +35,7 @@ @@ -9,7 +9,7 @@ int NumberOfProcessors() { // sysconf returns the number of "logical" (not "physical") processors on both // Mac and Linux. So we get the number of max available "logical" processors. -@@ -128,7 +128,7 @@ bool GetDiskSpaceInfo(const base::FilePa +@@ -128,7 +128,7 @@ bool GetDiskSpaceInfo(const base::FilePath& path, namespace base { Modified: head/www/chromium/files/patch-base_test_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-base_test_BUILD.gn Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_test_BUILD.gn Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/test/BUILD.gn.orig 2017-04-19 19:06:28 UTC +--- base/test/BUILD.gn.orig 2017-06-05 19:03:00 UTC +++ base/test/BUILD.gn -@@ -312,7 +312,7 @@ static_library("run_all_base_unittests") +@@ -314,7 +314,7 @@ static_library("run_all_base_unittests") { ] } Modified: head/www/chromium/files/patch-base_test_launcher_test__launcher.cc ============================================================================== --- head/www/chromium/files/patch-base_test_launcher_test__launcher.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_test_launcher_test__launcher.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/test/launcher/test_launcher.cc.orig 2017-04-19 19:06:28 UTC +--- base/test/launcher/test_launcher.cc.orig 2017-06-05 19:03:00 UTC +++ base/test/launcher/test_launcher.cc -@@ -60,6 +60,10 @@ +@@ -61,6 +61,10 @@ #include "base/win/windows_version.h" #endif Modified: head/www/chromium/files/patch-base_test_test__file__util__posix.cc ============================================================================== --- head/www/chromium/files/patch-base_test_test__file__util__posix.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_test_test__file__util__posix.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/test/test_file_util_posix.cc.orig 2017-04-19 19:06:28 UTC +--- base/test/test_file_util_posix.cc.orig 2017-06-05 19:03:00 UTC +++ base/test/test_file_util_posix.cc -@@ -79,7 +79,7 @@ bool DieFileDie(const FilePath& file, bo +@@ -79,7 +79,7 @@ bool DieFileDie(const FilePath& file, bool recurse) { return DeleteFile(file, recurse); } Modified: head/www/chromium/files/patch-base_threading_platform__thread__linux.cc ============================================================================== --- head/www/chromium/files/patch-base_threading_platform__thread__linux.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_threading_platform__thread__linux.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/threading/platform_thread_linux.cc.orig 2017-04-19 19:06:28 UTC +--- base/threading/platform_thread_linux.cc.orig 2017-06-05 19:03:01 UTC +++ base/threading/platform_thread_linux.cc @@ -19,7 +19,9 @@ @@ -10,7 +10,7 @@ #include #include #include -@@ -130,7 +132,7 @@ void PlatformThread::SetName(const std:: +@@ -130,7 +132,7 @@ void PlatformThread::SetName(const std::string& name) ThreadIdNameManager::GetInstance()->SetName(CurrentId(), name); tracked_objects::ThreadData::InitializeThreadContext(name); @@ -19,7 +19,7 @@ // On linux we can get the thread names to show up in the debugger by setting // the process name for the LWP. We don't want to do this for the main // thread because that would rename the process, causing tools like killall -@@ -150,7 +152,7 @@ void PlatformThread::SetName(const std:: +@@ -150,7 +152,7 @@ void PlatformThread::SetName(const std::string& name) #endif // !defined(OS_NACL) } Modified: head/www/chromium/files/patch-base_threading_thread__task__runner__handle.cc ============================================================================== --- head/www/chromium/files/patch-base_threading_thread__task__runner__handle.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_threading_thread__task__runner__handle.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,4 +1,4 @@ ---- base/threading/thread_task_runner_handle.cc.orig 2017-04-19 19:06:28 UTC +--- base/threading/thread_task_runner_handle.cc.orig 2017-06-05 19:03:01 UTC +++ base/threading/thread_task_runner_handle.cc @@ -7,6 +7,7 @@ #include @@ -16,7 +16,7 @@ // static ScopedClosureRunner ThreadTaskRunnerHandle::OverrideForTesting( scoped_refptr overriding_task_runner) { -@@ -77,6 +79,7 @@ ScopedClosureRunner ThreadTaskRunnerHand +@@ -77,6 +79,7 @@ ScopedClosureRunner ThreadTaskRunnerHandle::OverrideFo base::Passed(&overriding_task_runner), base::Unretained(ttrh->task_runner_.get()))); } Modified: head/www/chromium/files/patch-base_trace__event_process__memory__dump.cc ============================================================================== --- head/www/chromium/files/patch-base_trace__event_process__memory__dump.cc Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-base_trace__event_process__memory__dump.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- base/trace_event/process_memory_dump.cc.orig 2017-04-19 19:06:28 UTC +--- base/trace_event/process_memory_dump.cc.orig 2017-06-05 19:03:01 UTC +++ base/trace_event/process_memory_dump.cc -@@ -83,7 +83,7 @@ size_t ProcessMemoryDump::CountResidentB +@@ -83,7 +83,7 @@ size_t ProcessMemoryDump::CountResidentBytes(void* sta const size_t kMaxChunkSize = 8 * 1024 * 1024; size_t max_vec_size = GetSystemPageCount(std::min(mapped_size, kMaxChunkSize), page_size); Added: head/www/chromium/files/patch-base_trace__event_trace__log.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-base_trace__event_trace__log.cc Tue Jun 20 20:20:44 2017 (r443998) @@ -0,0 +1,20 @@ +--- base/trace_event/trace_log.cc.orig 2017-06-05 19:03:01 UTC ++++ base/trace_event/trace_log.cc +@@ -1504,7 +1504,7 @@ void TraceLog::AddMetadataEventsWhileLocked() { + process_name_); + } + +-#if !defined(OS_NACL) && !defined(OS_IOS) ++#if !defined(OS_NACL) && !defined(OS_IOS) && !defined(OS_BSD) + Time process_creation_time = CurrentProcessInfo::CreationTime(); + if (!process_creation_time.is_null()) { + TimeDelta process_uptime = Time::Now() - process_creation_time; +@@ -1512,7 +1512,7 @@ void TraceLog::AddMetadataEventsWhileLocked() { + current_thread_id, "process_uptime_seconds", + "uptime", process_uptime.InSeconds()); + } +-#endif // !defined(OS_NACL) && !defined(OS_IOS) ++#endif // !defined(OS_NACL) && !defined(OS_IOS) && !defined(OS_BSD) + + if (!process_labels_.empty()) { + std::vector labels; Modified: head/www/chromium/files/patch-breakpad_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-breakpad_BUILD.gn Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-breakpad_BUILD.gn Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- breakpad/BUILD.gn.orig 2017-04-19 19:06:28 UTC +--- breakpad/BUILD.gn.orig 2017-06-05 19:03:01 UTC +++ breakpad/BUILD.gn -@@ -468,7 +468,7 @@ if (is_mac) { +@@ -472,7 +472,7 @@ if (is_mac) { } } Added: head/www/chromium/files/patch-build__overrides_pdfium.gni ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-build__overrides_pdfium.gni Tue Jun 20 20:20:44 2017 (r443998) @@ -0,0 +1,11 @@ +--- build_overrides/pdfium.gni.orig 2017-06-05 19:03:01 UTC ++++ build_overrides/pdfium.gni +@@ -10,7 +10,7 @@ pdf_enable_xfa_override = false + + # Build PDFium either using the bundled FreeType, or using a third-party + # FreeType, configured by the embedder in //build/config/freetype. +-pdf_bundle_freetype_override = !is_linux && !is_win ++pdf_bundle_freetype_override = false + + # Disable use of Skia backend. + pdf_use_skia_override = false Modified: head/www/chromium/files/patch-build_config_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-build_config_BUILD.gn Tue Jun 20 20:17:15 2017 (r443997) +++ head/www/chromium/files/patch-build_config_BUILD.gn Tue Jun 20 20:20:44 2017 (r443998) @@ -1,6 +1,6 @@ ---- build/config/BUILD.gn.orig 2017-04-19 19:06:28 UTC +--- build/config/BUILD.gn.orig 2017-06-05 19:03:01 UTC +++ build/config/BUILD.gn -@@ -193,7 +193,7 @@ config("debug") { +@@ -169,7 +169,7 @@ config("debug") { # builds, and we have to tell it to turn it off. defines += [ "_HAS_ITERATOR_DEBUGGING=0" ] } @@ -9,7 +9,7 @@ # Enable libstdc++ debugging facilities to help catch problems early, see # http://crbug.com/65151 . # TODO(phajdan.jr): Should we enable this for all of POSIX? -@@ -276,7 +276,7 @@ config("default_libs") { +@@ -258,7 +258,7 @@ config("default_libs") { "CoreText.framework", "Foundation.framework", ] @@ -18,7 +18,7 @@ libs = [ "dl", "rt", *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Jun 20 20:22:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E8D4DA1579; Tue, 20 Jun 2017 20:22:18 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED495722A8; Tue, 20 Jun 2017 20:22:17 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KKMGfP026217; Tue, 20 Jun 2017 20:22:16 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKMGif026215; Tue, 20 Jun 2017 20:22:16 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706202022.v5KKMGif026215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 20:22:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443999 - head/databases/influxdb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 20:22:18 -0000 Author: joneum Date: Tue Jun 20 20:22:16 2017 New Revision: 443999 URL: https://svnweb.freebsd.org/changeset/ports/443999 Log: - databases/influxdb: add MANPAGES option PR: 217592 Reported by: xmj Approved by: cheffo at freebsd-bg.org (maintainer) miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11219 Modified: head/databases/influxdb/Makefile head/databases/influxdb/pkg-plist Modified: head/databases/influxdb/Makefile ============================================================================== --- head/databases/influxdb/Makefile Tue Jun 20 20:20:44 2017 (r443998) +++ head/databases/influxdb/Makefile Tue Jun 20 20:22:16 2017 (r443999) @@ -3,6 +3,7 @@ PORTNAME= influxdb PORTVERSION= 1.2.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= databases net-mgmt MAINTAINER= cheffo@freebsd-bg.org @@ -12,6 +13,15 @@ LICENSE= MIT BUILD_DEPENDS= go>=1.5.0:lang/go +OPTIONS_DEFINE= MANPAGES +OPTIONS_DEFAULT= MANPAGES + +MANPAGES_BUILD_DEPENDS= xmlto:textproc/xmlto \ + asciidoc:textproc/asciidoc \ + docbook-xml>0:textproc/docbook-xml +MANPAGES_USES= gmake +OPTIONS_SUB= yes + ONLY_FOR_ARCHS= i386 amd64 armv6 USE_RC_SUBR= influxd @@ -83,6 +93,9 @@ do-build: @cd ${WRKSRC}/src/github.com/${GH_ACCOUNT_DEFAULT}/${GH_PROJECT} && \ ${SETENV} GOPATH=${WRKSRC} go install -ldflags "-X main.version=${DISTVERSION}" ./... +do-build-MANPAGES-on: + @cd ${WRKSRC}/src/github.com/influxdata/influxdb/man && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} + do-install: ${MKDIR} ${STAGEDIR}${INFLUXD_DBDIR} \ ${STAGEDIR}${INFLUXD_PIDDIR} \ @@ -97,5 +110,12 @@ do-install: ${INSTALL_DATA} \ ${WRKSRC}/src/github.com/${GH_ACCOUNT_DEFAULT}/${GH_PROJECT}/etc/config.sample.toml \ ${STAGEDIR}${PREFIX}/etc/influxd.conf.sample + +do-install-MANPAGES-on: +.for i in influx.1 influx_inspect.1 influx_stress.1 influx_tsm.1 \ + influxd-backup.1 influxd-config.1 influxd-restore.1 \ + influxd-run.1 influxd-version.1 influxd.1 + ${INSTALL_MAN} ${WRKSRC}/src/github.com/influxdata/influxdb/man/$i ${STAGEDIR}${MAN8PREFIX}/man/man1 +.endfor .include Modified: head/databases/influxdb/pkg-plist ============================================================================== --- head/databases/influxdb/pkg-plist Tue Jun 20 20:20:44 2017 (r443998) +++ head/databases/influxdb/pkg-plist Tue Jun 20 20:22:16 2017 (r443999) @@ -2,7 +2,17 @@ bin/influx bin/influx_inspect bin/influx_tsm bin/influxd +%%MANPAGES%%man/man1/influx.1.gz +%%MANPAGES%%man/man1/influx_inspect.1.gz +%%MANPAGES%%man/man1/influx_stress.1.gz +%%MANPAGES%%man/man1/influx_tsm.1.gz +%%MANPAGES%%man/man1/influxd-backup.1.gz +%%MANPAGES%%man/man1/influxd-config.1.gz +%%MANPAGES%%man/man1/influxd-restore.1.gz +%%MANPAGES%%man/man1/influxd-run.1.gz +%%MANPAGES%%man/man1/influxd-version.1.gz +%%MANPAGES%%man/man1/influxd.1.gz @dir(%%INFLUXD_USER%%,%%INFLUXD_GROUP%%,0750) %%INFLUXD_DBDIR%% @dir(%%INFLUXD_USER%%,%%INFLUXD_GROUP%%,0750) %%INFLUXD_LOGDIR%% @dir(%%INFLUXD_USER%%,%%INFLUXD_GROUP%%,0750) %%INFLUXD_PIDDIR%% -@sample etc/%%INFLUXD_USER%%.conf.sample +@sample etc/influxd.conf.sample From owner-svn-ports-head@freebsd.org Tue Jun 20 20:25:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15E21DA175D; Tue, 20 Jun 2017 20:25:23 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9EF972688; Tue, 20 Jun 2017 20:25:22 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5KKPLoX026495; Tue, 20 Jun 2017 20:25:21 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKPLUE026493; Tue, 20 Jun 2017 20:25:21 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201706202025.v5KKPLUE026493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 20 Jun 2017 20:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444000 - head/benchmarks/phoronix-test-suite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 20:25:23 -0000 Author: joneum Date: Tue Jun 20 20:25:21 2017 New Revision: 444000 URL: https://svnweb.freebsd.org/changeset/ports/444000 Log: - benchmarks/phoronix-test-suite: Update from 6.8.0 to 7.0.1 - Changelog: http://www.phoronix.com/scan.php?page=article&item=pts-70-ringsaker&num=1 PR: 219462 Reported by: xmj Approved by: luca.pizzamiglio at gmail.com (maintainer) miwi (mentor) Differential Revision: https://reviews.freebsd.org/D11216 Modified: head/benchmarks/phoronix-test-suite/Makefile head/benchmarks/phoronix-test-suite/distinfo Modified: head/benchmarks/phoronix-test-suite/Makefile ============================================================================== --- head/benchmarks/phoronix-test-suite/Makefile Tue Jun 20 20:22:16 2017 (r443999) +++ head/benchmarks/phoronix-test-suite/Makefile Tue Jun 20 20:25:21 2017 (r444000) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= phoronix-test-suite -PORTVERSION= 6.8.0 -PORTREVISION= 3 +PORTVERSION= 7.0.1 CATEGORIES= benchmarks MASTER_SITES= http://www.phoronix-test-suite.com/releases/ @@ -52,16 +51,12 @@ post-patch: ${WRKSRC}/pts-core/objects/phodevi/components/phodevi_system.php \ ${WRKSRC}/pts-core/objects/client/pts_external_dependencies.php \ ${WRKSRC}/pts-core/objects/client/pts_client.php \ - ${WRKSRC}/pts-core/external-test-dependencies/scripts/install-dragonfly-packages.sh \ ${WRKSRC}/pts-core/external-test-dependencies/xml/freebsd-packages.xml @${SED} -i '' -e "s|/usr/share/fonts|${LOCALBASE}/share/fonts| ; \ s|/usr/X11/lib|${LOCALBASE}/lib|" \ ${WRKSRC}/pts-core/objects/pts_svg_dom_gd.php @${SED} -i '' -e "/fpdf.php/s|/usr/share/php|${PREFIX}/share|" \ ${WRKSRC}/pts-core/objects/pts_pdf_template.php - #${WRKSRC}/pts-core/pts-core.php \ - #${WRKSRC}/pts-core/commands/dump_documentation.php \ - #${WRKSRC}/pts-core/commands/result_file_to_pdf.php do-install: (cd ${WRKSRC} && ${CONFIGURE_ARGS} DESTDIR="${STAGEDIR}" ./install-sh ${PREFIX}) Modified: head/benchmarks/phoronix-test-suite/distinfo ============================================================================== --- head/benchmarks/phoronix-test-suite/distinfo Tue Jun 20 20:22:16 2017 (r443999) +++ head/benchmarks/phoronix-test-suite/distinfo Tue Jun 20 20:25:21 2017 (r444000) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481129227 -SHA256 (phoronix-test-suite-6.8.0.tar.gz) = fe741336dbf251fc210367b20713b554b3fd4edf15cf1f5950ff8bcbb3b09aec -SIZE (phoronix-test-suite-6.8.0.tar.gz) = 779872 +TIMESTAMP = 1493199092 +SHA256 (phoronix-test-suite-7.0.1.tar.gz) = 436d949af604248776d725afb0f4eba6b8f9b1bf134d1f97544baf00e67c9d78 +SIZE (phoronix-test-suite-7.0.1.tar.gz) = 777651 From owner-svn-ports-head@freebsd.org Tue Jun 20 20:29:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40F8FDA186D; Tue, 20 Jun 2017 20:29:12 +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 0EC0772906; Tue, 20 Jun 2017 20:29:11 +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 v5KKTBNI026712; Tue, 20 Jun 2017 20:29:11 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKTBFW026711; Tue, 20 Jun 2017 20:29:11 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706202029.v5KKTBFW026711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 20 Jun 2017 20:29:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444001 - head/devel/boehm-gc/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, 20 Jun 2017 20:29:12 -0000 Author: cpm Date: Tue Jun 20 20:29:10 2017 New Revision: 444001 URL: https://svnweb.freebsd.org/changeset/ports/444001 Log: - Fix boehm-gc build on EdgeRouter Lite (ERL) which is a mips64 based machine. Submitted by: lidl via email Modified: head/devel/boehm-gc/files/patch-include_private_gcconfig.h Modified: head/devel/boehm-gc/files/patch-include_private_gcconfig.h ============================================================================== --- head/devel/boehm-gc/files/patch-include_private_gcconfig.h Tue Jun 20 20:25:21 2017 (r444000) +++ head/devel/boehm-gc/files/patch-include_private_gcconfig.h Tue Jun 20 20:29:10 2017 (r444001) @@ -1,5 +1,14 @@ ---- include/private/gcconfig.h.orig 2016-08-08 20:30:40 UTC +--- include/private/gcconfig.h.orig 2016-08-02 19:36:14 UTC +++ include/private/gcconfig.h +@@ -176,7 +176,7 @@ + # define EWS4800 + # endif + # if !defined(LINUX) && !defined(EWS4800) && !defined(NETBSD) \ +- && !defined(OPENBSD) ++ && !defined(OPENBSD) && !defined(FREEBSD) + # if defined(ultrix) || defined(__ultrix) + # define ULTRIX + # else @@ -2745,11 +2745,6 @@ # define SUNOS5SIGS #endif From owner-svn-ports-head@freebsd.org Tue Jun 20 20:41:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6947DA1F5B; Tue, 20 Jun 2017 20:41:25 +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 81B1A733F2; Tue, 20 Jun 2017 20:41:25 +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 v5KKfOnZ032896; Tue, 20 Jun 2017 20:41:24 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKfOwf032895; Tue, 20 Jun 2017 20:41:24 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706202041.v5KKfOwf032895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 20 Jun 2017 20:41:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444002 - 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: Tue, 20 Jun 2017 20:41:25 -0000 Author: cpm Date: Tue Jun 20 20:41:24 2017 New Revision: 444002 URL: https://svnweb.freebsd.org/changeset/ports/444002 Log: - Fix build on powerpc64 adding compiler:c++11-lang feature to USES - Bump PORTREVISION Reported by: linimon Modified: head/net-im/corebird/Makefile Modified: head/net-im/corebird/Makefile ============================================================================== --- head/net-im/corebird/Makefile Tue Jun 20 20:29:10 2017 (r444001) +++ head/net-im/corebird/Makefile Tue Jun 20 20:41:24 2017 (r444002) @@ -3,7 +3,7 @@ PORTNAME= corebird PORTVERSION= 1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MAINTAINER= cpm@FreeBSD.org @@ -19,12 +19,10 @@ LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ librest-0.7.so:devel/librest \ libgspell-1.so:textproc/gspell -BROKEN_powerpc64= fails to compile: CbMedia.h:61: redefinition of typedef 'CbMedia' - USE_GITHUB= yes GH_ACCOUNT= baedert -USES= autoreconf gmake libtool pkgconfig sqlite +USES= autoreconf compiler:c++11-lang gmake libtool pkgconfig sqlite GNU_CONFIGURE= yes USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool libxml2 pango From owner-svn-ports-head@freebsd.org Tue Jun 20 20:50:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4ACCEDA2084; Tue, 20 Jun 2017 20:50:35 +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 1EE4A73858; Tue, 20 Jun 2017 20:50:35 +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 v5KKoYK9035661; Tue, 20 Jun 2017 20:50:34 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KKoYZA035660; Tue, 20 Jun 2017 20:50:34 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706202050.v5KKoYZA035660@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 20 Jun 2017 20:50:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444003 - head/multimedia/mpv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2017 20:50:35 -0000 Author: cpm Date: Tue Jun 20 20:50:34 2017 New Revision: 444003 URL: https://svnweb.freebsd.org/changeset/ports/444003 Log: multimedia/mpv: add TEST option - Rename LIBARCHIVE option to ARCHIVE and use _DESC from Mk/bsd.options.desc.mk - Use FLT_EPSILON constant to fix gl_video unittest on i386 - Cosmetic fixes Reviewed by: jbeich Differential Revision: https://reviews.freebsd.org/D11005 Modified: head/multimedia/mpv/Makefile Modified: head/multimedia/mpv/Makefile ============================================================================== --- head/multimedia/mpv/Makefile Tue Jun 20 20:41:24 2017 (r444002) +++ head/multimedia/mpv/Makefile Tue Jun 20 20:50:34 2017 (r444003) @@ -28,10 +28,10 @@ USES= compiler:c11 desktop-file-utils iconv jpeg loca pkgconfig python:build waf USE_LDCONFIG= yes -CONFIGURE_ENV= BIN_PYTHON=${PYTHON_CMD} -CONFIGURE_ARGS= --docdir=${EXAMPLESDIR} \ - --htmldir=${DOCSDIR}/html \ - --mandir=${MANPREFIX}/man \ +CONFIGURE_ENV= BIN_PYTHON="${PYTHON_CMD}" +CONFIGURE_ARGS= --docdir="${EXAMPLESDIR}" \ + --htmldir="${DOCSDIR}/html" \ + --mandir="${MANPREFIX}/man" \ --disable-debug-build \ --disable-d3d-hwaccel \ --disable-optimize \ @@ -45,8 +45,8 @@ CONFIGURE_ARGS= --docdir=${EXAMPLESDIR} \ --disable-wayland \ --enable-libmpv-shared -OPTIONS_DEFINE= ASS DOCS LCMS2 LIBARCHIVE LUAJIT MANPAGES UCHARDET ZSH -OPTIONS_DEFAULT= ASS DVDREAD DVDNAV LIBARCHIVE MANPAGES OPENGL UCHARDET \ +OPTIONS_DEFINE= ARCHIVE ASS DOCS LCMS2 LUAJIT MANPAGES TEST UCHARDET ZSH +OPTIONS_DEFAULT= ARCHIVE ASS DVDREAD DVDNAV MANPAGES OPENGL UCHARDET \ V4L VAAPI VDPAU X11 YTDL ZSH OPTIONS_GROUP= IN VO AO OPTIONS_GROUP_IN= CDIO DVDREAD DVDNAV LIBBLURAY V4L YTDL SMB @@ -57,10 +57,9 @@ OPTIONS_SUB= yes ASS_DESC= ASS/SSA subtitle and OSD rendering DVDREAD_DESC= DVD Playback support DVDNAV_DESC= DVD menu navigation -LIBARCHIVE_DESC= Enable libarchive support LUAJIT_DESC= Use LuaJIT instead of Lua scripting language support -YTDL_DESC= Install youtube-dl UCHARDET_DESC= Guess subtitle encoding via uchardet +YTDL_DESC= Install youtube-dl IN_DESC= Input VO_DESC= Video Output AO_DESC= Audio Output @@ -68,6 +67,9 @@ AO_DESC= Audio Output ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CONFIGURE_OFF= --disable-alsa +ARCHIVE_USES= libarchive +ARCHIVE_CONFIGURE_ON= --enable-libarchive + ASS_LIB_DEPENDS= libass.so:multimedia/libass ASS_CONFIGURE_OFF= --disable-libass @@ -94,9 +96,6 @@ JACK_CONFIGURE_OFF= --disable-jack LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2 LCMS2_CONFIGURE_OFF= --disable-lcms2 -LIBARCHIVE_USES= libarchive -LIBARCHIVE_CONFIGURE_ON= --enable-libarchive - LIBBLURAY_LIB_DEPENDS= libbluray.so:multimedia/libbluray LIBBLURAY_CONFIGURE_OFF= --disable-libbluray @@ -126,6 +125,10 @@ SNDIO_CONFIGURE_OFF= --disable-sndio SMB_USES= samba:lib SMB_CONFIGURE_OFF= --disable-libsmbclient +TEST_BUILD_DEPENDS= cmocka>=1.1.0:sysutils/cmocka +TEST_CONFIGURE_ON= --enable-test +TEST_UNITTESTFILES= chmap chmap_sel gl_video + UCHARDET_LIB_DEPENDS= libuchardet.so:textproc/uchardet UCHARDET_CONFIGURE_OFF= --disable-uchardet @@ -147,16 +150,23 @@ YTDL_RUN_DEPENDS= youtube-dl:www/youtube_dl ZSH_USES= perl5 ZSH_USE= PERL5=build -ZSH_CONFIGURE_ENV= BIN_PERL=${PERL} +ZSH_CONFIGURE_ENV= BIN_PERL="${PERL}" ZSH_CONFIGURE_ENABLE= zsh-comp post-patch: @${REINPLACE_CMD} -e 's|/pkgconfig/mpv.pc|data/pkgconfig/mpv.pc|g' \ ${WRKSRC}/wscript_build.py + @${REINPLACE_CMD} -e 's|DBL_EPSILON|FLT_EPSILON|'g \ + ${WRKSRC}/test/test_helpers.h post-patch-MANPAGES-on: @${FIND} ${WRKSRC}/DOCS/man -name '*.rst' | ${XARGS} ${REINPLACE_CMD} \ -e 's|/usr/local|${PREFIX}|g' + +pre-install-TEST-on: +.for test in ${TEST_UNITTESTFILES} + cd ${WRKSRC}/build/test && ./${test} +.endfor post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mpv From owner-svn-ports-head@freebsd.org Tue Jun 20 21:50:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE742DA3468; Tue, 20 Jun 2017 21:50:32 +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 9B3F075C89; Tue, 20 Jun 2017 21:50:32 +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 v5KLoV3i059677; Tue, 20 Jun 2017 21:50:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5KLoV5v059668; Tue, 20 Jun 2017 21:50:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706202150.v5KLoV5v059668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 20 Jun 2017 21:50:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444004 - in head/devel: android-tools-adb android-tools-adb-devel android-tools-adb-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: Tue, 20 Jun 2017 21:50:32 -0000 Author: jbeich Date: Tue Jun 20 21:50:30 2017 New Revision: 444004 URL: https://svnweb.freebsd.org/changeset/ports/444004 Log: devel/android-tools-adb-devel: update to o.p.2.332 - USB transport is no longer supported on DragonFly and FreeBSD < 11 as probing outside of libusb hotplug API isn't implemented Changes: https://android.googlesource.com/platform/system/core/+log/dfd30c4a169e..d1e9e7bc06f0/adb Added: head/devel/android-tools-adb-devel/files/patch-adb_client_usb__libusb.cpp (contents, props changed) head/devel/android-tools-adb-devel/files/patch-adb_sysdeps_posix_network.cpp (contents, props changed) head/devel/android-tools-adb-devel/files/patch-adb_transport__usb.cpp (contents, props changed) head/devel/android-tools-adb-devel/files/patch-adb_usb.h (contents, props changed) head/devel/android-tools-adb-devel/files/patch-include_cutils_trace.h (contents, props changed) Deleted: head/devel/android-tools-adb-devel/files/patch-adb_mutex head/devel/android-tools-adb-devel/files/usb_libusb.cpp Modified: head/devel/android-tools-adb-devel/Makefile (contents, props changed) head/devel/android-tools-adb-devel/distinfo (contents, props changed) head/devel/android-tools-adb-devel/files/Makefile (contents, props changed) head/devel/android-tools-adb-devel/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-adb/Makefile (contents, props changed) Modified: head/devel/android-tools-adb-devel/Makefile ============================================================================== --- head/devel/android-tools-adb-devel/Makefile Tue Jun 20 20:50:34 2017 (r444003) +++ head/devel/android-tools-adb-devel/Makefile Tue Jun 20 21:50:30 2017 (r444004) @@ -1,8 +1,8 @@ # $FreeBSD$ -# Hint: git describe --abbrev=12 --match android-n-preview-5 -DISTVERSION= n-preview-5-3582 -DISTVERSIONSUFFIX= -gdfd30c4a169e +# Hint: git describe --abbrev=12 --match android-o-preview-2 +DISTVERSION= o-preview-2-332 +DISTVERSIONSUFFIX= -gd1e9e7bc06f0 PORTREVISION= 0 PKGNAMESUFFIX= -devel @@ -15,13 +15,21 @@ EXTRA_PATCHES= ${.CURDIR}/files/patch-* GH_MYTAG= ${DISTVERSIONPREFIX}${DISTVERSION:C/-[0-9]*$//} -OPTIONS_DEFINE= TEST_PYTHON +USES= compiler:c++14-lang +OPTIONS_DEFAULT=MDNSRESPONDER +OPTIONS_DEFINE= MDNSRESPONDER TEST_PYTHON + +MDNSRESPONDER_LIB_DEPENDS= libdns_sd.so:net/mDNSResponder +MDNSRESPONDER_USES= localbase:ldflags +MDNSRESPONDER_LDFLAGS= -ldns_sd +MDNSRESPONDER_MAKE_ENV_OFF= MDNSEXT=_unsupported + TEST_BROKEN= logging.* tests always fail after 4e5fd111d84d TEST_PYTHON_DESC= ${TEST_DESC:S/tests/python &/} TEST_PYTHON_GH_PROJECT= platform_development:development -TEST_PYTHON_GH_TAGNAME= ${GH_MYTAG}-14-g735aab1:development +TEST_PYTHON_GH_TAGNAME= ${GH_MYTAG}-83-gc5efdcc74:development TEST_PYTHON_BUILD_DEPENDS=${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock TEST_PYTHON_USES= python:2.7,build Modified: head/devel/android-tools-adb-devel/distinfo ============================================================================== --- head/devel/android-tools-adb-devel/distinfo Tue Jun 20 20:50:34 2017 (r444003) +++ head/devel/android-tools-adb-devel/distinfo Tue Jun 20 21:50:30 2017 (r444004) @@ -1,7 +1,7 @@ -TIMESTAMP = 1474960220 -SHA256 (android-platform_system_core-android-n-preview-5-3582-gdfd30c4a169e_GH0.tar.gz) = 2a4530432d51797fcc426b737d66b411d7ba4635afabe32b0c89cb581b19bc34 -SIZE (android-platform_system_core-android-n-preview-5-3582-gdfd30c4a169e_GH0.tar.gz) = 1464524 +TIMESTAMP = 1497955827 +SHA256 (android-platform_system_core-android-o-preview-2-332-gd1e9e7bc06f0_GH0.tar.gz) = 212dd9cbca65a167b3833e5077b1a9f2db3a50a04e637da3e0db7814f60cf9fd +SIZE (android-platform_system_core-android-o-preview-2-332-gd1e9e7bc06f0_GH0.tar.gz) = 5188822 SHA256 (mbrubeck-android-completion-c1b0656_GH0.tar.gz) = ca3311ba47a5edd56c929ac9aae57c02c2c3f1636519c5f67abb00b6e3ecd75c SIZE (mbrubeck-android-completion-c1b0656_GH0.tar.gz) = 5967 -SHA256 (android-platform_development-android-n-preview-5-14-g735aab1_GH0.tar.gz) = e3559503f88e0dc3f0fa3e04cd11b0666538c64a24275fc39af951b74e50f32c -SIZE (android-platform_development-android-n-preview-5-14-g735aab1_GH0.tar.gz) = 149193336 +SHA256 (android-platform_development-android-o-preview-2-83-gc5efdcc74_GH0.tar.gz) = d04393be7996dab127ede5f63b1722bead796a41f116ecb44f8367f8270ffe4c +SIZE (android-platform_development-android-o-preview-2-83-gc5efdcc74_GH0.tar.gz) = 93000818 Modified: head/devel/android-tools-adb-devel/files/Makefile ============================================================================== --- head/devel/android-tools-adb-devel/files/Makefile Tue Jun 20 20:50:34 2017 (r444003) +++ head/devel/android-tools-adb-devel/files/Makefile Tue Jun 20 21:50:30 2017 (r444004) @@ -8,7 +8,6 @@ FILESDIR?=${DOCDIR}/${PROG} FILES= *.[Tt][Xx][Tt] SRCS+= adb.cpp -SRCS+= adb_auth.cpp SRCS+= adb_auth_host.cpp SRCS+= adb_client.cpp SRCS+= adb_io.cpp @@ -29,6 +28,7 @@ SRCS+= ../adb/sockets.cpp SRCS+= sysdeps_unix.cpp SRCS+= transport.cpp SRCS+= transport_local.cpp +SRCS+= transport_mdns${MDNSEXT}.cpp SRCS+= transport_usb.cpp TEST_SRCS+= adb_io_test.cpp @@ -44,22 +44,26 @@ TEST_SRCS+= transport_test.cpp .PATH: ${.CURDIR}/client SRCS+= main.cpp +SRCS+= usb_libusb.cpp .PATH: ${.CURDIR}/sysdeps +SRCS+= errno.cpp TEST_SRCS+= stat_test.cpp -.PATH: ${EXTRADIR} -SRCS+= usb_libusb.cpp +.PATH: ${.CURDIR}/sysdeps/posix +SRCS+= network.cpp .PATH: ${.CURDIR}/../base SRCS+= file.cpp SRCS+= logging.cpp SRCS+= parsenetaddress.cpp +SRCS+= quick_exit.cpp SRCS+= stringprintf.cpp SRCS+= strings.cpp TEST_SRCS+= file_test.cpp TEST_SRCS+= logging_test.cpp TEST_SRCS+= parsenetaddress_test.cpp +TEST_SRCS+= quick_exit_test.cpp TEST_SRCS+= stringprintf_test.cpp TEST_SRCS+= strings_test.cpp TEST_SRCS+= test_main.cpp @@ -75,8 +79,6 @@ TEST_SRCS+= android_pubkey_test.cpp SRCS+= socket_inaddr_any_server_unix.c SRCS+= socket_local_client_unix.c SRCS+= socket_local_server_unix.c -SRCS+= socket_loopback_client_unix.c -SRCS+= socket_loopback_server_unix.c SRCS+= socket_network_client_unix.c SRCS+= ../libcutils/sockets.cpp SRCS+= load_file.c @@ -86,23 +88,27 @@ CPPFLAGS.sockets.cpp+= -o ${.TARGET} # required by base/file.cpp .PATH: ${.CURDIR}/../liblog +SRCS+= config_read.c SRCS+= config_write.c SRCS+= fake_log_device.c SRCS+= fake_writer.c +SRCS+= local_logger.c SRCS+= logger_lock.c SRCS+= logger_name.c SRCS+= logger_write.c -CPPFLAGS.config_write.c+= -DFAKE_LOG_DEVICE=1 +SRCS+= logprint.c +SRCS+= stderr_write.c REVISION?= $$(${GIT} rev-parse --short=12 HEAD 2>/dev/null || echo unknown) -CPPFLAGS+= -DADB_REVISION="\"${REVISION}-android\"" +CPPFLAGS+= -DADB_VERSION="\"0.0.0-${REVISION}-android\"" CPPFLAGS+= -DADB_HOST=1 CPPFLAGS+= -DHAVE_FORKEXEC=1 CPPFLAGS+= -DHAVE_SYMLINKS CPPFLAGS+= -DHAVE_TERMIO_H CPPFLAGS+= -DHAVE_SYS_SOCKET_H CPPFLAGS+= -D_FILE_OFFSET_BITS=64 +CPPFLAGS+= -DFAKE_LOG_DEVICE=1 CPPFLAGS+= -I${.CURDIR} CPPFLAGS+= -I${.CURDIR}/../include CPPFLAGS+= -I${.CURDIR}/../base/include @@ -110,7 +116,7 @@ CPPFLAGS+= -I${.CURDIR}/../libcrypto_utils/include CPPFLAGS+= ${CPPFLAGS.${.IMPSRC:T}} CPPFLAGS+= $$(${PKG_CONFIG} libcrypto --cflags 2>/dev/null) CPPFLAGS+= $$(${PKG_CONFIG} libusb-1.0 --cflags 2>/dev/null) -CXXFLAGS+= -std=gnu++11 +CXXFLAGS+= -std=gnu++14 .ifndef COMPILE.c CFLAGS+= ${CPPFLAGS} Added: head/devel/android-tools-adb-devel/files/patch-adb_client_usb__libusb.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb-devel/files/patch-adb_client_usb__libusb.cpp Tue Jun 20 21:50:30 2017 (r444004) @@ -0,0 +1,77 @@ +--- adb/client/usb_libusb.cpp.orig 2017-06-20 10:50:27 UTC ++++ adb/client/usb_libusb.cpp +@@ -28,7 +28,7 @@ + #include + #include + +-#include ++#include + + #include + #include +@@ -89,7 +89,11 @@ struct transfer_info { + }; + + namespace libusb { ++#if defined(__linux__) || defined(__APPLE__) + struct usb_handle : public ::usb_handle { ++#else ++struct usb_handle { ++#endif + usb_handle(const std::string& device_address, const std::string& serial, + unique_device_handle&& device_handle, uint8_t interface, uint8_t bulk_in, + uint8_t bulk_out, size_t zero_mask, size_t max_packet_size) +@@ -152,7 +156,9 @@ struct usb_handle : public ::usb_handle { + static auto& usb_handles = *new std::unordered_map>(); + static auto& usb_handles_mutex = *new std::mutex(); + ++#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 + static libusb_hotplug_callback_handle hotplug_handle; ++#endif + + static std::string get_device_address(libusb_device* device) { + return StringPrintf("usb:%d:%d", libusb_get_bus_number(device), +@@ -420,6 +426,7 @@ static void device_disconnected(libusb_device* device) + } + } + ++#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 + static auto& hotplug_queue = *new BlockingQueue>(); + static void hotplug_thread() { + adb_thread_setname("libusb hotplug"); +@@ -449,6 +456,7 @@ static int hotplug_callback(libusb_context*, libusb_de + hotplug_queue.Push({event, device}); + return 0; + } ++#endif + + void usb_init() { + LOG(DEBUG) << "initializing libusb..."; +@@ -457,6 +465,7 @@ void usb_init() { + LOG(FATAL) << "failed to initialize libusb: " << libusb_error_name(rc); + } + ++#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 + // Register the hotplug callback. + rc = libusb_hotplug_register_callback( + nullptr, static_cast(LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED | +@@ -467,6 +476,9 @@ void usb_init() { + if (rc != LIBUSB_SUCCESS) { + LOG(FATAL) << "failed to register libusb hotplug callback"; + } ++#else ++ LOG(FATAL) << "libusb doesn't support hotplug but scanning isn't implemented"; ++#endif + + // Spawn a thread for libusb_handle_events. + std::thread([]() { +@@ -478,7 +490,9 @@ void usb_init() { + } + + void usb_cleanup() { ++#if defined(LIBUSB_API_VERSION) && LIBUSB_API_VERSION >= 0x01000102 + libusb_hotplug_deregister_callback(nullptr, hotplug_handle); ++#endif + } + + // Dispatch a libusb transfer, unlock |device_lock|, and then wait for the result. Added: head/devel/android-tools-adb-devel/files/patch-adb_sysdeps_posix_network.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb-devel/files/patch-adb_sysdeps_posix_network.cpp Tue Jun 20 21:50:30 2017 (r444004) @@ -0,0 +1,10 @@ +--- adb/sysdeps/posix/network.cpp.orig 2017-06-20 10:50:27 UTC ++++ adb/sysdeps/posix/network.cpp +@@ -17,6 +17,7 @@ + #include "sysdeps/network.h" + + #include ++#include // strerror + #include + #include + Added: head/devel/android-tools-adb-devel/files/patch-adb_transport__usb.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb-devel/files/patch-adb_transport__usb.cpp Tue Jun 20 21:50:30 2017 (r444004) @@ -0,0 +1,11 @@ +--- adb/transport_usb.cpp.orig 2017-06-20 10:50:27 UTC ++++ adb/transport_usb.cpp +@@ -191,6 +191,8 @@ int is_adb_interface(int usb_class, int usb_subclass, + bool should_use_libusb() { + #if defined(_WIN32) || !ADB_HOST + return false; ++#elif !defined(__linux__) && !defined(__APPLE__) ++ return true; + #else + static bool disable = getenv("ADB_LIBUSB") && strcmp(getenv("ADB_LIBUSB"), "0") == 0; + return !disable; Added: head/devel/android-tools-adb-devel/files/patch-adb_usb.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb-devel/files/patch-adb_usb.h Tue Jun 20 21:50:30 2017 (r444004) @@ -0,0 +1,20 @@ +--- adb/usb.h.orig 2017-06-20 10:50:27 UTC ++++ adb/usb.h +@@ -43,6 +43,7 @@ namespace libusb { + ADB_USB_INTERFACE(libusb::usb_handle*); + } + ++#if defined(__linux__) || defined(__APPLE__) + namespace native { + struct usb_handle; + ADB_USB_INTERFACE(native::usb_handle*); +@@ -53,6 +54,9 @@ struct usb_handle { + }; + + ADB_USB_INTERFACE(::usb_handle*); ++#else ++using namespace libusb; ++#endif + + #endif // linux host || darwin + Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-adb-devel/files/patch-base_file.cpp Tue Jun 20 20:50:34 2017 (r444003) +++ head/devel/android-tools-adb-devel/files/patch-base_file.cpp Tue Jun 20 21:50:30 2017 (r444004) @@ -1,16 +1,16 @@ ---- base/file.cpp.orig 2016-09-28 18:07:09 UTC +--- base/file.cpp.orig 2017-06-20 10:50:27 UTC +++ base/file.cpp -@@ -18,6 +18,9 @@ - +@@ -19,6 +19,9 @@ #include #include + #include +#include // PATH_MAX +#include // BUFSIZ +#include // strerror #include #include #include -@@ -34,6 +37,9 @@ +@@ -36,6 +39,9 @@ #if defined(__APPLE__) #include #endif @@ -19,8 +19,8 @@ +#endif #if defined(_WIN32) #include - #endif -@@ -231,6 +237,17 @@ std::string GetExecutablePath() { + #define O_CLOEXEC O_NOINHERIT +@@ -251,6 +257,17 @@ std::string GetExecutablePath() { if (result == 0 || result == sizeof(path) - 1) return ""; path[PATH_MAX - 1] = 0; return path; Added: head/devel/android-tools-adb-devel/files/patch-include_cutils_trace.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-adb-devel/files/patch-include_cutils_trace.h Tue Jun 20 21:50:30 2017 (r444004) @@ -0,0 +1,17 @@ +--- include/cutils/trace.h.orig 2017-06-20 10:50:27 UTC ++++ include/cutils/trace.h +@@ -18,8 +18,14 @@ + #define _LIBS_CUTILS_TRACE_H + + #include ++#ifdef __cplusplus ++#include ++using std::atomic_bool; ++using std::memory_order_acquire; ++#else + #include + #include ++#endif + #include + #include + #include Modified: head/devel/android-tools-adb/Makefile ============================================================================== --- head/devel/android-tools-adb/Makefile Tue Jun 20 20:50:34 2017 (r444003) +++ head/devel/android-tools-adb/Makefile Tue Jun 20 21:50:30 2017 (r444004) @@ -33,7 +33,7 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-adb_sysdeps_mu EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-base_file.cpp .endif -USES= compiler:c++11-lib pkgconfig ssl uidfix +USES+= compiler:c++11-lib pkgconfig ssl uidfix BUILD_WRKSRC= ${WRKSRC}/adb INSTALL_WRKSRC= ${BUILD_WRKSRC} TEST_WRKSRC= ${BUILD_WRKSRC} From owner-svn-ports-head@freebsd.org Wed Jun 21 01:44:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E642DA6606; Wed, 21 Jun 2017 01:44:08 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 202377AF74; Wed, 21 Jun 2017 01:44:08 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5L1i67a056095; Wed, 21 Jun 2017 01:44:06 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L1i6p4056090; Wed, 21 Jun 2017 01:44:06 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201706210144.v5L1i6p4056090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Wed, 21 Jun 2017 01:44:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444005 - in head/www/tomcat-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, 21 Jun 2017 01:44:08 -0000 Author: ler Date: Wed Jun 21 01:44:06 2017 New Revision: 444005 URL: https://svnweb.freebsd.org/changeset/ports/444005 Log: www/tomcat-devel: fixed rc.d script and update to version 9.0.0.M21 Note: startup script has been renamed from tomcat-devel to tomcat_devel. PR: 219426 Submitted by: vvd@unislabs.com Added: head/www/tomcat-devel/files/tomcat_devel.in - copied, changed from r444004, head/www/tomcat-devel/files/tomcat-devel.in Deleted: head/www/tomcat-devel/files/tomcat-devel.in Modified: head/www/tomcat-devel/Makefile head/www/tomcat-devel/distinfo head/www/tomcat-devel/pkg-plist Modified: head/www/tomcat-devel/Makefile ============================================================================== --- head/www/tomcat-devel/Makefile Tue Jun 20 21:50:30 2017 (r444004) +++ head/www/tomcat-devel/Makefile Wed Jun 21 01:44:06 2017 (r444005) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tomcat -PORTVERSION= 9.0.0.M20 +PORTVERSION= 9.0.0.M21 CATEGORIES= www java MASTER_SITES= APACHE/${PORTNAME}/${PORTNAME}-${PORTVERSION:C/([0-9])(.*)/\1/}/v${PORTVERSION}/bin PKGNAMESUFFIX= -devel @@ -23,7 +23,7 @@ JAVA_VERSION= 1.8+ NO_BUILD= yes NO_ARCH= yes -USE_RC_SUBR= ${PKGBASE} +USE_RC_SUBR= ${PKGBASE:C/-/_/} TOMCAT_SUBDIR?= ${DISTNAME:C/([0-9])\.([0-9])(.*)/\1.\2/} TOMCAT_HOME= ${PREFIX}/${TOMCAT_SUBDIR} Modified: head/www/tomcat-devel/distinfo ============================================================================== --- head/www/tomcat-devel/distinfo Tue Jun 20 21:50:30 2017 (r444004) +++ head/www/tomcat-devel/distinfo Wed Jun 21 01:44:06 2017 (r444005) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494081797 -SHA256 (apache-tomcat-9.0.0.M20.tar.gz) = cfcc184901d368a3581b20cc08490f39994896806b6008c8376d49be201bdfeb -SIZE (apache-tomcat-9.0.0.M20.tar.gz) = 9314793 +TIMESTAMP = 1495305437 +SHA256 (apache-tomcat-9.0.0.M21.tar.gz) = c959c5a8ef09af269ddb0681d428f82ff5b3ba10ffbff177f671938f27ca7cee +SIZE (apache-tomcat-9.0.0.M21.tar.gz) = 9335939 Copied and modified: head/www/tomcat-devel/files/tomcat_devel.in (from r444004, head/www/tomcat-devel/files/tomcat-devel.in) ============================================================================== --- head/www/tomcat-devel/files/tomcat-devel.in Tue Jun 20 21:50:30 2017 (r444004, copy source) +++ head/www/tomcat-devel/files/tomcat_devel.in Wed Jun 21 01:44:06 2017 (r444005) @@ -3,58 +3,58 @@ # $FreeBSD$ # -# PROVIDE: tomcat-devel +# PROVIDE: tomcat_devel # REQUIRE: LOGIN # KEYWORD: shutdown # -# Configuration settings for tomcat-devel in /etc/rc.conf: +# Configuration settings for tomcat_devel in /etc/rc.conf: # -# tomcat-devel_enable (bool): +# tomcat_devel_enable (bool): # Set to "NO" by default. # Set it to "YES" to enable tomcat-devel # -# tomcat-devel_catalina_base (str) +# tomcat_devel_catalina_base (str) # Set to "%%TOMCAT_HOME%%" by default. # Set the CATALINA_BASE variable for the Tomcat process # -# tomcat-devel_catalina_tmpdir (str) +# tomcat_devel_catalina_tmpdir (str) # Set to "${catalina.base}/temp" by default. # Set the CATALINA_TMPDIR variable for the Tomcat process # -# tomcat-devel_stdout (str) +# tomcat_devel_stdout (str) # Set to "${catalina.base}/logs/catalina.out" by default. # Set the stdout redirection. It may also be '/dev/null', '&1' or '&2' # -# tomcat-devel_stderr (str) +# tomcat_devel_stderr (str) # Set to "&1" by default. # Set the stderr redirection. It may also be '/dev/null', '&1' or '&2' # -# tomcat-devel_pipe_cmd (str): +# tomcat_devel_pipe_cmd (str): # Set to "" by default. # Set a piped command to process stdout/stderr when passthru # -# tomcat-devel_logging_manager (str): +# tomcat_devel_logging_manager (str): # Set to "org.apache.juli.ClassLoaderLogManager" by default. # Set the JUL log manager # -# tomcat-devel_logging_config (str): +# tomcat_devel_logging_config (str): # Set to "${catalina.base}/conf/logging.properties" by default. # Set the JUL config file # -# tomcat-devel_java_home (str): +# tomcat_devel_java_home (str): # Set to "%%JAVA_HOME%%" by default. # Specify the Java VM to use. # -# tomcat-devel_classpath (str): +# tomcat_devel_classpath (str): # Set to "" by default. # Addtional classes to add to the CLASSPATH. If set, must start with ':' # -# tomcat-devel_java_opts (str): +# tomcat_devel_java_opts (str): # Set to "" by default. # Java VM args to use. # -# tomcat-devel_wait (int): +# tomcat_devel_wait (int): # Set to "30" by default. # Set the wait time (in seconds) for Tomcat process startup # Modified: head/www/tomcat-devel/pkg-plist ============================================================================== --- head/www/tomcat-devel/pkg-plist Tue Jun 20 21:50:30 2017 (r444004) +++ head/www/tomcat-devel/pkg-plist Wed Jun 21 01:44:06 2017 (r444005) @@ -39,7 +39,7 @@ %%T%%/lib/catalina-storeconfig.jar %%T%%/lib/catalina-tribes.jar %%T%%/lib/catalina.jar -%%T%%/lib/ecj-4.6.1.jar +%%T%%/lib/ecj-4.6.3.jar %%T%%/lib/el-api.jar %%T%%/lib/jasper-el.jar %%T%%/lib/jasper.jar From owner-svn-ports-head@freebsd.org Wed Jun 21 01:58:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCCA1DA67B6; Wed, 21 Jun 2017 01:58:27 +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 4C43C7B385; Wed, 21 Jun 2017 01:58:27 +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 v5L1wQvC060319; Wed, 21 Jun 2017 01:58:26 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L1wQMF060316; Wed, 21 Jun 2017 01:58:26 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201706210158.v5L1wQMF060316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 21 Jun 2017 01:58:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444006 - head/math/saga X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 01:58:28 -0000 Author: wen Date: Wed Jun 21 01:58:26 2017 New Revision: 444006 URL: https://svnweb.freebsd.org/changeset/ports/444006 Log: - Update to 4.1.0 PR: 220012 Submitted by: wen@ Approved by: maintainer Modified: head/math/saga/Makefile head/math/saga/distinfo head/math/saga/pkg-plist Modified: head/math/saga/Makefile ============================================================================== --- head/math/saga/Makefile Wed Jun 21 01:44:06 2017 (r444005) +++ head/math/saga/Makefile Wed Jun 21 01:58:26 2017 (r444006) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= saga -PORTVERSION= 3.0.0 -PORTREVISION= 3 +PORTVERSION= 4.1.0 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]\.[[:digit:]]*$//}/SAGA%20-%20${PORTVERSION} -DISTNAME= ${PORTNAME}_${PORTVERSION} +#DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= rhurlin@gwdg.de COMMENT= System for Automated Geoscientific Analyses Modified: head/math/saga/distinfo ============================================================================== --- head/math/saga/distinfo Wed Jun 21 01:44:06 2017 (r444005) +++ head/math/saga/distinfo Wed Jun 21 01:58:26 2017 (r444006) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485032140 -SHA256 (saga_3.0.0.tar.gz) = fa8b8f5f95705bfa72f6969a23e75195f2d939f835b7243f8dcb9f780df3627f -SIZE (saga_3.0.0.tar.gz) = 4313979 +TIMESTAMP = 1497487742 +SHA256 (saga-4.1.0.tar.gz) = e62651e862ff73d2e9e25d0d2b14aab59eb3cad3b7012af51431d10615c45c29 +SIZE (saga-4.1.0.tar.gz) = 4490330 Modified: head/math/saga/pkg-plist ============================================================================== --- head/math/saga/pkg-plist Wed Jun 21 01:44:06 2017 (r444005) +++ head/math/saga/pkg-plist Wed Jun 21 01:58:26 2017 (r444006) @@ -88,6 +88,7 @@ lib/saga/libsim_cellular_automata.so lib/saga/libsim_ecosystems_hugget.so lib/saga/libsim_erosion.so lib/saga/libsim_fire_spreading.so +lib/saga/libsim_geomorphology.so lib/saga/libsim_hydrology.so lib/saga/libsim_ihacres.so lib/saga/libsim_qm_of_esp.so @@ -126,6 +127,7 @@ share/icons/hicolor/80x80/apps/saga.png share/icons/hicolor/8x8/apps/saga.png share/icons/hicolor/96x96/apps/saga.png share/pixmaps/saga.png +%%DATADIR%%/accessories/CMakeLists.txt %%DATADIR%%/accessories/helper/make_arcsaga_toolboxes.bat %%DATADIR%%/accessories/helper/make_saga_release.bat %%DATADIR%%/accessories/helper/make_saga_snapshot.bat @@ -180,13 +182,18 @@ share/pixmaps/saga.png %%DATADIR%%/saga_tip.txt %%DATADIR%%/toolchains/climate.xml %%DATADIR%%/toolchains/cluster_terrain.xml +%%DATADIR%%/toolchains/grid_list_simple_filter.xml %%DATADIR%%/toolchains/gridding.xml +%%DATADIR%%/toolchains/group_files.xml %%DATADIR%%/toolchains/imagery.xml %%DATADIR%%/toolchains/imagery_lczc.xml +%%DATADIR%%/toolchains/import_text_tables.xml %%DATADIR%%/toolchains/obia.xml %%DATADIR%%/toolchains/points_to_contour.xml +%%DATADIR%%/toolchains/polygons_max_interior_circles.xml %%DATADIR%%/toolchains/sieve_and_clump.xml %%DATADIR%%/toolchains/temperature_downscaling.xml +%%DATADIR%%/toolchains/temperature_downscaling_bulk.xml %%DATADIR%%/toolchains/terrain_analysis.xml %%DATADIR%%/toolchains/terrain_segmentation.xml %%DATADIR%%/toolchains/tta_LandCover.xml From owner-svn-ports-head@freebsd.org Wed Jun 21 02:30:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61F2FDA6F85; Wed, 21 Jun 2017 02:30: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 2D0427C081; Wed, 21 Jun 2017 02:30: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 v5L2Ua8C072633; Wed, 21 Jun 2017 02:30:36 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L2UaTe072632; Wed, 21 Jun 2017 02:30:36 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210230.v5L2UaTe072632@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 02:30:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444007 - head/mail/heirloom-mailx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 02:30:37 -0000 Author: cy Date: Wed Jun 21 02:30:36 2017 New Revision: 444007 URL: https://svnweb.freebsd.org/changeset/ports/444007 Log: Switch to USES=localbase. Modified: head/mail/heirloom-mailx/Makefile Modified: head/mail/heirloom-mailx/Makefile ============================================================================== --- head/mail/heirloom-mailx/Makefile Wed Jun 21 01:58:26 2017 (r444006) +++ head/mail/heirloom-mailx/Makefile Wed Jun 21 02:30:36 2017 (r444007) @@ -17,7 +17,7 @@ OPTIONS_DEFINE= IPV6 DOCS CONFLICTS= mailx-[0-9]* MAKE_JOBS_UNSAFE= yes -USES= iconv ssl tar:bzip2 +USES= iconv localbase ssl tar:bzip2 MAKE_ARGS= PREFIX="${PREFIX}" \ SYSCONFDIR="${PREFIX}/etc" \ SENDMAIL="/usr/sbin/sendmail" \ @@ -25,9 +25,6 @@ MAKE_ARGS= PREFIX="${PREFIX}" \ LDFLAGS="${LDFLAGS}" PORTDOCS= AUTHORS COPYING ChangeLog README TODO - -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib .include From owner-svn-ports-head@freebsd.org Wed Jun 21 02:31:49 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FC38DA70DF; Wed, 21 Jun 2017 02:31:49 +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 40AB17C22A; Wed, 21 Jun 2017 02:31:49 +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 v5L2Vm7q076269; Wed, 21 Jun 2017 02:31:48 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L2VmPe076268; Wed, 21 Jun 2017 02:31:48 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210231.v5L2VmPe076268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 02:31:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444008 - head/graphics/xpdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 02:31:49 -0000 Author: cy Date: Wed Jun 21 02:31:48 2017 New Revision: 444008 URL: https://svnweb.freebsd.org/changeset/ports/444008 Log: Switch to USES localbase. Use default compilter optimization. Modified: head/graphics/xpdf/Makefile Modified: head/graphics/xpdf/Makefile ============================================================================== --- head/graphics/xpdf/Makefile Wed Jun 21 02:30:36 2017 (r444007) +++ head/graphics/xpdf/Makefile Wed Jun 21 02:31:48 2017 (r444008) @@ -18,11 +18,8 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 \ libpng.so:graphics/png GNU_CONFIGURE= yes -USES= gmake cpe +USES= gmake cpe localbase CPE_VENDOR= foolabs -CFLAGS+= -I${LOCALBASE}/include -O0 -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --enable-opi \ --with-freetype2-library="${LOCALBASE}/lib" \ --with-freetype2-includes="${LOCALBASE}/include/freetype2" \ From owner-svn-ports-head@freebsd.org Wed Jun 21 02:32:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7789DA712F; Wed, 21 Jun 2017 02:32:35 +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 B64E67C46E; Wed, 21 Jun 2017 02:32:35 +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 v5L2WYlr076395; Wed, 21 Jun 2017 02:32:34 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L2WY1h076394; Wed, 21 Jun 2017 02:32:34 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210232.v5L2WY1h076394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 02:32:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444009 - 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: Wed, 21 Jun 2017 02:32:36 -0000 Author: cy Date: Wed Jun 21 02:32:34 2017 New Revision: 444009 URL: https://svnweb.freebsd.org/changeset/ports/444009 Log: Switch to USES=localbase. Modified: head/net/vtun/Makefile Modified: head/net/vtun/Makefile ============================================================================== --- head/net/vtun/Makefile Wed Jun 21 02:31:48 2017 (r444008) +++ head/net/vtun/Makefile Wed Jun 21 02:32:34 2017 (r444009) @@ -14,8 +14,8 @@ LICENSE= GPLv2 LIB_DEPENDS= liblzo2.so:archivers/lzo2 -CFLAGS+= -ansi -Wno-pointer-sign -I${LOCALBASE}/include -USES= autoreconf ssl +CFLAGS+= -ansi -Wno-pointer-sign +USES= autoreconf localbase ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --with-ssl-headers=${OPENSSLINC} \ From owner-svn-ports-head@freebsd.org Wed Jun 21 02:45:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8ABE6DA7469; Wed, 21 Jun 2017 02:45:21 +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 591037C94D; Wed, 21 Jun 2017 02:45:21 +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 v5L2jKjr080625; Wed, 21 Jun 2017 02:45:20 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L2jK29080624; Wed, 21 Jun 2017 02:45:20 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210245.v5L2jK29080624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 02:45:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444010 - head/security/aide X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 02:45:21 -0000 Author: cy Date: Wed Jun 21 02:45:20 2017 New Revision: 444010 URL: https://svnweb.freebsd.org/changeset/ports/444010 Log: Switch to USES localbase. Modified: head/security/aide/Makefile Modified: head/security/aide/Makefile ============================================================================== --- head/security/aide/Makefile Wed Jun 21 02:32:34 2017 (r444009) +++ head/security/aide/Makefile Wed Jun 21 02:45:20 2017 (r444010) @@ -13,7 +13,7 @@ COMMENT= Replacement and extension for Tripwire LIB_DEPENDS= libmhash.so:security/mhash \ libpcre.so:devel/pcre -USES= autoreconf bison gmake +USES= autoreconf bison gmake localbase GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-mhash \ @@ -21,8 +21,7 @@ CONFIGURE_ARGS+=--with-mhash \ --mandir=${MANPREFIX}/man \ --with-config_file=${PREFIX}/etc/aide.conf -LDFLAGS+= -lpthread -L${LOCALBASE}/lib -CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -lpthread SUB_FILES= pkg-message From owner-svn-ports-head@freebsd.org Wed Jun 21 02:46:54 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EEC7DA74B4; Wed, 21 Jun 2017 02:46:54 +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 3AC897CA30; Wed, 21 Jun 2017 02:46:54 +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 v5L2krEU080812; Wed, 21 Jun 2017 02:46:53 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L2kr43080809; Wed, 21 Jun 2017 02:46:53 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210246.v5L2kr43080809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 02:46:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444011 - in head/security: krb5-113 krb5-114 krb5-115 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 02:46:54 -0000 Author: cy Date: Wed Jun 21 02:46:52 2017 New Revision: 444011 URL: https://svnweb.freebsd.org/changeset/ports/444011 Log: Switch to USES=localbase. Modified: head/security/krb5-113/Makefile head/security/krb5-114/Makefile head/security/krb5-115/Makefile Modified: head/security/krb5-113/Makefile ============================================================================== --- head/security/krb5-113/Makefile Wed Jun 21 02:45:20 2017 (r444010) +++ head/security/krb5-113/Makefile Wed Jun 21 02:46:52 2017 (r444011) @@ -28,7 +28,7 @@ USE_PERL5= build USE_LDCONFIG= yes USE_CSTD= gnu99 GNU_CONFIGURE= yes -USES= cpe gmake perl5 libtool:build \ +USES= cpe gmake localbase perl5 libtool:build \ gssapi:bootstrap,mit pkgconfig:run ssl CONFIGURE_ARGS?= --enable-shared --without-system-verto \ --disable-rpath --localstatedir="${PREFIX}/var" @@ -61,8 +61,8 @@ LIBEDIT_CONFIGURE_WITH= libedit .if defined(KRB5_HOME) PREFIX= ${KRB5_HOME} .endif -CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} -LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} +CPPFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} USE_RC_SUBR= kpropd OPTIONS_SUB= yes Modified: head/security/krb5-114/Makefile ============================================================================== --- head/security/krb5-114/Makefile Wed Jun 21 02:45:20 2017 (r444010) +++ head/security/krb5-114/Makefile Wed Jun 21 02:46:52 2017 (r444011) @@ -25,7 +25,7 @@ USE_PERL5= build USE_LDCONFIG= yes USE_CSTD= gnu99 GNU_CONFIGURE= yes -USES= cpe gmake perl5 libtool:build \ +USES= cpe gmake localbase perl5 libtool:build \ gssapi:bootstrap,mit pkgconfig:run ssl CONFIGURE_ARGS?= --enable-shared --without-system-verto \ --disable-rpath --localstatedir="${PREFIX}/var" @@ -58,8 +58,8 @@ LIBEDIT_CONFIGURE_WITH= libedit .if defined(KRB5_HOME) PREFIX= ${KRB5_HOME} .endif -CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} -LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} +CPPFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} USE_RC_SUBR= kpropd OPTIONS_SUB= yes Modified: head/security/krb5-115/Makefile ============================================================================== --- head/security/krb5-115/Makefile Wed Jun 21 02:45:20 2017 (r444010) +++ head/security/krb5-115/Makefile Wed Jun 21 02:46:52 2017 (r444011) @@ -25,7 +25,7 @@ USE_PERL5= build USE_LDCONFIG= yes USE_CSTD= gnu99 GNU_CONFIGURE= yes -USES= cpe gmake perl5 libtool:build \ +USES= cpe gmake localbase perl5 libtool:build \ gssapi:bootstrap,mit pkgconfig:run ssl CONFIGURE_ARGS?= --enable-shared --without-system-verto \ --disable-rpath --localstatedir="${PREFIX}/var" @@ -58,8 +58,8 @@ LIBEDIT_CONFIGURE_WITH= libedit .if defined(KRB5_HOME) PREFIX= ${KRB5_HOME} .endif -CPPFLAGS+= -I${LOCALBASE}/include -I${OPENSSLINC} -LDFLAGS+= -L${LOCALBASE}/lib -L${OPENSSLLIB} +CPPFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} USE_RC_SUBR= kpropd OPTIONS_SUB= yes From owner-svn-ports-head@freebsd.org Wed Jun 21 02:55:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99938DA77BC; Wed, 21 Jun 2017 02:55:38 +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 658CC7CF9A; Wed, 21 Jun 2017 02:55:38 +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 v5L2tbDU085018; Wed, 21 Jun 2017 02:55:37 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L2tbuQ085017; Wed, 21 Jun 2017 02:55:37 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210255.v5L2tbuQ085017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 02:55:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444012 - head/net-mgmt/grepip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 02:55:38 -0000 Author: cy Date: Wed Jun 21 02:55:37 2017 New Revision: 444012 URL: https://svnweb.freebsd.org/changeset/ports/444012 Log: Switch to USES localbase. Modified: head/net-mgmt/grepip/Makefile Modified: head/net-mgmt/grepip/Makefile ============================================================================== --- head/net-mgmt/grepip/Makefile Wed Jun 21 02:46:52 2017 (r444011) +++ head/net-mgmt/grepip/Makefile Wed Jun 21 02:55:37 2017 (r444012) @@ -15,14 +15,14 @@ LIB_DEPENDS= libpcre.so:devel/pcre PLIST_FILES= bin/grepip PORTDOCS= README.txt +USES= localbase OPTIONS_DEFINE= DOCS do-build: cd ${WRKSRC}; \ ${CC} ${CFLAGS} -c patricia.c; \ - ${CC} ${CFLAGS} -I${LOCALBASE}/include -o grepip grepip.c patricia.o \ - -L${LOCALBASE}/lib -lpcre + ${CC} ${CFLAGS} -o grepip grepip.c patricia.o ${LIBS} -lpcre do-install: ${INSTALL_PROGRAM} ${WRKSRC}/grepip ${STAGEDIR}${PREFIX}/bin From owner-svn-ports-head@freebsd.org Wed Jun 21 03:40:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72F69DA853F; Wed, 21 Jun 2017 03:40:20 +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 1D7FC7E5E5; Wed, 21 Jun 2017 03:40:20 +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 v5L3eJ5K002250; Wed, 21 Jun 2017 03:40:19 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L3eITx002245; Wed, 21 Jun 2017 03:40:18 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201706210340.v5L3eITx002245@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 21 Jun 2017 03:40:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444013 - in head/sysutils: cfengine310 cfengine36 cfengine37 cfengine38 cfengine39 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 03:40:20 -0000 Author: cy Date: Wed Jun 21 03:40:18 2017 New Revision: 444013 URL: https://svnweb.freebsd.org/changeset/ports/444013 Log: Switch to USES=localbase. Modified: head/sysutils/cfengine310/Makefile head/sysutils/cfengine36/Makefile head/sysutils/cfengine37/Makefile head/sysutils/cfengine38/Makefile head/sysutils/cfengine39/Makefile Modified: head/sysutils/cfengine310/Makefile ============================================================================== --- head/sysutils/cfengine310/Makefile Wed Jun 21 02:55:37 2017 (r444012) +++ head/sysutils/cfengine310/Makefile Wed Jun 21 03:40:18 2017 (r444013) @@ -29,12 +29,10 @@ MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes USES= autoreconf \ - cpe gmake libtool shebangfix ssl + cpe gmake localbase libtool shebangfix ssl USE_GNOME= libxml2 SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib # EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3 DOCSDIR= ${PREFIX}/share/doc/cfengine MAKE_ENV= EXPLICIT_VERSION=${PORTVERSION} Modified: head/sysutils/cfengine36/Makefile ============================================================================== --- head/sysutils/cfengine36/Makefile Wed Jun 21 02:55:37 2017 (r444012) +++ head/sysutils/cfengine36/Makefile Wed Jun 21 03:40:18 2017 (r444013) @@ -30,11 +30,9 @@ USE_RC_SUBR= cf-execd cf-serverd cf-monitord MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -USES= autoreconf cpe gmake libtool shebangfix ssl +USES= autoreconf cpe gmake libtool localbase shebangfix ssl SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib # EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3 DOCSDIR= ${PREFIX}/share/doc/cfengine CONFIGURE_ARGS= --docdir=${DOCSDIR} \ Modified: head/sysutils/cfengine37/Makefile ============================================================================== --- head/sysutils/cfengine37/Makefile Wed Jun 21 02:55:37 2017 (r444012) +++ head/sysutils/cfengine37/Makefile Wed Jun 21 03:40:18 2017 (r444013) @@ -29,12 +29,10 @@ USE_RC_SUBR= cf-execd cf-serverd cf-monitord MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -USES= autoreconf cpe gmake libtool shebangfix ssl +USES= autoreconf cpe gmake libtool localbase shebangfix ssl USE_GNOME= libxml2 SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib # EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3 DOCSDIR= ${PREFIX}/share/doc/cfengine CONFIGURE_ARGS= --docdir=${DOCSDIR} \ Modified: head/sysutils/cfengine38/Makefile ============================================================================== --- head/sysutils/cfengine38/Makefile Wed Jun 21 02:55:37 2017 (r444012) +++ head/sysutils/cfengine38/Makefile Wed Jun 21 03:40:18 2017 (r444013) @@ -29,12 +29,10 @@ USE_RC_SUBR= cf-execd cf-serverd cf-monitord MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -USES= autoreconf cpe gmake libtool shebangfix ssl +USES= autoreconf cpe gmake libtool localbase shebangfix ssl USE_GNOME= libxml2 SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib # EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3 DOCSDIR= ${PREFIX}/share/doc/cfengine CONFIGURE_ARGS= --docdir=${DOCSDIR} \ Modified: head/sysutils/cfengine39/Makefile ============================================================================== --- head/sysutils/cfengine39/Makefile Wed Jun 21 02:55:37 2017 (r444012) +++ head/sysutils/cfengine39/Makefile Wed Jun 21 03:40:18 2017 (r444013) @@ -30,12 +30,10 @@ MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes USES= autoreconf:build \ - cpe gmake libtool shebangfix ssl + cpe gmake libtool localbase shebangfix ssl USE_GNOME= libxml2 SHEBANG_FILES= examples/remake_outputs.pl CFLAGS+= -Wno-return-type -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib # EXAMPLESDIR= ${PREFIX}/share/examples/cfengine3 DOCSDIR= ${PREFIX}/share/doc/cfengine MAKE_ENV= EXPLICIT_VERSION=${PORTVERSION} From owner-svn-ports-head@freebsd.org Wed Jun 21 05:57:44 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CA1CD87172; Wed, 21 Jun 2017 05:57:44 +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 3CD3981571; Wed, 21 Jun 2017 05:57:44 +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 v5L5vhJs059061; Wed, 21 Jun 2017 05:57:43 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L5vhnT059059; Wed, 21 Jun 2017 05:57:43 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201706210557.v5L5vhnT059059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 21 Jun 2017 05:57:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444014 - in head/x11/xterm: . 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, 21 Jun 2017 05:57:44 -0000 Author: ehaupt Date: Wed Jun 21 05:57:43 2017 New Revision: 444014 URL: https://svnweb.freebsd.org/changeset/ports/444014 Log: Update to 330 http://invisible-island.net/xterm/xterm.log.html#xterm_330 PR: 219800 (based on) Submitted by: jakub_lach@mailplus.pl Deleted: head/x11/xterm/files/ Modified: head/x11/xterm/Makefile head/x11/xterm/distinfo Modified: head/x11/xterm/Makefile ============================================================================== --- head/x11/xterm/Makefile Wed Jun 21 03:40:18 2017 (r444013) +++ head/x11/xterm/Makefile Wed Jun 21 05:57:43 2017 (r444014) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xterm -PORTVERSION= 329 +PORTVERSION= 330 CATEGORIES= x11 MASTER_SITES= ftp://invisible-island.net/xterm/:src1 \ LOCAL/ehaupt:src1 LOCAL/ehaupt:src2 Modified: head/x11/xterm/distinfo ============================================================================== --- head/x11/xterm/distinfo Wed Jun 21 03:40:18 2017 (r444013) +++ head/x11/xterm/distinfo Wed Jun 21 05:57:43 2017 (r444014) @@ -1,5 +1,5 @@ -TIMESTAMP = 1497260315 -SHA256 (xterm-329.tgz) = 1eb9f296240f2d1e3ea633023daa3410f8710854f0a1323a73e94de4c312891c -SIZE (xterm-329.tgz) = 1265450 +TIMESTAMP = 1498024024 +SHA256 (xterm-330.tgz) = 7aeef9f29f6b95e09f481173c8c3053357bf5ffe162585647f690fd1707556df +SIZE (xterm-330.tgz) = 1273183 SHA256 (bsd-xterm-icons-1.tgz) = fcf51dce0e23e9911a16ed7f2ce835bb6ff2ada65f023c29fdd8abda2795bf7c SIZE (bsd-xterm-icons-1.tgz) = 22718 From owner-svn-ports-head@freebsd.org Wed Jun 21 07:18:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55FB0D88618; Wed, 21 Jun 2017 07:18:04 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1DD4083313; Wed, 21 Jun 2017 07:18:04 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5L7I3Rc091308; Wed, 21 Jun 2017 07:18:03 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L7I37c091306; Wed, 21 Jun 2017 07:18:03 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201706210718.v5L7I37c091306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Wed, 21 Jun 2017 07:18:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444015 - head/devel/py-glob2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 07:18:04 -0000 Author: loader (doc committer) Date: Wed Jun 21 07:18:02 2017 New Revision: 444015 URL: https://svnweb.freebsd.org/changeset/ports/444015 Log: devel/py-glob2: Update to 0.5 - Add NO_ARCH - Add LICENSE_FILE - Add regression test - Allow concurrent installation (USE_PYTHON=concurrent) Reviewed by: koobs Approved by: koobs (ports) Differential Revision: https://reviews.freebsd.org/D10652 Modified: head/devel/py-glob2/Makefile head/devel/py-glob2/distinfo Modified: head/devel/py-glob2/Makefile ============================================================================== --- head/devel/py-glob2/Makefile Wed Jun 21 05:57:43 2017 (r444014) +++ head/devel/py-glob2/Makefile Wed Jun 21 07:18:02 2017 (r444015) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= glob2 -PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTVERSION= 0.5 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,8 +11,15 @@ MAINTAINER= loader@FreeBSD.org COMMENT= Glob that captures patterns and supports recursive wildcards LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE -USES= python -USE_PYTHON= distutils autoplist +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest + +NO_ARCH= yes +USES= python:2.7+ +USE_PYTHON= distutils concurrent autoplist + +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest test.py) .include Modified: head/devel/py-glob2/distinfo ============================================================================== --- head/devel/py-glob2/distinfo Wed Jun 21 05:57:43 2017 (r444014) +++ head/devel/py-glob2/distinfo Wed Jun 21 07:18:02 2017 (r444015) @@ -1,2 +1,3 @@ -SHA256 (glob2-0.4.1.tar.gz) = 9974c375c54eb56223643980e724b37fc8efcaeb65fc55045fc521baa5f60175 -SIZE (glob2-0.4.1.tar.gz) = 9124 +TIMESTAMP = 1494086329 +SHA256 (glob2-0.5.tar.gz) = 8f944b87ac4deaf39b0dce419665b40a3acb66a9ad3b07945e109246bb66fe9f +SIZE (glob2-0.5.tar.gz) = 10060 From owner-svn-ports-head@freebsd.org Wed Jun 21 07:27:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3CDC4D88922; Wed, 21 Jun 2017 07:27:29 +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 0332783881; Wed, 21 Jun 2017 07:27: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 v5L7RSLR095411; Wed, 21 Jun 2017 07:27:28 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L7RSxK095409; Wed, 21 Jun 2017 07:27:28 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201706210727.v5L7RSxK095409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 21 Jun 2017 07:27:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444016 - 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, 21 Jun 2017 07:27:29 -0000 Author: brnrd Date: Wed Jun 21 07:27:27 2017 New Revision: 444016 URL: https://svnweb.freebsd.org/changeset/ports/444016 Log: security/vuxml: Fix entry uppercasing - Introduced in 443943 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jun 21 07:18:02 2017 (r444015) +++ head/security/vuxml/vuln.xml Wed Jun 21 07:27:27 2017 (r444016) @@ -7146,7 +7146,7 @@ Notes: Apache httpd -- several vulnerabilities - APAche24 + apache24 2.4.25 From owner-svn-ports-head@freebsd.org Wed Jun 21 08:11:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEA4ED8971F; Wed, 21 Jun 2017 08:11:15 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F10E84BF0; Wed, 21 Jun 2017 08:11:15 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5L8BEeR012751; Wed, 21 Jun 2017 08:11:14 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L8BEfT012749; Wed, 21 Jun 2017 08:11:14 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706210811.v5L8BEfT012749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 08:11:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444017 - head/security/afl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 08:11:15 -0000 Author: tobik Date: Wed Jun 21 08:11:14 2017 New Revision: 444017 URL: https://svnweb.freebsd.org/changeset/ports/444017 Log: Update to 2.43b Changes: http://lcamtuf.coredump.cx/afl/ChangeLog.txt Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11281 Modified: head/security/afl/Makefile head/security/afl/distinfo Modified: head/security/afl/Makefile ============================================================================== --- head/security/afl/Makefile Wed Jun 21 07:27:27 2017 (r444016) +++ head/security/afl/Makefile Wed Jun 21 08:11:14 2017 (r444017) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= afl -PORTVERSION= 2.42 +PORTVERSION= 2.43 DISTVERSIONSUFFIX= b CATEGORIES= security MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/ Modified: head/security/afl/distinfo ============================================================================== --- head/security/afl/distinfo Wed Jun 21 07:27:27 2017 (r444016) +++ head/security/afl/distinfo Wed Jun 21 08:11:14 2017 (r444017) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496946201 -SHA256 (afl-2.42b.tgz) = 13fad1972675ceaa13ef0b3e25e539d8cdaad95fea75cf706d191198497c9399 -SIZE (afl-2.42b.tgz) = 832234 +TIMESTAMP = 1497944263 +SHA256 (afl-2.43b.tgz) = 9db797848efa9507e509379aeffdd89b3806a79a119dfa2c4477cc5156f262cb +SIZE (afl-2.43b.tgz) = 832384 From owner-svn-ports-head@freebsd.org Wed Jun 21 08:21:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AEACD89C38; Wed, 21 Jun 2017 08:21:57 +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 188D691D; Wed, 21 Jun 2017 08:21:56 +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 v5L8LuRL018318; Wed, 21 Jun 2017 08:21:56 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L8Lug6018317; Wed, 21 Jun 2017 08:21:56 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201706210821.v5L8Lug6018317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Wed, 21 Jun 2017 08:21:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444018 - 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: Wed, 21 Jun 2017 08:21:57 -0000 Author: tcberner Date: Wed Jun 21 08:21:55 2017 New Revision: 444018 URL: https://svnweb.freebsd.org/changeset/ports/444018 Log: Remove trailing space. Modified: head/Mk/bsd.qt.mk Modified: head/Mk/bsd.qt.mk ============================================================================== --- head/Mk/bsd.qt.mk Wed Jun 21 08:11:14 2017 (r444017) +++ head/Mk/bsd.qt.mk Wed Jun 21 08:21:55 2017 (r444018) @@ -175,7 +175,7 @@ CONFIGURE_ARGS+=-verbose . if ${_QT_VERSION:M4*} _EXTRA_PATCHES_QT4= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-src-corelib-global-qglobal.h \ ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-libtool -# Patch in proper name for armv6 architecture: https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html +# Patch in proper name for armv6 architecture: https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html _EXTRA_PATCHES_QT4+= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-armv6 . else _EXTRA_PATCHES_QT5= ${.CURDIR:H:H}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_create__cmake.prf \ From owner-svn-ports-head@freebsd.org Wed Jun 21 09:01:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBBD7D8A571; Wed, 21 Jun 2017 09:01: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 7FE5A17F5; Wed, 21 Jun 2017 09:01: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 v5L91RW7034388; Wed, 21 Jun 2017 09:01:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L91RVh034387; Wed, 21 Jun 2017 09:01:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706210901.v5L91RVh034387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 21 Jun 2017 09:01:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444019 - head/science/isaac-cfd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 09:01:28 -0000 Author: amdmi3 Date: Wed Jun 21 09:01:27 2017 New Revision: 444019 URL: https://svnweb.freebsd.org/changeset/ports/444019 Log: - Add LICENSE - Switch to options helpers Modified: head/science/isaac-cfd/Makefile Modified: head/science/isaac-cfd/Makefile ============================================================================== --- head/science/isaac-cfd/Makefile Wed Jun 21 08:21:55 2017 (r444018) +++ head/science/isaac-cfd/Makefile Wed Jun 21 09:01:27 2017 (r444019) @@ -13,6 +13,11 @@ EXTRACT_ONLY= ${PORTNAME}src.4_2${EXTRACT_SUFX} ${PORT MAINTAINER= ports@FreeBSD.org COMMENT= Integrated Solution Algorithm for Arbitrary Configuration +LICENSE= ISAAC +LICENSE_NAME= ISAAC_LICENSE +LICENSE_FILE= ${WRKSRC}/license.txt +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + NO_WRKSUBDIR= yes MAKEFILE= makefile MAKE_ARGS= CPPFLAGS=-I. @@ -23,34 +28,30 @@ PORTDOCS= man.4_2.ps.gz PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES OPTIMIZED_FFLAGS -OPTIMIZED_FFLAGS_DESC= Use extra compiler (fortran) optimizations DOCS_DISTFILES= man.4_2.ps.gz EXAMPLES_DISTFILES= example_cases${EXTRACT_SUFX} -.include +OPTIMIZED_FFLAGS_DESC= Use extra compiler (fortran) optimizations +OPTIMIZED_FFLAGS_VARS= FFLAGS+="-O2 -ffast-math" -.if ${PORT_OPTIONS:MOPTIMIZED_FFLAGS} -FFLAGS+= -O2 -ffast-math -.endif - pre-configure: @${REINPLACE_CMD} -e 's+%%FC%%+${FC}+g ; s+%%FFLAGS%%+${FFLAGS}+;' \ - ${WRKSRC}/makefile - ${FIND} ${WRKSRC} -name "*.mk" -exec \ + ${WRKSRC}/makefile + @${FIND} ${WRKSRC} -name "*.mk" -exec \ ${REINPLACE_CMD} -e 's|SRC= $$(HOME)/ISAAC/src|SRC= ${WRKSRC}|; \ s|$$(FFLAGS)|${FFLAGS} -I.|' {} \; do-install: ${INSTALL_PROGRAM} ${WRKSRC}/isaac ${STAGEDIR}${PREFIX}/bin/isaac -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${CP} ${DISTDIR}/${DIST_SUBDIR}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${TAR} -xzf ${DISTDIR}/${DIST_SUBDIR}/example_cases${EXTRACT_SUFX} \ -C ${STAGEDIR}${EXAMPLESDIR} -.endif .include From owner-svn-ports-head@freebsd.org Wed Jun 21 09:24:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F15DDD8AA52; Wed, 21 Jun 2017 09:24:10 +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 B628C210B; Wed, 21 Jun 2017 09:24:10 +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 v5L9O9aB044176; Wed, 21 Jun 2017 09:24:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L9O92S044174; Wed, 21 Jun 2017 09:24:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706210924.v5L9O92S044174@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Jun 2017 09:24:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444020 - head/www/py-flask-restplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 09:24:11 -0000 Author: jbeich Date: Wed Jun 21 09:24:09 2017 New Revision: 444020 URL: https://svnweb.freebsd.org/changeset/ports/444020 Log: www/py-flask-restplus: update to 0.10.1 Changes: https://github.com/noirbizarre/flask-restplus/blob/0.10.1/CHANGELOG.rst#0101-2017-03-04 Modified: head/www/py-flask-restplus/Makefile (contents, props changed) head/www/py-flask-restplus/distinfo (contents, props changed) Modified: head/www/py-flask-restplus/Makefile ============================================================================== --- head/www/py-flask-restplus/Makefile Wed Jun 21 09:01:27 2017 (r444019) +++ head/www/py-flask-restplus/Makefile Wed Jun 21 09:24:09 2017 (r444020) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= flask-restplus -PORTVERSION= 0.10.0 +PORTVERSION= 0.10.1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-flask-restplus/distinfo ============================================================================== --- head/www/py-flask-restplus/distinfo Wed Jun 21 09:01:27 2017 (r444019) +++ head/www/py-flask-restplus/distinfo Wed Jun 21 09:24:09 2017 (r444020) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486973473 -SHA256 (noirbizarre-flask-restplus-0.10.0_GH0.tar.gz) = f7a78dae029f89591d3dbfdec491244ae5b88e11e000fd48e78353173315d043 -SIZE (noirbizarre-flask-restplus-0.10.0_GH0.tar.gz) = 258774 +TIMESTAMP = 1488666803 +SHA256 (noirbizarre-flask-restplus-0.10.1_GH0.tar.gz) = 57aff09a4fbdb685a9dbe16a0714cd671c12a9b180dc45736c0c203fefb0610d +SIZE (noirbizarre-flask-restplus-0.10.1_GH0.tar.gz) = 258734 From owner-svn-ports-head@freebsd.org Wed Jun 21 09:24:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 636D8D8AA84; Wed, 21 Jun 2017 09:24:32 +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 3DF2321EA; Wed, 21 Jun 2017 09:24:32 +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 v5L9OV4A044325; Wed, 21 Jun 2017 09:24:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L9OViw044322; Wed, 21 Jun 2017 09:24:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706210924.v5L9OViw044322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Jun 2017 09:24:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444021 - in head/www/py-flexget: . 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, 21 Jun 2017 09:24:32 -0000 Author: jbeich Date: Wed Jun 21 09:24:30 2017 New Revision: 444021 URL: https://svnweb.freebsd.org/changeset/ports/444021 Log: www/py-flexget: update to 2.10.63 Changes: https://github.com/Flexget/Flexget/compare/2.10.62...2.10.63 Modified: head/www/py-flexget/Makefile (contents, props changed) head/www/py-flexget/distinfo (contents, props changed) head/www/py-flexget/files/patch-requirements.txt (contents, props changed) Modified: head/www/py-flexget/Makefile ============================================================================== --- head/www/py-flexget/Makefile Wed Jun 21 09:24:09 2017 (r444020) +++ head/www/py-flexget/Makefile Wed Jun 21 09:24:30 2017 (r444021) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.10.62 +PORTVERSION= 2.10.63 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -40,7 +40,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0. ${PYTHON_PKGNAMEPREFIX}Flask-Cors>=2.1.2:www/py-flask-cors \ ${PYTHON_PKGNAMEPREFIX}Flask-Login>=0.4.0:www/py-flask-login \ ${PYTHON_PKGNAMEPREFIX}Flask-RESTful>=0.3.3:www/py-flask-restful \ - ${PYTHON_PKGNAMEPREFIX}flask-restplus08=0.8.6:www/py-flask-restplus08 \ + ${PYTHON_PKGNAMEPREFIX}flask-restplus>=0.10.1:www/py-flask-restplus \ ${PYTHON_PKGNAMEPREFIX}html5lib>=0.11:www/py-html5lib \ ${PYTHON_PKGNAMEPREFIX}requests>=2.8.0:www/py-requests TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest \ Modified: head/www/py-flexget/distinfo ============================================================================== --- head/www/py-flexget/distinfo Wed Jun 21 09:24:09 2017 (r444020) +++ head/www/py-flexget/distinfo Wed Jun 21 09:24:30 2017 (r444021) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497924840 -SHA256 (flexget-Flexget-2.10.62_GH0.tar.gz) = 3994c8f5eff60083d38b4f7dee94a54189c4ba09ce806c61b675357fd6a51909 -SIZE (flexget-Flexget-2.10.62_GH0.tar.gz) = 6711672 +TIMESTAMP = 1498011235 +SHA256 (flexget-Flexget-2.10.63_GH0.tar.gz) = 0e25ec8617b571e6f78dc62c694531bed2b31428813c09e223765e307564ac3a +SIZE (flexget-Flexget-2.10.63_GH0.tar.gz) = 6712804 Modified: head/www/py-flexget/files/patch-requirements.txt ============================================================================== --- head/www/py-flexget/files/patch-requirements.txt Wed Jun 21 09:24:09 2017 (r444020) +++ head/www/py-flexget/files/patch-requirements.txt Wed Jun 21 09:24:30 2017 (r444021) @@ -1,4 +1,4 @@ ---- requirements.txt.orig 2017-06-06 02:13:49 UTC +--- requirements.txt.orig 2017-06-21 02:13:55 UTC +++ requirements.txt @@ -7,18 +7,15 @@ html5lib>=0.11 PyRSS2Gen @@ -22,3 +22,12 @@ apscheduler>=3.2.0 terminaltables>=3.1.0 colorclass>=2.2.0 +@@ -26,7 +23,7 @@ colorclass>=2.2.0 + cherrypy>=3.7.0 + flask>=0.7 + flask-restful>=0.3.3 +-flask-restplus==0.10.1 ++flask-restplus>=0.10.1 + flask-compress>=1.2.1 + flask-login>=0.4.0 + flask-cors>=2.1.2 From owner-svn-ports-head@freebsd.org Wed Jun 21 09:28:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B933D8AD5A; Wed, 21 Jun 2017 09:28:32 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6376524C7; Wed, 21 Jun 2017 09:28:32 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5L9SVGB044576; Wed, 21 Jun 2017 09:28:31 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L9SVwK044574; Wed, 21 Jun 2017 09:28:31 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201706210928.v5L9SVwK044574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Wed, 21 Jun 2017 09:28:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444022 - head/sysutils/azure-agent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 09:28:32 -0000 Author: garga Date: Wed Jun 21 09:28:31 2017 New Revision: 444022 URL: https://svnweb.freebsd.org/changeset/ports/444022 Log: - Update sysutils/azure-agent to 2.2.13 - Pet portlint: - Use TABs instead of spaces in variable attributions - Remove 'The' from COMMENT - Reorder variable definitions Approved by: honzhan@microsoft.com (maintainer) Sponsored by: Rubicon Communications, LLC (Netgate) Differential Revision: https://reviews.freebsd.org/D11175 Modified: head/sysutils/azure-agent/Makefile head/sysutils/azure-agent/distinfo Modified: head/sysutils/azure-agent/Makefile ============================================================================== --- head/sysutils/azure-agent/Makefile Wed Jun 21 09:24:30 2017 (r444021) +++ head/sysutils/azure-agent/Makefile Wed Jun 21 09:28:31 2017 (r444022) @@ -1,12 +1,12 @@ # $FreeBSD$ PORTNAME= azure-agent -PORTVERSION= 2.2.8 +PORTVERSION= 2.2.13 +DISTVERSIONPREFIX= v CATEGORIES= sysutils -DISTVERSIONPREFIX= v MAINTAINER= honzhan@microsoft.com -COMMENT= The Microsoft Azure Linux Agent +COMMENT= Microsoft Azure Linux Agent LICENSE= APACHE20 @@ -23,9 +23,10 @@ USES= python:2 shebangfix SHEBANG_FILES= bin/waagent bin/waagent2.0 python_OLD_CMD= "/usr/bin/env python" -USE_GITHUB= yes -GH_ACCOUNT= Azure -GH_PROJECT= WALinuxAgent +USE_GITHUB= yes +GH_ACCOUNT= Azure +GH_PROJECT= WALinuxAgent +USE_PYTHON= autoplist distutils post-patch: ${REINPLACE_CMD} -e "s,/usr/sbin/waagent,${PREFIX}/sbin/waagent,g" \ @@ -43,7 +44,7 @@ post-patch: ${WRKSRC}/bin/waagent2.0 ${REINPLACE_CMD} -e "s,/usr/bin/python,${PREFIX}/bin/python,g" \ ${WRKSRC}/init/waagent.service - -USE_PYTHON= autoplist distutils + ${REINPLACE_CMD} -e "s,:/usr/local/bin,:/usr/local/bin:/usr/local/sbin,g" \ + ${WRKSRC}/init/freebsd/waagent .include Modified: head/sysutils/azure-agent/distinfo ============================================================================== --- head/sysutils/azure-agent/distinfo Wed Jun 21 09:24:30 2017 (r444021) +++ head/sysutils/azure-agent/distinfo Wed Jun 21 09:28:31 2017 (r444022) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495743874 -SHA256 (Azure-WALinuxAgent-v2.2.8_GH0.tar.gz) = 8d8863199ac7d6eca8cbaaa9f843ab3da853060bb2588141e85a6134d2e07b5f -SIZE (Azure-WALinuxAgent-v2.2.8_GH0.tar.gz) = 638305 +TIMESTAMP = 1497364262 +SHA256 (Azure-WALinuxAgent-v2.2.13_GH0.tar.gz) = 7a5739f5be91107afb6bfcf7acc93aff50638820c368ff0845a9899274291ee0 +SIZE (Azure-WALinuxAgent-v2.2.13_GH0.tar.gz) = 690906 From owner-svn-ports-head@freebsd.org Wed Jun 21 09:30:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFB39D8ADE2; Wed, 21 Jun 2017 09:30:17 +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 BAF1325ED; Wed, 21 Jun 2017 09:30:17 +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 v5L9UGsj044773; Wed, 21 Jun 2017 09:30:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5L9UG93044770; Wed, 21 Jun 2017 09:30:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706210930.v5L9UG93044770@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Jun 2017 09:30:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444023 - in head: . www www/py-flask-restplus08 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 09:30:18 -0000 Author: jbeich Date: Wed Jun 21 09:30:16 2017 New Revision: 444023 URL: https://svnweb.freebsd.org/changeset/ports/444023 Log: www/py-flask-restplus08: remove port after r444021 Deleted: head/www/py-flask-restplus08/ Modified: head/MOVED head/www/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Wed Jun 21 09:28:31 2017 (r444022) +++ head/MOVED Wed Jun 21 09:30:16 2017 (r444023) @@ -9439,3 +9439,4 @@ editors/calligra-l10n-sk||2017-06-12|Merged with edito editors/calligra-l10n-sv||2017-06-12|Merged with editors/calligra editors/calligra-l10n-tr||2017-06-12|Merged with editors/calligra editors/calligra-l10n||2017-06-12|Merged with editors/calligra +www/py-flask-restplus08||2017-06-21|Obsolete and not depended on anymore Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Jun 21 09:28:31 2017 (r444022) +++ head/www/Makefile Wed Jun 21 09:30:16 2017 (r444023) @@ -1645,7 +1645,6 @@ SUBDIR += py-flask-principal SUBDIR += py-flask-restful SUBDIR += py-flask-restplus - SUBDIR += py-flask-restplus08 SUBDIR += py-flask-socketio SUBDIR += py-flask-sockets SUBDIR += py-flask-uploads From owner-svn-ports-head@freebsd.org Wed Jun 21 10:48:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02E44D8C0BF; Wed, 21 Jun 2017 10:48:32 +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 C7AB26452D; Wed, 21 Jun 2017 10:48:31 +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 v5LAmUBX077399; Wed, 21 Jun 2017 10:48:30 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LAmUBC077396; Wed, 21 Jun 2017 10:48:30 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201706211048.v5LAmUBC077396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 21 Jun 2017 10:48:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444025 - head/devel/meson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 10:48:32 -0000 Author: kwm Date: Wed Jun 21 10:48:30 2017 New Revision: 444025 URL: https://svnweb.freebsd.org/changeset/ports/444025 Log: Update meson to 0.41.1. Modified: head/devel/meson/Makefile head/devel/meson/distinfo Modified: head/devel/meson/Makefile ============================================================================== --- head/devel/meson/Makefile Wed Jun 21 10:24:17 2017 (r444024) +++ head/devel/meson/Makefile Wed Jun 21 10:48:30 2017 (r444025) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= meson -PORTVERSION= 0.41.0 +PORTVERSION= 0.41.1 CATEGORIES= devel python MASTER_SITES= https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/ Modified: head/devel/meson/distinfo ============================================================================== --- head/devel/meson/distinfo Wed Jun 21 10:24:17 2017 (r444024) +++ head/devel/meson/distinfo Wed Jun 21 10:48:30 2017 (r444025) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497388223 -SHA256 (meson-0.41.0.tar.gz) = 99a27fca44c07cebd8b954bd219fd9c5ef89f3aeb84eed462f6b6f46db2a3359 -SIZE (meson-0.41.0.tar.gz) = 1012290 +TIMESTAMP = 1498041605 +SHA256 (meson-0.41.1.tar.gz) = 3d160b0514ff3d25f0a47975c6f70fd82b76c589876d10413efc5e01df43e0c2 +SIZE (meson-0.41.1.tar.gz) = 1012865 From owner-svn-ports-head@freebsd.org Wed Jun 21 10:53:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1ACE4D8C23A; Wed, 21 Jun 2017 10:53:40 +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 D98A9648E9; Wed, 21 Jun 2017 10:53:39 +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 v5LArdP5081375; Wed, 21 Jun 2017 10:53:39 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LArd1C081374; Wed, 21 Jun 2017 10:53:39 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201706211053.v5LArd1C081374@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Wed, 21 Jun 2017 10:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444026 - head/net-mgmt/zabbix2-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, 21 Jun 2017 10:53:40 -0000 Author: tz Date: Wed Jun 21 10:53:38 2017 New Revision: 444026 URL: https://svnweb.freebsd.org/changeset/ports/444026 Log: net-mgmt/zabbix2-server: rework LIB_DEPENDS and add USES= ssl In my last commit i added accidently LIB_DEPENDS 2 additional times. While here add USES= ssl and LIB_DEPENDS to port-mgmt/pkg to pass QA. Submitted by: Johannes Jost Meixner Modified: head/net-mgmt/zabbix2-server/Makefile Modified: head/net-mgmt/zabbix2-server/Makefile ============================================================================== --- head/net-mgmt/zabbix2-server/Makefile Wed Jun 21 10:48:30 2017 (r444025) +++ head/net-mgmt/zabbix2-server/Makefile Wed Jun 21 10:53:38 2017 (r444026) @@ -14,12 +14,9 @@ COMMENT= Enterprise-class open source distributed moni LICENSE= GPLv2 -LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp +LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp \ + libpkg.so:ports-mgmt/pkg -LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp - -LIB_DEPENDS= libnetsnmp.so:net-mgmt/net-snmp - CONFLICTS= zabbix[0-9][0-9]${PKGNAMESUFFIX}-[0-9]* zabbix[0-13-9]${PKGNAMESUFFIX}-[0-9]* ZABBIX_BUILD= ${PKGNAMESUFFIX:S/^-//} @@ -31,7 +28,7 @@ USE_RC_SUBR= zabbix_${ZABBIX_BUILD} USE_RC_SUBR= zabbix_${ZABBIX_BUILD}d .endif -USES= pkgconfig iconv +USES= pkgconfig iconv ssl USERS= zabbix GROUPS= zabbix From owner-svn-ports-head@freebsd.org Wed Jun 21 11:38:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76533D8CE70; Wed, 21 Jun 2017 11:38:27 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B660658AA; Wed, 21 Jun 2017 11:38:27 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id A091D1FD0E; Wed, 21 Jun 2017 11:38:26 +0000 (UTC) Date: Wed, 21 Jun 2017 11:38:26 +0000 From: Alexey Dokuchaev To: Nikolai Lifanov Cc: Joseph Mingrone , Adam Weinberger , Dan Langille , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r441282 - in head: . security security/acme.sh Message-ID: <20170621113826.GA50311@FreeBSD.org> References: <201705200227.v4K2RjjG055940@repo.freebsd.org> <989C2BB0-AC4E-4C76-AB15-9F616A6EF392@adamw.org> <86d1b3lwx0.fsf@phe.ftfl.ca> <20170520101021.GA39767@FreeBSD.org> <5bf4f792-efd0-4e27-6dba-c7a4d4dba353@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5bf4f792-efd0-4e27-6dba-c7a4d4dba353@FreeBSD.org> User-Agent: Mutt/1.8.2 (2017-04-18) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 11:38:27 -0000 On Tue, Jun 20, 2017 at 11:26:28AM -0400, Nikolai Lifanov wrote: > On 5/20/17 6:10 AM, Alexey Dokuchaev wrote: > > On Sat, May 20, 2017 at 06:06:35AM -0300, Joseph Mingrone wrote: > >> ... > >> The link below is a patch with proposed changes. > >> > >> http://ftfl.ca/misc/acme.sh-2.6.9.diff > >> > >> Changelog: > >> - Add OPTION_SINGLE for choosing one of cURL or Wget for HTTP(s) queries > >> - Update CURL/WGET descriptions [1] > > > > These are better; even /more/ better would to be teach it to use fetch(1) > > which is in the base. > > Sorry for necropost, but I investigated using fetch(1) and it's a no-go. > The fetch(1) utility and fetch(3) don't implement POST and can't send > custom headers, which is required for the use in acme.sh. Thanks for taking time to check this Nikolai, appreciated. ./danfe P.S. There's no such thing as necropost; I often reply 5 and 10 year old emails in order to preserve original context and things, unless I'm going to take further discussion in a very different direction. From owner-svn-ports-head@freebsd.org Wed Jun 21 11:39:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40861D8CECA; Wed, 21 Jun 2017 11:39:52 +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 0B51C659A1; Wed, 21 Jun 2017 11:39:51 +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 v5LBdpKx097637; Wed, 21 Jun 2017 11:39:51 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LBdp8p097635; Wed, 21 Jun 2017 11:39:51 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706211139.v5LBdp8p097635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Jun 2017 11:39:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444027 - in head/emulators: ppsspp rpcs3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 11:39:52 -0000 Author: jbeich Date: Wed Jun 21 11:39:50 2017 New Revision: 444027 URL: https://svnweb.freebsd.org/changeset/ports/444027 Log: emulators/ppsspp: drop QMake-specific version substitution QMake build is gone since v1.4 Modified: head/emulators/ppsspp/Makefile (contents, props changed) head/emulators/rpcs3/Makefile (contents, props changed) Modified: head/emulators/ppsspp/Makefile ============================================================================== --- head/emulators/ppsspp/Makefile Wed Jun 21 10:53:38 2017 (r444026) +++ head/emulators/ppsspp/Makefile Wed Jun 21 11:39:50 2017 (r444027) @@ -66,9 +66,7 @@ post-patch: ${WRKSRC}/assets/gamecontrollerdb.txt @${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,' \ ${WRKSRC}/UI/NativeApp.cpp - @${REINPLACE_CMD} \ - -e 's/"unknown"/"${GH_TAGNAME}"/' \ - -e 's/^\(VERSION =\).*/\1 ${GH_TAGNAME}/' \ + @${REINPLACE_CMD} -e 's/"unknown"/"${GH_TAGNAME}"/' \ ${WRKSRC}/git-version.cmake do-install: Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Wed Jun 21 10:53:38 2017 (r444026) +++ head/emulators/rpcs3/Makefile Wed Jun 21 11:39:50 2017 (r444027) @@ -46,9 +46,7 @@ PLIST_FILES= bin/${PORTNAME} \ post-patch: @${REINPLACE_CMD} -e 's/5\.8/5\.7/' ${WRKSRC}/${PORTNAME}/CMakeLists.txt - @${REINPLACE_CMD} \ - -e 's/"unknown"/"${GH_TAGNAME}"/' \ - -e 's/^\(VERSION =\).*/\1 ${GH_TAGNAME}/' \ + @${REINPLACE_CMD} -e 's/"unknown"/"${GH_TAGNAME}"/' \ ${WRKSRC}/${PORTNAME}/git-version.cmake .include From owner-svn-ports-head@freebsd.org Wed Jun 21 11:42:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4633BD8D036; Wed, 21 Jun 2017 11:42: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 1424265CBE; Wed, 21 Jun 2017 11:42: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 v5LBgCse099668; Wed, 21 Jun 2017 11:42:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LBgCoc099487; Wed, 21 Jun 2017 11:42:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706211142.v5LBgCoc099487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Jun 2017 11:42:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444028 - head/security/py-zxcvbn-python X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 11:42:13 -0000 Author: jbeich Date: Wed Jun 21 11:42:11 2017 New Revision: 444028 URL: https://svnweb.freebsd.org/changeset/ports/444028 Log: security/py-zxcvbn-python: update to 4.4.15 Changes: https://github.com/dwolfhub/zxcvbn-python/compare/v4.4.14...v4.4.15 Modified: head/security/py-zxcvbn-python/Makefile (contents, props changed) head/security/py-zxcvbn-python/distinfo (contents, props changed) Modified: head/security/py-zxcvbn-python/Makefile ============================================================================== --- head/security/py-zxcvbn-python/Makefile Wed Jun 21 11:39:50 2017 (r444027) +++ head/security/py-zxcvbn-python/Makefile Wed Jun 21 11:42:11 2017 (r444028) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= zxcvbn-python -PORTVERSION= 4.4.14 +PORTVERSION= 4.4.15 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/security/py-zxcvbn-python/distinfo ============================================================================== --- head/security/py-zxcvbn-python/distinfo Wed Jun 21 11:39:50 2017 (r444027) +++ head/security/py-zxcvbn-python/distinfo Wed Jun 21 11:42:11 2017 (r444028) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485654902 -SHA256 (zxcvbn-python-4.4.14.tar.gz) = fd3a46536035851571e3f4142b64d6e7bcf0ade3cd40d8fecae7a1243945e327 -SIZE (zxcvbn-python-4.4.14.tar.gz) = 405082 +TIMESTAMP = 1497995445 +SHA256 (zxcvbn-python-4.4.15.tar.gz) = ef982a382518d217d353a42093aa8bb8608a50bc2df559c08885bba166782cd0 +SIZE (zxcvbn-python-4.4.15.tar.gz) = 405176 From owner-svn-ports-head@freebsd.org Wed Jun 21 11:45:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28539D8D11A; Wed, 21 Jun 2017 11:45:45 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C07E165E9D; Wed, 21 Jun 2017 11:45:44 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LBjhYD001784; Wed, 21 Jun 2017 11:45:43 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LBjhAR001780; Wed, 21 Jun 2017 11:45:43 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201706211145.v5LBjhAR001780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Wed, 21 Jun 2017 11:45:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444029 - head/devel/aws-sdk-cpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 11:45:45 -0000 Author: arved Date: Wed Jun 21 11:45:43 2017 New Revision: 444029 URL: https://svnweb.freebsd.org/changeset/ports/444029 Log: Update to 1.0.158 Modified: head/devel/aws-sdk-cpp/Makefile head/devel/aws-sdk-cpp/distinfo head/devel/aws-sdk-cpp/pkg-plist Modified: head/devel/aws-sdk-cpp/Makefile ============================================================================== --- head/devel/aws-sdk-cpp/Makefile Wed Jun 21 11:42:11 2017 (r444028) +++ head/devel/aws-sdk-cpp/Makefile Wed Jun 21 11:45:43 2017 (r444029) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-cpp -PORTVERSION= 1.0.141 +PORTVERSION= 1.0.158 CATEGORIES= devel MAINTAINER= arved@FreeBSD.org Modified: head/devel/aws-sdk-cpp/distinfo ============================================================================== --- head/devel/aws-sdk-cpp/distinfo Wed Jun 21 11:42:11 2017 (r444028) +++ head/devel/aws-sdk-cpp/distinfo Wed Jun 21 11:45:43 2017 (r444029) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496934953 -SHA256 (aws-aws-sdk-cpp-1.0.141_GH0.tar.gz) = 039fde2cd44d9fd9e4ca04654f7c7137ead57a9a5cc397fe39e6eb820e059cd2 -SIZE (aws-aws-sdk-cpp-1.0.141_GH0.tar.gz) = 10602465 +TIMESTAMP = 1498040889 +SHA256 (aws-aws-sdk-cpp-1.0.158_GH0.tar.gz) = c9244cd8673170d5ef7c77a3c41289d317a3a4e0f93429fa72febdd4791e1cd0 +SIZE (aws-aws-sdk-cpp-1.0.158_GH0.tar.gz) = 11127097 Modified: head/devel/aws-sdk-cpp/pkg-plist ============================================================================== --- head/devel/aws-sdk-cpp/pkg-plist Wed Jun 21 11:42:11 2017 (r444028) +++ head/devel/aws-sdk-cpp/pkg-plist Wed Jun 21 11:45:43 2017 (r444029) @@ -282,6 +282,7 @@ include/aws/application-autoscaling/ApplicationAutoSca include/aws/application-autoscaling/ApplicationAutoScaling_EXPORTS.h include/aws/application-autoscaling/model/AdjustmentType.h include/aws/application-autoscaling/model/Alarm.h +include/aws/application-autoscaling/model/CustomizedMetricSpecification.h include/aws/application-autoscaling/model/DeleteScalingPolicyRequest.h include/aws/application-autoscaling/model/DeleteScalingPolicyResult.h include/aws/application-autoscaling/model/DeregisterScalableTargetRequest.h @@ -293,7 +294,11 @@ include/aws/application-autoscaling/model/DescribeScal include/aws/application-autoscaling/model/DescribeScalingPoliciesRequest.h include/aws/application-autoscaling/model/DescribeScalingPoliciesResult.h include/aws/application-autoscaling/model/MetricAggregationType.h +include/aws/application-autoscaling/model/MetricDimension.h +include/aws/application-autoscaling/model/MetricStatistic.h +include/aws/application-autoscaling/model/MetricType.h include/aws/application-autoscaling/model/PolicyType.h +include/aws/application-autoscaling/model/PredefinedMetricSpecification.h include/aws/application-autoscaling/model/PutScalingPolicyRequest.h include/aws/application-autoscaling/model/PutScalingPolicyResult.h include/aws/application-autoscaling/model/RegisterScalableTargetRequest.h @@ -306,6 +311,7 @@ include/aws/application-autoscaling/model/ScalingPolic include/aws/application-autoscaling/model/ServiceNamespace.h include/aws/application-autoscaling/model/StepAdjustment.h include/aws/application-autoscaling/model/StepScalingPolicyConfiguration.h +include/aws/application-autoscaling/model/TargetTrackingScalingPolicyConfiguration.h include/aws/appstream/AppStreamClient.h include/aws/appstream/AppStreamEndpoint.h include/aws/appstream/AppStreamErrorMarshaller.h @@ -371,6 +377,52 @@ include/aws/appstream/model/UpdateStackRequest.h include/aws/appstream/model/UpdateStackResult.h include/aws/appstream/model/VisibilityType.h include/aws/appstream/model/VpcConfig.h +include/aws/athena/AthenaClient.h +include/aws/athena/AthenaEndpoint.h +include/aws/athena/AthenaErrorMarshaller.h +include/aws/athena/AthenaErrors.h +include/aws/athena/AthenaRequest.h +include/aws/athena/Athena_EXPORTS.h +include/aws/athena/model/BatchGetNamedQueryRequest.h +include/aws/athena/model/BatchGetNamedQueryResult.h +include/aws/athena/model/BatchGetQueryExecutionRequest.h +include/aws/athena/model/BatchGetQueryExecutionResult.h +include/aws/athena/model/ColumnInfo.h +include/aws/athena/model/ColumnNullable.h +include/aws/athena/model/CreateNamedQueryRequest.h +include/aws/athena/model/CreateNamedQueryResult.h +include/aws/athena/model/Datum.h +include/aws/athena/model/DeleteNamedQueryRequest.h +include/aws/athena/model/DeleteNamedQueryResult.h +include/aws/athena/model/EncryptionConfiguration.h +include/aws/athena/model/EncryptionOption.h +include/aws/athena/model/GetNamedQueryRequest.h +include/aws/athena/model/GetNamedQueryResult.h +include/aws/athena/model/GetQueryExecutionRequest.h +include/aws/athena/model/GetQueryExecutionResult.h +include/aws/athena/model/GetQueryResultsRequest.h +include/aws/athena/model/GetQueryResultsResult.h +include/aws/athena/model/ListNamedQueriesRequest.h +include/aws/athena/model/ListNamedQueriesResult.h +include/aws/athena/model/ListQueryExecutionsRequest.h +include/aws/athena/model/ListQueryExecutionsResult.h +include/aws/athena/model/NamedQuery.h +include/aws/athena/model/QueryExecution.h +include/aws/athena/model/QueryExecutionContext.h +include/aws/athena/model/QueryExecutionState.h +include/aws/athena/model/QueryExecutionStatistics.h +include/aws/athena/model/QueryExecutionStatus.h +include/aws/athena/model/ResultConfiguration.h +include/aws/athena/model/ResultSet.h +include/aws/athena/model/ResultSetMetadata.h +include/aws/athena/model/Row.h +include/aws/athena/model/StartQueryExecutionRequest.h +include/aws/athena/model/StartQueryExecutionResult.h +include/aws/athena/model/StopQueryExecutionRequest.h +include/aws/athena/model/StopQueryExecutionResult.h +include/aws/athena/model/ThrottleReason.h +include/aws/athena/model/UnprocessedNamedQueryId.h +include/aws/athena/model/UnprocessedQueryExecutionId.h include/aws/autoscaling/AutoScalingClient.h include/aws/autoscaling/AutoScalingEndpoint.h include/aws/autoscaling/AutoScalingErrorMarshaller.h @@ -893,60 +945,71 @@ include/aws/cloudfront/model/CloudFrontOriginAccessIde include/aws/cloudfront/model/CloudFrontOriginAccessIdentitySummary.h include/aws/cloudfront/model/CookieNames.h include/aws/cloudfront/model/CookiePreference.h -include/aws/cloudfront/model/CreateCloudFrontOriginAccessIdentity2016_01_28Request.h -include/aws/cloudfront/model/CreateCloudFrontOriginAccessIdentity2016_01_28Result.h -include/aws/cloudfront/model/CreateDistribution2016_01_28Request.h -include/aws/cloudfront/model/CreateDistribution2016_01_28Result.h -include/aws/cloudfront/model/CreateInvalidation2016_01_28Request.h -include/aws/cloudfront/model/CreateInvalidation2016_01_28Result.h -include/aws/cloudfront/model/CreateStreamingDistribution2016_01_28Request.h -include/aws/cloudfront/model/CreateStreamingDistribution2016_01_28Result.h +include/aws/cloudfront/model/CreateCloudFrontOriginAccessIdentity2017_03_25Request.h +include/aws/cloudfront/model/CreateCloudFrontOriginAccessIdentity2017_03_25Result.h +include/aws/cloudfront/model/CreateDistribution2017_03_25Request.h +include/aws/cloudfront/model/CreateDistribution2017_03_25Result.h +include/aws/cloudfront/model/CreateDistributionWithTags2017_03_25Request.h +include/aws/cloudfront/model/CreateDistributionWithTags2017_03_25Result.h +include/aws/cloudfront/model/CreateInvalidation2017_03_25Request.h +include/aws/cloudfront/model/CreateInvalidation2017_03_25Result.h +include/aws/cloudfront/model/CreateStreamingDistribution2017_03_25Request.h +include/aws/cloudfront/model/CreateStreamingDistribution2017_03_25Result.h +include/aws/cloudfront/model/CreateStreamingDistributionWithTags2017_03_25Request.h +include/aws/cloudfront/model/CreateStreamingDistributionWithTags2017_03_25Result.h include/aws/cloudfront/model/CustomErrorResponse.h include/aws/cloudfront/model/CustomErrorResponses.h include/aws/cloudfront/model/CustomHeaders.h include/aws/cloudfront/model/CustomOriginConfig.h include/aws/cloudfront/model/DefaultCacheBehavior.h -include/aws/cloudfront/model/DeleteCloudFrontOriginAccessIdentity2016_01_28Request.h -include/aws/cloudfront/model/DeleteDistribution2016_01_28Request.h -include/aws/cloudfront/model/DeleteStreamingDistribution2016_01_28Request.h +include/aws/cloudfront/model/DeleteCloudFrontOriginAccessIdentity2017_03_25Request.h +include/aws/cloudfront/model/DeleteDistribution2017_03_25Request.h +include/aws/cloudfront/model/DeleteStreamingDistribution2017_03_25Request.h include/aws/cloudfront/model/Distribution.h include/aws/cloudfront/model/DistributionConfig.h +include/aws/cloudfront/model/DistributionConfigWithTags.h include/aws/cloudfront/model/DistributionList.h include/aws/cloudfront/model/DistributionSummary.h +include/aws/cloudfront/model/EventType.h include/aws/cloudfront/model/ForwardedValues.h include/aws/cloudfront/model/GeoRestriction.h include/aws/cloudfront/model/GeoRestrictionType.h -include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentity2016_01_28Request.h -include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentity2016_01_28Result.h -include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentityConfig2016_01_28Request.h -include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentityConfig2016_01_28Result.h -include/aws/cloudfront/model/GetDistribution2016_01_28Request.h -include/aws/cloudfront/model/GetDistribution2016_01_28Result.h -include/aws/cloudfront/model/GetDistributionConfig2016_01_28Request.h -include/aws/cloudfront/model/GetDistributionConfig2016_01_28Result.h -include/aws/cloudfront/model/GetInvalidation2016_01_28Request.h -include/aws/cloudfront/model/GetInvalidation2016_01_28Result.h -include/aws/cloudfront/model/GetStreamingDistribution2016_01_28Request.h -include/aws/cloudfront/model/GetStreamingDistribution2016_01_28Result.h -include/aws/cloudfront/model/GetStreamingDistributionConfig2016_01_28Request.h -include/aws/cloudfront/model/GetStreamingDistributionConfig2016_01_28Result.h +include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentity2017_03_25Request.h +include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentity2017_03_25Result.h +include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentityConfig2017_03_25Request.h +include/aws/cloudfront/model/GetCloudFrontOriginAccessIdentityConfig2017_03_25Result.h +include/aws/cloudfront/model/GetDistribution2017_03_25Request.h +include/aws/cloudfront/model/GetDistribution2017_03_25Result.h +include/aws/cloudfront/model/GetDistributionConfig2017_03_25Request.h +include/aws/cloudfront/model/GetDistributionConfig2017_03_25Result.h +include/aws/cloudfront/model/GetInvalidation2017_03_25Request.h +include/aws/cloudfront/model/GetInvalidation2017_03_25Result.h +include/aws/cloudfront/model/GetStreamingDistribution2017_03_25Request.h +include/aws/cloudfront/model/GetStreamingDistribution2017_03_25Result.h +include/aws/cloudfront/model/GetStreamingDistributionConfig2017_03_25Request.h +include/aws/cloudfront/model/GetStreamingDistributionConfig2017_03_25Result.h include/aws/cloudfront/model/Headers.h +include/aws/cloudfront/model/HttpVersion.h include/aws/cloudfront/model/Invalidation.h include/aws/cloudfront/model/InvalidationBatch.h include/aws/cloudfront/model/InvalidationList.h include/aws/cloudfront/model/InvalidationSummary.h include/aws/cloudfront/model/ItemSelection.h include/aws/cloudfront/model/KeyPairIds.h -include/aws/cloudfront/model/ListCloudFrontOriginAccessIdentities2016_01_28Request.h -include/aws/cloudfront/model/ListCloudFrontOriginAccessIdentities2016_01_28Result.h -include/aws/cloudfront/model/ListDistributions2016_01_28Request.h -include/aws/cloudfront/model/ListDistributions2016_01_28Result.h -include/aws/cloudfront/model/ListDistributionsByWebACLId2016_01_28Request.h -include/aws/cloudfront/model/ListDistributionsByWebACLId2016_01_28Result.h -include/aws/cloudfront/model/ListInvalidations2016_01_28Request.h -include/aws/cloudfront/model/ListInvalidations2016_01_28Result.h -include/aws/cloudfront/model/ListStreamingDistributions2016_01_28Request.h -include/aws/cloudfront/model/ListStreamingDistributions2016_01_28Result.h +include/aws/cloudfront/model/LambdaFunctionAssociation.h +include/aws/cloudfront/model/LambdaFunctionAssociations.h +include/aws/cloudfront/model/ListCloudFrontOriginAccessIdentities2017_03_25Request.h +include/aws/cloudfront/model/ListCloudFrontOriginAccessIdentities2017_03_25Result.h +include/aws/cloudfront/model/ListDistributions2017_03_25Request.h +include/aws/cloudfront/model/ListDistributions2017_03_25Result.h +include/aws/cloudfront/model/ListDistributionsByWebACLId2017_03_25Request.h +include/aws/cloudfront/model/ListDistributionsByWebACLId2017_03_25Result.h +include/aws/cloudfront/model/ListInvalidations2017_03_25Request.h +include/aws/cloudfront/model/ListInvalidations2017_03_25Result.h +include/aws/cloudfront/model/ListStreamingDistributions2017_03_25Request.h +include/aws/cloudfront/model/ListStreamingDistributions2017_03_25Result.h +include/aws/cloudfront/model/ListTagsForResource2017_03_25Request.h +include/aws/cloudfront/model/ListTagsForResource2017_03_25Result.h include/aws/cloudfront/model/LoggingConfig.h include/aws/cloudfront/model/Method.h include/aws/cloudfront/model/MinimumProtocolVersion.h @@ -957,6 +1020,7 @@ include/aws/cloudfront/model/OriginSslProtocols.h include/aws/cloudfront/model/Origins.h include/aws/cloudfront/model/Paths.h include/aws/cloudfront/model/PriceClass.h +include/aws/cloudfront/model/QueryStringCacheKeys.h include/aws/cloudfront/model/Restrictions.h include/aws/cloudfront/model/S3Origin.h include/aws/cloudfront/model/S3OriginConfig.h @@ -965,16 +1029,22 @@ include/aws/cloudfront/model/Signer.h include/aws/cloudfront/model/SslProtocol.h include/aws/cloudfront/model/StreamingDistribution.h include/aws/cloudfront/model/StreamingDistributionConfig.h +include/aws/cloudfront/model/StreamingDistributionConfigWithTags.h include/aws/cloudfront/model/StreamingDistributionList.h include/aws/cloudfront/model/StreamingDistributionSummary.h include/aws/cloudfront/model/StreamingLoggingConfig.h +include/aws/cloudfront/model/Tag.h +include/aws/cloudfront/model/TagKeys.h +include/aws/cloudfront/model/TagResource2017_03_25Request.h +include/aws/cloudfront/model/Tags.h include/aws/cloudfront/model/TrustedSigners.h -include/aws/cloudfront/model/UpdateCloudFrontOriginAccessIdentity2016_01_28Request.h -include/aws/cloudfront/model/UpdateCloudFrontOriginAccessIdentity2016_01_28Result.h -include/aws/cloudfront/model/UpdateDistribution2016_01_28Request.h -include/aws/cloudfront/model/UpdateDistribution2016_01_28Result.h -include/aws/cloudfront/model/UpdateStreamingDistribution2016_01_28Request.h -include/aws/cloudfront/model/UpdateStreamingDistribution2016_01_28Result.h +include/aws/cloudfront/model/UntagResource2017_03_25Request.h +include/aws/cloudfront/model/UpdateCloudFrontOriginAccessIdentity2017_03_25Request.h +include/aws/cloudfront/model/UpdateCloudFrontOriginAccessIdentity2017_03_25Result.h +include/aws/cloudfront/model/UpdateDistribution2017_03_25Request.h +include/aws/cloudfront/model/UpdateDistribution2017_03_25Result.h +include/aws/cloudfront/model/UpdateStreamingDistribution2017_03_25Request.h +include/aws/cloudfront/model/UpdateStreamingDistribution2017_03_25Result.h include/aws/cloudfront/model/ViewerCertificate.h include/aws/cloudfront/model/ViewerProtocolPolicy.h include/aws/cloudhsm/CloudHSMClient.h @@ -1530,6 +1600,46 @@ include/aws/codepipeline/model/ThirdPartyJobDetails.h include/aws/codepipeline/model/TransitionState.h include/aws/codepipeline/model/UpdatePipelineRequest.h include/aws/codepipeline/model/UpdatePipelineResult.h +include/aws/codestar/CodeStarClient.h +include/aws/codestar/CodeStarEndpoint.h +include/aws/codestar/CodeStarErrorMarshaller.h +include/aws/codestar/CodeStarErrors.h +include/aws/codestar/CodeStarRequest.h +include/aws/codestar/CodeStar_EXPORTS.h +include/aws/codestar/model/AssociateTeamMemberRequest.h +include/aws/codestar/model/AssociateTeamMemberResult.h +include/aws/codestar/model/CreateProjectRequest.h +include/aws/codestar/model/CreateProjectResult.h +include/aws/codestar/model/CreateUserProfileRequest.h +include/aws/codestar/model/CreateUserProfileResult.h +include/aws/codestar/model/DeleteProjectRequest.h +include/aws/codestar/model/DeleteProjectResult.h +include/aws/codestar/model/DeleteUserProfileRequest.h +include/aws/codestar/model/DeleteUserProfileResult.h +include/aws/codestar/model/DescribeProjectRequest.h +include/aws/codestar/model/DescribeProjectResult.h +include/aws/codestar/model/DescribeUserProfileRequest.h +include/aws/codestar/model/DescribeUserProfileResult.h +include/aws/codestar/model/DisassociateTeamMemberRequest.h +include/aws/codestar/model/DisassociateTeamMemberResult.h +include/aws/codestar/model/ListProjectsRequest.h +include/aws/codestar/model/ListProjectsResult.h +include/aws/codestar/model/ListResourcesRequest.h +include/aws/codestar/model/ListResourcesResult.h +include/aws/codestar/model/ListTeamMembersRequest.h +include/aws/codestar/model/ListTeamMembersResult.h +include/aws/codestar/model/ListUserProfilesRequest.h +include/aws/codestar/model/ListUserProfilesResult.h +include/aws/codestar/model/ProjectSummary.h +include/aws/codestar/model/Resource.h +include/aws/codestar/model/TeamMember.h +include/aws/codestar/model/UpdateProjectRequest.h +include/aws/codestar/model/UpdateProjectResult.h +include/aws/codestar/model/UpdateTeamMemberRequest.h +include/aws/codestar/model/UpdateTeamMemberResult.h +include/aws/codestar/model/UpdateUserProfileRequest.h +include/aws/codestar/model/UpdateUserProfileResult.h +include/aws/codestar/model/UserProfileSummary.h include/aws/cognito-identity/CognitoIdentityClient.h include/aws/cognito-identity/CognitoIdentityEndpoint.h include/aws/cognito-identity/CognitoIdentityErrorMarshaller.h @@ -2664,6 +2774,33 @@ include/aws/dynamodb/model/UpdateTableResult.h include/aws/dynamodb/model/UpdateTimeToLiveRequest.h include/aws/dynamodb/model/UpdateTimeToLiveResult.h include/aws/dynamodb/model/WriteRequest.h +include/aws/dynamodbstreams/DynamoDBStreamsClient.h +include/aws/dynamodbstreams/DynamoDBStreamsEndpoint.h +include/aws/dynamodbstreams/DynamoDBStreamsErrorMarshaller.h +include/aws/dynamodbstreams/DynamoDBStreamsErrors.h +include/aws/dynamodbstreams/DynamoDBStreamsRequest.h +include/aws/dynamodbstreams/DynamoDBStreams_EXPORTS.h +include/aws/dynamodbstreams/model/AttributeValue.h +include/aws/dynamodbstreams/model/DescribeStreamRequest.h +include/aws/dynamodbstreams/model/DescribeStreamResult.h +include/aws/dynamodbstreams/model/GetRecordsRequest.h +include/aws/dynamodbstreams/model/GetRecordsResult.h +include/aws/dynamodbstreams/model/GetShardIteratorRequest.h +include/aws/dynamodbstreams/model/GetShardIteratorResult.h +include/aws/dynamodbstreams/model/KeySchemaElement.h +include/aws/dynamodbstreams/model/KeyType.h +include/aws/dynamodbstreams/model/ListStreamsRequest.h +include/aws/dynamodbstreams/model/ListStreamsResult.h +include/aws/dynamodbstreams/model/OperationType.h +include/aws/dynamodbstreams/model/Record.h +include/aws/dynamodbstreams/model/SequenceNumberRange.h +include/aws/dynamodbstreams/model/Shard.h +include/aws/dynamodbstreams/model/ShardIteratorType.h +include/aws/dynamodbstreams/model/Stream.h +include/aws/dynamodbstreams/model/StreamDescription.h +include/aws/dynamodbstreams/model/StreamRecord.h +include/aws/dynamodbstreams/model/StreamStatus.h +include/aws/dynamodbstreams/model/StreamViewType.h include/aws/ec2/EC2Client.h include/aws/ec2/EC2Endpoint.h include/aws/ec2/EC2ErrorMarshaller.h @@ -2871,6 +3008,8 @@ include/aws/ec2/model/DescribeExportTasksRequest.h include/aws/ec2/model/DescribeExportTasksResponse.h include/aws/ec2/model/DescribeFlowLogsRequest.h include/aws/ec2/model/DescribeFlowLogsResponse.h +include/aws/ec2/model/DescribeFpgaImagesRequest.h +include/aws/ec2/model/DescribeFpgaImagesResponse.h include/aws/ec2/model/DescribeHostReservationOfferingsRequest.h include/aws/ec2/model/DescribeHostReservationOfferingsResponse.h include/aws/ec2/model/DescribeHostReservationsRequest.h @@ -3035,6 +3174,9 @@ include/aws/ec2/model/Filter.h include/aws/ec2/model/FleetType.h include/aws/ec2/model/FlowLog.h include/aws/ec2/model/FlowLogsResourceType.h +include/aws/ec2/model/FpgaImage.h +include/aws/ec2/model/FpgaImageState.h +include/aws/ec2/model/FpgaImageStateCode.h include/aws/ec2/model/GatewayType.h include/aws/ec2/model/GetConsoleOutputRequest.h include/aws/ec2/model/GetConsoleOutputResponse.h @@ -3169,6 +3311,7 @@ include/aws/ec2/model/OfferingClassType.h include/aws/ec2/model/OfferingTypeValues.h include/aws/ec2/model/OperationType.h include/aws/ec2/model/PaymentOption.h +include/aws/ec2/model/PciId.h include/aws/ec2/model/PeeringConnectionOptions.h include/aws/ec2/model/PeeringConnectionOptionsRequest.h include/aws/ec2/model/PermissionGroup.h @@ -4765,6 +4908,164 @@ include/aws/glacier/model/UploadMultipartPartResult.h include/aws/glacier/model/VaultAccessPolicy.h include/aws/glacier/model/VaultLockPolicy.h include/aws/glacier/model/VaultNotificationConfig.h +include/aws/greengrass/GreengrassClient.h +include/aws/greengrass/GreengrassEndpoint.h +include/aws/greengrass/GreengrassErrorMarshaller.h +include/aws/greengrass/GreengrassErrors.h +include/aws/greengrass/GreengrassRequest.h +include/aws/greengrass/Greengrass_EXPORTS.h +include/aws/greengrass/model/AssociateRoleToGroupRequest.h +include/aws/greengrass/model/AssociateRoleToGroupResult.h +include/aws/greengrass/model/AssociateServiceRoleToAccountRequest.h +include/aws/greengrass/model/AssociateServiceRoleToAccountResult.h +include/aws/greengrass/model/ConnectivityInfo.h +include/aws/greengrass/model/Core.h +include/aws/greengrass/model/CoreDefinitionVersion.h +include/aws/greengrass/model/CreateCoreDefinitionRequest.h +include/aws/greengrass/model/CreateCoreDefinitionResult.h +include/aws/greengrass/model/CreateCoreDefinitionVersionRequest.h +include/aws/greengrass/model/CreateCoreDefinitionVersionResult.h +include/aws/greengrass/model/CreateDeploymentRequest.h +include/aws/greengrass/model/CreateDeploymentResult.h +include/aws/greengrass/model/CreateDeviceDefinitionRequest.h +include/aws/greengrass/model/CreateDeviceDefinitionResult.h +include/aws/greengrass/model/CreateDeviceDefinitionVersionRequest.h +include/aws/greengrass/model/CreateDeviceDefinitionVersionResult.h +include/aws/greengrass/model/CreateFunctionDefinitionRequest.h +include/aws/greengrass/model/CreateFunctionDefinitionResult.h +include/aws/greengrass/model/CreateFunctionDefinitionVersionRequest.h +include/aws/greengrass/model/CreateFunctionDefinitionVersionResult.h +include/aws/greengrass/model/CreateGroupCertificateAuthorityRequest.h +include/aws/greengrass/model/CreateGroupCertificateAuthorityResult.h +include/aws/greengrass/model/CreateGroupRequest.h +include/aws/greengrass/model/CreateGroupResult.h +include/aws/greengrass/model/CreateGroupVersionRequest.h +include/aws/greengrass/model/CreateGroupVersionResult.h +include/aws/greengrass/model/CreateLoggerDefinitionRequest.h +include/aws/greengrass/model/CreateLoggerDefinitionResult.h +include/aws/greengrass/model/CreateLoggerDefinitionVersionRequest.h +include/aws/greengrass/model/CreateLoggerDefinitionVersionResult.h +include/aws/greengrass/model/CreateSubscriptionDefinitionRequest.h +include/aws/greengrass/model/CreateSubscriptionDefinitionResult.h +include/aws/greengrass/model/CreateSubscriptionDefinitionVersionRequest.h +include/aws/greengrass/model/CreateSubscriptionDefinitionVersionResult.h +include/aws/greengrass/model/DefinitionInformation.h +include/aws/greengrass/model/DeleteCoreDefinitionRequest.h +include/aws/greengrass/model/DeleteCoreDefinitionResult.h +include/aws/greengrass/model/DeleteDeviceDefinitionRequest.h +include/aws/greengrass/model/DeleteDeviceDefinitionResult.h +include/aws/greengrass/model/DeleteFunctionDefinitionRequest.h +include/aws/greengrass/model/DeleteFunctionDefinitionResult.h +include/aws/greengrass/model/DeleteGroupRequest.h +include/aws/greengrass/model/DeleteGroupResult.h +include/aws/greengrass/model/DeleteLoggerDefinitionRequest.h +include/aws/greengrass/model/DeleteLoggerDefinitionResult.h +include/aws/greengrass/model/DeleteSubscriptionDefinitionRequest.h +include/aws/greengrass/model/DeleteSubscriptionDefinitionResult.h +include/aws/greengrass/model/Deployment.h +include/aws/greengrass/model/DeploymentType.h +include/aws/greengrass/model/Device.h +include/aws/greengrass/model/DeviceDefinitionVersion.h +include/aws/greengrass/model/DisassociateRoleFromGroupRequest.h +include/aws/greengrass/model/DisassociateRoleFromGroupResult.h +include/aws/greengrass/model/DisassociateServiceRoleFromAccountRequest.h +include/aws/greengrass/model/DisassociateServiceRoleFromAccountResult.h +include/aws/greengrass/model/ErrorDetail.h +include/aws/greengrass/model/Function.h +include/aws/greengrass/model/FunctionConfiguration.h +include/aws/greengrass/model/FunctionConfigurationEnvironment.h +include/aws/greengrass/model/FunctionDefinitionVersion.h +include/aws/greengrass/model/GetAssociatedRoleRequest.h +include/aws/greengrass/model/GetAssociatedRoleResult.h +include/aws/greengrass/model/GetConnectivityInfoRequest.h +include/aws/greengrass/model/GetConnectivityInfoResult.h +include/aws/greengrass/model/GetCoreDefinitionRequest.h +include/aws/greengrass/model/GetCoreDefinitionResult.h +include/aws/greengrass/model/GetCoreDefinitionVersionRequest.h +include/aws/greengrass/model/GetCoreDefinitionVersionResult.h +include/aws/greengrass/model/GetDeploymentStatusRequest.h +include/aws/greengrass/model/GetDeploymentStatusResult.h +include/aws/greengrass/model/GetDeviceDefinitionRequest.h +include/aws/greengrass/model/GetDeviceDefinitionResult.h +include/aws/greengrass/model/GetDeviceDefinitionVersionRequest.h +include/aws/greengrass/model/GetDeviceDefinitionVersionResult.h +include/aws/greengrass/model/GetFunctionDefinitionRequest.h +include/aws/greengrass/model/GetFunctionDefinitionResult.h +include/aws/greengrass/model/GetFunctionDefinitionVersionRequest.h +include/aws/greengrass/model/GetFunctionDefinitionVersionResult.h +include/aws/greengrass/model/GetGroupCertificateAuthorityRequest.h +include/aws/greengrass/model/GetGroupCertificateAuthorityResult.h +include/aws/greengrass/model/GetGroupCertificateConfigurationRequest.h +include/aws/greengrass/model/GetGroupCertificateConfigurationResult.h +include/aws/greengrass/model/GetGroupRequest.h +include/aws/greengrass/model/GetGroupResult.h +include/aws/greengrass/model/GetGroupVersionRequest.h +include/aws/greengrass/model/GetGroupVersionResult.h +include/aws/greengrass/model/GetLoggerDefinitionRequest.h +include/aws/greengrass/model/GetLoggerDefinitionResult.h +include/aws/greengrass/model/GetLoggerDefinitionVersionRequest.h +include/aws/greengrass/model/GetLoggerDefinitionVersionResult.h +include/aws/greengrass/model/GetServiceRoleForAccountRequest.h +include/aws/greengrass/model/GetServiceRoleForAccountResult.h +include/aws/greengrass/model/GetSubscriptionDefinitionRequest.h +include/aws/greengrass/model/GetSubscriptionDefinitionResult.h +include/aws/greengrass/model/GetSubscriptionDefinitionVersionRequest.h +include/aws/greengrass/model/GetSubscriptionDefinitionVersionResult.h +include/aws/greengrass/model/GroupCertificateAuthorityProperties.h +include/aws/greengrass/model/GroupInformation.h +include/aws/greengrass/model/GroupVersion.h +include/aws/greengrass/model/ListCoreDefinitionVersionsRequest.h +include/aws/greengrass/model/ListCoreDefinitionVersionsResult.h +include/aws/greengrass/model/ListCoreDefinitionsRequest.h +include/aws/greengrass/model/ListCoreDefinitionsResult.h +include/aws/greengrass/model/ListDeploymentsRequest.h +include/aws/greengrass/model/ListDeploymentsResult.h +include/aws/greengrass/model/ListDeviceDefinitionVersionsRequest.h +include/aws/greengrass/model/ListDeviceDefinitionVersionsResult.h +include/aws/greengrass/model/ListDeviceDefinitionsRequest.h +include/aws/greengrass/model/ListDeviceDefinitionsResult.h +include/aws/greengrass/model/ListFunctionDefinitionVersionsRequest.h +include/aws/greengrass/model/ListFunctionDefinitionVersionsResult.h +include/aws/greengrass/model/ListFunctionDefinitionsRequest.h +include/aws/greengrass/model/ListFunctionDefinitionsResult.h +include/aws/greengrass/model/ListGroupCertificateAuthoritiesRequest.h +include/aws/greengrass/model/ListGroupCertificateAuthoritiesResult.h +include/aws/greengrass/model/ListGroupVersionsRequest.h +include/aws/greengrass/model/ListGroupVersionsResult.h +include/aws/greengrass/model/ListGroupsRequest.h +include/aws/greengrass/model/ListGroupsResult.h +include/aws/greengrass/model/ListLoggerDefinitionVersionsRequest.h +include/aws/greengrass/model/ListLoggerDefinitionVersionsResult.h +include/aws/greengrass/model/ListLoggerDefinitionsRequest.h +include/aws/greengrass/model/ListLoggerDefinitionsResult.h +include/aws/greengrass/model/ListSubscriptionDefinitionVersionsRequest.h +include/aws/greengrass/model/ListSubscriptionDefinitionVersionsResult.h +include/aws/greengrass/model/ListSubscriptionDefinitionsRequest.h +include/aws/greengrass/model/ListSubscriptionDefinitionsResult.h +include/aws/greengrass/model/Logger.h +include/aws/greengrass/model/LoggerComponent.h +include/aws/greengrass/model/LoggerDefinitionVersion.h +include/aws/greengrass/model/LoggerLevel.h +include/aws/greengrass/model/LoggerType.h +include/aws/greengrass/model/Subscription.h +include/aws/greengrass/model/SubscriptionDefinitionVersion.h +include/aws/greengrass/model/UpdateConnectivityInfoRequest.h +include/aws/greengrass/model/UpdateConnectivityInfoResult.h +include/aws/greengrass/model/UpdateCoreDefinitionRequest.h +include/aws/greengrass/model/UpdateCoreDefinitionResult.h +include/aws/greengrass/model/UpdateDeviceDefinitionRequest.h +include/aws/greengrass/model/UpdateDeviceDefinitionResult.h +include/aws/greengrass/model/UpdateFunctionDefinitionRequest.h +include/aws/greengrass/model/UpdateFunctionDefinitionResult.h +include/aws/greengrass/model/UpdateGroupCertificateConfigurationRequest.h +include/aws/greengrass/model/UpdateGroupCertificateConfigurationResult.h +include/aws/greengrass/model/UpdateGroupRequest.h +include/aws/greengrass/model/UpdateGroupResult.h +include/aws/greengrass/model/UpdateLoggerDefinitionRequest.h +include/aws/greengrass/model/UpdateLoggerDefinitionResult.h +include/aws/greengrass/model/UpdateSubscriptionDefinitionRequest.h +include/aws/greengrass/model/UpdateSubscriptionDefinitionResult.h +include/aws/greengrass/model/VersionInformation.h include/aws/health/HealthClient.h include/aws/health/HealthEndpoint.h include/aws/health/HealthErrorMarshaller.h @@ -5072,99 +5373,119 @@ include/aws/inspector/InspectorErrorMarshaller.h include/aws/inspector/InspectorErrors.h include/aws/inspector/InspectorRequest.h include/aws/inspector/Inspector_EXPORTS.h +include/aws/inspector/model/AccessDeniedErrorCode.h include/aws/inspector/model/AddAttributesToFindingsRequest.h include/aws/inspector/model/AddAttributesToFindingsResult.h -include/aws/inspector/model/Agent.h +include/aws/inspector/model/AgentAlreadyRunningAssessment.h +include/aws/inspector/model/AgentFilter.h +include/aws/inspector/model/AgentHealth.h +include/aws/inspector/model/AgentHealthCode.h include/aws/inspector/model/AgentPreview.h -include/aws/inspector/model/AgentsFilter.h -include/aws/inspector/model/Application.h -include/aws/inspector/model/ApplicationsFilter.h -include/aws/inspector/model/Assessment.h -include/aws/inspector/model/AssessmentsFilter.h -include/aws/inspector/model/AttachAssessmentAndRulesPackageRequest.h -include/aws/inspector/model/AttachAssessmentAndRulesPackageResult.h +include/aws/inspector/model/AssessmentRun.h +include/aws/inspector/model/AssessmentRunAgent.h +include/aws/inspector/model/AssessmentRunFilter.h +include/aws/inspector/model/AssessmentRunNotification.h +include/aws/inspector/model/AssessmentRunNotificationSnsStatusCode.h +include/aws/inspector/model/AssessmentRunState.h +include/aws/inspector/model/AssessmentRunStateChange.h +include/aws/inspector/model/AssessmentTarget.h +include/aws/inspector/model/AssessmentTargetFilter.h +include/aws/inspector/model/AssessmentTemplate.h +include/aws/inspector/model/AssessmentTemplateFilter.h +include/aws/inspector/model/AssetAttributes.h +include/aws/inspector/model/AssetType.h include/aws/inspector/model/Attribute.h -include/aws/inspector/model/CreateApplicationRequest.h -include/aws/inspector/model/CreateApplicationResult.h -include/aws/inspector/model/CreateAssessmentRequest.h -include/aws/inspector/model/CreateAssessmentResult.h +include/aws/inspector/model/CreateAssessmentTargetRequest.h +include/aws/inspector/model/CreateAssessmentTargetResult.h +include/aws/inspector/model/CreateAssessmentTemplateRequest.h +include/aws/inspector/model/CreateAssessmentTemplateResult.h include/aws/inspector/model/CreateResourceGroupRequest.h include/aws/inspector/model/CreateResourceGroupResult.h -include/aws/inspector/model/DeleteApplicationRequest.h -include/aws/inspector/model/DeleteApplicationResult.h -include/aws/inspector/model/DeleteAssessmentRequest.h -include/aws/inspector/model/DeleteAssessmentResult.h -include/aws/inspector/model/DeleteRunRequest.h -include/aws/inspector/model/DeleteRunResult.h -include/aws/inspector/model/DescribeApplicationRequest.h -include/aws/inspector/model/DescribeApplicationResult.h -include/aws/inspector/model/DescribeAssessmentRequest.h -include/aws/inspector/model/DescribeAssessmentResult.h +include/aws/inspector/model/DeleteAssessmentRunRequest.h +include/aws/inspector/model/DeleteAssessmentTargetRequest.h +include/aws/inspector/model/DeleteAssessmentTemplateRequest.h +include/aws/inspector/model/DescribeAssessmentRunsRequest.h +include/aws/inspector/model/DescribeAssessmentRunsResult.h +include/aws/inspector/model/DescribeAssessmentTargetsRequest.h +include/aws/inspector/model/DescribeAssessmentTargetsResult.h +include/aws/inspector/model/DescribeAssessmentTemplatesRequest.h +include/aws/inspector/model/DescribeAssessmentTemplatesResult.h include/aws/inspector/model/DescribeCrossAccountAccessRoleResult.h -include/aws/inspector/model/DescribeFindingRequest.h -include/aws/inspector/model/DescribeFindingResult.h -include/aws/inspector/model/DescribeResourceGroupRequest.h -include/aws/inspector/model/DescribeResourceGroupResult.h -include/aws/inspector/model/DescribeRulesPackageRequest.h -include/aws/inspector/model/DescribeRulesPackageResult.h -include/aws/inspector/model/DescribeRunRequest.h -include/aws/inspector/model/DescribeRunResult.h -include/aws/inspector/model/DetachAssessmentAndRulesPackageRequest.h -include/aws/inspector/model/DetachAssessmentAndRulesPackageResult.h +include/aws/inspector/model/DescribeFindingsRequest.h +include/aws/inspector/model/DescribeFindingsResult.h +include/aws/inspector/model/DescribeResourceGroupsRequest.h +include/aws/inspector/model/DescribeResourceGroupsResult.h +include/aws/inspector/model/DescribeRulesPackagesRequest.h +include/aws/inspector/model/DescribeRulesPackagesResult.h include/aws/inspector/model/DurationRange.h +include/aws/inspector/model/EventSubscription.h +include/aws/inspector/model/FailedItemDetails.h +include/aws/inspector/model/FailedItemErrorCode.h include/aws/inspector/model/Finding.h -include/aws/inspector/model/FindingsFilter.h -include/aws/inspector/model/GetAssessmentTelemetryRequest.h -include/aws/inspector/model/GetAssessmentTelemetryResult.h -include/aws/inspector/model/ListApplicationsRequest.h -include/aws/inspector/model/ListApplicationsResult.h -include/aws/inspector/model/ListAssessmentAgentsRequest.h -include/aws/inspector/model/ListAssessmentAgentsResult.h -include/aws/inspector/model/ListAssessmentsRequest.h -include/aws/inspector/model/ListAssessmentsResult.h -include/aws/inspector/model/ListAttachedAssessmentsRequest.h -include/aws/inspector/model/ListAttachedAssessmentsResult.h -include/aws/inspector/model/ListAttachedRulesPackagesRequest.h -include/aws/inspector/model/ListAttachedRulesPackagesResult.h +include/aws/inspector/model/FindingFilter.h +include/aws/inspector/model/GetAssessmentReportRequest.h +include/aws/inspector/model/GetAssessmentReportResult.h +include/aws/inspector/model/GetTelemetryMetadataRequest.h +include/aws/inspector/model/GetTelemetryMetadataResult.h +include/aws/inspector/model/InspectorEvent.h +include/aws/inspector/model/InspectorServiceAttributes.h +include/aws/inspector/model/InvalidCrossAccountRoleErrorCode.h +include/aws/inspector/model/InvalidInputErrorCode.h +include/aws/inspector/model/LimitExceededErrorCode.h +include/aws/inspector/model/ListAssessmentRunAgentsRequest.h +include/aws/inspector/model/ListAssessmentRunAgentsResult.h +include/aws/inspector/model/ListAssessmentRunsRequest.h +include/aws/inspector/model/ListAssessmentRunsResult.h +include/aws/inspector/model/ListAssessmentTargetsRequest.h +include/aws/inspector/model/ListAssessmentTargetsResult.h +include/aws/inspector/model/ListAssessmentTemplatesRequest.h +include/aws/inspector/model/ListAssessmentTemplatesResult.h +include/aws/inspector/model/ListEventSubscriptionsRequest.h +include/aws/inspector/model/ListEventSubscriptionsResult.h include/aws/inspector/model/ListFindingsRequest.h include/aws/inspector/model/ListFindingsResult.h include/aws/inspector/model/ListRulesPackagesRequest.h include/aws/inspector/model/ListRulesPackagesResult.h -include/aws/inspector/model/ListRunsRequest.h -include/aws/inspector/model/ListRunsResult.h include/aws/inspector/model/ListTagsForResourceRequest.h include/aws/inspector/model/ListTagsForResourceResult.h -include/aws/inspector/model/LocalizeTextRequest.h -include/aws/inspector/model/LocalizeTextResult.h -include/aws/inspector/model/LocalizedText.h -include/aws/inspector/model/LocalizedTextKey.h -include/aws/inspector/model/MessageTypeTelemetry.h -include/aws/inspector/model/Parameter.h -include/aws/inspector/model/PreviewAgentsForResourceGroupRequest.h -include/aws/inspector/model/PreviewAgentsForResourceGroupResult.h +include/aws/inspector/model/Locale.h +include/aws/inspector/model/NoSuchEntityErrorCode.h +include/aws/inspector/model/PreviewAgentsRequest.h +include/aws/inspector/model/PreviewAgentsResult.h include/aws/inspector/model/RegisterCrossAccountAccessRoleRequest.h -include/aws/inspector/model/RegisterCrossAccountAccessRoleResult.h include/aws/inspector/model/RemoveAttributesFromFindingsRequest.h include/aws/inspector/model/RemoveAttributesFromFindingsResult.h +include/aws/inspector/model/ReportFileFormat.h +include/aws/inspector/model/ReportStatus.h +include/aws/inspector/model/ReportType.h include/aws/inspector/model/ResourceGroup.h +include/aws/inspector/model/ResourceGroupTag.h include/aws/inspector/model/RulesPackage.h -include/aws/inspector/model/Run.h -include/aws/inspector/model/RunAssessmentRequest.h -include/aws/inspector/model/RunAssessmentResult.h -include/aws/inspector/model/RunsFilter.h include/aws/inspector/model/SetTagsForResourceRequest.h -include/aws/inspector/model/SetTagsForResourceResult.h -include/aws/inspector/model/StartDataCollectionRequest.h -include/aws/inspector/model/StartDataCollectionResult.h -include/aws/inspector/model/StopDataCollectionRequest.h -include/aws/inspector/model/StopDataCollectionResult.h +include/aws/inspector/model/Severity.h +include/aws/inspector/model/StartAssessmentRunRequest.h +include/aws/inspector/model/StartAssessmentRunResult.h +include/aws/inspector/model/StopAssessmentRunRequest.h +include/aws/inspector/model/SubscribeToEventRequest.h +include/aws/inspector/model/Subscription.h include/aws/inspector/model/Tag.h -include/aws/inspector/model/Telemetry.h +include/aws/inspector/model/TelemetryMetadata.h include/aws/inspector/model/TimestampRange.h -include/aws/inspector/model/UpdateApplicationRequest.h -include/aws/inspector/model/UpdateApplicationResult.h -include/aws/inspector/model/UpdateAssessmentRequest.h -include/aws/inspector/model/UpdateAssessmentResult.h +include/aws/inspector/model/UnsubscribeFromEventRequest.h +include/aws/inspector/model/UpdateAssessmentTargetRequest.h +include/aws/iot-data/IoTDataPlaneClient.h +include/aws/iot-data/IoTDataPlaneEndpoint.h +include/aws/iot-data/IoTDataPlaneErrorMarshaller.h +include/aws/iot-data/IoTDataPlaneErrors.h +include/aws/iot-data/IoTDataPlaneRequest.h +include/aws/iot-data/IoTDataPlane_EXPORTS.h +include/aws/iot-data/model/DeleteThingShadowRequest.h +include/aws/iot-data/model/DeleteThingShadowResult.h +include/aws/iot-data/model/GetThingShadowRequest.h +include/aws/iot-data/model/GetThingShadowResult.h +include/aws/iot-data/model/PublishRequest.h +include/aws/iot-data/model/UpdateThingShadowRequest.h +include/aws/iot-data/model/UpdateThingShadowResult.h include/aws/iot/IoTClient.h include/aws/iot/IoTEndpoint.h include/aws/iot/IoTErrorMarshaller.h @@ -5590,6 +5911,98 @@ include/aws/lambda/model/UpdateFunctionConfigurationRe include/aws/lambda/model/UpdateFunctionConfigurationResult.h include/aws/lambda/model/VpcConfig.h include/aws/lambda/model/VpcConfigResponse.h +include/aws/lex-models/LexModelBuildingServiceClient.h +include/aws/lex-models/LexModelBuildingServiceEndpoint.h +include/aws/lex-models/LexModelBuildingServiceErrorMarshaller.h +include/aws/lex-models/LexModelBuildingServiceErrors.h +include/aws/lex-models/LexModelBuildingServiceRequest.h +include/aws/lex-models/LexModelBuildingService_EXPORTS.h +include/aws/lex-models/model/BotAliasMetadata.h +include/aws/lex-models/model/BotChannelAssociation.h +include/aws/lex-models/model/BotMetadata.h +include/aws/lex-models/model/BuiltinIntentMetadata.h +include/aws/lex-models/model/BuiltinIntentSlot.h +include/aws/lex-models/model/BuiltinSlotTypeMetadata.h +include/aws/lex-models/model/ChannelType.h +include/aws/lex-models/model/CodeHook.h +include/aws/lex-models/model/ContentType.h +include/aws/lex-models/model/CreateBotVersionRequest.h +include/aws/lex-models/model/CreateBotVersionResult.h +include/aws/lex-models/model/CreateIntentVersionRequest.h +include/aws/lex-models/model/CreateIntentVersionResult.h +include/aws/lex-models/model/CreateSlotTypeVersionRequest.h +include/aws/lex-models/model/CreateSlotTypeVersionResult.h +include/aws/lex-models/model/DeleteBotAliasRequest.h +include/aws/lex-models/model/DeleteBotChannelAssociationRequest.h +include/aws/lex-models/model/DeleteBotRequest.h +include/aws/lex-models/model/DeleteBotVersionRequest.h +include/aws/lex-models/model/DeleteIntentRequest.h +include/aws/lex-models/model/DeleteIntentVersionRequest.h +include/aws/lex-models/model/DeleteSlotTypeRequest.h +include/aws/lex-models/model/DeleteSlotTypeVersionRequest.h +include/aws/lex-models/model/DeleteUtterancesRequest.h +include/aws/lex-models/model/EnumerationValue.h +include/aws/lex-models/model/FollowUpPrompt.h +include/aws/lex-models/model/FulfillmentActivity.h +include/aws/lex-models/model/FulfillmentActivityType.h +include/aws/lex-models/model/GetBotAliasRequest.h +include/aws/lex-models/model/GetBotAliasResult.h +include/aws/lex-models/model/GetBotAliasesRequest.h +include/aws/lex-models/model/GetBotAliasesResult.h +include/aws/lex-models/model/GetBotChannelAssociationRequest.h +include/aws/lex-models/model/GetBotChannelAssociationResult.h +include/aws/lex-models/model/GetBotChannelAssociationsRequest.h +include/aws/lex-models/model/GetBotChannelAssociationsResult.h +include/aws/lex-models/model/GetBotRequest.h +include/aws/lex-models/model/GetBotResult.h +include/aws/lex-models/model/GetBotVersionsRequest.h +include/aws/lex-models/model/GetBotVersionsResult.h +include/aws/lex-models/model/GetBotsRequest.h +include/aws/lex-models/model/GetBotsResult.h +include/aws/lex-models/model/GetBuiltinIntentRequest.h +include/aws/lex-models/model/GetBuiltinIntentResult.h +include/aws/lex-models/model/GetBuiltinIntentsRequest.h +include/aws/lex-models/model/GetBuiltinIntentsResult.h +include/aws/lex-models/model/GetBuiltinSlotTypesRequest.h +include/aws/lex-models/model/GetBuiltinSlotTypesResult.h +include/aws/lex-models/model/GetIntentRequest.h +include/aws/lex-models/model/GetIntentResult.h +include/aws/lex-models/model/GetIntentVersionsRequest.h +include/aws/lex-models/model/GetIntentVersionsResult.h +include/aws/lex-models/model/GetIntentsRequest.h +include/aws/lex-models/model/GetIntentsResult.h +include/aws/lex-models/model/GetSlotTypeRequest.h +include/aws/lex-models/model/GetSlotTypeResult.h +include/aws/lex-models/model/GetSlotTypeVersionsRequest.h +include/aws/lex-models/model/GetSlotTypeVersionsResult.h +include/aws/lex-models/model/GetSlotTypesRequest.h +include/aws/lex-models/model/GetSlotTypesResult.h +include/aws/lex-models/model/GetUtterancesViewRequest.h +include/aws/lex-models/model/GetUtterancesViewResult.h +include/aws/lex-models/model/Intent.h +include/aws/lex-models/model/IntentMetadata.h +include/aws/lex-models/model/Locale.h +include/aws/lex-models/model/Message.h +include/aws/lex-models/model/ProcessBehavior.h +include/aws/lex-models/model/Prompt.h +include/aws/lex-models/model/PutBotAliasRequest.h +include/aws/lex-models/model/PutBotAliasResult.h +include/aws/lex-models/model/PutBotRequest.h +include/aws/lex-models/model/PutBotResult.h +include/aws/lex-models/model/PutIntentRequest.h +include/aws/lex-models/model/PutIntentResult.h +include/aws/lex-models/model/PutSlotTypeRequest.h +include/aws/lex-models/model/PutSlotTypeResult.h +include/aws/lex-models/model/ReferenceType.h +include/aws/lex-models/model/ResourceReference.h +include/aws/lex-models/model/Slot.h +include/aws/lex-models/model/SlotConstraint.h +include/aws/lex-models/model/SlotTypeMetadata.h +include/aws/lex-models/model/Statement.h +include/aws/lex-models/model/Status.h +include/aws/lex-models/model/StatusType.h +include/aws/lex-models/model/UtteranceData.h +include/aws/lex-models/model/UtteranceList.h include/aws/lex/LexRuntimeServiceClient.h include/aws/lex/LexRuntimeServiceEndpoint.h include/aws/lex/LexRuntimeServiceErrorMarshaller.h @@ -6196,6 +6609,8 @@ include/aws/opsworks/model/Layer.h include/aws/opsworks/model/LayerAttributesKeys.h include/aws/opsworks/model/LayerType.h include/aws/opsworks/model/LifecycleEventConfiguration.h +include/aws/opsworks/model/ListTagsRequest.h +include/aws/opsworks/model/ListTagsResult.h include/aws/opsworks/model/LoadBasedAutoScalingConfiguration.h include/aws/opsworks/model/Permission.h include/aws/opsworks/model/RaidArray.h @@ -6230,10 +6645,12 @@ include/aws/opsworks/model/StartInstanceRequest.h include/aws/opsworks/model/StartStackRequest.h include/aws/opsworks/model/StopInstanceRequest.h include/aws/opsworks/model/StopStackRequest.h +include/aws/opsworks/model/TagResourceRequest.h include/aws/opsworks/model/TemporaryCredential.h include/aws/opsworks/model/TimeBasedAutoScalingConfiguration.h include/aws/opsworks/model/UnassignInstanceRequest.h include/aws/opsworks/model/UnassignVolumeRequest.h +include/aws/opsworks/model/UntagResourceRequest.h include/aws/opsworks/model/UpdateAppRequest.h include/aws/opsworks/model/UpdateElasticIpRequest.h include/aws/opsworks/model/UpdateInstanceRequest.h @@ -6401,6 +6818,173 @@ include/aws/organizations/model/UpdateOrganizationalUn include/aws/organizations/model/UpdateOrganizationalUnitResult.h include/aws/organizations/model/UpdatePolicyRequest.h include/aws/organizations/model/UpdatePolicyResult.h +include/aws/pinpoint/PinpointClient.h +include/aws/pinpoint/PinpointEndpoint.h +include/aws/pinpoint/PinpointErrorMarshaller.h +include/aws/pinpoint/PinpointErrors.h +include/aws/pinpoint/PinpointRequest.h +include/aws/pinpoint/Pinpoint_EXPORTS.h +include/aws/pinpoint/model/APNSChannelRequest.h +include/aws/pinpoint/model/APNSChannelResponse.h +include/aws/pinpoint/model/APNSMessage.h +include/aws/pinpoint/model/APNSSandboxChannelRequest.h +include/aws/pinpoint/model/APNSSandboxChannelResponse.h +include/aws/pinpoint/model/Action.h +include/aws/pinpoint/model/ActivitiesResponse.h +include/aws/pinpoint/model/ActivityResponse.h +include/aws/pinpoint/model/AddressConfiguration.h +include/aws/pinpoint/model/ApplicationSettingsResource.h +include/aws/pinpoint/model/AttributeDimension.h +include/aws/pinpoint/model/AttributeType.h +include/aws/pinpoint/model/CampaignEmailMessage.h +include/aws/pinpoint/model/CampaignLimits.h +include/aws/pinpoint/model/CampaignResponse.h +include/aws/pinpoint/model/CampaignSmsMessage.h +include/aws/pinpoint/model/CampaignState.h +include/aws/pinpoint/model/CampaignStatus.h +include/aws/pinpoint/model/CampaignsResponse.h +include/aws/pinpoint/model/ChannelType.h +include/aws/pinpoint/model/CreateCampaignRequest.h +include/aws/pinpoint/model/CreateCampaignResult.h +include/aws/pinpoint/model/CreateImportJobRequest.h +include/aws/pinpoint/model/CreateImportJobResult.h +include/aws/pinpoint/model/CreateSegmentRequest.h +include/aws/pinpoint/model/CreateSegmentResult.h +include/aws/pinpoint/model/DefaultMessage.h +include/aws/pinpoint/model/DefaultPushNotificationMessage.h +include/aws/pinpoint/model/DeleteApnsChannelRequest.h +include/aws/pinpoint/model/DeleteApnsChannelResult.h +include/aws/pinpoint/model/DeleteApnsSandboxChannelRequest.h +include/aws/pinpoint/model/DeleteApnsSandboxChannelResult.h +include/aws/pinpoint/model/DeleteCampaignRequest.h +include/aws/pinpoint/model/DeleteCampaignResult.h +include/aws/pinpoint/model/DeleteEmailChannelRequest.h +include/aws/pinpoint/model/DeleteEmailChannelResult.h +include/aws/pinpoint/model/DeleteEventStreamRequest.h +include/aws/pinpoint/model/DeleteEventStreamResult.h +include/aws/pinpoint/model/DeleteGcmChannelRequest.h +include/aws/pinpoint/model/DeleteGcmChannelResult.h +include/aws/pinpoint/model/DeleteSegmentRequest.h +include/aws/pinpoint/model/DeleteSegmentResult.h +include/aws/pinpoint/model/DeleteSmsChannelRequest.h +include/aws/pinpoint/model/DeleteSmsChannelResult.h +include/aws/pinpoint/model/DeliveryStatus.h +include/aws/pinpoint/model/DimensionType.h +include/aws/pinpoint/model/DirectMessageConfiguration.h +include/aws/pinpoint/model/Duration.h +include/aws/pinpoint/model/EmailChannelRequest.h +include/aws/pinpoint/model/EmailChannelResponse.h +include/aws/pinpoint/model/EndpointBatchItem.h +include/aws/pinpoint/model/EndpointBatchRequest.h +include/aws/pinpoint/model/EndpointDemographic.h +include/aws/pinpoint/model/EndpointLocation.h +include/aws/pinpoint/model/EndpointRequest.h +include/aws/pinpoint/model/EndpointResponse.h +include/aws/pinpoint/model/EndpointUser.h +include/aws/pinpoint/model/EventStream.h +include/aws/pinpoint/model/Format.h +include/aws/pinpoint/model/Frequency.h +include/aws/pinpoint/model/GCMChannelRequest.h +include/aws/pinpoint/model/GCMChannelResponse.h +include/aws/pinpoint/model/GCMMessage.h +include/aws/pinpoint/model/GetApnsChannelRequest.h +include/aws/pinpoint/model/GetApnsChannelResult.h +include/aws/pinpoint/model/GetApnsSandboxChannelRequest.h +include/aws/pinpoint/model/GetApnsSandboxChannelResult.h +include/aws/pinpoint/model/GetApplicationSettingsRequest.h +include/aws/pinpoint/model/GetApplicationSettingsResult.h +include/aws/pinpoint/model/GetCampaignActivitiesRequest.h +include/aws/pinpoint/model/GetCampaignActivitiesResult.h +include/aws/pinpoint/model/GetCampaignRequest.h +include/aws/pinpoint/model/GetCampaignResult.h +include/aws/pinpoint/model/GetCampaignVersionRequest.h +include/aws/pinpoint/model/GetCampaignVersionResult.h +include/aws/pinpoint/model/GetCampaignVersionsRequest.h +include/aws/pinpoint/model/GetCampaignVersionsResult.h +include/aws/pinpoint/model/GetCampaignsRequest.h +include/aws/pinpoint/model/GetCampaignsResult.h +include/aws/pinpoint/model/GetEmailChannelRequest.h +include/aws/pinpoint/model/GetEmailChannelResult.h +include/aws/pinpoint/model/GetEndpointRequest.h +include/aws/pinpoint/model/GetEndpointResult.h +include/aws/pinpoint/model/GetEventStreamRequest.h +include/aws/pinpoint/model/GetEventStreamResult.h +include/aws/pinpoint/model/GetGcmChannelRequest.h +include/aws/pinpoint/model/GetGcmChannelResult.h +include/aws/pinpoint/model/GetImportJobRequest.h +include/aws/pinpoint/model/GetImportJobResult.h +include/aws/pinpoint/model/GetImportJobsRequest.h +include/aws/pinpoint/model/GetImportJobsResult.h +include/aws/pinpoint/model/GetSegmentImportJobsRequest.h +include/aws/pinpoint/model/GetSegmentImportJobsResult.h +include/aws/pinpoint/model/GetSegmentRequest.h +include/aws/pinpoint/model/GetSegmentResult.h +include/aws/pinpoint/model/GetSegmentVersionRequest.h +include/aws/pinpoint/model/GetSegmentVersionResult.h +include/aws/pinpoint/model/GetSegmentVersionsRequest.h +include/aws/pinpoint/model/GetSegmentVersionsResult.h +include/aws/pinpoint/model/GetSegmentsRequest.h +include/aws/pinpoint/model/GetSegmentsResult.h +include/aws/pinpoint/model/GetSmsChannelRequest.h +include/aws/pinpoint/model/GetSmsChannelResult.h +include/aws/pinpoint/model/ImportJobRequest.h +include/aws/pinpoint/model/ImportJobResource.h +include/aws/pinpoint/model/ImportJobResponse.h +include/aws/pinpoint/model/ImportJobsResponse.h +include/aws/pinpoint/model/JobStatus.h +include/aws/pinpoint/model/Message.h +include/aws/pinpoint/model/MessageBody.h +include/aws/pinpoint/model/MessageConfiguration.h +include/aws/pinpoint/model/MessageRequest.h +include/aws/pinpoint/model/MessageResponse.h +include/aws/pinpoint/model/MessageResult.h +include/aws/pinpoint/model/MessageType.h +include/aws/pinpoint/model/PutEventStreamRequest.h +include/aws/pinpoint/model/PutEventStreamResult.h +include/aws/pinpoint/model/QuietTime.h +include/aws/pinpoint/model/RecencyDimension.h +include/aws/pinpoint/model/RecencyType.h +include/aws/pinpoint/model/SMSChannelRequest.h +include/aws/pinpoint/model/SMSChannelResponse.h +include/aws/pinpoint/model/SMSMessage.h +include/aws/pinpoint/model/Schedule.h +include/aws/pinpoint/model/SegmentBehaviors.h +include/aws/pinpoint/model/SegmentDemographics.h +include/aws/pinpoint/model/SegmentDimensions.h +include/aws/pinpoint/model/SegmentImportResource.h +include/aws/pinpoint/model/SegmentLocation.h +include/aws/pinpoint/model/SegmentResponse.h +include/aws/pinpoint/model/SegmentType.h +include/aws/pinpoint/model/SegmentsResponse.h +include/aws/pinpoint/model/SendMessagesRequest.h +include/aws/pinpoint/model/SendMessagesResult.h +include/aws/pinpoint/model/SetDimension.h +include/aws/pinpoint/model/TreatmentResource.h +include/aws/pinpoint/model/UpdateApnsChannelRequest.h +include/aws/pinpoint/model/UpdateApnsChannelResult.h +include/aws/pinpoint/model/UpdateApnsSandboxChannelRequest.h +include/aws/pinpoint/model/UpdateApnsSandboxChannelResult.h +include/aws/pinpoint/model/UpdateApplicationSettingsRequest.h +include/aws/pinpoint/model/UpdateApplicationSettingsResult.h +include/aws/pinpoint/model/UpdateCampaignRequest.h +include/aws/pinpoint/model/UpdateCampaignResult.h +include/aws/pinpoint/model/UpdateEmailChannelRequest.h +include/aws/pinpoint/model/UpdateEmailChannelResult.h +include/aws/pinpoint/model/UpdateEndpointRequest.h +include/aws/pinpoint/model/UpdateEndpointResult.h +include/aws/pinpoint/model/UpdateEndpointsBatchRequest.h +include/aws/pinpoint/model/UpdateEndpointsBatchResult.h +include/aws/pinpoint/model/UpdateGcmChannelRequest.h +include/aws/pinpoint/model/UpdateGcmChannelResult.h +include/aws/pinpoint/model/UpdateSegmentRequest.h +include/aws/pinpoint/model/UpdateSegmentResult.h +include/aws/pinpoint/model/UpdateSmsChannelRequest.h +include/aws/pinpoint/model/UpdateSmsChannelResult.h +include/aws/pinpoint/model/WriteApplicationSettingsRequest.h +include/aws/pinpoint/model/WriteCampaignRequest.h +include/aws/pinpoint/model/WriteEventStream.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Wed Jun 21 12:20:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5B61D8E33A; Wed, 21 Jun 2017 12:20:14 +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 75FAD66ED9; Wed, 21 Jun 2017 12:20:14 +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 v5LCKDuq014245; Wed, 21 Jun 2017 12:20:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LCKDWx014243; Wed, 21 Jun 2017 12:20:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706211220.v5LCKDWx014243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 21 Jun 2017 12:20:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444030 - head/emulators/rpcs3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 12:20:14 -0000 Author: jbeich Date: Wed Jun 21 12:20:13 2017 New Revision: 444030 URL: https://svnweb.freebsd.org/changeset/ports/444030 Log: emulators/rpcs3: sync git-version.h fix if .git is present (unused here) Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Wed Jun 21 11:45:43 2017 (r444029) +++ head/emulators/rpcs3/Makefile Wed Jun 21 12:20:13 2017 (r444030) @@ -3,7 +3,7 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v DISTVERSION= 0.0.2-313 -DISTVERSIONSUFFIX= -g7c99639f # tracking #2813 +DISTVERSIONSUFFIX= -g3332c17a # tracking #2813 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Wed Jun 21 11:45:43 2017 (r444029) +++ head/emulators/rpcs3/distinfo Wed Jun 21 12:20:13 2017 (r444030) @@ -1,6 +1,6 @@ TIMESTAMP = 1497970210 -SHA256 (RPCS3-rpcs3-v0.0.2-313-g7c99639f_GH0.tar.gz) = f2be2e83eb78ecc49dfe32ae7a633f6ac86985aaecfbf198749363e76283c0e4 -SIZE (RPCS3-rpcs3-v0.0.2-313-g7c99639f_GH0.tar.gz) = 11247042 +SHA256 (RPCS3-rpcs3-v0.0.2-313-g3332c17a_GH0.tar.gz) = 59d5346aa8ee79bcc83f4841c64506509967022869e9c4826f038c44e7cf8840 +SIZE (RPCS3-rpcs3-v0.0.2-313-g3332c17a_GH0.tar.gz) = 11246931 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-head@freebsd.org Wed Jun 21 12:44:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24A73D8E8D7; Wed, 21 Jun 2017 12:44:41 +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 DE7376792E; Wed, 21 Jun 2017 12:44:40 +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 v5LCievB026250; Wed, 21 Jun 2017 12:44:40 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LCidtK026248; Wed, 21 Jun 2017 12:44:39 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706211244.v5LCidtK026248@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, 21 Jun 2017 12:44:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444031 - in head/textproc: py-numpydoc py3-numpydoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 12:44:41 -0000 Author: cpm Date: Wed Jun 21 12:44:39 2017 New Revision: 444031 URL: https://svnweb.freebsd.org/changeset/ports/444031 Log: - Update to 0.7.0 - Make do-test run verbose - Silence @cd call Modified: head/textproc/py-numpydoc/Makefile head/textproc/py-numpydoc/distinfo head/textproc/py3-numpydoc/Makefile Modified: head/textproc/py-numpydoc/Makefile ============================================================================== --- head/textproc/py-numpydoc/Makefile Wed Jun 21 12:20:13 2017 (r444030) +++ head/textproc/py-numpydoc/Makefile Wed Jun 21 12:44:39 2017 (r444031) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= numpydoc -PORTVERSION= 0.6.0 +PORTVERSION= 0.7.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,8 @@ COMMENT= Sphinx extension to support docstrings in Num LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.0.1:textproc/py-sphinx +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.3:devel/py-Jinja2 \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=1.2.3:textproc/py-sphinx TEST_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose USES?= python @@ -22,6 +23,6 @@ USE_PYTHON= autoplist distutils NO_ARCH= yes do-test: - cd ${WRKSRC} && ${PYTHON_CMD} -m nose + @cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v .include Modified: head/textproc/py-numpydoc/distinfo ============================================================================== --- head/textproc/py-numpydoc/distinfo Wed Jun 21 12:20:13 2017 (r444030) +++ head/textproc/py-numpydoc/distinfo Wed Jun 21 12:44:39 2017 (r444031) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463447147 -SHA256 (numpydoc-0.6.0.tar.gz) = 1ec573e91f6d868a9940d90a6599f3e834a2d6c064030fbe078d922ee21dcfa1 -SIZE (numpydoc-0.6.0.tar.gz) = 32464 +TIMESTAMP = 1498046208 +SHA256 (numpydoc-0.7.0.tar.gz) = 2dc7b2c4e3914745e38e370946fa4c109817331e6d450806285c08bce5cd575a +SIZE (numpydoc-0.7.0.tar.gz) = 19047 Modified: head/textproc/py3-numpydoc/Makefile ============================================================================== --- head/textproc/py3-numpydoc/Makefile Wed Jun 21 12:20:13 2017 (r444030) +++ head/textproc/py3-numpydoc/Makefile Wed Jun 21 12:44:39 2017 (r444031) @@ -3,7 +3,8 @@ MASTERDIR= ${.CURDIR}/../py-numpydoc -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.0.1:textproc/py3-sphinx +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.3:devel/py3-Jinja2 \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=1.2.3:textproc/py3-sphinx TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py3-nose USES= python:3.4+ From owner-svn-ports-head@freebsd.org Wed Jun 21 13:49:38 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67D01D90151; Wed, 21 Jun 2017 13:49:38 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 470416AA31; Wed, 21 Jun 2017 13:49:38 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 8C684157A; Wed, 21 Jun 2017 13:49:37 +0000 (UTC) Date: Wed, 21 Jun 2017 13:49:37 +0000 From: Alexey Dokuchaev To: "Carlos J. Puga Medina" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r443998 - in head/www/chromium: . files Message-ID: <20170621134937.GA58267@FreeBSD.org> References: <201706202020.v5KKKjVK022857@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201706202020.v5KKKjVK022857@repo.freebsd.org> User-Agent: Mutt/1.8.2 (2017-04-18) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 13:49:38 -0000 On Tue, Jun 20, 2017 at 08:20:45PM +0000, Carlos J. Puga Medina wrote: > New Revision: 443998 > URL: https://svnweb.freebsd.org/changeset/ports/443998 > > Log: > www/chromium: update to 59.0.3071.104 > > [...] > Modified: head/www/chromium/files/patch-base_files_file__util.h > ============================================================================== > --- head/www/chromium/files/patch-base_files_file__util.h Tue Jun 20 20:17:15 2017 (r443997) > +++ head/www/chromium/files/patch-base_files_file__util.h Tue Jun 20 20:20:44 2017 (r443998) > @@ -1,6 +1,6 @@ > ---- base/files/file_util.h.orig 2017-04-19 19:06:28 UTC > +--- base/files/file_util.h.orig 2017-06-05 19:03:00 UTC > +++ base/files/file_util.h > -@@ -406,7 +406,7 @@ BASE_EXPORT bool VerifyPathControlledByA > +@@ -406,7 +406,7 @@ BASE_EXPORT bool VerifyPathControlledByAdmin(const bas > // the directory |path|, in the number of FilePath::CharType, or -1 on failure. > BASE_EXPORT int GetMaximumPathComponentLength(const base::FilePath& path); > > > Modified: head/www/chromium/files/patch-base_native__library__posix.cc > ============================================================================== > --- head/www/chromium/files/patch-base_native__library__posix.cc Tue Jun 20 20:17:15 2017 (r443997) > +++ head/www/chromium/files/patch-base_native__library__posix.cc Tue Jun 20 20:20:44 2017 (r443998) > @@ -1,6 +1,6 @@ > ---- base/native_library_posix.cc.orig 2017-04-19 19:06:28 UTC > +--- base/native_library_posix.cc.orig 2017-06-05 19:03:00 UTC > +++ base/native_library_posix.cc > -@@ -35,7 +35,7 @@ NativeLibrary LoadNativeLibraryWithOptio > +@@ -35,7 +35,7 @@ NativeLibrary LoadNativeLibraryWithOptions(const FileP > // further investigation, as it might vary across versions. Crash here to > // warn developers that they're trying to rely on uncertain behavior. > CHECK(!options.prefer_own_symbols); > > Modified: head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc > ============================================================================== > --- head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc Tue Jun 20 20:17:15 2017 (r443997) > +++ head/www/chromium/files/patch-base_posix_unix__domain__socket__linux.cc Tue Jun 20 20:20:44 2017 (r443998) > @@ -1,4 +1,4 @@ > ---- base/posix/unix_domain_socket_linux.cc.orig 2017-04-19 19:06:28 UTC > +--- base/posix/unix_domain_socket_linux.cc.orig 2017-06-05 19:03:00 UTC > +++ base/posix/unix_domain_socket_linux.cc > @@ -23,6 +23,15 @@ > > @@ -16,7 +16,7 @@ > const size_t UnixDomainSocket::kMaxFileDescriptors = 16; > > #if !defined(OS_NACL_NONSFI) > -@@ -40,8 +49,14 @@ static bool CreateSocketPair(ScopedFD* o > +@@ -37,8 +46,14 @@ bool CreateSocketPair(ScopedFD* one, ScopedFD* two) { > > // static > bool UnixDomainSocket::EnableReceiveProcessId(int fd) { > @@ -31,7 +31,7 @@ > } > #endif // !defined(OS_NACL_NONSFI) > > -@@ -147,7 +162,11 @@ ssize_t UnixDomainSocket::RecvMsgWithFla > +@@ -144,7 +159,11 @@ ssize_t UnixDomainSocket::RecvMsgWithFlags(int fd, > // The PNaCl toolchain for Non-SFI binary build does not support > // SCM_CREDENTIALS. > if (cmsg->cmsg_level == SOL_SOCKET && > > Modified: head/www/chromium/files/patch-base_process_launch.cc > ============================================================================== > --- head/www/chromium/files/patch-base_process_launch.cc Tue Jun 20 20:17:15 2017 (r443997) > +++ head/www/chromium/files/patch-base_process_launch.cc Tue Jun 20 20:20:44 2017 (r443998) > @@ -1,6 +1,6 @@ > ---- base/process/launch.cc.orig 2017-04-19 19:06:28 UTC > +--- base/process/launch.cc.orig 2017-06-05 19:03:00 UTC > +++ base/process/launch.cc > -@@ -15,7 +15,7 @@ LaunchOptions::~LaunchOptions() = defaul > +@@ -15,7 +15,7 @@ LaunchOptions::~LaunchOptions() = default; > > LaunchOptions LaunchOptionsForTest() { > LaunchOptions options; > > Modified: head/www/chromium/files/patch-base_process_memory.cc > ============================================================================== > --- head/www/chromium/files/patch-base_process_memory.cc Tue Jun 20 20:17:15 2017 (r443997) > +++ head/www/chromium/files/patch-base_process_memory.cc Tue Jun 20 20:20:44 2017 (r443998) > @@ -1,6 +1,6 @@ > ---- base/process/memory.cc.orig 2017-04-19 19:06:28 UTC > +--- base/process/memory.cc.orig 2017-06-05 19:03:00 UTC > +++ base/process/memory.cc > -@@ -31,7 +31,7 @@ void TerminateBecauseOutOfMemory(size_t > +@@ -31,7 +31,7 @@ void TerminateBecauseOutOfMemory(size_t size) { > #endif > > // Defined in memory_mac.mm for Mac. > > Modified: head/www/chromium/files/patch-base_process_memory.h > ============================================================================== > --- head/www/chromium/files/patch-base_process_memory.h Tue Jun 20 20:17:15 2017 (r443997) > +++ head/www/chromium/files/patch-base_process_memory.h Tue Jun 20 20:20:44 2017 (r443998) > @@ -1,6 +1,6 @@ > ---- base/process/memory.h.orig 2017-04-19 19:06:28 UTC > +--- base/process/memory.h.orig 2017-06-05 19:03:00 UTC > +++ base/process/memory.h > -@@ -32,7 +32,7 @@ BASE_EXPORT void EnableTerminationOnOutO > +@@ -32,7 +32,7 @@ BASE_EXPORT void EnableTerminationOnOutOfMemory(); > // Crash reporting classifies such crashes as OOM. > BASE_EXPORT void TerminateBecauseOutOfMemory(size_t size); > > ... Every Chromium update comes with gazillion of patches (it's funny that Google cannot figure out how to write portable software that does not require shitload of patches after all these years). Many of these patches barely change between updates, modulo the context. Could you please try to exclude those from commit batch to reduce the churn on the repository? Thanks, ./danfe From owner-svn-ports-head@freebsd.org Wed Jun 21 15:09:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 292CAD919F9; Wed, 21 Jun 2017 15:09:46 +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 008607031D; Wed, 21 Jun 2017 15:09:45 +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 v5LF9j6f083006; Wed, 21 Jun 2017 15:09:45 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LF9iOi083001; Wed, 21 Jun 2017 15:09:44 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201706211509.v5LF9iOi083001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 21 Jun 2017 15:09:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444032 - in head/misc: . unclutter-xfixes unclutter-xfixes/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, 21 Jun 2017 15:09:46 -0000 Author: matthew Date: Wed Jun 21 15:09:44 2017 New Revision: 444032 URL: https://svnweb.freebsd.org/changeset/ports/444032 Log: This is a rewrite of the popular tool unclutter, but using the x11-xfixes extension. This means that this rewrite doesn't use fake windows or pointer grabbing and hence causes less problems with window managers and/or applications. WWW: https://github.com/Airblader/unclutter-xfixes PR: 210302 Submitted by: Oleg Gushchenkov Differential Revision: https://reviews.freebsd.org/D6785 Added: head/misc/unclutter-xfixes/ head/misc/unclutter-xfixes/Makefile (contents, props changed) head/misc/unclutter-xfixes/distinfo (contents, props changed) head/misc/unclutter-xfixes/files/ head/misc/unclutter-xfixes/files/patch-Makefile (contents, props changed) head/misc/unclutter-xfixes/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Jun 21 12:44:39 2017 (r444031) +++ head/misc/Makefile Wed Jun 21 15:09:44 2017 (r444032) @@ -476,6 +476,7 @@ SUBDIR += uk-postcodes SUBDIR += umodunpack SUBDIR += unclutter + SUBDIR += unclutter-xfixes SUBDIR += upclient SUBDIR += us-zipcodes SUBDIR += usbids Added: head/misc/unclutter-xfixes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unclutter-xfixes/Makefile Wed Jun 21 15:09:44 2017 (r444032) @@ -0,0 +1,34 @@ +# Created by: Oleg Gushchenkov +# $FreeBSD$ + +PORTNAME= unclutter-xfixes +PORTVERSION= 1.1 +DISTVERSIONPREFIX= v +CATEGORIES= misc + +MAINTAINER= gor@clogic.com.ua +COMMENT= Rewrite of unclutter using the x11-xfixes extension + +LICENSE= MIT + +BUILD_DEPENDS= a2x:textproc/asciidoc +LIB_DEPENDS= libev.so:devel/libev + +CONFLICTS_INSTALL= unclutter-8* + +CFLAGS+= -I${LOCALBASE}/include + +USE_GITHUB= yes +GH_ACCOUNT= Airblader + +USE_XORG= x11 xi xfixes + +USES= gmake pkgconfig + +PLIST_FILES= bin/unclutter \ + man/man1/unclutter.1.gz + +MAKE_ENV+= UNCLUTTER_VERSION=${PORTVERSION} +MAKE_ARGS= CC=${CC} + +.include Added: head/misc/unclutter-xfixes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unclutter-xfixes/distinfo Wed Jun 21 15:09:44 2017 (r444032) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465305813 +SHA256 (Airblader-unclutter-xfixes-v1.1_GH0.tar.gz) = 91635c64a2075cb4e8926d84c09931c957e5f1d824a249cddb7ec109378090ad +SIZE (Airblader-unclutter-xfixes-v1.1_GH0.tar.gz) = 5812 Added: head/misc/unclutter-xfixes/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unclutter-xfixes/files/patch-Makefile Wed Jun 21 15:09:44 2017 (r444032) @@ -0,0 +1,32 @@ +Index: Makefile +=================================================================== +--- Makefile.orig 2016-05-16 09:27:55 UTC ++++ Makefile +@@ -4,9 +4,9 @@ IDIR = include + ODIR = obj + + INSTALL = install +-PREFIX = /usr/bin + +-MANDIR = /usr/share/man/man1 ++BINDIR = /bin ++MANDIR = /man/man1 + + CC = gcc + CFLAGS += -I$(IDIR) +@@ -32,12 +32,12 @@ $(TARGET): $(OBJS) + $(CC) $(CFLAGS) -o $(TARGET) $(OBJS) $(LIBS) + + $(ODIR)/%.o: $(SDIR)/%.c $(INCS) +- $(CC) -D'__VERSION="$(shell git describe --all --long --always)"' $(CFLAGS) -o $@ -c $< ++ $(CC) -D'__VERSION="$(UNCLUTTER_VERSION)"' $(CFLAGS) -o $@ -c $< + + .PHONY: install + install: $(TARGET) +- $(INSTALL) -Dm 0755 $(TARGET) $(DESTDIR)$(PREFIX)/$(TARGET) +- $(INSTALL) -Dm 0644 man/unclutter-xfixes.1 $(DESTDIR)$(MANDIR)/unclutter.1 ++ $(BSD_INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(PREFIX)$(BINDIR)/$(TARGET) ++ $(BSD_INSTALL_MAN) man/unclutter-xfixes.1 $(DESTDIR)$(PREFIX)$(MANDIR)/$(TARGET).1 + + .PHONY: uninstall + uninstall: Added: head/misc/unclutter-xfixes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/unclutter-xfixes/pkg-descr Wed Jun 21 15:09:44 2017 (r444032) @@ -0,0 +1,6 @@ +This is a rewrite of the popular tool unclutter, but using the x11-xfixes +extension. This means that this rewrite doesn't use fake windows or +pointer grabbing and hence causes less problems with window managers +and/or applications. + +WWW: https://github.com/Airblader/unclutter-xfixes From owner-svn-ports-head@freebsd.org Wed Jun 21 15:45:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EAE6D928C2; Wed, 21 Jun 2017 15:45:22 +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 21BAD7174D; Wed, 21 Jun 2017 15:45:22 +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 v5LFjLQZ099114; Wed, 21 Jun 2017 15:45:21 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LFjLWJ099112; Wed, 21 Jun 2017 15:45:21 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706211545.v5LFjLWJ099112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 15:45:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444033 - head/lang/whitespace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 15:45:22 -0000 Author: linimon Date: Wed Jun 21 15:45:21 2017 New Revision: 444033 URL: https://svnweb.freebsd.org/changeset/ports/444033 Log: Mark deprecated: mastersite disappeared; information only available via Wayback Machine. Reported by: Karen Little Modified: head/lang/whitespace/Makefile Modified: head/lang/whitespace/Makefile ============================================================================== --- head/lang/whitespace/Makefile Wed Jun 21 15:09:44 2017 (r444032) +++ head/lang/whitespace/Makefile Wed Jun 21 15:45:21 2017 (r444033) @@ -18,6 +18,9 @@ BUILD_DEPENDS= ghc:lang/ghc LIB_DEPENDS= libgmp.so:math/gmp \ libffi.so.6:devel/libffi +DEPRECATED= Mastersite disappeared +EXPIRATION_DATE= 2017-08-21 + USES= perl5 gmake tar:tgz USE_PERL5= build WRKSRC= ${WRKDIR}/WSpace From owner-svn-ports-head@freebsd.org Wed Jun 21 16:22:34 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3465ED9329A; Wed, 21 Jun 2017 16:22:34 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E83207291C; Wed, 21 Jun 2017 16:22:33 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGMWX8015262; Wed, 21 Jun 2017 16:22:32 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGMW6l015260; Wed, 21 Jun 2017 16:22:32 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211622.v5LGMW6l015260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:22:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444034 - in head/Mk: Scripts Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 16:22:34 -0000 Author: tobik Date: Wed Jun 21 16:22:32 2017 New Revision: 444034 URL: https://svnweb.freebsd.org/changeset/ports/444034 Log: Add USES=cargo to make creating ports of Rust applications easier Approved by: mat (mentor) Reviewed by: dumbbell, mat Differential Revision: https://reviews.freebsd.org/D11162 Added: head/Mk/Scripts/cargo-crates.awk (contents, props changed) head/Mk/Uses/cargo.mk (contents, props changed) Added: head/Mk/Scripts/cargo-crates.awk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/Mk/Scripts/cargo-crates.awk Wed Jun 21 16:22:32 2017 (r444034) @@ -0,0 +1,56 @@ +BEGIN { + gh_tuple_len = 0 + crates_len = 0 + package_name = "" +} + +/^"checksum .* .* \(registry\+.*\)" = ".*"/ { + # $2: crate + # $3: version + # $4: url + # $6: checksum + crates[crates_len++] = sprintf("%s-%s", $2, $3) +} + +/^name = ".*"/ { + package_name = $3 + gsub("[^a-zA-Z_]", "", package_name) +} + +/^source = "git\+(https|http|git):\/\/github.com\/.*#.*"/ { + split($3, url, "#") + + gsub("^\"git\+", "", url[1]) + split(url[1], repourl, "/") + account = repourl[4] + project = repourl[5] + gsub("\.git$", "", project) + + tag = url[2] + gsub("\"$", "", tag) + + gh_tuple[gh_tuple_len++] = sprintf(\ + "%s:%s:%s:%s", account, project, tag, package_name) +} + +function print_array(start, arr, arrlen) { + end = " \\\n" + for (i = 0; i < arrlen; i++) { + if (i == arrlen - 1) { + end = "\n" + } + printf "%s\t%s%s", start, arr[i], end + start = "\t" + } +} + +END { + if (gh_tuple_len > 0 && ENVIRON["USE_GITHUB"] == "") { + printf "USE_GITHUB=\tnodefault\n" + } + print_array("GH_TUPLE=", gh_tuple, gh_tuple_len) + print_array("CARGO_CRATES=", crates, crates_len) + if (gh_tuple_len > 0) { + printf "CARGO_USE_GITHUB=\tyes\n" + } +} Added: head/Mk/Uses/cargo.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/Mk/Uses/cargo.mk Wed Jun 21 16:22:32 2017 (r444034) @@ -0,0 +1,219 @@ +# $FreeBSD$ +# +# This file contains logic to ease porting of Rust packages or +# binaries using the `cargo` command. +# +# Feature: cargo +# Usage: USES=cargo +# Valid ARGS: none +# +# MAINTAINER: ports@FreeBSD.org + +.if !defined(_INCLUDE_USES_CARGO_MK) +_INCLUDE_USES_CARGO_MK= yes + +.if !empty(cargo_ARGS) +IGNORE+= USES=cargo takes no arguments +.endif + +# List of static dependencies. The format is cratename-version. +# CARGO_CRATES will be downloaded from MASTER_SITES_CRATESIO. +CARGO_CRATES?= + +# List of features to build (space separated list). +CARGO_FEATURES?= + +# Name of the local directory for vendoring crates. +CARGO_VENDOR_DIR?= ${WRKSRC}/cargo-crates + +# Default path for cargo manifest. +CARGO_CARGOTOML?= ${WRKSRC}/Cargo.toml +CARGO_CARGOLOCK?= ${WRKSRC}/Cargo.lock + +# Define MASTER_SITES_CRATESIO for crates.io +MASTER_SITES_CRATESIO= https://crates.io/api/v1/crates + +# Save crates inside ${DISTDIR}/rust/crates by default. +CARGO_DIST_SUBDIR?= rust/crates + +# Generate list of DISTFILES. +.for _crate in ${CARGO_CRATES} +MASTER_SITES+= ${MASTER_SITES_CRATESIO}/${_crate:C/-[^-]*$//}/${_crate:C/^.*-//}/download?dummy=/:cargo_${_crate:S/-//g:S/.//g} +DISTFILES+= ${CARGO_DIST_SUBDIR}/${_crate}.tar.gz:cargo_${_crate:S/-//g:S/.//g} +.endfor + +# Build dependencies. + +CARGO_BUILDDEP?= yes +.if ${CARGO_BUILDDEP:tl} == "yes" +BUILD_DEPENDS+= cargo:devel/cargo rustc:lang/rust +.endif + +# Location of cargo binary (default to devel/cargo binary) +CARGO_CARGO_BIN?= ${LOCALBASE}/bin/cargo + +# Location of the cargo output directory. +CARGO_TARGET_DIR?= ${WRKDIR}/target + +# Environment for cargo +# - CARGO_HOME: local cache of the registry index +# - CARGO_BUILD_JOBS: configure number of jobs to run +# - CARGO_TARGET_DIR: location of where to place all generated artifacts +# - RUSTC: path of rustc binary (default to lang/rust) +# - RUSTDOC: path of rustdoc binary (default to lang/rust) +# - RUSTFLAGS: custom flags to pass to all compiler invocations that Cargo performs +# +# XXX LDFLAGS => -C link-arg=$1 (via RUSTFLAGS) +CARGO_ENV+= \ + CARGO_HOME=${WRKDIR}/cargo-home \ + CARGO_BUILD_JOBS=${MAKE_JOBS_NUMBER} \ + CARGO_TARGET_DIR=${CARGO_TARGET_DIR} \ + RUSTC=${LOCALBASE}/bin/rustc \ + RUSTDOC=${LOCALBASE}/bin/rustdoc \ + RUSTFLAGS="${RUSTFLAGS}" + +# Helper to shorten cargo calls. +CARGO_CARGO_RUN= \ + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CARGO_ENV} \ + ${CARGO_CARGO_BIN} + +# User arguments for cargo targets. +CARGO_BUILD_ARGS?= +CARGO_INSTALL_ARGS?= +CARGO_TEST_ARGS?= +CARGO_UPDATE_ARGS?= + +# Use module targets ? +CARGO_BUILD?= yes +CARGO_CONFIGURE?= yes +CARGO_INSTALL?= yes +CARGO_TEST?= yes +CARGO_USE_GITHUB?= no + +# If your application has multiple Cargo.toml files which all use +# git-sourced dependencies and require the use of CARGO_USE_GITHUB and +# GH_TUPLE, then you add them to CARGO_GH_CARGOTOML to also point them +# to the correct offline sources. +CARGO_GH_CARGOTOML?= ${CARGO_CARGOTOML} + +# Manage crate features. +.if !empty(CARGO_FEATURES) +CARGO_BUILD_ARGS+= --features='${CARGO_FEATURES}' +CARGO_INSTALL_ARGS+= --features='${CARGO_FEATURES}' +CARGO_TEST_ARGS+= --features='${CARGO_FEATURES}' +.endif + +.if !defined(WITH_DEBUG) || defined(WITHOUT_DEBUG) +CARGO_BUILD_ARGS+= --release +CARGO_TEST_ARGS+= --release +.else +CARGO_INSTALL_ARGS+= --debug +.endif + +.if ${CARGO_CRATES:Mlibgit2-sys-*} +# Use the system's libgit2 instead of building the bundled version +LIB_DEPENDS+= libgit2.so:devel/libgit2 +CARGO_ENV+= LIBGIT2_SYS_USE_PKG_CONFIG=1 +.endif + +.if ${CARGO_CRATES:Mopenssl-sys-*} +# Make sure that openssl-sys can find the correct version of OpenSSL +.include "${USESDIR}/ssl.mk" +CARGO_ENV+= OPENSSL_LIB_DIR=${OPENSSLLIB} \ + OPENSSL_INCLUDE_DIR=${OPENSSLINC} +.endif + +.if ${CARGO_CRATES:Mpkg-config-*} +.include "${USESDIR}/pkgconfig.mk" +.endif + +_USES_extract+= 600:cargo-extract +cargo-extract: +# target for preparing crates directory. It will put all crates in +# the local crates directory. + @${ECHO_MSG} "===> Moving crates to ${CARGO_VENDOR_DIR}" + @${MKDIR} ${CARGO_VENDOR_DIR} +.for _crate in ${CARGO_CRATES} + @${MV} ${WRKDIR}/${_crate} ${CARGO_VENDOR_DIR}/${_crate} + @${PRINTF} '{"package":"%s","files":{}}' \ + $$(${SHA256} -q ${DISTDIR}/${CARGO_DIST_SUBDIR}/${_crate}.tar.gz) \ + > ${CARGO_VENDOR_DIR}/${_crate}/.cargo-checksum.json +.endfor + +.if ${CARGO_USE_GITHUB:tl} == "yes" +_USES_patch+= 600:cargo-patch-github + +.for _group in ${GH_TUPLE:C@^[^:]*:[^:]*:[^:]*:(([^:/]*)?)((/.*)?)@\2@} +_CARGO_GH_PATCH_CARGOTOML:= ${_CARGO_GH_PATCH_CARGOTOML} \ + -e 's@git = "(https|http|git)://github.com/${GH_ACCOUNT_${_group}}/${GH_PROJECT_${_group}}(\.git)?"@path = "${WRKSRC_${_group}}"@' +.endfor + +cargo-patch-github: + @${SED} -i.dist -E ${_CARGO_GH_PATCH_CARGOTOML} ${CARGO_GH_CARGOTOML} +.endif + +.if !target(do-configure) && ${CARGO_CONFIGURE:tl} == "yes" +# configure hook. Place a config file for overriding crates-io index +# by local source directory. +do-configure: + @${MKDIR} ${WRKDIR}/.cargo + @${ECHO_CMD} "[source.cargo]" > ${WRKDIR}/.cargo/config + @${ECHO_CMD} "directory = '${CARGO_VENDOR_DIR}'" >> ${WRKDIR}/.cargo/config + @${ECHO_CMD} "[source.crates-io]" >> ${WRKDIR}/.cargo/config + @${ECHO_CMD} "replace-with = 'cargo'" >> ${WRKDIR}/.cargo/config + @if ! ${GREP} -qF '[profile.release]' ${CARGO_CARGOTOML}; then \ + ${ECHO_CMD} "" >> ${CARGO_CARGOTOML}; \ + ${ECHO_CMD} "[profile.release]" >> ${CARGO_CARGOTOML}; \ + ${ECHO_CMD} "opt-level = 2" >> ${CARGO_CARGOTOML}; \ + ${ECHO_CMD} "debug = false" >> ${CARGO_CARGOTOML}; \ + fi + @${CARGO_CARGO_RUN} update \ + --manifest-path ${CARGO_CARGOTOML} \ + --verbose \ + ${CARGO_UPDATE_ARGS} +.endif + +.if !target(do-build) && ${CARGO_BUILD:tl} == "yes" +do-build: + @${CARGO_CARGO_RUN} build \ + --manifest-path ${CARGO_CARGOTOML} \ + --verbose \ + ${CARGO_BUILD_ARGS} +.endif + +.if !target(do-install) && ${CARGO_INSTALL:tl} == "yes" +do-install: + @${CARGO_CARGO_RUN} install \ + --root "${STAGEDIR}${PREFIX}" \ + --verbose \ + ${CARGO_INSTALL_ARGS} + @${RM} -- "${STAGEDIR}${PREFIX}/.crates.toml" +.endif + +.if !target(do-test) && ${CARGO_TEST:tl} == "yes" +do-test: + @${CARGO_CARGO_RUN} test \ + --manifest-path ${CARGO_CARGOTOML} \ + --verbose \ + ${CARGO_TEST_ARGS} +.endif + +# +# Helper targets for port maintainers +# + +# cargo-crates will output the crates list from Cargo.lock. +cargo-crates: extract + @${SETENV} USE_GITHUB=${USE_GITHUB} \ + ${AWK} -f ${SCRIPTSDIR}/cargo-crates.awk ${CARGO_CARGOLOCK} + +# cargo-crates-licenses will try to grab license information from +# all downloaded crates. +cargo-crates-licenses: configure + @${FIND} ${CARGO_VENDOR_DIR} -name 'Cargo.toml' -maxdepth 2 \ + -exec ${GREP} -H '^license' {} \; \ + | ${SED} \ + -e 's@^${CARGO_VENDOR_DIR}/@@' \ + -e 's@/Cargo.toml:license.*= *"@|@' \ + -e 's@"$$@@g' | /usr/bin/column -t -s '|' +.endif From owner-svn-ports-head@freebsd.org Wed Jun 21 16:23:54 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C0BAD93333; Wed, 21 Jun 2017 16:23:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68E4B72ADE; Wed, 21 Jun 2017 16:23:54 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGNrPi015462; Wed, 21 Jun 2017 16:23:53 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGNrc0015458; Wed, 21 Jun 2017 16:23:53 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211623.v5LGNrc0015458@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:23:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444035 - in head/textproc: . ripgrep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 16:23:54 -0000 Author: tobik Date: Wed Jun 21 16:23:52 2017 New Revision: 444035 URL: https://svnweb.freebsd.org/changeset/ports/444035 Log: New port: textproc/ripgrep ripgrep is a command line search tool that combines the usability of The Silver Searcher (an ack clone) with the raw speed of GNU grep. ripgrep is fast, cross platform and written in Rust. WWW: http://blog.burntsushi.net/ripgrep/ PR: 215212 Submitted by: petteri.valkonen@iki.fi (based on) Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11162 Added: head/textproc/ripgrep/ head/textproc/ripgrep/Makefile (contents, props changed) head/textproc/ripgrep/distinfo (contents, props changed) head/textproc/ripgrep/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Jun 21 16:22:32 2017 (r444034) +++ head/textproc/Makefile Wed Jun 21 16:23:52 2017 (r444035) @@ -1417,6 +1417,7 @@ SUBDIR += resume SUBDIR += resume-extensions SUBDIR += rfcdiff + SUBDIR += ripgrep SUBDIR += ripole SUBDIR += rl SUBDIR += rman Added: head/textproc/ripgrep/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/ripgrep/Makefile Wed Jun 21 16:23:52 2017 (r444035) @@ -0,0 +1,67 @@ +# Created by: Petteri Valkonen +# $FreeBSD$ + +# vim: ts=8 noet + +PORTNAME= ripgrep +PORTVERSION= 0.5.2 +CATEGORIES= textproc + +MAINTAINER= petteri.valkonen@iki.fi +COMMENT= Command line search tool + +LICENSE= MIT UNLICENSE +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_COMB= dual +LICENSE_NAME_UNLICENSE= The Unlicense +LICENSE_FILE_UNLICENSE= ${WRKSRC}/UNLICENSE +LICENSE_PERMS_UNLICENSE=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= BurntSushi + +PLIST_FILES= bin/rg \ + man/man1/rg.1.gz + +CARGO_CRATES= aho-corasick-0.6.3 \ + ansi_term-0.9.0 \ + atty-0.2.2 \ + bitflags-0.8.2 \ + bytecount-0.1.6 \ + cfg-if-0.1.0 \ + clap-2.24.1 \ + crossbeam-0.2.10 \ + encoding_rs-0.5.1 \ + env_logger-0.4.2 \ + fnv-1.0.5 \ + fs2-0.4.1 \ + kernel32-sys-0.2.2 \ + lazy_static-0.2.8 \ + libc-0.2.23 \ + log-0.3.7 \ + memchr-1.0.1 \ + memmap-0.5.2 \ + num_cpus-1.4.0 \ + regex-0.2.1 \ + regex-syntax-0.4.0 \ + same-file-0.1.3 \ + simd-0.1.1 \ + strsim-0.6.0 \ + term_size-0.3.0 \ + thread-id-3.0.0 \ + thread_local-0.3.3 \ + unicode-segmentation-1.1.0 \ + unicode-width-0.1.4 \ + unreachable-0.1.1 \ + utf8-ranges-1.0.0 \ + vec_map-0.7.0 \ + void-1.0.2 \ + walkdir-1.0.7 \ + winapi-0.2.8 \ + winapi-build-0.1.1 + +post-install: + ${INSTALL_MAN} ${WRKSRC}/doc/rg.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + +.include Added: head/textproc/ripgrep/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/ripgrep/distinfo Wed Jun 21 16:23:52 2017 (r444035) @@ -0,0 +1,75 @@ +TIMESTAMP = 1497445650 +SHA256 (rust/crates/aho-corasick-0.6.3.tar.gz) = 500909c4f87a9e52355b26626d890833e9e1d53ac566db76c36faa984b889699 +SIZE (rust/crates/aho-corasick-0.6.3.tar.gz) = 24963 +SHA256 (rust/crates/ansi_term-0.9.0.tar.gz) = 23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6 +SIZE (rust/crates/ansi_term-0.9.0.tar.gz) = 11718 +SHA256 (rust/crates/atty-0.2.2.tar.gz) = d912da0db7fa85514874458ca3651fe2cddace8d0b0505571dbdcd41ab490159 +SIZE (rust/crates/atty-0.2.2.tar.gz) = 5124 +SHA256 (rust/crates/bitflags-0.8.2.tar.gz) = 1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4 +SIZE (rust/crates/bitflags-0.8.2.tar.gz) = 11200 +SHA256 (rust/crates/bytecount-0.1.6.tar.gz) = 1e8f09fbc8c6726a4b616dcfbd4f54491068d6bb1b93ac03c78ac18ff9a5924a +SIZE (rust/crates/bytecount-0.1.6.tar.gz) = 9435 +SHA256 (rust/crates/cfg-if-0.1.0.tar.gz) = de1e760d7b6535af4241fca8bd8adf68e2e7edacc6b29f5d399050c5e48cf88c +SIZE (rust/crates/cfg-if-0.1.0.tar.gz) = 2758 +SHA256 (rust/crates/clap-2.24.1.tar.gz) = b7541069be0b8aec41030802abe8b5cdef0490070afaa55418adea93b1e431e0 +SIZE (rust/crates/clap-2.24.1.tar.gz) = 178111 +SHA256 (rust/crates/crossbeam-0.2.10.tar.gz) = 0c5ea215664ca264da8a9d9c3be80d2eaf30923c259d03e870388eb927508f97 +SIZE (rust/crates/crossbeam-0.2.10.tar.gz) = 32993 +SHA256 (rust/crates/encoding_rs-0.5.1.tar.gz) = e4bc519d572af08cf72c4d61e0de9b05e9fa66d1fdb5e739fb5c405860b42d43 +SIZE (rust/crates/encoding_rs-0.5.1.tar.gz) = 1225177 +SHA256 (rust/crates/env_logger-0.4.2.tar.gz) = e3856f1697098606fc6cb97a93de88ca3f3bc35bb878c725920e6e82ecf05e83 +SIZE (rust/crates/env_logger-0.4.2.tar.gz) = 10386 +SHA256 (rust/crates/fnv-1.0.5.tar.gz) = 6cc484842f1e2884faf56f529f960cc12ad8c71ce96cc7abba0a067c98fee344 +SIZE (rust/crates/fnv-1.0.5.tar.gz) = 6295 +SHA256 (rust/crates/fs2-0.4.1.tar.gz) = 34edaee07555859dc13ca387e6ae05686bb4d0364c95d649b6dab959511f4baf +SIZE (rust/crates/fs2-0.4.1.tar.gz) = 12039 +SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d +SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 +SHA256 (rust/crates/lazy_static-0.2.8.tar.gz) = 3b37545ab726dd833ec6420aaba8231c5b320814b9029ad585555d2a03e94fbf +SIZE (rust/crates/lazy_static-0.2.8.tar.gz) = 9950 +SHA256 (rust/crates/libc-0.2.23.tar.gz) = e7eb6b826bfc1fdea7935d46556250d1799b7fe2d9f7951071f4291710665e3e +SIZE (rust/crates/libc-0.2.23.tar.gz) = 153939 +SHA256 (rust/crates/log-0.3.7.tar.gz) = 5141eca02775a762cc6cd564d8d2c50f67c0ea3a372cbf1c51592b3e029e10ad +SIZE (rust/crates/log-0.3.7.tar.gz) = 16352 +SHA256 (rust/crates/memchr-1.0.1.tar.gz) = 1dbccc0e46f1ea47b9f17e6d67c5a96bd27030519c519c9c91327e31275a47b4 +SIZE (rust/crates/memchr-1.0.1.tar.gz) = 8221 +SHA256 (rust/crates/memmap-0.5.2.tar.gz) = 46f3c7359028b31999287dae4e5047ddfe90a23b7dca2282ce759b491080c99b +SIZE (rust/crates/memmap-0.5.2.tar.gz) = 14465 +SHA256 (rust/crates/num_cpus-1.4.0.tar.gz) = ca313f1862c7ec3e0dfe8ace9fa91b1d9cb5c84ace3d00f5ec4216238e93c167 +SIZE (rust/crates/num_cpus-1.4.0.tar.gz) = 6782 +SHA256 (rust/crates/regex-0.2.1.tar.gz) = 4278c17d0f6d62dfef0ab00028feb45bd7d2102843f80763474eeb1be8a10c01 +SIZE (rust/crates/regex-0.2.1.tar.gz) = 189277 +SHA256 (rust/crates/regex-syntax-0.4.0.tar.gz) = 2f9191b1f57603095f105d317e375d19b1c9c5c3185ea9633a99a6dcbed04457 +SIZE (rust/crates/regex-syntax-0.4.0.tar.gz) = 118223 +SHA256 (rust/crates/same-file-0.1.3.tar.gz) = d931a44fdaa43b8637009e7632a02adc4f2b2e0733c08caa4cf00e8da4a117a7 +SIZE (rust/crates/same-file-0.1.3.tar.gz) = 7078 +SHA256 (rust/crates/simd-0.1.1.tar.gz) = 63b5847c2d766ca7ce7227672850955802fabd779ba616aeabead4c2c3877023 +SIZE (rust/crates/simd-0.1.1.tar.gz) = 39577 +SHA256 (rust/crates/strsim-0.6.0.tar.gz) = b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694 +SIZE (rust/crates/strsim-0.6.0.tar.gz) = 8500 +SHA256 (rust/crates/term_size-0.3.0.tar.gz) = e2b6b55df3198cc93372e85dd2ed817f0e38ce8cc0f22eb32391bfad9c4bf209 +SIZE (rust/crates/term_size-0.3.0.tar.gz) = 9932 +SHA256 (rust/crates/thread-id-3.0.0.tar.gz) = 4437c97558c70d129e40629a5b385b3fb1ffac301e63941335e4d354081ec14a +SIZE (rust/crates/thread-id-3.0.0.tar.gz) = 6240 +SHA256 (rust/crates/thread_local-0.3.3.tar.gz) = c85048c6260d17cf486ceae3282d9fb6b90be220bf5b28c400f5485ffc29f0c7 +SIZE (rust/crates/thread_local-0.3.3.tar.gz) = 10964 +SHA256 (rust/crates/unicode-segmentation-1.1.0.tar.gz) = 18127285758f0e2c6cf325bb3f3d138a12fee27de4f23e146cd6a179f26c2cf3 +SIZE (rust/crates/unicode-segmentation-1.1.0.tar.gz) = 65559 +SHA256 (rust/crates/unicode-width-0.1.4.tar.gz) = bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f +SIZE (rust/crates/unicode-width-0.1.4.tar.gz) = 15283 +SHA256 (rust/crates/unreachable-0.1.1.tar.gz) = 1f2ae5ddb18e1c92664717616dd9549dde73f539f01bd7b77c2edb2446bdff91 +SIZE (rust/crates/unreachable-0.1.1.tar.gz) = 1772 +SHA256 (rust/crates/utf8-ranges-1.0.0.tar.gz) = 662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122 +SIZE (rust/crates/utf8-ranges-1.0.0.tar.gz) = 8599 +SHA256 (rust/crates/vec_map-0.7.0.tar.gz) = f8cdc8b93bd0198ed872357fb2e667f7125646b1762f16d60b2c96350d361897 +SIZE (rust/crates/vec_map-0.7.0.tar.gz) = 13455 +SHA256 (rust/crates/void-1.0.2.tar.gz) = 6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d +SIZE (rust/crates/void-1.0.2.tar.gz) = 2356 +SHA256 (rust/crates/walkdir-1.0.7.tar.gz) = bb08f9e670fab86099470b97cd2b252d6527f0b3cc1401acdb595ffc9dd288ff +SIZE (rust/crates/walkdir-1.0.7.tar.gz) = 17883 +SHA256 (rust/crates/winapi-0.2.8.tar.gz) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a +SIZE (rust/crates/winapi-0.2.8.tar.gz) = 455145 +SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc +SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 +SHA256 (BurntSushi-ripgrep-0.5.2_GH0.tar.gz) = 5d880c590cbb09d907d64ba24557fb2b2f025c8363bcdde29f303e9261625eea +SIZE (BurntSushi-ripgrep-0.5.2_GH0.tar.gz) = 460948 Added: head/textproc/ripgrep/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/ripgrep/pkg-descr Wed Jun 21 16:23:52 2017 (r444035) @@ -0,0 +1,5 @@ +ripgrep is a command line search tool that combines the usability of +The Silver Searcher (an ack clone) with the raw speed of GNU grep. +ripgrep is fast, cross platform and written in Rust. + +WWW: http://blog.burntsushi.net/ripgrep/ From owner-svn-ports-head@freebsd.org Wed Jun 21 16:25:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D86A1D933F2; Wed, 21 Jun 2017 16:25:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B02EB72C49; Wed, 21 Jun 2017 16:25:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGP7R3015682; Wed, 21 Jun 2017 16:25:07 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGP7Xp015678; Wed, 21 Jun 2017 16:25:07 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211625.v5LGP7Xp015678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444036 - in head/sysutils: . exa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 16:25:08 -0000 Author: tobik Date: Wed Jun 21 16:25:07 2017 New Revision: 444036 URL: https://svnweb.freebsd.org/changeset/ports/444036 Log: New port: sysutils/exa Exa is a modern replacement for ls. It uses colours for information by default, helping you distinguish between many types of files, such as whether you are the owner, or in the owning group. It also has extra features not present in the original ls, such as viewing the Git status for a directory, or recursing into directories with a tree view. Exa is written in Rust, so it's small, fast, and portable. WWW: https://the.exa.website/ Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11162 Added: head/sysutils/exa/ head/sysutils/exa/Makefile (contents, props changed) head/sysutils/exa/distinfo (contents, props changed) head/sysutils/exa/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Jun 21 16:23:52 2017 (r444035) +++ head/sysutils/Makefile Wed Jun 21 16:25:07 2017 (r444036) @@ -280,6 +280,7 @@ SUBDIR += etcupdate SUBDIR += eventlog SUBDIR += evtviewer + SUBDIR += exa SUBDIR += exfat-utils SUBDIR += extipl SUBDIR += ezjail Added: head/sysutils/exa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/exa/Makefile Wed Jun 21 16:25:07 2017 (r444036) @@ -0,0 +1,67 @@ +# $FreeBSD$ + +PORTNAME= exa +PORTVERSION= 0.6.0 +DISTVERSIONPREFIX= v +CATEGORIES= sysutils + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Modern replacement for ls + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENCE + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= ogham +GH_TUPLE= rust-datetime:zoneinfo-compiled:f56921ea5e9f7cf065b1480ff270a1757c1f742f:zoneinfo_compiled + +PLIST_FILES= bin/exa man/man1/exa.1.gz + +CARGO_CRATES= ansi_term-0.8.0 \ + bitflags-0.7.0 \ + byteorder-0.4.2 \ + cmake-0.1.23 \ + datetime-0.4.4 \ + gcc-0.3.46 \ + getopts-0.2.14 \ + git2-0.6.5 \ + glob-0.2.11 \ + idna-0.1.1 \ + iso8601-0.1.1 \ + lazy_static-0.2.8 \ + libc-0.2.23 \ + libgit2-sys-0.6.10 \ + libz-sys-1.0.13 \ + locale-0.2.1 \ + matches-0.1.4 \ + natord-1.0.9 \ + nom-1.2.4 \ + num-0.1.37 \ + num-bigint-0.1.37 \ + num-complex-0.1.37 \ + num-integer-0.1.34 \ + num-iter-0.1.33 \ + num-rational-0.1.36 \ + num-traits-0.1.37 \ + num_cpus-1.4.0 \ + number_prefix-0.2.7 \ + pad-0.1.4 \ + pkg-config-0.3.9 \ + rand-0.3.15 \ + rustc-serialize-0.3.24 \ + scoped_threadpool-0.1.7 \ + term_grid-0.1.5 \ + unicode-bidi-0.2.6 \ + unicode-normalization-0.1.4 \ + unicode-width-0.1.4 \ + url-1.4.0 \ + users-0.5.2 + +CARGO_FEATURES= git2 +CARGO_USE_GITHUB= yes + +post-install: + ${INSTALL_MAN} ${WRKSRC}/contrib/man/exa.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include Added: head/sysutils/exa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/exa/distinfo Wed Jun 21 16:25:07 2017 (r444036) @@ -0,0 +1,83 @@ +TIMESTAMP = 1497767245 +SHA256 (rust/crates/ansi_term-0.8.0.tar.gz) = c877397e09fec7a240af5fa74ad0124054b8066149d6544cd1ace93f8de3be68 +SIZE (rust/crates/ansi_term-0.8.0.tar.gz) = 10340 +SHA256 (rust/crates/bitflags-0.7.0.tar.gz) = aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d +SIZE (rust/crates/bitflags-0.7.0.tar.gz) = 10851 +SHA256 (rust/crates/byteorder-0.4.2.tar.gz) = 96c8b41881888cc08af32d47ac4edd52bc7fa27fef774be47a92443756451304 +SIZE (rust/crates/byteorder-0.4.2.tar.gz) = 9092 +SHA256 (rust/crates/cmake-0.1.23.tar.gz) = 92278eb79412c8f75cfc89e707a1bb3a6490b68f7f2e78d15c774f30fe701122 +SIZE (rust/crates/cmake-0.1.23.tar.gz) = 12604 +SHA256 (rust/crates/datetime-0.4.4.tar.gz) = 2d425bf1f6bbd57cf833081c1e60ac294fd74e7edd66acc91c3fca2e496bcee9 +SIZE (rust/crates/datetime-0.4.4.tar.gz) = 116548 +SHA256 (rust/crates/gcc-0.3.46.tar.gz) = 181e3cebba1d663bd92eb90e2da787e10597e027eb00de8d742b260a7850948f +SIZE (rust/crates/gcc-0.3.46.tar.gz) = 26597 +SHA256 (rust/crates/getopts-0.2.14.tar.gz) = d9047cfbd08a437050b363d35ef160452c5fe8ea5187ae0a624708c91581d685 +SIZE (rust/crates/getopts-0.2.14.tar.gz) = 16622 +SHA256 (rust/crates/git2-0.6.5.tar.gz) = 9de9df4358c17e448a778d90cd0272e1dab5eae30244502333fa2001c4e24357 +SIZE (rust/crates/git2-0.6.5.tar.gz) = 130382 +SHA256 (rust/crates/glob-0.2.11.tar.gz) = 8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb +SIZE (rust/crates/glob-0.2.11.tar.gz) = 18065 +SHA256 (rust/crates/idna-0.1.1.tar.gz) = 6ac85ec3f80c8e4e99d9325521337e14ec7555c458a14e377d189659a427f375 +SIZE (rust/crates/idna-0.1.1.tar.gz) = 248302 +SHA256 (rust/crates/iso8601-0.1.1.tar.gz) = 11dc464f8c6f17595d191447c9c6559298b2d023d6f846a4a23ac7ea3c46c477 +SIZE (rust/crates/iso8601-0.1.1.tar.gz) = 7770 +SHA256 (rust/crates/lazy_static-0.2.8.tar.gz) = 3b37545ab726dd833ec6420aaba8231c5b320814b9029ad585555d2a03e94fbf +SIZE (rust/crates/lazy_static-0.2.8.tar.gz) = 9950 +SHA256 (rust/crates/libc-0.2.23.tar.gz) = e7eb6b826bfc1fdea7935d46556250d1799b7fe2d9f7951071f4291710665e3e +SIZE (rust/crates/libc-0.2.23.tar.gz) = 153939 +SHA256 (rust/crates/libgit2-sys-0.6.10.tar.gz) = dd89dd7196d5fa35b659c3eaf3c1b14b9bd961bfd1a07dfca49adeb8a6aa3763 +SIZE (rust/crates/libgit2-sys-0.6.10.tar.gz) = 4216604 +SHA256 (rust/crates/libz-sys-1.0.13.tar.gz) = e5ee912a45d686d393d5ac87fac15ba0ba18daae14e8e7543c63ebf7fb7e970c +SIZE (rust/crates/libz-sys-1.0.13.tar.gz) = 602795 +SHA256 (rust/crates/locale-0.2.1.tar.gz) = ecccf5186e43f84e543bbf61fcddf00b41d69d97093bc8989cc0cf1593681950 +SIZE (rust/crates/locale-0.2.1.tar.gz) = 16751 +SHA256 (rust/crates/matches-0.1.4.tar.gz) = efd7622e3022e1a6eaa602c4cea8912254e5582c9c692e9167714182244801b1 +SIZE (rust/crates/matches-0.1.4.tar.gz) = 1530 +SHA256 (rust/crates/natord-1.0.9.tar.gz) = 308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c +SIZE (rust/crates/natord-1.0.9.tar.gz) = 3866 +SHA256 (rust/crates/nom-1.2.4.tar.gz) = a5b8c256fd9471521bcb84c3cdba98921497f1a331cbc15b8030fc63b82050ce +SIZE (rust/crates/nom-1.2.4.tar.gz) = 68547 +SHA256 (rust/crates/num-0.1.37.tar.gz) = 98b15ba84e910ea7a1973bccd3df7b31ae282bf9d8bd2897779950c9b8303d40 +SIZE (rust/crates/num-0.1.37.tar.gz) = 30152 +SHA256 (rust/crates/num-bigint-0.1.37.tar.gz) = ba6d838b16e56da1b6c383d065ff1ec3c7d7797f65a3e8f6ba7092fd87820bac +SIZE (rust/crates/num-bigint-0.1.37.tar.gz) = 35577 +SHA256 (rust/crates/num-complex-0.1.37.tar.gz) = 148eb324ca772230853418731ffdf13531738b50f89b30692a01fcdcb0a64677 +SIZE (rust/crates/num-complex-0.1.37.tar.gz) = 13522 +SHA256 (rust/crates/num-integer-0.1.34.tar.gz) = ef1a4bf6f9174aa5783a9b4cc892cacd11aebad6c69ad027a0b65c6ca5f8aa37 +SIZE (rust/crates/num-integer-0.1.34.tar.gz) = 10400 +SHA256 (rust/crates/num-iter-0.1.33.tar.gz) = f7d1891bd7b936f12349b7d1403761c8a0b85a18b148e9da4429d5d102c1a41e +SIZE (rust/crates/num-iter-0.1.33.tar.gz) = 7397 +SHA256 (rust/crates/num-rational-0.1.36.tar.gz) = c2dc5ea04020a8f18318ae485c751f8cfa1c0e69dcf465c29ddaaa64a313cc44 +SIZE (rust/crates/num-rational-0.1.36.tar.gz) = 12556 +SHA256 (rust/crates/num-traits-0.1.37.tar.gz) = e1cbfa3781f3fe73dc05321bed52a06d2d491eaa764c52335cf4399f046ece99 +SIZE (rust/crates/num-traits-0.1.37.tar.gz) = 20492 +SHA256 (rust/crates/num_cpus-1.4.0.tar.gz) = ca313f1862c7ec3e0dfe8ace9fa91b1d9cb5c84ace3d00f5ec4216238e93c167 +SIZE (rust/crates/num_cpus-1.4.0.tar.gz) = 6782 +SHA256 (rust/crates/number_prefix-0.2.7.tar.gz) = 59a14be9c211cb9c602bad35ac99f41e9a84b44d71b8cbd3040e3bd02a214902 +SIZE (rust/crates/number_prefix-0.2.7.tar.gz) = 4334 +SHA256 (rust/crates/pad-0.1.4.tar.gz) = d1bf3336e626b898e7263790d432a711d4277e22faea20dd9f70e0cab268fa58 +SIZE (rust/crates/pad-0.1.4.tar.gz) = 3620 +SHA256 (rust/crates/pkg-config-0.3.9.tar.gz) = 3a8b4c6b8165cd1a1cd4b9b120978131389f64bdaf456435caa41e630edba903 +SIZE (rust/crates/pkg-config-0.3.9.tar.gz) = 11055 +SHA256 (rust/crates/rand-0.3.15.tar.gz) = 022e0636ec2519ddae48154b028864bdce4eaf7d35226ab8e65c611be97b189d +SIZE (rust/crates/rand-0.3.15.tar.gz) = 55312 +SHA256 (rust/crates/rustc-serialize-0.3.24.tar.gz) = dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda +SIZE (rust/crates/rustc-serialize-0.3.24.tar.gz) = 45926 +SHA256 (rust/crates/scoped_threadpool-0.1.7.tar.gz) = 3ef399c8893e8cb7aa9696e895427fab3a6bf265977bb96e126f24ddd2cda85a +SIZE (rust/crates/scoped_threadpool-0.1.7.tar.gz) = 265925 +SHA256 (rust/crates/term_grid-0.1.5.tar.gz) = ccc202875496cf72a683a1ecd66f0742a830e73c202bdbd21867d73dfaac8343 +SIZE (rust/crates/term_grid-0.1.5.tar.gz) = 6186 +SHA256 (rust/crates/unicode-bidi-0.2.6.tar.gz) = 149319afc0ec718611d4a9208c0308e3b1b62dcfbd982e5e723f6ec35b909b92 +SIZE (rust/crates/unicode-bidi-0.2.6.tar.gz) = 27572 +SHA256 (rust/crates/unicode-normalization-0.1.4.tar.gz) = e28fa37426fceeb5cf8f41ee273faa7c82c47dc8fba5853402841e665fcd86ff +SIZE (rust/crates/unicode-normalization-0.1.4.tar.gz) = 278063 +SHA256 (rust/crates/unicode-width-0.1.4.tar.gz) = bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f +SIZE (rust/crates/unicode-width-0.1.4.tar.gz) = 15283 +SHA256 (rust/crates/url-1.4.0.tar.gz) = f5ba8a749fb4479b043733416c244fa9d1d3af3d7c23804944651c8a448cb87e +SIZE (rust/crates/url-1.4.0.tar.gz) = 71598 +SHA256 (rust/crates/users-0.5.2.tar.gz) = a7ae8fdf783cb9652109c99886459648feb92ecc749e6b8e7930f6decba74c7c +SIZE (rust/crates/users-0.5.2.tar.gz) = 16568 +SHA256 (ogham-exa-v0.6.0_GH0.tar.gz) = 84cd6b3c389d5ec0483f8e438557d971897b5e1015d22a8cb3ae7558f87f4bf0 +SIZE (ogham-exa-v0.6.0_GH0.tar.gz) = 492706 +SHA256 (rust-datetime-zoneinfo-compiled-f56921ea5e9f7cf065b1480ff270a1757c1f742f_GH0.tar.gz) = b338ee965ea75f23713b17bda5bfa61989eb4ebc8e97de2267fedf0d3cf6f2d9 +SIZE (rust-datetime-zoneinfo-compiled-f56921ea5e9f7cf065b1480ff270a1757c1f742f_GH0.tar.gz) = 7009 Added: head/sysutils/exa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/exa/pkg-descr Wed Jun 21 16:25:07 2017 (r444036) @@ -0,0 +1,8 @@ +Exa is a modern replacement for ls. It uses colours for information +by default, helping you distinguish between many types of files, such +as whether you are the owner, or in the owning group. It also has +extra features not present in the original ls, such as viewing the Git +status for a directory, or recursing into directories with a tree +view. Exa is written in Rust, so it's small, fast, and portable. + +WWW: https://the.exa.website/ From owner-svn-ports-head@freebsd.org Wed Jun 21 16:26:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 150B5D935A2; Wed, 21 Jun 2017 16:26:32 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2FDD72DE7; Wed, 21 Jun 2017 16:26:31 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGQVSN015882; Wed, 21 Jun 2017 16:26:31 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGQUGP015878; Wed, 21 Jun 2017 16:26:30 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211626.v5LGQUGP015878@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:26:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444037 - in head/sysutils: . flowgger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 16:26:32 -0000 Author: tobik Date: Wed Jun 21 16:26:30 2017 New Revision: 444037 URL: https://svnweb.freebsd.org/changeset/ports/444037 Log: New port: sysutils/flowgger Flowgger is a fast, simple and lightweight data collector. It reads log entries over a given protocol, extracts them, decodes them using a given format, re-encodes them into a different format, and asynchronously pushes the result into a remote data store. Flowgger is designed to be: - Paranoid: it carefully validates input data to prevent injection of malformed/incomplete records down the chain. - Safe: written in Rust, without any unsafe code. - Fast: even though messages are systematically parsed and validated, Flowgger is orders of magnitude faster than Logstash and Fluentd. - Standalone: it comes as a single executable file, and doesn't require a JVM. Flowgger supports common input types: stdin, UDP, TCP, TLS and Redis, as well as multiple input formats: JSON (GELF), LTSV, Cap'n Proto and RFC5424. Normalized messages can be sent to Kafka, Graylog, to downstream Flowgger servers, or to other log collectors for further processing. WWW: https://github.com/jedisct1/flowgger Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11162 Added: head/sysutils/flowgger/ head/sysutils/flowgger/Makefile (contents, props changed) head/sysutils/flowgger/distinfo (contents, props changed) head/sysutils/flowgger/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Jun 21 16:25:07 2017 (r444036) +++ head/sysutils/Makefile Wed Jun 21 16:26:30 2017 (r444037) @@ -312,6 +312,7 @@ SUBDIR += flexbackup SUBDIR += flock SUBDIR += flog + SUBIDR += flowgger SUBDIR += fluent-bit SUBDIR += flyback SUBDIR += fonteditfs Added: head/sysutils/flowgger/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/flowgger/Makefile Wed Jun 21 16:26:30 2017 (r444037) @@ -0,0 +1,107 @@ +# $FreeBSD$ + +PORTNAME= flowgger +PORTVERSION= g20170616 +CATEGORIES= sysutils + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Fast data collector + +LICENSE= MPL +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= jedisct1 +GH_PROJECT= flowgger +GH_TAGNAME= fbb8313 +GH_TUPLE= Manishearth:rust-clippy:dfc7d2afd40bad878a145e783b4abce3dc30c0eb:clippy \ + zonyitoo:coio-rs:269eda9d9b67ca465ab2a1d790364654a90746fd:coio \ + spicavigo:kafka-rust:38e046cf56877510e2a944e1a6cc36859b664ff5:kafka + +PLIST_FILES= bin/flowgger + +CARGO_CRATES= ansi_term-0.9.0 \ + atty-0.2.2 \ + bitflags-0.8.2 \ + byteorder-0.5.3 \ + byteorder-1.0.0 \ + capnp-0.8.10 \ + capnpc-0.8.5 \ + cargo_metadata-0.2.1 \ + cfg-if-0.1.0 \ + chrono-0.3.1 \ + clap-2.24.1 \ + context-1.0.1 \ + crc-1.4.0 \ + deque-0.3.2 \ + dtoa-0.2.2 \ + dtoa-0.4.1 \ + flate2-0.2.19 \ + fnv-1.0.5 \ + foreign-types-0.2.0 \ + gcc-0.3.46 \ + gdi32-sys-0.2.0 \ + idna-0.1.1 \ + iovec-0.1.0 \ + itoa-0.1.1 \ + itoa-0.3.1 \ + kernel32-sys-0.2.2 \ + lazy_static-0.2.8 \ + lazycell-0.4.0 \ + libc-0.2.22 \ + linked-hash-map-0.3.0 \ + log-0.3.7 \ + matches-0.1.4 \ + miniz-sys-0.1.9 \ + mio-0.6.7 \ + miow-0.2.1 \ + net2-0.2.29 \ + num-0.1.37 \ + num-integer-0.1.34 \ + num-iter-0.1.33 \ + num-traits-0.1.37 \ + openssl-0.9.12 \ + openssl-sys-0.9.12 \ + pkg-config-0.3.9 \ + quine-mc_cluskey-0.2.4 \ + quote-0.3.15 \ + rand-0.3.15 \ + redis-0.8.0 \ + redox_syscall-0.1.17 \ + ref_slice-1.1.1 \ + regex-syntax-0.4.0 \ + rustc-serialize-0.3.24 \ + semver-0.6.0 \ + semver-parser-0.7.0 \ + serde-0.8.23 \ + serde-1.0.4 \ + serde_derive-1.0.4 \ + serde_derive_internals-0.15.0 \ + serde_json-0.8.6 \ + serde_json-1.0.2 \ + sha1-0.2.0 \ + slab-0.3.0 \ + snap-0.2.1 \ + strsim-0.6.0 \ + syn-0.11.11 \ + synom-0.11.3 \ + term_size-0.3.0 \ + time-0.1.37 \ + toml-0.2.1 \ + toml-0.4.1 \ + twox-hash-1.1.0 \ + unicode-bidi-0.2.5 \ + unicode-normalization-0.1.4 \ + unicode-segmentation-1.1.0 \ + unicode-width-0.1.4 \ + unicode-xid-0.0.4 \ + url-1.4.0 \ + user32-sys-0.2.0 \ + vec_map-0.7.0 \ + winapi-0.2.8 \ + winapi-build-0.1.1 \ + ws2_32-sys-0.2.1 +CARGO_USE_GITHUB= yes + +.include Added: head/sysutils/flowgger/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/flowgger/distinfo Wed Jun 21 16:26:30 2017 (r444037) @@ -0,0 +1,171 @@ +TIMESTAMP = 1497641343 +SHA256 (rust/crates/ansi_term-0.9.0.tar.gz) = 23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6 +SIZE (rust/crates/ansi_term-0.9.0.tar.gz) = 11718 +SHA256 (rust/crates/atty-0.2.2.tar.gz) = d912da0db7fa85514874458ca3651fe2cddace8d0b0505571dbdcd41ab490159 +SIZE (rust/crates/atty-0.2.2.tar.gz) = 5124 +SHA256 (rust/crates/bitflags-0.8.2.tar.gz) = 1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4 +SIZE (rust/crates/bitflags-0.8.2.tar.gz) = 11200 +SHA256 (rust/crates/byteorder-0.5.3.tar.gz) = 0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855 +SIZE (rust/crates/byteorder-0.5.3.tar.gz) = 8643 +SHA256 (rust/crates/byteorder-1.0.0.tar.gz) = c40977b0ee6b9885c9013cd41d9feffdd22deb3bb4dc3a71d901cc7a77de18c8 +SIZE (rust/crates/byteorder-1.0.0.tar.gz) = 8450 +SHA256 (rust/crates/capnp-0.8.10.tar.gz) = c42526d461a93d8a990f30ba51245b6b46c0ed1a761133d2e4fe5b47a9527a45 +SIZE (rust/crates/capnp-0.8.10.tar.gz) = 53688 +SHA256 (rust/crates/capnpc-0.8.5.tar.gz) = fd1f714f4d68b673e31a78d6f5f077ed8baba1b10b7580251069b61163fccf41 +SIZE (rust/crates/capnpc-0.8.5.tar.gz) = 34736 +SHA256 (rust/crates/cargo_metadata-0.2.1.tar.gz) = 5d84cb53c78e573aa126a4b9f963fdb2629f8183b26e235da08bb36dc7381162 +SIZE (rust/crates/cargo_metadata-0.2.1.tar.gz) = 2064 +SHA256 (rust/crates/cfg-if-0.1.0.tar.gz) = de1e760d7b6535af4241fca8bd8adf68e2e7edacc6b29f5d399050c5e48cf88c +SIZE (rust/crates/cfg-if-0.1.0.tar.gz) = 2758 +SHA256 (rust/crates/chrono-0.3.1.tar.gz) = d9123be86fd2a8f627836c235ecdf331fdd067ecf7ac05aa1a68fbcf2429f056 +SIZE (rust/crates/chrono-0.3.1.tar.gz) = 110902 +SHA256 (rust/crates/clap-2.24.1.tar.gz) = b7541069be0b8aec41030802abe8b5cdef0490070afaa55418adea93b1e431e0 +SIZE (rust/crates/clap-2.24.1.tar.gz) = 178111 +SHA256 (rust/crates/context-1.0.1.tar.gz) = 7092f4d8395e0d78008911f93ee73f499d6eb1f0c41342718d8271d2d7c2ad8e +SIZE (rust/crates/context-1.0.1.tar.gz) = 433378 +SHA256 (rust/crates/crc-1.4.0.tar.gz) = bc1914fae6f18ae347320f0ba5e4fc270e17c037ea621fe41ec7e8adf67d11b0 +SIZE (rust/crates/crc-1.4.0.tar.gz) = 3443 +SHA256 (rust/crates/deque-0.3.2.tar.gz) = a694dae478589798d752c7125542f8a5ae8b6e59476172baf2eed67357bdfa27 +SIZE (rust/crates/deque-0.3.2.tar.gz) = 11432 +SHA256 (rust/crates/dtoa-0.2.2.tar.gz) = 0dd841b58510c9618291ffa448da2e4e0f699d984d436122372f446dae62263d +SIZE (rust/crates/dtoa-0.2.2.tar.gz) = 7747 +SHA256 (rust/crates/dtoa-0.4.1.tar.gz) = 80c8b71fd71146990a9742fc06dcbbde19161a267e0ad4e572c35162f4578c90 +SIZE (rust/crates/dtoa-0.4.1.tar.gz) = 73264 +SHA256 (rust/crates/flate2-0.2.19.tar.gz) = 36df0166e856739905cd3d7e0b210fe818592211a008862599845e012d8d304c +SIZE (rust/crates/flate2-0.2.19.tar.gz) = 55174 +SHA256 (rust/crates/fnv-1.0.5.tar.gz) = 6cc484842f1e2884faf56f529f960cc12ad8c71ce96cc7abba0a067c98fee344 +SIZE (rust/crates/fnv-1.0.5.tar.gz) = 6295 +SHA256 (rust/crates/foreign-types-0.2.0.tar.gz) = 3e4056b9bd47f8ac5ba12be771f77a0dae796d1bbaaf5fd0b9c2d38b69b8a29d +SIZE (rust/crates/foreign-types-0.2.0.tar.gz) = 7182 +SHA256 (rust/crates/gcc-0.3.46.tar.gz) = 181e3cebba1d663bd92eb90e2da787e10597e027eb00de8d742b260a7850948f +SIZE (rust/crates/gcc-0.3.46.tar.gz) = 26597 +SHA256 (rust/crates/gdi32-sys-0.2.0.tar.gz) = 0912515a8ff24ba900422ecda800b52f4016a56251922d397c576bf92c690518 +SIZE (rust/crates/gdi32-sys-0.2.0.tar.gz) = 7643 +SHA256 (rust/crates/idna-0.1.1.tar.gz) = 6ac85ec3f80c8e4e99d9325521337e14ec7555c458a14e377d189659a427f375 +SIZE (rust/crates/idna-0.1.1.tar.gz) = 248302 +SHA256 (rust/crates/iovec-0.1.0.tar.gz) = 29d062ee61fccdf25be172e70f34c9f6efc597e1fb8f6526e8437b2046ab26be +SIZE (rust/crates/iovec-0.1.0.tar.gz) = 7570 +SHA256 (rust/crates/itoa-0.1.1.tar.gz) = ae3088ea4baeceb0284ee9eea42f591226e6beaecf65373e41b38d95a1b8e7a1 +SIZE (rust/crates/itoa-0.1.1.tar.gz) = 1756 +SHA256 (rust/crates/itoa-0.3.1.tar.gz) = eb2f404fbc66fd9aac13e998248505e7ecb2ad8e44ab6388684c5fb11c6c251c +SIZE (rust/crates/itoa-0.3.1.tar.gz) = 73340 +SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d +SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 +SHA256 (rust/crates/lazy_static-0.2.8.tar.gz) = 3b37545ab726dd833ec6420aaba8231c5b320814b9029ad585555d2a03e94fbf +SIZE (rust/crates/lazy_static-0.2.8.tar.gz) = 9950 +SHA256 (rust/crates/lazycell-0.4.0.tar.gz) = ce12306c4739d86ee97c23139f3a34ddf0387bbf181bc7929d287025a8c3ef6b +SIZE (rust/crates/lazycell-0.4.0.tar.gz) = 8456 +SHA256 (rust/crates/libc-0.2.22.tar.gz) = babb8281da88cba992fa1f4ddec7d63ed96280a1a53ec9b919fd37b53d71e502 +SIZE (rust/crates/libc-0.2.22.tar.gz) = 133924 +SHA256 (rust/crates/linked-hash-map-0.3.0.tar.gz) = 6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd +SIZE (rust/crates/linked-hash-map-0.3.0.tar.gz) = 13693 +SHA256 (rust/crates/log-0.3.7.tar.gz) = 5141eca02775a762cc6cd564d8d2c50f67c0ea3a372cbf1c51592b3e029e10ad +SIZE (rust/crates/log-0.3.7.tar.gz) = 16352 +SHA256 (rust/crates/matches-0.1.4.tar.gz) = efd7622e3022e1a6eaa602c4cea8912254e5582c9c692e9167714182244801b1 +SIZE (rust/crates/matches-0.1.4.tar.gz) = 1530 +SHA256 (rust/crates/miniz-sys-0.1.9.tar.gz) = 28eaee17666671fa872e567547e8428e83308ebe5808cdf6a0e28397dbe2c726 +SIZE (rust/crates/miniz-sys-0.1.9.tar.gz) = 53242 +SHA256 (rust/crates/mio-0.6.7.tar.gz) = 6d19442734abd7d780b981c590c325680d933e99795fe1f693f0686c9ed48022 +SIZE (rust/crates/mio-0.6.7.tar.gz) = 87760 +SHA256 (rust/crates/miow-0.2.1.tar.gz) = 8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919 +SIZE (rust/crates/miow-0.2.1.tar.gz) = 21133 +SHA256 (rust/crates/net2-0.2.29.tar.gz) = bc01404e7568680f1259aa5729539f221cb1e6d047a0d9053cab4be8a73b5d67 +SIZE (rust/crates/net2-0.2.29.tar.gz) = 19349 +SHA256 (rust/crates/num-0.1.37.tar.gz) = 98b15ba84e910ea7a1973bccd3df7b31ae282bf9d8bd2897779950c9b8303d40 +SIZE (rust/crates/num-0.1.37.tar.gz) = 30152 +SHA256 (rust/crates/num-integer-0.1.34.tar.gz) = ef1a4bf6f9174aa5783a9b4cc892cacd11aebad6c69ad027a0b65c6ca5f8aa37 +SIZE (rust/crates/num-integer-0.1.34.tar.gz) = 10400 +SHA256 (rust/crates/num-iter-0.1.33.tar.gz) = f7d1891bd7b936f12349b7d1403761c8a0b85a18b148e9da4429d5d102c1a41e +SIZE (rust/crates/num-iter-0.1.33.tar.gz) = 7397 +SHA256 (rust/crates/num-traits-0.1.37.tar.gz) = e1cbfa3781f3fe73dc05321bed52a06d2d491eaa764c52335cf4399f046ece99 +SIZE (rust/crates/num-traits-0.1.37.tar.gz) = 20492 +SHA256 (rust/crates/openssl-0.9.12.tar.gz) = bb5d1663b73d10c6a3eda53e2e9d0346f822394e7b858d7257718f65f61dfbe2 +SIZE (rust/crates/openssl-0.9.12.tar.gz) = 123912 +SHA256 (rust/crates/openssl-sys-0.9.12.tar.gz) = 3a5886d87d3e2a0d890bf62dc8944f5e3769a405f7e1e9ef6e517e47fd7a0897 +SIZE (rust/crates/openssl-sys-0.9.12.tar.gz) = 33626 +SHA256 (rust/crates/pkg-config-0.3.9.tar.gz) = 3a8b4c6b8165cd1a1cd4b9b120978131389f64bdaf456435caa41e630edba903 +SIZE (rust/crates/pkg-config-0.3.9.tar.gz) = 11055 +SHA256 (rust/crates/quine-mc_cluskey-0.2.4.tar.gz) = 07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45 +SIZE (rust/crates/quine-mc_cluskey-0.2.4.tar.gz) = 5742 +SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a +SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/rand-0.3.15.tar.gz) = 022e0636ec2519ddae48154b028864bdce4eaf7d35226ab8e65c611be97b189d +SIZE (rust/crates/rand-0.3.15.tar.gz) = 55312 +SHA256 (rust/crates/redis-0.8.0.tar.gz) = 02a92e223490cc63d9230c4cdf132a48ce154ab1e063558e3841e219c2ea3f91 +SIZE (rust/crates/redis-0.8.0.tar.gz) = 37729 +SHA256 (rust/crates/redox_syscall-0.1.17.tar.gz) = 29dbdfd4b9df8ab31dec47c6087b7b13cbf4a776f335e4de8efba8288dda075b +SIZE (rust/crates/redox_syscall-0.1.17.tar.gz) = 11683 +SHA256 (rust/crates/ref_slice-1.1.1.tar.gz) = 825740057197b7d43025e7faf6477eaabc03434e153233da02d1f44602f71527 +SIZE (rust/crates/ref_slice-1.1.1.tar.gz) = 1089 +SHA256 (rust/crates/regex-syntax-0.4.0.tar.gz) = 2f9191b1f57603095f105d317e375d19b1c9c5c3185ea9633a99a6dcbed04457 +SIZE (rust/crates/regex-syntax-0.4.0.tar.gz) = 118223 +SHA256 (rust/crates/rustc-serialize-0.3.24.tar.gz) = dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda +SIZE (rust/crates/rustc-serialize-0.3.24.tar.gz) = 45926 +SHA256 (rust/crates/semver-0.6.0.tar.gz) = 7a3186ec9e65071a2095434b1f5bb24838d4e8e130f584c790f6033c79943537 +SIZE (rust/crates/semver-0.6.0.tar.gz) = 15598 +SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 +SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 +SHA256 (rust/crates/serde-0.8.23.tar.gz) = 9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8 +SIZE (rust/crates/serde-0.8.23.tar.gz) = 25824 +SHA256 (rust/crates/serde-1.0.4.tar.gz) = 991ef6be409a3b7a46cb9ee701d86156ce851825c65dbee7f16dbd5c4e7e2d47 +SIZE (rust/crates/serde-1.0.4.tar.gz) = 58841 +SHA256 (rust/crates/serde_derive-1.0.4.tar.gz) = 9fd81eef9f0b4ec341b11095335b6a4b28ed85581b12dd27585dee1529df35e0 +SIZE (rust/crates/serde_derive-1.0.4.tar.gz) = 23628 +SHA256 (rust/crates/serde_derive_internals-0.15.0.tar.gz) = 021c338d22c7e30f957a6ab7e388cb6098499dda9fd4ba1661ee074ca7a180d1 +SIZE (rust/crates/serde_derive_internals-0.15.0.tar.gz) = 16382 +SHA256 (rust/crates/serde_json-0.8.6.tar.gz) = 67f7d2e9edc3523a9c8ec8cd6ec481b3a27810aafee3e625d311febd3e656b4c +SIZE (rust/crates/serde_json-0.8.6.tar.gz) = 24422 +SHA256 (rust/crates/serde_json-1.0.2.tar.gz) = 48b04779552e92037212c3615370f6bd57a40ebba7f20e554ff9f55e41a69a7b +SIZE (rust/crates/serde_json-1.0.2.tar.gz) = 55422 +SHA256 (rust/crates/sha1-0.2.0.tar.gz) = cc30b1e1e8c40c121ca33b86c23308a090d19974ef001b4bf6e61fd1a0fb095c +SIZE (rust/crates/sha1-0.2.0.tar.gz) = 4258 +SHA256 (rust/crates/slab-0.3.0.tar.gz) = 17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23 +SIZE (rust/crates/slab-0.3.0.tar.gz) = 4807 +SHA256 (rust/crates/snap-0.2.1.tar.gz) = 25c978e9e02e5951111d84a39660a521b5084d008cf92f3e040bb3dac5d7b631 +SIZE (rust/crates/snap-0.2.1.tar.gz) = 1072209 +SHA256 (rust/crates/strsim-0.6.0.tar.gz) = b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694 +SIZE (rust/crates/strsim-0.6.0.tar.gz) = 8500 +SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad +SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 +SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 +SHA256 (rust/crates/term_size-0.3.0.tar.gz) = e2b6b55df3198cc93372e85dd2ed817f0e38ce8cc0f22eb32391bfad9c4bf209 +SIZE (rust/crates/term_size-0.3.0.tar.gz) = 9932 +SHA256 (rust/crates/time-0.1.37.tar.gz) = ffd7ccbf969a892bf83f1e441126968a07a3941c24ff522a26af9f9f4585d1a3 +SIZE (rust/crates/time-0.1.37.tar.gz) = 28346 +SHA256 (rust/crates/toml-0.2.1.tar.gz) = 736b60249cb25337bc196faa43ee12c705e426f3d55c214d73a4e7be06f92cb4 +SIZE (rust/crates/toml-0.2.1.tar.gz) = 47258 +SHA256 (rust/crates/toml-0.4.1.tar.gz) = 4cc5dbfb20a481e64b99eb7ae280859ec76730c7191570ba5edaa962394edb0a +SIZE (rust/crates/toml-0.4.1.tar.gz) = 54017 +SHA256 (rust/crates/twox-hash-1.1.0.tar.gz) = 475352206e7a290c5fccc27624a163e8d0d115f7bb60ca18a64fc9ce056d7435 +SIZE (rust/crates/twox-hash-1.1.0.tar.gz) = 7258 +SHA256 (rust/crates/unicode-bidi-0.2.5.tar.gz) = d3a078ebdd62c0e71a709c3d53d2af693fe09fe93fbff8344aebe289b78f9032 +SIZE (rust/crates/unicode-bidi-0.2.5.tar.gz) = 26886 +SHA256 (rust/crates/unicode-normalization-0.1.4.tar.gz) = e28fa37426fceeb5cf8f41ee273faa7c82c47dc8fba5853402841e665fcd86ff +SIZE (rust/crates/unicode-normalization-0.1.4.tar.gz) = 278063 +SHA256 (rust/crates/unicode-segmentation-1.1.0.tar.gz) = 18127285758f0e2c6cf325bb3f3d138a12fee27de4f23e146cd6a179f26c2cf3 +SIZE (rust/crates/unicode-segmentation-1.1.0.tar.gz) = 65559 +SHA256 (rust/crates/unicode-width-0.1.4.tar.gz) = bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f +SIZE (rust/crates/unicode-width-0.1.4.tar.gz) = 15283 +SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc +SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 +SHA256 (rust/crates/url-1.4.0.tar.gz) = f5ba8a749fb4479b043733416c244fa9d1d3af3d7c23804944651c8a448cb87e +SIZE (rust/crates/url-1.4.0.tar.gz) = 71598 +SHA256 (rust/crates/user32-sys-0.2.0.tar.gz) = 4ef4711d107b21b410a3a974b1204d9accc8b10dad75d8324b5d755de1617d47 +SIZE (rust/crates/user32-sys-0.2.0.tar.gz) = 10624 +SHA256 (rust/crates/vec_map-0.7.0.tar.gz) = f8cdc8b93bd0198ed872357fb2e667f7125646b1762f16d60b2c96350d361897 +SIZE (rust/crates/vec_map-0.7.0.tar.gz) = 13455 +SHA256 (rust/crates/winapi-0.2.8.tar.gz) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a +SIZE (rust/crates/winapi-0.2.8.tar.gz) = 455145 +SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc +SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 +SHA256 (rust/crates/ws2_32-sys-0.2.1.tar.gz) = d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e +SIZE (rust/crates/ws2_32-sys-0.2.1.tar.gz) = 4697 +SHA256 (jedisct1-flowgger-g20170616-fbb8313_GH0.tar.gz) = fad88b8d816764cf19c1d6a17f5e2e494015a7266594cda7d6570f41250fa26f +SIZE (jedisct1-flowgger-g20170616-fbb8313_GH0.tar.gz) = 103173 +SHA256 (Manishearth-rust-clippy-dfc7d2afd40bad878a145e783b4abce3dc30c0eb_GH0.tar.gz) = 2b3809aae1fa4fe3bdae1906ae8d946bbcab1e3c24bf28096f2b21e87a7bb313 +SIZE (Manishearth-rust-clippy-dfc7d2afd40bad878a145e783b4abce3dc30c0eb_GH0.tar.gz) = 309020 +SHA256 (zonyitoo-coio-rs-269eda9d9b67ca465ab2a1d790364654a90746fd_GH0.tar.gz) = 9306a0152724fd14a61637c18ad775fdc8060ae797c6f4776de0bef6deead197 +SIZE (zonyitoo-coio-rs-269eda9d9b67ca465ab2a1d790364654a90746fd_GH0.tar.gz) = 57696 +SHA256 (spicavigo-kafka-rust-38e046cf56877510e2a944e1a6cc36859b664ff5_GH0.tar.gz) = 1627dd86229905042be2551513abef73db0c752337a38191b33f6329fb73a531 +SIZE (spicavigo-kafka-rust-38e046cf56877510e2a944e1a6cc36859b664ff5_GH0.tar.gz) = 111556 Added: head/sysutils/flowgger/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/flowgger/pkg-descr Wed Jun 21 16:26:30 2017 (r444037) @@ -0,0 +1,21 @@ +Flowgger is a fast, simple and lightweight data collector. It reads +log entries over a given protocol, extracts them, decodes them using a +given format, re-encodes them into a different format, and +asynchronously pushes the result into a remote data store. + +Flowgger is designed to be: + +- Paranoid: it carefully validates input data to prevent injection of + malformed/incomplete records down the chain. +- Safe: written in Rust, without any unsafe code. +- Fast: even though messages are systematically parsed and validated, + Flowgger is orders of magnitude faster than Logstash and Fluentd. +- Standalone: it comes as a single executable file, and doesn't require a JVM. + +Flowgger supports common input types: stdin, UDP, TCP, TLS and Redis, +as well as multiple input formats: JSON (GELF), LTSV, Cap'n Proto and +RFC5424. Normalized messages can be sent to Kafka, Graylog, to +downstream Flowgger servers, or to other log collectors for further +processing. + +WWW: https://github.com/jedisct1/flowgger From owner-svn-ports-head@freebsd.org Wed Jun 21 16:28:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63D10D936BE; Wed, 21 Jun 2017 16:28:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F15BF72FD1; Wed, 21 Jun 2017 16:28:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGSo4l016107; Wed, 21 Jun 2017 16:28:50 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGSokU016103; Wed, 21 Jun 2017 16:28:50 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211628.v5LGSokU016103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:28:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444038 - in head/x11: . alacritty X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 16:28:52 -0000 Author: tobik Date: Wed Jun 21 16:28:50 2017 New Revision: 444038 URL: https://svnweb.freebsd.org/changeset/ports/444038 Log: New port: x11/alacritty Alacritty is the fastest terminal emulator in existence. Using the GPU for rendering enables optimizations that simply aren't possible in other emulators. Alacritty is focused on simplicity and performance. The performance goal means it should be faster than any other terminal emulator available. The simplicity goal means that it doesn't have many features like tabs or scroll back as in other terminals. Instead, it is expected that users of Alacritty make use of a terminal multiplexer such as tmux. WWW: https://github.com/jwilm/alacritty Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11162 Added: head/x11/alacritty/ head/x11/alacritty/Makefile (contents, props changed) head/x11/alacritty/distinfo (contents, props changed) head/x11/alacritty/pkg-descr (contents, props changed) Modified: head/x11/Makefile Modified: head/x11/Makefile ============================================================================== --- head/x11/Makefile Wed Jun 21 16:26:30 2017 (r444037) +++ head/x11/Makefile Wed Jun 21 16:28:50 2017 (r444038) @@ -6,6 +6,7 @@ SUBDIR += 3ddesktop SUBDIR += 9box SUBDIR += 9menu + SUBDIR += alacritty SUBDIR += alltray SUBDIR += altyo SUBDIR += antimicro Added: head/x11/alacritty/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/alacritty/Makefile Wed Jun 21 16:28:50 2017 (r444038) @@ -0,0 +1,173 @@ +# $FreeBSD$ + +PORTNAME= alacritty +PORTVERSION= g20170618 +CATEGORIES= x11 + +MAINTAINER= tobik@FreeBSD.org +COMMENT= GPU-accelerated terminal emulator + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE-APACHE + +BUILD_DEPENDS= cmake:devel/cmake +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= jwilm +GH_TAGNAME= 3c8514ba103d5d987d2269c421a3cc09e6784904 +GH_TUPLE= jwilm:glutin:cc64178d39a1fa06b2c5403117e5e0ef24deeac4:glutin \ + jwilm:rust-fontconfig:419135e5e1106ec0973dd4923bd9c70d8e438cc8:servofontconfig \ + jwilm:libfontconfig:618a52973d46e5cce4f054f6ee3bd2682167eee4:servofontconfigsys + +PLIST_FILES= bin/alacritty + +CARGO_CRATES= android_glue-0.2.2 \ + ansi_term-0.9.0 \ + arraydeque-0.2.3 \ + atty-0.2.2 \ + bitflags-0.3.3 \ + bitflags-0.4.0 \ + bitflags-0.7.0 \ + bitflags-0.8.2 \ + block-0.1.6 \ + byteorder-0.5.3 \ + bytes-0.3.0 \ + cfg-if-0.1.0 \ + cgl-0.1.5 \ + cgmath-0.7.0 \ + clap-2.24.2 \ + clippy-0.0.104 \ + clippy_lints-0.0.104 \ + cmake-0.1.24 \ + cocoa-0.3.3 \ + core-foundation-0.2.3 \ + core-foundation-0.3.0 \ + core-foundation-sys-0.2.3 \ + core-foundation-sys-0.3.1 \ + core-graphics-0.3.2 \ + core-graphics-0.8.1 \ + core-text-5.0.0 \ + crossbeam-0.2.10 \ + dlib-0.3.1 \ + dtoa-0.4.1 \ + dwmapi-sys-0.1.0 \ + errno-0.2.3 \ + euclid-0.12.0 \ + expat-sys-2.1.4 \ + filetime-0.1.10 \ + fnv-1.0.5 \ + freetype-rs-0.13.0 \ + freetype-sys-0.4.0 \ + fs2-0.2.5 \ + fsevent-0.2.16 \ + fsevent-sys-0.1.6 \ + gcc-0.3.49 \ + gdi32-sys-0.1.1 \ + gl_generator-0.5.3 \ + gleam-0.2.32 \ + heapsize-0.3.9 \ + inotify-0.2.3 \ + itoa-0.3.1 \ + kernel32-sys-0.2.2 \ + khronos_api-1.0.1 \ + lazy_static-0.1.16 \ + lazy_static-0.2.8 \ + lazycell-0.4.0 \ + libc-0.2.23 \ + libloading-0.3.4 \ + libz-sys-1.0.13 \ + linked-hash-map-0.3.0 \ + log-0.3.8 \ + malloc_buf-0.0.6 \ + matches-0.1.4 \ + memmap-0.2.3 \ + mio-0.5.1 \ + mio-0.6.2 \ + miow-0.1.5 \ + net2-0.2.29 \ + nix-0.5.1 \ + nix-0.7.0 \ + nodrop-0.1.9 \ + nom-1.2.4 \ + notify-2.6.3 \ + num-0.1.37 \ + num-bigint-0.1.37 \ + num-complex-0.1.37 \ + num-integer-0.1.34 \ + num-iter-0.1.33 \ + num-rational-0.1.36 \ + num-traits-0.1.37 \ + objc-0.2.2 \ + objc-foundation-0.1.1 \ + objc_id-0.1.0 \ + odds-0.2.25 \ + osmesa-sys-0.1.2 \ + owning_ref-0.2.4 \ + parking_lot-0.3.8 \ + parking_lot_core-0.2.2 \ + phf-0.7.21 \ + phf_codegen-0.7.21 \ + phf_generator-0.7.21 \ + phf_shared-0.7.21 \ + pkg-config-0.3.9 \ + quine-mc_cluskey-0.2.4 \ + quote-0.3.15 \ + rand-0.3.15 \ + redox_syscall-0.1.17 \ + regex-syntax-0.3.9 \ + rustc-serialize-0.3.24 \ + rustc_version-0.1.7 \ + semver-0.1.20 \ + semver-0.2.3 \ + serde-0.7.15 \ + serde-0.9.15 \ + serde_codegen_internals-0.14.2 \ + serde_derive-0.9.15 \ + serde_json-0.9.10 \ + serde_yaml-0.6.2 \ + shared_library-0.1.5 \ + shell32-sys-0.1.1 \ + siphasher-0.2.2 \ + slab-0.1.3 \ + slab-0.3.0 \ + smallvec-0.4.0 \ + strsim-0.6.0 \ + syn-0.11.11 \ + synom-0.11.3 \ + target_build_utils-0.3.1 \ + tempfile-2.1.5 \ + term_size-0.3.0 \ + thread-id-3.1.0 \ + time-0.1.37 \ + toml-0.1.30 \ + unicode-normalization-0.1.4 \ + unicode-segmentation-1.2.0 \ + unicode-width-0.1.4 \ + unicode-xid-0.0.4 \ + user32-sys-0.1.2 \ + utf8parse-0.1.0 \ + vec_map-0.8.0 \ + void-1.0.2 \ + vte-0.3.0 \ + walkdir-0.1.8 \ + wayland-client-0.5.12 \ + wayland-kbd-0.3.6 \ + wayland-scanner-0.5.11 \ + wayland-sys-0.5.11 \ + wayland-window-0.2.3 \ + winapi-0.2.8 \ + winapi-build-0.1.1 \ + ws2_32-sys-0.2.1 \ + x11-dl-2.14.0 \ + xdg-2.1.0 \ + xml-rs-0.3.6 \ + yaml-rust-0.3.5 +CARGO_USE_GITHUB= yes +CARGO_GH_CARGOTOML= ${CARGO_CARGOTOML} \ + ${WRKSRC}/font/Cargo.toml \ + ${WRKSRC_servofontconfig}/Cargo.toml + +.include Added: head/x11/alacritty/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/alacritty/distinfo Wed Jun 21 16:28:50 2017 (r444038) @@ -0,0 +1,291 @@ +TIMESTAMP = 1497756330 +SHA256 (rust/crates/android_glue-0.2.2.tar.gz) = d8289e9637439939cc92b1995b0972117905be88bc28116c86b64d6e589bcd38 +SIZE (rust/crates/android_glue-0.2.2.tar.gz) = 1407 +SHA256 (rust/crates/ansi_term-0.9.0.tar.gz) = 23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6 +SIZE (rust/crates/ansi_term-0.9.0.tar.gz) = 11718 +SHA256 (rust/crates/arraydeque-0.2.3.tar.gz) = 96e774cadb24c2245225280c6799793f9802b918a58a79615e9490607489a717 +SIZE (rust/crates/arraydeque-0.2.3.tar.gz) = 16820 +SHA256 (rust/crates/atty-0.2.2.tar.gz) = d912da0db7fa85514874458ca3651fe2cddace8d0b0505571dbdcd41ab490159 +SIZE (rust/crates/atty-0.2.2.tar.gz) = 5124 +SHA256 (rust/crates/bitflags-0.3.3.tar.gz) = 32866f4d103c4e438b1db1158aa1b1a80ee078e5d77a59a2f906fd62a577389c +SIZE (rust/crates/bitflags-0.3.3.tar.gz) = 9696 +SHA256 (rust/crates/bitflags-0.4.0.tar.gz) = 8dead7461c1127cf637931a1e50934eb6eee8bff2f74433ac7909e9afcee04a3 +SIZE (rust/crates/bitflags-0.4.0.tar.gz) = 10186 +SHA256 (rust/crates/bitflags-0.7.0.tar.gz) = aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d +SIZE (rust/crates/bitflags-0.7.0.tar.gz) = 10851 +SHA256 (rust/crates/bitflags-0.8.2.tar.gz) = 1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4 +SIZE (rust/crates/bitflags-0.8.2.tar.gz) = 11200 +SHA256 (rust/crates/block-0.1.6.tar.gz) = 0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a +SIZE (rust/crates/block-0.1.6.tar.gz) = 4077 +SHA256 (rust/crates/byteorder-0.5.3.tar.gz) = 0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855 +SIZE (rust/crates/byteorder-0.5.3.tar.gz) = 8643 +SHA256 (rust/crates/bytes-0.3.0.tar.gz) = c129aff112dcc562970abb69e2508b40850dd24c274761bb50fb8a0067ba6c27 +SIZE (rust/crates/bytes-0.3.0.tar.gz) = 17991 +SHA256 (rust/crates/cfg-if-0.1.0.tar.gz) = de1e760d7b6535af4241fca8bd8adf68e2e7edacc6b29f5d399050c5e48cf88c +SIZE (rust/crates/cfg-if-0.1.0.tar.gz) = 2758 +SHA256 (rust/crates/cgl-0.1.5.tar.gz) = 8bdd78cca65a739cb5475dbf6b6bbb49373e327f4a6f2b499c0f98632df38c10 +SIZE (rust/crates/cgl-0.1.5.tar.gz) = 7147 +SHA256 (rust/crates/cgmath-0.7.0.tar.gz) = 75e93b3eb66e74ffb946a69ff54c6026c1399960241c843f249ea0127b96b9f6 +SIZE (rust/crates/cgmath-0.7.0.tar.gz) = 41082 +SHA256 (rust/crates/clap-2.24.2.tar.gz) = 6b8f69e518f967224e628896b54e41ff6acfb4dcfefc5076325c36525dac900f +SIZE (rust/crates/clap-2.24.2.tar.gz) = 179198 +SHA256 (rust/crates/clippy-0.0.104.tar.gz) = ae3fb361e922a08b698e746d4f199ff2d1e8d4b5f1984eaf8881e720cf5b8e34 +SIZE (rust/crates/clippy-0.0.104.tar.gz) = 84473 +SHA256 (rust/crates/clippy_lints-0.0.104.tar.gz) = 70812027c1a8de9277d125557dce08262bc27508f2eb99592ad2d39a24a0b1c7 +SIZE (rust/crates/clippy_lints-0.0.104.tar.gz) = 159313 +SHA256 (rust/crates/cmake-0.1.24.tar.gz) = b8ebbb35d3dc9cd09497168f33de1acb79b265d350ab0ac34133b98f8509af1f +SIZE (rust/crates/cmake-0.1.24.tar.gz) = 11525 +SHA256 (rust/crates/cocoa-0.3.3.tar.gz) = 3afe4613f57a171039a98db1773f5840b5743cf85aaf03afb65ddfade4f4a9db +SIZE (rust/crates/cocoa-0.3.3.tar.gz) = 45593 +SHA256 (rust/crates/core-foundation-0.2.3.tar.gz) = 25bfd746d203017f7d5cbd31ee5d8e17f94b6521c7af77ece6c9e4b2d4b16c67 +SIZE (rust/crates/core-foundation-0.2.3.tar.gz) = 8323 +SHA256 (rust/crates/core-foundation-0.3.0.tar.gz) = f51ce3b8ebe311c56de14231eb57572c15abebd2d32b3bcb99bcdb9c101f5ac3 +SIZE (rust/crates/core-foundation-0.3.0.tar.gz) = 8333 +SHA256 (rust/crates/core-foundation-sys-0.2.3.tar.gz) = 065a5d7ffdcbc8fa145d6f0746f3555025b9097a9e9cda59f7467abae670c78d +SIZE (rust/crates/core-foundation-sys-0.2.3.tar.gz) = 9128 +SHA256 (rust/crates/core-foundation-sys-0.3.1.tar.gz) = 41115a6aa5d3e1e5ef98148373f25971d1fad53818553f216495f9e67e90a624 +SIZE (rust/crates/core-foundation-sys-0.3.1.tar.gz) = 9216 +SHA256 (rust/crates/core-graphics-0.3.2.tar.gz) = 0c56c6022ba22aedbaa7d231be545778becbe1c7aceda4c82ba2f2084dd4c723 +SIZE (rust/crates/core-graphics-0.3.2.tar.gz) = 10382 +SHA256 (rust/crates/core-graphics-0.8.1.tar.gz) = a9f841e9637adec70838c537cae52cb4c751cc6514ad05669b51d107c2021c79 +SIZE (rust/crates/core-graphics-0.8.1.tar.gz) = 14320 +SHA256 (rust/crates/core-text-5.0.0.tar.gz) = 74ba2a7abdccb94fb6c00822addef48504182b285aa45a30e78286487888fcb4 +SIZE (rust/crates/core-text-5.0.0.tar.gz) = 12454 +SHA256 (rust/crates/crossbeam-0.2.10.tar.gz) = 0c5ea215664ca264da8a9d9c3be80d2eaf30923c259d03e870388eb927508f97 +SIZE (rust/crates/crossbeam-0.2.10.tar.gz) = 32993 +SHA256 (rust/crates/dlib-0.3.1.tar.gz) = 148bce4ce1c36c4509f29cb54e62c2bd265551a9b00b38070fad551a851866ec +SIZE (rust/crates/dlib-0.3.1.tar.gz) = 3335 +SHA256 (rust/crates/dtoa-0.4.1.tar.gz) = 80c8b71fd71146990a9742fc06dcbbde19161a267e0ad4e572c35162f4578c90 +SIZE (rust/crates/dtoa-0.4.1.tar.gz) = 73264 +SHA256 (rust/crates/dwmapi-sys-0.1.0.tar.gz) = 07c4c7cc7b396419bc0a4d90371d0cee16cb5053b53647d287c0b728000c41fe +SIZE (rust/crates/dwmapi-sys-0.1.0.tar.gz) = 4076 +SHA256 (rust/crates/errno-0.2.3.tar.gz) = b2c858c42ac0b88532f48fca88b0ed947cad4f1f64d904bcd6c9f138f7b95d70 +SIZE (rust/crates/errno-0.2.3.tar.gz) = 3432 +SHA256 (rust/crates/euclid-0.12.0.tar.gz) = ba6ab6f0e63a602978f4b8cf8a43f87a1a475ddf32407f087d579a13cf06b114 +SIZE (rust/crates/euclid-0.12.0.tar.gz) = 28885 +SHA256 (rust/crates/expat-sys-2.1.4.tar.gz) = cef36cd1a8a02d28b91d97347c63247b9e4cb8a8e36df36f8201dc87a1c0859c +SIZE (rust/crates/expat-sys-2.1.4.tar.gz) = 8142638 +SHA256 (rust/crates/filetime-0.1.10.tar.gz) = 5363ab8e4139b8568a6237db5248646e5a8a2f89bd5ccb02092182b11fd3e922 +SIZE (rust/crates/filetime-0.1.10.tar.gz) = 8884 +SHA256 (rust/crates/fnv-1.0.5.tar.gz) = 6cc484842f1e2884faf56f529f960cc12ad8c71ce96cc7abba0a067c98fee344 +SIZE (rust/crates/fnv-1.0.5.tar.gz) = 6295 +SHA256 (rust/crates/freetype-rs-0.13.0.tar.gz) = a1418e2a055fec8efe18c1a90a54b2cf5e649e583830dd4c71226c4e3bc920c6 +SIZE (rust/crates/freetype-rs-0.13.0.tar.gz) = 103750 +SHA256 (rust/crates/freetype-sys-0.4.0.tar.gz) = eccfb6d96cac99921f0c2142a91765f6c219868a2c45bdfe7d65a08775f18127 +SIZE (rust/crates/freetype-sys-0.4.0.tar.gz) = 8463 +SHA256 (rust/crates/fs2-0.2.5.tar.gz) = bcd414e5a1a979b931bb92f41b7a54106d3f6d2e6c253e9ce943b7cd468251ef +SIZE (rust/crates/fs2-0.2.5.tar.gz) = 12661 +SHA256 (rust/crates/fsevent-0.2.16.tar.gz) = dfe593ebcfc76884138b25426999890b10da8e6a46d01b499d7c54c604672c38 +SIZE (rust/crates/fsevent-0.2.16.tar.gz) = 5465 +SHA256 (rust/crates/fsevent-sys-0.1.6.tar.gz) = 1a772d36c338d07a032d5375a36f15f9a7043bf0cb8ce7cee658e037c6032874 +SIZE (rust/crates/fsevent-sys-0.1.6.tar.gz) = 3397 +SHA256 (rust/crates/gcc-0.3.49.tar.gz) = 9be730064c122681712957ba1a9abaf082150be8aaf94526a805d900015b65b9 +SIZE (rust/crates/gcc-0.3.49.tar.gz) = 32992 +SHA256 (rust/crates/gdi32-sys-0.1.1.tar.gz) = 65256ec4dc2592e6f05bfc1ca3b956a4e0698aa90b1dff1f5687d55a5a3fd59a +SIZE (rust/crates/gdi32-sys-0.1.1.tar.gz) = 4886 +SHA256 (rust/crates/gl_generator-0.5.3.tar.gz) = 0940975a4ca12b088d32b5d5134826c47d2e73de4b0b459b05244c01503eccbb +SIZE (rust/crates/gl_generator-0.5.3.tar.gz) = 20972 +SHA256 (rust/crates/gleam-0.2.32.tar.gz) = 9590e0e578d528a080c5abac678e7efbe349a73c7316faafd4073edf5f462d01 +SIZE (rust/crates/gleam-0.2.32.tar.gz) = 11712 +SHA256 (rust/crates/heapsize-0.3.9.tar.gz) = 556cd479866cf85c3f671209c85e8a6990211c916d1002c2fcb2e9b7cf60bc36 +SIZE (rust/crates/heapsize-0.3.9.tar.gz) = 5764 +SHA256 (rust/crates/inotify-0.2.3.tar.gz) = e8458c07bdbdaf309c80e2c3304d14c3db64e7465d4f07cf589ccb83fd0ff31a +SIZE (rust/crates/inotify-0.2.3.tar.gz) = 8452 +SHA256 (rust/crates/itoa-0.3.1.tar.gz) = eb2f404fbc66fd9aac13e998248505e7ecb2ad8e44ab6388684c5fb11c6c251c +SIZE (rust/crates/itoa-0.3.1.tar.gz) = 73340 +SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d +SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 +SHA256 (rust/crates/khronos_api-1.0.1.tar.gz) = d5a08e2a31d665af8f1ca437eab6d00a93c9d62a549f73f9ed8fc2e55b5a91a7 +SIZE (rust/crates/khronos_api-1.0.1.tar.gz) = 558390 +SHA256 (rust/crates/lazy_static-0.1.16.tar.gz) = cf186d1a8aa5f5bee5fd662bc9c1b949e0259e1bcc379d1f006847b0080c7417 +SIZE (rust/crates/lazy_static-0.1.16.tar.gz) = 687730 +SHA256 (rust/crates/lazy_static-0.2.8.tar.gz) = 3b37545ab726dd833ec6420aaba8231c5b320814b9029ad585555d2a03e94fbf +SIZE (rust/crates/lazy_static-0.2.8.tar.gz) = 9950 +SHA256 (rust/crates/lazycell-0.4.0.tar.gz) = ce12306c4739d86ee97c23139f3a34ddf0387bbf181bc7929d287025a8c3ef6b +SIZE (rust/crates/lazycell-0.4.0.tar.gz) = 8456 +SHA256 (rust/crates/libc-0.2.23.tar.gz) = e7eb6b826bfc1fdea7935d46556250d1799b7fe2d9f7951071f4291710665e3e +SIZE (rust/crates/libc-0.2.23.tar.gz) = 153939 +SHA256 (rust/crates/libloading-0.3.4.tar.gz) = 0a020ac941774eb37e9d13d418c37b522e76899bfc4e7b1a600d529a53f83a66 +SIZE (rust/crates/libloading-0.3.4.tar.gz) = 14351 +SHA256 (rust/crates/libz-sys-1.0.13.tar.gz) = e5ee912a45d686d393d5ac87fac15ba0ba18daae14e8e7543c63ebf7fb7e970c +SIZE (rust/crates/libz-sys-1.0.13.tar.gz) = 602795 +SHA256 (rust/crates/linked-hash-map-0.3.0.tar.gz) = 6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd +SIZE (rust/crates/linked-hash-map-0.3.0.tar.gz) = 13693 +SHA256 (rust/crates/log-0.3.8.tar.gz) = 880f77541efa6e5cc74e76910c9884d9859683118839d6a1dc3b11e63512565b +SIZE (rust/crates/log-0.3.8.tar.gz) = 17756 +SHA256 (rust/crates/malloc_buf-0.0.6.tar.gz) = 62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb +SIZE (rust/crates/malloc_buf-0.0.6.tar.gz) = 1239 +SHA256 (rust/crates/matches-0.1.4.tar.gz) = efd7622e3022e1a6eaa602c4cea8912254e5582c9c692e9167714182244801b1 +SIZE (rust/crates/matches-0.1.4.tar.gz) = 1530 +SHA256 (rust/crates/memmap-0.2.3.tar.gz) = f20f72ed93291a72e22e8b16bb18762183bb4943f0f483da5b8be1a9e8192752 +SIZE (rust/crates/memmap-0.2.3.tar.gz) = 14438 +SHA256 (rust/crates/mio-0.5.1.tar.gz) = a637d1ca14eacae06296a008fa7ad955347e34efcb5891cfd8ba05491a37907e +SIZE (rust/crates/mio-0.5.1.tar.gz) = 50819 +SHA256 (rust/crates/mio-0.6.2.tar.gz) = 5b493dc9fd96bd2077f2117f178172b0765db4dfda3ea4d8000401e6d65d3e80 +SIZE (rust/crates/mio-0.6.2.tar.gz) = 57673 +SHA256 (rust/crates/miow-0.1.5.tar.gz) = 3e690c5df6b2f60acd45d56378981e827ff8295562fc8d34f573deb267a59cd1 +SIZE (rust/crates/miow-0.1.5.tar.gz) = 19921 +SHA256 (rust/crates/net2-0.2.29.tar.gz) = bc01404e7568680f1259aa5729539f221cb1e6d047a0d9053cab4be8a73b5d67 +SIZE (rust/crates/net2-0.2.29.tar.gz) = 19349 +SHA256 (rust/crates/nix-0.5.1.tar.gz) = bfb3ddedaa14746434a02041940495bf11325c22f6d36125d3bdd56090d50a79 +SIZE (rust/crates/nix-0.5.1.tar.gz) = 61605 +SHA256 (rust/crates/nix-0.7.0.tar.gz) = a0d95c5fa8b641c10ad0b8887454ebaafa3c92b5cd5350f8fc693adafd178e7b +SIZE (rust/crates/nix-0.7.0.tar.gz) = 70639 +SHA256 (rust/crates/nodrop-0.1.9.tar.gz) = 52cd74cd09beba596430cc6e3091b74007169a56246e1262f0ba451ea95117b2 +SIZE (rust/crates/nodrop-0.1.9.tar.gz) = 1959 +SHA256 (rust/crates/nom-1.2.4.tar.gz) = a5b8c256fd9471521bcb84c3cdba98921497f1a331cbc15b8030fc63b82050ce +SIZE (rust/crates/nom-1.2.4.tar.gz) = 68547 +SHA256 (rust/crates/notify-2.6.3.tar.gz) = 4e0e7eec936337952c4228b023007528a33b2fa039d96c2e8f32d764221a9c07 +SIZE (rust/crates/notify-2.6.3.tar.gz) = 21117 +SHA256 (rust/crates/num-0.1.37.tar.gz) = 98b15ba84e910ea7a1973bccd3df7b31ae282bf9d8bd2897779950c9b8303d40 +SIZE (rust/crates/num-0.1.37.tar.gz) = 30152 +SHA256 (rust/crates/num-bigint-0.1.37.tar.gz) = ba6d838b16e56da1b6c383d065ff1ec3c7d7797f65a3e8f6ba7092fd87820bac +SIZE (rust/crates/num-bigint-0.1.37.tar.gz) = 35577 +SHA256 (rust/crates/num-complex-0.1.37.tar.gz) = 148eb324ca772230853418731ffdf13531738b50f89b30692a01fcdcb0a64677 +SIZE (rust/crates/num-complex-0.1.37.tar.gz) = 13522 +SHA256 (rust/crates/num-integer-0.1.34.tar.gz) = ef1a4bf6f9174aa5783a9b4cc892cacd11aebad6c69ad027a0b65c6ca5f8aa37 +SIZE (rust/crates/num-integer-0.1.34.tar.gz) = 10400 +SHA256 (rust/crates/num-iter-0.1.33.tar.gz) = f7d1891bd7b936f12349b7d1403761c8a0b85a18b148e9da4429d5d102c1a41e +SIZE (rust/crates/num-iter-0.1.33.tar.gz) = 7397 +SHA256 (rust/crates/num-rational-0.1.36.tar.gz) = c2dc5ea04020a8f18318ae485c751f8cfa1c0e69dcf465c29ddaaa64a313cc44 +SIZE (rust/crates/num-rational-0.1.36.tar.gz) = 12556 +SHA256 (rust/crates/num-traits-0.1.37.tar.gz) = e1cbfa3781f3fe73dc05321bed52a06d2d491eaa764c52335cf4399f046ece99 +SIZE (rust/crates/num-traits-0.1.37.tar.gz) = 20492 +SHA256 (rust/crates/objc-0.2.2.tar.gz) = 877f30f37acef6749b1841cceab289707f211aecfc756553cd63976190e6cc2e +SIZE (rust/crates/objc-0.2.2.tar.gz) = 17787 +SHA256 (rust/crates/objc-foundation-0.1.1.tar.gz) = 1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9 +SIZE (rust/crates/objc-foundation-0.1.1.tar.gz) = 9063 +SHA256 (rust/crates/objc_id-0.1.0.tar.gz) = e4730aa1c64d722db45f7ccc4113a3e2c465d018de6db4d3e7dfe031e8c8a297 +SIZE (rust/crates/objc_id-0.1.0.tar.gz) = 3341 +SHA256 (rust/crates/odds-0.2.25.tar.gz) = c3df9b730298cea3a1c3faa90b7e2f9df3a9c400d0936d6015e6165734eefcba +SIZE (rust/crates/odds-0.2.25.tar.gz) = 25997 +SHA256 (rust/crates/osmesa-sys-0.1.2.tar.gz) = 88cfece6e95d2e717e0872a7f53a8684712ad13822a7979bc760b9c77ec0013b +SIZE (rust/crates/osmesa-sys-0.1.2.tar.gz) = 1322 +SHA256 (rust/crates/owning_ref-0.2.4.tar.gz) = 9d52571ddcb42e9c900c901a18d8d67e393df723fcd51dd59c5b1a85d0acb6cc +SIZE (rust/crates/owning_ref-0.2.4.tar.gz) = 9112 +SHA256 (rust/crates/parking_lot-0.3.8.tar.gz) = fa12d706797d42551663426a45e2db2e0364bd1dbf6aeada87e89c5f981f43e9 +SIZE (rust/crates/parking_lot-0.3.8.tar.gz) = 31180 +SHA256 (rust/crates/parking_lot_core-0.2.2.tar.gz) = 0ad2c4d148942b3560034785bf19df586ebba53351e8c78f84984147d5795eef +SIZE (rust/crates/parking_lot_core-0.2.2.tar.gz) = 18763 +SHA256 (rust/crates/phf-0.7.21.tar.gz) = cb325642290f28ee14d8c6201159949a872f220c62af6e110a56ea914fbe42fc +SIZE (rust/crates/phf-0.7.21.tar.gz) = 3484 +SHA256 (rust/crates/phf_codegen-0.7.21.tar.gz) = d62594c0bb54c464f633175d502038177e90309daf2e0158be42ed5f023ce88f +SIZE (rust/crates/phf_codegen-0.7.21.tar.gz) = 2498 +SHA256 (rust/crates/phf_generator-0.7.21.tar.gz) = 6b07ffcc532ccc85e3afc45865469bf5d9e4ef5bfcf9622e3cfe80c2d275ec03 +SIZE (rust/crates/phf_generator-0.7.21.tar.gz) = 1821 +SHA256 (rust/crates/phf_shared-0.7.21.tar.gz) = 07e24b0ca9643bdecd0632f2b3da6b1b89bbb0030e0b992afc1113b23a7bc2f2 +SIZE (rust/crates/phf_shared-0.7.21.tar.gz) = 1692 +SHA256 (rust/crates/pkg-config-0.3.9.tar.gz) = 3a8b4c6b8165cd1a1cd4b9b120978131389f64bdaf456435caa41e630edba903 +SIZE (rust/crates/pkg-config-0.3.9.tar.gz) = 11055 +SHA256 (rust/crates/quine-mc_cluskey-0.2.4.tar.gz) = 07589615d719a60c8dd8a4622e7946465dfef20d1a428f969e3443e7386d5f45 +SIZE (rust/crates/quine-mc_cluskey-0.2.4.tar.gz) = 5742 +SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a +SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/rand-0.3.15.tar.gz) = 022e0636ec2519ddae48154b028864bdce4eaf7d35226ab8e65c611be97b189d +SIZE (rust/crates/rand-0.3.15.tar.gz) = 55312 +SHA256 (rust/crates/redox_syscall-0.1.17.tar.gz) = 29dbdfd4b9df8ab31dec47c6087b7b13cbf4a776f335e4de8efba8288dda075b +SIZE (rust/crates/redox_syscall-0.1.17.tar.gz) = 11683 +SHA256 (rust/crates/regex-syntax-0.3.9.tar.gz) = f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957 +SIZE (rust/crates/regex-syntax-0.3.9.tar.gz) = 117427 +SHA256 (rust/crates/rustc-serialize-0.3.24.tar.gz) = dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda +SIZE (rust/crates/rustc-serialize-0.3.24.tar.gz) = 45926 +SHA256 (rust/crates/rustc_version-0.1.7.tar.gz) = c5f5376ea5e30ce23c03eb77cbe4962b988deead10910c372b226388b594c084 +SIZE (rust/crates/rustc_version-0.1.7.tar.gz) = 8816 +SHA256 (rust/crates/semver-0.1.20.tar.gz) = d4f410fedcf71af0345d7607d246e7ad15faaadd49d240ee3b24e5dc21a820ac +SIZE (rust/crates/semver-0.1.20.tar.gz) = 15876 +SHA256 (rust/crates/semver-0.2.3.tar.gz) = 2d5b7638a1f03815d94e88cb3b3c08e87f0db4d683ef499d1836aaf70a45623f +SIZE (rust/crates/semver-0.2.3.tar.gz) = 18500 +SHA256 (rust/crates/serde-0.7.15.tar.gz) = 1b0e0732aa8ec4267f61815a396a942ba3525062e3bd5520aa8419927cfc0a92 +SIZE (rust/crates/serde-0.7.15.tar.gz) = 22719 +SHA256 (rust/crates/serde-0.9.15.tar.gz) = 34b623917345a631dc9608d5194cc206b3fe6c3554cd1c75b937e55e285254af +SIZE (rust/crates/serde-0.9.15.tar.gz) = 54344 +SHA256 (rust/crates/serde_codegen_internals-0.14.2.tar.gz) = bc888bd283bd2420b16ad0d860e35ad8acb21941180a83a189bb2046f9d00400 +SIZE (rust/crates/serde_codegen_internals-0.14.2.tar.gz) = 12379 +SHA256 (rust/crates/serde_derive-0.9.15.tar.gz) = 978fd866f4d4872084a81ccc35e275158351d3b9fe620074e7d7504b816b74ba +SIZE (rust/crates/serde_derive-0.9.15.tar.gz) = 20269 +SHA256 (rust/crates/serde_json-0.9.10.tar.gz) = ad8bcf487be7d2e15d3d543f04312de991d631cfe1b43ea0ade69e6a8a5b16a1 +SIZE (rust/crates/serde_json-0.9.10.tar.gz) = 47696 +SHA256 (rust/crates/serde_yaml-0.6.2.tar.gz) = f8bd3f24ad8c7bcd34a6d70ba676dc11302b96f4f166aa5f947762e01098844d +SIZE (rust/crates/serde_yaml-0.6.2.tar.gz) = 11451 +SHA256 (rust/crates/shared_library-0.1.5.tar.gz) = fb04126b6fcfd2710fb5b6d18f4207b6c535f2850a7e1a43bcd526d44f30a79a +SIZE (rust/crates/shared_library-0.1.5.tar.gz) = 5467 +SHA256 (rust/crates/shell32-sys-0.1.1.tar.gz) = 72f20b8f3c060374edb8046591ba28f62448c369ccbdc7b02075103fb3a9e38d +SIZE (rust/crates/shell32-sys-0.1.1.tar.gz) = 5664 +SHA256 (rust/crates/siphasher-0.2.2.tar.gz) = 0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537 +SIZE (rust/crates/siphasher-0.2.2.tar.gz) = 8386 +SHA256 (rust/crates/slab-0.1.3.tar.gz) = d807fd58c4181bbabed77cb3b891ba9748241a552bcc5be698faaebefc54f46e +SIZE (rust/crates/slab-0.1.3.tar.gz) = 4508 +SHA256 (rust/crates/slab-0.3.0.tar.gz) = 17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23 +SIZE (rust/crates/slab-0.3.0.tar.gz) = 4807 +SHA256 (rust/crates/smallvec-0.4.0.tar.gz) = 2e40af10aafe98b4d8294ae8388d8a5cd0707c65d364872efe72d063ec44bee0 +SIZE (rust/crates/smallvec-0.4.0.tar.gz) = 9433 +SHA256 (rust/crates/strsim-0.6.0.tar.gz) = b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694 +SIZE (rust/crates/strsim-0.6.0.tar.gz) = 8500 +SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad +SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 +SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 +SHA256 (rust/crates/target_build_utils-0.3.1.tar.gz) = 013d134ae4a25ee744ad6129db589018558f620ddfa44043887cdd45fa08e75c +SIZE (rust/crates/target_build_utils-0.3.1.tar.gz) = 7669 +SHA256 (rust/crates/tempfile-2.1.5.tar.gz) = 3213fd2b7ed87e39306737ccfac04b1233b57a33ca64cfbf52f2ffaa2b765e2f +SIZE (rust/crates/tempfile-2.1.5.tar.gz) = 14286 +SHA256 (rust/crates/term_size-0.3.0.tar.gz) = e2b6b55df3198cc93372e85dd2ed817f0e38ce8cc0f22eb32391bfad9c4bf209 +SIZE (rust/crates/term_size-0.3.0.tar.gz) = 9932 +SHA256 (rust/crates/thread-id-3.1.0.tar.gz) = 8df7875b676fddfadffd96deea3b1124e5ede707d4884248931077518cf1f773 +SIZE (rust/crates/thread-id-3.1.0.tar.gz) = 7195 +SHA256 (rust/crates/time-0.1.37.tar.gz) = ffd7ccbf969a892bf83f1e441126968a07a3941c24ff522a26af9f9f4585d1a3 +SIZE (rust/crates/time-0.1.37.tar.gz) = 28346 +SHA256 (rust/crates/toml-0.1.30.tar.gz) = 0590d72182e50e879c4da3b11c6488dae18fccb1ae0c7a3eda18e16795844796 +SIZE (rust/crates/toml-0.1.30.tar.gz) = 45082 +SHA256 (rust/crates/unicode-normalization-0.1.4.tar.gz) = e28fa37426fceeb5cf8f41ee273faa7c82c47dc8fba5853402841e665fcd86ff +SIZE (rust/crates/unicode-normalization-0.1.4.tar.gz) = 278063 +SHA256 (rust/crates/unicode-segmentation-1.2.0.tar.gz) = a8083c594e02b8ae1654ae26f0ade5158b119bd88ad0e8227a5d8fcd72407946 +SIZE (rust/crates/unicode-segmentation-1.2.0.tar.gz) = 67562 +SHA256 (rust/crates/unicode-width-0.1.4.tar.gz) = bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f +SIZE (rust/crates/unicode-width-0.1.4.tar.gz) = 15283 +SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc +SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 +SHA256 (rust/crates/user32-sys-0.1.2.tar.gz) = 6717129de5ac253f5642fc78a51d0c7de6f9f53d617fc94e9bae7f6e71cf5504 +SIZE (rust/crates/user32-sys-0.1.2.tar.gz) = 10676 +SHA256 (rust/crates/utf8parse-0.1.0.tar.gz) = a15ea87f3194a3a454c78d79082b4f5e85f6956ddb6cb86bbfbe4892aa3c0323 +SIZE (rust/crates/utf8parse-0.1.0.tar.gz) = 2927 +SHA256 (rust/crates/vec_map-0.8.0.tar.gz) = 887b5b631c2ad01628bbbaa7dd4c869f80d3186688f8d0b6f58774fbe324988c +SIZE (rust/crates/vec_map-0.8.0.tar.gz) = 13742 +SHA256 (rust/crates/void-1.0.2.tar.gz) = 6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d +SIZE (rust/crates/void-1.0.2.tar.gz) = 2356 +SHA256 (rust/crates/vte-0.3.0.tar.gz) = f357f71e07dd81c9422387aa7225f6477909403ee2ac933a819cecccd2997003 +SIZE (rust/crates/vte-0.3.0.tar.gz) = 12326 +SHA256 (rust/crates/walkdir-0.1.8.tar.gz) = c66c0b9792f0a765345452775f3adbd28dde9d33f30d13e5dcc5ae17cf6f3780 +SIZE (rust/crates/walkdir-0.1.8.tar.gz) = 19807 +SHA256 (rust/crates/wayland-client-0.5.12.tar.gz) = ced3094c157b5cc0a08d40530e1a627d9f88b9a436971338d2646439128a559e +SIZE (rust/crates/wayland-client-0.5.12.tar.gz) = 29634 +SHA256 (rust/crates/wayland-kbd-0.3.6.tar.gz) = 73bc10e84c1da90777beffecd24742baea17564ffc2a9918af41871c748eb050 +SIZE (rust/crates/wayland-kbd-0.3.6.tar.gz) = 46701 +SHA256 (rust/crates/wayland-scanner-0.5.11.tar.gz) = 5a1869370d6bafcbabae8724511d803f4e209a70e94ad94a4249269534364f66 +SIZE (rust/crates/wayland-scanner-0.5.11.tar.gz) = 9054 +SHA256 (rust/crates/wayland-sys-0.5.11.tar.gz) = 9633f7fe5de56544215f82eaf1b76bf1b584becf7f08b58cbef4c2c7d10e803a +SIZE (rust/crates/wayland-sys-0.5.11.tar.gz) = 4343 +SHA256 (rust/crates/wayland-window-0.2.3.tar.gz) = 309b69d3a863c9c21422d889fb7d98cf02f8a2ca054960a49243ce5b67ad884c +SIZE (rust/crates/wayland-window-0.2.3.tar.gz) = 9224 +SHA256 (rust/crates/winapi-0.2.8.tar.gz) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a +SIZE (rust/crates/winapi-0.2.8.tar.gz) = 455145 +SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc +SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 +SHA256 (rust/crates/ws2_32-sys-0.2.1.tar.gz) = d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e +SIZE (rust/crates/ws2_32-sys-0.2.1.tar.gz) = 4697 +SHA256 (rust/crates/x11-dl-2.14.0.tar.gz) = 326c500cdc166fd7c70dd8c8a829cd5c0ce7be5a5d98c25817de2b9bdc67faf8 +SIZE (rust/crates/x11-dl-2.14.0.tar.gz) = 59709 +SHA256 (rust/crates/xdg-2.1.0.tar.gz) = a66b7c2281ebde13cf4391d70d4c7e5946c3c25e72a7b859ca8f677dcd0b0c61 +SIZE (rust/crates/xdg-2.1.0.tar.gz) = 12444 +SHA256 (rust/crates/xml-rs-0.3.6.tar.gz) = 7ec6c39eaa68382c8e31e35239402c0a9489d4141a8ceb0c716099a0b515b562 +SIZE (rust/crates/xml-rs-0.3.6.tar.gz) = 48158 +SHA256 (rust/crates/yaml-rust-0.3.5.tar.gz) = e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992 +SIZE (rust/crates/yaml-rust-0.3.5.tar.gz) = 42087 +SHA256 (jwilm-alacritty-g20170618-3c8514ba103d5d987d2269c421a3cc09e6784904_GH0.tar.gz) = c384b7d76d04d0cf47722570b6c59739226e6a41a37bf7348c00510043261887 +SIZE (jwilm-alacritty-g20170618-3c8514ba103d5d987d2269c421a3cc09e6784904_GH0.tar.gz) = 271349 +SHA256 (jwilm-glutin-cc64178d39a1fa06b2c5403117e5e0ef24deeac4_GH0.tar.gz) = ef0152b30722f4106e06354fcb42d6bb77b9da5331d25dfea92ae30277796fc7 +SIZE (jwilm-glutin-cc64178d39a1fa06b2c5403117e5e0ef24deeac4_GH0.tar.gz) = 110526 +SHA256 (jwilm-rust-fontconfig-419135e5e1106ec0973dd4923bd9c70d8e438cc8_GH0.tar.gz) = 8fdda5bd03e66fab61e02767591f2e55cbc39e1620cb20f2b440339dad112a8f +SIZE (jwilm-rust-fontconfig-419135e5e1106ec0973dd4923bd9c70d8e438cc8_GH0.tar.gz) = 9200 +SHA256 (jwilm-libfontconfig-618a52973d46e5cce4f054f6ee3bd2682167eee4_GH0.tar.gz) = 8f3221f35108edad6e90016c80c5d8452bf53a5860f160e992eb7c78392c3346 +SIZE (jwilm-libfontconfig-618a52973d46e5cce4f054f6ee3bd2682167eee4_GH0.tar.gz) = 1800055 Added: head/x11/alacritty/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/alacritty/pkg-descr Wed Jun 21 16:28:50 2017 (r444038) @@ -0,0 +1,12 @@ +Alacritty is the fastest terminal emulator in existence. Using the +GPU for rendering enables optimizations that simply aren't possible in +other emulators. + +Alacritty is focused on simplicity and performance. The performance +goal means it should be faster than any other terminal emulator +available. The simplicity goal means that it doesn't have many +features like tabs or scroll back as in other terminals. Instead, it +is expected that users of Alacritty make use of a terminal multiplexer +such as tmux. + +WWW: https://github.com/jwilm/alacritty From owner-svn-ports-head@freebsd.org Wed Jun 21 16:30:50 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F7E1D937E3; Wed, 21 Jun 2017 16:30:50 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C61173196; Wed, 21 Jun 2017 16:30:49 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGUnm6018444; Wed, 21 Jun 2017 16:30:49 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGUm4K018340; Wed, 21 Jun 2017 16:30:48 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211630.v5LGUm4K018340@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:30:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444039 - in head/editors: . xi-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: Wed, 21 Jun 2017 16:30:50 -0000 Author: tobik Date: Wed Jun 21 16:30:48 2017 New Revision: 444039 URL: https://svnweb.freebsd.org/changeset/ports/444039 Log: New port: editors/xi-core The xi editor project is an attempt to build a high quality text editor, using modern software engineering techniques. Goals include: - Incredibly high performance. All editing operations should commit and paint in under 16ms. The editor should never make you wait for anything. - Beauty. The editor should fit well on a modern desktop, and not look like a throwback from the '80s or '90s. Text drawing should be done with the best technology available (Core Text on Mac, DirectWrite on Windows, etc.), and support Unicode fully. - Reliability. Crashing, hanging, or losing work should never happen. - Developer friendliness. It should be easy to customize xi editor, whether by adding plug-ins or hacking on the core. WWW: https://github.com/google/xi-editor Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11162 Added: head/editors/xi-core/ head/editors/xi-core/Makefile (contents, props changed) head/editors/xi-core/distinfo (contents, props changed) head/editors/xi-core/pkg-descr (contents, props changed) Modified: head/editors/Makefile Modified: head/editors/Makefile ============================================================================== --- head/editors/Makefile Wed Jun 21 16:28:50 2017 (r444038) +++ head/editors/Makefile Wed Jun 21 16:30:48 2017 (r444039) @@ -247,6 +247,7 @@ SUBDIR += wordgrinder SUBDIR += xcoral SUBDIR += xed + SUBDIR += xi-core SUBDIR += xmlcopyeditor SUBDIR += xvile SUBDIR += yudit Added: head/editors/xi-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/xi-core/Makefile Wed Jun 21 16:30:48 2017 (r444039) @@ -0,0 +1,45 @@ +# $FreeBSD$ + +PORTNAME= xi-core +PORTVERSION= g20170612 +DISTVERSIONPREFIX= v +CATEGORIES= editors + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Modern editor backend written in Rust + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/../LICENSE + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= google +GH_PROJECT= xi-editor +GH_TAGNAME= 3164cb6 + +WRKSRC_SUBDIR= rust + +PLIST_FILES= bin/xi-core + +CARGO_CRATES= bytecount-0.1.6 \ + crossbeam-0.2.10 \ + dtoa-0.4.1 \ + itoa-0.3.1 \ + kernel32-sys-0.2.2 \ + libc-0.2.23 \ + memchr-1.0.1 \ + num-traits-0.1.37 \ + quote-0.3.15 \ + redox_syscall-0.1.17 \ + serde-1.0.2 \ + serde_derive-1.0.2 \ + serde_derive_internals-0.15.0 \ + serde_json-1.0.1 \ + syn-0.11.11 \ + synom-0.11.3 \ + time-0.1.37 \ + unicode-xid-0.0.4 \ + winapi-0.2.8 \ + winapi-build-0.1.1 + +.include Added: head/editors/xi-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/xi-core/distinfo Wed Jun 21 16:30:48 2017 (r444039) @@ -0,0 +1,43 @@ +TIMESTAMP = 1497447050 +SHA256 (rust/crates/bytecount-0.1.6.tar.gz) = 1e8f09fbc8c6726a4b616dcfbd4f54491068d6bb1b93ac03c78ac18ff9a5924a +SIZE (rust/crates/bytecount-0.1.6.tar.gz) = 9435 +SHA256 (rust/crates/crossbeam-0.2.10.tar.gz) = 0c5ea215664ca264da8a9d9c3be80d2eaf30923c259d03e870388eb927508f97 +SIZE (rust/crates/crossbeam-0.2.10.tar.gz) = 32993 +SHA256 (rust/crates/dtoa-0.4.1.tar.gz) = 80c8b71fd71146990a9742fc06dcbbde19161a267e0ad4e572c35162f4578c90 +SIZE (rust/crates/dtoa-0.4.1.tar.gz) = 73264 +SHA256 (rust/crates/itoa-0.3.1.tar.gz) = eb2f404fbc66fd9aac13e998248505e7ecb2ad8e44ab6388684c5fb11c6c251c +SIZE (rust/crates/itoa-0.3.1.tar.gz) = 73340 +SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d +SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 +SHA256 (rust/crates/libc-0.2.23.tar.gz) = e7eb6b826bfc1fdea7935d46556250d1799b7fe2d9f7951071f4291710665e3e +SIZE (rust/crates/libc-0.2.23.tar.gz) = 153939 +SHA256 (rust/crates/memchr-1.0.1.tar.gz) = 1dbccc0e46f1ea47b9f17e6d67c5a96bd27030519c519c9c91327e31275a47b4 +SIZE (rust/crates/memchr-1.0.1.tar.gz) = 8221 +SHA256 (rust/crates/num-traits-0.1.37.tar.gz) = e1cbfa3781f3fe73dc05321bed52a06d2d491eaa764c52335cf4399f046ece99 +SIZE (rust/crates/num-traits-0.1.37.tar.gz) = 20492 +SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a +SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/redox_syscall-0.1.17.tar.gz) = 29dbdfd4b9df8ab31dec47c6087b7b13cbf4a776f335e4de8efba8288dda075b +SIZE (rust/crates/redox_syscall-0.1.17.tar.gz) = 11683 +SHA256 (rust/crates/serde-1.0.2.tar.gz) = 3b46a59dd63931010fdb1d88538513f3279090d88b5c22ef4fe8440cfffcc6e3 +SIZE (rust/crates/serde-1.0.2.tar.gz) = 58548 +SHA256 (rust/crates/serde_derive-1.0.2.tar.gz) = 6c06b68790963518008b8ae0152d48be4bbbe77015d2c717f6282eea1824be9a +SIZE (rust/crates/serde_derive-1.0.2.tar.gz) = 23633 +SHA256 (rust/crates/serde_derive_internals-0.15.0.tar.gz) = 021c338d22c7e30f957a6ab7e388cb6098499dda9fd4ba1661ee074ca7a180d1 +SIZE (rust/crates/serde_derive_internals-0.15.0.tar.gz) = 16382 +SHA256 (rust/crates/serde_json-1.0.1.tar.gz) = 1c62115693d0a9ed8c32d1c760f0fdbe7d4b05cb13c135b9b54137ac0d59fccb +SIZE (rust/crates/serde_json-1.0.1.tar.gz) = 55365 +SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad +SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 +SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 +SHA256 (rust/crates/time-0.1.37.tar.gz) = ffd7ccbf969a892bf83f1e441126968a07a3941c24ff522a26af9f9f4585d1a3 +SIZE (rust/crates/time-0.1.37.tar.gz) = 28346 +SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc +SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 +SHA256 (rust/crates/winapi-0.2.8.tar.gz) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a +SIZE (rust/crates/winapi-0.2.8.tar.gz) = 455145 +SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc +SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 +SHA256 (google-xi-editor-vg20170612-3164cb6_GH0.tar.gz) = d1a29be0ee2e69191cc250bcd0ba51600887c956b76f58ef94e6eba76fcd6c04 +SIZE (google-xi-editor-vg20170612-3164cb6_GH0.tar.gz) = 811394 Added: head/editors/xi-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/xi-core/pkg-descr Wed Jun 21 16:30:48 2017 (r444039) @@ -0,0 +1,16 @@ +The xi editor project is an attempt to build a high quality text +editor, using modern software engineering techniques. + +Goals include: +- Incredibly high performance. All editing operations should commit + and paint in under 16ms. The editor should never make you wait for + anything. +- Beauty. The editor should fit well on a modern desktop, and not look + like a throwback from the '80s or '90s. Text drawing should be done + with the best technology available (Core Text on Mac, DirectWrite on + Windows, etc.), and support Unicode fully. +- Reliability. Crashing, hanging, or losing work should never happen. +- Developer friendliness. It should be easy to customize xi editor, + whether by adding plug-ins or hacking on the core. + +WWW: https://github.com/google/xi-editor From owner-svn-ports-head@freebsd.org Wed Jun 21 16:39:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 900E1D93B76; Wed, 21 Jun 2017 16:39:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B593737C3; Wed, 21 Jun 2017 16:39:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LGdeqq020385; Wed, 21 Jun 2017 16:39:40 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LGde0n020380; Wed, 21 Jun 2017 16:39:40 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201706211639.v5LGde0n020380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Jun 2017 16:39:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444040 - in head/devel: . bingrep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 16:39:41 -0000 Author: tobik Date: Wed Jun 21 16:39:39 2017 New Revision: 444040 URL: https://svnweb.freebsd.org/changeset/ports/444040 Log: New port: devel/bingrep Greps through binaries from various OSs and architectures, and colors them. Current backends: - ELF 32/64, arm, x86, openrisc - all others will parse and color, but relocations won't show properly - Mach 32/64, arm, x86 - PE (debug only) WWW: https://github.com/m4b/bingrep Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D11162 Added: head/devel/bingrep/ head/devel/bingrep/Makefile (contents, props changed) head/devel/bingrep/distinfo (contents, props changed) head/devel/bingrep/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 21 16:30:48 2017 (r444039) +++ head/devel/Makefile Wed Jun 21 16:39:39 2017 (r444040) @@ -182,6 +182,7 @@ SUBDIR += bglibs SUBDIR += bicyclerepair SUBDIR += bin86 + SUBDIR += bingrep SUBDIR += binutils SUBDIR += bison SUBDIR += bisoncpp Added: head/devel/bingrep/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bingrep/Makefile Wed Jun 21 16:39:39 2017 (r444040) @@ -0,0 +1,43 @@ +# $FreeBSD$ + +PORTNAME= bingrep +PORTVERSION= g20170612 +CATEGORIES= devel + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Grep through binaries + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= m4b +GH_TAGNAME= 0705684 + +PLIST_FILES= bin/bingrep + +CARGO_CRATES= ansi_term-0.9.0 \ + atty-0.2.2 \ + bitflags-0.8.2 \ + clap-2.24.2 \ + colored-1.5.1 \ + goblin-0.0.10 \ + kernel32-sys-0.2.2 \ + lazy_static-0.2.8 \ + libc-0.2.23 \ + plain-0.0.2 \ + quote-0.3.15 \ + scroll-0.5.0 \ + scroll_derive-0.4.0 \ + strsim-0.6.0 \ + structopt-0.0.3 \ + structopt-derive-0.0.3 \ + syn-0.11.11 \ + synom-0.11.3 \ + term_size-0.3.0 \ + unicode-segmentation-1.2.0 \ + unicode-width-0.1.4 \ + unicode-xid-0.0.4 \ + vec_map-0.8.0 \ + winapi-0.2.8 \ + winapi-build-0.1.1 + +.include Added: head/devel/bingrep/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bingrep/distinfo Wed Jun 21 16:39:39 2017 (r444040) @@ -0,0 +1,53 @@ +TIMESTAMP = 1497440040 +SHA256 (rust/crates/ansi_term-0.9.0.tar.gz) = 23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6 +SIZE (rust/crates/ansi_term-0.9.0.tar.gz) = 11718 +SHA256 (rust/crates/atty-0.2.2.tar.gz) = d912da0db7fa85514874458ca3651fe2cddace8d0b0505571dbdcd41ab490159 +SIZE (rust/crates/atty-0.2.2.tar.gz) = 5124 +SHA256 (rust/crates/bitflags-0.8.2.tar.gz) = 1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4 +SIZE (rust/crates/bitflags-0.8.2.tar.gz) = 11200 +SHA256 (rust/crates/clap-2.24.2.tar.gz) = 6b8f69e518f967224e628896b54e41ff6acfb4dcfefc5076325c36525dac900f +SIZE (rust/crates/clap-2.24.2.tar.gz) = 179198 +SHA256 (rust/crates/colored-1.5.1.tar.gz) = 66e436adfcba3a50905f943d990f5ef7c230ebe2d9476ab5c7dc2427afe357ee +SIZE (rust/crates/colored-1.5.1.tar.gz) = 33931 +SHA256 (rust/crates/goblin-0.0.10.tar.gz) = 81af14056c25d33759862c5ae2035452acb1255bfb1b16db57819f183921e259 +SIZE (rust/crates/goblin-0.0.10.tar.gz) = 94446 +SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d +SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 +SHA256 (rust/crates/lazy_static-0.2.8.tar.gz) = 3b37545ab726dd833ec6420aaba8231c5b320814b9029ad585555d2a03e94fbf +SIZE (rust/crates/lazy_static-0.2.8.tar.gz) = 9950 +SHA256 (rust/crates/libc-0.2.23.tar.gz) = e7eb6b826bfc1fdea7935d46556250d1799b7fe2d9f7951071f4291710665e3e +SIZE (rust/crates/libc-0.2.23.tar.gz) = 153939 +SHA256 (rust/crates/plain-0.0.2.tar.gz) = 595830506990cbd6a1a08ed73bd9b40beb4692f38334885bf25a5daa654c6fae +SIZE (rust/crates/plain-0.0.2.tar.gz) = 9019 +SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a +SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/scroll-0.5.0.tar.gz) = 1d916a75d18d4c559fa7312afe6f522fe5b63176e6591d02ed81017c22f8ea27 +SIZE (rust/crates/scroll-0.5.0.tar.gz) = 21550 +SHA256 (rust/crates/scroll_derive-0.4.0.tar.gz) = 686ef1d49b34827d6aed93e0bbe9e53023b26e25f54dead31859974067400f19 +SIZE (rust/crates/scroll_derive-0.4.0.tar.gz) = 2789 +SHA256 (rust/crates/strsim-0.6.0.tar.gz) = b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694 +SIZE (rust/crates/strsim-0.6.0.tar.gz) = 8500 +SHA256 (rust/crates/structopt-0.0.3.tar.gz) = 2d52740003d84335ccfc6f9223a9cede3943e5f1e75b15b21a9cd40d02f1d6df +SIZE (rust/crates/structopt-0.0.3.tar.gz) = 3393 +SHA256 (rust/crates/structopt-derive-0.0.3.tar.gz) = 1e4f5f4da823bbf745599cd6e6c344817e2580cf2ea46d012aa62da714a20725 +SIZE (rust/crates/structopt-derive-0.0.3.tar.gz) = 3508 +SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad +SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 +SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 +SHA256 (rust/crates/term_size-0.3.0.tar.gz) = e2b6b55df3198cc93372e85dd2ed817f0e38ce8cc0f22eb32391bfad9c4bf209 +SIZE (rust/crates/term_size-0.3.0.tar.gz) = 9932 +SHA256 (rust/crates/unicode-segmentation-1.2.0.tar.gz) = a8083c594e02b8ae1654ae26f0ade5158b119bd88ad0e8227a5d8fcd72407946 +SIZE (rust/crates/unicode-segmentation-1.2.0.tar.gz) = 67562 +SHA256 (rust/crates/unicode-width-0.1.4.tar.gz) = bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f +SIZE (rust/crates/unicode-width-0.1.4.tar.gz) = 15283 +SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc +SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 +SHA256 (rust/crates/vec_map-0.8.0.tar.gz) = 887b5b631c2ad01628bbbaa7dd4c869f80d3186688f8d0b6f58774fbe324988c +SIZE (rust/crates/vec_map-0.8.0.tar.gz) = 13742 +SHA256 (rust/crates/winapi-0.2.8.tar.gz) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a +SIZE (rust/crates/winapi-0.2.8.tar.gz) = 455145 +SHA256 (rust/crates/winapi-build-0.1.1.tar.gz) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc +SIZE (rust/crates/winapi-build-0.1.1.tar.gz) = 669 +SHA256 (m4b-bingrep-g20170612-0705684_GH0.tar.gz) = 140f01ea897b5be1e89949d68a5591253b41fb345a587c759984d4e945e92f6b +SIZE (m4b-bingrep-g20170612-0705684_GH0.tar.gz) = 343989 Added: head/devel/bingrep/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bingrep/pkg-descr Wed Jun 21 16:39:39 2017 (r444040) @@ -0,0 +1,9 @@ +Greps through binaries from various OSs and architectures, and colors +them. Current backends: + +- ELF 32/64, arm, x86, openrisc - all others will parse and color, but + relocations won't show properly +- Mach 32/64, arm, x86 +- PE (debug only) + +WWW: https://github.com/m4b/bingrep From owner-svn-ports-head@freebsd.org Wed Jun 21 17:17:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B1C3D9437B; Wed, 21 Jun 2017 17:17:04 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDB40749C4; Wed, 21 Jun 2017 17:17:03 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LHH3SB036639; Wed, 21 Jun 2017 17:17:03 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LHH2IV036637; Wed, 21 Jun 2017 17:17:02 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201706211717.v5LHH2IV036637@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Wed, 21 Jun 2017 17:17:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444041 - head/sysutils/py-honcho X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 17:17:04 -0000 Author: loader (doc committer) Date: Wed Jun 21 17:17:02 2017 New Revision: 444041 URL: https://svnweb.freebsd.org/changeset/ports/444041 Log: sysutils/py-honcho: Update to 1.0.1 - Add NO_ARCH - Add regression test - Allow concurrent installation (USE_PYTHON=concurrent) Reviewed_by: koobs, mat Approved by: koobs (ports) Differential_Revision: https://reviews.freebsd.org/D10610 Modified: head/sysutils/py-honcho/Makefile head/sysutils/py-honcho/distinfo Modified: head/sysutils/py-honcho/Makefile ============================================================================== --- head/sysutils/py-honcho/Makefile Wed Jun 21 16:39:39 2017 (r444040) +++ head/sysutils/py-honcho/Makefile Wed Jun 21 17:17:02 2017 (r444041) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= honcho -PORTVERSION= 0.6.6 +PORTVERSION= 1.0.1 DISTVERSIONPREFIX= v CATEGORIES= sysutils python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,14 +14,17 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7:devel/py-Jinja2 +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest USE_GITHUB= yes GH_ACCOUNT= nickstenning -USES= python -USE_PYTHON= autoplist distutils +NO_ARCH= yes +USES= python:2.7+ +USE_PYTHON= autoplist concurrent distutils -regression-test: +do-test: @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) .include Modified: head/sysutils/py-honcho/distinfo ============================================================================== --- head/sysutils/py-honcho/distinfo Wed Jun 21 16:39:39 2017 (r444040) +++ head/sysutils/py-honcho/distinfo Wed Jun 21 17:17:02 2017 (r444041) @@ -1,2 +1,3 @@ -SHA256 (nickstenning-honcho-v0.6.6_GH0.tar.gz) = 02703190e9775c899045e25e7f5b5b1a3b3ec1a4720d6b85a50da680f7f750c7 -SIZE (nickstenning-honcho-v0.6.6_GH0.tar.gz) = 34868 +TIMESTAMP = 1492157482 +SHA256 (nickstenning-honcho-v1.0.1_GH0.tar.gz) = 3271f986ff7c4732cfd390383078bfce68c46f9ad74f1804c1b0fc6283b13f7e +SIZE (nickstenning-honcho-v1.0.1_GH0.tar.gz) = 37885 From owner-svn-ports-head@freebsd.org Wed Jun 21 17:20:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB289D943F5; Wed, 21 Jun 2017 17:20:11 +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 A07CD74ADA; Wed, 21 Jun 2017 17:20:11 +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 v5LHKA1Z036853; Wed, 21 Jun 2017 17:20:10 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LHKARA036851; Wed, 21 Jun 2017 17:20:10 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201706211720.v5LHKARA036851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Wed, 21 Jun 2017 17:20:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444042 - 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, 21 Jun 2017 17:20:11 -0000 Author: mandree Date: Wed Jun 21 17:20:10 2017 New Revision: 444042 URL: https://svnweb.freebsd.org/changeset/ports/444042 Log: Document OpenVPN vulnerabilities. Security: 9f65d382-56a4-11e7-83e3-080027ef73ec Security: CVE-2017-7508 Security: CVE-2017-7512 Security: CVE-2017-7520 Security: CVE-2017-7521 Security: CVE-2017-7522 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jun 21 17:17:02 2017 (r444041) +++ head/security/vuxml/vuln.xml Wed Jun 21 17:20:10 2017 (r444042) @@ -58,6 +58,56 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + OpenVPN -- several vulnerabilities + + + openvpn + 2.3.17 + 2.4.02.4.3 + + + openvpn-mbedtls + 2.4.3 + + + openvpn-polarssl + 2.3.17 + + + + +

Samuli Seppänen reports:

+
+

In May/June 2017 Guido Vranken threw a fuzzer at OpenVPN 2.4.2. In + the process he found several vulnerabilities and reported them to + the OpenVPN project. [...] The first releases to have these fixes are OpenVPN 2.4.3 and 2.3.17.

+

This is a list of fixed important vulnerabilities:

+
    +
  • Remotely-triggerable ASSERT() on malformed IPv6 packet
  • +
  • Pre-authentication remote crash/information disclosure for clients
  • +
  • Potential double-free in --x509-alt-username
  • +
  • Remote-triggerable memory leaks
  • +
  • Post-authentication remote DoS when using the --x509-track option
  • +
  • Null-pointer dereference in establish_http_proxy_passthru()
  • +
+
+ +
+ + https://community.openvpn.net/openvpn/wiki/VulnerabilitiesFixedInOpenVPN243 + CVE-2017-7508 + CVE-2017-7512 + CVE-2017-7520 + CVE-2017-7521 + CVE-2017-7522 + + + 2017-05-19 + 2017-06-21 + +
+ Apache httpd -- several vulnerabilities From owner-svn-ports-head@freebsd.org Wed Jun 21 17:22:39 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66074D9455D; Wed, 21 Jun 2017 17:22:39 +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 263EF74E25; Wed, 21 Jun 2017 17:22:39 +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 v5LHMcjY040763; Wed, 21 Jun 2017 17:22:38 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LHMcIo040761; Wed, 21 Jun 2017 17:22:38 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201706211722.v5LHMcIo040761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Wed, 21 Jun 2017 17:22:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444043 - head/security/openvpn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 17:22:39 -0000 Author: mandree Date: Wed Jun 21 17:22:37 2017 New Revision: 444043 URL: https://svnweb.freebsd.org/changeset/ports/444043 Log: OpenVPN security update to 2.4.3 OpenVPN v2.4.2 was analyzed closely using a fuzzer by Guido Vranken. In the process several vulnerabilities were found, some of which are remotely exploitable in certain circumstances. Compared to OpenVPN 2.4.2 there are several bugfixes and one major feature: support for building with OpenSSL 1.1. MFH: 2017Q3 (preapproved by Xin Li) Security: 9f65d382-56a4-11e7-83e3-080027ef73ec Security: CVE-2017-7508 Security: CVE-2017-7512 Security: CVE-2017-7520 Security: CVE-2017-7521 Security: CVE-2017-7522 Modified: head/security/openvpn/Makefile head/security/openvpn/distinfo Modified: head/security/openvpn/Makefile ============================================================================== --- head/security/openvpn/Makefile Wed Jun 21 17:20:10 2017 (r444042) +++ head/security/openvpn/Makefile Wed Jun 21 17:22:37 2017 (r444043) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openvpn -DISTVERSION= 2.4.2 +DISTVERSION= 2.4.3 PORTREVISION?= 0 CATEGORIES= security net MASTER_SITES= https://swupdate.openvpn.net/community/releases/ \ Modified: head/security/openvpn/distinfo ============================================================================== --- head/security/openvpn/distinfo Wed Jun 21 17:20:10 2017 (r444042) +++ head/security/openvpn/distinfo Wed Jun 21 17:22:37 2017 (r444043) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494532032 -SHA256 (openvpn-2.4.2.tar.xz) = df5c4f384b7df6b08a2f6fa8a84b9fd382baf59c2cef1836f82e2a7f62f1bff9 -SIZE (openvpn-2.4.2.tar.xz) = 918448 +TIMESTAMP = 1498064673 +SHA256 (openvpn-2.4.3.tar.xz) = 15e15fc97f189b52aee7c90ec8355aa77469c773125110b4c2f089abecde36fb +SIZE (openvpn-2.4.3.tar.xz) = 938440 From owner-svn-ports-head@freebsd.org Wed Jun 21 17:25:09 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD38FD945C5; Wed, 21 Jun 2017 17:25:09 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9E5C374F48; Wed, 21 Jun 2017 17:25:09 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id F153C4778; Wed, 21 Jun 2017 17:25:08 +0000 (UTC) From: Jan Beich To: Sunpoet Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r443975 - in head: games/aquaria multimedia/libmediainfo sysutils/fusefs-encfs textproc/tinyxml2 References: <201706201359.v5KDx8GL059406@repo.freebsd.org> Date: Wed, 21 Jun 2017 19:25:01 +0200 In-Reply-To: <201706201359.v5KDx8GL059406@repo.freebsd.org> (Sunpoet Po-Chuan Hsieh's message of "Tue, 20 Jun 2017 13:59:08 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 17:25:09 -0000 Sunpoet Po-Chuan Hsieh writes: > Author: sunpoet > Date: Tue Jun 20 13:59:08 2017 > New Revision: 443975 > URL: https://svnweb.freebsd.org/changeset/ports/443975 > > Log: > Update textproc/tinyxml2 to 5.0.0 > > - Use PLIST instead of PLIST_FILES > - Bump PORTREVISION for shlib change > > Changes: https://github.com/leethomason/tinyxml2/commits/master > > Added: > head/textproc/tinyxml2/pkg-plist (contents, props changed) > Modified: > head/games/aquaria/Makefile > head/multimedia/libmediainfo/Makefile > head/sysutils/fusefs-encfs/Makefile > head/textproc/tinyxml2/Makefile > head/textproc/tinyxml2/distinfo At least games/aquaria is now broken: CMakeFiles/aquaria.dir/Aquaria/Continuity.cpp.o: In function `Continuity::loadFileData(int, tinyxml2::XMLDocument&)': /wrkdirs/usr/ports/games/aquaria/work/Aquaria-OSE-v1.002-22-g84366ad/Aquaria/Continuity.cpp:(.text+0x156ef): undefined reference to `tinyxml2::StrPair::GetStr()' CMakeFiles/aquaria.dir/Aquaria/DSQ.cpp.o: In function `DSQ::loadModsCallback(std::__1::basic_string, std::__1::allocator > const&, int)': /wrkdirs/usr/ports/games/aquaria/work/Aquaria-OSE-v1.002-22-g84366ad/Aquaria/DSQ.cpp:(.text+0xe01d): undefined reference to `tinyxml2::StrPair::GetStr()' c++: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 https://lists.freebsd.org/pipermail/freebsd-pkg-fallout/Week-of-Mon-20170619/490103.html From owner-svn-ports-head@freebsd.org Wed Jun 21 17:44:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2277D94D09; Wed, 21 Jun 2017 17:44:21 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A07B075935; Wed, 21 Jun 2017 17:44:21 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LHiKAD048933; Wed, 21 Jun 2017 17:44:20 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LHiKlf048931; Wed, 21 Jun 2017 17:44:20 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201706211744.v5LHiKlf048931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Wed, 21 Jun 2017 17:44:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444044 - head/devel/py-semantic_version X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 17:44:21 -0000 Author: loader (doc committer) Date: Wed Jun 21 17:44:20 2017 New Revision: 444044 URL: https://svnweb.freebsd.org/changeset/ports/444044 Log: devel/py-semantic_version: Update to 2.6.0 - Add NO_ARCH - Allow concurrent installation (USE_PYTHON=concurrent) - Remove OPTION TESTS - Rename regression-test: target to do-test: Reviewed by: koobs Approved by: koobs (ports) Differential Revision: https://reviews.freebsd.org/D10768 Modified: head/devel/py-semantic_version/Makefile head/devel/py-semantic_version/distinfo Modified: head/devel/py-semantic_version/Makefile ============================================================================== --- head/devel/py-semantic_version/Makefile Wed Jun 21 17:22:37 2017 (r444043) +++ head/devel/py-semantic_version/Makefile Wed Jun 21 17:44:20 2017 (r444044) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= semantic_version -PORTVERSION= 2.4.2 -PORTREVISION= 1 +PORTVERSION= 2.6.0 DISTVERSIONPREFIX= v CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,19 +15,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>0:www/py-django18 -OPTIONS_DEFINE= TESTS - -TESTS_DESC= Install test suite requirements -TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} - USE_GITHUB= yes GH_ACCOUNT= rbarrois GH_PROJECT= python-semanticversion -USES= python -USE_PYTHON= autoplist distutils +NO_ARCH= yes -regression-test: build - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test +# Actually 2.7,3.4+ +USES= python:2.7+ +USE_PYTHON= autoplist concurrent distutils + +do-test: + @(cd ${TEST_WRKSRC}; ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test) .include Modified: head/devel/py-semantic_version/distinfo ============================================================================== --- head/devel/py-semantic_version/distinfo Wed Jun 21 17:22:37 2017 (r444043) +++ head/devel/py-semantic_version/distinfo Wed Jun 21 17:44:20 2017 (r444044) @@ -1,2 +1,3 @@ -SHA256 (rbarrois-python-semanticversion-v2.4.2_GH0.tar.gz) = 81c03a9fffe5366950b2f6a6db231dd0a475b3c105a27544d8a480f271f60a0d -SIZE (rbarrois-python-semanticversion-v2.4.2_GH0.tar.gz) = 28781 +TIMESTAMP = 1494696732 +SHA256 (rbarrois-python-semanticversion-v2.6.0_GH0.tar.gz) = 110d9c75dc9670a188ab820503c6b40ea4ab3f1450a0aee5a90a24fd60aef358 +SIZE (rbarrois-python-semanticversion-v2.6.0_GH0.tar.gz) = 31678 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:00:43 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDC05D95270; Wed, 21 Jun 2017 18:00: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 8DA9E764EE; Wed, 21 Jun 2017 18:00: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 v5LI0gGJ053528; Wed, 21 Jun 2017 18:00:42 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LI0gM0053527; Wed, 21 Jun 2017 18:00:42 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201706211800.v5LI0gM0053527@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Wed, 21 Jun 2017 18:00:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444045 - head/sysutils/qt5-qtpaths X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:00:43 -0000 Author: tcberner Date: Wed Jun 21 18:00:42 2017 New Revision: 444045 URL: https://svnweb.freebsd.org/changeset/ports/444045 Log: Minor cleanup of sysutils/qt5-qtpaths * Shuffle USES up * Add empty line * Use the pkg-descr from devel/qt5 as the rest of Qt5 does [as the change is so minor, don't bump revision]. Deleted: head/sysutils/qt5-qtpaths/pkg-descr Modified: head/sysutils/qt5-qtpaths/Makefile Modified: head/sysutils/qt5-qtpaths/Makefile ============================================================================== --- head/sysutils/qt5-qtpaths/Makefile Wed Jun 21 17:44:20 2017 (r444044) +++ head/sysutils/qt5-qtpaths/Makefile Wed Jun 21 18:00:42 2017 (r444045) @@ -8,9 +8,9 @@ PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Command line client to QStandardPaths +USES= qmake:outsource USE_QT5= core QT_DIST= tools -USES= qmake PLIST_FILES= ${QT_BINDIR}/qtpaths @@ -19,6 +19,7 @@ PLIST_FILES= ${QT_BINDIR}/qtpaths # will look for a lot more dependencies for other tools such as lupdate, which # we do not really have to depend on. WRKSRC_SUBDIR= src/${PORTNAME} + post-patch: ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} From owner-svn-ports-head@freebsd.org Wed Jun 21 18:07:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C12DD9549D; Wed, 21 Jun 2017 18:07: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 3261D768FC; Wed, 21 Jun 2017 18:07:21 +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 v5LI7KlI057458; Wed, 21 Jun 2017 18:07:20 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LI7K4S057454; Wed, 21 Jun 2017 18:07:20 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201706211807.v5LI7K4S057454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Wed, 21 Jun 2017 18:07:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444046 - in head: Mk sysutils sysutils/qt5-qtdiag sysutils/qt5-qtplugininfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:07:21 -0000 Author: tcberner Date: Wed Jun 21 18:07:19 2017 New Revision: 444046 URL: https://svnweb.freebsd.org/changeset/ports/444046 Log: Add two new ports: sysutils/qt5-qtdiag and sysutils/qt5-qtplugininfo * qtdiag outputs diagnostics on the current Qt installation and can be helpful to find issues. * qtpluginfo is useful while writing plugins for Qt5/KDE Plasma Reviewed by: rakuco, mat Differential Revision: https://reviews.freebsd.org/D11280 Added: head/sysutils/qt5-qtdiag/ head/sysutils/qt5-qtdiag/Makefile (contents, props changed) head/sysutils/qt5-qtplugininfo/ head/sysutils/qt5-qtplugininfo/Makefile (contents, props changed) Modified: head/Mk/bsd.qt.mk head/sysutils/Makefile Modified: head/Mk/bsd.qt.mk ============================================================================== --- head/Mk/bsd.qt.mk Wed Jun 21 18:00:42 2017 (r444045) +++ head/Mk/bsd.qt.mk Wed Jun 21 18:07:19 2017 (r444046) @@ -316,8 +316,8 @@ _USE_QT4_ONLY= accessible assistant-adp assistantclien qtestlib qvfb rcc uic uic3 xmlpatterns-tool _USE_QT5_ONLY= 3d buildtools canvas3d charts concurrent connectivity \ - core datavis3d declarative-render2d examples gamepad \ - graphicaleffects location paths phonon4 printsupport \ + core datavis3d declarative-render2d diag examples gamepad \ + graphicaleffects location paths phonon4 plugininfo printsupport \ qdbus qdoc qdoc-data qev qml quick quickcontrols \ quickcontrols2 scxml sensors serialbus serialport \ sql-tds uiplugin uitools virtualkeyboard webchannel \ @@ -392,6 +392,9 @@ demo_PATH= ${QT_BINDIR}/qtdemo designer_PORT= devel/${_QT_RELNAME}-designer designer_PATH= ${QT_BINDIR}/designer +diag_PORT= sysutils/${_QT_RELNAME}-qtdiag +diag_PATH= ${QT_BINDIR}/qtdiag + doc_PORT= misc/${_QT_RELNAME}-doc doc_PATH= ${_QT_RELNAME}-doc>=${_QT_VERSION:R:R} @@ -466,6 +469,9 @@ phonon4_LIB= libphonon4${_QT_RELNAME}.so phonon-gst_PORT= multimedia/phonon-gstreamer phonon-gst_PATH= ${QT_PLUGINDIR}/phonon_backend/libphonon_gstreamer.so + +plugininfo_PORT= sysutils/${_QT_RELNAME}-qtplugininfo +plugininfo_PATH= ${QT_BINDIR}/qtplugininfo porting_PORT= devel/${_QT_RELNAME}-porting porting_PATH= ${QT_BINDIR}/qt3to4 Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Jun 21 18:00:42 2017 (r444045) +++ head/sysutils/Makefile Wed Jun 21 18:07:19 2017 (r444046) @@ -914,7 +914,9 @@ SUBDIR += qlogtools SUBDIR += qpxtool SUBDIR += qsynergy + SUBDIR += qt5-qtdiag SUBDIR += qt5-qtpaths + SUBDIR += qt5-qtplugininfo SUBDIR += qtpass SUBDIR += quicksynergy SUBDIR += qzeitgeist Added: head/sysutils/qt5-qtdiag/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/qt5-qtdiag/Makefile Wed Jun 21 18:07:19 2017 (r444046) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= qtdiag +DISTVERSION= ${QT5_VERSION} +CATEGORIES= sysutils +PKGNAMEPREFIX= qt5- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Tool for reporting diagnostic information about Qt and its environment + +USES= qmake:outsource +USE_QT5= core gui +QT_DIST= tools + +PLIST_FILES= ${QT_BINDIR}/qtdiag + +# Similarly to x11/qt5-qev, it makes more sense to just run the build system +# from the qtdiag directory. If we run it from the top of the source tree, it +# will look for a lot more dependencies for other tools such as lupdate, which +# we do not really have to depend on. +WRKSRC_SUBDIR= src/${PORTNAME} + +post-patch: + ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} + +.include Added: head/sysutils/qt5-qtplugininfo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/qt5-qtplugininfo/Makefile Wed Jun 21 18:07:19 2017 (r444046) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= qtplugininfo +DISTVERSION= ${QT5_VERSION} +CATEGORIES= sysutils +PKGNAMEPREFIX= qt5- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt5 plugin metadata dumper + +USES= qmake:outsource +USE_QT5= core +QT_DIST= tools + +PLIST_FILES= ${QT_BINDIR}/qtplugininfo + +# Similarly to x11/qt5-qev, it makes more sense to just run the build system +# from the qtplugininfo directory. If we run it from the top of the source tree, it +# will look for a lot more dependencies for other tools such as lupdate, which +# we do not really have to depend on. +WRKSRC_SUBDIR= src/${PORTNAME} + +post-patch: + ${CP} ${WRKSRC}/../../.qmake.conf ${WRKSRC} + +.include From owner-svn-ports-head@freebsd.org Wed Jun 21 18:28:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F5B8D95D39; Wed, 21 Jun 2017 18:28:00 +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 1D9A177DB9; Wed, 21 Jun 2017 18:28:00 +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 v5LIRx57066009; Wed, 21 Jun 2017 18:27:59 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIRxln066007; Wed, 21 Jun 2017 18:27:59 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706211827.v5LIRxln066007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 21 Jun 2017 18:27:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444047 - head/devel/elixir-timex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:28:00 -0000 Author: olgeni Date: Wed Jun 21 18:27:58 2017 New Revision: 444047 URL: https://svnweb.freebsd.org/changeset/ports/444047 Log: Update devel/elixir-timex to version 3.1.16. Modified: head/devel/elixir-timex/Makefile head/devel/elixir-timex/distinfo Modified: head/devel/elixir-timex/Makefile ============================================================================== --- head/devel/elixir-timex/Makefile Wed Jun 21 18:07:19 2017 (r444046) +++ head/devel/elixir-timex/Makefile Wed Jun 21 18:27:58 2017 (r444047) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= timex -PORTVERSION= 3.1.15 +PORTVERSION= 3.1.16 CATEGORIES= devel PKGNAMEPREFIX= elixir- Modified: head/devel/elixir-timex/distinfo ============================================================================== --- head/devel/elixir-timex/distinfo Wed Jun 21 18:07:19 2017 (r444046) +++ head/devel/elixir-timex/distinfo Wed Jun 21 18:27:58 2017 (r444047) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495272480 -SHA256 (bitwalker-timex-3.1.15_GH0.tar.gz) = 4a611bce332e26aee638329fc5e4bc2fe17fc73e0484bf37eb212e63047cfbc2 -SIZE (bitwalker-timex-3.1.15_GH0.tar.gz) = 161813 +TIMESTAMP = 1498069489 +SHA256 (bitwalker-timex-3.1.16_GH0.tar.gz) = 0121938c29f70e38018a2a4d09a08266b46e43e795b1c83b91de92f70ad00adc +SIZE (bitwalker-timex-3.1.16_GH0.tar.gz) = 162109 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:45:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F7E5D964AA; Wed, 21 Jun 2017 18:45:03 +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 2DA5F78934; Wed, 21 Jun 2017 18:45:03 +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 v5LIj2rU074111; Wed, 21 Jun 2017 18:45:02 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIj2u0074110; Wed, 21 Jun 2017 18:45:02 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706211845.v5LIj2u0074110@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Wed, 21 Jun 2017 18:45:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444048 - head/finance/R-cran-tseries X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:45:03 -0000 Author: dbn Date: Wed Jun 21 18:45:02 2017 New Revision: 444048 URL: https://svnweb.freebsd.org/changeset/ports/444048 Log: finance/R-cran-tseries: updated to version 0.10-41 - add new run dependencies: - finance/R-cran-quantmod - changelog: - NAMESPACE: Re-write get.hist.quote() as a wrapper for quantmod::getSymbols(). Generated by: portcran (0.1.5) Modified: head/finance/R-cran-tseries/Makefile head/finance/R-cran-tseries/distinfo Modified: head/finance/R-cran-tseries/Makefile ============================================================================== --- head/finance/R-cran-tseries/Makefile Wed Jun 21 18:27:58 2017 (r444047) +++ head/finance/R-cran-tseries/Makefile Wed Jun 21 18:45:02 2017 (r444048) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tseries -DISTVERSION= 0.10-40 +DISTVERSION= 0.10-41 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,7 +11,8 @@ COMMENT= Time Series Analysis and Computational Financ LICENSE= GPLv2 -RUN_DEPENDS= R-cran-quadprog>0:math/R-cran-quadprog \ +RUN_DEPENDS= R-cran-quantmod>=0.4.9:finance/R-cran-quantmod \ + R-cran-quadprog>0:math/R-cran-quadprog \ R-cran-zoo>0:math/R-cran-zoo USES= cran:auto-plist,compiles Modified: head/finance/R-cran-tseries/distinfo ============================================================================== --- head/finance/R-cran-tseries/distinfo Wed Jun 21 18:27:58 2017 (r444047) +++ head/finance/R-cran-tseries/distinfo Wed Jun 21 18:45:02 2017 (r444048) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494257092 -SHA256 (tseries_0.10-40.tar.gz) = 6428124cd082fed3375a9c3627008b93ecd886c18ef086dba1a0224126216bd5 -SIZE (tseries_0.10-40.tar.gz) = 165976 +TIMESTAMP = 1497888808 +SHA256 (tseries_0.10-41.tar.gz) = c5139b2b615fa3bcd1d591a6180c02bb667772414f9bd90dd83bd37534bbba26 +SIZE (tseries_0.10-41.tar.gz) = 164489 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:51:16 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B30D7D96AA8; Wed, 21 Jun 2017 18:51:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 833A478EC2; Wed, 21 Jun 2017 18:51:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIpFwD074533; Wed, 21 Jun 2017 18:51:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIpFE0074531; Wed, 21 Jun 2017 18:51:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211851.v5LIpFE0074531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:51:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444049 - head/devel/rubygem-state_machines X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:51:16 -0000 Author: sunpoet Date: Wed Jun 21 18:51:15 2017 New Revision: 444049 URL: https://svnweb.freebsd.org/changeset/ports/444049 Log: Update to 0.5.0 Changes: https://github.com/state-machines/state_machines/blob/master/Changelog.md Modified: head/devel/rubygem-state_machines/Makefile head/devel/rubygem-state_machines/distinfo Modified: head/devel/rubygem-state_machines/Makefile ============================================================================== --- head/devel/rubygem-state_machines/Makefile Wed Jun 21 18:45:02 2017 (r444048) +++ head/devel/rubygem-state_machines/Makefile Wed Jun 21 18:51:15 2017 (r444049) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= state_machines -PORTVERSION= 0.4.0 +PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-state_machines/distinfo ============================================================================== --- head/devel/rubygem-state_machines/distinfo Wed Jun 21 18:45:02 2017 (r444048) +++ head/devel/rubygem-state_machines/distinfo Wed Jun 21 18:51:15 2017 (r444049) @@ -1,2 +1,3 @@ -SHA256 (rubygem/state_machines-0.4.0.gem) = 071d6e509b47c8c074286689cffe8af9cae53f01060b07f50d137cfada24e8f5 -SIZE (rubygem/state_machines-0.4.0.gem) = 124928 +TIMESTAMP = 1498059648 +SHA256 (rubygem/state_machines-0.5.0.gem) = 23e6249d374a920b528dccade403518b4abbd83841a3e2c9ef13e6f1a009b102 +SIZE (rubygem/state_machines-0.5.0.gem) = 124928 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:51:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C164D96AD0; Wed, 21 Jun 2017 18:51:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 697A978EE6; Wed, 21 Jun 2017 18:51:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIpKCC074660; Wed, 21 Jun 2017 18:51:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIpKXX074659; Wed, 21 Jun 2017 18:51:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211851.v5LIpKXX074659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:51:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444050 - head/databases/rubygem-state_machines-activemodel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:51:21 -0000 Author: sunpoet Date: Wed Jun 21 18:51:20 2017 New Revision: 444050 URL: https://svnweb.freebsd.org/changeset/ports/444050 Log: Update to 0.5.0 Changes: https://github.com/state-machines/state_machines-activemodel/commits/master Modified: head/databases/rubygem-state_machines-activemodel/Makefile head/databases/rubygem-state_machines-activemodel/distinfo Modified: head/databases/rubygem-state_machines-activemodel/Makefile ============================================================================== --- head/databases/rubygem-state_machines-activemodel/Makefile Wed Jun 21 18:51:15 2017 (r444049) +++ head/databases/rubygem-state_machines-activemodel/Makefile Wed Jun 21 18:51:20 2017 (r444050) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= state_machines-activemodel -PORTVERSION= 0.4.1 +PORTVERSION= 0.5.0 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activemodel4>=4.1:databases/rubygem-activemodel4 \ - rubygem-state_machines>=0.4.0:devel/rubygem-state_machines + rubygem-state_machines>=0.5.0:devel/rubygem-state_machines NO_ARCH= yes USE_RUBY= yes Modified: head/databases/rubygem-state_machines-activemodel/distinfo ============================================================================== --- head/databases/rubygem-state_machines-activemodel/distinfo Wed Jun 21 18:51:15 2017 (r444049) +++ head/databases/rubygem-state_machines-activemodel/distinfo Wed Jun 21 18:51:20 2017 (r444050) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493729456 -SHA256 (rubygem/state_machines-activemodel-0.4.1.gem) = 346b8ac9b0cb6dd4d57021b76cb57229f095f502bb84ca848805c02c1cc32553 -SIZE (rubygem/state_machines-activemodel-0.4.1.gem) = 17920 +TIMESTAMP = 1498059630 +SHA256 (rubygem/state_machines-activemodel-0.5.0.gem) = 26a6e68111c526a62c46ef01c6c03e90e42a7a32d9b4a7b438ef4e03d2d1b679 +SIZE (rubygem/state_machines-activemodel-0.5.0.gem) = 17920 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:51:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C277AD96AF3; Wed, 21 Jun 2017 18:51:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F82978F57; Wed, 21 Jun 2017 18:51:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIpPev074783; Wed, 21 Jun 2017 18:51:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIpPTx074781; Wed, 21 Jun 2017 18:51:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211851.v5LIpPTx074781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:51:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444051 - head/databases/rubygem-state_machines-activerecord X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:51:26 -0000 Author: sunpoet Date: Wed Jun 21 18:51:25 2017 New Revision: 444051 URL: https://svnweb.freebsd.org/changeset/ports/444051 Log: Update to 0.5.0 Changes: https://github.com/state-machines/state_machines-activerecord/commits/master Modified: head/databases/rubygem-state_machines-activerecord/Makefile head/databases/rubygem-state_machines-activerecord/distinfo Modified: head/databases/rubygem-state_machines-activerecord/Makefile ============================================================================== --- head/databases/rubygem-state_machines-activerecord/Makefile Wed Jun 21 18:51:20 2017 (r444050) +++ head/databases/rubygem-state_machines-activerecord/Makefile Wed Jun 21 18:51:25 2017 (r444051) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= state_machines-activerecord -PORTVERSION= 0.4.1 +PORTVERSION= 0.5.0 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord4>=4.1:databases/rubygem-activerecord4 \ - rubygem-state_machines-activemodel>=0.3.0:databases/rubygem-state_machines-activemodel + rubygem-state_machines-activemodel>=0.5.0:databases/rubygem-state_machines-activemodel NO_ARCH= yes USE_RUBY= yes Modified: head/databases/rubygem-state_machines-activerecord/distinfo ============================================================================== --- head/databases/rubygem-state_machines-activerecord/distinfo Wed Jun 21 18:51:20 2017 (r444050) +++ head/databases/rubygem-state_machines-activerecord/distinfo Wed Jun 21 18:51:25 2017 (r444051) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493729463 -SHA256 (rubygem/state_machines-activerecord-0.4.1.gem) = 4f8d828baa8a5c1d0394453ec5e2ec7807b61e33adc30888263fdb1da18362de -SIZE (rubygem/state_machines-activerecord-0.4.1.gem) = 24064 +TIMESTAMP = 1498059636 +SHA256 (rubygem/state_machines-activerecord-0.5.0.gem) = 1cb2ec3d1b7f0846899d73bceaca9b4d99401aed11bb12798b09356dd6d1b843 +SIZE (rubygem/state_machines-activerecord-0.5.0.gem) = 24064 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:09 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31BD0D96BD8; Wed, 21 Jun 2017 18:52:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 007F8793AC; Wed, 21 Jun 2017 18:52:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIq8SE077957; Wed, 21 Jun 2017 18:52:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIq7QT077955; Wed, 21 Jun 2017 18:52:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIq7QT077955@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444052 - in head/www/gitlab: . 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, 21 Jun 2017 18:52:09 -0000 Author: sunpoet Date: Wed Jun 21 18:52:07 2017 New Revision: 444052 URL: https://svnweb.freebsd.org/changeset/ports/444052 Log: Fix gemspec for rubygem-state_machines-activerecord 0.5.0 update - Bump PORTREVISION for package change Modified: head/www/gitlab/Makefile head/www/gitlab/files/patch-Gemfile Modified: head/www/gitlab/Makefile ============================================================================== --- head/www/gitlab/Makefile Wed Jun 21 18:51:25 2017 (r444051) +++ head/www/gitlab/Makefile Wed Jun 21 18:52:07 2017 (r444052) @@ -4,7 +4,7 @@ PORTNAME= gitlab PORTVERSION= 8.17.6 DISTVERSIONPREFIX= v -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org Modified: head/www/gitlab/files/patch-Gemfile ============================================================================== --- head/www/gitlab/files/patch-Gemfile Wed Jun 21 18:51:25 2017 (r444051) +++ head/www/gitlab/files/patch-Gemfile Wed Jun 21 18:52:07 2017 (r444052) @@ -90,7 +90,7 @@ # for aws storage gem 'unf', '~> 0.1.4' -@@ -102,29 +97,29 @@ gem 'seed-fu', '~> 2.3.5' +@@ -102,34 +97,34 @@ gem 'seed-fu', '~> 2.3.5' # Markdown and HTML processing gem 'html-pipeline', '~> 1.11.0' @@ -127,6 +127,12 @@ + gem 'unicorn', '>= 5.1.0' gem 'unicorn-worker-killer', '~> 0.4.4' end + + # State machine +-gem 'state_machines-activerecord', '~> 0.4.0' ++gem 'state_machines-activerecord', '>= 0.4.0' + # Run events after state machine commits + gem 'after_commit_queue', '~> 1.3.0' @@ -143,10 +138,10 @@ gem 'redis-namespace', '~> 1.5.2' gem 'sidekiq-limit_fetch', '~> 3.4' From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07F45D96C22; Wed, 21 Jun 2017 18:52:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C89A279475; Wed, 21 Jun 2017 18:52:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqKBx078092; Wed, 21 Jun 2017 18:52:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqKOl078090; Wed, 21 Jun 2017 18:52:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqKOl078090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444053 - head/devel/rubygem-sidekiq-cron X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:22 -0000 Author: sunpoet Date: Wed Jun 21 18:52:20 2017 New Revision: 444053 URL: https://svnweb.freebsd.org/changeset/ports/444053 Log: Update to 0.6.1 Changes: https://github.com/ondrejbartas/sidekiq-cron/blob/master/Changes.md https://github.com/ondrejbartas/sidekiq-cron/commits/master Modified: head/devel/rubygem-sidekiq-cron/Makefile head/devel/rubygem-sidekiq-cron/distinfo Modified: head/devel/rubygem-sidekiq-cron/Makefile ============================================================================== --- head/devel/rubygem-sidekiq-cron/Makefile Wed Jun 21 18:52:07 2017 (r444052) +++ head/devel/rubygem-sidekiq-cron/Makefile Wed Jun 21 18:52:20 2017 (r444053) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sidekiq-cron -PORTVERSION= 0.6.0 +PORTVERSION= 0.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-sidekiq-cron/distinfo ============================================================================== --- head/devel/rubygem-sidekiq-cron/distinfo Wed Jun 21 18:52:07 2017 (r444052) +++ head/devel/rubygem-sidekiq-cron/distinfo Wed Jun 21 18:52:20 2017 (r444053) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492606843 -SHA256 (rubygem/sidekiq-cron-0.6.0.gem) = f237c05e29ee69b230b51c5ca1914c03ecc79506c06600095b9ce0fdf340b812 -SIZE (rubygem/sidekiq-cron-0.6.0.gem) = 177152 +TIMESTAMP = 1498059642 +SHA256 (rubygem/sidekiq-cron-0.6.1.gem) = 143a575878a3c4abc135e083c4960a4e49ed8bb7c072bc46a1b1ad1541140f96 +SIZE (rubygem/sidekiq-cron-0.6.1.gem) = 177664 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E9A2D96C4B; Wed, 21 Jun 2017 18:52:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B476794D8; Wed, 21 Jun 2017 18:52:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqQcD078217; Wed, 21 Jun 2017 18:52:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqQiQ078214; Wed, 21 Jun 2017 18:52:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqQiQ078214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444054 - head/devel/rubygem-unicode-display_width X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:27 -0000 Author: sunpoet Date: Wed Jun 21 18:52:25 2017 New Revision: 444054 URL: https://svnweb.freebsd.org/changeset/ports/444054 Log: Update to 1.3.0 Changes: https://github.com/janlelis/unicode-display_width/blob/master/CHANGELOG.md Modified: head/devel/rubygem-unicode-display_width/Makefile head/devel/rubygem-unicode-display_width/distinfo Modified: head/devel/rubygem-unicode-display_width/Makefile ============================================================================== --- head/devel/rubygem-unicode-display_width/Makefile Wed Jun 21 18:52:20 2017 (r444053) +++ head/devel/rubygem-unicode-display_width/Makefile Wed Jun 21 18:52:25 2017 (r444054) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= unicode-display_width -PORTVERSION= 1.2.1 +PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-unicode-display_width/distinfo ============================================================================== --- head/devel/rubygem-unicode-display_width/distinfo Wed Jun 21 18:52:20 2017 (r444053) +++ head/devel/rubygem-unicode-display_width/distinfo Wed Jun 21 18:52:25 2017 (r444054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491892934 -SHA256 (rubygem/unicode-display_width-1.2.1.gem) = 1f44ff6554e067e2ff46183c89b62bba685a2903dd8eab3127887ecbad1c66c2 -SIZE (rubygem/unicode-display_width-1.2.1.gem) = 12288 +TIMESTAMP = 1498059653 +SHA256 (rubygem/unicode-display_width-1.3.0.gem) = 08f71f8827f846522c2796f509324faf4690fd1edb8c50360d7dd986f903f18a +SIZE (rubygem/unicode-display_width-1.3.0.gem) = 12800 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 583E0D96C7E; Wed, 21 Jun 2017 18:52:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 232707954B; Wed, 21 Jun 2017 18:52:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqVMB079073; Wed, 21 Jun 2017 18:52:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqVuC079071; Wed, 21 Jun 2017 18:52:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqVuC079071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444055 - head/devel/rubygem-aws-sdk-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: Wed, 21 Jun 2017 18:52:32 -0000 Author: sunpoet Date: Wed Jun 21 18:52:30 2017 New Revision: 444055 URL: https://svnweb.freebsd.org/changeset/ports/444055 Log: Update to 2.9.44 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Wed Jun 21 18:52:25 2017 (r444054) +++ head/devel/rubygem-aws-sdk-core/Makefile Wed Jun 21 18:52:30 2017 (r444055) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.9.43 +PORTVERSION= 2.9.44 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Wed Jun 21 18:52:25 2017 (r444054) +++ head/devel/rubygem-aws-sdk-core/distinfo Wed Jun 21 18:52:30 2017 (r444055) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497958597 -SHA256 (rubygem/aws-sdk-core-2.9.43.gem) = d4be841a3ebda409d0a84cce61bdc4ae292ef628d248964446ddf80a286883bc -SIZE (rubygem/aws-sdk-core-2.9.43.gem) = 1031168 +TIMESTAMP = 1498059660 +SHA256 (rubygem/aws-sdk-core-2.9.44.gem) = cf1b1fadf7e906cdc5d9458c75fd84f3812b247a297c36f59caf8c26af2264f2 +SIZE (rubygem/aws-sdk-core-2.9.44.gem) = 1032192 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38954D96CB3; Wed, 21 Jun 2017 18:52:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0871B795C2; Wed, 21 Jun 2017 18:52:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqa9b079207; Wed, 21 Jun 2017 18:52:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqaMa079205; Wed, 21 Jun 2017 18:52:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqaMa079205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444056 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:37 -0000 Author: sunpoet Date: Wed Jun 21 18:52:35 2017 New Revision: 444056 URL: https://svnweb.freebsd.org/changeset/ports/444056 Log: Update to 2.9.44 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Wed Jun 21 18:52:30 2017 (r444055) +++ head/devel/rubygem-aws-sdk-resources/Makefile Wed Jun 21 18:52:35 2017 (r444056) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.9.43 +PORTVERSION= 2.9.44 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Wed Jun 21 18:52:30 2017 (r444055) +++ head/devel/rubygem-aws-sdk-resources/distinfo Wed Jun 21 18:52:35 2017 (r444056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497958603 -SHA256 (rubygem/aws-sdk-resources-2.9.43.gem) = acfba0ac13b21f2bbd8f0fc4114da7726801e199f59fb73ff9eec9e0c5a8241f -SIZE (rubygem/aws-sdk-resources-2.9.43.gem) = 48640 +TIMESTAMP = 1498059665 +SHA256 (rubygem/aws-sdk-resources-2.9.44.gem) = 328a70c8540abbb256a3fa25bc73f302eebe681f1c02efda0a844732ae42c888 +SIZE (rubygem/aws-sdk-resources-2.9.44.gem) = 48640 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C00FD96CD8; Wed, 21 Jun 2017 18:52:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 380A479630; Wed, 21 Jun 2017 18:52:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqfYI079332; Wed, 21 Jun 2017 18:52:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqfS6079330; Wed, 21 Jun 2017 18:52:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqfS6079330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444057 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:42 -0000 Author: sunpoet Date: Wed Jun 21 18:52:40 2017 New Revision: 444057 URL: https://svnweb.freebsd.org/changeset/ports/444057 Log: Update to 2.9.44 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Wed Jun 21 18:52:35 2017 (r444056) +++ head/devel/rubygem-aws-sdk/Makefile Wed Jun 21 18:52:40 2017 (r444057) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -PORTVERSION= 2.9.43 +PORTVERSION= 2.9.44 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Wed Jun 21 18:52:35 2017 (r444056) +++ head/devel/rubygem-aws-sdk/distinfo Wed Jun 21 18:52:40 2017 (r444057) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497958608 -SHA256 (rubygem/aws-sdk-2.9.43.gem) = c419f490fc382d4b34b2c448fb86893ec9ae4ebce461d019b039a0398d7e7384 -SIZE (rubygem/aws-sdk-2.9.43.gem) = 4608 +TIMESTAMP = 1498059670 +SHA256 (rubygem/aws-sdk-2.9.44.gem) = ef7b76bf4f2682dcc2fe429f0fa4cc6c818adbf278d3e52e9e9dd636cd740532 +SIZE (rubygem/aws-sdk-2.9.44.gem) = 4608 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B5FDDD96CFE; Wed, 21 Jun 2017 18:52:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 822C0796A6; Wed, 21 Jun 2017 18:52:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqkgt079463; Wed, 21 Jun 2017 18:52:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqkSa079461; Wed, 21 Jun 2017 18:52:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqkSa079461@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444058 - head/devel/rubygem-fast_gettext X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:47 -0000 Author: sunpoet Date: Wed Jun 21 18:52:46 2017 New Revision: 444058 URL: https://svnweb.freebsd.org/changeset/ports/444058 Log: Update to 1.4.1 Changes: https://github.com/grosser/fast_gettext/commits/master Modified: head/devel/rubygem-fast_gettext/Makefile head/devel/rubygem-fast_gettext/distinfo Modified: head/devel/rubygem-fast_gettext/Makefile ============================================================================== --- head/devel/rubygem-fast_gettext/Makefile Wed Jun 21 18:52:40 2017 (r444057) +++ head/devel/rubygem-fast_gettext/Makefile Wed Jun 21 18:52:46 2017 (r444058) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fast_gettext -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-fast_gettext/distinfo ============================================================================== --- head/devel/rubygem-fast_gettext/distinfo Wed Jun 21 18:52:40 2017 (r444057) +++ head/devel/rubygem-fast_gettext/distinfo Wed Jun 21 18:52:46 2017 (r444058) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489853023 -SHA256 (rubygem/fast_gettext-1.4.0.gem) = 1f907d2dc49f44c32b49d2ce00a1720b4991ec804697c1009328e6dcdfb51ad1 -SIZE (rubygem/fast_gettext-1.4.0.gem) = 27136 +TIMESTAMP = 1498059675 +SHA256 (rubygem/fast_gettext-1.4.1.gem) = 4776b04c97d836d2a0d0e155967577533a8dc4030fcec18dad4164729ce72062 +SIZE (rubygem/fast_gettext-1.4.1.gem) = 27136 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6089D96D21; Wed, 21 Jun 2017 18:52:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9434F79719; Wed, 21 Jun 2017 18:52:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqpBm079590; Wed, 21 Jun 2017 18:52:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIqpWJ079588; Wed, 21 Jun 2017 18:52:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIqpWJ079588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444059 - head/devel/rubygem-memoist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:52 -0000 Author: sunpoet Date: Wed Jun 21 18:52:51 2017 New Revision: 444059 URL: https://svnweb.freebsd.org/changeset/ports/444059 Log: Update to 0.16.0 - Fix typo Changes: https://github.com/matthewrudy/memoist/commits/master Modified: head/devel/rubygem-memoist/Makefile head/devel/rubygem-memoist/distinfo Modified: head/devel/rubygem-memoist/Makefile ============================================================================== --- head/devel/rubygem-memoist/Makefile Wed Jun 21 18:52:46 2017 (r444058) +++ head/devel/rubygem-memoist/Makefile Wed Jun 21 18:52:51 2017 (r444059) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= memoist -PORTVERSION= 0.15.0 +PORTVERSION= 0.16.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -12,7 +12,7 @@ COMMENT= Memoize methods invocation LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md -NO_ARCHI= yes +NO_ARCH= yes USE_RUBY= yes USES= gem Modified: head/devel/rubygem-memoist/distinfo ============================================================================== --- head/devel/rubygem-memoist/distinfo Wed Jun 21 18:52:46 2017 (r444058) +++ head/devel/rubygem-memoist/distinfo Wed Jun 21 18:52:51 2017 (r444059) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483150632 -SHA256 (rubygem/memoist-0.15.0.gem) = b838329d7fe7e067e0d0717828db529126f44b8c0c527c884d162ebb4ecba379 -SIZE (rubygem/memoist-0.15.0.gem) = 11776 +TIMESTAMP = 1498059680 +SHA256 (rubygem/memoist-0.16.0.gem) = 70bd755b48477c9ef9601daa44d298e04a13c1727f8f9d38c34570043174085f +SIZE (rubygem/memoist-0.16.0.gem) = 12288 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:52:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EC57D96D45; Wed, 21 Jun 2017 18:52:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D15247978A; Wed, 21 Jun 2017 18:52:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIqvet079716; Wed, 21 Jun 2017 18:52:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIquB5079714; Wed, 21 Jun 2017 18:52:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211852.v5LIquB5079714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:52:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444060 - head/graphics/rubygem-mini_magick X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:52:58 -0000 Author: sunpoet Date: Wed Jun 21 18:52:56 2017 New Revision: 444060 URL: https://svnweb.freebsd.org/changeset/ports/444060 Log: Update to 4.7.2 Changes: https://github.com/minimagick/minimagick/releases Modified: head/graphics/rubygem-mini_magick/Makefile head/graphics/rubygem-mini_magick/distinfo Modified: head/graphics/rubygem-mini_magick/Makefile ============================================================================== --- head/graphics/rubygem-mini_magick/Makefile Wed Jun 21 18:52:51 2017 (r444059) +++ head/graphics/rubygem-mini_magick/Makefile Wed Jun 21 18:52:56 2017 (r444060) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mini_magick -PORTVERSION= 4.7.1 +PORTVERSION= 4.7.2 CATEGORIES= graphics rubygems MASTER_SITES= RG Modified: head/graphics/rubygem-mini_magick/distinfo ============================================================================== --- head/graphics/rubygem-mini_magick/distinfo Wed Jun 21 18:52:51 2017 (r444059) +++ head/graphics/rubygem-mini_magick/distinfo Wed Jun 21 18:52:56 2017 (r444060) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497619414 -SHA256 (rubygem/mini_magick-4.7.1.gem) = f10a13f90dc53939fcba083143b983d48132212b051e29707dfd86942c4e32de -SIZE (rubygem/mini_magick-4.7.1.gem) = 17408 +TIMESTAMP = 1498059686 +SHA256 (rubygem/mini_magick-4.7.2.gem) = 1bfca1046333f3d0b9c44aafd9e15d73e31f1b731a0aeacdac7e130edbeec97c +SIZE (rubygem/mini_magick-4.7.2.gem) = 17408 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25370D96D6D; Wed, 21 Jun 2017 18:53:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E696B797FA; Wed, 21 Jun 2017 18:53:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIr1G5079857; Wed, 21 Jun 2017 18:53:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIr1RS079854; Wed, 21 Jun 2017 18:53:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIr1RS079854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444061 - in head/textproc/rubygem-jekyll-assets: . 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, 21 Jun 2017 18:53:03 -0000 Author: sunpoet Date: Wed Jun 21 18:53:01 2017 New Revision: 444061 URL: https://svnweb.freebsd.org/changeset/ports/444061 Log: Update to 2.3.0 - Sort RUN_DEPENDS Changes: https://github.com/jekyll/jekyll-assets/commits/master Deleted: head/textproc/rubygem-jekyll-assets/files/ Modified: head/textproc/rubygem-jekyll-assets/Makefile head/textproc/rubygem-jekyll-assets/distinfo Modified: head/textproc/rubygem-jekyll-assets/Makefile ============================================================================== --- head/textproc/rubygem-jekyll-assets/Makefile Wed Jun 21 18:52:56 2017 (r444060) +++ head/textproc/rubygem-jekyll-assets/Makefile Wed Jun 21 18:53:01 2017 (r444061) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll-assets -PORTVERSION= 2.2.8 -PORTREVISION= 1 +PORTVERSION= 2.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -13,11 +12,12 @@ COMMENT= Create javascript/CSS assets for Jekyll sites LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-extras>=0.1:devel/rubygem-extras \ +RUN_DEPENDS= rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby \ + rubygem-extras>=0.2:devel/rubygem-extras \ rubygem-fastimage>=2.0:graphics/rubygem-fastimage \ - rubygem-rack16>=1:www/rubygem-rack16 \ rubygem-jekyll>=3.1:www/rubygem-jekyll \ rubygem-pathutil>=0.8:devel/rubygem-pathutil \ + rubygem-rack>=1:www/rubygem-rack \ rubygem-sprockets3>=3.3:devel/rubygem-sprockets3 NO_ARCH= yes Modified: head/textproc/rubygem-jekyll-assets/distinfo ============================================================================== --- head/textproc/rubygem-jekyll-assets/distinfo Wed Jun 21 18:52:56 2017 (r444060) +++ head/textproc/rubygem-jekyll-assets/distinfo Wed Jun 21 18:53:01 2017 (r444061) @@ -1,3 +1,3 @@ -TIMESTAMP = 1480761454 -SHA256 (rubygem/jekyll-assets-2.2.8.gem) = cd07d94bcb7b70336a4ced53b1a3facd596ad6921f4960288201f4ea68b8d93c -SIZE (rubygem/jekyll-assets-2.2.8.gem) = 25088 +TIMESTAMP = 1498059694 +SHA256 (rubygem/jekyll-assets-2.3.0.gem) = 46c71e878f027b40db3080cb15a38bed9313cb1dc1f005c7b48b82c2462e26f0 +SIZE (rubygem/jekyll-assets-2.3.0.gem) = 26112 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68BCDD96D93; Wed, 21 Jun 2017 18:53:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3656079872; Wed, 21 Jun 2017 18:53:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIr7lO079984; Wed, 21 Jun 2017 18:53:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIr7ac079981; Wed, 21 Jun 2017 18:53:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIr7ac079981@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444062 - head/www/rubygem-hamlit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:08 -0000 Author: sunpoet Date: Wed Jun 21 18:53:06 2017 New Revision: 444062 URL: https://svnweb.freebsd.org/changeset/ports/444062 Log: Update to 2.8.3 Changes: https://github.com/k0kubun/hamlit/blob/master/CHANGELOG.md Modified: head/www/rubygem-hamlit/Makefile head/www/rubygem-hamlit/distinfo Modified: head/www/rubygem-hamlit/Makefile ============================================================================== --- head/www/rubygem-hamlit/Makefile Wed Jun 21 18:53:01 2017 (r444061) +++ head/www/rubygem-hamlit/Makefile Wed Jun 21 18:53:06 2017 (r444062) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hamlit -PORTVERSION= 2.8.2 +PORTVERSION= 2.8.3 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-hamlit/distinfo ============================================================================== --- head/www/rubygem-hamlit/distinfo Wed Jun 21 18:53:01 2017 (r444061) +++ head/www/rubygem-hamlit/distinfo Wed Jun 21 18:53:06 2017 (r444062) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497958615 -SHA256 (rubygem/hamlit-2.8.2.gem) = 536008a82030e0ad44a654f1b0b117685d5c584bbfde40fc00f8a2134de0eab4 -SIZE (rubygem/hamlit-2.8.2.gem) = 70656 +TIMESTAMP = 1498059701 +SHA256 (rubygem/hamlit-2.8.3.gem) = 272eb3c3ad4cd86171cede16bf58dbb1b9bc4e09b81af6a59234ccd8d3b41f52 +SIZE (rubygem/hamlit-2.8.3.gem) = 70656 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33717D96DC2; Wed, 21 Jun 2017 18:53:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0094D798E1; Wed, 21 Jun 2017 18:53:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrCel080094; Wed, 21 Jun 2017 18:53:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrCTj080093; Wed, 21 Jun 2017 18:53:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrCTj080093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444063 - head/dns/p5-Net-DRI X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:13 -0000 Author: sunpoet Date: Wed Jun 21 18:53:11 2017 New Revision: 444063 URL: https://svnweb.freebsd.org/changeset/ports/444063 Log: Remove Perl core modules - Bump PORTREVISION for dependency change With hat: perl Modified: head/dns/p5-Net-DRI/Makefile Modified: head/dns/p5-Net-DRI/Makefile ============================================================================== --- head/dns/p5-Net-DRI/Makefile Wed Jun 21 18:53:06 2017 (r444062) +++ head/dns/p5-Net-DRI/Makefile Wed Jun 21 18:53:11 2017 (r444063) @@ -3,7 +3,7 @@ PORTNAME= Net-DRI PORTVERSION= 0.96 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -21,7 +21,6 @@ RUN_DEPENDS= p5-DateTime>0:devel/p5-DateTime \ p5-DateTime-TimeZone>0:devel/p5-DateTime-TimeZone \ p5-Class-Accessor>0:devel/p5-Class-Accessor \ p5-Class-Accessor-Chained>0:devel/p5-Class-Accessor-Chained \ - p5-Time-HiRes>0:devel/p5-Time-HiRes \ p5-Email-Valid>0:mail/p5-Email-Valid \ p5-IO-Socket-SSL>0.90:security/p5-IO-Socket-SSL \ p5-XML-LibXML>1.61:textproc/p5-XML-LibXML \ @@ -29,7 +28,6 @@ RUN_DEPENDS= p5-DateTime>0:devel/p5-DateTime \ p5-SOAP-Lite>0:net/p5-SOAP-Lite \ p5-SOAP-WSDL>0:devel/p5-SOAP-WSDL \ p5-libwww>0:www/p5-libwww \ - p5-Digest-MD5>0:security/p5-Digest-MD5 \ p5-Net-DNS>0:dns/p5-Net-DNS \ p5-MIME-Tools>0:mail/p5-MIME-Tools From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4C84D96E0B; Wed, 21 Jun 2017 18:53:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 947957995F; Wed, 21 Jun 2017 18:53:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrG1A080204; Wed, 21 Jun 2017 18:53:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrGLa080203; Wed, 21 Jun 2017 18:53:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrGLa080203@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444064 - head/graphics/p5-Geo-Gpx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:18 -0000 Author: sunpoet Date: Wed Jun 21 18:53:16 2017 New Revision: 444064 URL: https://svnweb.freebsd.org/changeset/ports/444064 Log: Remove Perl core modules - Sort *_DEPENDS - Add NO_ARCH - Bump PORTREVISION for dependency change Modified: head/graphics/p5-Geo-Gpx/Makefile Modified: head/graphics/p5-Geo-Gpx/Makefile ============================================================================== --- head/graphics/p5-Geo-Gpx/Makefile Wed Jun 21 18:53:11 2017 (r444063) +++ head/graphics/p5-Geo-Gpx/Makefile Wed Jun 21 18:53:16 2017 (r444064) @@ -3,7 +3,7 @@ PORTNAME= Geo-Gpx PORTVERSION= 0.26 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,14 +14,14 @@ COMMENT= Perl Module to Create and Parse GPX Files LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-TimeDate>=0:devel/p5-TimeDate \ - p5-HTML-Parser>=0:www/p5-HTML-Parser \ +BUILD_DEPENDS= p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 \ p5-ExtUtils-MakeMaker-Coverage>=0:devel/p5-ExtUtils-MakeMaker-Coverage \ - p5-Time-Local>=0:devel/p5-Time-Local \ - p5-XML-Descent>=0:textproc/p5-XML-Descent \ - p5-DateTime-Format-ISO8601>=0:devel/p5-DateTime-Format-ISO8601 + p5-HTML-Parser>=0:www/p5-HTML-Parser \ + p5-TimeDate>=0:devel/p5-TimeDate \ + p5-XML-Descent>=0:textproc/p5-XML-Descent RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A09BED96E7D; Wed, 21 Jun 2017 18:53:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D325799E2; Wed, 21 Jun 2017 18:53:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrLbP080312; Wed, 21 Jun 2017 18:53:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrLEJ080311; Wed, 21 Jun 2017 18:53:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrLEJ080311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444065 - head/mail/p5-qpsmtpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:22 -0000 Author: sunpoet Date: Wed Jun 21 18:53:21 2017 New Revision: 444065 URL: https://svnweb.freebsd.org/changeset/ports/444065 Log: Remove Perl core modules - Bump PORTREVISION for dependency change With hat: perl Modified: head/mail/p5-qpsmtpd/Makefile Modified: head/mail/p5-qpsmtpd/Makefile ============================================================================== --- head/mail/p5-qpsmtpd/Makefile Wed Jun 21 18:53:16 2017 (r444064) +++ head/mail/p5-qpsmtpd/Makefile Wed Jun 21 18:53:21 2017 (r444065) @@ -4,7 +4,7 @@ PORTNAME= qpsmtpd PORTVERSION= 0.93 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail perl5 PKGNAMEPREFIX= p5- @@ -12,13 +12,9 @@ MAINTAINER= noc-ports@biglist.com COMMENT= Flexible SMTP daemon written in Perl and featuring a plugin API BUILD_DEPENDS= spamd:mail/spamassassin \ - p5-Data-Dumper>=0:devel/p5-Data-Dumper \ - p5-File-Temp>=0:devel/p5-File-Temp \ p5-Mail-Tools>=0:mail/p5-Mail-Tools \ - p5-MIME-Base64>=0:converters/p5-MIME-Base64 \ p5-Net-DNS>=0.39:dns/p5-Net-DNS \ - p5-Net-IP>=0:net-mgmt/p5-Net-IP \ - p5-Time-HiRes>0:devel/p5-Time-HiRes + p5-Net-IP>=0:net-mgmt/p5-Net-IP RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= MODPERL DOCS EXAMPLES From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 734F0D96EA7; Wed, 21 Jun 2017 18:53:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B5FA79A4C; Wed, 21 Jun 2017 18:53:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrQcg080426; Wed, 21 Jun 2017 18:53:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrQtv080425; Wed, 21 Jun 2017 18:53:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrQtv080425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444066 - head/mail/spamass-ixhash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:27 -0000 Author: sunpoet Date: Wed Jun 21 18:53:25 2017 New Revision: 444066 URL: https://svnweb.freebsd.org/changeset/ports/444066 Log: Remove Perl core modules - While I'm here: - Add NO_ARCH - Use USES=tar:tgz - Convert to options target helper - Bump PORTREVISION for dependency change With hat: perl Modified: head/mail/spamass-ixhash/Makefile Modified: head/mail/spamass-ixhash/Makefile ============================================================================== --- head/mail/spamass-ixhash/Makefile Wed Jun 21 18:53:21 2017 (r444065) +++ head/mail/spamass-ixhash/Makefile Wed Jun 21 18:53:25 2017 (r444066) @@ -3,11 +3,10 @@ PORTNAME= iXhash PORTVERSION= 1.5.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= SF/ixhash/${PORTNAME}/${PORTNAME}-${PORTVERSION}/ PKGNAMEPREFIX= spamass- -EXTRACT_SUFX= .tgz MAINTAINER= michael@ranner.eu COMMENT= Plugin for SpamAssassin supporting iXhash @@ -16,11 +15,12 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= spamc:mail/spamassassin \ - p5-Digest-MD5>=0:security/p5-Digest-MD5 \ p5-Net-DNS>=0.63:dns/p5-Net-DNS OPTIONS_DEFINE= DOCS +NO_ARCH= yes NO_BUILD= yes +USES= tar:tgz post-patch: @${REINPLACE_CMD} -e "s,/etc/mail,${LOCALBASE}/etc/mail," \ @@ -30,6 +30,8 @@ do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/mail/spamassassin ${INSTALL_DATA} ${WRKSRC}/iXhash/iXhash.cf ${STAGEDIR}${PREFIX}/etc/mail/spamassassin/iXhash.cf.sample ${INSTALL_DATA} ${WRKSRC}/iXhash/iXhash.pm ${STAGEDIR}${PREFIX}/etc/mail/spamassassin + +do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in CHANGELOG LICENSE WHERE_ARE_THE_OTHER_FILES INSTALL README ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}/ From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3962ED96EE8; Wed, 21 Jun 2017 18:53:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 058B679ABD; Wed, 21 Jun 2017 18:53:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrV5F080538; Wed, 21 Jun 2017 18:53:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrVd4080537; Wed, 21 Jun 2017 18:53:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrVd4080537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444067 - head/net-mgmt/p5-jmx4perl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:32 -0000 Author: sunpoet Date: Wed Jun 21 18:53:30 2017 New Revision: 444067 URL: https://svnweb.freebsd.org/changeset/ports/444067 Log: Remove Perl core modules - While I'm here, add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/net-mgmt/p5-jmx4perl/Makefile Modified: head/net-mgmt/p5-jmx4perl/Makefile ============================================================================== --- head/net-mgmt/p5-jmx4perl/Makefile Wed Jun 21 18:53:25 2017 (r444066) +++ head/net-mgmt/p5-jmx4perl/Makefile Wed Jun 21 18:53:30 2017 (r444067) @@ -3,7 +3,7 @@ PORTNAME= jmx4perl PORTVERSION= 1.11 DISTVERSIONSUFFIX= _2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ROLAND @@ -13,15 +13,11 @@ MAINTAINER= tj@FreeBSD.org COMMENT= JMX access for Perl RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ - p5-Carp>=0:devel/p5-Carp \ p5-Config-General>=0:devel/p5-Config-General \ p5-Crypt-Blowfish_PP>=0:security/p5-Crypt-Blowfish_PP \ p5-Crypt-OpenPGP>=0:security/p5-Crypt-OpenPGP \ - p5-Digest-MD5>=0:security/p5-Digest-MD5 \ p5-Digest-SHA1>=0:security/p5-Digest-SHA1 \ p5-File-SearchPath>=0:devel/p5-File-SearchPath \ - p5-File-Temp>=0:devel/p5-File-Temp \ - p5-Getopt-Long>=0:devel/p5-Getopt-Long \ p5-JSON>=0:converters/p5-JSON \ p5-Module-Find>=0:devel/p5-Module-Find \ p5-Nagios-Plugin>=0:net-mgmt/p5-Nagios-Plugin \ @@ -30,14 +26,13 @@ RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zi p5-Term-ProgressBar>=0:devel/p5-Term-ProgressBar \ p5-Term-ShellUI>=0:shells/p5-Term-ShellUI \ p5-Term-Size>=0:devel/p5-Term-Size \ - p5-Text-ParseWords>=0:textproc/p5-Text-ParseWords \ - p5-Time-HiRes>=0:devel/p5-Time-HiRes \ p5-URI>=0:net/p5-URI \ p5-XML-LibXML>=0:textproc/p5-XML-LibXML \ p5-XML-Twig>=0:textproc/p5-XML-Twig \ p5-libwww>=0:www/p5-libwww BUILD_DEPENDS:= ${RUN_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= modbuild From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25399D96F28; Wed, 21 Jun 2017 18:53:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0C0179B3F; Wed, 21 Jun 2017 18:53:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrZd2080647; Wed, 21 Jun 2017 18:53:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrZAx080646; Wed, 21 Jun 2017 18:53:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrZAx080646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444068 - head/net-mgmt/p5-Nagios-Object X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:37 -0000 Author: sunpoet Date: Wed Jun 21 18:53:35 2017 New Revision: 444068 URL: https://svnweb.freebsd.org/changeset/ports/444068 Log: Remove Perl core modules - While I'm here, add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/net-mgmt/p5-Nagios-Object/Makefile Modified: head/net-mgmt/p5-Nagios-Object/Makefile ============================================================================== --- head/net-mgmt/p5-Nagios-Object/Makefile Wed Jun 21 18:53:30 2017 (r444067) +++ head/net-mgmt/p5-Nagios-Object/Makefile Wed Jun 21 18:53:35 2017 (r444068) @@ -3,7 +3,7 @@ PORTNAME= Nagios-Object PORTVERSION= 0.21.18 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,12 +13,11 @@ COMMENT= Perl objects to represent Nagios configuratio BUILD_DEPENDS= p5-Test-Exception>=0.31:devel/p5-Test-Exception \ p5-Module-Build>=0.3607:devel/p5-Module-Build \ - p5-Data-Dumper>=2.126:devel/p5-Data-Dumper \ p5-List-Compare>=0.37:misc/p5-List-Compare \ - p5-Test-Simple>=0.94:devel/p5-Test-Simple \ p5-Test-NoWarnings>=1.01:devel/p5-Test-NoWarnings RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= modbuild From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92AE3D96F79; Wed, 21 Jun 2017 18:53:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DCC479BAF; Wed, 21 Jun 2017 18:53:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIre2T080758; Wed, 21 Jun 2017 18:53:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIreZq080757; Wed, 21 Jun 2017 18:53:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIreZq080757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444069 - head/net-mgmt/percona-monitoring-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:41 -0000 Author: sunpoet Date: Wed Jun 21 18:53:40 2017 New Revision: 444069 URL: https://svnweb.freebsd.org/changeset/ports/444069 Log: Remove Perl core modules - While I'm here: - Use USES=mysql - Sort USES - Bump PORTREVISION for dependency change With hat: perl Modified: head/net-mgmt/percona-monitoring-plugins/Makefile Modified: head/net-mgmt/percona-monitoring-plugins/Makefile ============================================================================== --- head/net-mgmt/percona-monitoring-plugins/Makefile Wed Jun 21 18:53:35 2017 (r444068) +++ head/net-mgmt/percona-monitoring-plugins/Makefile Wed Jun 21 18:53:40 2017 (r444069) @@ -3,7 +3,7 @@ PORTNAME= percona-monitoring-plugins PORTVERSION= 1.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt MASTER_SITES= http://www.percona.com/downloads/percona-monitoring-plugins/${PORTVERSION}/ \ ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ @@ -16,18 +16,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= cacti>=0:net-mgmt/cacti \ p5-DBD-mysql>=0:databases/p5-DBD-mysql \ - p5-Data-Dumper>=0:devel/p5-Data-Dumper \ - p5-Digest-MD5>=0:security/p5-Digest-MD5 \ - p5-Getopt-Long>=0:devel/p5-Getopt-Long \ - p5-Time-HiRes>=0:devel/p5-Time-HiRes \ bash:shells/bash \ wget:ftp/wget -USES= shebangfix perl5 php:cli +USES= mysql perl5 php:cli shebangfix USE_PERL5= run SHEBANG_FILES= nagios/bin/pmp-check-pt-table-checksum \ cacti/bin/pmp-cacti-* -USE_MYSQL= yes NO_BUILD= yes NO_ARCH= yes From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 917C8D96FBF; Wed, 21 Jun 2017 18:53:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CEB079C28; Wed, 21 Jun 2017 18:53:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIrjMG080865; Wed, 21 Jun 2017 18:53:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIrjCp080864; Wed, 21 Jun 2017 18:53:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIrjCp080864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444070 - head/sysutils/p5-Schedule-Cron-Events X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:46 -0000 Author: sunpoet Date: Wed Jun 21 18:53:45 2017 New Revision: 444070 URL: https://svnweb.freebsd.org/changeset/ports/444070 Log: Remove Perl core modules - Bump PORTREVISION for dependency change With hat: perl Modified: head/sysutils/p5-Schedule-Cron-Events/Makefile Modified: head/sysutils/p5-Schedule-Cron-Events/Makefile ============================================================================== --- head/sysutils/p5-Schedule-Cron-Events/Makefile Wed Jun 21 18:53:40 2017 (r444069) +++ head/sysutils/p5-Schedule-Cron-Events/Makefile Wed Jun 21 18:53:45 2017 (r444070) @@ -3,6 +3,7 @@ PORTNAME= Schedule-Cron-Events PORTVERSION= 1.95 +PORTREVISION= 1 CATEGORIES= sysutils perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,10 +14,9 @@ COMMENT= Take a line from a crontab and find out when LICENSE= ART10 GPLv1 LICENSE_COMB= dual -TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep -BUILD_DEPENDS= p5-Set-Crontab>=0:devel/p5-Set-Crontab \ - p5-Time-Local>=0:devel/p5-Time-Local +BUILD_DEPENDS= p5-Set-Crontab>=0:devel/p5-Set-Crontab RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep NO_ARCH= yes USES= perl5 From owner-svn-ports-head@freebsd.org Wed Jun 21 18:53:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B1C3D96FEF; Wed, 21 Jun 2017 18:53:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6594179C9B; Wed, 21 Jun 2017 18:53:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LIro93080979; Wed, 21 Jun 2017 18:53:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LIro6A080978; Wed, 21 Jun 2017 18:53:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706211853.v5LIro6A080978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 21 Jun 2017 18:53:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444071 - head/www/p5-Business-PayPal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 18:53:51 -0000 Author: sunpoet Date: Wed Jun 21 18:53:50 2017 New Revision: 444071 URL: https://svnweb.freebsd.org/changeset/ports/444071 Log: Remove Perl core modules - While I'm here, add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/www/p5-Business-PayPal/Makefile Modified: head/www/p5-Business-PayPal/Makefile ============================================================================== --- head/www/p5-Business-PayPal/Makefile Wed Jun 21 18:53:45 2017 (r444070) +++ head/www/p5-Business-PayPal/Makefile Wed Jun 21 18:53:50 2017 (r444071) @@ -3,6 +3,7 @@ PORTNAME= Business-PayPal PORTVERSION= 0.18 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,10 +15,10 @@ LICENSE= ART10 GPLv1 LICENSE_COMB= dual RUN_DEPENDS= p5-Net-SSLeay>=1.35:security/p5-Net-SSLeay \ - p5-CGI>=3.49:www/p5-CGI \ - p5-Digest-MD5>=2.52:security/p5-Digest-MD5 + p5-CGI>=3.49:www/p5-CGI BUILD_DEPENDS:= ${RUN_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 21 19:19:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 690AAD977B4; Wed, 21 Jun 2017 19:19:27 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 391627B37B; Wed, 21 Jun 2017 19:19:27 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LJJQ37089526; Wed, 21 Jun 2017 19:19:26 GMT (envelope-from jpaetzel@FreeBSD.org) Received: (from jpaetzel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LJJQ9m089524; Wed, 21 Jun 2017 19:19:26 GMT (envelope-from jpaetzel@FreeBSD.org) Message-Id: <201706211919.v5LJJQ9m089524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jpaetzel set sender to jpaetzel@FreeBSD.org using -f From: Josh Paetzel Date: Wed, 21 Jun 2017 19:19:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444072 - head/security/openvpn-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, 21 Jun 2017 19:19:27 -0000 Author: jpaetzel Date: Wed Jun 21 19:19:26 2017 New Revision: 444072 URL: https://svnweb.freebsd.org/changeset/ports/444072 Log: Update to latest version PR: 220183 Submitted by: ecrist@secure-computing.net Modified: head/security/openvpn-devel/Makefile head/security/openvpn-devel/distinfo Modified: head/security/openvpn-devel/Makefile ============================================================================== --- head/security/openvpn-devel/Makefile Wed Jun 21 18:53:50 2017 (r444071) +++ head/security/openvpn-devel/Makefile Wed Jun 21 19:19:26 2017 (r444072) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openvpn -DISTVERSION= 201719 +DISTVERSION= 201725 PORTREVISION?= 0 CATEGORIES= security net MASTER_SITES= https://secure-computing.net/files/openvpn/ \ @@ -14,7 +14,7 @@ COMMENT?= Secure IP/Ethernet tunnel daemon LICENSE= GPLv2 -CONFLICTS_INSTALL= openvpn-2.[!4].* openvpn-[!2].* openvpn-beta-[0-9]* +CONFLICTS_INSTALL= openvpn-2.[!4].* openvpn-[!2].* openvpn-beta-[0-9]* openvpn-devel-[0-9]* GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX} Modified: head/security/openvpn-devel/distinfo ============================================================================== --- head/security/openvpn-devel/distinfo Wed Jun 21 18:53:50 2017 (r444071) +++ head/security/openvpn-devel/distinfo Wed Jun 21 19:19:26 2017 (r444072) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494853427 -SHA256 (openvpn-201719.tar.xz) = 26724017c6a79f4936f473c8c03760037045cdea3b3f312f32dc0daeaa6ede93 -SIZE (openvpn-201719.tar.xz) = 935492 +TIMESTAMP = 1498051791 +SHA256 (openvpn-201725.tar.xz) = 88a14036f933b52c5094923e3673748ed2e58836a1a6744c0c224523b688ce21 +SIZE (openvpn-201725.tar.xz) = 943804 From owner-svn-ports-head@freebsd.org Wed Jun 21 19:38:48 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A867D97C2E; Wed, 21 Jun 2017 19:38:48 +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 4C6FE7BCF7; Wed, 21 Jun 2017 19:38:48 +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 v5LJclYi097616; Wed, 21 Jun 2017 19:38:47 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LJclib097613; Wed, 21 Jun 2017 19:38:47 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201706211938.v5LJclib097613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Wed, 21 Jun 2017 19:38:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444073 - head/mail/postfix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 19:38:48 -0000 Author: ohauer Date: Wed Jun 21 19:38:47 2017 New Revision: 444073 URL: https://svnweb.freebsd.org/changeset/ports/444073 Log: - update to 3.2.2 - adjust PORTSCOUT Changelog: 20170221 Compatibility fix (introduced: Postfix 3.1): some Milter applications do not recognize macros sent as {name} when macros have single-character names. Postfix now sends such macros without {} as it has done historically. Viktor Dukhovni. File: milter/milter.c. 20170402 Bugfix (introduced: Postfix 3.2): restore the SMTP server receive override options at the end of an SMTP session, after the options may have been modified by an smtpd_milter_maps setting of "DISABLE". Problem report by Christian R__ner, root cause analysis by Viktor Dukhovni. File: smtpd/smtpd.c. 20170430 Safety net: append a null byte to vstring buffers, so that C-style string operations won't scribble past the end. File: vstring.c. 20170531 Bugfix (introduced: Postfix 3.2): after the table lookup overhaul, the check_sender_access and check_recipient_access features ignored the parent_domain_matches_subdomains setting. Reported by Henrik Larsson. File: smtpd/smtpd_check.c. 20170610 Workaround (introduced: Postfix 3.0 20140718): prevent MIME downgrade of Postfix-generated message/delivery status. It's supposed to be 7bit, therefore quoted-printable encoding is not expected. Problem reported by Griff. File: bounce/bounce_notify_util.c. 20170611 Security: Berkeley DB 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB < 3, but reduces file create performance for Berkeley DB 3 .. 4.6. File: util/dict_db.c. PR: 219996 Reported by: Markus Kohlmeyer MFH: 2017Q2 Modified: head/mail/postfix/Makefile head/mail/postfix/distinfo Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Wed Jun 21 19:19:26 2017 (r444072) +++ head/mail/postfix/Makefile Wed Jun 21 19:38:47 2017 (r444073) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 3.2.0 +PORTVERSION= 3.2.2 PORTREVISION?= 0 PORTEPOCH= 1 CATEGORIES= mail ipv6 @@ -25,7 +25,7 @@ LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-se LIB_DEPENDS= libicuuc.so:devel/icu -PORTSCOUT= limit:^3\.1\. +PORTSCOUT= limit:^3\.2\. CONFLICTS_INSTALL?= courier-0.* opensmtpd-[0-9]* \ sendmail-8.* sendmail+*-8.* smail-3.* zmailer-2.* \ Modified: head/mail/postfix/distinfo ============================================================================== --- head/mail/postfix/distinfo Wed Jun 21 19:19:26 2017 (r444072) +++ head/mail/postfix/distinfo Wed Jun 21 19:38:47 2017 (r444073) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494441232 -SHA256 (postfix/postfix-3.2.0.tar.gz) = 420726e79622620394fd17799e49268dada7041ea067ca3aa1c8bf155b9aa487 -SIZE (postfix/postfix-3.2.0.tar.gz) = 4389547 +TIMESTAMP = 1497386094 +SHA256 (postfix/postfix-3.2.2.tar.gz) = d06849418d119d09366997b2b481bb23f737629769b4e4a52da42fb3ad8b0576 +SIZE (postfix/postfix-3.2.2.tar.gz) = 4390318 From owner-svn-ports-head@freebsd.org Wed Jun 21 19:44:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57BEBD97E22; Wed, 21 Jun 2017 19:44:58 +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 3141B7C0DD; Wed, 21 Jun 2017 19:44:58 +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 v5LJivdR001834; Wed, 21 Jun 2017 19:44:57 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LJiv7W001832; Wed, 21 Jun 2017 19:44:57 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201706211944.v5LJiv7W001832@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Wed, 21 Jun 2017 19:44:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444074 - head/mail/postfix-current X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 19:44:58 -0000 Author: ohauer Date: Wed Jun 21 19:44:56 2017 New Revision: 444074 URL: https://svnweb.freebsd.org/changeset/ports/444074 Log: - update to 3.3-20170613 Changelog: 20170505 Workaround for a current problem where some destination announces primarily IPv6 MX addresses, the smtp_address_limit eliminates most or all IPv4 addresses, and the destination is not reachable over IPv6. This workaround is enabled with "smtp_balance_mx_inet_protocols = yes", which is the default. Files: smtp/smtp.c, smtp/smtp_params.c, smtp/smtp_addr.c, global/mail_params.h, proto/postconf.proto. 20170506 A last-minute cosmetic fix had introduced a bug in smtp/smtp_addr.c. 20170512 Bugfix (introduced: Postfix 2.0): the MIME nesting level counter was not initialized (i.e. left at the memory fill pattern 0xffffffff which equals -1). This broke unit tests with a different memory allocator. Changing the value to zero would break backwards compatibility (reject mail that was previously not rejected). Files: global/mime_state.c. 20170531 Bugfix (introduced: Postfix 3.2): after the table lookup overhaul, the check_sender_access and check_recipient_access features ignored the parent_domain_matches_subdomains setting. Reported by Henrik Larsson. File: smtpd/smtpd_check.c. Workaround (introduced: Postfix 3.2): mail_addr_find() logs a warning that it does not support both parent-domain and dot-parent-domain style lookups in the same call. File: global/mail_addr_find.c 20170610 Workaround (introduced: Postfix 3.0 20140718): prevent MIME downgrade of Postfix-generated message/delivery-status. It's supposed to be 7bit, therefore quoted-printable encoding is not expected. Problem reported by Griff. File: bounce/bounce_notify_util.c. Documentation: indicate that the transport_mumble parameters are implemented by the queue manager, not by delivery agents. Files: mantools/postlink, local/local.c, pipe/pipe.c, *qmgr/qmgr.c, smtp/smtp.c, virtual/virtual.c. 20170611 Security: Berkeley DB 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB < 3. File: util/dict_db.c. Modified: head/mail/postfix-current/Makefile head/mail/postfix-current/distinfo Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Wed Jun 21 19:38:47 2017 (r444073) +++ head/mail/postfix-current/Makefile Wed Jun 21 19:44:56 2017 (r444074) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -DISTVERSION= 3.3-20170502 +DISTVERSION= 3.3-20170613 PORTREVISION?= 0 PORTEPOCH= 5 CATEGORIES= mail ipv6 Modified: head/mail/postfix-current/distinfo ============================================================================== --- head/mail/postfix-current/distinfo Wed Jun 21 19:38:47 2017 (r444073) +++ head/mail/postfix-current/distinfo Wed Jun 21 19:44:56 2017 (r444074) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493832594 -SHA256 (postfix/postfix-3.3-20170502.tar.gz) = bf78fe59b9849ccff71d02063469d4e9781fe39bea4ab7f3dda72e6c2931e1a6 -SIZE (postfix/postfix-3.3-20170502.tar.gz) = 4396873 +TIMESTAMP = 1497369791 +SHA256 (postfix/postfix-3.3-20170613.tar.gz) = 4c66e3188aa2ff8fdf4f9e9705261204e8128687bc3eb1dd07c7f10af0225cfc +SIZE (postfix/postfix-3.3-20170613.tar.gz) = 4391163 From owner-svn-ports-head@freebsd.org Wed Jun 21 20:23:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5148AD9892E; Wed, 21 Jun 2017 20:23:42 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21BE27D42C; Wed, 21 Jun 2017 20:23:42 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LKNfJN018209; Wed, 21 Jun 2017 20:23:41 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LKNf3V018207; Wed, 21 Jun 2017 20:23:41 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201706212023.v5LKNf3V018207@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Wed, 21 Jun 2017 20:23:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444075 - head/graphics/pear-Horde_Image X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 20:23:42 -0000 Author: mm Date: Wed Jun 21 20:23:41 2017 New Revision: 444075 URL: https://svnweb.freebsd.org/changeset/ports/444075 Log: Update pear-Horde_Image from 2.4.1 to 2.5.0 Security: CVE-2017-9773 Security: CVE-2017-9774 Modified: head/graphics/pear-Horde_Image/Makefile head/graphics/pear-Horde_Image/distinfo Modified: head/graphics/pear-Horde_Image/Makefile ============================================================================== --- head/graphics/pear-Horde_Image/Makefile Wed Jun 21 19:44:56 2017 (r444074) +++ head/graphics/pear-Horde_Image/Makefile Wed Jun 21 20:23:41 2017 (r444075) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_Image -PORTVERSION= 2.4.1 +PORTVERSION= 2.5.0 CATEGORIES= graphics www pear PKGNAMEPREFIX= pear- Modified: head/graphics/pear-Horde_Image/distinfo ============================================================================== --- head/graphics/pear-Horde_Image/distinfo Wed Jun 21 19:44:56 2017 (r444074) +++ head/graphics/pear-Horde_Image/distinfo Wed Jun 21 20:23:41 2017 (r444075) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493852992 -SHA256 (Horde/Horde_Image-2.4.1.tgz) = 9f631f5810a66d94e8ecece52760bdc2e54406cbfb432bddf790471b6604a27a -SIZE (Horde/Horde_Image-2.4.1.tgz) = 771077 +TIMESTAMP = 1498076463 +SHA256 (Horde/Horde_Image-2.5.0.tgz) = 59ef362834c1ead4d355fa192e9879e1a105cf6c5e6d017b32020c64e24b74f4 +SIZE (Horde/Horde_Image-2.5.0.tgz) = 778367 From owner-svn-ports-head@freebsd.org Wed Jun 21 20:24:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A10AD98957; Wed, 21 Jun 2017 20:24:03 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 254B07D4FD; Wed, 21 Jun 2017 20:24:03 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LKO2DA018340; Wed, 21 Jun 2017 20:24:02 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LKO21a018338; Wed, 21 Jun 2017 20:24:02 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201706212024.v5LKO21a018338@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Wed, 21 Jun 2017 20:24:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444076 - head/comms/pear-Horde_ActiveSync X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 20:24:03 -0000 Author: mm Date: Wed Jun 21 20:24:01 2017 New Revision: 444076 URL: https://svnweb.freebsd.org/changeset/ports/444076 Log: Horde package update: comms/pear-Horde_ActiveSync 2.38.5 -> 2.38.6 Modified: head/comms/pear-Horde_ActiveSync/Makefile head/comms/pear-Horde_ActiveSync/distinfo Modified: head/comms/pear-Horde_ActiveSync/Makefile ============================================================================== --- head/comms/pear-Horde_ActiveSync/Makefile Wed Jun 21 20:23:41 2017 (r444075) +++ head/comms/pear-Horde_ActiveSync/Makefile Wed Jun 21 20:24:01 2017 (r444076) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_ActiveSync -PORTVERSION= 2.38.5 +PORTVERSION= 2.38.6 CATEGORIES= comms www pear MAINTAINER= horde@FreeBSD.org Modified: head/comms/pear-Horde_ActiveSync/distinfo ============================================================================== --- head/comms/pear-Horde_ActiveSync/distinfo Wed Jun 21 20:23:41 2017 (r444075) +++ head/comms/pear-Horde_ActiveSync/distinfo Wed Jun 21 20:24:01 2017 (r444076) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497866454 -SHA256 (Horde/Horde_ActiveSync-2.38.5.tgz) = cdc2aab534a5872a5d91311074f2d8e62ba0b47432b200292a767fcc9da9bba3 -SIZE (Horde/Horde_ActiveSync-2.38.5.tgz) = 386362 +TIMESTAMP = 1498076459 +SHA256 (Horde/Horde_ActiveSync-2.38.6.tgz) = 6dd4575d3485bb2c5ac3e744e386327e99280890bb86179440b8f144fccd929a +SIZE (Horde/Horde_ActiveSync-2.38.6.tgz) = 386435 From owner-svn-ports-head@freebsd.org Wed Jun 21 20:42:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9188CD98CBF; Wed, 21 Jun 2017 20:42:14 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 601157DC40; Wed, 21 Jun 2017 20:42:14 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LKgDoa026319; Wed, 21 Jun 2017 20:42:13 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LKgDXR026317; Wed, 21 Jun 2017 20:42:13 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201706212042.v5LKgDXR026317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Wed, 21 Jun 2017 20:42:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444077 - 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, 21 Jun 2017 20:42:14 -0000 Author: mm Date: Wed Jun 21 20:42:13 2017 New Revision: 444077 URL: https://svnweb.freebsd.org/changeset/ports/444077 Log: Document pear-Horde_Image vulnerabilities. Security: CVE-2017-9773 Security: CVE-2017-9774 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jun 21 20:24:01 2017 (r444076) +++ head/security/vuxml/vuln.xml Wed Jun 21 20:42:13 2017 (r444077) @@ -58,6 +58,63 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + pear-Horde_Image -- DoS vulnerability + + + pear-Horde_Image + 2.3.02.5.0 + + + + +

Michael J Rubinsky reports:

+
+

The second vulnerability (CVE-2017-9773) is a DOS vulnerability. +This only affects Horde installations that do not have a configured image +handling backend, and thus use the "Null" image driver. It is exploitable by +a logged in user clicking on a maliciously crafted URL.

+
+ +
+ + https://lists.horde.org/archives/announce/2017/001234.html + CVE-2017-9773 + + + 2017-06-21 + 2017-06-21 + +
+ + + pear-Horde_Image -- remote code execution vulnerability + + + pear-Horde_Image + 2.0.02.5.0 + + + + +

Michael J Rubinsky reports:

+
+

The fist vulnerability (CVE-2017-9774) is a Remote Code Execution +vulnerability and is exploitable by a logged in user sending a +maliciously crafted GET request to the Horde server.

+
+ +
+ + https://lists.horde.org/archives/announce/2017/001234.html + CVE-2017-9774 + + + 2017-06-21 + 2017-06-21 + +
+ OpenVPN -- several vulnerabilities From owner-svn-ports-head@freebsd.org Wed Jun 21 20:56:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26838D98E87; Wed, 21 Jun 2017 20:56:58 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBD0D7E0E3; Wed, 21 Jun 2017 20:56:57 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5LKuvvX030599; Wed, 21 Jun 2017 20:56:57 GMT (envelope-from cperciva@FreeBSD.org) Received: (from cperciva@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LKuu7d030597; Wed, 21 Jun 2017 20:56:56 GMT (envelope-from cperciva@FreeBSD.org) Message-Id: <201706212056.v5LKuu7d030597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cperciva set sender to cperciva@FreeBSD.org using -f From: Colin Percival Date: Wed, 21 Jun 2017 20:56:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444078 - 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: Wed, 21 Jun 2017 20:56:58 -0000 Author: cperciva Date: Wed Jun 21 20:56:56 2017 New Revision: 444078 URL: https://svnweb.freebsd.org/changeset/ports/444078 Log: Update bsdec2-image-upload to version 1.1.2. This works around recent breakage in the EC2 DescribeConversionTasks API and should unbreak the AMI upload process. Modified: head/net/bsdec2-image-upload/Makefile head/net/bsdec2-image-upload/distinfo Modified: head/net/bsdec2-image-upload/Makefile ============================================================================== --- head/net/bsdec2-image-upload/Makefile Wed Jun 21 20:42:13 2017 (r444077) +++ head/net/bsdec2-image-upload/Makefile Wed Jun 21 20:56:56 2017 (r444078) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bsdec2-image-upload -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= net MASTER_SITES= http://freebsd-ec2-dist.s3.amazonaws.com/ Modified: head/net/bsdec2-image-upload/distinfo ============================================================================== --- head/net/bsdec2-image-upload/distinfo Wed Jun 21 20:42:13 2017 (r444077) +++ head/net/bsdec2-image-upload/distinfo Wed Jun 21 20:56:56 2017 (r444078) @@ -1,3 +1,3 @@ TIMESTAMP = 1495738583 -SHA256 (bsdec2-image-upload-1.1.1.tgz) = cb2fbc0ffec3f6b8b6153e2b0fdb0c8d32f41967504cc9a3d43ac859d902bc55 -SIZE (bsdec2-image-upload-1.1.1.tgz) = 24274 +SHA256 (bsdec2-image-upload-1.1.2.tgz) = 4f7220dafe232e3efc1adb17e3a2f7b591aa25bc7eccb70008313b9e9c472ab0 +SIZE (bsdec2-image-upload-1.1.2.tgz) = 24275 From owner-svn-ports-head@freebsd.org Wed Jun 21 21:25:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8261D9969D; Wed, 21 Jun 2017 21:25:26 +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 A71A17EF0D; Wed, 21 Jun 2017 21:25:26 +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 v5LLPPOX042864; Wed, 21 Jun 2017 21:25:25 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LLPP9u042863; Wed, 21 Jun 2017 21:25:25 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201706212125.v5LLPP9u042863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Wed, 21 Jun 2017 21:25:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444079 - head/devel/qt5-script/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, 21 Jun 2017 21:25:27 -0000 Author: dim (src committer) Date: Wed Jun 21 21:25:25 2017 New Revision: 444079 URL: https://svnweb.freebsd.org/changeset/ports/444079 Log: Disable usage of c++1z (c++17) for qt5-script, as the third-party JavaScriptCore code is not fully compatible with it. This is a requirement for using libc++ 5.0.0, which is more strict. Approved by: tcberner (maintainer) PR: 220188 MFH: 2017Q2 Added: head/devel/qt5-script/files/patch-cr198221 (contents, props changed) Added: head/devel/qt5-script/files/patch-cr198221 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/qt5-script/files/patch-cr198221 Wed Jun 21 21:25:25 2017 (r444079) @@ -0,0 +1,21 @@ +From e6c7e47d85399dbedf86491ed3b7f582ddf7c740 Mon Sep 17 00:00:00 2001 +From: "Tobias C. Berner" +Date: Wed, 21 Jun 2017 21:38:23 +0200 +Subject: [PATCH] cat c.tDisable c++1z as it breaks compilation with libc++5. + +Change-Id: I7efa59433cd06ee8ff43d231e6ff1d4712fe65aa +--- + src/script/script.pro | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/script/script.pro b/src/script/script.pro +index e9f15e2..27fa434 100644 +--- src/script/script.pro ++++ src/script/script.pro +@@ -58,3 +58,4 @@ integrity { + TR_EXCLUDE = $$WEBKITDIR/* + + load(qt_module) ++CONFIG -= c++1z +-- +2.13.1 From owner-svn-ports-head@freebsd.org Wed Jun 21 21:46:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A28BAD99A01; Wed, 21 Jun 2017 21:46:11 +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 664E07F6DF; Wed, 21 Jun 2017 21:46:11 +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 v5LLkA8H050973; Wed, 21 Jun 2017 21:46:10 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LLkABR050972; Wed, 21 Jun 2017 21:46:10 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212146.v5LLkABR050972@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 21:46:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444080 - head/sysutils/passwordsafe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 21:46:11 -0000 Author: linimon Date: Wed Jun 21 21:46:10 2017 New Revision: 444080 URL: https://svnweb.freebsd.org/changeset/ports/444080 Log: Also fails the exact same way on aarch64 as armv6. Approved by: portmgr (tier-2 blanket) Modified: head/sysutils/passwordsafe/Makefile Modified: head/sysutils/passwordsafe/Makefile ============================================================================== --- head/sysutils/passwordsafe/Makefile Wed Jun 21 21:25:25 2017 (r444079) +++ head/sysutils/passwordsafe/Makefile Wed Jun 21 21:46:10 2017 (r444080) @@ -13,7 +13,7 @@ LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid \ libxerces-c-3.1.so:textproc/xerces-c3 BUILD_DEPENDS= zip:archivers/zip -NOT_FOR_ARCHS= armv6 +NOT_FOR_ARCHS= aarch64 armv6 NOT_FOR_ARCHS_REASON= Cannot determine whether the target CPU is big or little endian - please fix PwsPlatform.h CONFLICTS= pwsafe-[0-9]* From owner-svn-ports-head@freebsd.org Wed Jun 21 22:05:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5F91D99DC4; Wed, 21 Jun 2017 22:05:51 +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 949A57FEFE; Wed, 21 Jun 2017 22:05:51 +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 v5LM5o9p059033; Wed, 21 Jun 2017 22:05:50 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LM5o2U059032; Wed, 21 Jun 2017 22:05:50 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212205.v5LM5o2U059032@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 22:05:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444081 - 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: Wed, 21 Jun 2017 22:05:51 -0000 Author: linimon Date: Wed Jun 21 22:05:50 2017 New Revision: 444081 URL: https://svnweb.freebsd.org/changeset/ports/444081 Log: Mark as broken on aarch64. ISTM that the options code ought to be handling this correctly, but it is not. Approved by: portmgr (tier-2 blanket) Modified: head/audio/audacity/Makefile Modified: head/audio/audacity/Makefile ============================================================================== --- head/audio/audacity/Makefile Wed Jun 21 21:46:10 2017 (r444080) +++ head/audio/audacity/Makefile Wed Jun 21 22:05:50 2017 (r444081) @@ -18,7 +18,8 @@ BUILD_DEPENDS= autogen:devel/autogen \ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libsndfile.so:audio/libsndfile -BROKEN_powerpc64= Does not build +BROKEN_aarch64= fails to configure: checking whether C++ compiler accepts -msse... no +BROKEN_powerpc64= fails to build GNU_CONFIGURE= yes USES= autoreconf compiler:gcc-c++11-lib cpe desktop-file-utils gettext-tools gmake iconv libtool pkgconfig shared-mime-info shebangfix dos2unix From owner-svn-ports-head@freebsd.org Wed Jun 21 22:17:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6AE4D9A04F; Wed, 21 Jun 2017 22:17:35 +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 6FA9780397; Wed, 21 Jun 2017 22:17:35 +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 v5LMHYwS063288; Wed, 21 Jun 2017 22:17:34 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LMHYMm063286; Wed, 21 Jun 2017 22:17:34 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201706212217.v5LMHYMm063286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Wed, 21 Jun 2017 22:17:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444082 - in head/mail/exim: . 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, 21 Jun 2017 22:17:35 -0000 Author: vsevolod Date: Wed Jun 21 22:17:34 2017 New Revision: 444082 URL: https://svnweb.freebsd.org/changeset/ports/444082 Log: - Add workaround for CVE-2017-1000369 MFH: 2017Q2 Added: head/mail/exim/files/patch-CVE-2017-1000369 (contents, props changed) Modified: head/mail/exim/Makefile Modified: head/mail/exim/Makefile ============================================================================== --- head/mail/exim/Makefile Wed Jun 21 22:05:50 2017 (r444081) +++ head/mail/exim/Makefile Wed Jun 21 22:17:34 2017 (r444082) @@ -3,6 +3,7 @@ PORTNAME= exim PORTVERSION?= ${EXIM_VERSION} +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= EXIM:exim MASTER_SITE_SUBDIR= /exim4/:exim \ Added: head/mail/exim/files/patch-CVE-2017-1000369 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/exim/files/patch-CVE-2017-1000369 Wed Jun 21 22:17:34 2017 (r444082) @@ -0,0 +1,37 @@ +diff --git a/src/src/exim.c b/src/src/exim.c +index 67583e58..88e11977 100644 +--- src/exim.c ++++ src/exim.c +@@ -3106,7 +3106,14 @@ for (i = 1; i < argc; i++) + + /* -oMr: Received protocol */ + +- else if (Ustrcmp(argrest, "Mr") == 0) received_protocol = argv[++i]; ++ else if (Ustrcmp(argrest, "Mr") == 0) ++ ++ if (received_protocol) ++ { ++ fprintf(stderr, "received_protocol is set already\n"); ++ exit(EXIT_FAILURE); ++ } ++ else received_protocol = argv[++i]; + + /* -oMs: Set sender host name */ + +@@ -3202,7 +3209,15 @@ for (i = 1; i < argc; i++) + + if (*argrest != 0) + { +- uschar *hn = Ustrchr(argrest, ':'); ++ uschar *hn; ++ ++ if (received_protocol) ++ { ++ fprintf(stderr, "received_protocol is set already\n"); ++ exit(EXIT_FAILURE); ++ } ++ ++ hn = Ustrchr(argrest, ':'); + if (hn == NULL) + { + received_protocol = argrest; From owner-svn-ports-head@freebsd.org Wed Jun 21 22:23:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3EF2D9A1EC; Wed, 21 Jun 2017 22:23: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 A413180757; Wed, 21 Jun 2017 22:23: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 v5LMNBV4067104; Wed, 21 Jun 2017 22:23:11 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LMNBMh067103; Wed, 21 Jun 2017 22:23:11 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212223.v5LMNBMh067103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 22:23:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444083 - head/databases/galera X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 22:23:12 -0000 Author: linimon Date: Wed Jun 21 22:23:11 2017 New Revision: 444083 URL: https://svnweb.freebsd.org/changeset/ports/444083 Log: Mark as broken on aarch64 and armv6. Approved by: portmgr (tier-2 blanket) Modified: head/databases/galera/Makefile Modified: head/databases/galera/Makefile ============================================================================== --- head/databases/galera/Makefile Wed Jun 21 22:17:34 2017 (r444082) +++ head/databases/galera/Makefile Wed Jun 21 22:23:11 2017 (r444083) @@ -15,6 +15,8 @@ BUILD_DEPENDS= checkmk:devel/check \ ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs LIB_DEPENDS= libboost_date_time.so:devel/boost-libs +BROKEN_aarch64= fails to compile: gu_int128.h: use of undeclared identifier '__bswap64_var' +BROKEN_armv6= fails to compile: gu_int128.h: use of undeclared identifier '__bswap64_var' NOT_FOR_ARCHS= i386 # On i386 older versions of clang produce: # cannot compile this atomic library call yet ... __atomic_add_fetch From owner-svn-ports-head@freebsd.org Wed Jun 21 22:24:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CE29D9A22F; Wed, 21 Jun 2017 22:24:26 +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 1B42E80839; Wed, 21 Jun 2017 22:24:26 +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 v5LMOPaO067247; Wed, 21 Jun 2017 22:24:25 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LMOPCr067244; Wed, 21 Jun 2017 22:24:25 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201706212224.v5LMOPCr067244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Wed, 21 Jun 2017 22:24:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444084 - 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, 21 Jun 2017 22:24:26 -0000 Author: vsevolod Date: Wed Jun 21 22:24:24 2017 New Revision: 444084 URL: https://svnweb.freebsd.org/changeset/ports/444084 Log: Document Stack Clash vulnerability related to Exim Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jun 21 22:23:11 2017 (r444083) +++ head/security/vuxml/vuln.xml Wed Jun 21 22:24:24 2017 (r444084) @@ -58,6 +58,33 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + exim -- Privilege escalation via multiple memory leaks + + + exim + 4.89_1 + + + + +

Qualsys reports:

+
+

+ Exim supports the use of multiple "-p" command line arguments which are malloc()'ed and never free()'ed, used in conjunction with other issues allows attackers to cause arbitrary code execution. This affects exim version 4.89 and earlier. Please note that at this time upstream has released a patch (commit 65e061b76867a9ea7aeeb535341b790b90ae6c21), but it is not known if a new point release is available that addresses this issue at this time. +

+
+ +
+ + https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000369 + + + 2017-06-19 + 2017-06-21 + +
+ pear-Horde_Image -- DoS vulnerability From owner-svn-ports-head@freebsd.org Wed Jun 21 22:25:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33E6DD9A26B; Wed, 21 Jun 2017 22:25:51 +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 049D180924; Wed, 21 Jun 2017 22:25:50 +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 v5LMPos4067408; Wed, 21 Jun 2017 22:25:50 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LMPoJ8067407; Wed, 21 Jun 2017 22:25:50 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212225.v5LMPoJ8067407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 22:25:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444085 - head/databases/mariadb102-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, 21 Jun 2017 22:25:51 -0000 Author: linimon Date: Wed Jun 21 22:25:49 2017 New Revision: 444085 URL: https://svnweb.freebsd.org/changeset/ports/444085 Log: Mark as broken on aarch64: fails to link with sbrk. Approved by: portmgr (tier-2 blanket) Modified: head/databases/mariadb102-server/Makefile Modified: head/databases/mariadb102-server/Makefile ============================================================================== --- head/databases/mariadb102-server/Makefile Wed Jun 21 22:24:24 2017 (r444084) +++ head/databases/mariadb102-server/Makefile Wed Jun 21 22:25:49 2017 (r444085) @@ -22,6 +22,8 @@ LICENSE_NAME_PerconaFT= PerconaFT patents license LICENSE_FILE_PerconaFT= ${WRKSRC}/storage/tokudb/PerconaFT/PATENTS LICENSE_PERMS_PerconaFT= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN_aarch64= fails to link: stacktrace.c: undefined reference to 'sbrk' + SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message From owner-svn-ports-head@freebsd.org Wed Jun 21 22:47:02 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6973CD9A651; Wed, 21 Jun 2017 22:47: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 37CD581052; Wed, 21 Jun 2017 22:47: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 v5LMl1hE075547; Wed, 21 Jun 2017 22:47:01 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LMl1aA075546; Wed, 21 Jun 2017 22:47:01 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212247.v5LMl1aA075546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 22:47:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444086 - head/games/balazar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 22:47:02 -0000 Author: linimon Date: Wed Jun 21 22:47:01 2017 New Revision: 444086 URL: https://svnweb.freebsd.org/changeset/ports/444086 Log: Broken along with balazar_brothers. Modified: head/games/balazar/Makefile Modified: head/games/balazar/Makefile ============================================================================== --- head/games/balazar/Makefile Wed Jun 21 22:25:49 2017 (r444085) +++ head/games/balazar/Makefile Wed Jun 21 22:47:01 2017 (r444086) @@ -22,6 +22,7 @@ RUN_DEPENDS= soya_editor:graphics/py-soya3d \ ${PYTHON_PKGNAMEPREFIX}cerealizer>0:security/py-cerealizer \ ${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted +BROKEN= fails to package: pkg-static: py27-twisted-17.5.0_1 conflicts with py27-twistedCore-15.2.1 (installs files into the same place) NO_ARCH= yes USES= gettext python tar:bzip2 From owner-svn-ports-head@freebsd.org Wed Jun 21 22:50:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CD56D9A72D; Wed, 21 Jun 2017 22:50:45 +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 F11B5811E0; Wed, 21 Jun 2017 22:50:44 +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 v5LMoid3076499; Wed, 21 Jun 2017 22:50:44 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LMoiun076498; Wed, 21 Jun 2017 22:50:44 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212250.v5LMoiun076498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 22:50:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444087 - head/lang/mosh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 22:50:45 -0000 Author: linimon Date: Wed Jun 21 22:50:43 2017 New Revision: 444087 URL: https://svnweb.freebsd.org/changeset/ports/444087 Log: Fails to configure on aarch64. Approved by: portmgr (tier-2 blanket) Modified: head/lang/mosh/Makefile Modified: head/lang/mosh/Makefile ============================================================================== --- head/lang/mosh/Makefile Wed Jun 21 22:47:01 2017 (r444086) +++ head/lang/mosh/Makefile Wed Jun 21 22:50:43 2017 (r444087) @@ -18,6 +18,8 @@ LIB_DEPENDS= libgmp.so:math/gmp \ BROKEN_armv6= fails to link: os_dep.c: undefined reference to '__stack_base__' BROKEN_mips64= fails to compile: os_dep.c: redefinition of 'GC_register_dynamic_libraries' +NOT_FOR_ARCHS= aarch64 +NOT_FOR_ARCHS_REASON= gcconfig.h: the collector has not been ported to this machine/OS combination CONFLICTS_INSTALL= mosh-1.[0-9].* From owner-svn-ports-head@freebsd.org Wed Jun 21 23:03:02 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 391C5D9AAB0; Wed, 21 Jun 2017 23:03: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 F37CD81A0B; Wed, 21 Jun 2017 23:03:01 +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 v5LN30Nj083626; Wed, 21 Jun 2017 23:03:00 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5LN30M1083625; Wed, 21 Jun 2017 23:03:00 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706212303.v5LN30M1083625@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 21 Jun 2017 23:03:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444088 - head/devel/py-grpcio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 21 Jun 2017 23:03:02 -0000 Author: linimon Date: Wed Jun 21 23:03:00 2017 New Revision: 444088 URL: https://svnweb.freebsd.org/changeset/ports/444088 Log: Mark as broken on aarch64. Approved by: portmgr (tier-2 blanket) Modified: head/devel/py-grpcio/Makefile Modified: head/devel/py-grpcio/Makefile ============================================================================== --- head/devel/py-grpcio/Makefile Wed Jun 21 22:50:43 2017 (r444087) +++ head/devel/py-grpcio/Makefile Wed Jun 21 23:03:00 2017 (r444088) @@ -16,6 +16,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>1:devel/py-six ${PYTHON_PKGNAMEPREFIX}enum34>1:devel/py-enum34 LIB_DEPENDS= libcares.so:dns/c-ares +BROKEN_aarch64= fails to compile: cpu-aarch64-linux.c: fatal error: 'sys/auxv.h' file not found BROKEN_powerpc64= fails to compile: cpu-ppc64le.c: 'AT_HWCAP2' undeclared USES= python From owner-svn-ports-head@freebsd.org Thu Jun 22 00:39:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 279CAD9C45A; Thu, 22 Jun 2017 00:39:37 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F230184094; Thu, 22 Jun 2017 00:39:36 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5M0da4Z020635; Thu, 22 Jun 2017 00:39:36 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M0dZj6020631; Thu, 22 Jun 2017 00:39:35 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201706220039.v5M0dZj6020631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Thu, 22 Jun 2017 00:39:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444089 - in head/net-im/mastodon: . 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, 22 Jun 2017 00:39:37 -0000 Author: jrm Date: Thu Jun 22 00:39:35 2017 New Revision: 444089 URL: https://svnweb.freebsd.org/changeset/ports/444089 Log: net-im/mastodon: Update to version 1.4.4 Upstream release notes: https://github.com/tootsuite/mastodon/releases/tag/v1.4.4 Modified: head/net-im/mastodon/Makefile head/net-im/mastodon/distinfo head/net-im/mastodon/files/patch-Gemfile head/net-im/mastodon/pkg-plist Modified: head/net-im/mastodon/Makefile ============================================================================== --- head/net-im/mastodon/Makefile Wed Jun 21 23:03:00 2017 (r444088) +++ head/net-im/mastodon/Makefile Thu Jun 22 00:39:35 2017 (r444089) @@ -2,7 +2,7 @@ PORTNAME= mastodon DISTVERSIONPREFIX= v -DISTVERSION= 1.4.3 +DISTVERSION= 1.4.4 CATEGORIES= net-im www MAINTAINER= jrm@FreeBSD.org @@ -71,7 +71,7 @@ RUN_DEPENDS+= rubygem-addressable>0:www/rubygem-addres rubygem-statsd-instrument>0:devel/rubygem-statsd-instrument \ rubygem-twitter-text>0:textproc/rubygem-twitter-text \ rubygem-tzinfo-data>0:devel/rubygem-tzinfo-data \ - rubygem-webpacker1-rails5>0:devel/rubygem-webpacker1-rails5 + rubygem-webpacker-rails5>0:devel/rubygem-webpacker-rails5 RUN_DEPENDS+= rubygem-lograge-rails5>0:www/rubygem-lograge-rails5 \ rubygem-redis-rails-rails5>0:www/rubygem-redis-rails-rails5 Modified: head/net-im/mastodon/distinfo ============================================================================== --- head/net-im/mastodon/distinfo Wed Jun 21 23:03:00 2017 (r444088) +++ head/net-im/mastodon/distinfo Thu Jun 22 00:39:35 2017 (r444089) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497556435 -SHA256 (tootsuite-mastodon-v1.4.3_GH0.tar.gz) = e8dbca4b985d8b401c7e0f16be4e157520980c01cd2cb11179e7487d80b5fee5 -SIZE (tootsuite-mastodon-v1.4.3_GH0.tar.gz) = 10179914 +TIMESTAMP = 1498068913 +SHA256 (tootsuite-mastodon-v1.4.4_GH0.tar.gz) = 50da9b370bc1adda58b0218ae0d2af71a9638abf6d16566b636e577e63a9e366 +SIZE (tootsuite-mastodon-v1.4.4_GH0.tar.gz) = 10184510 Modified: head/net-im/mastodon/files/patch-Gemfile ============================================================================== --- head/net-im/mastodon/files/patch-Gemfile Wed Jun 21 23:03:00 2017 (r444088) +++ head/net-im/mastodon/files/patch-Gemfile Thu Jun 22 00:39:35 2017 (r444089) @@ -1,4 +1,4 @@ ---- Gemfile.orig 2017-06-15 14:16:31 UTC +--- Gemfile.orig 2017-06-21 18:22:27 UTC +++ Gemfile @@ -19,7 +19,6 @@ gem 'paperclip', '~> 5.1' gem 'paperclip-av-transcoder', '~> 0.6' @@ -8,12 +8,10 @@ gem 'cld3', '~> 3.1' gem 'devise', '~> 4.2' gem 'devise-two-factor', '~> 3.0' -@@ -59,46 +58,7 @@ gem 'sprockets-rails', '~> 3.2', require - gem 'statsd-instrument', '~> 2.1' - gem 'twitter-text', '~> 1.14' +@@ -61,45 +60,6 @@ gem 'twitter-text', '~> 1.14' gem 'tzinfo-data', '~> 1.2017' - gem 'webpacker', '~> 1.2' -- + gem 'webpacker', '~> 2.0' + -group :development, :test do - gem 'fabrication', '~> 2.16' - gem 'fuubar', '~> 2.2' @@ -52,6 +50,7 @@ - gem 'capistrano-rbenv', '~> 2.1' - gem 'capistrano-yarn', '~> 2.0' -end - +- group :production do gem 'lograge', '~> 0.5' + gem 'redis-rails', '~> 5.0' Modified: head/net-im/mastodon/pkg-plist ============================================================================== --- head/net-im/mastodon/pkg-plist Wed Jun 21 23:03:00 2017 (r444088) +++ head/net-im/mastodon/pkg-plist Thu Jun 22 00:39:35 2017 (r444089) @@ -366,6 +366,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/app/controllers/oauth/authorizations_controller.rb %%WWWDIR%%/app/controllers/oauth/authorized_applications_controller.rb %%WWWDIR%%/app/controllers/remote_follow_controller.rb +%%WWWDIR%%/app/controllers/settings/deletes_controller.rb %%WWWDIR%%/app/controllers/settings/exports/blocked_accounts_controller.rb %%WWWDIR%%/app/controllers/settings/exports/following_accounts_controller.rb %%WWWDIR%%/app/controllers/settings/exports/muted_accounts_controller.rb @@ -743,6 +744,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/app/models/feed.rb %%WWWDIR%%/app/models/follow.rb %%WWWDIR%%/app/models/follow_request.rb +%%WWWDIR%%/app/models/form/delete_confirmation.rb %%WWWDIR%%/app/models/form/two_factor_confirmation.rb %%WWWDIR%%/app/models/import.rb %%WWWDIR%%/app/models/instance.rb @@ -769,6 +771,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/app/services/after_block_service.rb %%WWWDIR%%/app/services/authorize_follow_service.rb %%WWWDIR%%/app/services/base_service.rb +%%WWWDIR%%/app/services/batched_remove_status_service.rb %%WWWDIR%%/app/services/block_domain_from_account_service.rb %%WWWDIR%%/app/services/block_domain_service.rb %%WWWDIR%%/app/services/block_service.rb @@ -781,7 +784,6 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/app/services/fetch_remote_account_service.rb %%WWWDIR%%/app/services/fetch_remote_resource_service.rb %%WWWDIR%%/app/services/fetch_remote_status_service.rb -%%WWWDIR%%/app/services/follow_remote_account_service.rb %%WWWDIR%%/app/services/follow_service.rb %%WWWDIR%%/app/services/mute_service.rb %%WWWDIR%%/app/services/notify_service.rb @@ -796,6 +798,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/app/services/reblog_service.rb %%WWWDIR%%/app/services/reject_follow_service.rb %%WWWDIR%%/app/services/remove_status_service.rb +%%WWWDIR%%/app/services/resolve_remote_account_service.rb %%WWWDIR%%/app/services/search_service.rb %%WWWDIR%%/app/services/send_interaction_service.rb %%WWWDIR%%/app/services/subscribe_service.rb @@ -932,6 +935,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/app/views/oauth/authorizations/show.html.haml %%WWWDIR%%/app/views/oauth/authorized_applications/index.html.haml %%WWWDIR%%/app/views/remote_follow/new.html.haml +%%WWWDIR%%/app/views/settings/deletes/show.html.haml %%WWWDIR%%/app/views/settings/exports/show.html.haml %%WWWDIR%%/app/views/settings/follower_domains/show.html.haml %%WWWDIR%%/app/views/settings/imports/show.html.haml @@ -1274,18 +1278,16 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/config/sidekiq.yml %%WWWDIR%%/config/webpack/configuration.js %%WWWDIR%%/config/webpack/development.js -%%WWWDIR%%/config/webpack/development.server.js -%%WWWDIR%%/config/webpack/development.server.yml %%WWWDIR%%/config/webpack/generateLocalePacks.js %%WWWDIR%%/config/webpack/loaders/assets.js %%WWWDIR%%/config/webpack/loaders/babel.js %%WWWDIR%%/config/webpack/loaders/mark.js %%WWWDIR%%/config/webpack/loaders/sass.js -%%WWWDIR%%/config/webpack/paths.yml %%WWWDIR%%/config/webpack/production.js %%WWWDIR%%/config/webpack/shared.js %%WWWDIR%%/config/webpack/test.js %%WWWDIR%%/config/webpack/translationRunner.js +%%WWWDIR%%/config/webpacker.yml %%WWWDIR%%/db/migrate/20160220174730_create_accounts.rb %%WWWDIR%%/db/migrate/20160220211917_create_statuses.rb %%WWWDIR%%/db/migrate/20160221003140_create_users.rb @@ -5173,6 +5175,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/controllers/oauth/authorizations_controller_spec.rb %%WWWDIR%%/spec/controllers/oauth/authorized_applications_controller_spec.rb %%WWWDIR%%/spec/controllers/remote_follow_controller_spec.rb +%%WWWDIR%%/spec/controllers/settings/deletes_controller_spec.rb %%WWWDIR%%/spec/controllers/settings/exports/blocked_accounts_controller_spec.rb %%WWWDIR%%/spec/controllers/settings/exports/following_accounts_controller_spec.rb %%WWWDIR%%/spec/controllers/settings/exports/muted_accounts_controller_spec.rb @@ -5272,6 +5275,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/lib/webfinger_resource_spec.rb %%WWWDIR%%/spec/mailers/notification_mailer_spec.rb %%WWWDIR%%/spec/mailers/previews/notification_mailer_preview.rb +%%WWWDIR%%/spec/mailers/user_mailer_spec.rb %%WWWDIR%%/spec/models/account_domain_block_spec.rb %%WWWDIR%%/spec/models/account_filter_spec.rb %%WWWDIR%%/spec/models/account_spec.rb @@ -5315,6 +5319,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/services/account_search_service_spec.rb %%WWWDIR%%/spec/services/after_block_service_spec.rb %%WWWDIR%%/spec/services/authorize_follow_service_spec.rb +%%WWWDIR%%/spec/services/batched_remove_status_service_spec.rb %%WWWDIR%%/spec/services/block_domain_from_account_service_spec.rb %%WWWDIR%%/spec/services/block_domain_service_spec.rb %%WWWDIR%%/spec/services/block_service_spec.rb @@ -5325,7 +5330,6 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/services/fetch_remote_account_service_spec.rb %%WWWDIR%%/spec/services/fetch_remote_resource_service_spec.rb %%WWWDIR%%/spec/services/fetch_remote_status_service_spec.rb -%%WWWDIR%%/spec/services/follow_remote_account_service_spec.rb %%WWWDIR%%/spec/services/follow_service_spec.rb %%WWWDIR%%/spec/services/mute_service_spec.rb %%WWWDIR%%/spec/services/notify_service_spec.rb @@ -5339,6 +5343,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/services/reblog_service_spec.rb %%WWWDIR%%/spec/services/reject_follow_service_spec.rb %%WWWDIR%%/spec/services/remove_status_service_spec.rb +%%WWWDIR%%/spec/services/resolve_remote_account_service_spec.rb %%WWWDIR%%/spec/services/search_service_spec.rb %%WWWDIR%%/spec/services/send_interaction_service_spec.rb %%WWWDIR%%/spec/services/subscribe_service_spec.rb @@ -5392,6 +5397,5 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/bin/update %%WWWDIR%%/bin/webpack %%WWWDIR%%/bin/webpack-dev-server -%%WWWDIR%%/bin/yarn @owner root @group wheel From owner-svn-ports-head@freebsd.org Thu Jun 22 01:19:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 366BFD9D558; Thu, 22 Jun 2017 01:19:18 +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 0447E92C; Thu, 22 Jun 2017 01:19:17 +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 v5M1JHwV036731; Thu, 22 Jun 2017 01:19:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M1JHce036730; Thu, 22 Jun 2017 01:19:17 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706220119.v5M1JHce036730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 01:19:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444090 - head/www/firefox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 01:19:18 -0000 Author: jbeich Date: Thu Jun 22 01:19:16 2017 New Revision: 444090 URL: https://svnweb.freebsd.org/changeset/ports/444090 Log: www/firefox: enable RUST on aarch64 after r443777 and r443780 PR: 216143 Modified: head/www/firefox/Makefile (contents, props changed) Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Thu Jun 22 00:39:35 2017 (r444089) +++ head/www/firefox/Makefile Thu Jun 22 01:19:16 2017 (r444090) @@ -47,6 +47,7 @@ MOZ_OPTIONS= --enable-application=browser \ OPTIONS_DEFINE= RUST OPTIONS_DEFAULT= BUNDLED_CAIRO # XXX lang/rust and devel/cargo currently build only on these platforms +OPTIONS_DEFAULT_aarch64=RUST OPTIONS_DEFAULT_amd64= RUST OPTIONS_DEFAULT_i386= RUST From owner-svn-ports-head@freebsd.org Thu Jun 22 01:19:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFE3CD9D597; Thu, 22 Jun 2017 01:19: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 83A2699D; Thu, 22 Jun 2017 01:19:29 +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 v5M1JSl3036851; Thu, 22 Jun 2017 01:19:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M1JSoA036850; Thu, 22 Jun 2017 01:19:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706220119.v5M1JSoA036850@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 01:19:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444091 - 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, 22 Jun 2017 01:19:29 -0000 Author: jbeich Date: Thu Jun 22 01:19:28 2017 New Revision: 444091 URL: https://svnweb.freebsd.org/changeset/ports/444091 Log: gecko: phase out system jemalloc via 12.0-CURRENT as well https://bugzilla.mozilla.org/show_bug.cgi?id=1363992 PR: 220027 Modified: head/Mk/bsd.gecko.mk (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Thu Jun 22 01:19:16 2017 (r444090) +++ head/Mk/bsd.gecko.mk Thu Jun 22 01:19:28 2017 (r444091) @@ -139,18 +139,10 @@ MOZ_MK_OPTIONS+=MOZ_OBJDIR="${MOZ_OBJDIR}" LDFLAGS+= -Wl,--as-needed -.if ${MOZILLA_VER:R:R} < 55 -.if ${OPSYS} != DragonFly # XXX xpcshell crash during install +.if ${MOZILLA_VER:R:R} < 55 && ${OPSYS} == FreeBSD && ${OSVERSION} < 1200032 # use jemalloc 3.0.0 (4.0 for firefox 43+) API for stats/tuning -MOZ_EXPORT+= MOZ_JEMALLOC3=1 MOZ_JEMALLOC4=1 -.if ${OPSYS} != FreeBSD || ${MOZILLA_VER:R:R} >= 37 -. if ${MOZILLA_VER:R:R} >= 48 +MOZ_EXPORT+= MOZ_JEMALLOC4=1 MOZ_OPTIONS+= --enable-jemalloc=4 -.else -MOZ_OPTIONS+= --enable-jemalloc -. endif -.endif -.endif # !DragonFly .endif # Mozilla < 55 # Standard depends From owner-svn-ports-head@freebsd.org Thu Jun 22 02:47:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D70BDA174E; Thu, 22 Jun 2017 02:47:27 +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 6BC7F6480F; Thu, 22 Jun 2017 02:47:27 +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 v5M2lQVv072972; Thu, 22 Jun 2017 02:47:26 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M2lQVf072970; Thu, 22 Jun 2017 02:47:26 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706220247.v5M2lQVf072970@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 02:47:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444092 - head/math/octave-forge-generate_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 02:47:27 -0000 Author: stephen Date: Thu Jun 22 02:47:26 2017 New Revision: 444092 URL: https://svnweb.freebsd.org/changeset/ports/444092 Log: - Update to 0.2.0. Modified: head/math/octave-forge-generate_html/Makefile head/math/octave-forge-generate_html/distinfo Modified: head/math/octave-forge-generate_html/Makefile ============================================================================== --- head/math/octave-forge-generate_html/Makefile Thu Jun 22 01:19:28 2017 (r444091) +++ head/math/octave-forge-generate_html/Makefile Thu Jun 22 02:47:26 2017 (r444092) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-generate_html -PORTVERSION= 0.1.13 +PORTVERSION= 0.2.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-generate_html/distinfo ============================================================================== --- head/math/octave-forge-generate_html/distinfo Thu Jun 22 01:19:28 2017 (r444091) +++ head/math/octave-forge-generate_html/distinfo Thu Jun 22 02:47:26 2017 (r444092) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497926967 -SHA256 (octave-forge/generate_html-0.1.13.tar.gz) = c912f4df5affeaaa647d9c307f7f1c7be96e130377be6deed961e58feba3de54 -SIZE (octave-forge/generate_html-0.1.13.tar.gz) = 31927 +TIMESTAMP = 1498099527 +SHA256 (octave-forge/generate_html-0.2.0.tar.gz) = 683f630f0234797783fcce935319d4ebc88495f47e4fdd27d034c5a816dbaee2 +SIZE (octave-forge/generate_html-0.2.0.tar.gz) = 35744 From owner-svn-ports-head@freebsd.org Thu Jun 22 03:05:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 866B0DA274C; Thu, 22 Jun 2017 03:05:14 +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 4E1C165729; Thu, 22 Jun 2017 03:05:14 +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 v5M35DU5081831; Thu, 22 Jun 2017 03:05:13 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M35DUX081829; Thu, 22 Jun 2017 03:05:13 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706220305.v5M35DUX081829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 03:05:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444093 - head/math/octave-forge-generate_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 03:05:14 -0000 Author: stephen Date: Thu Jun 22 03:05:12 2017 New Revision: 444093 URL: https://svnweb.freebsd.org/changeset/ports/444093 Log: - Update to 0.3.0. Modified: head/math/octave-forge-generate_html/Makefile head/math/octave-forge-generate_html/distinfo Modified: head/math/octave-forge-generate_html/Makefile ============================================================================== --- head/math/octave-forge-generate_html/Makefile Thu Jun 22 02:47:26 2017 (r444092) +++ head/math/octave-forge-generate_html/Makefile Thu Jun 22 03:05:12 2017 (r444093) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-generate_html -PORTVERSION= 0.2.0 +PORTVERSION= 0.3.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-generate_html/distinfo ============================================================================== --- head/math/octave-forge-generate_html/distinfo Thu Jun 22 02:47:26 2017 (r444092) +++ head/math/octave-forge-generate_html/distinfo Thu Jun 22 03:05:12 2017 (r444093) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498099527 -SHA256 (octave-forge/generate_html-0.2.0.tar.gz) = 683f630f0234797783fcce935319d4ebc88495f47e4fdd27d034c5a816dbaee2 -SIZE (octave-forge/generate_html-0.2.0.tar.gz) = 35744 +TIMESTAMP = 1498100569 +SHA256 (octave-forge/generate_html-0.3.0.tar.gz) = 9b16dd004aa0208258c6a9322cbc0033f94e0b87e638a541cddd9d6c0f53edad +SIZE (octave-forge/generate_html-0.3.0.tar.gz) = 61570 From owner-svn-ports-head@freebsd.org Thu Jun 22 03:13:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E6B9DA2BA4; Thu, 22 Jun 2017 03:13:12 +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 5E8AF65C05; Thu, 22 Jun 2017 03:13:12 +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 v5M3DBB7085912; Thu, 22 Jun 2017 03:13:11 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M3DBoo085911; Thu, 22 Jun 2017 03:13:11 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706220313.v5M3DBoo085911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 03:13:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444094 - head/math/octave-forge-generate_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 03:13:12 -0000 Author: stephen Date: Thu Jun 22 03:13:11 2017 New Revision: 444094 URL: https://svnweb.freebsd.org/changeset/ports/444094 Log: - Update to 0.3.1. Modified: head/math/octave-forge-generate_html/Makefile head/math/octave-forge-generate_html/distinfo Modified: head/math/octave-forge-generate_html/Makefile ============================================================================== --- head/math/octave-forge-generate_html/Makefile Thu Jun 22 03:05:12 2017 (r444093) +++ head/math/octave-forge-generate_html/Makefile Thu Jun 22 03:13:11 2017 (r444094) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-generate_html -PORTVERSION= 0.3.0 +PORTVERSION= 0.3.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-generate_html/distinfo ============================================================================== --- head/math/octave-forge-generate_html/distinfo Thu Jun 22 03:05:12 2017 (r444093) +++ head/math/octave-forge-generate_html/distinfo Thu Jun 22 03:13:11 2017 (r444094) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498100569 -SHA256 (octave-forge/generate_html-0.3.0.tar.gz) = 9b16dd004aa0208258c6a9322cbc0033f94e0b87e638a541cddd9d6c0f53edad -SIZE (octave-forge/generate_html-0.3.0.tar.gz) = 61570 +TIMESTAMP = 1498101104 +SHA256 (octave-forge/generate_html-0.3.1.tar.gz) = 2ab9d33181865e2b324b8936034dd9dd951db1a5f31173dfed57ce294b766768 +SIZE (octave-forge/generate_html-0.3.1.tar.gz) = 61634 From owner-svn-ports-head@freebsd.org Thu Jun 22 03:39:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 724C5DA3731; Thu, 22 Jun 2017 03:39:07 +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 408476677A; Thu, 22 Jun 2017 03:39:07 +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 v5M3d6U8094389; Thu, 22 Jun 2017 03:39:06 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M3d65n094387; Thu, 22 Jun 2017 03:39:06 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706220339.v5M3d65n094387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 03:39:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444095 - head/math/octave-forge-tsa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 03:39:07 -0000 Author: stephen Date: Thu Jun 22 03:39:06 2017 New Revision: 444095 URL: https://svnweb.freebsd.org/changeset/ports/444095 Log: - Update to 4.4.5. Modified: head/math/octave-forge-tsa/Makefile head/math/octave-forge-tsa/distinfo Modified: head/math/octave-forge-tsa/Makefile ============================================================================== --- head/math/octave-forge-tsa/Makefile Thu Jun 22 03:13:11 2017 (r444094) +++ head/math/octave-forge-tsa/Makefile Thu Jun 22 03:39:06 2017 (r444095) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-tsa -PORTVERSION= 4.4.1 -PORTREVISION= 2 +PORTVERSION= 4.4.5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -14,9 +13,11 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. -OCTSRC= ${OCTAVE_PKGNAME} +OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src + +RUN_DEPENDS+= ${TARBALLS_DIR}/nan.tar.gz:math/octave-forge-nan .include "${.CURDIR}/../../Mk/bsd.octave.mk" Modified: head/math/octave-forge-tsa/distinfo ============================================================================== --- head/math/octave-forge-tsa/distinfo Thu Jun 22 03:13:11 2017 (r444094) +++ head/math/octave-forge-tsa/distinfo Thu Jun 22 03:39:06 2017 (r444095) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/tsa-4.4.1.tar.gz) = d4d0053cd73b2633e24e80a61bb0b413c99b39a24b8f0daf8364843d1a47780d -SIZE (octave-forge/tsa-4.4.1.tar.gz) = 94030 +TIMESTAMP = 1498102392 +SHA256 (octave-forge/tsa-4.4.5.tar.gz) = c9eb377fc9006e9764f3b152f7bd4725cb6025699bfab0d6a68f26fe2484d6ef +SIZE (octave-forge/tsa-4.4.5.tar.gz) = 86494 From owner-svn-ports-head@freebsd.org Thu Jun 22 03:39:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97963DA37A7; Thu, 22 Jun 2017 03:39:37 +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 67A9B66882; Thu, 22 Jun 2017 03:39:37 +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 v5M3da05094521; Thu, 22 Jun 2017 03:39:36 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M3dai5094519; Thu, 22 Jun 2017 03:39:36 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706220339.v5M3dai5094519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 03:39:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444096 - head/math/octave-forge-nan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 03:39:37 -0000 Author: stephen Date: Thu Jun 22 03:39:36 2017 New Revision: 444096 URL: https://svnweb.freebsd.org/changeset/ports/444096 Log: - Update to 3.1.2. Modified: head/math/octave-forge-nan/Makefile head/math/octave-forge-nan/distinfo Modified: head/math/octave-forge-nan/Makefile ============================================================================== --- head/math/octave-forge-nan/Makefile Thu Jun 22 03:39:06 2017 (r444095) +++ head/math/octave-forge-nan/Makefile Thu Jun 22 03:39:36 2017 (r444096) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-nan -PORTVERSION= 3.0 -PORTREVISION= 2 +PORTVERSION= 3.1.2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -16,7 +15,7 @@ MAKE_JOBS_UNSAFE= yes # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. -OCTSRC= NaN +OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src Modified: head/math/octave-forge-nan/distinfo ============================================================================== --- head/math/octave-forge-nan/distinfo Thu Jun 22 03:39:06 2017 (r444095) +++ head/math/octave-forge-nan/distinfo Thu Jun 22 03:39:36 2017 (r444096) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/nan-3.0.tar.gz) = 60440b4b81019830272a4a717cdc66e6b138aaa1899d0d4fe76878979e2fe082 -SIZE (octave-forge/nan-3.0.tar.gz) = 170530 +TIMESTAMP = 1498102023 +SHA256 (octave-forge/nan-3.1.2.tar.gz) = 0bb8d985cf3b1d5c478253c60a5712af6af301842b869fba1ce93693ce40398d +SIZE (octave-forge/nan-3.1.2.tar.gz) = 160542 From owner-svn-ports-head@freebsd.org Thu Jun 22 03:40:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC1A5DA382F; Thu, 22 Jun 2017 03:40:10 +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 AC9F16697F; Thu, 22 Jun 2017 03:40:10 +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 v5M3e91c094681; Thu, 22 Jun 2017 03:40:09 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M3e9g7094679; Thu, 22 Jun 2017 03:40:09 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706220340.v5M3e9g7094679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 03:40:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444097 - head/math/octave-forge-fits X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 03:40:11 -0000 Author: stephen Date: Thu Jun 22 03:40:09 2017 New Revision: 444097 URL: https://svnweb.freebsd.org/changeset/ports/444097 Log: - Update to 1.0.7. Modified: head/math/octave-forge-fits/Makefile head/math/octave-forge-fits/distinfo Modified: head/math/octave-forge-fits/Makefile ============================================================================== --- head/math/octave-forge-fits/Makefile Thu Jun 22 03:39:36 2017 (r444096) +++ head/math/octave-forge-fits/Makefile Thu Jun 22 03:40:09 2017 (r444097) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-fits -PORTVERSION= 1.0.5 -PORTREVISION= 4 +PORTVERSION= 1.0.7 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -14,7 +13,7 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. -OCTSRC= ${OCTAVE_PKGNAME} +OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src Modified: head/math/octave-forge-fits/distinfo ============================================================================== --- head/math/octave-forge-fits/distinfo Thu Jun 22 03:39:36 2017 (r444096) +++ head/math/octave-forge-fits/distinfo Thu Jun 22 03:40:09 2017 (r444097) @@ -1,2 +1,3 @@ -SHA256 (octave-forge/fits-1.0.5.tar.gz) = 58f79a499004402a81938b26eecf3bdcf0e02385ca2125ca9079c92016502718 -SIZE (octave-forge/fits-1.0.5.tar.gz) = 16704 +TIMESTAMP = 1498101621 +SHA256 (octave-forge/fits-1.0.7.tar.gz) = 95124173f852498cb71acc97712af104027669f60c4f972bbcd8c59b2b2f4b49 +SIZE (octave-forge/fits-1.0.7.tar.gz) = 16759 From owner-svn-ports-head@freebsd.org Thu Jun 22 05:54:39 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 040C1DA6D6B; Thu, 22 Jun 2017 05:54:39 +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 C80346E875; Thu, 22 Jun 2017 05:54:38 +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 v5M5sbHx051715; Thu, 22 Jun 2017 05:54:37 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M5sbRO051713; Thu, 22 Jun 2017 05:54:37 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706220554.v5M5sbRO051713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 22 Jun 2017 05:54:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444098 - in head: graphics/ppmcaption lang/py-prolog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 05:54:39 -0000 Author: linimon Date: Thu Jun 22 05:54:37 2017 New Revision: 444098 URL: https://svnweb.freebsd.org/changeset/ports/444098 Log: Remove mention of ia64 from the BROKEN messages of some archaic ports. Modified: head/graphics/ppmcaption/Makefile head/lang/py-prolog/Makefile Modified: head/graphics/ppmcaption/Makefile ============================================================================== --- head/graphics/ppmcaption/Makefile Thu Jun 22 03:40:09 2017 (r444097) +++ head/graphics/ppmcaption/Makefile Thu Jun 22 05:54:37 2017 (r444098) @@ -17,7 +17,7 @@ MAKE_ARGS= install_prefix=${STAGEDIR} PLIST_FILES= bin/ppmcaption man/man1/ppmcaption.1.gz ONLY_FOR_ARCHS= i386 -ONLY_FOR_ARCHS_REASON= does not compile on ia64 or amd64; untested everywhere else +ONLY_FOR_ARCHS_REASON= does not compile on amd64; untested everywhere else post-patch: ${REINPLACE_CMD} -e "s,-lang-c89,," ${WRKSRC}/configure Modified: head/lang/py-prolog/Makefile ============================================================================== --- head/lang/py-prolog/Makefile Thu Jun 22 03:40:09 2017 (r444097) +++ head/lang/py-prolog/Makefile Thu Jun 22 05:54:37 2017 (r444098) @@ -15,13 +15,9 @@ COMMENT= Python extension embedding SWI-Prolog BUILD_DEPENDS= swipl:lang/swi-pl RUN_DEPENDS= swipl:lang/swi-pl +BROKEN_amd64= fails to build: can't link shared libraries to static + USES= python USE_PYTHON= distutils autoplist -.include - -.if ${ARCH} == "ia64" || ${ARCH} == "amd64" -BROKEN= Does not build on ia64 or amd64 (can't link shared libraries to static) -.endif - -.include +.include From owner-svn-ports-head@freebsd.org Thu Jun 22 06:03:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5947BDA6FF9; Thu, 22 Jun 2017 06:03:22 +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 296276EC54; Thu, 22 Jun 2017 06:03:22 +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 v5M63Lo2055631; Thu, 22 Jun 2017 06:03:21 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M63Lmm055630; Thu, 22 Jun 2017 06:03:21 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706220603.v5M63Lmm055630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 22 Jun 2017 06:03:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444099 - head/math/p5-Math-Int128 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 06:03:22 -0000 Author: linimon Date: Thu Jun 22 06:03:21 2017 New Revision: 444099 URL: https://svnweb.freebsd.org/changeset/ports/444099 Log: Alphabetize archs. Approved by: portmgr (tier-2 blanket) Modified: head/math/p5-Math-Int128/Makefile Modified: head/math/p5-Math-Int128/Makefile ============================================================================== --- head/math/p5-Math-Int128/Makefile Thu Jun 22 05:54:37 2017 (r444098) +++ head/math/p5-Math-Int128/Makefile Thu Jun 22 06:03:21 2017 (r444099) @@ -19,7 +19,7 @@ RUN_DEPENDS= p5-Math-Int64>=0.51:math/p5-Math-Int64 USES= perl5 USE_PERL5= configure -NOT_FOR_ARCHS= i386 armv6 +NOT_FOR_ARCHS= armv6 i386 .include From owner-svn-ports-head@freebsd.org Thu Jun 22 06:38:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 769D9DA7820; Thu, 22 Jun 2017 06:38:47 +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 459DE6F91A; Thu, 22 Jun 2017 06:38:47 +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 v5M6ckAQ068058; Thu, 22 Jun 2017 06:38:46 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M6ckGx068056; Thu, 22 Jun 2017 06:38:46 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201706220638.v5M6ckGx068056@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 22 Jun 2017 06:38:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444100 - 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: Thu, 22 Jun 2017 06:38:47 -0000 Author: vanilla Date: Thu Jun 22 06:38:46 2017 New Revision: 444100 URL: https://svnweb.freebsd.org/changeset/ports/444100 Log: Update to 1.9.14. Modified: head/devel/pecl-swoole/Makefile head/devel/pecl-swoole/distinfo Modified: head/devel/pecl-swoole/Makefile ============================================================================== --- head/devel/pecl-swoole/Makefile Thu Jun 22 06:03:21 2017 (r444099) +++ head/devel/pecl-swoole/Makefile Thu Jun 22 06:38:46 2017 (r444100) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= swoole -PORTVERSION= 1.9.13 +PORTVERSION= 1.9.14 CATEGORIES= devel net MAINTAINER= vanilla@FreeBSD.org Modified: head/devel/pecl-swoole/distinfo ============================================================================== --- head/devel/pecl-swoole/distinfo Thu Jun 22 06:03:21 2017 (r444099) +++ head/devel/pecl-swoole/distinfo Thu Jun 22 06:38:46 2017 (r444100) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497064600 -SHA256 (PECL/swoole-1.9.13.tgz) = 530433bf67e2494e21485ca7e12948e2f7591ad8e9eb5c727aeed49a251bea8b -SIZE (PECL/swoole-1.9.13.tgz) = 573631 +TIMESTAMP = 1498112799 +SHA256 (PECL/swoole-1.9.14.tgz) = c9af66c0b7ee2400d8768e27b7a10109cd91cc8745d3155fc447b57f415be03b +SIZE (PECL/swoole-1.9.14.tgz) = 574516 From owner-svn-ports-head@freebsd.org Thu Jun 22 07:08:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5AB5ADA7E03; Thu, 22 Jun 2017 07:08:55 +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 29DD77049A; Thu, 22 Jun 2017 07:08:55 +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 v5M78sAx080788; Thu, 22 Jun 2017 07:08:54 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M78rhJ080784; Thu, 22 Jun 2017 07:08:53 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201706220708.v5M78rhJ080784@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 22 Jun 2017 07:08:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444101 - in head/devel/grpc: . 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, 22 Jun 2017 07:08:55 -0000 Author: vanilla Date: Thu Jun 22 07:08:53 2017 New Revision: 444101 URL: https://svnweb.freebsd.org/changeset/ports/444101 Log: Update to 1.4.0. Modified: head/devel/grpc/Makefile head/devel/grpc/distinfo head/devel/grpc/files/patch-CMakeLists.txt head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c Modified: head/devel/grpc/Makefile ============================================================================== --- head/devel/grpc/Makefile Thu Jun 22 06:38:46 2017 (r444100) +++ head/devel/grpc/Makefile Thu Jun 22 07:08:53 2017 (r444101) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= grpc -PORTVERSION= 1.3.4 +PORTVERSION= 1.4.0 DISTVERSIONPREFIX= v CATEGORIES= devel Modified: head/devel/grpc/distinfo ============================================================================== --- head/devel/grpc/distinfo Thu Jun 22 06:38:46 2017 (r444100) +++ head/devel/grpc/distinfo Thu Jun 22 07:08:53 2017 (r444101) @@ -1,6 +1,6 @@ -TIMESTAMP = 1497326729 -SHA256 (grpc-grpc-v1.3.4_GH0.tar.gz) = c12ca2693a3b3d80cadb15f1618d9ca6c83fe8c64a32b058a95ff8dce39b3e82 -SIZE (grpc-grpc-v1.3.4_GH0.tar.gz) = 4803665 +TIMESTAMP = 1498113591 +SHA256 (grpc-grpc-v1.4.0_GH0.tar.gz) = 26da0fa694111cb073f09c1273355a63930e2127479a64271a81b71d8ac78592 +SIZE (grpc-grpc-v1.4.0_GH0.tar.gz) = 4818770 SHA256 (boringssl-boringssl-ebcb5be_GH0.tar.gz) = 324b80025f73eba48791fdfcf82e81b4496b8a002fd985d68cca137f31d25e4c SIZE (boringssl-boringssl-ebcb5be_GH0.tar.gz) = 5936046 SHA256 (google-benchmark-v1.1.0_GH0.tar.gz) = e7334dd254434c6668e33a54c8f839194c7c61840d52f4b6258eee28e9f3b20e Modified: head/devel/grpc/files/patch-CMakeLists.txt ============================================================================== --- head/devel/grpc/files/patch-CMakeLists.txt Thu Jun 22 06:38:46 2017 (r444100) +++ head/devel/grpc/files/patch-CMakeLists.txt Thu Jun 22 07:08:53 2017 (r444101) @@ -1,14 +1,5 @@ ---- CMakeLists.txt.orig 2017-05-19 23:18:40 UTC +--- CMakeLists.txt.orig 2017-06-21 17:05:33 UTC +++ CMakeLists.txt -@@ -39,7 +39,7 @@ - cmake_minimum_required(VERSION 2.8) - - set(PACKAGE_NAME "grpc") --set(PACKAGE_VERSION "1.4.0-dev") -+set(PACKAGE_VERSION "1.3.4") - set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") - set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}") - set(PACKAGE_BUGREPORT "https://github.com/grpc/grpc/issues/") @@ -150,7 +150,8 @@ if("${gRPC_CARES_PROVIDER}" STREQUAL "mo message(WARNING "gRPC_CARES_PROVIDER is \"module\" but CARES_ROOT_DIR is wrong") endif() @@ -53,11 +44,11 @@ "${_gRPC_PROTO_GENS_DIR}/${RELFIL_WE}.pb.cc" "${_gRPC_PROTO_GENS_DIR}/${RELFIL_WE}.pb.h" - COMMAND ${_gRPC_PROTOBUF_PROTOC} -+ COMMAND "protoc" ++ COMMAND protoc ARGS --grpc_out=generate_mock_code=true:${_gRPC_PROTO_GENS_DIR} --cpp_out=${_gRPC_PROTO_GENS_DIR} --plugin=protoc-gen-grpc=$ -@@ -791,6 +782,7 @@ add_library(gpr +@@ -793,6 +784,7 @@ add_library(gpr src/core/lib/support/tmpfile_windows.c src/core/lib/support/wrap_memcpy.c ) @@ -65,7 +56,15 @@ if(WIN32 AND MSVC) set_target_properties(gpr PROPERTIES COMPILE_PDB_NAME "gpr" -@@ -1169,6 +1161,7 @@ add_library(grpc +@@ -885,6 +877,7 @@ if (gRPC_BUILD_TESTS) + add_library(gpr_test_util + test/core/util/test_config.c + ) ++set_target_properties(gpr_test_util PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(gpr_test_util PROPERTIES COMPILE_PDB_NAME "gpr_test_util" +@@ -1172,6 +1165,7 @@ add_library(grpc src/core/ext/filters/workarounds/workaround_utils.c src/core/plugin_registry/grpc_plugin_registry.c ) @@ -73,7 +72,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc PROPERTIES COMPILE_PDB_NAME "grpc" -@@ -1470,6 +1463,7 @@ add_library(grpc_cronet +@@ -1473,6 +1467,7 @@ add_library(grpc_cronet src/core/ext/filters/load_reporting/load_reporting_filter.c src/core/plugin_registry/grpc_cronet_plugin_registry.c ) @@ -81,7 +80,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc_cronet PROPERTIES COMPILE_PDB_NAME "grpc_cronet" -@@ -1706,6 +1700,7 @@ add_library(grpc_test_util +@@ -1709,6 +1704,7 @@ add_library(grpc_test_util src/core/lib/transport/transport_op_string.c src/core/lib/debug/trace.c ) @@ -89,7 +88,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc_test_util PROPERTIES COMPILE_PDB_NAME "grpc_test_util" -@@ -1800,6 +1795,7 @@ add_library(grpc_test_util_unsecure +@@ -1803,6 +1799,7 @@ add_library(grpc_test_util_unsecure test/core/util/slice_splitter.c test/core/util/trickle_endpoint.c ) @@ -97,7 +96,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc_test_util_unsecure PROPERTIES COMPILE_PDB_NAME "grpc_test_util_unsecure" -@@ -2060,6 +2056,7 @@ add_library(grpc_unsecure +@@ -2064,6 +2061,7 @@ add_library(grpc_unsecure src/core/ext/filters/workarounds/workaround_utils.c src/core/plugin_registry/grpc_unsecure_plugin_registry.c ) @@ -105,7 +104,23 @@ if(WIN32 AND MSVC) set_target_properties(grpc_unsecure PROPERTIES COMPILE_PDB_NAME "grpc_unsecure" -@@ -2405,6 +2402,7 @@ add_library(grpc++ +@@ -2152,6 +2150,7 @@ if (gRPC_BUILD_TESTS) + add_library(reconnect_server + test/core/util/reconnect_server.c + ) ++set_target_properties(reconnect_server PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(reconnect_server PROPERTIES COMPILE_PDB_NAME "reconnect_server" +@@ -2196,6 +2195,7 @@ if (gRPC_BUILD_TESTS) + add_library(test_tcp_server + test/core/util/test_tcp_server.c + ) ++set_target_properties(test_tcp_server PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(test_tcp_server PROPERTIES COMPILE_PDB_NAME "test_tcp_server" +@@ -2282,6 +2282,7 @@ add_library(grpc++ third_party/nanopb/pb_encode.c src/cpp/codegen/codegen_init.cc ) @@ -113,7 +128,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++ PROPERTIES COMPILE_PDB_NAME "grpc++" -@@ -2805,6 +2803,7 @@ add_library(grpc++_cronet +@@ -2671,6 +2672,7 @@ add_library(grpc++_cronet src/core/ext/census/trace_context.c src/core/ext/census/tracing.c ) @@ -121,7 +136,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_cronet PROPERTIES COMPILE_PDB_NAME "grpc++_cronet" -@@ -2974,6 +2973,7 @@ add_library(grpc++_error_details +@@ -2841,6 +2843,7 @@ add_library(grpc++_error_details ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/status/status.grpc.pb.h src/cpp/util/error_details.cc ) @@ -129,7 +144,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_error_details PROPERTIES COMPILE_PDB_NAME "grpc++_error_details" -@@ -3041,6 +3041,7 @@ add_library(grpc++_proto_reflection_desc +@@ -2908,6 +2911,7 @@ add_library(grpc++_proto_reflection_desc ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.pb.h ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.h ) @@ -137,7 +152,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_proto_reflection_desc_db PROPERTIES COMPILE_PDB_NAME "grpc++_proto_reflection_desc_db" -@@ -3103,6 +3104,7 @@ add_library(grpc++_reflection +@@ -2970,6 +2974,7 @@ add_library(grpc++_reflection ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.pb.h ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.h ) @@ -145,7 +160,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_reflection PROPERTIES COMPILE_PDB_NAME "grpc++_reflection" -@@ -3165,6 +3167,7 @@ if (gRPC_BUILD_TESTS) +@@ -3032,6 +3037,7 @@ if (gRPC_BUILD_TESTS) add_library(grpc++_test_config test/cpp/util/test_config_cc.cc ) @@ -153,7 +168,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_test_config PROPERTIES COMPILE_PDB_NAME "grpc++_test_config" -@@ -3233,6 +3236,7 @@ add_library(grpc++_test_util +@@ -3100,6 +3106,7 @@ add_library(grpc++_test_util test/cpp/util/test_credentials_provider.cc src/cpp/codegen/codegen_init.cc ) @@ -161,7 +176,7 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_test_util PROPERTIES COMPILE_PDB_NAME "grpc++_test_util" -@@ -3515,6 +3519,7 @@ add_library(grpc++_unsecure +@@ -3255,6 +3262,7 @@ add_library(grpc++_unsecure third_party/nanopb/pb_encode.c src/cpp/codegen/codegen_init.cc ) @@ -169,7 +184,23 @@ if(WIN32 AND MSVC) set_target_properties(grpc++_unsecure PROPERTIES COMPILE_PDB_NAME "grpc++_unsecure" -@@ -3801,6 +3806,7 @@ add_library(grpc_plugin_support +@@ -3409,6 +3417,7 @@ if (gRPC_BUILD_TESTS) + add_library(grpc_benchmark + test/cpp/microbenchmarks/helpers.cc + ) ++set_target_properties(grpc_benchmark PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(grpc_benchmark PROPERTIES COMPILE_PDB_NAME "grpc_benchmark" +@@ -3467,6 +3476,7 @@ add_library(grpc_cli_libs + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.pb.h + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.h + ) ++set_target_properties(grpc_cli_libs PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(grpc_cli_libs PROPERTIES COMPILE_PDB_NAME "grpc_cli_libs" +@@ -3531,6 +3541,7 @@ add_library(grpc_plugin_support src/compiler/python_generator.cc src/compiler/ruby_generator.cc ) @@ -177,7 +208,63 @@ if(WIN32 AND MSVC) set_target_properties(grpc_plugin_support PROPERTIES COMPILE_PDB_NAME "grpc_plugin_support" -@@ -4324,6 +4330,7 @@ endif (gRPC_BUILD_TESTS) +@@ -3602,6 +3613,7 @@ add_library(http2_client_main + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/testing/test.grpc.pb.h + test/cpp/interop/http2_client.cc + ) ++set_target_properties(http2_client_main PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(http2_client_main PROPERTIES COMPILE_PDB_NAME "http2_client_main" +@@ -3665,6 +3677,7 @@ add_library(interop_client_helper + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/testing/messages.grpc.pb.h + test/cpp/interop/client_helper.cc + ) ++set_target_properties(interop_client_helper PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(interop_client_helper PROPERTIES COMPILE_PDB_NAME "interop_client_helper" +@@ -3731,6 +3744,7 @@ add_library(interop_client_main + test/cpp/interop/client.cc + test/cpp/interop/interop_client.cc + ) ++set_target_properties(interop_client_main PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(interop_client_main PROPERTIES COMPILE_PDB_NAME "interop_client_main" +@@ -3793,6 +3807,7 @@ if (gRPC_BUILD_TESTS) + add_library(interop_server_helper + test/cpp/interop/server_helper.cc + ) ++set_target_properties(interop_server_helper PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(interop_server_helper PROPERTIES COMPILE_PDB_NAME "interop_server_helper" +@@ -3855,6 +3870,7 @@ add_library(interop_server_lib + ${_gRPC_PROTO_GENS_DIR}/src/proto/grpc/testing/test.grpc.pb.h + test/cpp/interop/interop_server.cc + ) ++set_target_properties(interop_server_lib PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(interop_server_lib PROPERTIES COMPILE_PDB_NAME "interop_server_lib" +@@ -3917,6 +3933,7 @@ if (gRPC_BUILD_TESTS) + add_library(interop_server_main + test/cpp/interop/interop_server_bootstrap.cc + ) ++set_target_properties(interop_server_main PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(interop_server_main PROPERTIES COMPILE_PDB_NAME "interop_server_main" +@@ -3992,6 +4009,7 @@ add_library(qps + test/cpp/qps/server_sync.cc + test/cpp/qps/usage_timer.cc + ) ++set_target_properties(qps PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(qps PROPERTIES COMPILE_PDB_NAME "qps" +@@ -4054,6 +4072,7 @@ endif (gRPC_BUILD_TESTS) add_library(grpc_csharp_ext SHARED src/csharp/ext/grpc_csharp_ext.c ) @@ -185,3 +272,43 @@ if(WIN32 AND MSVC) set_target_properties(grpc_csharp_ext PROPERTIES COMPILE_PDB_NAME "grpc_csharp_ext" +@@ -4151,6 +4170,7 @@ add_library(ares + third_party/cares/cares/inet_ntop.c + third_party/cares/cares/windows_port.c + ) ++set_target_properties(ares PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(ares PROPERTIES COMPILE_PDB_NAME "ares" +@@ -4191,6 +4211,7 @@ if (gRPC_BUILD_TESTS) + add_library(bad_client_test + test/core/bad_client/bad_client.c + ) ++set_target_properties(bad_client_test PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(bad_client_test PROPERTIES COMPILE_PDB_NAME "bad_client_test" +@@ -4234,6 +4255,7 @@ if (gRPC_BUILD_TESTS) + add_library(bad_ssl_test_server + test/core/bad_ssl/server_common.c + ) ++set_target_properties(bad_ssl_test_server PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(bad_ssl_test_server PROPERTIES COMPILE_PDB_NAME "bad_ssl_test_server" +@@ -4332,6 +4354,7 @@ add_library(end2end_tests + test/core/end2end/tests/write_buffering.c + test/core/end2end/tests/write_buffering_at_end.c + ) ++set_target_properties(end2end_tests PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(end2end_tests PROPERTIES COMPILE_PDB_NAME "end2end_tests" +@@ -4430,6 +4453,7 @@ add_library(end2end_nosec_tests + test/core/end2end/tests/write_buffering.c + test/core/end2end/tests/write_buffering_at_end.c + ) ++set_target_properties(end2end_nosec_tests PROPERTIES VERSION ${PACKAGE_VERSION} SOVERSION 1) + + if(WIN32 AND MSVC) + set_target_properties(end2end_nosec_tests PROPERTIES COMPILE_PDB_NAME "end2end_nosec_tests" Modified: head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c ============================================================================== --- head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c Thu Jun 22 06:38:46 2017 (r444100) +++ head/devel/grpc/files/patch-src_core_tsi_ssl__transport__security.c Thu Jun 22 07:08:53 2017 (r444101) @@ -1,4 +1,4 @@ ---- src/core/tsi/ssl_transport_security.c.orig 2017-05-19 23:18:40 UTC +--- src/core/tsi/ssl_transport_security.c.orig 2017-06-21 17:05:33 UTC +++ src/core/tsi/ssl_transport_security.c @@ -35,6 +35,7 @@ From owner-svn-ports-head@freebsd.org Thu Jun 22 07:43:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91C0EDA8825; Thu, 22 Jun 2017 07:43:57 +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 E2C7A71966; Thu, 22 Jun 2017 07:43:56 +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 v5M7hoxO097310; Thu, 22 Jun 2017 07:43:50 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M7hoZ2097309; Thu, 22 Jun 2017 07:43:50 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201706220743.v5M7hoZ2097309@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 22 Jun 2017 07:43:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444102 - head/print/gutenprint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 07:43:57 -0000 Author: tijl Date: Thu Jun 22 07:43:50 2017 New Revision: 444102 URL: https://svnweb.freebsd.org/changeset/ports/444102 Log: Add USES=perl5 for cups-genppdupdate script. PR: 220085 Submitted by: glewis Modified: head/print/gutenprint/Makefile Modified: head/print/gutenprint/Makefile ============================================================================== --- head/print/gutenprint/Makefile Thu Jun 22 07:08:53 2017 (r444101) +++ head/print/gutenprint/Makefile Thu Jun 22 07:43:50 2017 (r444102) @@ -4,7 +4,7 @@ PORTNAME= gutenprint PORTVERSION= 5.2.12 -PORTREVISION?= 1 # also print/gimp-gutenprint +PORTREVISION?= 2 # also print/gimp-gutenprint CATEGORIES= print MASTER_SITES= SF/gimp-print/gutenprint-5.2/${PORTVERSION} @@ -19,7 +19,7 @@ CONFLICTS= gimp-print-[0-9]* GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static --enable-simplified-cups-ppds DLOPEN_LIBS=" " INSTALL_TARGET= install-strip -USES= gettext gmake libtool pathfix pkgconfig tar:bzip2 +USES= gettext gmake libtool pathfix perl5 pkgconfig tar:bzip2 .if !defined(GUT_SLAVE) LIB_DEPENDS+= libcupsimage.so:print/cups From owner-svn-ports-head@freebsd.org Thu Jun 22 08:22:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7DF0D86262; Thu, 22 Jun 2017 08:22:58 +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 6875772A2D; Thu, 22 Jun 2017 08:22:58 +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 v5M8MtCk013726; Thu, 22 Jun 2017 08:22:55 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M8Mt1A013724; Thu, 22 Jun 2017 08:22:55 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201706220822.v5M8Mt1A013724@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 22 Jun 2017 08:22:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444103 - head/devel/py-grpcio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 08:22:58 -0000 Author: vanilla Date: Thu Jun 22 08:22:55 2017 New Revision: 444103 URL: https://svnweb.freebsd.org/changeset/ports/444103 Log: 1: Update to 1.4.0. 2: Add py-protobuf as RUN_DEPENDS. Modified: head/devel/py-grpcio/Makefile head/devel/py-grpcio/distinfo Modified: head/devel/py-grpcio/Makefile ============================================================================== --- head/devel/py-grpcio/Makefile Thu Jun 22 07:43:50 2017 (r444102) +++ head/devel/py-grpcio/Makefile Thu Jun 22 08:22:55 2017 (r444103) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= grpcio -PORTVERSION= 1.3.5 +PORTVERSION= 1.4.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,8 @@ COMMENT= HTTP/2-based RPC framework LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>1:devel/py-six \ - ${PYTHON_PKGNAMEPREFIX}enum34>1:devel/py-enum34 + ${PYTHON_PKGNAMEPREFIX}enum34>1:devel/py-enum34 \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3:devel/py-protobuf LIB_DEPENDS= libcares.so:dns/c-ares BROKEN_aarch64= fails to compile: cpu-aarch64-linux.c: fatal error: 'sys/auxv.h' file not found Modified: head/devel/py-grpcio/distinfo ============================================================================== --- head/devel/py-grpcio/distinfo Thu Jun 22 07:43:50 2017 (r444102) +++ head/devel/py-grpcio/distinfo Thu Jun 22 08:22:55 2017 (r444103) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495533092 -SHA256 (grpcio-1.3.5.tar.gz) = 3b5c9d3066660749d5f7b6d76f51249855ad3b2c556407b95efb742a5a5f23ea -SIZE (grpcio-1.3.5.tar.gz) = 8912172 +TIMESTAMP = 1498115398 +SHA256 (grpcio-1.4.0.tar.gz) = a3a213a4c24b5c572b386d752e3b74a3f1b8fa5d03c07b6166fa39f3a6cdef34 +SIZE (grpcio-1.4.0.tar.gz) = 9095819 From owner-svn-ports-head@freebsd.org Thu Jun 22 08:24:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 000F0D862AA; Thu, 22 Jun 2017 08:24:24 +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 C32CC72B2D; Thu, 22 Jun 2017 08:24:24 +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 v5M8OMH3013871; Thu, 22 Jun 2017 08:24:22 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M8OMk9013870; Thu, 22 Jun 2017 08:24:22 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706220824.v5M8OMk9013870@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 22 Jun 2017 08:24:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444104 - head/biology/molden X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 08:24:25 -0000 Author: mat Date: Thu Jun 22 08:24:22 2017 New Revision: 444104 URL: https://svnweb.freebsd.org/changeset/ports/444104 Log: Mark BROKEN. => Attempting to fetch ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/molden5.7.tar.gz fetch: ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/molden5.7.tar.gz: size mismatch: expected 5339411, actual 5339467 => Couldn't fetch it - please try to retrieve this Sponsored by: Absolight Modified: head/biology/molden/Makefile (contents, props changed) Modified: head/biology/molden/Makefile ============================================================================== --- head/biology/molden/Makefile Thu Jun 22 08:22:55 2017 (r444103) +++ head/biology/molden/Makefile Thu Jun 22 08:24:22 2017 (r444104) @@ -19,6 +19,8 @@ LICENSE_PERMS= auto-accept RESTRICTED= free for academic, non profit usage; do not re-distribute source and executable. +BROKEN= Fails to fetch + WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION} USES= fortran gmake From owner-svn-ports-head@freebsd.org Thu Jun 22 08:25:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2F1DD862FA; Thu, 22 Jun 2017 08:25:18 +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 9E34A72C14; Thu, 22 Jun 2017 08:25:18 +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 v5M8PHaY014022; Thu, 22 Jun 2017 08:25:17 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5M8PH0d014020; Thu, 22 Jun 2017 08:25:17 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706220825.v5M8PH0d014020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 22 Jun 2017 08:25:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444105 - head/devel/elixir-timex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 08:25:18 -0000 Author: olgeni Date: Thu Jun 22 08:25:17 2017 New Revision: 444105 URL: https://svnweb.freebsd.org/changeset/ports/444105 Log: Update devel/elixir-timex to version 3.1.17. Modified: head/devel/elixir-timex/Makefile head/devel/elixir-timex/distinfo Modified: head/devel/elixir-timex/Makefile ============================================================================== --- head/devel/elixir-timex/Makefile Thu Jun 22 08:24:22 2017 (r444104) +++ head/devel/elixir-timex/Makefile Thu Jun 22 08:25:17 2017 (r444105) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= timex -PORTVERSION= 3.1.16 +PORTVERSION= 3.1.17 CATEGORIES= devel PKGNAMEPREFIX= elixir- Modified: head/devel/elixir-timex/distinfo ============================================================================== --- head/devel/elixir-timex/distinfo Thu Jun 22 08:24:22 2017 (r444104) +++ head/devel/elixir-timex/distinfo Thu Jun 22 08:25:17 2017 (r444105) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498069489 -SHA256 (bitwalker-timex-3.1.16_GH0.tar.gz) = 0121938c29f70e38018a2a4d09a08266b46e43e795b1c83b91de92f70ad00adc -SIZE (bitwalker-timex-3.1.16_GH0.tar.gz) = 162109 +TIMESTAMP = 1498119590 +SHA256 (bitwalker-timex-3.1.17_GH0.tar.gz) = 633805be9d6cc91c4488e710b3ba6477eee4f0cc4d2b77378ca6608f34e9ce39 +SIZE (bitwalker-timex-3.1.17_GH0.tar.gz) = 162564 From owner-svn-ports-head@freebsd.org Thu Jun 22 09:01:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 675C3D87160; Thu, 22 Jun 2017 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 360E073AF4; Thu, 22 Jun 2017 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 v5M91TXd029237; Thu, 22 Jun 2017 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 v5M91Toj029236; Thu, 22 Jun 2017 09:01:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706220901.v5M91Toj029236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 22 Jun 2017 09:01:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444106 - head/japanese/ddskk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 09:01:30 -0000 Author: amdmi3 Date: Thu Jun 22 09:01:29 2017 New Revision: 444106 URL: https://svnweb.freebsd.org/changeset/ports/444106 Log: - Fix LICENSE - Add LICENSE_FILE - Simplify installation - Switch to options helpers Modified: head/japanese/ddskk/Makefile Modified: head/japanese/ddskk/Makefile ============================================================================== --- head/japanese/ddskk/Makefile Thu Jun 22 08:25:17 2017 (r444105) +++ head/japanese/ddskk/Makefile Thu Jun 22 09:01:29 2017 (r444106) @@ -13,24 +13,24 @@ PKGNAMESUFFIX= -${EMACS_PORT_NAME} MAINTAINER= ports@FreeBSD.org COMMENT= Simple Kana to Kanji conversion program on Emacsen -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/READMEs/COPYING -NO_ARCH= yes - USE_EMACS= yes MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" \ SKK_LISPDIR="${STAGEDIR}${PREFIX}/${SKK_LISPDIR}" \ SKK_INFODIR="${STAGEDIR}${PREFIX}/${INFO_PATH}" ALL_TARGET= elc info +NO_ARCH= yes INFO= skk PORTDOCS= * PORTEXAMPLES= * -OPTIONS_DEFINE= DOCS EXAMPLES - SKK_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/skk +OPTIONS_DEFINE= DOCS EXAMPLES + post-patch: @${REINPLACE_CMD} -e \ '/skk-tut-file/s|@TUT@|${PREFIX}/share/skk/SKK.tut|' \ @@ -44,18 +44,19 @@ pre-build: post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${SKK_LISPDIR} .for i in skk-lookup.el skk-jisx0213.el - (cd ${WRKDIR} && ${INSTALL_DATA} ${i} \ - ${STAGEDIR}${PREFIX}/${SKK_LISPDIR}) + ${INSTALL_DATA} ${WRKDIR}/${i} ${STAGEDIR}${PREFIX}/${SKK_LISPDIR} .endfor + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in AUTHORS.ja CODENAME.ja Contributors FAQ.ja NEWS.ja README - (cd ${WRKSRC}/READMEs && ${INSTALL_DATA} ${i} \ - ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${WRKSRC}/READMEs/${i} ${STAGEDIR}${DOCSDIR} .endfor + +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for i in Emacs.ad dot.emacs dot.skk - (cd ${WRKSRC}/etc && ${INSTALL_DATA} ${i} \ - ${STAGEDIR}${EXAMPLESDIR}) + ${INSTALL_DATA} ${WRKSRC}/etc/${i} ${STAGEDIR}${EXAMPLESDIR} .endfor .include From owner-svn-ports-head@freebsd.org Thu Jun 22 09:10:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61C1FD873A2; Thu, 22 Jun 2017 09:10: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 2431E73E99; Thu, 22 Jun 2017 09:10: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 0BCF6BDC91; Thu, 22 Jun 2017 11:10:15 +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 C2AE3BDC85; Thu, 22 Jun 2017 11:10:14 +0200 (CEST) Subject: Re: svn commit: r444079 - head/devel/qt5-script/files To: Dimitry Andric , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201706212125.v5LLPP9u042863@repo.freebsd.org> From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <8295f66c-a457-40b5-877d-7a9aa8a7bafa@FreeBSD.org> Date: Thu, 22 Jun 2017 11:10:13 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <201706212125.v5LLPP9u042863@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="p9tQFu9D4xk7nkgFwAjDqCeHKABqfIw1e" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 09:10:18 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --p9tQFu9D4xk7nkgFwAjDqCeHKABqfIw1e Content-Type: multipart/mixed; boundary="8IQgsUmQMdW2iRFbq4IIPMXu5X1RC62fS"; protected-headers="v1" From: Mathieu Arnold To: Dimitry Andric , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <8295f66c-a457-40b5-877d-7a9aa8a7bafa@FreeBSD.org> Subject: Re: svn commit: r444079 - head/devel/qt5-script/files References: <201706212125.v5LLPP9u042863@repo.freebsd.org> In-Reply-To: <201706212125.v5LLPP9u042863@repo.freebsd.org> --8IQgsUmQMdW2iRFbq4IIPMXu5X1RC62fS Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: fr Le 21/06/2017 =C3=A0 23:25, Dimitry Andric a =C3=A9crit : > Author: dim (src committer) > Date: Wed Jun 21 21:25:25 2017 > New Revision: 444079 > URL: https://svnweb.freebsd.org/changeset/ports/444079 > > Log: > Disable usage of c++1z (c++17) for qt5-script, as the third-party > JavaScriptCore code is not fully compatible with it. This is a > requirement for using libc++ 5.0.0, which is more strict. Bump PORTREVISION ? --=20 Mathieu Arnold --8IQgsUmQMdW2iRFbq4IIPMXu5X1RC62fS-- --p9tQFu9D4xk7nkgFwAjDqCeHKABqfIw1e 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 iQJ8BAEBCgBmBQJZS4l2XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I0ToP/ixAMsL1/iT7rhLqz6eEPLF6 xrN0a3igf+JkRnpBQ8gtroOcT5zBps2bKkrK/3YEebHtVL2oJYlu/IFY3bHG0ZtF Yx6g6jFA7Qrevk7KnQNmfkUVpQ9cmJr74PA5tUnErJFiKC1iWYjRNDjKbXRnw18U dOpsskNx3liIEju6IuZzmjzljxNETXHJHJCQf6Ja4GuX0Cz3DXv+SqxapIRkjnfN lqzxCoaqx3ELoVtNn+DguJC4eqYVc3uao2RXM+8bW8X4pnwUQyG93Bo5oDGe2v6V 7dEc9HqWxn8EIgivq4SmRFlwis8hePtzD9LIUXvcsl4RISBE5zc3CpZn0dV5m1JY LwsbCzXZtufceyq/+4AwrMeZyaR7YjDIqB9+BE3zEVm/XhalsGNLEQzSucZ1eQTZ 86XauLq1XamgRg0VvTVVAK3VZ2QCx0kpkfR7YdjIJ5RCz7DHey8P3TvGaTE30ojV GIlZkFUSgMySAssa69ZbO9gQVYD9L/6XgHaeBZcFAOasBY1BPdRz+Z5ZoN5jxEzh MX+vVrGyAwLIs9ZzKQCJeq3AZRx61J/y2sQ+ZTq2S91w2mqwfnq45YNWRLlhzBRO qQGV+QhCr74Q3lVoHBbRvqsCzCJ8WDW2APMtjV3oDerQJE2t1KpTHr63qFQUCqGP 1miGUdA4GjVX0PK77Ajs =jVuz -----END PGP SIGNATURE----- --p9tQFu9D4xk7nkgFwAjDqCeHKABqfIw1e-- From owner-svn-ports-head@freebsd.org Thu Jun 22 10:58:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6130D895EB; Thu, 22 Jun 2017 10:58:57 +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 C758476CE9; Thu, 22 Jun 2017 10:58:56 +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 v5MAwtI5074419; Thu, 22 Jun 2017 10:58:55 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MAwtIb074417; Thu, 22 Jun 2017 10:58:55 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201706221058.v5MAwtIb074417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 22 Jun 2017 10:58:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444107 - 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: Thu, 22 Jun 2017 10:58:57 -0000 Author: lwhsu Date: Thu Jun 22 10:58:55 2017 New Revision: 444107 URL: https://svnweb.freebsd.org/changeset/ports/444107 Log: - Update to 2.66 Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Thu Jun 22 09:01:29 2017 (r444106) +++ head/devel/jenkins/Makefile Thu Jun 22 10:58:55 2017 (r444107) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.65 +PORTVERSION= 2.66 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Thu Jun 22 09:01:29 2017 (r444106) +++ head/devel/jenkins/distinfo Thu Jun 22 10:58:55 2017 (r444107) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497343748 -SHA256 (jenkins/2.65/jenkins.war) = 2652cd93906855be034d0c1cdd8ced4eacb158a70ec686bc789428b43343af79 -SIZE (jenkins/2.65/jenkins.war) = 71614331 +TIMESTAMP = 1498128881 +SHA256 (jenkins/2.66/jenkins.war) = d447d6f3a0ac1a6719c9db22711aa2281e1e37874920335cf8eccb5d6a1ec016 +SIZE (jenkins/2.66/jenkins.war) = 71614506 From owner-svn-ports-head@freebsd.org Thu Jun 22 11:04:02 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EFE5D89801; Thu, 22 Jun 2017 11:04: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 4FC26771AC; Thu, 22 Jun 2017 11:04:02 +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 v5MB41fK078370; Thu, 22 Jun 2017 11:04:01 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MB41lo078368; Thu, 22 Jun 2017 11:04:01 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201706221104.v5MB41lo078368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 22 Jun 2017 11:04:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444108 - 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: Thu, 22 Jun 2017 11:04:02 -0000 Author: mat Date: Thu Jun 22 11:04:01 2017 New Revision: 444108 URL: https://svnweb.freebsd.org/changeset/ports/444108 Log: Update to 2.4.26. MFH: 2017Q2 Security: CVE-2017-3167 Security: CVE-2017-3169 Security: CVE-2017-7659 Security: CVE-2017-7668 Security: CVE-2017-7679 With hat: portmgr Sponsored by: Absolight Modified: head/www/apache24/Makefile (contents, props changed) head/www/apache24/distinfo (contents, props changed) Modified: head/www/apache24/Makefile ============================================================================== --- head/www/apache24/Makefile Thu Jun 22 10:58:55 2017 (r444107) +++ head/www/apache24/Makefile Thu Jun 22 11:04:01 2017 (r444108) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= apache24 -PORTVERSION= 2.4.25 -PORTREVISION= 1 +PORTVERSION= 2.4.26 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} Modified: head/www/apache24/distinfo ============================================================================== --- head/www/apache24/distinfo Thu Jun 22 10:58:55 2017 (r444107) +++ head/www/apache24/distinfo Thu Jun 22 11:04:01 2017 (r444108) @@ -1,3 +1,3 @@ -TIMESTAMP = 1482168542 -SHA256 (apache24/httpd-2.4.25.tar.bz2) = f87ec2df1c9fee3e6bfde3c8b855a3ddb7ca1ab20ca877bd0e2b6bf3f05c80b2 -SIZE (apache24/httpd-2.4.25.tar.bz2) = 6398218 +TIMESTAMP = 1498129310 +SHA256 (apache24/httpd-2.4.26.tar.bz2) = a07eb52fafc879e0149d31882f7da63173e72df4478db4dc69f7a775b663d387 +SIZE (apache24/httpd-2.4.26.tar.bz2) = 6524642 From owner-svn-ports-head@freebsd.org Thu Jun 22 12:31:24 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 871B8D8BA17; Thu, 22 Jun 2017 12:31:24 +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 4AB4779A29; Thu, 22 Jun 2017 12:31:24 +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 v5MCVNl2011316; Thu, 22 Jun 2017 12:31:23 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MCVNAA011314; Thu, 22 Jun 2017 12:31:23 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201706221231.v5MCVNAA011314@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Thu, 22 Jun 2017 12:31:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444110 - head/sysutils/beats X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 12:31:24 -0000 Author: girgen Date: Thu Jun 22 12:31:23 2017 New Revision: 444110 URL: https://svnweb.freebsd.org/changeset/ports/444110 Log: Update to 5.4.2 Modified: head/sysutils/beats/Makefile head/sysutils/beats/distinfo Modified: head/sysutils/beats/Makefile ============================================================================== --- head/sysutils/beats/Makefile Thu Jun 22 11:04:34 2017 (r444109) +++ head/sysutils/beats/Makefile Thu Jun 22 12:31:23 2017 (r444110) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= beats -PORTVERSION= 5.4.0 +PORTVERSION= 5.4.2 DISTVERSIONPREFIX=v CATEGORIES= sysutils Modified: head/sysutils/beats/distinfo ============================================================================== --- head/sysutils/beats/distinfo Thu Jun 22 11:04:34 2017 (r444109) +++ head/sysutils/beats/distinfo Thu Jun 22 12:31:23 2017 (r444110) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494282443 -SHA256 (elastic-beats-v5.4.0_GH0.tar.gz) = d236f9433d48b69cc2f0bf3617f17d5f2eec261acee96cc28d8b72be84afc0a7 -SIZE (elastic-beats-v5.4.0_GH0.tar.gz) = 17823310 +TIMESTAMP = 1498042817 +SHA256 (elastic-beats-v5.4.2_GH0.tar.gz) = 6a02dffae1b09bc7e2ea673268124bab43c012e8a3b400f53e26c156448f2a99 +SIZE (elastic-beats-v5.4.2_GH0.tar.gz) = 18073976 From owner-svn-ports-head@freebsd.org Thu Jun 22 12:37:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5958DD8BBA5; Thu, 22 Jun 2017 12:37:37 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 297F179D4B; Thu, 22 Jun 2017 12:37:37 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MCbaB0015225; Thu, 22 Jun 2017 12:37:36 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MCbZqe015220; Thu, 22 Jun 2017 12:37:35 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201706221237.v5MCbZqe015220@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Thu, 22 Jun 2017 12:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444111 - in head: devel/argdata devel/argdata/files sysutils/cloudabi-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 12:37:37 -0000 Author: ed (src committer) Date: Thu Jun 22 12:37:35 2017 New Revision: 444111 URL: https://svnweb.freebsd.org/changeset/ports/444111 Log: Upgrade argdata and cloudabi-utils to the latest upstream versions. Version 0.3 of argdata includes an all new reader/writer API that allows you to stream argdata objects into files, pipes and sockets. Version 0.4 reworks the iterator API to make it easier/safer to duplicate iterators. Version 0.4 of argdata now depends on max_align_t. This type definition is not available on older versions of FreeBSD. Add a local patch to use a locally defined structure instead. This patch can be removed once we only support versions that do provide this type. Version 0.25 of cloudabi-utils catches up with the argdata iterator API changes. Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D11300 Added: head/devel/argdata/files/ head/devel/argdata/files/patch-max_align_t (contents, props changed) Modified: head/devel/argdata/Makefile head/devel/argdata/distinfo head/sysutils/cloudabi-utils/Makefile head/sysutils/cloudabi-utils/distinfo Modified: head/devel/argdata/Makefile ============================================================================== --- head/devel/argdata/Makefile Thu Jun 22 12:31:23 2017 (r444110) +++ head/devel/argdata/Makefile Thu Jun 22 12:37:35 2017 (r444111) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= argdata -PORTVERSION= 0.2 -PORTREVISION= 1 +PORTVERSION= 0.4 DISTVERSIONPREFIX=v CATEGORIES= devel Modified: head/devel/argdata/distinfo ============================================================================== --- head/devel/argdata/distinfo Thu Jun 22 12:31:23 2017 (r444110) +++ head/devel/argdata/distinfo Thu Jun 22 12:37:35 2017 (r444111) @@ -1,3 +1,3 @@ -TIMESTAMP = 1488282593 -SHA256 (NuxiNL-argdata-v0.2_GH0.tar.gz) = bfc97e8a8a0d34909f2627e80013f2c3da2492e7b86060636a5d46731c12aee0 -SIZE (NuxiNL-argdata-v0.2_GH0.tar.gz) = 18667 +TIMESTAMP = 1498107145 +SHA256 (NuxiNL-argdata-v0.4_GH0.tar.gz) = 8f7afec1c3d832cd559865a8125d47edf70b4368d2e97f79bc36473090378fae +SIZE (NuxiNL-argdata-v0.4_GH0.tar.gz) = 26446 Added: head/devel/argdata/files/patch-max_align_t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/argdata/files/patch-max_align_t Thu Jun 22 12:37:35 2017 (r444111) @@ -0,0 +1,15 @@ +--- src/argdata.h ++++ src/argdata.h +@@ -34,7 +34,11 @@ + #define ARGDATA_MAX_ALIGN __declspec(align(8)) + #else + #include +-#define ARGDATA_MAX_ALIGN alignas(max_align_t) ++struct argdata_max_align { ++ long long a; ++ long double b; ++}; ++#define ARGDATA_MAX_ALIGN alignas(struct argdata_max_align) + #endif + + struct timespec; Modified: head/sysutils/cloudabi-utils/Makefile ============================================================================== --- head/sysutils/cloudabi-utils/Makefile Thu Jun 22 12:31:23 2017 (r444110) +++ head/sysutils/cloudabi-utils/Makefile Thu Jun 22 12:37:35 2017 (r444111) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= cloudabi-utils -PORTVERSION= 0.24 -PORTREVISION= 1 +PORTVERSION= 0.25 DISTVERSIONPREFIX=v CATEGORIES= sysutils Modified: head/sysutils/cloudabi-utils/distinfo ============================================================================== --- head/sysutils/cloudabi-utils/distinfo Thu Jun 22 12:31:23 2017 (r444110) +++ head/sysutils/cloudabi-utils/distinfo Thu Jun 22 12:37:35 2017 (r444111) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490344135 -SHA256 (NuxiNL-cloudabi-utils-v0.24_GH0.tar.gz) = c98bc812969de1a4b56bd4155fe93669bb0273d729b5ab97779ee6c0b06fd742 -SIZE (NuxiNL-cloudabi-utils-v0.24_GH0.tar.gz) = 227885 +TIMESTAMP = 1498107271 +SHA256 (NuxiNL-cloudabi-utils-v0.25_GH0.tar.gz) = 213f545ae4d899fa2387137ad45074f8ca15b08e5d5996d54ad61c1ab9474878 +SIZE (NuxiNL-cloudabi-utils-v0.25_GH0.tar.gz) = 227867 From owner-svn-ports-head@freebsd.org Thu Jun 22 12:43:02 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3728D8BD95; Thu, 22 Jun 2017 12:43:02 +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 796667A184; Thu, 22 Jun 2017 12:43:02 +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 v5MCh1V6019221; Thu, 22 Jun 2017 12:43:01 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MCh1At019214; Thu, 22 Jun 2017 12:43:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706221243.v5MCh1At019214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 12:43:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444112 - in head/devel: android-tools-adb-devel/files android-tools-fastboot android-tools-fastboot-devel android-tools-fastboot-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: Thu, 22 Jun 2017 12:43:02 -0000 Author: jbeich Date: Thu Jun 22 12:43:00 2017 New Revision: 444112 URL: https://svnweb.freebsd.org/changeset/ports/444112 Log: devel/android-tools-fastboot-devel: update to o.p.2.332 Changes: https://android.googlesource.com/platform/system/core/+log/dfd30c4a169e..d1e9e7bc06f0/fastboot Added: head/devel/android-tools-fastboot-devel/files/patch-libsparse_sparse__read.cpp (contents, props changed) Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-fastboot-devel/Makefile (contents, props changed) head/devel/android-tools-fastboot-devel/distinfo (contents, props changed) head/devel/android-tools-fastboot-devel/files/Makefile (contents, props changed) head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-fastboot/pkg-descr (contents, props changed) Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-adb-devel/files/patch-base_file.cpp Thu Jun 22 12:37:35 2017 (r444111) +++ head/devel/android-tools-adb-devel/files/patch-base_file.cpp Thu Jun 22 12:43:00 2017 (r444112) @@ -1,11 +1,12 @@ --- base/file.cpp.orig 2017-06-20 10:50:27 UTC +++ base/file.cpp -@@ -19,6 +19,9 @@ +@@ -19,6 +19,10 @@ #include #include #include +#include // PATH_MAX +#include // BUFSIZ ++#include // realpath +#include // strerror #include #include Modified: head/devel/android-tools-fastboot-devel/Makefile ============================================================================== --- head/devel/android-tools-fastboot-devel/Makefile Thu Jun 22 12:37:35 2017 (r444111) +++ head/devel/android-tools-fastboot-devel/Makefile Thu Jun 22 12:43:00 2017 (r444112) @@ -1,13 +1,13 @@ # $FreeBSD$ -# Hint: git describe --abbrev=12 --match android-n-preview-5 -DISTVERSION= n-preview-5-3582 -DISTVERSIONSUFFIX= -gdfd30c4a169e +# Hint: git describe --abbrev=12 --match android-o-preview-2 +DISTVERSION= o-preview-2-332 +DISTVERSIONSUFFIX= -gd1e9e7bc06f0 PORTREVISION= 0 PKGNAMESUFFIX= -devel GH_MYTAG= ${DISTVERSIONPREFIX}${DISTVERSION:C/-[0-9]*$//} -GH_TAGNAME= ${GH_MYTAG}-907-g1a35848b34d6:extras \ +GH_TAGNAME= ${GH_MYTAG}-50-gebf42931:extras \ ${GH_MYTAG}-43-ga63b41e:libselinux CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* Modified: head/devel/android-tools-fastboot-devel/distinfo ============================================================================== --- head/devel/android-tools-fastboot-devel/distinfo Thu Jun 22 12:37:35 2017 (r444111) +++ head/devel/android-tools-fastboot-devel/distinfo Thu Jun 22 12:43:00 2017 (r444112) @@ -1,11 +1,11 @@ -TIMESTAMP = 1474960220 +TIMESTAMP = 1497955827 SHA256 (fastboot.1?id=706e754) = 2af01b064440952a82f1602691a0fecc030302722a71444946fb70d9c423d283 SIZE (fastboot.1?id=706e754) = 5906 -SHA256 (android-platform_system_core-android-n-preview-5-3582-gdfd30c4a169e_GH0.tar.gz) = 2a4530432d51797fcc426b737d66b411d7ba4635afabe32b0c89cb581b19bc34 -SIZE (android-platform_system_core-android-n-preview-5-3582-gdfd30c4a169e_GH0.tar.gz) = 1464524 -SHA256 (jbeich-platform_system_extras-android-n-preview-5-907-g1a35848b34d6_GH0.tar.gz) = 76c5b258753e6168796a5eeff64b44376439aa793d34786d27a9a1ba3759e174 -SIZE (jbeich-platform_system_extras-android-n-preview-5-907-g1a35848b34d6_GH0.tar.gz) = 95573256 -SHA256 (jbeich-platform_external_libselinux-android-n-preview-5-43-ga63b41e_GH0.tar.gz) = eb85e6ea45fedb123a14a2326ba3e4a9a6ef2577b2ecd258be4097a4445f8f36 -SIZE (jbeich-platform_external_libselinux-android-n-preview-5-43-ga63b41e_GH0.tar.gz) = 63141 +SHA256 (android-platform_system_core-android-o-preview-2-332-gd1e9e7bc06f0_GH0.tar.gz) = 212dd9cbca65a167b3833e5077b1a9f2db3a50a04e637da3e0db7814f60cf9fd +SIZE (android-platform_system_core-android-o-preview-2-332-gd1e9e7bc06f0_GH0.tar.gz) = 5188822 +SHA256 (jbeich-platform_system_extras-android-o-preview-2-50-gebf42931_GH0.tar.gz) = fff9cb211ed96e0f898ed3738a9325be3c9b18f333cfff1562af668162b6c531 +SIZE (jbeich-platform_system_extras-android-o-preview-2-50-gebf42931_GH0.tar.gz) = 107631212 +SHA256 (jbeich-platform_external_libselinux-android-o-preview-2-43-ga63b41e_GH0.tar.gz) = 7b3198361574a22364a611015c772198f2ec06ba0f84bab061c03d41d2959b0b +SIZE (jbeich-platform_external_libselinux-android-o-preview-2-43-ga63b41e_GH0.tar.gz) = 63139 SHA256 (mbrubeck-android-completion-c1b0656_GH0.tar.gz) = ca3311ba47a5edd56c929ac9aae57c02c2c3f1636519c5f67abb00b6e3ecd75c SIZE (mbrubeck-android-completion-c1b0656_GH0.tar.gz) = 5967 Modified: head/devel/android-tools-fastboot-devel/files/Makefile ============================================================================== --- head/devel/android-tools-fastboot-devel/files/Makefile Thu Jun 22 12:37:35 2017 (r444111) +++ head/devel/android-tools-fastboot-devel/files/Makefile Thu Jun 22 12:43:00 2017 (r444112) @@ -49,6 +49,7 @@ SRCS+= wipe.c # required by fastboot .PATH: ${.CURDIR}/../libcutils +SRCS+= android_get_control_file.cpp SRCS+= ../libcutils/sockets.cpp SRCS+= socket_inaddr_any_server_unix.c SRCS+= socket_network_client_unix.c @@ -57,13 +58,17 @@ CPPFLAGS.sockets.cpp+= -o ${.TARGET} # XXX pre-r279980 # required by base and libutils .PATH: ${.CURDIR}/../liblog +SRCS+= config_read.c SRCS+= config_write.c SRCS+= fake_log_device.c SRCS+= fake_writer.c +SRCS+= local_logger.c SRCS+= logger_lock.c SRCS+= logger_name.c SRCS+= logger_write.c -CPPFLAGS.config_write.c+= -DFAKE_LOG_DEVICE=1 +SRCS+= logprint.c +SRCS+= stderr_write.c +SRCS+= test_utils.cpp # required by ext4_utils .PATH: ${.CURDIR}/../libselinux/src @@ -85,7 +90,7 @@ SRCS+= output_file.c SRCS+= sparse.c SRCS+= sparse_crc32.c SRCS+= sparse_err.c -SRCS+= sparse_read.c +SRCS+= sparse_read.cpp # required by libziparchive .PATH: ${.CURDIR}/../libutils @@ -97,18 +102,19 @@ SRCS+= zip_archive.cc REVISION?= $$(${GIT} rev-parse --short=12 HEAD 2>/dev/null || echo unknown) -CPPFLAGS+= -DFASTBOOT_REVISION="\"${REVISION}-android\"" +CPPFLAGS+= -DFASTBOOT_VERSION="\"0.0.0-${REVISION}-android\"" CPPFLAGS+= -Doff64_t=off_t CPPFLAGS+= -Dftruncate64=ftruncate CPPFLAGS+= -Dlseek64=lseek CPPFLAGS+= -Dmmap64=mmap CPPFLAGS+= -Dpread64=pread +CPPFLAGS+= -DFAKE_LOG_DEVICE=1 CPPFLAGS+= -I${.CURDIR} CPPFLAGS+= -I${.CURDIR}/../include CPPFLAGS+= -I${.CURDIR}/../adb CPPFLAGS+= -I${.CURDIR}/../mkbootimg CPPFLAGS+= -I${.CURDIR}/../base/include -CPPFLAGS+= -I${.CURDIR}/../ext4_utils +CPPFLAGS+= -I${.CURDIR}/../ext4_utils/include CPPFLAGS+= -I${.CURDIR}/../f2fs_utils CPPFLAGS+= -I${.CURDIR}/../libselinux/include CPPFLAGS+= -I${.CURDIR}/../libsparse/include Modified: head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp Thu Jun 22 12:37:35 2017 (r444111) +++ head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp Thu Jun 22 12:43:00 2017 (r444112) @@ -1,16 +1,17 @@ ---- base/file.cpp.orig 2016-09-28 18:07:09 UTC +--- base/file.cpp.orig 2017-06-20 10:50:27 UTC +++ base/file.cpp -@@ -18,6 +18,9 @@ - +@@ -19,6 +19,10 @@ #include #include + #include +#include // PATH_MAX +#include // BUFSIZ ++#include // realpath +#include // strerror #include #include #include -@@ -34,6 +37,9 @@ +@@ -36,6 +39,9 @@ #if defined(__APPLE__) #include #endif @@ -19,8 +20,8 @@ +#endif #if defined(_WIN32) #include - #endif -@@ -231,6 +237,17 @@ std::string GetExecutablePath() { + #define O_CLOEXEC O_NOINHERIT +@@ -251,6 +257,17 @@ std::string GetExecutablePath() { if (result == 0 || result == sizeof(path) - 1) return ""; path[PATH_MAX - 1] = 0; return path; Added: head/devel/android-tools-fastboot-devel/files/patch-libsparse_sparse__read.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-fastboot-devel/files/patch-libsparse_sparse__read.cpp Thu Jun 22 12:43:00 2017 (r444112) @@ -0,0 +1,10 @@ +--- libsparse/sparse_read.cpp.orig 2017-06-20 10:50:27 UTC ++++ libsparse/sparse_read.cpp +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include // memset + #include + + #include Modified: head/devel/android-tools-fastboot/pkg-descr ============================================================================== --- head/devel/android-tools-fastboot/pkg-descr Thu Jun 22 12:37:35 2017 (r444111) +++ head/devel/android-tools-fastboot/pkg-descr Thu Jun 22 12:43:00 2017 (r444112) @@ -1,4 +1,6 @@ -Fastboot is a diagnostic protocol primarily used to update the flash -filesystem of Android devices over USB. +Fastboot protocol is a mechanism for communicating with bootloaders +over USB or Ethernet. It is designed to be very straightforward to +implement, to allow it to be used across a wide range of devices and +from hosts running Linux, macOS, or Windows. -This package provides the fastboot command-line tool. +WWW: https://android.googlesource.com/platform/system/core/+/master/fastboot/README.md From owner-svn-ports-head@freebsd.org Thu Jun 22 13:04:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABCBDD8C256; Thu, 22 Jun 2017 13:04:36 +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 73F657ABB9; Thu, 22 Jun 2017 13:04:36 +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 v5MD4ZhR027839; Thu, 22 Jun 2017 13:04:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MD4Zv7027837; Thu, 22 Jun 2017 13:04:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706221304.v5MD4Zv7027837@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 13:04:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444113 - in head/devel: android-tools-fastboot android-tools-fastboot-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: Thu, 22 Jun 2017 13:04:36 -0000 Author: jbeich Date: Thu Jun 22 13:04:35 2017 New Revision: 444113 URL: https://svnweb.freebsd.org/changeset/ports/444113 Log: devel/android-tools-fastboot-devel: oops, fix docs after r444112 Modified: head/devel/android-tools-fastboot-devel/files/Makefile (contents, props changed) head/devel/android-tools-fastboot/pkg-descr (contents, props changed) Modified: head/devel/android-tools-fastboot-devel/files/Makefile ============================================================================== --- head/devel/android-tools-fastboot-devel/files/Makefile Thu Jun 22 12:43:00 2017 (r444112) +++ head/devel/android-tools-fastboot-devel/files/Makefile Thu Jun 22 13:04:35 2017 (r444113) @@ -4,7 +4,7 @@ PROG_CXX=fastboot BINDIR?=/usr/bin FILESDIR?=${DOCDIR}/${PROG} -FILES= *.[Tt][Xx][Tt] +FILES= *.md SRCS+= bootimg_utils.cpp SRCS+= engine.cpp Modified: head/devel/android-tools-fastboot/pkg-descr ============================================================================== --- head/devel/android-tools-fastboot/pkg-descr Thu Jun 22 12:43:00 2017 (r444112) +++ head/devel/android-tools-fastboot/pkg-descr Thu Jun 22 13:04:35 2017 (r444113) @@ -1,6 +1,3 @@ Fastboot protocol is a mechanism for communicating with bootloaders -over USB or Ethernet. It is designed to be very straightforward to -implement, to allow it to be used across a wide range of devices and -from hosts running Linux, macOS, or Windows. - -WWW: https://android.googlesource.com/platform/system/core/+/master/fastboot/README.md +over USB or Ethernet. The provided command line tool can be used +to flash filesystems on Android-powered devices. From owner-svn-ports-head@freebsd.org Thu Jun 22 13:14:48 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A5C6D8C46F; Thu, 22 Jun 2017 13:14:48 +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 00BA37AFD0; Thu, 22 Jun 2017 13:14:47 +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 v5MDElaD034064; Thu, 22 Jun 2017 13:14:47 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MDEcRl033965; Thu, 22 Jun 2017 13:14:38 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201706221314.v5MDEcRl033965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 22 Jun 2017 13:14:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444114 - in head: arabic/libreoffice chinese/libreoffice-zh_CN chinese/libreoffice-zh_TW editors/libreoffice editors/libreoffice-af editors/libreoffice-am editors/libreoffice-as editor... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 13:14:48 -0000 Author: jkim Date: Thu Jun 22 13:14:37 2017 New Revision: 444114 URL: https://svnweb.freebsd.org/changeset/ports/444114 Log: Update to 5.3.4. Modified: head/arabic/libreoffice/distinfo head/chinese/libreoffice-zh_CN/distinfo head/chinese/libreoffice-zh_TW/distinfo head/editors/libreoffice-af/distinfo head/editors/libreoffice-am/distinfo head/editors/libreoffice-as/distinfo head/editors/libreoffice-ast/distinfo head/editors/libreoffice-be/distinfo head/editors/libreoffice-bg/distinfo head/editors/libreoffice-bn/distinfo head/editors/libreoffice-bn_IN/distinfo head/editors/libreoffice-bo/distinfo head/editors/libreoffice-br/distinfo head/editors/libreoffice-brx/distinfo head/editors/libreoffice-bs/distinfo head/editors/libreoffice-ca/distinfo head/editors/libreoffice-ca_valencia/distinfo head/editors/libreoffice-cs/distinfo head/editors/libreoffice-cy/distinfo head/editors/libreoffice-da/distinfo head/editors/libreoffice-dgo/distinfo head/editors/libreoffice-dz/distinfo head/editors/libreoffice-el/distinfo head/editors/libreoffice-en_GB/distinfo head/editors/libreoffice-en_ZA/distinfo head/editors/libreoffice-eo/distinfo head/editors/libreoffice-es/distinfo head/editors/libreoffice-et/distinfo head/editors/libreoffice-eu/distinfo head/editors/libreoffice-fa/distinfo head/editors/libreoffice-fi/distinfo head/editors/libreoffice-ga/distinfo head/editors/libreoffice-gd/distinfo head/editors/libreoffice-gl/distinfo head/editors/libreoffice-gu/distinfo head/editors/libreoffice-gug/distinfo head/editors/libreoffice-hi/distinfo head/editors/libreoffice-hr/distinfo head/editors/libreoffice-id/distinfo head/editors/libreoffice-is/distinfo head/editors/libreoffice-it/distinfo head/editors/libreoffice-ka/distinfo head/editors/libreoffice-kk/distinfo head/editors/libreoffice-km/distinfo head/editors/libreoffice-kmr_Latn/distinfo head/editors/libreoffice-kn/distinfo head/editors/libreoffice-kok/distinfo head/editors/libreoffice-ks/distinfo head/editors/libreoffice-lb/distinfo head/editors/libreoffice-lo/distinfo head/editors/libreoffice-lt/distinfo head/editors/libreoffice-lv/distinfo head/editors/libreoffice-mai/distinfo head/editors/libreoffice-mk/distinfo head/editors/libreoffice-ml/distinfo head/editors/libreoffice-mn/distinfo head/editors/libreoffice-mni/distinfo head/editors/libreoffice-mr/distinfo head/editors/libreoffice-my/distinfo head/editors/libreoffice-nb/distinfo head/editors/libreoffice-ne/distinfo head/editors/libreoffice-nl/distinfo head/editors/libreoffice-nn/distinfo head/editors/libreoffice-nr/distinfo head/editors/libreoffice-nso/distinfo head/editors/libreoffice-oc/distinfo head/editors/libreoffice-om/distinfo head/editors/libreoffice-or/distinfo head/editors/libreoffice-pa_IN/distinfo head/editors/libreoffice-ro/distinfo head/editors/libreoffice-rw/distinfo head/editors/libreoffice-sa_IN/distinfo head/editors/libreoffice-sat/distinfo head/editors/libreoffice-sd/distinfo head/editors/libreoffice-si/distinfo head/editors/libreoffice-sid/distinfo head/editors/libreoffice-sk/distinfo head/editors/libreoffice-sl/distinfo head/editors/libreoffice-sq/distinfo head/editors/libreoffice-sr/distinfo head/editors/libreoffice-sr_Latn/distinfo head/editors/libreoffice-ss/distinfo head/editors/libreoffice-st/distinfo head/editors/libreoffice-sv/distinfo head/editors/libreoffice-sw_TZ/distinfo head/editors/libreoffice-ta/distinfo head/editors/libreoffice-te/distinfo head/editors/libreoffice-tg/distinfo head/editors/libreoffice-th/distinfo head/editors/libreoffice-tn/distinfo head/editors/libreoffice-tr/distinfo head/editors/libreoffice-ts/distinfo head/editors/libreoffice-tt/distinfo head/editors/libreoffice-ug/distinfo head/editors/libreoffice-uz/distinfo head/editors/libreoffice-ve/distinfo head/editors/libreoffice-vec/distinfo head/editors/libreoffice-xh/distinfo head/editors/libreoffice-zu/distinfo head/editors/libreoffice/Makefile head/editors/libreoffice/Makefile.common head/editors/libreoffice/distinfo head/editors/libreoffice/files/patch-Makefile.in head/french/libreoffice/distinfo head/german/libreoffice/distinfo head/hebrew/libreoffice/distinfo head/hungarian/libreoffice/distinfo head/japanese/libreoffice/distinfo head/korean/libreoffice/distinfo head/polish/libreoffice/distinfo head/portuguese/libreoffice-pt_BR/distinfo head/portuguese/libreoffice/distinfo head/russian/libreoffice/distinfo head/ukrainian/libreoffice/distinfo head/vietnamese/libreoffice/distinfo Modified: head/arabic/libreoffice/distinfo ============================================================================== --- head/arabic/libreoffice/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/arabic/libreoffice/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142973 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ar.tar.gz) = ea36ab1363a05f36d0bbe49849dec3ba00c7e723a8a6dbbe4228282ce86ca06a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ar.tar.gz) = 2250770 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ar.tar.gz) = b7224dc9184b2d79cea51c6a65ca311f4d559371eb985e286c73f0700e3df4a0 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ar.tar.gz) = 6560188 +TIMESTAMP = 1498137132 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ar.tar.gz) = a928234e426496715bb9ac758384373d48c32bab6764245fd9091944a2c25a1f +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ar.tar.gz) = 2250667 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ar.tar.gz) = e12f7080dcb9653a6572d9c241a32cc3133c26926237f0d6a8a4ba990d74f172 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ar.tar.gz) = 6560167 Modified: head/chinese/libreoffice-zh_CN/distinfo ============================================================================== --- head/chinese/libreoffice-zh_CN/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/chinese/libreoffice-zh_CN/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143020 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_zh-CN.tar.gz) = 999564384105805c775555ef257a62fbd5acc55d7ab5ad94455b52dcff6c7265 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_zh-CN.tar.gz) = 560260 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_zh-CN.tar.gz) = 66c9d200cd45be796cfa80c95a7d75d7dd611c6a15c1b6351b298472b39b7a2f -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_zh-CN.tar.gz) = 10742042 +TIMESTAMP = 1498137142 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_zh-CN.tar.gz) = 1d103ad25d5217aee3cae73825bb765ee93fd6c14fb02967c67892891c39258f +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_zh-CN.tar.gz) = 560110 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_zh-CN.tar.gz) = e4d5386b700060249804780e578408e1d5585e2a9bad0f7e70772920a16ee3ac +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_zh-CN.tar.gz) = 10742158 Modified: head/chinese/libreoffice-zh_TW/distinfo ============================================================================== --- head/chinese/libreoffice-zh_TW/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/chinese/libreoffice-zh_TW/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143021 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_zh-TW.tar.gz) = eee31c8557c164c7e64018440d996d3037421350fe14dd1a1bcabb90a3fdc7b3 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_zh-TW.tar.gz) = 556673 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_zh-TW.tar.gz) = 7c2b5d638babad3be54b0453ea9a2b0c8f28246c4143c25177376aa0631cb95c -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_zh-TW.tar.gz) = 10735581 +TIMESTAMP = 1498137143 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_zh-TW.tar.gz) = 577a26b9e5c4b38b75940d8a75cee4811fa43fafa8968381f435170246459b1b +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_zh-TW.tar.gz) = 556907 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_zh-TW.tar.gz) = c9fde935ce1f3204010a8a85bc0c372eeeceadf0ef03496929abe0a72b6fa98d +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_zh-TW.tar.gz) = 10735471 Modified: head/editors/libreoffice-af/distinfo ============================================================================== --- head/editors/libreoffice-af/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-af/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142972 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_af.tar.gz) = c9a2726b6a5d3b16ed55f6987e8863d4d5d3460c992b602ef316485e0837b98b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_af.tar.gz) = 1100369 +TIMESTAMP = 1498137132 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_af.tar.gz) = aeee8e62227f701719c73751220e59035768acb3a254a357f280846eb8ddbe5a +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_af.tar.gz) = 1100468 Modified: head/editors/libreoffice-am/distinfo ============================================================================== --- head/editors/libreoffice-am/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-am/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142972 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_am.tar.gz) = fce0356369329899fdfaadbee0dfe8caf27e8f97e8f704b9d19afd5dcaf1706e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_am.tar.gz) = 510141 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_am.tar.gz) = 5108a476a018527281504d50038932ed59b00b878ad6585568291b22e31e036a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_am.tar.gz) = 7961463 +TIMESTAMP = 1498137132 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_am.tar.gz) = b0e1cd085f8efb63c41ecaa1143f05a8f2d6a69b5979a9381edac3e831577e4b +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_am.tar.gz) = 510495 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_am.tar.gz) = a42b916207c87820d22d7b5e92a552d24cc8ae631543bd9518408c870e87b044 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_am.tar.gz) = 7961718 Modified: head/editors/libreoffice-as/distinfo ============================================================================== --- head/editors/libreoffice-as/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-as/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142973 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_as.tar.gz) = 04a08ffe3e8f940e1b3df020aabcd159da8fa3427752f18bd114b757e8d79546 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_as.tar.gz) = 530078 +TIMESTAMP = 1498137132 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_as.tar.gz) = d02d768d9367eb1449c06f778795321222f8c5d81275e8a35d3188d2da0f4775 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_as.tar.gz) = 530365 Modified: head/editors/libreoffice-ast/distinfo ============================================================================== --- head/editors/libreoffice-ast/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ast/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142973 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ast.tar.gz) = 5b3b17ce107ae735ad0d68ba9df4b0e20fc3eb82b59fa4bc140a552bd2234ab8 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ast.tar.gz) = 490196 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ast.tar.gz) = 7ab9046ca224d77ed99a940657cd87e66da0d6421aa49e78a3be9c87c2a34e60 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ast.tar.gz) = 7892257 +TIMESTAMP = 1498137132 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ast.tar.gz) = 7aa55e6e7c9803206aca07842c4a5a2c5f811ceeb988bfaaf2538bb9df873906 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ast.tar.gz) = 490420 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ast.tar.gz) = aa6a5e846d651c5abb07a4b02744cc284f493c010a7e1729c590367c7a801bea +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ast.tar.gz) = 7892407 Modified: head/editors/libreoffice-be/distinfo ============================================================================== --- head/editors/libreoffice-be/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-be/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142973 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_be.tar.gz) = 8d1ed8f59cd3211d7cc93c9502d5a31fe846fdb45a3ce049ef9c54b57dcd13ca -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_be.tar.gz) = 868927 +TIMESTAMP = 1498137132 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_be.tar.gz) = 1b4d209fba9dbb3688ba0e56d0ee8a81e0e100673962c6dd97f76d51a6f36339 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_be.tar.gz) = 869187 Modified: head/editors/libreoffice-bg/distinfo ============================================================================== --- head/editors/libreoffice-bg/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-bg/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142974 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bg.tar.gz) = 6dd34f09e4fdc308f0756dda6d42a0ddaf00e135b43408875c5b0048626e3f6a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bg.tar.gz) = 1948955 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bg.tar.gz) = 865bb333461ae07dc9e0ed0e431aa40398a83db8211e06fba7ebb4ac93337815 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bg.tar.gz) = 8441132 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bg.tar.gz) = 13cabe248bd6ae49f3c7a7e2e88c694575dbf22f79fdf8b6f31fae440c503c53 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bg.tar.gz) = 1949234 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bg.tar.gz) = 6463cb371060fdf25aaeb5a30a5d2d7dcc23e576f92d31142eb4abf048c17588 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bg.tar.gz) = 8440193 Modified: head/editors/libreoffice-bn/distinfo ============================================================================== --- head/editors/libreoffice-bn/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-bn/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142975 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bn.tar.gz) = 25af433d850ec7a8ca304c93b5c6f97946de6e2af626305ad329de4ffce695aa -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bn.tar.gz) = 884132 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bn.tar.gz) = 53c2ead87d0153072afe325b3277555bcf2a80185f06fc67b619d35aee2ea5fe -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bn.tar.gz) = 9161284 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bn.tar.gz) = 831658b5d244e94503438964dbe6626fdc2b8de4c104910d99915752b9ad5896 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bn.tar.gz) = 884294 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bn.tar.gz) = 3d461b02c3755c0b71b74daa9b129b67d2ac792a992c31ec229c02736fd59115 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bn.tar.gz) = 9161018 Modified: head/editors/libreoffice-bn_IN/distinfo ============================================================================== --- head/editors/libreoffice-bn_IN/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-bn_IN/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142975 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bn-IN.tar.gz) = 1024163031d31a7392b1152c4748272c2c2e5e16b95f60d55559100535d041b2 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bn-IN.tar.gz) = 537482 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bn-IN.tar.gz) = cda02e045cc853e43b84af530c81fd8814463f0139f44575bde552625be820fc -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bn-IN.tar.gz) = 9160960 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bn-IN.tar.gz) = b1a32e35f8586aed63b40b0797d2e09781ff34675957d08e9fb9fcce4fd7cd94 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bn-IN.tar.gz) = 537725 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bn-IN.tar.gz) = 556ba9f50d59e08092e30abe8e68de369e55019ddd9294ef8d8cebdc453efbf1 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bn-IN.tar.gz) = 9161171 Modified: head/editors/libreoffice-bo/distinfo ============================================================================== --- head/editors/libreoffice-bo/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-bo/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142976 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bo.tar.gz) = 54ae98a2b0e6b565b6c24deb81937d47e2c82be3506693c19d5a321d51723dbc -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bo.tar.gz) = 522328 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bo.tar.gz) = 74a98b1fdad5bb2836fe1b6055ea38c2f2867dc1a5c017d5f7c08edf24cbed78 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bo.tar.gz) = 8914227 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bo.tar.gz) = f07822c343c9d8d238606d7c2ac8098015753143d1646cfb512c1f3a3eb06f54 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bo.tar.gz) = 522188 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bo.tar.gz) = 1779ce429bb5400a13d967e073e07382fa940f071161e7e4a17bd786182c74db +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bo.tar.gz) = 8914594 Modified: head/editors/libreoffice-br/distinfo ============================================================================== --- head/editors/libreoffice-br/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-br/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142976 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_br.tar.gz) = 1a2df1ea14f03acce500f97833c3ecce288c084e4273c771f1131078fc278e19 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_br.tar.gz) = 1706759 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_br.tar.gz) = 356f2241233945a1ae619bb03977415f83c952e0e386b8efeaa4775f00521ba5 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_br.tar.gz) = 1706876 Modified: head/editors/libreoffice-brx/distinfo ============================================================================== --- head/editors/libreoffice-brx/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-brx/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142977 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_brx.tar.gz) = 6f38e5afea9298b8c8c21ae448f188ac0865c537b2a9fc414e8025a6d47ff17a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_brx.tar.gz) = 498988 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_brx.tar.gz) = 7fe9c80574247b677bda5d6edafe49f8e4e6a2b8ce0cf33c62b64156d84af823 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_brx.tar.gz) = 499333 Modified: head/editors/libreoffice-bs/distinfo ============================================================================== --- head/editors/libreoffice-bs/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-bs/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142979 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bs.tar.gz) = 0bbf93738bff463d55b1951afe0e767d55ef3c946b8cceb3bdc7c8c9dd6c9ea8 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_bs.tar.gz) = 602992 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bs.tar.gz) = 6078ca63dc1da0beb516687ed3195b07114617e1d1304ff8b75699cbdc7fd27d -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_bs.tar.gz) = 7185498 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bs.tar.gz) = b5c4317bb20340da5e2ac4fbe938e602a8e1305d2e1d5e272132cac7c2848f3d +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_bs.tar.gz) = 603159 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bs.tar.gz) = 37d54a2262fa81a7b734972c2a711cc9ab93d8b8b4d022e08196263e9b0a7973 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_bs.tar.gz) = 7185232 Modified: head/editors/libreoffice-ca/distinfo ============================================================================== --- head/editors/libreoffice-ca/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ca/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142979 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ca.tar.gz) = 4bca783e19baecdd7d853a353bf6111f4a6a1dca7a0ab1860dfc9f34a1fb4275 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ca.tar.gz) = 1760602 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ca.tar.gz) = 8c649dec035145a6da480945a2bf96b208936e1f9a9f25615bccf11b4c27e7ef -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ca.tar.gz) = 8053204 +TIMESTAMP = 1498137133 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ca.tar.gz) = bc2b26b98b5c06a11401bc6a045f06a80df10579f72c8f1f3bebba225f70d36a +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ca.tar.gz) = 1760688 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ca.tar.gz) = d68177b0f1a113dda3c47c2debd4ae8689918b52fafb6b43444807325a2db5ce +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ca.tar.gz) = 8053415 Modified: head/editors/libreoffice-ca_valencia/distinfo ============================================================================== --- head/editors/libreoffice-ca_valencia/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ca_valencia/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142979 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ca-valencia.tar.gz) = 433f41e96d4f4dc317bae56c61692d9a1cf946451c4f33ed8af10a664979bbf2 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ca-valencia.tar.gz) = 1759899 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ca-valencia.tar.gz) = adf6f08c3f2bf6482a1e123dcc8af52d9b1781b419be075848fb580df1195085 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ca-valencia.tar.gz) = 8029551 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ca-valencia.tar.gz) = 8e655fb033b7912651a71725c5eebc83823a24735e034a01a86befd2a23a8d50 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ca-valencia.tar.gz) = 1759471 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ca-valencia.tar.gz) = d143b80a9d4e47aa5e93677cac494e7505055fe8f0f3ec03d00d08a2ddf4f83e +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ca-valencia.tar.gz) = 8029555 Modified: head/editors/libreoffice-cs/distinfo ============================================================================== --- head/editors/libreoffice-cs/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-cs/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142979 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_cs.tar.gz) = 3ba15ca7427d712a8cfa748afe9030305b1bc7bcb120f34b1715d50ac14a8f90 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_cs.tar.gz) = 2931997 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_cs.tar.gz) = 73b1646589302a6d1c33910389aa53820f2157db6578ec57f24860eea10300ab -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_cs.tar.gz) = 7710551 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_cs.tar.gz) = 99d89ab9dec3eb67806c69aaf9835a1a712828fd04b7bf82d9aadb61f9d836c2 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_cs.tar.gz) = 2931815 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_cs.tar.gz) = 4fb4b266ada88c3aabbd201cc12157f2fd18584835dda6f6b84f788c721028df +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_cs.tar.gz) = 7710438 Modified: head/editors/libreoffice-cy/distinfo ============================================================================== --- head/editors/libreoffice-cy/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-cy/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142980 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_cy.tar.gz) = 3963d58d10bea4175c79345e62d69d7955ec49f70b1446121a5c362305fd1d9a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_cy.tar.gz) = 469856 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_cy.tar.gz) = 0ef38de6098284dd0c5ef55c9547e9effe90d9e3ee00db40f07335027b6c773b +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_cy.tar.gz) = 470059 Modified: head/editors/libreoffice-da/distinfo ============================================================================== --- head/editors/libreoffice-da/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-da/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142980 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_da.tar.gz) = b94d331508ca1a0dbaa0c4ea616d7d3d554c610654df720c17ccd51079b9fbb7 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_da.tar.gz) = 2372503 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_da.tar.gz) = b6eff436c915fb7cbd14f4bdd54058c088c09fc5c50029539003c5f284248350 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_da.tar.gz) = 7681146 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_da.tar.gz) = b58c888134bb006720ec2c493587950edcda23b33f5284c4a95eac458dcc5cee +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_da.tar.gz) = 2372568 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_da.tar.gz) = 62fbd4e120bb651482159d35e13b4e10890b2372bd2e0f77d7842d992ae92d81 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_da.tar.gz) = 7681209 Modified: head/editors/libreoffice-dgo/distinfo ============================================================================== --- head/editors/libreoffice-dgo/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-dgo/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142982 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_dgo.tar.gz) = 5534f4fffd34b93610ed32d892ea25bcfc50da8f8144fbf231e89fb3a404ba65 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_dgo.tar.gz) = 529013 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_dgo.tar.gz) = cf194e0079d75cc00d12be4e52ba378711e8e6002493eb83f37e2af74a33ecc1 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_dgo.tar.gz) = 529329 Modified: head/editors/libreoffice-dz/distinfo ============================================================================== --- head/editors/libreoffice-dz/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-dz/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142982 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_dz.tar.gz) = 51097ae8508b3c3b639474fba7f74576f0544677202a153202c12d9d3cd39586 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_dz.tar.gz) = 523104 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_dz.tar.gz) = 5e4b85e5a995ed17b89ce640736b97d1f6144e8547050a0d330ca4e273f5dcfd -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_dz.tar.gz) = 10299038 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_dz.tar.gz) = 931c6174dab8935f0807cb2c70c8b162ecd9040c21c95d78229c820d3da32261 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_dz.tar.gz) = 523312 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_dz.tar.gz) = 240dcfc2f1110faa388b4cb0d649c8d0a9c18489f33619957acfb21ab26a2818 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_dz.tar.gz) = 10299220 Modified: head/editors/libreoffice-el/distinfo ============================================================================== --- head/editors/libreoffice-el/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-el/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142983 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_el.tar.gz) = 76a67062e09a2c5f2c4bb5cba9ceb97b1e4d20d0bb66bf7e3289176dca04a318 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_el.tar.gz) = 2568849 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_el.tar.gz) = 72dc898c98c6baba402fa5267622e44637986b085e4ba2ebd52258be9a5bd48a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_el.tar.gz) = 9073381 +TIMESTAMP = 1498137134 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_el.tar.gz) = 74f8485defa888a92a3df2fc5342e3a61c00a0637bda6e299b73058a9f9a6a9d +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_el.tar.gz) = 2569162 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_el.tar.gz) = c8b21b8202734bc810a9267f107b86b24ffdc5d26e4f1f2ebf1362f90a9b0915 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_el.tar.gz) = 9073545 Modified: head/editors/libreoffice-en_GB/distinfo ============================================================================== --- head/editors/libreoffice-en_GB/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-en_GB/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142983 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_en-GB.tar.gz) = 8a155ad520ab631757d5a823d05f3ec9558df0c43944d48a660365155971bac6 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_en-GB.tar.gz) = 7068893 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_en-GB.tar.gz) = 967658c8680fc1fd6565a8723a369cac8053f3632091a182433dd32af2c18546 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_en-GB.tar.gz) = 6516681 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_en-GB.tar.gz) = 3c208c873cc7562bccbde485169ac3048bcdf5f0973b4687f3bc81ef8c5c4823 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_en-GB.tar.gz) = 7068817 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_en-GB.tar.gz) = 77581953e094efe9bcb29746316a42b959886079c56443d75f16049a79272d55 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_en-GB.tar.gz) = 6516900 Modified: head/editors/libreoffice-en_ZA/distinfo ============================================================================== --- head/editors/libreoffice-en_ZA/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-en_ZA/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142984 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_en-ZA.tar.gz) = 2b0e4c19e3d1c8372cdc115f25ba2e7e4e61cea93f4d985155603056fa35700a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_en-ZA.tar.gz) = 6985887 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_en-ZA.tar.gz) = cad149b248cb6b1498e0553567ab70cd86c3d2c43b633a37e16015cbea381495 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_en-ZA.tar.gz) = 6500691 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_en-ZA.tar.gz) = 04140cc368ed1c64a2fcd4f1f69564ec5b876276ab498562f6c61b464ba0ef13 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_en-ZA.tar.gz) = 6986296 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_en-ZA.tar.gz) = d264ff29f8f74deb96b3bb8d23d72e79106722f3ff7e1cc340511d3943c2029a +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_en-ZA.tar.gz) = 6500807 Modified: head/editors/libreoffice-eo/distinfo ============================================================================== --- head/editors/libreoffice-eo/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-eo/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142984 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_eo.tar.gz) = e444618caa6b1cd5a61a27353f2e3063f689971ad7a4c805199682a96f40966b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_eo.tar.gz) = 467660 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_eo.tar.gz) = d38753d7b4a3615e1200a5511c4b6c92229d51158c3e386550ee1fb35dd93bc0 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_eo.tar.gz) = 7081273 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_eo.tar.gz) = edf8d6b45e005686cebea5844f39127902c87c41d10484391ca42309c940f5d8 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_eo.tar.gz) = 467919 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_eo.tar.gz) = 3aefe8e6581768cbe4804a5ffe537755ea198e079d2c3d6efd5cc0d7e745d9ea +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_eo.tar.gz) = 7081470 Modified: head/editors/libreoffice-es/distinfo ============================================================================== --- head/editors/libreoffice-es/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-es/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142985 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_es.tar.gz) = 3f89b8183d0ac3e2eddab88e7059a71b5b35085d1160b06a2197b42abc324b2e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_es.tar.gz) = 1969909 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_es.tar.gz) = b7191abdac69b8e4c813b057bfec695243e527fa84f05edffc82f64365c6f70b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_es.tar.gz) = 8108048 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_es.tar.gz) = 31b87231c9d1443f85f8f4a568b9de766a24158cb63d3494fecfb054389c1288 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_es.tar.gz) = 1969877 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_es.tar.gz) = 867940d0504891a60c6f2b4c970ca80d5ab2c453a176fecd11aa29eb4822530e +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_es.tar.gz) = 8107004 Modified: head/editors/libreoffice-et/distinfo ============================================================================== --- head/editors/libreoffice-et/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-et/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142985 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_et.tar.gz) = 1d7752bce1acfe6339d1e7f8d1f71ca99de12d65606e59fe247fdf6c6e7a6420 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_et.tar.gz) = 1377693 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_et.tar.gz) = b01dea9bdcd43fb7547f73505dfc466cb5d88ec2c7febef9e902c89d90e6de1b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_et.tar.gz) = 7584645 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_et.tar.gz) = 976f6c046ad5343c8e6082a6eda90962091e126e7f8967c64a650b375ec05cfd +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_et.tar.gz) = 1377955 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_et.tar.gz) = b7fb50039924f14d3404adbbba041db07cc6b017f9c4c560fe46b3e2b224dcd8 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_et.tar.gz) = 7584902 Modified: head/editors/libreoffice-eu/distinfo ============================================================================== --- head/editors/libreoffice-eu/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-eu/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142986 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_eu.tar.gz) = 3d61e1d65651de7da92a496200f48e7b02cf413e375c828d44968ba119eb3bf8 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_eu.tar.gz) = 473907 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_eu.tar.gz) = 3641cae0d4fe2247de61ded3016a7b2d962bb58b77217c876c662b3eafd3861e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_eu.tar.gz) = 7620478 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_eu.tar.gz) = 7e143e9a511ba6f858610b69c206d3074a5550fad880a6f665f5c9e4f1933108 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_eu.tar.gz) = 474114 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_eu.tar.gz) = e78af2b97f43304a4251c8a1be2cd69e2941ab57c10e5763b5031cddbda46d7a +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_eu.tar.gz) = 7620376 Modified: head/editors/libreoffice-fa/distinfo ============================================================================== --- head/editors/libreoffice-fa/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-fa/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142986 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_fa.tar.gz) = 4c11b56c1c1921eadde406e87629671aa47c6dcced9ae8128b2c5fb24d9911ee -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_fa.tar.gz) = 496336 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_fa.tar.gz) = 010770629a6c41cb7e05602f22e107daf304d60a381fb0a07a12b1c5dd4b9e6e +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_fa.tar.gz) = 496634 Modified: head/editors/libreoffice-fi/distinfo ============================================================================== --- head/editors/libreoffice-fi/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-fi/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142986 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_fi.tar.gz) = 684701d07738a62c257e87362f1ef883ea2456bc28f1ee26e860b73f89b9fe9b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_fi.tar.gz) = 482671 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_fi.tar.gz) = 1f3ea8650bfa1221a22139cd128f2de3c7f1268287c49fb8562d6752d0fa9c9d -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_fi.tar.gz) = 7851390 +TIMESTAMP = 1498137135 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_fi.tar.gz) = 1b91fe47239169f6800ce17855820ce6104460a8837daf4283fc52a9c7142baf +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_fi.tar.gz) = 482928 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_fi.tar.gz) = c95fdda6aa28348c784dd301f2a91024789c7fbec5cd4df6b9046fab2bfdabce +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_fi.tar.gz) = 7851360 Modified: head/editors/libreoffice-ga/distinfo ============================================================================== --- head/editors/libreoffice-ga/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ga/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142987 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ga.tar.gz) = 58e15f926ea36c5d26b18a4ecdd3a2b6b299fbee17c772c81bdf07069c236432 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ga.tar.gz) = 492825 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ga.tar.gz) = a03762230a9055270082d7c5fe42d55a39ef477a4566ace84bf24e154fa4690c +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ga.tar.gz) = 492988 Modified: head/editors/libreoffice-gd/distinfo ============================================================================== --- head/editors/libreoffice-gd/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-gd/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142987 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gd.tar.gz) = eb198d596c34482f9031a174ea1366f0c8a501f504618ef5bc91cc8f61cf8cc2 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gd.tar.gz) = 1399392 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gd.tar.gz) = bc088ac0f5262f389a936fa907a894e788186dae76f5306a6a85cd49c24b3a86 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gd.tar.gz) = 1399288 Modified: head/editors/libreoffice-gl/distinfo ============================================================================== --- head/editors/libreoffice-gl/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-gl/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142988 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gl.tar.gz) = ccf6f14f92e71b712a42ac8763165fd3c14c625c3232cfc5415246cd3d27f914 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gl.tar.gz) = 1041930 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_gl.tar.gz) = cf9c7fa477b1e6c23422b95ab5e821cbb662d8ba924098f15d44039bb4ef42b2 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_gl.tar.gz) = 7763806 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gl.tar.gz) = d4342822d5b357eef6a41a3fab5a71f4ccc5e208290b17aab556f2888fdb4d9c +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gl.tar.gz) = 1042288 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_gl.tar.gz) = c5743c0dd4ff4339f5b9f18dd01c68559609d0a5b675e73303c3d60084482c3d +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_gl.tar.gz) = 7763951 Modified: head/editors/libreoffice-gu/distinfo ============================================================================== --- head/editors/libreoffice-gu/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-gu/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142988 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gu.tar.gz) = 9a8a6f3274926e3d8292b759db216aef5141ff41057c0834c3b4cf0aefe389f5 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gu.tar.gz) = 1175250 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_gu.tar.gz) = e2f0403dce00322a6edbd50a07a307f829ae65a41499d0ab831a3668c68d280e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_gu.tar.gz) = 6722041 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gu.tar.gz) = d417973146bf49c8a5da04f5b611f0a4e5006bc3980bc46ff8fd95a28918f1c5 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gu.tar.gz) = 1175431 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_gu.tar.gz) = f4fcdb3292c75e6efbf1733bca6d9b8c8d2e521b19f99bec54b53ec3537148a2 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_gu.tar.gz) = 6722135 Modified: head/editors/libreoffice-gug/distinfo ============================================================================== --- head/editors/libreoffice-gug/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-gug/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142988 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gug.tar.gz) = 8d7dae5423ec97eb22bfc8b11037e08e459d49ca8120be4df801005cec74f5d3 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_gug.tar.gz) = 491564 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gug.tar.gz) = d4d46d1cd621fa1f4bc8fdb6fc12be975acf3e29cd09b762dc040e95252ea997 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_gug.tar.gz) = 491361 Modified: head/editors/libreoffice-hi/distinfo ============================================================================== --- head/editors/libreoffice-hi/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-hi/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142989 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_hi.tar.gz) = 60b27d10e690896d43d0fbbca8d652cc285bfa5be27569f9938d270226a6e6d5 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_hi.tar.gz) = 594420 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_hi.tar.gz) = 93bc445c010d3a6c2b527b86732a02ff41360e052d11ed6123135e634ef78fb7 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_hi.tar.gz) = 7374384 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_hi.tar.gz) = 9a66fd33ad8e679ea65604b314ca5807e7950acec77bf6a742c62929f85e7675 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_hi.tar.gz) = 594653 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_hi.tar.gz) = cd6c874bf06787644737007d29216b9024b1e4087701096633e83ffff8f82c40 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_hi.tar.gz) = 7374411 Modified: head/editors/libreoffice-hr/distinfo ============================================================================== --- head/editors/libreoffice-hr/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-hr/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142990 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_hr.tar.gz) = db9ec7cc380d5b7a3f20389cc31f20bbb005548d8e3b1f9df73707c0d69d6d40 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_hr.tar.gz) = 722415 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_hr.tar.gz) = d87c0e09356a92817f188de2a6e54b6b96777c10102e59aa13f8fc1378dc081c -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_hr.tar.gz) = 6882032 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_hr.tar.gz) = 8712170b5ce2f65222477905b767baf150191d554e75fae8fdab85b2c2765695 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_hr.tar.gz) = 722418 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_hr.tar.gz) = 7e026404671c2b07d745591b148a76358c9d778161a0defa9460f28713212b6a +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_hr.tar.gz) = 6882027 Modified: head/editors/libreoffice-id/distinfo ============================================================================== --- head/editors/libreoffice-id/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-id/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142991 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_id.tar.gz) = 8dd6f8949681bf8dd533d88446a88b24ffc3fd6b99c4629c6bc851b01e365e18 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_id.tar.gz) = 466761 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_id.tar.gz) = 48da32829073aa0237e8b00e0991cd970c510a4a1c9d673f681adf877ffda868 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_id.tar.gz) = 6928041 +TIMESTAMP = 1498137136 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_id.tar.gz) = a4827b6a268932cde22e41ed5aaba2e267d99048615d5fe055957e9a511bec8b +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_id.tar.gz) = 467091 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_id.tar.gz) = 4d7f0fa3cac7765a55309bb4c32afcae11b7e6aca993e4bc22c04734d7425a03 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_id.tar.gz) = 6928116 Modified: head/editors/libreoffice-is/distinfo ============================================================================== --- head/editors/libreoffice-is/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-is/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142991 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_is.tar.gz) = 7a22b3bf07b8c5a580349e307eee683779d4c3510807f065aa5b87680d5b11ab -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_is.tar.gz) = 1277799 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_is.tar.gz) = 5d18e96c95a241d34be3f14141fe4eb8465a587eaca7992e4d5128c1b9ea588e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_is.tar.gz) = 6987748 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_is.tar.gz) = e83add8045836e2df35b9131845f4e653747bea6b3b830f7c1739b54420d68a9 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_is.tar.gz) = 1277833 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_is.tar.gz) = 7e42473a82fb8d5ed688fe70ad64b750f040f59f35b19a7da55af95beeb7f4f1 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_is.tar.gz) = 6987761 Modified: head/editors/libreoffice-it/distinfo ============================================================================== --- head/editors/libreoffice-it/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-it/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142992 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_it.tar.gz) = f138ee4b246f849f5c3f31da8f97e2161bd42302f8232231930510083fbfe4b5 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_it.tar.gz) = 1813494 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_it.tar.gz) = 1081febbeb6ef59e493e9a3c84eff33aa0d683a19c36fde73e27bfb364514132 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_it.tar.gz) = 8036904 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_it.tar.gz) = 3f3e4d08d70c7b2f80186f0e2a3132c32123286da35680d36e8eb800484f6173 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_it.tar.gz) = 1813675 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_it.tar.gz) = 8c9adefbe2a3722970fb23e3e955121ed5b199dcb9c7ecc742f0a944d330c96d +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_it.tar.gz) = 8037107 Modified: head/editors/libreoffice-ka/distinfo ============================================================================== --- head/editors/libreoffice-ka/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ka/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142993 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ka.tar.gz) = 4a7772286e46622fddaabde0ffd3bdd636499b19c1d409c631efac56368cc932 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ka.tar.gz) = 506513 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ka.tar.gz) = 14fbe67dbc36c2e4e71e9ef92e31bd46b2f28305ee82ba019b22456fd5dba30a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ka.tar.gz) = 7182190 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ka.tar.gz) = c1c8e6f90122d98cb89f10d019d29b9c10fa01510c4323e9938e1657c233f494 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ka.tar.gz) = 506456 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ka.tar.gz) = b4ba838e4e4ef3fe031d6331b0f3812ededcf003d9ad2bc860b63c88fd727232 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ka.tar.gz) = 7182129 Modified: head/editors/libreoffice-kk/distinfo ============================================================================== --- head/editors/libreoffice-kk/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-kk/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142993 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kk.tar.gz) = c1a6678a5e0cafabb6ad129b63e831a3d3a7e3129e0b9ae5015540fd80308c13 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kk.tar.gz) = 522907 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kk.tar.gz) = 6e973c4a99b790ef6fb9ed50b6215852f42c445d4e58768f224847ea6395466b +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kk.tar.gz) = 522864 Modified: head/editors/libreoffice-km/distinfo ============================================================================== --- head/editors/libreoffice-km/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-km/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142994 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_km.tar.gz) = 2573c14ed912dc1fb26b67d510bd1c19ea890c1f7ab0a4728dfb7ea6210cc14d -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_km.tar.gz) = 627830 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_km.tar.gz) = 1482846de2ba03cb62141bef4bb5fddea84e45751203a459268bf53e782c571c -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_km.tar.gz) = 10346580 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_km.tar.gz) = 24bc0764a58adadf3e1379bdd23429e7f5c76f17f2d696c690b50a1b7cc8d4dc +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_km.tar.gz) = 627766 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_km.tar.gz) = 9d5c4541b41455e6d3f1f1cf09aebdcf4235acbf231e4dc4e521a04473f13d89 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_km.tar.gz) = 10347005 Modified: head/editors/libreoffice-kmr_Latn/distinfo ============================================================================== --- head/editors/libreoffice-kmr_Latn/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-kmr_Latn/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142994 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kmr-Latn.tar.gz) = adf393cc3761922d172a2c621b80d9ca6ae3263d36168fad5790bfed93444ff6 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kmr-Latn.tar.gz) = 482211 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kmr-Latn.tar.gz) = 579f0283475cc626591516caf9bf33577abedf50da9836f46339c1bfacf33085 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kmr-Latn.tar.gz) = 482546 Modified: head/editors/libreoffice-kn/distinfo ============================================================================== --- head/editors/libreoffice-kn/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-kn/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142994 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kn.tar.gz) = f9809e635c8479b48279d3798799460b149733c5995d50633a9377f390dda8d9 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kn.tar.gz) = 543272 +TIMESTAMP = 1498137137 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kn.tar.gz) = a9b5bd600b218cca9ab0a70feab543ea9c32ffe15eeed39371a92660c21db892 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kn.tar.gz) = 543519 Modified: head/editors/libreoffice-kok/distinfo ============================================================================== --- head/editors/libreoffice-kok/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-kok/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142995 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kok.tar.gz) = 17d64d1631acb37bcb7296650178d2841d9d120fd167f1f1d365e2f02aaf1492 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_kok.tar.gz) = 520956 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kok.tar.gz) = 8c9826ad2254ef483d3ab2161d7c8bf8b378b0d07a4bd206992dc63182a14637 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_kok.tar.gz) = 521248 Modified: head/editors/libreoffice-ks/distinfo ============================================================================== --- head/editors/libreoffice-ks/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ks/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142996 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ks.tar.gz) = 520b8fa828471e207546e7aee5dbb7ec4141d09ec8f4281a0aa019cc8bd6f158 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ks.tar.gz) = 500718 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ks.tar.gz) = 68763542509fd02aae8b9141a4fa5d3120994b999c9d679ecfdf263d333abdac +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ks.tar.gz) = 500693 Modified: head/editors/libreoffice-lb/distinfo ============================================================================== --- head/editors/libreoffice-lb/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-lb/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142996 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lb.tar.gz) = 1921ca3bf0bb5c3bb1687a93282f1ad554ff06d69feda859c1d297aab3bddf5b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lb.tar.gz) = 439513 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lb.tar.gz) = 6c701b2ca7c25e56e8828f8a10fc17f842374434d5c160075afef45c7e949536 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lb.tar.gz) = 439888 Modified: head/editors/libreoffice-lo/distinfo ============================================================================== --- head/editors/libreoffice-lo/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-lo/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142996 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lo.tar.gz) = 033ecad56ed5a2cd010d52d5d597ee3c0ba0362b80e41e3abaa16dbdb147344f -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lo.tar.gz) = 543738 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_lo.tar.gz) = 9c2d6611c5a95685458d5d7dbf3ad9ca0990e71d84380e5f0f0c3d8c4d5277ff -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_lo.tar.gz) = 6493538 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lo.tar.gz) = 613caed5081364bd85644713d9a37eb1ce7abb6153cdd13565504e9fdb3179b1 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lo.tar.gz) = 544170 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_lo.tar.gz) = 63cabef9b35d0a2b19e87f0e042aee21baf21e443572448ad12ff1d323f49be1 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_lo.tar.gz) = 6493827 Modified: head/editors/libreoffice-lt/distinfo ============================================================================== --- head/editors/libreoffice-lt/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-lt/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142997 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lt.tar.gz) = ce135df92eaba8e6d862bb3858348aedc5a0ec79c3b6b428d300a8841fc85c0b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lt.tar.gz) = 821682 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_lt.tar.gz) = dacdf905c703dd17e4147291af2bef4049debab7bd79f45a2055dd5b27f86083 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_lt.tar.gz) = 6609818 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lt.tar.gz) = 3c7fa360088c20b47eeed5a49a36c41d7733e625342d4a17272e40585a4dd5ee +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lt.tar.gz) = 821739 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_lt.tar.gz) = 143e16a7d33c8660ff49e50bf7e97fd8892b6951323874451d284785ed8bdc15 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_lt.tar.gz) = 6609622 Modified: head/editors/libreoffice-lv/distinfo ============================================================================== --- head/editors/libreoffice-lv/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-lv/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142998 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lv.tar.gz) = 618877d20a58eedad60ea6b91aa89912a4b5d77db793780ea7056a1656d53cb9 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_lv.tar.gz) = 1238528 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_lv.tar.gz) = c94fb3d962404f8f55d6bace142269765cc16e3c39f73010e74b3158eac8bdd2 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_lv.tar.gz) = 7005754 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lv.tar.gz) = 0be3353bdbfc36f7fd9ab6d5997cb736f6ce9a5eabf7e7b093a39e200a5a28e8 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_lv.tar.gz) = 1238397 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_lv.tar.gz) = 1a0b70f2cdaedeff5f815e15123ffb85e95b8ef569c89cd8b93ecdbde16a1b73 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_lv.tar.gz) = 7005881 Modified: head/editors/libreoffice-mai/distinfo ============================================================================== --- head/editors/libreoffice-mai/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-mai/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142998 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mai.tar.gz) = c6d89eb83ff7fc65f036a37a4583867698c36a953b123d0f5ec6d53eee639403 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mai.tar.gz) = 501979 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mai.tar.gz) = a6d62f7c579910baedf7c03a156931fdb4080b702cb6f7979c9dfe55b5c81513 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mai.tar.gz) = 502367 Modified: head/editors/libreoffice-mk/distinfo ============================================================================== --- head/editors/libreoffice-mk/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-mk/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495142999 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mk.tar.gz) = 7ed6c884099e66e1506631cb33971537ff7085eadafdce3b7ff5a3a2cc4117c3 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mk.tar.gz) = 504196 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_mk.tar.gz) = ce625ec9e80b073809c5e72c97996b8d4f4e053ac35d71293109f6ea974867ca -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_mk.tar.gz) = 7395213 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mk.tar.gz) = 0e5a66032a9cade7ef889c9ac06539c493dc581fdbcc6f8f02c464f3aa0930d4 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mk.tar.gz) = 504412 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_mk.tar.gz) = 080592e0b253bf970cf09bac1c147825ae0b455e5d028968e9abab2884490a19 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_mk.tar.gz) = 7395284 Modified: head/editors/libreoffice-ml/distinfo ============================================================================== --- head/editors/libreoffice-ml/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ml/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495142999 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ml.tar.gz) = 93c2b8497c4177c2df72c31a0680efbf748e36b433f5d1983b15a0f01ee3b24e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ml.tar.gz) = 543687 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ml.tar.gz) = ecc16a73ad9ff23087c5c8e35d2665522fc170c7fde1a31fc13f10a3b964aa76 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ml.tar.gz) = 543856 Modified: head/editors/libreoffice-mn/distinfo ============================================================================== --- head/editors/libreoffice-mn/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-mn/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143000 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mn.tar.gz) = a7b0429c7ce23ec8020a003e34ef5c89a82f7b2e65c31036d71c8f84a3616f1c -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mn.tar.gz) = 592000 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mn.tar.gz) = d1fa6e903c477f19cbcb6aff65433c76279053727a14c95551a64f4a86e39107 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mn.tar.gz) = 592458 Modified: head/editors/libreoffice-mni/distinfo ============================================================================== --- head/editors/libreoffice-mni/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-mni/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143000 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mni.tar.gz) = e9e2c6a5e350b405af35cca879c4624d41ac6a377d3e3cc7f71f921b659cb7db -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mni.tar.gz) = 515837 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mni.tar.gz) = 33e23af88ae3289465ec66bae32ee63836989cebc1a01d75f1a54ae76f287185 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mni.tar.gz) = 516100 Modified: head/editors/libreoffice-mr/distinfo ============================================================================== --- head/editors/libreoffice-mr/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-mr/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143000 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mr.tar.gz) = 71e7d044f7c04710bfa5c23aa6c7607c0d233823a43e2d3de74456c4712aeb1a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_mr.tar.gz) = 538717 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mr.tar.gz) = 593b1f8a5ddea7118c52062dc9772eeef8514a1bc317601b3d874de4ab175161 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_mr.tar.gz) = 538907 Modified: head/editors/libreoffice-my/distinfo ============================================================================== --- head/editors/libreoffice-my/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-my/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143000 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_my.tar.gz) = 4c120b33abd6508bf10fca8cc4df4f94f13488e76da5b917d0837d4bafc1066a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_my.tar.gz) = 533588 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_my.tar.gz) = afb93a02c36b67658c0605826e68f1da9f0d2724fcf7e77a74e9947f5cd6fdfd +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_my.tar.gz) = 533815 Modified: head/editors/libreoffice-nb/distinfo ============================================================================== --- head/editors/libreoffice-nb/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-nb/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143000 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nb.tar.gz) = aa92bdee40887ec8a97d53d21a3589283bccf139e8d6b91b3ec3c97b17179ffe -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nb.tar.gz) = 3468759 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_nb.tar.gz) = 7935b87684e33a268e9a841e8db3435c41a6e121c2ec4b31709145cd9dcb2ce5 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_nb.tar.gz) = 7734204 +TIMESTAMP = 1498137138 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nb.tar.gz) = 696cc95bc5f76bb46a1ce905efafb3576a38233efb8324ab1bc42ce7e64f5b28 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nb.tar.gz) = 3468649 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_nb.tar.gz) = f6560a58307ffa4763a5b7cb2b470941db92d085e452930b58df5bf6d967a3fe +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_nb.tar.gz) = 7734358 Modified: head/editors/libreoffice-ne/distinfo ============================================================================== --- head/editors/libreoffice-ne/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ne/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143001 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ne.tar.gz) = 1e43d0b25ca9e7610f31f5bacc5d22c7cc1c2011e09a3c272167b8cd208d8cb4 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ne.tar.gz) = 905522 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ne.tar.gz) = 77f12a591290c9556bdff74bd196691efd9a3b9b9e9ef98d9ac8a72b79fe69b1 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ne.tar.gz) = 9762500 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ne.tar.gz) = 57605bb2ce939df052b2378ff8f99a345a90de7da4bad5709b8910c201436c22 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ne.tar.gz) = 905480 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ne.tar.gz) = df0e54eb6170945c2caee5dc44f97a424ad5e24f51ae61fabb0cce02f44816c4 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ne.tar.gz) = 9762779 Modified: head/editors/libreoffice-nl/distinfo ============================================================================== --- head/editors/libreoffice-nl/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-nl/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143002 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nl.tar.gz) = 41a33b7ff4b5ac77ff5ded5faf775eea0c9acd1c159cb38db0a9caac4f5a0163 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nl.tar.gz) = 1270829 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_nl.tar.gz) = 3b1506aed5bcf0cf26b1fdf24ae7599733df19ed72e66983c26c668d9f6e589f -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_nl.tar.gz) = 7863431 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nl.tar.gz) = 29e0207442bfc9b67e8f8cde1decc45d5ac33d671014389cafa94f7901723d59 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nl.tar.gz) = 1271342 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_nl.tar.gz) = f912d46096e4a99a9a9df5d7ff102f72e3964c91405813f60fd6fb9cf0a38a86 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_nl.tar.gz) = 7841088 Modified: head/editors/libreoffice-nn/distinfo ============================================================================== --- head/editors/libreoffice-nn/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-nn/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143002 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nn.tar.gz) = b77b1789d690e11c510f8be094dc7e18c6a3fb74c7e0558fb31608ceb5d0297d -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nn.tar.gz) = 3468077 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_nn.tar.gz) = cf55776371416e93e03209ffcada2ede91cf250617ab2e28e71ce296f6757851 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_nn.tar.gz) = 7713890 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nn.tar.gz) = 28ab7a03d48af4e687d4f4f00237231c8b9c33c48ac442aa6223757004eaeea7 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nn.tar.gz) = 3468161 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_nn.tar.gz) = 0068470098a2deebad86cd4c1f8925912adb91f0dd67f5ccc98911c1c93f562c +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_nn.tar.gz) = 7714063 Modified: head/editors/libreoffice-nr/distinfo ============================================================================== --- head/editors/libreoffice-nr/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-nr/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143002 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nr.tar.gz) = a003d4bfe10d2ace20e4eead1ff5b909aec9e3124e9ed62c1dc0ac5a5e65c5d4 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nr.tar.gz) = 480080 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nr.tar.gz) = 4a53449d3ed9872e0ae1cde83242430a4fdedf53407ac0879e4a759e6e9de96d +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nr.tar.gz) = 480140 Modified: head/editors/libreoffice-nso/distinfo ============================================================================== --- head/editors/libreoffice-nso/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-nso/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143003 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nso.tar.gz) = 15c307acc0b3e51006952d9a46fd35fe5f885e4efa2eb5e72f6bfc24b002f11a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_nso.tar.gz) = 479086 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nso.tar.gz) = ae71fd4012d52a8444f25570acbd369cda91f558e407e51f27555c791a2c718c +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_nso.tar.gz) = 479343 Modified: head/editors/libreoffice-oc/distinfo ============================================================================== --- head/editors/libreoffice-oc/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-oc/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143003 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_oc.tar.gz) = 0296db07e3a4b0c65fe56c7d170d317194d69d68136dc9e6d61c04074848fbab -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_oc.tar.gz) = 683826 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_oc.tar.gz) = e86a6e03899c2afdb837ac68b2dfec0adddae359c039771eff425b736c7d20ef +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_oc.tar.gz) = 683769 Modified: head/editors/libreoffice-om/distinfo ============================================================================== --- head/editors/libreoffice-om/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-om/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143004 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_om.tar.gz) = 7a1002dfddd13305b1589bb03b6dff9c1808d5d68817cc9c573546ffebdb07b8 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_om.tar.gz) = 473445 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_om.tar.gz) = 7382c066eb774cc60d9f7dcdf34b46722fdac3507c6349bc0dc4282a7275255e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_om.tar.gz) = 8042702 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_om.tar.gz) = a7416b1fa24da205f86e113f9892f9bda389e0440837d6acc82168344c14add9 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_om.tar.gz) = 473525 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_om.tar.gz) = 1385f3480c22c9cefe38321522a5826359bc522c69bfa6b76ec177f168f59c1a +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_om.tar.gz) = 8042870 Modified: head/editors/libreoffice-or/distinfo ============================================================================== --- head/editors/libreoffice-or/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-or/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143004 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_or.tar.gz) = c70fc4bf0f0e01e750c84f2ffd3a9b268e14fa2acaee2c568d159deae6eeb40e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_or.tar.gz) = 539911 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_or.tar.gz) = 7dcc947ce639e44215e466c629df59a92fc2446f8d48ad75762c8258c3475a48 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_or.tar.gz) = 540059 Modified: head/editors/libreoffice-pa_IN/distinfo ============================================================================== --- head/editors/libreoffice-pa_IN/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-pa_IN/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143005 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_pa-IN.tar.gz) = b0de9c645d79b6c7e1bb5e4ed56dbae2faafdaeec202293c15407d196cfd4ee1 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_pa-IN.tar.gz) = 509733 +TIMESTAMP = 1498137139 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_pa-IN.tar.gz) = 543b83e9fc5195180d7928a5f67b137b1e1bf914456e5a93fe54b09525661021 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_pa-IN.tar.gz) = 510172 Modified: head/editors/libreoffice-ro/distinfo ============================================================================== --- head/editors/libreoffice-ro/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ro/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143006 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ro.tar.gz) = 0c0d0e1e2bf62daca0124b4362e60ec55b76075c7974d2cc8202ab86c48c1f42 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ro.tar.gz) = 2354949 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ro.tar.gz) = 5ecd80f112f9a4735b11d18e9d2ae3681a1f4ec865e6ffd13d140568d124941a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ro.tar.gz) = 6496054 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ro.tar.gz) = c370b8545bc65a483060814bfaff7de97adb2220c97469ce047ef83d80618bc8 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ro.tar.gz) = 2355166 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ro.tar.gz) = fb3396b15a137b33774c6b43d552e87c900b6f19d0b3c085d30e8ab641175159 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ro.tar.gz) = 6496164 Modified: head/editors/libreoffice-rw/distinfo ============================================================================== --- head/editors/libreoffice-rw/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-rw/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143008 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_rw.tar.gz) = 91c4a7c000100e77ed6911056643ebab705cf831d8dd9972c4b53a8bb0e38372 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_rw.tar.gz) = 475509 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_rw.tar.gz) = 1b0c19cc7f9881f71ebaa13d276783a650edad79194faa73a5e3e3053568b872 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_rw.tar.gz) = 475453 Modified: head/editors/libreoffice-sa_IN/distinfo ============================================================================== --- head/editors/libreoffice-sa_IN/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sa_IN/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143008 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sa-IN.tar.gz) = 8f5c96479aa1a2044fb976380f2e53afff8978c5ebcfdc613399056b28849756 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sa-IN.tar.gz) = 524374 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sa-IN.tar.gz) = 3d6f9344988c6c698bbbacba3f89dcba6f2b01afc27a7a393d79afa11ea476b5 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sa-IN.tar.gz) = 524709 Modified: head/editors/libreoffice-sat/distinfo ============================================================================== --- head/editors/libreoffice-sat/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sat/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143008 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sat.tar.gz) = 737dfcd38d1b806e3cae16879def579691340520e18acadc05f01e1bbc83c978 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sat.tar.gz) = 558515 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sat.tar.gz) = b680195f788ec5bc7ecf26e0cd7f22d750e2e8d75c59e82ba15df8312a49b3a7 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sat.tar.gz) = 558702 Modified: head/editors/libreoffice-sd/distinfo ============================================================================== --- head/editors/libreoffice-sd/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sd/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143008 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sd.tar.gz) = 8852e6275743f84d9c6e1d98075d5a3c071c16a45ccc92c2b6ec6b0f1d9d479b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sd.tar.gz) = 517125 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sd.tar.gz) = c21ee0480c52ecc8e86f4932ee0244551f02d7597d6c66be594d49b480060853 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sd.tar.gz) = 517063 Modified: head/editors/libreoffice-si/distinfo ============================================================================== --- head/editors/libreoffice-si/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-si/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143009 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_si.tar.gz) = 65403e405baf9103bfa67d33850097358f28590b3270868f5ea58c1ab4dff2d2 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_si.tar.gz) = 805523 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_si.tar.gz) = 27411378f5ecc361b0b573a7a03f0d6620e576571e479f48f0a18e376e67bda6 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_si.tar.gz) = 7252916 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_si.tar.gz) = 5ea20478414906beb8f3f7cce19e2e27f65b099df6316090d5138c4f4d40e080 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_si.tar.gz) = 805462 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_si.tar.gz) = 2acaff7571921029c1fe5aaee2840a260529311552e42c8749155d1c262fcc89 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_si.tar.gz) = 7252852 Modified: head/editors/libreoffice-sid/distinfo ============================================================================== --- head/editors/libreoffice-sid/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sid/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143009 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sid.tar.gz) = 497c248614119ca0cb35128da4d1cd43aa1ab0579406f25addd5130e2dbcd8bc -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sid.tar.gz) = 480002 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sid.tar.gz) = 1e08f51ed523d4b0092479d081b128675bbd530401f97c1349133cafbc0cd87d -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sid.tar.gz) = 7777721 +TIMESTAMP = 1498137140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sid.tar.gz) = 79ed57346d4529b3818100b8be0653fbb35b6f329462bd0d148a2ae72c57da95 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sid.tar.gz) = 480074 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sid.tar.gz) = b87ee002c5417e1bb5c335bcb02e3c1da9aac90ee0a9e99b19d1196a04f38dd4 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sid.tar.gz) = 7777633 Modified: head/editors/libreoffice-sk/distinfo ============================================================================== --- head/editors/libreoffice-sk/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sk/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143010 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sk.tar.gz) = a3170290aa74bf06e83365f8575562e4154630cc1a63a8c0d69441f218ba5582 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sk.tar.gz) = 1773087 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sk.tar.gz) = 7cf2c4de9f159caa0adbe1630424ffa9a04415c20b52b1c45bcf270837a3e1d5 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sk.tar.gz) = 7578197 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sk.tar.gz) = fdbb44b21c5af4669a07459149333864b2e3341604403957793ccdd83f09a3f9 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sk.tar.gz) = 1773030 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sk.tar.gz) = 0606a3e7b2dbdf87ad60f14c11ea0f90aedbc6626396ddfa3d7094adf4eed223 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sk.tar.gz) = 7578140 Modified: head/editors/libreoffice-sl/distinfo ============================================================================== --- head/editors/libreoffice-sl/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sl/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143010 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sl.tar.gz) = d6d1a6dadb055bc62906c29100b6c02cfd15bbfdb580cfa41296b0a85f502881 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sl.tar.gz) = 2152242 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sl.tar.gz) = 4beed2dee0f6a159e1eab6db192b998f5daa9888d8cd8209e26a1838d39d2211 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sl.tar.gz) = 7850937 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sl.tar.gz) = 43a4e9bf4df09e58b43bcc97378d6ba84364a98a3a408a9f5c4559047da734ba +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sl.tar.gz) = 2152315 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sl.tar.gz) = 3de06725b5257b46ec019798755ba3f88042291aafa031d6d1ddf8ff967f1ac7 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sl.tar.gz) = 7850857 Modified: head/editors/libreoffice-sq/distinfo ============================================================================== --- head/editors/libreoffice-sq/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sq/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143011 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sq.tar.gz) = a23a8788be8b07f05ae26fcbe5037b87eda41df16c0084544b2899d77c2f3956 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sq.tar.gz) = 494056 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sq.tar.gz) = de3dafa89fff8e0ebb33dfcbcc14d4bc005d9c3ed3a0a582167015822a4a12a8 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sq.tar.gz) = 6920162 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sq.tar.gz) = 221cfd53b25eea4b1b51561860bad35d1ab841ff15fcb5f0b386df0931cf4810 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sq.tar.gz) = 494351 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sq.tar.gz) = 307258365d8520b9c7f9b91f7c08b969e4bf7b8f670a6b3e755b4c0ba3ca76d9 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sq.tar.gz) = 6920217 Modified: head/editors/libreoffice-sr/distinfo ============================================================================== --- head/editors/libreoffice-sr/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sr/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143011 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sr.tar.gz) = 4c83f5c9ed19f05cce5c6d629fce859eac9996c7968e8bb29fd4a2091d922844 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sr.tar.gz) = 1683347 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sr.tar.gz) = 141e83c90481cd20d2d78d7d8489f0b81ec84c3ec3a1ccb5ec860e450302b9c5 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sr.tar.gz) = 1683746 Modified: head/editors/libreoffice-sr_Latn/distinfo ============================================================================== --- head/editors/libreoffice-sr_Latn/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sr_Latn/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143011 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sr-Latn.tar.gz) = 15081245b327ac337cbd0485a70ec220bcf10319eb42ffdff5facc83cf5130d4 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sr-Latn.tar.gz) = 1656390 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sr-Latn.tar.gz) = 2d52d01c3662106ea0e8e749fe1bd346dcc796f0c90977585c84dbd5680a354e +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sr-Latn.tar.gz) = 1656368 Modified: head/editors/libreoffice-ss/distinfo ============================================================================== --- head/editors/libreoffice-ss/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ss/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143012 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ss.tar.gz) = 4b8556e5f9bc112534e3acd6ea9950e8055f31fe462c53cb8f958f435629a40b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ss.tar.gz) = 479291 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ss.tar.gz) = f46cc35d1f11c95bd2e149541f8a5de5fc8e1cd8379677521f821638286fb417 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ss.tar.gz) = 479671 Modified: head/editors/libreoffice-st/distinfo ============================================================================== --- head/editors/libreoffice-st/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-st/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143013 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_st.tar.gz) = 07a5a3f44d102f28fed41a885dbe15c9951fe47906da9de84ec6fee8c90cbe7e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_st.tar.gz) = 477788 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_st.tar.gz) = 7f6b4fdc91feffe3427b93b1b85047ca8c3c2042f51b190cbcdd7e360b23ad4f +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_st.tar.gz) = 478142 Modified: head/editors/libreoffice-sv/distinfo ============================================================================== --- head/editors/libreoffice-sv/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sv/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143013 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sv.tar.gz) = b5ff4b907fe5c10fe62584dea64d3a7c6c368a520846e5973ed3e94f0bdf650e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sv.tar.gz) = 2358003 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sv.tar.gz) = 6390fb1f269f3c3c51ada7829e5ca448f2b86f915ce471eb87a8943bc9abfbea -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_sv.tar.gz) = 7794384 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sv.tar.gz) = ae9d95ed208e7f23325f43e75d5f9e485885c2630cb47d3daeb77cc9177fcd91 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sv.tar.gz) = 2358140 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sv.tar.gz) = 49fb477690776241369900b3755c53234db0d49bdbfeaf733260122094f09054 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_sv.tar.gz) = 7794394 Modified: head/editors/libreoffice-sw_TZ/distinfo ============================================================================== --- head/editors/libreoffice-sw_TZ/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-sw_TZ/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143013 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sw-TZ.tar.gz) = 1b8c8d5fa7f9cffaeac40e3a33425a4301bfafa2833a46b0c9d590ea2e04deb6 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_sw-TZ.tar.gz) = 466026 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sw-TZ.tar.gz) = 47656bda00affce7246e6d2b4094d58a802a2ffa0894f3de8bd83253c190e9b1 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_sw-TZ.tar.gz) = 466520 Modified: head/editors/libreoffice-ta/distinfo ============================================================================== --- head/editors/libreoffice-ta/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-ta/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143014 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ta.tar.gz) = 9ee7cffee09bb1e49c43ccc528f39c47f0c99edd421689fd1cf7e75222f98f4e -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_ta.tar.gz) = 535773 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ta.tar.gz) = 37f1168eb22d29830ea507917039acb3122fbb6d119d5022813dc6e0715c49cb -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_ta.tar.gz) = 7763268 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ta.tar.gz) = 915d750e45ff14de58874cf32814fbf1b917aa5bdabea51262ea66c79476d5cc +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_ta.tar.gz) = 535844 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ta.tar.gz) = 1898c0636055bf3bf00c240e080e276c6d32f878d8969f320b4c1f675f2c5b03 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_ta.tar.gz) = 7763445 Modified: head/editors/libreoffice-te/distinfo ============================================================================== --- head/editors/libreoffice-te/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-te/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143014 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_te.tar.gz) = 39140786ee42eb98ff75832082c806460129c03a7c77144f431d46445ad095b9 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_te.tar.gz) = 1088323 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_te.tar.gz) = 9732483f24da219f298f8034db64c76e87a1338ce865693299baa47b407c01bf +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_te.tar.gz) = 1088497 Modified: head/editors/libreoffice-tg/distinfo ============================================================================== --- head/editors/libreoffice-tg/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-tg/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,5 +1,5 @@ -TIMESTAMP = 1495143014 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_tg.tar.gz) = 4d2303fcc036ced6577ec0ab8ace80c0f7902ab766c6374a72db2cb44ca8325a -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_tg.tar.gz) = 494565 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_tg.tar.gz) = 799f62eb828846d489a85829f67836bf8a09006da32c307b29c19ac3445a6368 -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_helppack_tg.tar.gz) = 7239520 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_tg.tar.gz) = ceea946b5f0af4dc89eccd447181b62da104f3ea45aa0ca25a739bae9f74baa0 +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_tg.tar.gz) = 494990 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_tg.tar.gz) = a5a366eb4cd749a60580fa635c19b614d2492c74b7f7f2a669a5c17e119d817b +SIZE (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_helppack_tg.tar.gz) = 7239493 Modified: head/editors/libreoffice-th/distinfo ============================================================================== --- head/editors/libreoffice-th/distinfo Thu Jun 22 13:04:35 2017 (r444113) +++ head/editors/libreoffice-th/distinfo Thu Jun 22 13:14:37 2017 (r444114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495143015 -SHA256 (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_th.tar.gz) = c08a4deba0a7ef394cb96c15d0f68d984f25225cfd4c95dcd1436aab3690993b -SIZE (libreoffice/i18n/LibreOffice_5.3.3_Linux_x86_deb_langpack_th.tar.gz) = 674568 +TIMESTAMP = 1498137141 +SHA256 (libreoffice/i18n/LibreOffice_5.3.4_Linux_x86_deb_langpack_th.tar.gz) = 12d82ca4d94ab8a480f68456a596cf3a80038d2e61ae545b8aa0cd4a5994752f *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Thu Jun 22 13:24:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AE26D8C67C; Thu, 22 Jun 2017 13:24:31 +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 CF37A7B430; Thu, 22 Jun 2017 13:24:30 +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 v5MDOTU9038393; Thu, 22 Jun 2017 13:24:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MDOTqh038391; Thu, 22 Jun 2017 13:24:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706221324.v5MDOTqh038391@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 13:24:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444115 - in head/devel/android-tools-fastboot-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: Thu, 22 Jun 2017 13:24:31 -0000 Author: jbeich Date: Thu Jun 22 13:24:29 2017 New Revision: 444115 URL: https://svnweb.freebsd.org/changeset/ports/444115 Log: devel/android-tools-fastboot-devel: use upstream notation for device paths $ adb devices -l List of devices attached ABCDE1234 device usb:0:2 product:FOO model:BAR device:qux $ fastboot devices -l ABCDE1234 fastboot usb:0:2 Modified: head/devel/android-tools-fastboot-devel/Makefile (contents, props changed) head/devel/android-tools-fastboot-devel/files/usb_freebsd.cpp Modified: head/devel/android-tools-fastboot-devel/Makefile ============================================================================== --- head/devel/android-tools-fastboot-devel/Makefile Thu Jun 22 13:14:37 2017 (r444114) +++ head/devel/android-tools-fastboot-devel/Makefile Thu Jun 22 13:24:29 2017 (r444115) @@ -3,7 +3,7 @@ # Hint: git describe --abbrev=12 --match android-o-preview-2 DISTVERSION= o-preview-2-332 DISTVERSIONSUFFIX= -gd1e9e7bc06f0 -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -devel GH_MYTAG= ${DISTVERSIONPREFIX}${DISTVERSION:C/-[0-9]*$//} Modified: head/devel/android-tools-fastboot-devel/files/usb_freebsd.cpp ============================================================================== --- head/devel/android-tools-fastboot-devel/files/usb_freebsd.cpp Thu Jun 22 13:14:37 2017 (r444114) +++ head/devel/android-tools-fastboot-devel/files/usb_freebsd.cpp Thu Jun 22 13:24:29 2017 (r444115) @@ -82,7 +82,7 @@ probe(std::unique_ptr &h, ifc_match_func c info.dev_protocol = ddesc.bDeviceProtocol; info.writable = 1; - snprintf(info.device_path, sizeof(info.device_path), "ugen%d.%d", + snprintf(info.device_path, sizeof(info.device_path), "usb:%d:%d", libusb_get_bus_number(h->dev), libusb_get_device_address(h->dev)); if (ddesc.iSerialNumber != 0) { From owner-svn-ports-head@freebsd.org Thu Jun 22 14:16:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D4E0D8D218; Thu, 22 Jun 2017 14:16: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 07E107C8AC; Thu, 22 Jun 2017 14:16: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 v5MEG3vx059136; Thu, 22 Jun 2017 14:16:03 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MEG3OS059134; Thu, 22 Jun 2017 14:16:03 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201706221416.v5MEG3OS059134@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 22 Jun 2017 14:16:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444116 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 14:16:04 -0000 Author: tz Date: Thu Jun 22 14:16:02 2017 New Revision: 444116 URL: https://svnweb.freebsd.org/changeset/ports/444116 Log: Change PostgreSQL default version from 9.3 to 9.5 PR: 201796, 217515 Reviewed by: mat, girgen, xmj, Jov and more Modified: head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Thu Jun 22 13:24:29 2017 (r444115) +++ head/Mk/bsd.default-versions.mk Thu Jun 22 14:16:02 2017 (r444116) @@ -72,7 +72,7 @@ _EXPORTED_VARS+= _PERL5_FROM_BIN PERL5_DEFAULT:= ${_PERL5_FROM_BIN:R} .endif # Possible values: 9.2, 9.3, 9.4, 9.5, 9.6 -PGSQL_DEFAULT?= 9.3 +PGSQL_DEFAULT?= 9.5 # Possible values: 5.6, 7.0, 7.1 PHP_DEFAULT?= 5.6 # Possible values: 2.7, 3.3, 3.4, 3.5, 3.6 Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu Jun 22 13:24:29 2017 (r444115) +++ head/UPDATING Thu Jun 22 14:16:02 2017 (r444116) @@ -5,6 +5,57 @@ 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. +20170622: + AFFECTS: users of database/postgresql* and other software using PostgreSQL to run + AUTHOR: tz@FreeBSD.org + + The default version of PostgreSQL has been switched from 9.3 to 9.5. + The upgrade procedure can use up twice the space the databases + currently needs. If you have a big amount of stored data take a + closer look at the manpage of pg_upgrade for avoidance and/or + speedup of the upgrade. + + The upgrade instructions consider a basic usage and do not match + complex scenarious like replication, sharding or similar. + + Upgrade instructions: + + First stop your PostgreSQL, create PostgreSQL-binaries and backup your data. + If you have another Version of PostgreSQL installed, for example 9.3.12, your + files are named accourding to this. + + # service postgresql stop + # pkg create postgresql93-server postgresql93-contrib + # mkdir /tmp/pg-upgrade + # tar xf postgresql93-server-9.3.17.txz -C /tmp/pg-upgrade + # tar xf postgresql93-contrib-9.3.17.txz -C /tmp/pg-upgrade + # mv /usr/local/pgsql/data /usr/local/pgsql/data93 + # pkg delete -f databases/postgresql93-server databases/postgresql93-contrib databases/postgresql93-client + + Now update PostgreSQL: + + pkg user: + # pkg install databases/postgresql95-server databases/postgresql95-contrib + # pkg upgrade + + Portmaster users: + # portmaster databases/postgresql95-server databases/postgresql95-contrib + # portmaster -a + + Portupgrade users: + # portinstall databases/postgresql95-server databases/postgresql95-contrib + # portupgrade -a + + After installing the new PostgreSQL version you need to convert + all your databases to new version: + + # service postgresql initdb + # su -l pgsql -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /usr/local/pgsql/data93/ -B /usr/local/bin/ -D /usr/local/pgsql/data/" + + Now the migration is finished. You can start PostgreSQL again with: + + # service postgresql start + 20170614: AFFECTS: users of editors/calligra AUTHOR: groot@kde.org From owner-svn-ports-head@freebsd.org Thu Jun 22 15:47:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAF04D8EDC9; Thu, 22 Jun 2017 15:47:00 +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 8AA087F498; Thu, 22 Jun 2017 15:47:00 +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 v5MFkxsd095710; Thu, 22 Jun 2017 15:46:59 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MFkx4B095708; Thu, 22 Jun 2017 15:46:59 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201706221546.v5MFkx4B095708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 22 Jun 2017 15:46:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444117 - 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: Thu, 22 Jun 2017 15:47:00 -0000 Author: feld Date: Thu Jun 22 15:46:59 2017 New Revision: 444117 URL: https://svnweb.freebsd.org/changeset/ports/444117 Log: multimedia/plexmediaserver: Update to 1.5.7 Changelog: https://forums.plex.tv/discussion/comment/1464807/#Comment_1464807 Modified: head/multimedia/plexmediaserver/Makefile head/multimedia/plexmediaserver/distinfo Modified: head/multimedia/plexmediaserver/Makefile ============================================================================== --- head/multimedia/plexmediaserver/Makefile Thu Jun 22 14:16:02 2017 (r444116) +++ head/multimedia/plexmediaserver/Makefile Thu Jun 22 15:46:59 2017 (r444117) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= plexmediaserver -PORTVERSION?= 1.5.6.3790 +PORTVERSION?= 1.5.7.4016 PORTREVISION?= 0 CATEGORIES= multimedia MASTER_SITES= https://downloads.plex.tv/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?= 4613ce077 +PLEX_BUILD?= 25d94bad9 NO_BUILD= yes WRKSRC= ${WRKDIR}/PlexMediaServer-${PORTVERSION}-${PLEX_BUILD} Modified: head/multimedia/plexmediaserver/distinfo ============================================================================== --- head/multimedia/plexmediaserver/distinfo Thu Jun 22 14:16:02 2017 (r444116) +++ head/multimedia/plexmediaserver/distinfo Thu Jun 22 15:46:59 2017 (r444117) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496328607 -SHA256 (PlexMediaServer-1.5.6.3790-4613ce077-freebsd-amd64.tar.bz2) = 4a24041ae688c7414a3b45e67551d8c2dd62a3d959421f9f8f43dfaa353a97c7 -SIZE (PlexMediaServer-1.5.6.3790-4613ce077-freebsd-amd64.tar.bz2) = 84716056 +TIMESTAMP = 1498143289 +SHA256 (PlexMediaServer-1.5.7.4016-25d94bad9-freebsd-amd64.tar.bz2) = f8eec35c97769716d6e6c66b51a42e5be06a827e465d6464cc0a6673f099c47f +SIZE (PlexMediaServer-1.5.7.4016-25d94bad9-freebsd-amd64.tar.bz2) = 84713203 From owner-svn-ports-head@freebsd.org Thu Jun 22 16:15:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9219FD8FBA0; Thu, 22 Jun 2017 16:15:22 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6194080937; Thu, 22 Jun 2017 16:15:22 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MGFL8d008030; Thu, 22 Jun 2017 16:15:21 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MGFL8Y008027; Thu, 22 Jun 2017 16:15:21 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706221615.v5MGFL8Y008027@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 22 Jun 2017 16:15:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444118 - head/audio/flacon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 16:15:22 -0000 Author: danfe Date: Thu Jun 22 16:15:21 2017 New Revision: 444118 URL: https://svnweb.freebsd.org/changeset/ports/444118 Log: - Update Flacon to version 3.0.0 (http://flacon.github.io/changelog/) - Add QT5_CMAKE_OFF knob to ensure that right version is picked up if user has both of them installed - It no longer uses Shntool (not updated since 2009), so do not reference it in pkg-message; instead, add `audio/opus-tools' which Flacon supports since version 1.2.0 Because GitHub releases (tarballs) are not fetched with correct modification time, set TIMESTAMP to 1497981519 which corresponds to commit 0029b70 tagged as this release. Reported by: portscout Modified: head/audio/flacon/Makefile head/audio/flacon/distinfo head/audio/flacon/pkg-message Modified: head/audio/flacon/Makefile ============================================================================== --- head/audio/flacon/Makefile Thu Jun 22 15:46:59 2017 (r444117) +++ head/audio/flacon/Makefile Thu Jun 22 16:15:21 2017 (r444118) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flacon -PORTVERSION= 2.1.1 +PORTVERSION= 3.0.0 DISTVERSIONPREFIX= v CATEGORIES= audio @@ -20,6 +20,7 @@ OPTIONS_DEFINE= QT5 QT5_DESC= Build against Qt 5 instead of Qt 4 QT5_CMAKE_ON= -DUSE_QT5:BOOL=ON +QT5_CMAKE_OFF= -DUSE_QT4:BOOL=ON # :ts, would be handy here but is not available in fmake(1) QT5_USE= QT5=${_QT5_DEPS},${_QT5_BDEPS:C/,/_build&/g:%=_build} QT5_USE_OFF= QT4=${_QT4_DEPS},${_QT4_BDEPS:C/,/_build&/g:%=_build} Modified: head/audio/flacon/distinfo ============================================================================== --- head/audio/flacon/distinfo Thu Jun 22 15:46:59 2017 (r444117) +++ head/audio/flacon/distinfo Thu Jun 22 16:15:21 2017 (r444118) @@ -1,3 +1,3 @@ -TIMESTAMP = 1482855182 -SHA256 (flacon-flacon-v2.1.1_GH0.tar.gz) = 9ece812c0bd68828301d745fbdddaf9ff2d9e572cc205e20d2bbcb093de98a1b -SIZE (flacon-flacon-v2.1.1_GH0.tar.gz) = 337500 +TIMESTAMP = 1497981519 +SHA256 (flacon-flacon-v3.0.0_GH0.tar.gz) = 5349fdc29c6cb173e7d40260e7ea4ba13ae39f4a144c22028fbfa132ceef5bb3 +SIZE (flacon-flacon-v3.0.0_GH0.tar.gz) = 430724 Modified: head/audio/flacon/pkg-message ============================================================================== --- head/audio/flacon/pkg-message Thu Jun 22 15:46:59 2017 (r444117) +++ head/audio/flacon/pkg-message Thu Jun 22 16:15:21 2017 (r444118) @@ -4,6 +4,6 @@ audio/faac audio/flac audio/lame audio/mac - audio/mp3gain audio/shntool + audio/mp3gain audio/opus-tools audio/tta audio/vorbisgain audio/vorbis-tools audio/wavpack From owner-svn-ports-head@freebsd.org Thu Jun 22 17:12:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACAB7D90E97; Thu, 22 Jun 2017 17:12:03 +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 874C982C51; Thu, 22 Jun 2017 17:12:03 +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 v5MHC2Le031657; Thu, 22 Jun 2017 17:12:02 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MHC2pm031655; Thu, 22 Jun 2017 17:12:02 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201706221712.v5MHC2pm031655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 22 Jun 2017 17:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444120 - head/ports-mgmt/poudriere-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, 22 Jun 2017 17:12:03 -0000 Author: bdrewery Date: Thu Jun 22 17:12:02 2017 New Revision: 444120 URL: https://svnweb.freebsd.org/changeset/ports/444120 Log: Update to 3.0-2420-g8e8894ba [Changes staged for 3.1.20] - jail -c: Do not create a filesystem with *-m none* - ports -c: Don't try removing a filesystem that was not created - pwait: Fix *kern.randompid* hangs - queue: Fix for sending commands to poudriered [not well supported] - jail -u: Don't run freebsd-update update for PRERELEASE, STABLE or CURRENT jails. - jail -c: Don't allow creating a jail when its mountpoint already exists - jail -c -m ftp: Avoid bad number comparison with '12-CURRENT' - XDEV: Attempt to link /usr/bin/makewhatis - sh: Update from FreeBSD head r319826 - sh: Enable nofork for: clock, dirempty, realpath, rename, rmdir, mkdir, and mktemp - jail -u: Only run freebsd-install if needed - bulk CHECK_CHANGED_DEPS: Only run `ldconfig -r` once for the entire build rather than for every package. - poudriere: Allow _MAKEOBJDIRPREFIX_ from command environment. - poudriere: Force umask 022 and allow override with UMASK in poudriere.conf - Default RESOLV_CONF to host's /etc/resolv.conf - jail -k: Don't force having a portstree for cleanup - Fix MNAMELEN check consistency (2 different length paths were being used for calculations) - bulk -n: Fix .building directory sticking around on early exit. - Jails: Don't use allow.socket_af, allow.raw_sockets in the no-networking jail. - Nested jails: - Don't force allow.socket_af, allow.raw_sockets, allow.chflags, and allow.sysvipc - Check for and error if the follow flags are not enabled: - enforce_statfs=1, allow.mount, allow.mount.devfs, allow.mount.nullfs, and allow.mount.tmpfs - children.max is not properly exposed in a nested jail and so is not checked. - Fix trying to add loopback address in nested jail when there is none. [Changes staged for 3.2] - image: - Add to manpage - Require -t - Document new embedded type - HTML - Show remaining ports if HTML_TRACK_REMAINING is set to yes. - Show original queued ports - Show PKGNAME in builder/job table - Store and link dependency graph from 'Logs' dropdown. - Show time elapsed for built/failed ports. - Support src-env.conf - jail -m git: Support file:// - Limited DEPENDS_ARGS support for py3 slave ports. - Export PACKAGE_BUILDING_FLAVORS to disable some seatbelt logic in ports. - This allows leaving the default Python version at 2 and having a port like net/tiny-network-utilities properly build with a default of 3 and have its dependencies properly queued and built without using py3-* slave ports. - This support is disabled unless the default is set to 2. - Currently allows building "virtual" non-existent ports like textproc/py3-hexdump or textproc/py34-hexdump and having it build the expected version. Note this support is disabled once FLAVORS is committed to Ports so expect it to change soon without any kind of MOVED entries. - FLAVORS support [experimental, needs documentation, syntax may change] - Queued origin like 'devel/libtrue' will build all available FLAVORS. - Queued origin like 'devel/libtrue@TRUTH' will only build the TRUTH flavor. - Queued origin like 'devel/libtrue@-' will only build the first FLAVOR. - FLAVORS support requires ports advertises PORTS_FEATURES+=FLAVORS. - No support is currently committed in ports. - logclean: - Don't try building JSON when no files are found - Add -B to specify buildname - Document -z and -j - Don't run anything if there is no log directory - Recreate latest-per-pkg links at the end; avoid deleting all logdirs. - Stop trying to use /usr/local/bin/gawk - bulk: - -a: Speedup listed_ports after the first iteration - -n: No need to markfs prepkg - -C: When using -a this will now behave like the more optimal -c - startup: Fix some errors not being captured properly - -C: Delete packages found using xargs - -n: Optimize 'ports to build' output generation - Add some basic automated tests for FLAVORS dependency calculations - CHECK_CHANGED_DEPS: Some optimizations - Detect packages stuck in queue at startup - Validate ports have proper CATEGORIES set during build. - Warn on bad PKGNAME dependencies and make fatal with BAD_PKGNAME_DEPS_ARE_FATAL=yes - Add pkgrepo:sign hook right before calling pkg-repo. - Add a few more status / messages during startup - Align SIGINFO job status when there is no origin. - Show pkgname in a few more places for disambiguation. - Fix FORCE_COLORS/-A to actually work - Fix colors when using | timestamp. - Remove some leftover pkg_install support code for delete_pkg - poudriere: Allow FETCH_BIND_ADDRESS - poudriere: Fix populating git version in a worktree - Allow forcing mount hashing with FORCE_MOUNT_HASH - ports -u: Reduce redundancy in updating messages. - jail -cu: Show method rather than 'svn' or 'git' - Allow overriding git with GIT_CMD - zfs_getfs: Don't echo blank values from cache_call - Add support for file:/// URLs with git Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Thu Jun 22 17:10:32 2017 (r444119) +++ head/ports-mgmt/poudriere-devel/Makefile Thu Jun 22 17:12:02 2017 (r444120) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= poudriere -DISTVERSION= 3.1.99.20170601 -PORTREVISION= 1 +DISTVERSION= 3.1.99.20170621 +PORTREVISION= 0 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ @@ -18,7 +18,7 @@ CONFLICTS_INSTALL= poudriere-[0-9]* USE_GITHUB= yes GH_ACCOUNT= freebsd -GH_TAGNAME= 3.0-2145-gdc462a9d +GH_TAGNAME= 3.0-2420-g8e8894ba #DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${GH_TAGNAME} GNU_CONFIGURE= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Thu Jun 22 17:10:32 2017 (r444119) +++ head/ports-mgmt/poudriere-devel/distinfo Thu Jun 22 17:12:02 2017 (r444120) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496337650 -SHA256 (freebsd-poudriere-3.1.99.20170601-3.0-2145-gdc462a9d_GH0.tar.gz) = 294e3379661aa8b6879794e4e01c4eb8c962a2060bae412bea4c61ea4127f8c6 -SIZE (freebsd-poudriere-3.1.99.20170601-3.0-2145-gdc462a9d_GH0.tar.gz) = 2986209 +TIMESTAMP = 1498061246 +SHA256 (freebsd-poudriere-3.1.99.20170621-3.0-2420-g8e8894ba_GH0.tar.gz) = b5ce2324ca032c70dd5fb8d836cdb15c2c265c5925e14e424da4a17339b7a1c6 +SIZE (freebsd-poudriere-3.1.99.20170621-3.0-2420-g8e8894ba_GH0.tar.gz) = 4345492 From owner-svn-ports-head@freebsd.org Thu Jun 22 17:18:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B668AD91002; Thu, 22 Jun 2017 17:18:52 +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 863C282F6F; Thu, 22 Jun 2017 17:18:52 +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 v5MHIpkn032977; Thu, 22 Jun 2017 17:18:51 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MHIpNu032975; Thu, 22 Jun 2017 17:18:51 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201706221718.v5MHIpNu032975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Thu, 22 Jun 2017 17:18:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444121 - head/ports-mgmt/poudriere-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, 22 Jun 2017 17:18:52 -0000 Author: bdrewery Date: Thu Jun 22 17:18:51 2017 New Revision: 444121 URL: https://svnweb.freebsd.org/changeset/ports/444121 Log: Update to 3.0-2421-gad5f2f92 - Fix IGNORE support Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Thu Jun 22 17:12:02 2017 (r444120) +++ head/ports-mgmt/poudriere-devel/Makefile Thu Jun 22 17:18:51 2017 (r444121) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -DISTVERSION= 3.1.99.20170621 +DISTVERSION= 3.1.99.20170622 PORTREVISION= 0 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ @@ -18,7 +18,7 @@ CONFLICTS_INSTALL= poudriere-[0-9]* USE_GITHUB= yes GH_ACCOUNT= freebsd -GH_TAGNAME= 3.0-2420-g8e8894ba +GH_TAGNAME= 3.0-2421-gad5f2f92 #DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${GH_TAGNAME} GNU_CONFIGURE= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Thu Jun 22 17:12:02 2017 (r444120) +++ head/ports-mgmt/poudriere-devel/distinfo Thu Jun 22 17:18:51 2017 (r444121) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498061246 -SHA256 (freebsd-poudriere-3.1.99.20170621-3.0-2420-g8e8894ba_GH0.tar.gz) = b5ce2324ca032c70dd5fb8d836cdb15c2c265c5925e14e424da4a17339b7a1c6 -SIZE (freebsd-poudriere-3.1.99.20170621-3.0-2420-g8e8894ba_GH0.tar.gz) = 4345492 +TIMESTAMP = 1498151919 +SHA256 (freebsd-poudriere-3.1.99.20170622-3.0-2421-gad5f2f92_GH0.tar.gz) = 9f833f7b91c9016c9e367442993f4d8cec6f7fad759fe63cfebc55337ced50e7 +SIZE (freebsd-poudriere-3.1.99.20170622-3.0-2421-gad5f2f92_GH0.tar.gz) = 4345433 From owner-svn-ports-head@freebsd.org Thu Jun 22 17:24:44 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17493D9120B; Thu, 22 Jun 2017 17:24:44 +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 DBA2983438; Thu, 22 Jun 2017 17:24:43 +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 v5MHOhFK037027; Thu, 22 Jun 2017 17:24:43 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MHOhE7037026; Thu, 22 Jun 2017 17:24:43 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201706221724.v5MHOhE7037026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 22 Jun 2017 17:24:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444123 - head/devel/qt5-script X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 17:24:44 -0000 Author: dim (src committer) Date: Thu Jun 22 17:24:42 2017 New Revision: 444123 URL: https://svnweb.freebsd.org/changeset/ports/444123 Log: Bump PORTREVISION after r444079. Modified: head/devel/qt5-script/Makefile Modified: head/devel/qt5-script/Makefile ============================================================================== --- head/devel/qt5-script/Makefile Thu Jun 22 17:19:08 2017 (r444122) +++ head/devel/qt5-script/Makefile Thu Jun 22 17:24:42 2017 (r444123) @@ -2,7 +2,7 @@ PORTNAME= script DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- From owner-svn-ports-head@freebsd.org Thu Jun 22 17:25:54 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5270ED91259; Thu, 22 Jun 2017 17:25:54 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [IPv6:2001:470:7a58:1::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C02F83524; Thu, 22 Jun 2017 17:25:54 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from [IPv6:2001:470:7a58::94ad:a84a:d0ed:3add] (unknown [IPv6:2001:470:7a58:0:94ad:a84a:d0ed:3add]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 2A541289AF; Thu, 22 Jun 2017 19:25:43 +0200 (CEST) From: Dimitry Andric Message-Id: <40825A6B-863A-4EDE-8D17-1E1CC7679521@FreeBSD.org> Content-Type: multipart/signed; boundary="Apple-Mail=_42A7838D-FC56-464F-BE17-AF1989F2FEC4"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: svn commit: r444079 - head/devel/qt5-script/files Date: Thu, 22 Jun 2017 19:25:37 +0200 In-Reply-To: <8295f66c-a457-40b5-877d-7a9aa8a7bafa@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org To: Mathieu Arnold References: <201706212125.v5LLPP9u042863@repo.freebsd.org> <8295f66c-a457-40b5-877d-7a9aa8a7bafa@FreeBSD.org> X-Mailer: Apple Mail (2.3273) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 17:25:54 -0000 --Apple-Mail=_42A7838D-FC56-464F-BE17-AF1989F2FEC4 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 On 22 Jun 2017, at 11:10, Mathieu Arnold wrote: >=20 > Le 21/06/2017 =C3=A0 23:25, Dimitry Andric a =C3=A9crit : >> Author: dim (src committer) >> Date: Wed Jun 21 21:25:25 2017 >> New Revision: 444079 >> URL: https://svnweb.freebsd.org/changeset/ports/444079 >>=20 >> Log: >> Disable usage of c++1z (c++17) for qt5-script, as the third-party >> JavaScriptCore code is not fully compatible with it. This is a >> requirement for using libc++ 5.0.0, which is more strict. >=20 > Bump PORTREVISION ? It can't hurt, indeed. Done in r444123. -Dimitry --Apple-Mail=_42A7838D-FC56-464F-BE17-AF1989F2FEC4 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.30 iEYEARECAAYFAllL/ZkACgkQsF6jCi4glqMReACbBo2kFVSat4t/5OQUvnfiiFEQ NkAAnjd0uFejfeAM5pddR+18hUt0Qs4s =8uPy -----END PGP SIGNATURE----- --Apple-Mail=_42A7838D-FC56-464F-BE17-AF1989F2FEC4-- From owner-svn-ports-head@freebsd.org Thu Jun 22 17:39:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C61A6D914EC; Thu, 22 Jun 2017 17:39:04 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F8A883A72; Thu, 22 Jun 2017 17:39:04 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MHd3gV041538; Thu, 22 Jun 2017 17:39:03 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MHd3jv041534; Thu, 22 Jun 2017 17:39:03 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201706221739.v5MHd3jv041534@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Thu, 22 Jun 2017 17:39:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444125 - in head/mail/cyrus-imapd30: . 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, 22 Jun 2017 17:39:04 -0000 Author: ume Date: Thu Jun 22 17:39:03 2017 New Revision: 444125 URL: https://svnweb.freebsd.org/changeset/ports/444125 Log: Update to 3.0.2. Modified: head/mail/cyrus-imapd30/Makefile head/mail/cyrus-imapd30/distinfo head/mail/cyrus-imapd30/files/patch-imap__sync_support.c head/mail/cyrus-imapd30/pkg-plist Modified: head/mail/cyrus-imapd30/Makefile ============================================================================== --- head/mail/cyrus-imapd30/Makefile Thu Jun 22 17:26:32 2017 (r444124) +++ head/mail/cyrus-imapd30/Makefile Thu Jun 22 17:39:03 2017 (r444125) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= cyrus-imapd -PORTVERSION= 3.0.1 -PORTREVISION= 1 +PORTVERSION= 3.0.2 +#PORTREVISION= 0 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-imapd/ \ http://cyrusimap.org/releases/ Modified: head/mail/cyrus-imapd30/distinfo ============================================================================== --- head/mail/cyrus-imapd30/distinfo Thu Jun 22 17:26:32 2017 (r444124) +++ head/mail/cyrus-imapd30/distinfo Thu Jun 22 17:39:03 2017 (r444125) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492661313 -SHA256 (cyrus-imapd-3.0.1.tar.gz) = 24a9886aa6bbe001484a54b29309ff99415c0f355b98325ebb29ad61fff5e257 -SIZE (cyrus-imapd-3.0.1.tar.gz) = 10515460 +TIMESTAMP = 1498150554 +SHA256 (cyrus-imapd-3.0.2.tar.gz) = 5612f3cfa0504eb50bc3e49a77bf04a31c1aff3096fa1bbddb26cd7dbb69d94d +SIZE (cyrus-imapd-3.0.2.tar.gz) = 10706654 Modified: head/mail/cyrus-imapd30/files/patch-imap__sync_support.c ============================================================================== --- head/mail/cyrus-imapd30/files/patch-imap__sync_support.c Thu Jun 22 17:26:32 2017 (r444124) +++ head/mail/cyrus-imapd30/files/patch-imap__sync_support.c Thu Jun 22 17:39:03 2017 (r444125) @@ -1,16 +1,6 @@ ---- imap/sync_support.c.orig 2017-04-20 01:56:00 UTC +--- imap/sync_support.c.orig 2017-06-22 03:05:45 UTC +++ imap/sync_support.c -@@ -60,7 +60,9 @@ - #include - - #include "assert.h" -+#ifdef USE_CALALARMD - #include "caldav_alarm.h" -+#endif - #include "global.h" - #include "imap_proxy.h" - #include "mboxlist.h" -@@ -3479,7 +3481,7 @@ int sync_apply_message(struct dlist *kin +@@ -3491,7 +3491,7 @@ int sync_apply_message(struct dlist *kin const char *fname; /* XXX - complain more? */ @@ -19,7 +9,7 @@ continue; part_list = sync_reserve_partlist(reserve_list, part); -@@ -4534,7 +4536,7 @@ static int fetch_file(struct mailbox *ma +@@ -4546,7 +4546,7 @@ static int fetch_file(struct mailbox *ma return r; } Modified: head/mail/cyrus-imapd30/pkg-plist ============================================================================== --- head/mail/cyrus-imapd30/pkg-plist Thu Jun 22 17:26:32 2017 (r444124) +++ head/mail/cyrus-imapd30/pkg-plist Thu Jun 22 17:39:03 2017 (r444125) @@ -139,6 +139,7 @@ lib/libcyrus_min.so.0.0.0 lib/libcyrus_sieve.so lib/libcyrus_sieve.so.0 lib/libcyrus_sieve.so.0.0.0 +%%SITE_PERL%%/Cyrus/Annotator/AnnotateInlinedCIDs.pm %%SITE_PERL%%/Cyrus/Annotator/Daemon.pm %%SITE_PERL%%/Cyrus/Annotator/Message.pm %%SITE_ARCH%%/Cyrus/IMAP.pm From owner-svn-ports-head@freebsd.org Thu Jun 22 18:20:09 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89974D91FD9; Thu, 22 Jun 2017 18:20:09 +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 5733D84EF9; Thu, 22 Jun 2017 18:20:09 +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 v5MIK8qX057783; Thu, 22 Jun 2017 18:20:08 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MIK836057782; Thu, 22 Jun 2017 18:20:08 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201706221820.v5MIK836057782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 22 Jun 2017 18:20:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444126 - head/deskutils/basket X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 18:20:09 -0000 Author: tcberner Date: Thu Jun 22 18:20:08 2017 New Revision: 444126 URL: https://svnweb.freebsd.org/changeset/ports/444126 Log: Don't depend unnecessarily on kdepim4. The dependency needed is kdelibs. * kdepim is only needed for the kparts, which are not built anyways. Modified: head/deskutils/basket/Makefile Modified: head/deskutils/basket/Makefile ============================================================================== --- head/deskutils/basket/Makefile Thu Jun 22 17:39:03 2017 (r444125) +++ head/deskutils/basket/Makefile Thu Jun 22 18:20:08 2017 (r444126) @@ -3,7 +3,7 @@ PORTNAME= basket PORTVERSION= 1.81 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= deskutils kde MASTER_SITES= http://basket.kde.org/downloads/ @@ -16,7 +16,7 @@ LIB_DEPENDS= libgpgme.so:security/gpgme USES= cmake gettext-tools kde:4 tar:bzip2 USE_XORG= xft xpm -USE_KDE= automoc4 pimlibs qimageblitz +USE_KDE= automoc4 kdelibs qimageblitz USE_QT4= moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes From owner-svn-ports-head@freebsd.org Thu Jun 22 20:54:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66857D94417; Thu, 22 Jun 2017 20:54:47 +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 4265464EAA; Thu, 22 Jun 2017 20:54:47 +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 v5MKskLX022306; Thu, 22 Jun 2017 20:54:46 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MKskPG022303; Thu, 22 Jun 2017 20:54:46 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706222054.v5MKskPG022303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 22 Jun 2017 20:54:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444128 - head/lang/elixir X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 20:54:47 -0000 Author: olgeni Date: Thu Jun 22 20:54:45 2017 New Revision: 444128 URL: https://svnweb.freebsd.org/changeset/ports/444128 Log: Update lang/elixir to version 1.4.5. Modified: head/lang/elixir/Makefile head/lang/elixir/distinfo head/lang/elixir/pkg-plist Modified: head/lang/elixir/Makefile ============================================================================== --- head/lang/elixir/Makefile Thu Jun 22 18:53:30 2017 (r444127) +++ head/lang/elixir/Makefile Thu Jun 22 20:54:45 2017 (r444128) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= elixir -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.5 DISTVERSIONPREFIX= v CATEGORIES= lang MASTER_SITES+= https://github.com/elixir-lang/elixir/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/:doc Modified: head/lang/elixir/distinfo ============================================================================== --- head/lang/elixir/distinfo Thu Jun 22 18:53:30 2017 (r444127) +++ head/lang/elixir/distinfo Thu Jun 22 20:54:45 2017 (r444128) @@ -1,5 +1,5 @@ -TIMESTAMP = 1494861567 -SHA256 (elixir/1.4.4/Docs.zip) = b0e328eaba2e31d5e92987b2b28f98e9e486440925983040e512ab74d9d302c3 -SIZE (elixir/1.4.4/Docs.zip) = 2604590 -SHA256 (elixir/1.4.4/elixir-lang-elixir-v1.4.4_GH0.tar.gz) = 2d9d5faee079949f780c8f6a1ccba015d64ecf859ed87384ae4239d69be60142 -SIZE (elixir/1.4.4/elixir-lang-elixir-v1.4.4_GH0.tar.gz) = 1828694 +TIMESTAMP = 1498156308 +SHA256 (elixir/1.4.5/Docs.zip) = 3f31d22ab3457c45606569eaab2cf9364752f98928d83d174b874d7a8be174ad +SIZE (elixir/1.4.5/Docs.zip) = 2621694 +SHA256 (elixir/1.4.5/elixir-lang-elixir-v1.4.5_GH0.tar.gz) = bef1a0ea7a36539eed4b104ec26a82e46940959345ed66509ec6cc3d987bada0 +SIZE (elixir/1.4.5/elixir-lang-elixir-v1.4.5_GH0.tar.gz) = 1829098 Modified: head/lang/elixir/pkg-plist ============================================================================== --- head/lang/elixir/pkg-plist Thu Jun 22 18:53:30 2017 (r444127) +++ head/lang/elixir/pkg-plist Thu Jun 22 20:54:45 2017 (r444128) @@ -595,10 +595,10 @@ man/man1/mix.1.gz %%PORTDOCS%%%%DOCSDIR%%/eex/EEx.html %%PORTDOCS%%%%DOCSDIR%%/eex/api-reference.html %%PORTDOCS%%%%DOCSDIR%%/eex/assets/logo.png -%%PORTDOCS%%%%DOCSDIR%%/eex/dist/app-048fd787ee.js -%%PORTDOCS%%%%DOCSDIR%%/eex/dist/app-048fd787ee.js.map -%%PORTDOCS%%%%DOCSDIR%%/eex/dist/app-af302bfcc4.css -%%PORTDOCS%%%%DOCSDIR%%/eex/dist/sidebar_items-5acbbd180e.js +%%PORTDOCS%%%%DOCSDIR%%/eex/dist/app-126b5f0e90.js +%%PORTDOCS%%%%DOCSDIR%%/eex/dist/app-126b5f0e90.js.map +%%PORTDOCS%%%%DOCSDIR%%/eex/dist/app-4ecae1abb8.css +%%PORTDOCS%%%%DOCSDIR%%/eex/dist/sidebar_items-c0242107f8.js %%PORTDOCS%%%%DOCSDIR%%/eex/fonts/icomoon.eot %%PORTDOCS%%%%DOCSDIR%%/eex/fonts/icomoon.svg %%PORTDOCS%%%%DOCSDIR%%/eex/fonts/icomoon.ttf @@ -712,10 +712,10 @@ man/man1/mix.1.gz %%PORTDOCS%%%%DOCSDIR%%/elixir/api-reference.html %%PORTDOCS%%%%DOCSDIR%%/elixir/assets/logo.png %%PORTDOCS%%%%DOCSDIR%%/elixir/behaviours.html -%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/app-048fd787ee.js -%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/app-048fd787ee.js.map -%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/app-af302bfcc4.css -%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/sidebar_items-74d75774da.js +%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/app-126b5f0e90.js +%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/app-126b5f0e90.js.map +%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/app-4ecae1abb8.css +%%PORTDOCS%%%%DOCSDIR%%/elixir/dist/sidebar_items-0491fd301b.js %%PORTDOCS%%%%DOCSDIR%%/elixir/fonts/icomoon.eot %%PORTDOCS%%%%DOCSDIR%%/elixir/fonts/icomoon.svg %%PORTDOCS%%%%DOCSDIR%%/elixir/fonts/icomoon.ttf @@ -746,10 +746,10 @@ man/man1/mix.1.gz %%PORTDOCS%%%%DOCSDIR%%/ex_unit/ExUnit.html %%PORTDOCS%%%%DOCSDIR%%/ex_unit/api-reference.html %%PORTDOCS%%%%DOCSDIR%%/ex_unit/assets/logo.png -%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/app-048fd787ee.js -%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/app-048fd787ee.js.map -%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/app-af302bfcc4.css -%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/sidebar_items-82b90798d0.js +%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/app-126b5f0e90.js +%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/app-126b5f0e90.js.map +%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/app-4ecae1abb8.css +%%PORTDOCS%%%%DOCSDIR%%/ex_unit/dist/sidebar_items-9e5d1ee40f.js %%PORTDOCS%%%%DOCSDIR%%/ex_unit/fonts/icomoon.eot %%PORTDOCS%%%%DOCSDIR%%/ex_unit/fonts/icomoon.svg %%PORTDOCS%%%%DOCSDIR%%/ex_unit/fonts/icomoon.ttf @@ -761,10 +761,10 @@ man/man1/mix.1.gz %%PORTDOCS%%%%DOCSDIR%%/iex/IEx.html %%PORTDOCS%%%%DOCSDIR%%/iex/api-reference.html %%PORTDOCS%%%%DOCSDIR%%/iex/assets/logo.png -%%PORTDOCS%%%%DOCSDIR%%/iex/dist/app-048fd787ee.js -%%PORTDOCS%%%%DOCSDIR%%/iex/dist/app-048fd787ee.js.map -%%PORTDOCS%%%%DOCSDIR%%/iex/dist/app-af302bfcc4.css -%%PORTDOCS%%%%DOCSDIR%%/iex/dist/sidebar_items-761da43558.js +%%PORTDOCS%%%%DOCSDIR%%/iex/dist/app-126b5f0e90.js +%%PORTDOCS%%%%DOCSDIR%%/iex/dist/app-126b5f0e90.js.map +%%PORTDOCS%%%%DOCSDIR%%/iex/dist/app-4ecae1abb8.css +%%PORTDOCS%%%%DOCSDIR%%/iex/dist/sidebar_items-9c321a3809.js %%PORTDOCS%%%%DOCSDIR%%/iex/fonts/icomoon.eot %%PORTDOCS%%%%DOCSDIR%%/iex/fonts/icomoon.svg %%PORTDOCS%%%%DOCSDIR%%/iex/fonts/icomoon.ttf @@ -776,10 +776,10 @@ man/man1/mix.1.gz %%PORTDOCS%%%%DOCSDIR%%/logger/Logger.html %%PORTDOCS%%%%DOCSDIR%%/logger/api-reference.html %%PORTDOCS%%%%DOCSDIR%%/logger/assets/logo.png -%%PORTDOCS%%%%DOCSDIR%%/logger/dist/app-048fd787ee.js -%%PORTDOCS%%%%DOCSDIR%%/logger/dist/app-048fd787ee.js.map -%%PORTDOCS%%%%DOCSDIR%%/logger/dist/app-af302bfcc4.css -%%PORTDOCS%%%%DOCSDIR%%/logger/dist/sidebar_items-f03e4f344d.js +%%PORTDOCS%%%%DOCSDIR%%/logger/dist/app-126b5f0e90.js +%%PORTDOCS%%%%DOCSDIR%%/logger/dist/app-126b5f0e90.js.map +%%PORTDOCS%%%%DOCSDIR%%/logger/dist/app-4ecae1abb8.css +%%PORTDOCS%%%%DOCSDIR%%/logger/dist/sidebar_items-f493c1f06d.js %%PORTDOCS%%%%DOCSDIR%%/logger/fonts/icomoon.eot %%PORTDOCS%%%%DOCSDIR%%/logger/fonts/icomoon.svg %%PORTDOCS%%%%DOCSDIR%%/logger/fonts/icomoon.ttf @@ -848,10 +848,10 @@ man/man1/mix.1.gz %%PORTDOCS%%%%DOCSDIR%%/mix/Mix.html %%PORTDOCS%%%%DOCSDIR%%/mix/api-reference.html %%PORTDOCS%%%%DOCSDIR%%/mix/assets/logo.png -%%PORTDOCS%%%%DOCSDIR%%/mix/dist/app-048fd787ee.js -%%PORTDOCS%%%%DOCSDIR%%/mix/dist/app-048fd787ee.js.map -%%PORTDOCS%%%%DOCSDIR%%/mix/dist/app-af302bfcc4.css -%%PORTDOCS%%%%DOCSDIR%%/mix/dist/sidebar_items-403ea6142d.js +%%PORTDOCS%%%%DOCSDIR%%/mix/dist/app-126b5f0e90.js +%%PORTDOCS%%%%DOCSDIR%%/mix/dist/app-126b5f0e90.js.map +%%PORTDOCS%%%%DOCSDIR%%/mix/dist/app-4ecae1abb8.css +%%PORTDOCS%%%%DOCSDIR%%/mix/dist/sidebar_items-0bacaadc4b.js %%PORTDOCS%%%%DOCSDIR%%/mix/fonts/icomoon.eot %%PORTDOCS%%%%DOCSDIR%%/mix/fonts/icomoon.svg %%PORTDOCS%%%%DOCSDIR%%/mix/fonts/icomoon.ttf From owner-svn-ports-head@freebsd.org Thu Jun 22 21:00:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CFB4D9447B; Thu, 22 Jun 2017 21:00:17 +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 5A0A064FF2; Thu, 22 Jun 2017 21:00:17 +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 v5ML0GTJ022649; Thu, 22 Jun 2017 21:00:16 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5ML0GBt022648; Thu, 22 Jun 2017 21:00:16 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706222100.v5ML0GBt022648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 22 Jun 2017 21:00:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444129 - head/graphics/gpu-firmware-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 21:00:17 -0000 Author: linimon Date: Thu Jun 22 21:00:16 2017 New Revision: 444129 URL: https://svnweb.freebsd.org/changeset/ports/444129 Log: Give this the complete text of why it's not distributable. This makes it a lot easier to understand if you are looking at e.g. poudriere build output. Modified: head/graphics/gpu-firmware-kmod/Makefile Modified: head/graphics/gpu-firmware-kmod/Makefile ============================================================================== --- head/graphics/gpu-firmware-kmod/Makefile Thu Jun 22 20:54:45 2017 (r444128) +++ head/graphics/gpu-firmware-kmod/Makefile Thu Jun 22 21:00:16 2017 (r444129) @@ -12,7 +12,7 @@ COMMENT= Firmware modules for the linuxkpi-based KMS c ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= the new KMS components are only supported on amd64 -NO_PACKAGE= yes +NO_PACKAGE= Distribution in binary form without license file not allowed USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop From owner-svn-ports-head@freebsd.org Thu Jun 22 21:04:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAC42D9479A; Thu, 22 Jun 2017 21:04:10 +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 7911E657DF; Thu, 22 Jun 2017 21:04:10 +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 v5ML49Jk026783; Thu, 22 Jun 2017 21:04:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5ML497H026782; Thu, 22 Jun 2017 21:04:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706222104.v5ML497H026782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 21:04:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444130 - head/emulators/rpcs3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 21:04:10 -0000 Author: jbeich Date: Thu Jun 22 21:04:09 2017 New Revision: 444130 URL: https://svnweb.freebsd.org/changeset/ports/444130 Log: emulators/rpcs3: update to 0.0.2.334 WWW: https://github.com/RPCS3/rpcs3/compare/9cc52c75...72edf26f Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Thu Jun 22 21:00:16 2017 (r444129) +++ head/emulators/rpcs3/Makefile Thu Jun 22 21:04:09 2017 (r444130) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.2-313 -DISTVERSIONSUFFIX= -g3332c17a # tracking #2813 +DISTVERSION= 0.0.2-334 +DISTVERSIONSUFFIX= -g72edf26f CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Thu Jun 22 21:00:16 2017 (r444129) +++ head/emulators/rpcs3/distinfo Thu Jun 22 21:04:09 2017 (r444130) @@ -1,6 +1,6 @@ -TIMESTAMP = 1497970210 -SHA256 (RPCS3-rpcs3-v0.0.2-313-g3332c17a_GH0.tar.gz) = 59d5346aa8ee79bcc83f4841c64506509967022869e9c4826f038c44e7cf8840 -SIZE (RPCS3-rpcs3-v0.0.2-313-g3332c17a_GH0.tar.gz) = 11246931 +TIMESTAMP = 1498163775 +SHA256 (RPCS3-rpcs3-v0.0.2-334-g72edf26f_GH0.tar.gz) = a70d70f90d3f3464250068e91fc6dff853cf2eacc6d7e997ee985183902ed241 +SIZE (RPCS3-rpcs3-v0.0.2-334-g72edf26f_GH0.tar.gz) = 11252916 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-head@freebsd.org Thu Jun 22 21:53:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 106ECD95191; Thu, 22 Jun 2017 21:53:08 +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 D9A1366C2C; Thu, 22 Jun 2017 21:53:07 +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 v5MLr6Ti046935; Thu, 22 Jun 2017 21:53:06 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MLr6ol046931; Thu, 22 Jun 2017 21:53:06 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706222153.v5MLr6ol046931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 21:53:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444131 - in head/math: . octave-forge-bsltl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 21:53:08 -0000 Author: stephen Date: Thu Jun 22 21:53:06 2017 New Revision: 444131 URL: https://svnweb.freebsd.org/changeset/ports/444131 Log: - New port math/octave-forge-bsltl. The octave-forge package is the result of The GNU Octave Repositry project, which is intended to be a central location for custom scripts, functions and extensions for GNU Octave. contains the source for all the functions plus build and install scripts. This is bsltl. The BSLTL package is a free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique. Added: head/math/octave-forge-bsltl/ head/math/octave-forge-bsltl/Makefile (contents, props changed) head/math/octave-forge-bsltl/distinfo (contents, props changed) head/math/octave-forge-bsltl/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jun 22 21:04:09 2017 (r444130) +++ head/math/Makefile Thu Jun 22 21:53:06 2017 (r444131) @@ -317,6 +317,7 @@ SUBDIR += octave-forge-base SUBDIR += octave-forge-bim SUBDIR += octave-forge-bioinfo + SUBDIR += octave-forge-bsltl SUBDIR += octave-forge-cgi SUBDIR += octave-forge-civil-engineering SUBDIR += octave-forge-communications Added: head/math/octave-forge-bsltl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-bsltl/Makefile Thu Jun 22 21:53:06 2017 (r444131) @@ -0,0 +1,29 @@ +# Created by: Stephen Montgomery-Smith +# $FreeBSD$ + +PORTNAME= octave-forge-bsltl +PORTVERSION= 1.1.1 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING + +# OCTSRC is the name of the directory of the package. +# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. +OCTSRC= ${DISTNAME} + +WRKSRC= ${WRKDIR}/${OCTSRC}/src + +.include "${.CURDIR}/../../Mk/bsd.octave.mk" + +do-build: + ${DO_NADA} + +post-build: + ${RM} ${WRKSRC}/Makefile ${WRKSRC}/configure + cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} + +.include Added: head/math/octave-forge-bsltl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-bsltl/distinfo Thu Jun 22 21:53:06 2017 (r444131) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498167823 +SHA256 (octave-forge/bsltl-1.1.1.tar.gz) = 8eedcfa9bcc299b185476b61886fa691bbe3fd72c3a3000a972806ce9cd5a912 +SIZE (octave-forge/bsltl-1.1.1.tar.gz) = 58460 Added: head/math/octave-forge-bsltl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-bsltl/pkg-descr Thu Jun 22 21:53:06 2017 (r444131) @@ -0,0 +1,11 @@ +The octave-forge package is the result of The GNU Octave Repositry project, +which is intended to be a central location for custom scripts, functions and +extensions for GNU Octave. contains the source for all the functions plus +build and install scripts. + +This is bsltl. + + The BSLTL package is a free collection of OCTAVE/MATLAB routines for working + with the biospeckle laser technique. + +WWW: http://octave.sourceforge.net/ From owner-svn-ports-head@freebsd.org Thu Jun 22 21:57:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32CBCD95208; Thu, 22 Jun 2017 21:57:45 +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 005D966D40; Thu, 22 Jun 2017 21:57:44 +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 v5MLviNF047202; Thu, 22 Jun 2017 21:57:44 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MLvibt047201; Thu, 22 Jun 2017 21:57:44 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201706222157.v5MLvibt047201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Thu, 22 Jun 2017 21:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444132 - head/math/octave-forge X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 21:57:45 -0000 Author: stephen Date: Thu Jun 22 21:57:43 2017 New Revision: 444132 URL: https://svnweb.freebsd.org/changeset/ports/444132 Log: - Add optional run depends math/octave-forge-bsltl. - Update to 20170622. Modified: head/math/octave-forge/Makefile Modified: head/math/octave-forge/Makefile ============================================================================== --- head/math/octave-forge/Makefile Thu Jun 22 21:53:06 2017 (r444131) +++ head/math/octave-forge/Makefile Thu Jun 22 21:57:43 2017 (r444132) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge -PORTVERSION= 20160227 -PORTREVISION= 2 +PORTVERSION= 20170622 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -11,7 +10,7 @@ COMMENT= Octave-forge metaport for math/octave USES= metaport -OPTIONS_DEFINE= ACTUARIAL AD AUDIO BENCHMARK BIM BIOINFO CGI \ +OPTIONS_DEFINE= ACTUARIAL AD AUDIO BENCHMARK BIM BIOINFO BSLTL CGI \ CIVIL_ENGINEERING COMMUNICATIONS CONTROL DATA_SMOOTHING \ DATABASE DATAFRAME DICOM DIVAND DOCTEST ECONOMETRICS ENGINE \ FENV FITS \ From owner-svn-ports-head@freebsd.org Thu Jun 22 22:45:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8BF2D95E32; Thu, 22 Jun 2017 22:45:04 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC8EE68405; Thu, 22 Jun 2017 22:45:04 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MMj3RQ067337; Thu, 22 Jun 2017 22:45:03 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MMj3TE067335; Thu, 22 Jun 2017 22:45:03 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706222245.v5MMj3TE067335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 22 Jun 2017 22:45:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444133 - head/misc/ansiweather X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 22:45:05 -0000 Author: dbaio Date: Thu Jun 22 22:45:03 2017 New Revision: 444133 URL: https://svnweb.freebsd.org/changeset/ports/444133 Log: misc/ansiweather: Update to 1.11 Unicode symbols display is now off by default Shorten default greeting text: "Current weather" => "Weather" Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11295 Modified: head/misc/ansiweather/Makefile head/misc/ansiweather/distinfo Modified: head/misc/ansiweather/Makefile ============================================================================== --- head/misc/ansiweather/Makefile Thu Jun 22 21:57:43 2017 (r444132) +++ head/misc/ansiweather/Makefile Thu Jun 22 22:45:03 2017 (r444133) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ansiweather -PORTVERSION= 1.10 +PORTVERSION= 1.11 CATEGORIES= misc MAINTAINER= dbaio@FreeBSD.org Modified: head/misc/ansiweather/distinfo ============================================================================== --- head/misc/ansiweather/distinfo Thu Jun 22 21:57:43 2017 (r444132) +++ head/misc/ansiweather/distinfo Thu Jun 22 22:45:03 2017 (r444133) @@ -1,3 +1,3 @@ -TIMESTAMP = 1487259523 -SHA256 (fcambus-ansiweather-1.10_GH0.tar.gz) = 9656ac85b67ff10c5959f31345bb08bfef0b038f6f2fbe09c78363b28f42cc21 -SIZE (fcambus-ansiweather-1.10_GH0.tar.gz) = 17469 +TIMESTAMP = 1498087846 +SHA256 (fcambus-ansiweather-1.11_GH0.tar.gz) = 14e3e55022925b7f54c7f15507c5e6612eb7826f3d1b19b7d3cc9cde68501463 +SIZE (fcambus-ansiweather-1.11_GH0.tar.gz) = 17520 From owner-svn-ports-head@freebsd.org Thu Jun 22 22:49:43 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CB2CD95F52; Thu, 22 Jun 2017 22:49:43 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CBA66857C; Thu, 22 Jun 2017 22:49:43 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MMngMu067643; Thu, 22 Jun 2017 22:49:42 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MMng5m067641; Thu, 22 Jun 2017 22:49:42 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706222249.v5MMng5m067641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 22 Jun 2017 22:49:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444134 - head/sysutils/dsbmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 22:49:43 -0000 Author: dbaio Date: Thu Jun 22 22:49:42 2017 New Revision: 444134 URL: https://svnweb.freebsd.org/changeset/ports/444134 Log: sysutils/dsbmd: Update to 0.4 Changes: https://freeshell.de/~mk/projects/dsbmd-relnotes.html PR: 220173 Submitted by: Marcel Kaiser (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11298 Modified: head/sysutils/dsbmd/Makefile head/sysutils/dsbmd/distinfo Modified: head/sysutils/dsbmd/Makefile ============================================================================== --- head/sysutils/dsbmd/Makefile Thu Jun 22 22:45:03 2017 (r444133) +++ head/sysutils/dsbmd/Makefile Thu Jun 22 22:49:42 2017 (r444134) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dsbmd -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= sysutils MASTER_SITES= http://freeshell.de/~mk/download/ Modified: head/sysutils/dsbmd/distinfo ============================================================================== --- head/sysutils/dsbmd/distinfo Thu Jun 22 22:45:03 2017 (r444133) +++ head/sysutils/dsbmd/distinfo Thu Jun 22 22:49:42 2017 (r444134) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495486028 -SHA256 (dsbmd-0.3.tgz) = 9adc7af1c666cf4c944e7c44023bd8d5570f534fef0f2f666fbad04575fa794e -SIZE (dsbmd-0.3.tgz) = 174592 +TIMESTAMP = 1498097045 +SHA256 (dsbmd-0.4.tgz) = 31aa6eaca283372ffd988f1ca89ac329469a3730c06b946719ac67b11a976844 +SIZE (dsbmd-0.4.tgz) = 187392 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:31:19 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C87FFD96CE2; Thu, 22 Jun 2017 23:31:19 +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 95A6D6AD47; Thu, 22 Jun 2017 23:31:19 +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 v5MNVI9U084852; Thu, 22 Jun 2017 23:31:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNVIjO084850; Thu, 22 Jun 2017 23:31:18 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706222331.v5MNVIjO084850@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 23:31:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444135 - in head/devel: android-tools-adb-devel/files android-tools-fastboot-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: Thu, 22 Jun 2017 23:31:19 -0000 Author: jbeich Date: Thu Jun 22 23:31:18 2017 New Revision: 444135 URL: https://svnweb.freebsd.org/changeset/ports/444135 Log: devel/android-tools-{adb,fastboot}-devel: NetBSD 8 also has KERN_PROC_PATHNAME https://github.com/NetBSD/src/commit/cbb31237a2ae Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp (contents, props changed) Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-adb-devel/files/patch-base_file.cpp Thu Jun 22 22:49:42 2017 (r444134) +++ head/devel/android-tools-adb-devel/files/patch-base_file.cpp Thu Jun 22 23:31:18 2017 (r444135) @@ -15,7 +15,7 @@ #if defined(__APPLE__) #include #endif -+#if defined(__DragonFly__) || defined(__FreeBSD__) ++#if defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) +#include +#endif #if defined(_WIN32) Modified: head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp Thu Jun 22 22:49:42 2017 (r444134) +++ head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp Thu Jun 22 23:31:18 2017 (r444135) @@ -15,7 +15,7 @@ #if defined(__APPLE__) #include #endif -+#if defined(__DragonFly__) || defined(__FreeBSD__) ++#if defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) +#include +#endif #if defined(_WIN32) From owner-svn-ports-head@freebsd.org Thu Jun 22 23:40:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5D3DD96EA2; Thu, 22 Jun 2017 23:40:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 958AB6E0B3; Thu, 22 Jun 2017 23:40:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNeZcq088261; Thu, 22 Jun 2017 23:40:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNeZqt088259; Thu, 22 Jun 2017 23:40:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222340.v5MNeZqt088259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:40:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444136 - head/devel/rubygem-sidekiq-cron X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:40:36 -0000 Author: sunpoet Date: Thu Jun 22 23:40:35 2017 New Revision: 444136 URL: https://svnweb.freebsd.org/changeset/ports/444136 Log: Update to 0.6.2 Changes: https://github.com/ondrejbartas/sidekiq-cron/blob/master/Changes.md https://github.com/ondrejbartas/sidekiq-cron/commits/master Modified: head/devel/rubygem-sidekiq-cron/Makefile head/devel/rubygem-sidekiq-cron/distinfo Modified: head/devel/rubygem-sidekiq-cron/Makefile ============================================================================== --- head/devel/rubygem-sidekiq-cron/Makefile Thu Jun 22 23:31:18 2017 (r444135) +++ head/devel/rubygem-sidekiq-cron/Makefile Thu Jun 22 23:40:35 2017 (r444136) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sidekiq-cron -PORTVERSION= 0.6.1 +PORTVERSION= 0.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-sidekiq-cron/distinfo ============================================================================== --- head/devel/rubygem-sidekiq-cron/distinfo Thu Jun 22 23:31:18 2017 (r444135) +++ head/devel/rubygem-sidekiq-cron/distinfo Thu Jun 22 23:40:35 2017 (r444136) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498059642 -SHA256 (rubygem/sidekiq-cron-0.6.1.gem) = 143a575878a3c4abc135e083c4960a4e49ed8bb7c072bc46a1b1ad1541140f96 -SIZE (rubygem/sidekiq-cron-0.6.1.gem) = 177664 +TIMESTAMP = 1498142128 +SHA256 (rubygem/sidekiq-cron-0.6.2.gem) = 61ddfc72aa57efdf1b96ed325b1d826b7db9b20733ed65ba56ff4d7392243811 +SIZE (rubygem/sidekiq-cron-0.6.2.gem) = 177664 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:40:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C367DD96EC0; Thu, 22 Jun 2017 23:40:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8DAFE6E0D1; Thu, 22 Jun 2017 23:40:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNeeOE089113; Thu, 22 Jun 2017 23:40:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNeekc089111; Thu, 22 Jun 2017 23:40:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222340.v5MNeekc089111@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:40:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444137 - head/archivers/p5-PerlIO-gzip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:40:41 -0000 Author: sunpoet Date: Thu Jun 22 23:40:40 2017 New Revision: 444137 URL: https://svnweb.freebsd.org/changeset/ports/444137 Log: Update to 0.20 - Strip shared library Changes: http://search.cpan.org/dist/PerlIO-gzip/Changes Modified: head/archivers/p5-PerlIO-gzip/Makefile head/archivers/p5-PerlIO-gzip/distinfo Modified: head/archivers/p5-PerlIO-gzip/Makefile ============================================================================== --- head/archivers/p5-PerlIO-gzip/Makefile Thu Jun 22 23:40:35 2017 (r444136) +++ head/archivers/p5-PerlIO-gzip/Makefile Thu Jun 22 23:40:40 2017 (r444137) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PerlIO-gzip -PORTVERSION= 0.19 +PORTVERSION= 0.20 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,5 +15,8 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= configure + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/PerlIO/gzip/gzip.so .include Modified: head/archivers/p5-PerlIO-gzip/distinfo ============================================================================== --- head/archivers/p5-PerlIO-gzip/distinfo Thu Jun 22 23:40:35 2017 (r444136) +++ head/archivers/p5-PerlIO-gzip/distinfo Thu Jun 22 23:40:40 2017 (r444137) @@ -1,2 +1,3 @@ -SHA256 (PerlIO-gzip-0.19.tar.gz) = d2e9351d58b8a93c86811e25a898ee651fc393a157413652bf42f9aada2eb284 -SIZE (PerlIO-gzip-0.19.tar.gz) = 18956 +TIMESTAMP = 1498142137 +SHA256 (PerlIO-gzip-0.20.tar.gz) = 4848679a3f201e3f3b0c5f6f9526e602af52923ffa471a2a3657db786bd3bdc5 +SIZE (PerlIO-gzip-0.20.tar.gz) = 19076 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:40:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F375D96EE8; Thu, 22 Jun 2017 23:40:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1FC876E153; Thu, 22 Jun 2017 23:40:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNekiL089250; Thu, 22 Jun 2017 23:40:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNejSm089247; Thu, 22 Jun 2017 23:40:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222340.v5MNejSm089247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:40:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444138 - head/devel/p5-Make X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:40:47 -0000 Author: sunpoet Date: Thu Jun 22 23:40:45 2017 New Revision: 444138 URL: https://svnweb.freebsd.org/changeset/ports/444138 Log: Update to 1.1.4 - Remove outdated post-patch: Changes: http://search.cpan.org/dist/Make/Changes Modified: head/devel/p5-Make/Makefile head/devel/p5-Make/distinfo head/devel/p5-Make/pkg-plist Modified: head/devel/p5-Make/Makefile ============================================================================== --- head/devel/p5-Make/Makefile Thu Jun 22 23:40:40 2017 (r444137) +++ head/devel/p5-Make/Makefile Thu Jun 22 23:40:45 2017 (r444138) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Make -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -19,10 +19,5 @@ TEST_DEPENDS= p5-Test-Compile>=1.2.1:devel/p5-Test-Com USES= perl5 USE_PERL5= configure NO_ARCH= yes -WRKSRC= ${WRKDIR}/Make - -post-patch: - @${REINPLACE_CMD} -e 's|pmake|perlmake|' ${WRKSRC}/Makefile.PL - @${CP} ${WRKSRC}/pmake ${WRKSRC}/perlmake .include Modified: head/devel/p5-Make/distinfo ============================================================================== --- head/devel/p5-Make/distinfo Thu Jun 22 23:40:40 2017 (r444137) +++ head/devel/p5-Make/distinfo Thu Jun 22 23:40:45 2017 (r444138) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485270668 -SHA256 (Make-1.1.3.tar.gz) = d2bbd23e29888980dde65b315f8d72e1f25b1a572bda3ab6f307df990a03935d -SIZE (Make-1.1.3.tar.gz) = 271769 +TIMESTAMP = 1498142151 +SHA256 (Make-1.1.4.tar.gz) = 780c480548cc6d4bb6f2e82e5f3ed2cc088379e986d1ce854fc573c4e6355433 +SIZE (Make-1.1.4.tar.gz) = 16355 Modified: head/devel/p5-Make/pkg-plist ============================================================================== --- head/devel/p5-Make/pkg-plist Thu Jun 22 23:40:40 2017 (r444137) +++ head/devel/p5-Make/pkg-plist Thu Jun 22 23:40:45 2017 (r444138) @@ -1,5 +1,5 @@ -bin/perlmake %%SITE_PERL%%/Make.pm -%%SITE_PERL%%/test_driver.pl -%%PERL5_MAN1%%/perlmake.1.gz +%%SITE_PERL%%/Make/Rule.pm +%%SITE_PERL%%/Make/Rule/Vars.pm +%%SITE_PERL%%/Make/Target.pm %%PERL5_MAN3%%/Make.3.gz From owner-svn-ports-head@freebsd.org Thu Jun 22 23:40:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B70FD96F0C; Thu, 22 Jun 2017 23:40:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25DE96E1CC; Thu, 22 Jun 2017 23:40:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNep65089373; Thu, 22 Jun 2017 23:40:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNepP5089371; Thu, 22 Jun 2017 23:40:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222340.v5MNepP5089371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:40:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444139 - head/devel/p5-Test-Simple X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:40:52 -0000 Author: sunpoet Date: Thu Jun 22 23:40:50 2017 New Revision: 444139 URL: https://svnweb.freebsd.org/changeset/ports/444139 Log: Update to 1.302086 Changes: http://search.cpan.org/dist/Test-Simple/Changes Modified: head/devel/p5-Test-Simple/Makefile head/devel/p5-Test-Simple/distinfo Modified: head/devel/p5-Test-Simple/Makefile ============================================================================== --- head/devel/p5-Test-Simple/Makefile Thu Jun 22 23:40:45 2017 (r444138) +++ head/devel/p5-Test-Simple/Makefile Thu Jun 22 23:40:50 2017 (r444139) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Simple -PORTVERSION= 1.302085 +PORTVERSION= 1.302086 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Simple/distinfo ============================================================================== --- head/devel/p5-Test-Simple/distinfo Thu Jun 22 23:40:45 2017 (r444138) +++ head/devel/p5-Test-Simple/distinfo Thu Jun 22 23:40:50 2017 (r444139) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493729487 -SHA256 (Test-Simple-1.302085.tar.gz) = 4fa8ffa0b797f0f22fb8745469f8a99c333f46897c171fb762434f3dea221fb2 -SIZE (Test-Simple-1.302085.tar.gz) = 256507 +TIMESTAMP = 1498142163 +SHA256 (Test-Simple-1.302086.tar.gz) = 21e4c93c52529a10ef970afcf2cdb5719bcfef5f71af09cad3675fcf021995b1 +SIZE (Test-Simple-1.302086.tar.gz) = 257046 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:40:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADC25D96F3E; Thu, 22 Jun 2017 23:40:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 794BA6E244; Thu, 22 Jun 2017 23:40:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNeuIk089494; Thu, 22 Jun 2017 23:40:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNeu0Q089492; Thu, 22 Jun 2017 23:40:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222340.v5MNeu0Q089492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:40:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444140 - head/devel/nuitka X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:40:57 -0000 Author: sunpoet Date: Thu Jun 22 23:40:56 2017 New Revision: 444140 URL: https://svnweb.freebsd.org/changeset/ports/444140 Log: Update to 0.5.26.2 Changes: https://github.com/kayhayen/Nuitka/blob/develop/Changelog.rst https://github.com/kayhayen/Nuitka/commits/develop Modified: head/devel/nuitka/Makefile head/devel/nuitka/distinfo Modified: head/devel/nuitka/Makefile ============================================================================== --- head/devel/nuitka/Makefile Thu Jun 22 23:40:50 2017 (r444139) +++ head/devel/nuitka/Makefile Thu Jun 22 23:40:56 2017 (r444140) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nuitka -PORTVERSION= 0.5.26.1 +PORTVERSION= 0.5.26.2 CATEGORIES= devel python MASTER_SITES= http://nuitka.net/releases/ DISTNAME= Nuitka-${PORTVERSION} Modified: head/devel/nuitka/distinfo ============================================================================== --- head/devel/nuitka/distinfo Thu Jun 22 23:40:50 2017 (r444139) +++ head/devel/nuitka/distinfo Thu Jun 22 23:40:56 2017 (r444140) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497760183 -SHA256 (Nuitka-0.5.26.1.tar.bz2) = a65fa0e7a0a8373bb8f150b43e8385aa8b6bb43a22e5c4339439828960602d1b -SIZE (Nuitka-0.5.26.1.tar.bz2) = 1226996 +TIMESTAMP = 1498142216 +SHA256 (Nuitka-0.5.26.2.tar.bz2) = 8477d3e2b87eebac63e52451f5ff2fce30de6250bda6d58274b8e40636bfe3f2 +SIZE (Nuitka-0.5.26.2.tar.bz2) = 1243720 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2412FD96F70; Thu, 22 Jun 2017 23:41:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6B0C6E2D1; Thu, 22 Jun 2017 23:41:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNf1AR089620; Thu, 22 Jun 2017 23:41:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNf1Uh089618; Thu, 22 Jun 2017 23:41:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNf1Uh089618@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444141 - head/devel/rubygem-aws-sdk-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: Thu, 22 Jun 2017 23:41:03 -0000 Author: sunpoet Date: Thu Jun 22 23:41:01 2017 New Revision: 444141 URL: https://svnweb.freebsd.org/changeset/ports/444141 Log: Update to 2.10.0 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Thu Jun 22 23:40:56 2017 (r444140) +++ head/devel/rubygem-aws-sdk-core/Makefile Thu Jun 22 23:41:01 2017 (r444141) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.9.44 +PORTVERSION= 2.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Thu Jun 22 23:40:56 2017 (r444140) +++ head/devel/rubygem-aws-sdk-core/distinfo Thu Jun 22 23:41:01 2017 (r444141) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498059660 -SHA256 (rubygem/aws-sdk-core-2.9.44.gem) = cf1b1fadf7e906cdc5d9458c75fd84f3812b247a297c36f59caf8c26af2264f2 -SIZE (rubygem/aws-sdk-core-2.9.44.gem) = 1032192 +TIMESTAMP = 1498142175 +SHA256 (rubygem/aws-sdk-core-2.10.0.gem) = d10b4e16c3dfa9cd63151a423c159870ec2bcd7d0e2e5f59900ef8a996fa84a3 +SIZE (rubygem/aws-sdk-core-2.10.0.gem) = 1032192 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BEA7D96FA5; Thu, 22 Jun 2017 23:41:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC96F6E361; Thu, 22 Jun 2017 23:41:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNf7Pp089743; Thu, 22 Jun 2017 23:41:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNf6bd089741; Thu, 22 Jun 2017 23:41:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNf6bd089741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444142 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:41:08 -0000 Author: sunpoet Date: Thu Jun 22 23:41:06 2017 New Revision: 444142 URL: https://svnweb.freebsd.org/changeset/ports/444142 Log: Update to 2.10.0 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Thu Jun 22 23:41:01 2017 (r444141) +++ head/devel/rubygem-aws-sdk-resources/Makefile Thu Jun 22 23:41:06 2017 (r444142) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.9.44 +PORTVERSION= 2.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Thu Jun 22 23:41:01 2017 (r444141) +++ head/devel/rubygem-aws-sdk-resources/distinfo Thu Jun 22 23:41:06 2017 (r444142) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498059665 -SHA256 (rubygem/aws-sdk-resources-2.9.44.gem) = 328a70c8540abbb256a3fa25bc73f302eebe681f1c02efda0a844732ae42c888 -SIZE (rubygem/aws-sdk-resources-2.9.44.gem) = 48640 +TIMESTAMP = 1498142181 +SHA256 (rubygem/aws-sdk-resources-2.10.0.gem) = 38943c2285daa359dedd0e5267e7a4677cc478a5b3ad06b72cb6d8c4bd45267c +SIZE (rubygem/aws-sdk-resources-2.10.0.gem) = 48640 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A70FD96FD2; Thu, 22 Jun 2017 23:41:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 192E96E3EA; Thu, 22 Jun 2017 23:41:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNfC2b089866; Thu, 22 Jun 2017 23:41:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNfCRD089864; Thu, 22 Jun 2017 23:41:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNfCRD089864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444143 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:41:13 -0000 Author: sunpoet Date: Thu Jun 22 23:41:11 2017 New Revision: 444143 URL: https://svnweb.freebsd.org/changeset/ports/444143 Log: Update to 2.10.0 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Thu Jun 22 23:41:06 2017 (r444142) +++ head/devel/rubygem-aws-sdk/Makefile Thu Jun 22 23:41:11 2017 (r444143) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -PORTVERSION= 2.9.44 +PORTVERSION= 2.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Thu Jun 22 23:41:06 2017 (r444142) +++ head/devel/rubygem-aws-sdk/distinfo Thu Jun 22 23:41:11 2017 (r444143) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498059670 -SHA256 (rubygem/aws-sdk-2.9.44.gem) = ef7b76bf4f2682dcc2fe429f0fa4cc6c818adbf278d3e52e9e9dd636cd740532 -SIZE (rubygem/aws-sdk-2.9.44.gem) = 4608 +TIMESTAMP = 1498142187 +SHA256 (rubygem/aws-sdk-2.10.0.gem) = f1a6470e42edfad6d6507c93115f0ce18605f818a0cea2f5ec8ce2b59a4c5848 +SIZE (rubygem/aws-sdk-2.10.0.gem) = 4608 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 923B0D97000; Thu, 22 Jun 2017 23:41:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C76D6E471; Thu, 22 Jun 2017 23:41:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNfHNv089972; Thu, 22 Jun 2017 23:41:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNfH6l089971; Thu, 22 Jun 2017 23:41:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNfH6l089971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444144 - head/textproc/rubygem-colored X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:41:18 -0000 Author: sunpoet Date: Thu Jun 22 23:41:17 2017 New Revision: 444144 URL: https://svnweb.freebsd.org/changeset/ports/444144 Log: Add LICENSE_FILE Modified: head/textproc/rubygem-colored/Makefile Modified: head/textproc/rubygem-colored/Makefile ============================================================================== --- head/textproc/rubygem-colored/Makefile Thu Jun 22 23:41:11 2017 (r444143) +++ head/textproc/rubygem-colored/Makefile Thu Jun 22 23:41:17 2017 (r444144) @@ -10,9 +10,9 @@ MAINTAINER= ruby@FreeBSD.org COMMENT= Colorize text on the console LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes - USE_RUBY= yes USES= gem From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DF70D9702A; Thu, 22 Jun 2017 23:41:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17C366E4E3; Thu, 22 Jun 2017 23:41:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNfMnF090095; Thu, 22 Jun 2017 23:41:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNfMli090093; Thu, 22 Jun 2017 23:41:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNfMli090093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444145 - head/textproc/rubygem-jekyll-assets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:41:23 -0000 Author: sunpoet Date: Thu Jun 22 23:41:21 2017 New Revision: 444145 URL: https://svnweb.freebsd.org/changeset/ports/444145 Log: Update to 2.3.2 Changes: https://github.com/jekyll/jekyll-assets/commits/master Modified: head/textproc/rubygem-jekyll-assets/Makefile head/textproc/rubygem-jekyll-assets/distinfo Modified: head/textproc/rubygem-jekyll-assets/Makefile ============================================================================== --- head/textproc/rubygem-jekyll-assets/Makefile Thu Jun 22 23:41:17 2017 (r444144) +++ head/textproc/rubygem-jekyll-assets/Makefile Thu Jun 22 23:41:21 2017 (r444145) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll-assets -PORTVERSION= 2.3.0 +PORTVERSION= 2.3.2 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -17,7 +17,7 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0:devel/rubyge rubygem-fastimage>=2.0:graphics/rubygem-fastimage \ rubygem-jekyll>=3.1:www/rubygem-jekyll \ rubygem-pathutil>=0.8:devel/rubygem-pathutil \ - rubygem-rack>=1:www/rubygem-rack \ + rubygem-rack16>=1.6:www/rubygem-rack16 \ rubygem-sprockets3>=3.3:devel/rubygem-sprockets3 NO_ARCH= yes Modified: head/textproc/rubygem-jekyll-assets/distinfo ============================================================================== --- head/textproc/rubygem-jekyll-assets/distinfo Thu Jun 22 23:41:17 2017 (r444144) +++ head/textproc/rubygem-jekyll-assets/distinfo Thu Jun 22 23:41:21 2017 (r444145) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498059694 -SHA256 (rubygem/jekyll-assets-2.3.0.gem) = 46c71e878f027b40db3080cb15a38bed9313cb1dc1f005c7b48b82c2462e26f0 -SIZE (rubygem/jekyll-assets-2.3.0.gem) = 26112 +TIMESTAMP = 1498142196 +SHA256 (rubygem/jekyll-assets-2.3.2.gem) = a86c6f3764343dc8c2d2a791373d290fbbc58083af2743542742a890db9c10e2 +SIZE (rubygem/jekyll-assets-2.3.2.gem) = 26112 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED532D97051; Thu, 22 Jun 2017 23:41:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD2E66E556; Thu, 22 Jun 2017 23:41:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNfQWv090216; Thu, 22 Jun 2017 23:41:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNfQZU090214; Thu, 22 Jun 2017 23:41:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNfQZU090214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444146 - head/textproc/rubygem-jekyll-gist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:41:28 -0000 Author: sunpoet Date: Thu Jun 22 23:41:26 2017 New Revision: 444146 URL: https://svnweb.freebsd.org/changeset/ports/444146 Log: Update to 1.4.1 Changes: https://github.com/jekyll/jekyll-gist/releases Modified: head/textproc/rubygem-jekyll-gist/Makefile head/textproc/rubygem-jekyll-gist/distinfo Modified: head/textproc/rubygem-jekyll-gist/Makefile ============================================================================== --- head/textproc/rubygem-jekyll-gist/Makefile Thu Jun 22 23:41:21 2017 (r444145) +++ head/textproc/rubygem-jekyll-gist/Makefile Thu Jun 22 23:41:26 2017 (r444146) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll-gist -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-jekyll-gist/distinfo ============================================================================== --- head/textproc/rubygem-jekyll-gist/distinfo Thu Jun 22 23:41:21 2017 (r444145) +++ head/textproc/rubygem-jekyll-gist/distinfo Thu Jun 22 23:41:26 2017 (r444146) @@ -1,2 +1,3 @@ -SHA256 (rubygem/jekyll-gist-1.4.0.gem) = 999e92a8984d975a37f4e2fce590587d6d8b5fe8a9c780ec64f4555c8f4f5cd6 -SIZE (rubygem/jekyll-gist-1.4.0.gem) = 11264 +TIMESTAMP = 1498142202 +SHA256 (rubygem/jekyll-gist-1.4.1.gem) = ec024a43670b8b8db2f01811502b03f21b8d89580c7c76ef86b54f68c45e4083 +SIZE (rubygem/jekyll-gist-1.4.1.gem) = 11776 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:41:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64DE7D97095; Thu, 22 Jun 2017 23:41:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 324BE6E5F4; Thu, 22 Jun 2017 23:41:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNfWDp090353; Thu, 22 Jun 2017 23:41:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNfWPe090350; Thu, 22 Jun 2017 23:41:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222341.v5MNfWPe090350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:41:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444147 - head/textproc/rubygem-version_sorter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:41:33 -0000 Author: sunpoet Date: Thu Jun 22 23:41:31 2017 New Revision: 444147 URL: https://svnweb.freebsd.org/changeset/ports/444147 Log: Update to 2.2.0 - Update WWW Changes: https://github.com/github/version_sorter/commits/master Modified: head/textproc/rubygem-version_sorter/Makefile head/textproc/rubygem-version_sorter/distinfo head/textproc/rubygem-version_sorter/pkg-descr Modified: head/textproc/rubygem-version_sorter/Makefile ============================================================================== --- head/textproc/rubygem-version_sorter/Makefile Thu Jun 22 23:41:26 2017 (r444146) +++ head/textproc/rubygem-version_sorter/Makefile Thu Jun 22 23:41:31 2017 (r444147) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= version_sorter -PORTVERSION= 2.1.0 +PORTVERSION= 2.2.0 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-version_sorter/distinfo ============================================================================== --- head/textproc/rubygem-version_sorter/distinfo Thu Jun 22 23:41:26 2017 (r444146) +++ head/textproc/rubygem-version_sorter/distinfo Thu Jun 22 23:41:31 2017 (r444147) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476972624 -SHA256 (rubygem/version_sorter-2.1.0.gem) = b971598582cb657c1403180c5bf97e97568b9378ee4e4b0218a2bf8bdc02b1ea -SIZE (rubygem/version_sorter-2.1.0.gem) = 6656 +TIMESTAMP = 1498142207 +SHA256 (rubygem/version_sorter-2.2.0.gem) = 5e142fc7ea2611d3563dd6bc5aa7d6396215a7a44fd08c1a826e23df0f5c08e0 +SIZE (rubygem/version_sorter-2.2.0.gem) = 6656 Modified: head/textproc/rubygem-version_sorter/pkg-descr ============================================================================== --- head/textproc/rubygem-version_sorter/pkg-descr Thu Jun 22 23:41:26 2017 (r444146) +++ head/textproc/rubygem-version_sorter/pkg-descr Thu Jun 22 23:41:31 2017 (r444147) @@ -1,3 +1,3 @@ Fast sorting of version strings -WWW: https://github.com/defunkt/version_sorter +WWW: https://github.com/github/version_sorter From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:06 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BE95D97106; Thu, 22 Jun 2017 23:42:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A7BE6E9FC; Thu, 22 Jun 2017 23:42:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNg5mX093262; Thu, 22 Jun 2017 23:42:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNg4ci093260; Thu, 22 Jun 2017 23:42:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNg4ci093260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444148 - in head/www/gitlab: . 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, 22 Jun 2017 23:42:06 -0000 Author: sunpoet Date: Thu Jun 22 23:42:04 2017 New Revision: 444148 URL: https://svnweb.freebsd.org/changeset/ports/444148 Log: Fix gemspec for rubygem-version_sorter 2.2.0 update - Bump PORTREVISION for package change Modified: head/www/gitlab/Makefile head/www/gitlab/files/patch-Gemfile Modified: head/www/gitlab/Makefile ============================================================================== --- head/www/gitlab/Makefile Thu Jun 22 23:41:31 2017 (r444147) +++ head/www/gitlab/Makefile Thu Jun 22 23:42:04 2017 (r444148) @@ -4,7 +4,7 @@ PORTNAME= gitlab PORTVERSION= 8.17.6 DISTVERSIONPREFIX= v -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= www devel MAINTAINER= tz@FreeBSD.org Modified: head/www/gitlab/files/patch-Gemfile ============================================================================== --- head/www/gitlab/files/patch-Gemfile Thu Jun 22 23:41:31 2017 (r444147) +++ head/www/gitlab/files/patch-Gemfile Thu Jun 22 23:42:04 2017 (r444148) @@ -134,7 +134,7 @@ # Run events after state machine commits gem 'after_commit_queue', '~> 1.3.0' -@@ -143,10 +138,10 @@ gem 'redis-namespace', '~> 1.5.2' +@@ -143,17 +138,17 @@ gem 'redis-namespace', '~> 1.5.2' gem 'sidekiq-limit_fetch', '~> 3.4' # HTTP requests @@ -147,6 +147,14 @@ # GitLab settings gem 'settingslogic', '~> 2.0.9' + + # Misc + +-gem 'version_sorter', '~> 2.1.0' ++gem 'version_sorter', '>= 2.1.0' + + # Cache + gem 'redis-rails', '~> 5.0.1' @@ -166,7 +161,7 @@ gem 'connection_pool', '~> 2.0' gem 'hipchat', '~> 1.5.0' From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4001AD9722F; Thu, 22 Jun 2017 23:42:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B64F6EAD4; Thu, 22 Jun 2017 23:42:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgEMw093371; Thu, 22 Jun 2017 23:42:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgEXO093370; Thu, 22 Jun 2017 23:42:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgEXO093370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444149 - head/databases/p5-Time-Piece-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: Thu, 22 Jun 2017 23:42:15 -0000 Author: sunpoet Date: Thu Jun 22 23:42:14 2017 New Revision: 444149 URL: https://svnweb.freebsd.org/changeset/ports/444149 Log: Remove Perl core modules - Add LICENSE - Add NO_ARCH - Bump PORTREVISION for dependency change Modified: head/databases/p5-Time-Piece-MySQL/Makefile Modified: head/databases/p5-Time-Piece-MySQL/Makefile ============================================================================== --- head/databases/p5-Time-Piece-MySQL/Makefile Thu Jun 22 23:42:04 2017 (r444148) +++ head/databases/p5-Time-Piece-MySQL/Makefile Thu Jun 22 23:42:14 2017 (r444149) @@ -3,7 +3,7 @@ PORTNAME= Time-Piece-MySQL PORTVERSION= 0.06 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,9 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Time::Piece::MySQL - Adds MySQL-specific methods to Time::Piece -BUILD_DEPENDS= p5-Time-Piece>=0:devel/p5-Time-Piece -RUN_DEPENDS:= ${BUILD_DEPENDS} +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70AE7D97250; Thu, 22 Jun 2017 23:42:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F0296EB4F; Thu, 22 Jun 2017 23:42:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgJlu093478; Thu, 22 Jun 2017 23:42:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgJbh093477; Thu, 22 Jun 2017 23:42:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgJbh093477@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444150 - head/devel/p5-Data-Page-Pageset X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:20 -0000 Author: sunpoet Date: Thu Jun 22 23:42:19 2017 New Revision: 444150 URL: https://svnweb.freebsd.org/changeset/ports/444150 Log: Remove Perl core modules - While I'm here, add NO_ARCH - Bump PORTREVISION for dependency change With hat: perl Modified: head/devel/p5-Data-Page-Pageset/Makefile Modified: head/devel/p5-Data-Page-Pageset/Makefile ============================================================================== --- head/devel/p5-Data-Page-Pageset/Makefile Thu Jun 22 23:42:14 2017 (r444149) +++ head/devel/p5-Data-Page-Pageset/Makefile Thu Jun 22 23:42:19 2017 (r444150) @@ -3,6 +3,7 @@ PORTNAME= Data-Page-Pageset PORTVERSION= 1.02 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:CHUNZI @@ -16,11 +17,11 @@ LICENSE_COMB= dual RUN_DEPENDS= \ p5-Data-Page>=2:databases/p5-Data-Page \ - p5-Class-Accessor>0:devel/p5-Class-Accessor \ - p5-Carp>0:devel/p5-Carp + p5-Class-Accessor>0:devel/p5-Class-Accessor BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Exception>0:devel/p5-Test-Exception +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DCFAD9727B; Thu, 22 Jun 2017 23:42:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E7C06EBD0; Thu, 22 Jun 2017 23:42:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgOIJ093585; Thu, 22 Jun 2017 23:42:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgOhb093584; Thu, 22 Jun 2017 23:42:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgOhb093584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444151 - head/devel/p5-Data-ParseBinary X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:25 -0000 Author: sunpoet Date: Thu Jun 22 23:42:24 2017 New Revision: 444151 URL: https://svnweb.freebsd.org/changeset/ports/444151 Log: Remove Perl core modules - While I'm here: - Add LICENSE - Add NO_ARCH With hat: perl Modified: head/devel/p5-Data-ParseBinary/Makefile Modified: head/devel/p5-Data-ParseBinary/Makefile ============================================================================== --- head/devel/p5-Data-ParseBinary/Makefile Thu Jun 22 23:42:19 2017 (r444150) +++ head/devel/p5-Data-ParseBinary/Makefile Thu Jun 22 23:42:24 2017 (r444151) @@ -11,9 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= az@FreeBSD.org COMMENT= Yet Another parser for binary structures -BUILD_DEPENDS= p5-Math-BigInt>=1.993:math/p5-Math-BigInt -TEST_DEPENDS= p5-Test-Simple>=0.96:devel/p5-Test-Simple +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DAD5D972AE; Thu, 22 Jun 2017 23:42:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B5076EC5B; Thu, 22 Jun 2017 23:42:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgT6S093689; Thu, 22 Jun 2017 23:42:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgTNg093688; Thu, 22 Jun 2017 23:42:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgTNg093688@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444152 - head/devel/p5-Data-Random X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:30 -0000 Author: sunpoet Date: Thu Jun 22 23:42:29 2017 New Revision: 444152 URL: https://svnweb.freebsd.org/changeset/ports/444152 Log: Remove Perl core modules - Add NO_ARCH - Bump PORTREVISION for dependency change Modified: head/devel/p5-Data-Random/Makefile Modified: head/devel/p5-Data-Random/Makefile ============================================================================== --- head/devel/p5-Data-Random/Makefile Thu Jun 22 23:42:24 2017 (r444151) +++ head/devel/p5-Data-Random/Makefile Thu Jun 22 23:42:29 2017 (r444152) @@ -3,6 +3,7 @@ PORTNAME= Data-Random PORTVERSION= 0.12 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,13 +14,12 @@ COMMENT= Perl module for generating random data LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Time-Piece>=1.16:devel/p5-Time-Piece \ - p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny -RUN_DEPENDS= p5-Time-Piece>=1.16:devel/p5-Time-Piece +BUILD_DEPENDS= p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny OPTIONS_DEFINE= GD GD_DESC= Support for rand_image() +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54B2CD972D0; Thu, 22 Jun 2017 23:42:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 214196ECD0; Thu, 22 Jun 2017 23:42:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgY4S093797; Thu, 22 Jun 2017 23:42:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgYcc093796; Thu, 22 Jun 2017 23:42:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgYcc093796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444153 - head/devel/p5-Router-R3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:35 -0000 Author: sunpoet Date: Thu Jun 22 23:42:34 2017 New Revision: 444153 URL: https://svnweb.freebsd.org/changeset/ports/444153 Log: Remove Perl core modules With hat: perl Modified: head/devel/p5-Router-R3/Makefile Modified: head/devel/p5-Router-R3/Makefile ============================================================================== --- head/devel/p5-Router-R3/Makefile Thu Jun 22 23:42:29 2017 (r444152) +++ head/devel/p5-Router-R3/Makefile Thu Jun 22 23:42:34 2017 (r444153) @@ -13,8 +13,7 @@ COMMENT= XS wrapper around a C library R3 LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-ExtUtils-MakeMaker>=0:devel/p5-ExtUtils-MakeMaker \ - p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig +BUILD_DEPENDS= p5-ExtUtils-PkgConfig>=0:devel/p5-ExtUtils-PkgConfig LIB_DEPENDS= libr3.so:devel/libr3 USES= perl5 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 993F4D97301; Thu, 22 Jun 2017 23:42:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67F836ED4D; Thu, 22 Jun 2017 23:42:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgdBY093920; Thu, 22 Jun 2017 23:42:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgdwA093918; Thu, 22 Jun 2017 23:42:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgdwA093918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444154 - head/devel/p5-Time-Piece-Range X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:40 -0000 Author: sunpoet Date: Thu Jun 22 23:42:39 2017 New Revision: 444154 URL: https://svnweb.freebsd.org/changeset/ports/444154 Log: Remove Perl core modules - Add LICENSE - Add NO_ARCH - Sort PLIST - Bump PORTREVISION for dependency change Modified: head/devel/p5-Time-Piece-Range/Makefile head/devel/p5-Time-Piece-Range/pkg-plist Modified: head/devel/p5-Time-Piece-Range/Makefile ============================================================================== --- head/devel/p5-Time-Piece-Range/Makefile Thu Jun 22 23:42:34 2017 (r444153) +++ head/devel/p5-Time-Piece-Range/Makefile Thu Jun 22 23:42:39 2017 (r444154) @@ -11,10 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Time::Piece::Range - deal with a range of Time::Piece objects -BUILD_DEPENDS= p5-Time-Piece>=0:devel/p5-Time-Piece \ - p5-Date-Range>=0:devel/p5-Date-Range +LICENSE= GPLv2+ + +BUILD_DEPENDS= p5-Date-Range>=0:devel/p5-Date-Range RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Time-Piece-Range/pkg-plist ============================================================================== --- head/devel/p5-Time-Piece-Range/pkg-plist Thu Jun 22 23:42:34 2017 (r444153) +++ head/devel/p5-Time-Piece-Range/pkg-plist Thu Jun 22 23:42:39 2017 (r444154) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Time::Piece::Range.3.gz %%SITE_PERL%%/Time/Piece/Range.pm +%%PERL5_MAN3%%/Time::Piece::Range.3.gz From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D097D97327; Thu, 22 Jun 2017 23:42:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A8B06EDB7; Thu, 22 Jun 2017 23:42:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgiXs094025; Thu, 22 Jun 2017 23:42:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNginE094024; Thu, 22 Jun 2017 23:42:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNginE094024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444155 - head/games/pangzero X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:45 -0000 Author: sunpoet Date: Thu Jun 22 23:42:43 2017 New Revision: 444155 URL: https://svnweb.freebsd.org/changeset/ports/444155 Log: Remove Perl core modules - Add NO_ARCH - Convert to options target helper - Bump PORTREVISION for dependency change Modified: head/games/pangzero/Makefile Modified: head/games/pangzero/Makefile ============================================================================== --- head/games/pangzero/Makefile Thu Jun 22 23:42:39 2017 (r444154) +++ head/games/pangzero/Makefile Thu Jun 22 23:42:43 2017 (r444155) @@ -3,7 +3,7 @@ PORTNAME= pangzero PORTVERSION= 1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= SF \ SF/nemysisfreebsdp/${CATEGORIES}/:icons @@ -16,11 +16,11 @@ COMMENT= Clone of Super Pang LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= p5-Carp>=0:devel/p5-Carp \ - p5-SDL>=0:devel/p5-SDL +RUN_DEPENDS= p5-SDL>=0:devel/p5-SDL -USES= perl5 +NO_ARCH= yes NO_BUILD= yes +USES= perl5 PORTDOCS= AUTHORS ChangeLog README @@ -46,6 +46,7 @@ do-install: ${LN} -sf ${DATADIR}/data/icon.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:50 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05BCED9734E; Thu, 22 Jun 2017 23:42:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C877C6EE24; Thu, 22 Jun 2017 23:42:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgnRP094148; Thu, 22 Jun 2017 23:42:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgmIt094146; Thu, 22 Jun 2017 23:42:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgmIt094146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444156 - head/textproc/p5-Plucene-Simple X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:50 -0000 Author: sunpoet Date: Thu Jun 22 23:42:48 2017 New Revision: 444156 URL: https://svnweb.freebsd.org/changeset/ports/444156 Log: Remove Perl core modules - Add NO_ARCH - Sort PLIST - Bump PORTREVISION for dependency change Modified: head/textproc/p5-Plucene-Simple/Makefile head/textproc/p5-Plucene-Simple/pkg-plist Modified: head/textproc/p5-Plucene-Simple/Makefile ============================================================================== --- head/textproc/p5-Plucene-Simple/Makefile Thu Jun 22 23:42:43 2017 (r444155) +++ head/textproc/p5-Plucene-Simple/Makefile Thu Jun 22 23:42:48 2017 (r444156) @@ -3,7 +3,7 @@ PORTNAME= Plucene-Simple DISTVERSION= 1.04 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:STRYTOAST @@ -13,14 +13,14 @@ DISTNAME= ${PORTNAME:S/-//}-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Interface to Plucene -BUILD_DEPENDS= p5-Time-Piece>=1.08:devel/p5-Time-Piece \ - p5-Time-Piece-Range>=1.0:devel/p5-Time-Piece-Range \ +BUILD_DEPENDS= p5-Time-Piece-Range>=1.0:devel/p5-Time-Piece-Range \ p5-Plucene>=1.09:textproc/p5-Plucene \ p5-File-Find-Rule>=0.10:devel/p5-File-Find-Rule \ p5-File-Slurp>=2002.1031:devel/p5-File-Slurp RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Class>=0.03:devel/p5-Test-Class +NO_ARCH= yes USES= perl5 USE_PERL5= modbuild Modified: head/textproc/p5-Plucene-Simple/pkg-plist ============================================================================== --- head/textproc/p5-Plucene-Simple/pkg-plist Thu Jun 22 23:42:43 2017 (r444155) +++ head/textproc/p5-Plucene-Simple/pkg-plist Thu Jun 22 23:42:48 2017 (r444156) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Plucene::Simple.3.gz %%SITE_PERL%%/Plucene/Simple.pm +%%PERL5_MAN3%%/Plucene::Simple.3.gz From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:55 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0939FD97384; Thu, 22 Jun 2017 23:42:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6F686EE9A; Thu, 22 Jun 2017 23:42:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgrYZ094252; Thu, 22 Jun 2017 23:42:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgrjg094251; Thu, 22 Jun 2017 23:42:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgrjg094251@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444157 - head/www/p5-Dancer2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:42:55 -0000 Author: sunpoet Date: Thu Jun 22 23:42:53 2017 New Revision: 444157 URL: https://svnweb.freebsd.org/changeset/ports/444157 Log: Add PERL_LEVEL check - Bump PORTREVISION for dependency change Modified: head/www/p5-Dancer2/Makefile Modified: head/www/p5-Dancer2/Makefile ============================================================================== --- head/www/p5-Dancer2/Makefile Thu Jun 22 23:42:48 2017 (r444156) +++ head/www/p5-Dancer2/Makefile Thu Jun 22 23:42:53 2017 (r444157) @@ -3,6 +3,7 @@ PORTNAME= Dancer2 PORTVERSION= 0.205000 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -18,7 +19,6 @@ BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-Capture-Tiny>=0.12:devel/p5-Capture-Tiny \ p5-Crypt-URandom>=0:security/p5-Crypt-URandom \ p5-Config-Any>=0:devel/p5-Config-Any \ - p5-ExtUtils-MakeMaker>=7.12:devel/p5-ExtUtils-MakeMaker \ p5-File-ShareDir-Install>=0.06:devel/p5-File-ShareDir-Install \ p5-Hash-Merge-Simple>=0:devel/p5-Hash-Merge-Simple \ p5-HTTP-Body>=0:www/p5-HTTP-Body \ @@ -69,4 +69,11 @@ NO_ARCH= yes USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} < 502502 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=7.12:devel/p5-ExtUtils-MakeMaker +RUN_DEPENDS+= p5-ExtUtils-MakeMaker>=7.12:devel/p5-ExtUtils-MakeMaker +.endif + +.include From owner-svn-ports-head@freebsd.org Thu Jun 22 23:42:59 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8574D973B5; Thu, 22 Jun 2017 23:42:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 922B96EF08; Thu, 22 Jun 2017 23:42:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNgw6u094359; Thu, 22 Jun 2017 23:42:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNgwl3094358; Thu, 22 Jun 2017 23:42:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222342.v5MNgwl3094358@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:42:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444158 - head/www/p5-Test-LWP-UserAgent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:43:00 -0000 Author: sunpoet Date: Thu Jun 22 23:42:58 2017 New Revision: 444158 URL: https://svnweb.freebsd.org/changeset/ports/444158 Log: Remove Perl core modules With hat: perl Modified: head/www/p5-Test-LWP-UserAgent/Makefile Modified: head/www/p5-Test-LWP-UserAgent/Makefile ============================================================================== --- head/www/p5-Test-LWP-UserAgent/Makefile Thu Jun 22 23:42:53 2017 (r444157) +++ head/www/p5-Test-LWP-UserAgent/Makefile Thu Jun 22 23:42:58 2017 (r444158) @@ -19,12 +19,10 @@ BUILD_DEPENDS= p5-libwww>=0:www/p5-libwww \ p5-Safe-Isa>=0:devel/p5-Safe-Isa \ p5-Try-Tiny>=0:lang/p5-Try-Tiny RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-ExtUtils-MakeMaker>=0:devel/p5-ExtUtils-MakeMaker \ - p5-Plack>=0:www/p5-Plack \ +TEST_DEPENDS= p5-Plack>=0:www/p5-Plack \ p5-Path-Tiny>=0:devel/p5-Path-Tiny \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Fatal>=0:devel/p5-Test-Fatal \ - p5-Test-Simple>=0:devel/p5-Test-Simple \ p5-Test-Requires>=0:devel/p5-Test-Requires \ p5-Test-Warnings>=0:devel/p5-Test-Warnings From owner-svn-ports-head@freebsd.org Thu Jun 22 23:43:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CA94D973D8; Thu, 22 Jun 2017 23:43:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B1116EF78; Thu, 22 Jun 2017 23:43:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNh3TR094485; Thu, 22 Jun 2017 23:43:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNh3xc094483; Thu, 22 Jun 2017 23:43:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222343.v5MNh3xc094483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:43:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444159 - head/www/typo3-7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:43:04 -0000 Author: sunpoet Date: Thu Jun 22 23:43:03 2017 New Revision: 444159 URL: https://svnweb.freebsd.org/changeset/ports/444159 Log: Update to 7.6.19 Changes: https://typo3.org/download/release-notes/whats-new/ https://typo3.org/news/article/typo3-872-and-7619-released/ PR: 220208 Submitted by: Helmut Ritter (maintainer) Modified: head/www/typo3-7/Makefile head/www/typo3-7/distinfo Modified: head/www/typo3-7/Makefile ============================================================================== --- head/www/typo3-7/Makefile Thu Jun 22 23:42:58 2017 (r444158) +++ head/www/typo3-7/Makefile Thu Jun 22 23:43:03 2017 (r444159) @@ -27,7 +27,7 @@ WRKSRC= ${WRKDIR}/${TYPO3SRC} PORT_V_MAJOR= 7 PORT_V_MINOR= 6 -PORT_V_PATCH= 18 +PORT_V_PATCH= 19 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: head/www/typo3-7/distinfo ============================================================================== --- head/www/typo3-7/distinfo Thu Jun 22 23:42:58 2017 (r444158) +++ head/www/typo3-7/distinfo Thu Jun 22 23:43:03 2017 (r444159) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492605961 -SHA256 (typo3_src-7.6.18.tar.gz) = 7c411c7ac32ff1053428e6741074ecca818a5b9623166124100548c673a4c109 -SIZE (typo3_src-7.6.18.tar.gz) = 21693315 +TIMESTAMP = 1498138091 +SHA256 (typo3_src-7.6.19.tar.gz) = 4496c606e179a996636a33fbc681bd649fcd1021ea60fcb295dbdfee9750483f +SIZE (typo3_src-7.6.19.tar.gz) = 21696774 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:43:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21B53D97409; Thu, 22 Jun 2017 23:43:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E4B6A6EFFD; Thu, 22 Jun 2017 23:43:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5MNh8pu094619; Thu, 22 Jun 2017 23:43:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNh8QF094617; Thu, 22 Jun 2017 23:43:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706222343.v5MNh8QF094617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 22 Jun 2017 23:43:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444160 - head/www/typo3-8 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 22 Jun 2017 23:43:10 -0000 Author: sunpoet Date: Thu Jun 22 23:43:08 2017 New Revision: 444160 URL: https://svnweb.freebsd.org/changeset/ports/444160 Log: Update to 8.7.2 Changes: https://typo3.org/download/release-notes/whats-new/ https://typo3.org/news/article/typo3-872-and-7619-released/ PR: 220209 Submitted by: Helmut Ritter (maintainer) Modified: head/www/typo3-8/Makefile head/www/typo3-8/distinfo Modified: head/www/typo3-8/Makefile ============================================================================== --- head/www/typo3-8/Makefile Thu Jun 22 23:43:03 2017 (r444159) +++ head/www/typo3-8/Makefile Thu Jun 22 23:43:08 2017 (r444160) @@ -26,7 +26,7 @@ WRKSRC= ${WRKDIR}/${TYPO3SRC} PORT_V_MAJOR= 8 PORT_V_MINOR= 7 -PORT_V_PATCH= 1 +PORT_V_PATCH= 2 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: head/www/typo3-8/distinfo ============================================================================== --- head/www/typo3-8/distinfo Thu Jun 22 23:43:03 2017 (r444159) +++ head/www/typo3-8/distinfo Thu Jun 22 23:43:08 2017 (r444160) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492607076 -SHA256 (typo3_src-8.7.1.tar.gz) = 4035dcbfdf611a425ed15be8c46fa4722020b442ee17f9c0bba2d8bcf6649815 -SIZE (typo3_src-8.7.1.tar.gz) = 21624139 +TIMESTAMP = 1498138025 +SHA256 (typo3_src-8.7.2.tar.gz) = e1afbfcc97f60b201d2de334f5d5f9ad523543338891ec1ba1c2f1df5958d97f +SIZE (typo3_src-8.7.2.tar.gz) = 19089981 From owner-svn-ports-head@freebsd.org Thu Jun 22 23:55:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E755D97703; Thu, 22 Jun 2017 23:55:04 +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 E1BE06FBDE; Thu, 22 Jun 2017 23:55:03 +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 v5MNt3lI098667; Thu, 22 Jun 2017 23:55:03 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5MNt2W6098665; Thu, 22 Jun 2017 23:55:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706222355.v5MNt2W6098665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Jun 2017 23:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444161 - in head/devel: android-tools-adb-devel/files android-tools-fastboot-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: Thu, 22 Jun 2017 23:55:04 -0000 Author: jbeich Date: Thu Jun 22 23:55:02 2017 New Revision: 444161 URL: https://svnweb.freebsd.org/changeset/ports/444161 Log: devel/android-tools-{adb,fastboot}-devel: adjust KERN_PROC_PATHNAME after r444135 Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp (contents, props changed) Modified: head/devel/android-tools-adb-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-adb-devel/files/patch-base_file.cpp Thu Jun 22 23:43:08 2017 (r444160) +++ head/devel/android-tools-adb-devel/files/patch-base_file.cpp Thu Jun 22 23:55:02 2017 (r444161) @@ -21,7 +21,7 @@ #if defined(_WIN32) #include #define O_CLOEXEC O_NOINHERIT -@@ -251,6 +257,17 @@ std::string GetExecutablePath() { +@@ -251,6 +258,23 @@ std::string GetExecutablePath() { if (result == 0 || result == sizeof(path) - 1) return ""; path[PATH_MAX - 1] = 0; return path; @@ -30,9 +30,15 @@ + size_t path_len = sizeof(path); + int mib[] = { + CTL_KERN, ++#if defined(__NetBSD__) ++ KERN_PROC_ARGS, ++ -1, ++ KERN_PROC_PATHNAME, ++#else + KERN_PROC, + KERN_PROC_PATHNAME, -+ getpid() ++ -1, ++#endif + }; + int rc = sysctl(mib, arraysize(mib), path, &path_len, NULL, 0); + return rc ? "" : path; Modified: head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp ============================================================================== --- head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp Thu Jun 22 23:43:08 2017 (r444160) +++ head/devel/android-tools-fastboot-devel/files/patch-base_file.cpp Thu Jun 22 23:55:02 2017 (r444161) @@ -21,7 +21,7 @@ #if defined(_WIN32) #include #define O_CLOEXEC O_NOINHERIT -@@ -251,6 +257,17 @@ std::string GetExecutablePath() { +@@ -251,6 +258,23 @@ std::string GetExecutablePath() { if (result == 0 || result == sizeof(path) - 1) return ""; path[PATH_MAX - 1] = 0; return path; @@ -30,9 +30,15 @@ + size_t path_len = sizeof(path); + int mib[] = { + CTL_KERN, ++#if defined(__NetBSD__) ++ KERN_PROC_ARGS, ++ -1, ++ KERN_PROC_PATHNAME, ++#else + KERN_PROC, + KERN_PROC_PATHNAME, -+ getpid() ++ -1, ++#endif + }; + int rc = sysctl(mib, arraysize(mib), path, &path_len, NULL, 0); + return rc ? "" : path; From owner-svn-ports-head@freebsd.org Fri Jun 23 00:05:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62A08D97D7A; Fri, 23 Jun 2017 00:05:57 +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 31FC770237; Fri, 23 Jun 2017 00:05:57 +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 v5N05usP003196; Fri, 23 Jun 2017 00:05:56 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N05uAv003195; Fri, 23 Jun 2017 00:05:56 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201706230005.v5N05uAv003195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Fri, 23 Jun 2017 00:05:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444162 - head/mail/fdm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 00:05:57 -0000 Author: dinoex Date: Fri Jun 23 00:05:56 2017 New Revision: 444162 URL: https://svnweb.freebsd.org/changeset/ports/444162 Log: - fix build, add MAKE_JOBS_UNSAFE PR: 220072 Submitted by: Brad Sliger Modified: head/mail/fdm/Makefile Modified: head/mail/fdm/Makefile ============================================================================== --- head/mail/fdm/Makefile Thu Jun 22 23:55:02 2017 (r444161) +++ head/mail/fdm/Makefile Fri Jun 23 00:05:56 2017 (r444162) @@ -13,6 +13,8 @@ LICENSE= ISCL LIB_DEPENDS= libtdb.so:databases/tdb +MAKE_JOBS_UNSAFE= yes + USE_GITHUB= yes GH_ACCOUNT= nicm USES= autoreconf:build ssl From owner-svn-ports-head@freebsd.org Fri Jun 23 04:47:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F0C5D9C51C; Fri, 23 Jun 2017 04:47:53 +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 6F05B779F2; Fri, 23 Jun 2017 04:47:53 +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 v5N4lqC1019089; Fri, 23 Jun 2017 04:47:52 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N4lqoS019088; Fri, 23 Jun 2017 04:47:52 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706230447.v5N4lqoS019088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 23 Jun 2017 04:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444163 - 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: Fri, 23 Jun 2017 04:47:53 -0000 Author: jbeich Date: Fri Jun 23 04:47:52 2017 New Revision: 444163 URL: https://svnweb.freebsd.org/changeset/ports/444163 Log: www/libxul: unbreak on FreeBSD < 12.0 after r444091 configure: error: Option, jemalloc, does not take an argument (4). Reported by: George Mitchell (via ports@ list) Modified: head/Mk/bsd.gecko.mk (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Fri Jun 23 00:05:56 2017 (r444162) +++ head/Mk/bsd.gecko.mk Fri Jun 23 04:47:52 2017 (r444163) @@ -142,7 +142,11 @@ LDFLAGS+= -Wl,--as-needed .if ${MOZILLA_VER:R:R} < 55 && ${OPSYS} == FreeBSD && ${OSVERSION} < 1200032 # use jemalloc 3.0.0 (4.0 for firefox 43+) API for stats/tuning MOZ_EXPORT+= MOZ_JEMALLOC4=1 +.if ${MOZILLA_VER:R:R} >= 48 MOZ_OPTIONS+= --enable-jemalloc=4 +.elif ${OSVERSION} < 1100079 +MOZ_OPTIONS+= --enable-jemalloc +.endif # Mozilla >= 48 .endif # Mozilla < 55 # Standard depends From owner-svn-ports-head@freebsd.org Fri Jun 23 06:01:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 271CDD9D2A1; Fri, 23 Jun 2017 06:01:56 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E92527957D; Fri, 23 Jun 2017 06:01:55 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5N61tV7051225; Fri, 23 Jun 2017 06:01:55 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N61sMU051222; Fri, 23 Jun 2017 06:01:54 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201706230601.v5N61sMU051222@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Fri, 23 Jun 2017 06:01:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444164 - head/devel/py-pytest-timeout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 06:01:56 -0000 Author: loader (doc committer) Date: Fri Jun 23 06:01:54 2017 New Revision: 444164 URL: https://svnweb.freebsd.org/changeset/ports/444164 Log: devel/py-pytest-timeout: Update to 1.2.0 - Add NO_ARCH - Add regression test Reviewed by: koobs Approved by: koobs (ports) Differential Revision: https://reviews.freebsd.org/D10676 Modified: head/devel/py-pytest-timeout/Makefile head/devel/py-pytest-timeout/distinfo Modified: head/devel/py-pytest-timeout/Makefile ============================================================================== --- head/devel/py-pytest-timeout/Makefile Fri Jun 23 04:47:52 2017 (r444163) +++ head/devel/py-pytest-timeout/Makefile Fri Jun 23 06:01:54 2017 (r444164) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pytest-timeout -PORTVERSION= 0.4 +PORTVERSION= 1.2.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,9 +13,16 @@ COMMENT= Pytest plugin to abort hanging tests LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>=2.6.4:devel/py-pytest +RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.0:devel/py-pytest +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.0:devel/py-pytest -USES?= python +NO_ARCH= yes + +USES?= python:2.7+ USE_PYTHON= autoplist distutils + +TEST_ENV+= PYTHONPATH=${TEST_WRKSRC} +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) .include Modified: head/devel/py-pytest-timeout/distinfo ============================================================================== --- head/devel/py-pytest-timeout/distinfo Fri Jun 23 04:47:52 2017 (r444163) +++ head/devel/py-pytest-timeout/distinfo Fri Jun 23 06:01:54 2017 (r444164) @@ -1,2 +1,3 @@ -SHA256 (pytest-timeout-0.4.tar.gz) = d5900aaa94af5cb2d06ed806b1e636255e65a8a26eccecccd2b9a9d6123d50d5 -SIZE (pytest-timeout-0.4.tar.gz) = 10204 +TIMESTAMP = 1494402704 +SHA256 (pytest-timeout-1.2.0.tar.gz) = c29e3168f10897728059bd6b8ca20b28733d7fe6b8f6c09bb9d89f6146f27cb8 +SIZE (pytest-timeout-1.2.0.tar.gz) = 13258 From owner-svn-ports-head@freebsd.org Fri Jun 23 07:03:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31A0DD9E1E9; Fri, 23 Jun 2017 07:03:32 +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 0DBB57AC6B; Fri, 23 Jun 2017 07:03:31 +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 v5N73VbT075652; Fri, 23 Jun 2017 07:03:31 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N73Ufb075649; Fri, 23 Jun 2017 07:03:30 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201706230703.v5N73Ufb075649@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 23 Jun 2017 07:03:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444165 - 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, 23 Jun 2017 07:03:32 -0000 Author: matthew Date: Fri Jun 23 07:03:30 2017 New Revision: 444165 URL: https://svnweb.freebsd.org/changeset/ports/444165 Log: Update to 3.12.1 Update cad/openvsp to 3.12.1 _and_ unbreak cad/openvsp. The recent update to eigen3 broke cad/openvsp (since it is used directly) and graphics/code-eli that is a dependency of cad/openvsp. Until there is a fix for code-eli change the port to use the internal eigen3 and code-eli packages bundled in the distribution. In addition, one of the local patches was accepted upstream and is no longer necessary. From the announcement: Features: - Parasite drag buildup tool - Full control of VSPAERO from OpenVSP GUI - DegenGeom preview visualization - Advanced control surface modeling Bug Fixes: - Advanced links not loading from file with 'Loop' policy geoms - Crash conformal components with some file airfoils - CompGeom when subsurfaces fall on tessellation line - DegenGeom handling of tip caps with blended wings - CustomGeom name matching GUI mismatch PR: 220212 Submitted by: fernando.apesteguia@gmail.com (maintainer) Deleted: head/cad/openvsp/files/patch-src_util_SVGUtil.h Modified: head/cad/openvsp/Makefile head/cad/openvsp/distinfo head/cad/openvsp/pkg-plist Modified: head/cad/openvsp/Makefile ============================================================================== --- head/cad/openvsp/Makefile Fri Jun 23 06:01:54 2017 (r444164) +++ head/cad/openvsp/Makefile Fri Jun 23 07:03:30 2017 (r444165) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= openvsp -PORTVERSION= 3.11.0 -PORTREVISION= 2 +PORTVERSION= 3.12.1 DISTVERSIONPREFIX= ${GH_PROJECT}_ CATEGORIES= cad @@ -24,9 +23,7 @@ LIB_DEPENDS= libdrm.so:graphics/libdrm \ libGLEW.so:graphics/glew \ libcpptest.so:devel/cpptest BUILD_DEPENDS= ${LOCALBASE}/lib/libopenNURBS.a:graphics/opennurbs \ - ${LOCALBASE}/include/eli/code_eli.hpp:graphics/code-eli \ ${LOCALBASE}/include/glm/glm.hpp:math/glm \ - ${LOCALBASE}/include/eigen3/Eigen/Array:math/eigen3 \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:devel/libpthread-stubs USE_GITHUB= yes @@ -39,8 +36,9 @@ USES= cmake:outsource compiler:gcc-c++11-lib jpeg CMAKE_ARGS= -DVSP_USE_SYSTEM_CMINPACK:BOOLEAN=yes \ -DVSP_USE_SYSTEM_CPPTEST:BOOLEAN=yes \ + -DVSP_USE_SYSTEM_CODEELI:BOOLEAN=no \ + -DVSP_USE_SYSTEM_EIGEN:BOOLEAN=no \ -DVSP_USE_SYSTEM_LIBXML2:BOOLEAN=yes \ - -DVSP_USE_SYSTEM_EIGEN:BOOLEAN=yes \ -DVSP_USE_SYSTEM_FLTK:boolean=yes \ -DVSP_USE_SYSTEM_CMINPACK:boolean=no \ -DVSP_USE_SYSTEM_GLM:BOOLEAN=yes \ Modified: head/cad/openvsp/distinfo ============================================================================== --- head/cad/openvsp/distinfo Fri Jun 23 06:01:54 2017 (r444164) +++ head/cad/openvsp/distinfo Fri Jun 23 07:03:30 2017 (r444165) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489420424 -SHA256 (OpenVSP-OpenVSP-OpenVSP_3.11.0_GH0.tar.gz) = 29614785ce54742bf1aa532b8be332d15690b2e5c2e2583479e6f2946e57d9aa -SIZE (OpenVSP-OpenVSP-OpenVSP_3.11.0_GH0.tar.gz) = 34013137 +TIMESTAMP = 1497963456 +SHA256 (OpenVSP-OpenVSP-OpenVSP_3.12.1_GH0.tar.gz) = 011b01878b77d296b8f4411a7a301aa3ca0eb1c6e443e7057a2657f487255323 +SIZE (OpenVSP-OpenVSP-OpenVSP_3.12.1_GH0.tar.gz) = 34090509 Modified: head/cad/openvsp/pkg-plist ============================================================================== --- head/cad/openvsp/pkg-plist Fri Jun 23 06:01:54 2017 (r444164) +++ head/cad/openvsp/pkg-plist Fri Jun 23 07:03:30 2017 (r444165) @@ -25,6 +25,7 @@ bin/vsp bin/vspaero bin/vspscript bin/vspviewer +matlab/OpenVSPParasiteDragPlotData.m matlab/plotDegenPlate.m matlab/plotDegenStick.m matlab/plotDegenSurf.m @@ -33,6 +34,7 @@ scripts/CreateEditGeom.vspscript scripts/DegenGeom.vspscript scripts/DumpResults.vspscript scripts/Fuselage.vspscript +scripts/ParasiteDragScriptTest.vspscript scripts/SnapToDemo.vspscript scripts/Stack.vspscript scripts/SubSurface.vspscript @@ -61,6 +63,8 @@ scripts/Wing.vspscript %%DATADIR%%/N0012_VSP.af %%DATADIR%%/N0012_VSP_sym.af %%DATADIR%%/OnOffExample.vsppart +%%DATADIR%%/OpenVSPParasiteDragPlotData.m +%%DATADIR%%/ParasiteDragScriptTest.vspscript %%DATADIR%%/PodMan.vsppart %%DATADIR%%/Seat.vsppart %%DATADIR%%/SeatGroup.vsppart From owner-svn-ports-head@freebsd.org Fri Jun 23 08:19:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8BA1D9F244; Fri, 23 Jun 2017 08:19:13 +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 202627C2F9; Fri, 23 Jun 2017 08:19:13 +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 v5N8JCLG004049; Fri, 23 Jun 2017 08:19:12 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N8JCrw004047; Fri, 23 Jun 2017 08:19:12 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201706230819.v5N8JCrw004047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 23 Jun 2017 08:19:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444166 - 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, 23 Jun 2017 08:19:14 -0000 Author: madpilot Date: Fri Jun 23 08:19:11 2017 New Revision: 444166 URL: https://svnweb.freebsd.org/changeset/ports/444166 Log: Update deskutils/calibre to 3.1.0. Modified: head/deskutils/calibre/Makefile head/deskutils/calibre/distinfo head/deskutils/calibre/pkg-plist Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Fri Jun 23 07:03:30 2017 (r444165) +++ head/deskutils/calibre/Makefile Fri Jun 23 08:19:11 2017 (r444166) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= calibre -PORTVERSION= 3.0.0 +PORTVERSION= 3.1.0 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: head/deskutils/calibre/distinfo ============================================================================== --- head/deskutils/calibre/distinfo Fri Jun 23 07:03:30 2017 (r444165) +++ head/deskutils/calibre/distinfo Fri Jun 23 08:19:11 2017 (r444166) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497602270 -SHA256 (calibre-3.0.0.tar.xz) = 7cdaa5c55c8c13d6b5389ee11231c64944f5272297938e426be3a4fcf63a13fe -SIZE (calibre-3.0.0.tar.xz) = 35969076 +TIMESTAMP = 1498202465 +SHA256 (calibre-3.1.0.tar.xz) = 1c285889cf62f53b8461995c4ad59b0f64bf34bb3027fa390eac7bef1c94cf89 +SIZE (calibre-3.1.0.tar.xz) = 35840856 Modified: head/deskutils/calibre/pkg-plist ============================================================================== --- head/deskutils/calibre/pkg-plist Fri Jun 23 07:03:30 2017 (r444165) +++ head/deskutils/calibre/pkg-plist Fri Jun 23 08:19:11 2017 (r444166) @@ -882,6 +882,7 @@ lib/calibre/calibre/gui2/jobs.py lib/calibre/calibre/gui2/keyboard.py lib/calibre/calibre/gui2/languages.py lib/calibre/calibre/gui2/layout.py +lib/calibre/calibre/gui2/layout_menu.py lib/calibre/calibre/gui2/library/__init__.py lib/calibre/calibre/gui2/library/alternate_views.py lib/calibre/calibre/gui2/library/caches.py @@ -1200,7 +1201,6 @@ lib/calibre/calibre/plugins/qt_hack.so lib/calibre/calibre/plugins/speedup.so lib/calibre/calibre/plugins/sqlite_custom.so lib/calibre/calibre/plugins/tokenizer.so -lib/calibre/calibre/plugins/unrar.so lib/calibre/calibre/plugins/zlib2.so lib/calibre/calibre/ptempfile.py lib/calibre/calibre/rpdb.py From owner-svn-ports-head@freebsd.org Fri Jun 23 08:19:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80F3AD9F274; Fri, 23 Jun 2017 08:19:42 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5161B7C3D3; Fri, 23 Jun 2017 08:19:42 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5N8JfI8004158; Fri, 23 Jun 2017 08:19:41 GMT (envelope-from grog@FreeBSD.org) Received: (from grog@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N8Jfv9004157; Fri, 23 Jun 2017 08:19:41 GMT (envelope-from grog@FreeBSD.org) Message-Id: <201706230819.v5N8Jfv9004157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: grog set sender to grog@FreeBSD.org using -f From: Greg Lehey Date: Fri, 23 Jun 2017 08:19:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444167 - head/astro/xearth/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, 23 Jun 2017 08:19:42 -0000 Author: grog Date: Fri Jun 23 08:19:41 2017 New Revision: 444167 URL: https://svnweb.freebsd.org/changeset/ports/444167 Log: Finally (after 2 years) move house. Modified: head/astro/xearth/files/freebsd.committers.markers Modified: head/astro/xearth/files/freebsd.committers.markers ============================================================================== --- head/astro/xearth/files/freebsd.committers.markers Fri Jun 23 08:19:11 2017 (r444166) +++ head/astro/xearth/files/freebsd.committers.markers Fri Jun 23 08:19:41 2017 (r444167) @@ -13,7 +13,7 @@ -34.045657, 151.117163, "edwin" # Caringbah NSW, Australia -33.55, 151.1, "bde" # Sydney, Australia -37.7, 144.9, " jb,benno" # Melbourne, Vic, Australia --37.8185, 143.739473, "grog" # Dereel, VIC, Australia +-37.800152, 143.751219, "grog" # Dereel, VIC, Australia 35.69, 139.92, "metal" # Ichikawa, Chiba, Japan 35.707, 139.785, "motoyuki" # Tokyo, Japan 35.561, 139.716, "rushani" # Tokyo, Japan From owner-svn-ports-head@freebsd.org Fri Jun 23 08:55:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32D23D9FCE5; Fri, 23 Jun 2017 08:55:41 +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 079097D842; Fri, 23 Jun 2017 08:55:40 +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 v5N8teUG020535; Fri, 23 Jun 2017 08:55:40 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N8td37020531; Fri, 23 Jun 2017 08:55:39 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706230855.v5N8td37020531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 23 Jun 2017 08:55:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444168 - in head/lang: . erlang-runtime20 erlang-runtime20/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, 23 Jun 2017 08:55:41 -0000 Author: olgeni Date: Fri Jun 23 08:55:39 2017 New Revision: 444168 URL: https://svnweb.freebsd.org/changeset/ports/444168 Log: Add lang/erlang-runtime20, Erlang runtime for version 20.0. Added: head/lang/erlang-runtime20/ - copied from r444102, head/lang/erlang-runtime19/ Deleted: head/lang/erlang-runtime20/files/patch-lib_wx_c__src_wxe__impl.cpp Modified: head/lang/Makefile head/lang/erlang-runtime20/Makefile head/lang/erlang-runtime20/distinfo head/lang/erlang-runtime20/files/patch-Makefile.in Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Fri Jun 23 08:19:41 2017 (r444167) +++ head/lang/Makefile Fri Jun 23 08:55:39 2017 (r444168) @@ -68,6 +68,7 @@ SUBDIR += erlang-runtime17 SUBDIR += erlang-runtime18 SUBDIR += erlang-runtime19 + SUBDIR += erlang-runtime20 SUBDIR += erlang-wx SUBDIR += execline SUBDIR += expect Modified: head/lang/erlang-runtime20/Makefile ============================================================================== --- head/lang/erlang-runtime19/Makefile Thu Jun 22 07:43:50 2017 (r444102) +++ head/lang/erlang-runtime20/Makefile Fri Jun 23 08:55:39 2017 (r444168) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.3.6 +PORTVERSION= 20.0 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ http://www.csd.uu.se/ftp/mirror/erlang/download/:erlangorg -PKGNAMESUFFIX= -runtime19 +PKGNAMESUFFIX= -runtime20 DISTNAME= otp_src_${ERL_RELEASE} DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:erlangorg \ ${ERLANG_MAN}:erlangorg @@ -16,8 +16,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ - patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 +PATCHFILES= MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -61,7 +60,7 @@ OPTIONS_EXCLUDE_i386= DTRACE # ld(1) fails to link probes: missing __dtrace_erlang___* symbols OPTIONS_EXCLUDE_aarch64= DTRACE -ERL_RELEASE= 19.3 +ERL_RELEASE= 20.0 USES= gmake ncurses perl5 USE_PERL5= build @@ -212,35 +211,6 @@ post-install: .if ${PORT_OPTIONS:MDOCS} ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3.5 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.3/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.4 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.3 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.6/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.9 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.6 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.1/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.2 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.1 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.1/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.3 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.1 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1.1 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.13/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.14 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.13 - ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ .endif Modified: head/lang/erlang-runtime20/distinfo ============================================================================== --- head/lang/erlang-runtime19/distinfo Thu Jun 22 07:43:50 2017 (r444102) +++ head/lang/erlang-runtime20/distinfo Fri Jun 23 08:55:39 2017 (r444168) @@ -1,19 +1,7 @@ -TIMESTAMP = 1496937506 -SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 -SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 -SHA256 (erlang/otp_doc_man_19.3.tar.gz) = f8192ffdd7367083c055695eeddf198155da43dcc221aed1d870d1e3871dd95c -SIZE (erlang/otp_doc_man_19.3.tar.gz) = 1410781 -SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c -SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 -SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd -SIZE (erlang/patch-otp-19.3.1) = 30225 -SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a -SIZE (erlang/patch-otp-19.3.2) = 6290 -SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 -SIZE (erlang/patch-otp-19.3.3) = 12525 -SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af -SIZE (erlang/patch-otp-19.3.4) = 13504 -SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 -SIZE (erlang/patch-otp-19.3.5) = 44563 -SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 -SIZE (erlang/patch-otp-19.3.6) = 13073 +TIMESTAMP = 1498129462 +SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 +SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 +SHA256 (erlang/otp_doc_man_20.0.tar.gz) = b7f1542a94a170f8791f5d80a85706f9e8838924ea65d4301032d0c0cfb845cc +SIZE (erlang/otp_doc_man_20.0.tar.gz) = 1430939 +SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a +SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 Modified: head/lang/erlang-runtime20/files/patch-Makefile.in ============================================================================== --- head/lang/erlang-runtime19/files/patch-Makefile.in Thu Jun 22 07:43:50 2017 (r444102) +++ head/lang/erlang-runtime20/files/patch-Makefile.in Fri Jun 23 08:55:39 2017 (r444168) @@ -5,7 +5,7 @@ # Where Erlang/OTP is located -libdir_suffix = /erlang -+libdir_suffix = /erlang19 ++libdir_suffix = /erlang20 erlang_libdir = $(libdir)$(libdir_suffix) erlang_bindir = $(erlang_libdir)/bin From owner-svn-ports-head@freebsd.org Fri Jun 23 09:00:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8A74D9FFCD; Fri, 23 Jun 2017 09:00: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 7EC577DA1C; Fri, 23 Jun 2017 09:00: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 v5N907sA020829; Fri, 23 Jun 2017 09:00:07 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N907qE020827; Fri, 23 Jun 2017 09:00:07 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706230900.v5N907qE020827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 23 Jun 2017 09:00:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444169 - head/graphics/raster3d X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 09:00:08 -0000 Author: amdmi3 Date: Fri Jun 23 09:00:07 2017 New Revision: 444169 URL: https://svnweb.freebsd.org/changeset/ports/444169 Log: - Switch to options helpers - Simplify installation - Switch to PORTDOCS/PORTEXAMPLES Modified: head/graphics/raster3d/Makefile head/graphics/raster3d/pkg-plist Modified: head/graphics/raster3d/Makefile ============================================================================== --- head/graphics/raster3d/Makefile Fri Jun 23 08:55:39 2017 (r444168) +++ head/graphics/raster3d/Makefile Fri Jun 23 09:00:07 2017 (r444169) @@ -16,9 +16,6 @@ LICENSE= ART20 LIB_DEPENDS= libgd.so:graphics/gd \ libtiff.so:graphics/tiff -OPTIONS_DEFINE= IMAGEMAGICK DOCS EXAMPLES -OPTIONS_DEFAULT=IMAGEMAGICK - USES= fortran MAKE_ARGS= INCDIRS="-I${LOCALBASE}/include" LIBDIRS="-L${LOCALBASE}/lib" \ CC="${CC}" CFLAGS="${CFLAGS}" FC="${FC}" FFLAGS="${FFLAGS}" \ @@ -29,36 +26,37 @@ MAKE_JOBS_UNSAFE= yes CFLAGS+= -DLINUX -DNETWORKBYTEORDER -Dgfortran FFLAGS+= -fno-range-check -ffixed-line-length-132 -IMAGEMAGICK_RUN_DEPENDS= convert:graphics/ImageMagick +PORTDOCS= * +PORTEXAMPLES= * + +OPTIONS_DEFINE= IMAGEMAGICK DOCS EXAMPLES +OPTIONS_DEFAULT=IMAGEMAGICK OPTIONS_SUB= yes -.include +IMAGEMAGICK_RUN_DEPENDS= convert:graphics/ImageMagick do-install: -.for install_file in avs2ps balls normal3d rastep render ribbon rings3d rods - cd ${WRKSRC} && ${INSTALL_PROGRAM} ${install_file} ${STAGEDIR}${PREFIX}/bin +.for f in avs2ps balls normal3d rastep render ribbon rings3d rods + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor -.for install_file in worms - cd ${WRKSRC} && ${INSTALL_SCRIPT} ${install_file} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/worms ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/*.l ${STAGEDIR}${MANLPREFIX}/man/manl + @${MKDIR} ${STAGEDIR}${DATADIR}/materials + ${INSTALL_DATA} ${WRKSRC}/materials/* ${STAGEDIR}${DATADIR}/materials + +do-install-IMAGEMAGICK-on: +.for f in label3d stereo3d + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor -.if ${PORT_OPTIONS:MIMAGEMAGICK} -.for install_file in label3d stereo3d - cd ${WRKSRC} && ${INSTALL_SCRIPT} ${install_file} ${STAGEDIR}${PREFIX}/bin -.endfor -.endif - cd ${WRKSRC}/doc && ${INSTALL_MAN} *.l ${STAGEDIR}${MANLPREFIX}/man/manl - ${MKDIR} ${STAGEDIR}${DATADIR}/materials - cd ${WRKSRC}/materials && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/materials -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/doc && ${INSTALL_DATA} R3D_manual.pdf ${STAGEDIR}${DOCSDIR} - ${MKDIR} ${STAGEDIR}${DOCSDIR}/html - cd ${WRKSRC}/html && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}/html -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/doc/R3D_manual.pdf ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/html/* ${STAGEDIR}${DOCSDIR}/html + +do-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) ${RM} -r ${STAGEDIR}${EXAMPLESDIR}/msms/CVS -.endif .include Modified: head/graphics/raster3d/pkg-plist ============================================================================== --- head/graphics/raster3d/pkg-plist Fri Jun 23 08:55:39 2017 (r444168) +++ head/graphics/raster3d/pkg-plist Fri Jun 23 09:00:07 2017 (r444169) @@ -21,97 +21,6 @@ man/manl/ribbon.l.gz man/manl/rods.l.gz man/manl/normal3d.l.gz man/manl/stereo3d.l.gz -%%PORTDOCS%%%%DOCSDIR%%/R3D_manual.pdf -%%PORTDOCS%%%%DOCSDIR%%/html/README -%%PORTDOCS%%%%DOCSDIR%%/html/avs2ps.html -%%PORTDOCS%%%%DOCSDIR%%/html/balls.html -%%PORTDOCS%%%%DOCSDIR%%/html/index_button.gif -%%PORTDOCS%%%%DOCSDIR%%/html/label3d.html -%%PORTDOCS%%%%DOCSDIR%%/html/normal3d.html -%%PORTDOCS%%%%DOCSDIR%%/html/pdb_anisou.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_animation.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_colorpicker.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_colorpicker.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_colors.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_docbkg.jpg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_docstyle.css -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example1.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example2.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example5.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example6.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example6.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example7.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example8.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_example9.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_examples.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_filters.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_hints.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_icon.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_labels.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_msms.png -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_obj15.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_obj19.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_stereo7.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/r3d_transparent.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3dtops.html -%%PORTDOCS%%%%DOCSDIR%%/html/r3dtops_tex1.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3dtops_tex2.gif -%%PORTDOCS%%%%DOCSDIR%%/html/r3dtops_tex3.gif -%%PORTDOCS%%%%DOCSDIR%%/html/rastep.html -%%PORTDOCS%%%%DOCSDIR%%/html/rastep_options.gif -%%PORTDOCS%%%%DOCSDIR%%/html/raster3d.html -%%PORTDOCS%%%%DOCSDIR%%/html/render.html -%%PORTDOCS%%%%DOCSDIR%%/html/rgb_black.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/rgb_white.jpeg -%%PORTDOCS%%%%DOCSDIR%%/html/rgbmap_black.html -%%PORTDOCS%%%%DOCSDIR%%/html/rgbmap_white.html -%%PORTDOCS%%%%DOCSDIR%%/html/rgbtext.html -%%PORTDOCS%%%%DOCSDIR%%/html/ribbon.html -%%PORTDOCS%%%%DOCSDIR%%/html/rings3d.html -%%PORTDOCS%%%%DOCSDIR%%/html/rods.html -%%PORTDOCS%%%%DOCSDIR%%/html/stereo3d.html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/LT.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README.examples -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chaincolours.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clip.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex5.jpeg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex5_matrix.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex7_header.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex7_helix.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex7_labels.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex7_tex.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex7_titles.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example1.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example1.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example2.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example2.sgi -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3.mol -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example4.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example5.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example5.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example6.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example6.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example7.jpeg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example7.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example7.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example8.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example9.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gal_srf.r3d.gz -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/header1.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/header2.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/header4.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/header8.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msms/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msms/msms2r3d.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msms/msms_example.script -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/plane.r3d -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sugarG.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sugarcolours.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sugars.pdb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparent.r3d %%DATADIR%%/materials/2-sided.r3d %%DATADIR%%/materials/backdrop_1.r3d %%DATADIR%%/materials/backdrop_2.r3d From owner-svn-ports-head@freebsd.org Fri Jun 23 09:02:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6ED31DA0261; Fri, 23 Jun 2017 09:02:18 +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 4B7B37DEBC; Fri, 23 Jun 2017 09:02:18 +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 v5N92HCT024664; Fri, 23 Jun 2017 09:02:17 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N92HQs024660; Fri, 23 Jun 2017 09:02:17 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201706230902.v5N92HQs024660@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 23 Jun 2017 09:02:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444170 - in head/databases: . postgresql-mysql_fdw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 09:02:18 -0000 Author: tz Date: Fri Jun 23 09:02:17 2017 New Revision: 444170 URL: https://svnweb.freebsd.org/changeset/ports/444170 Log: New port: databases/postgresql-mysql_fdw This PostgreSQL extension implements a Foreign Data Wrapper (FDW) for MySQL. The following enhancements are added to the mysql_fdw: Write-able FDW Connection Pooling Where clause push-down Column push-down Prepared Statment Please note that this version of mysql_fdw works with PostgreSQL 9.3, 9.4, 9.5 and 9.6. WWW: https://github.com/EnterpriseDB/mysql_fdw PR: 219636 Submitted by: Jov Added: head/databases/postgresql-mysql_fdw/ head/databases/postgresql-mysql_fdw/Makefile (contents, props changed) head/databases/postgresql-mysql_fdw/distinfo (contents, props changed) head/databases/postgresql-mysql_fdw/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Jun 23 09:00:07 2017 (r444169) +++ head/databases/Makefile Fri Jun 23 09:02:17 2017 (r444170) @@ -661,6 +661,7 @@ SUBDIR += postgresql-libpgeasy SUBDIR += postgresql-libpqxx SUBDIR += postgresql-libpqxx3 + SUBDIR += postgresql-mysql_fdw SUBDIR += postgresql-odbc SUBDIR += postgresql-plproxy SUBDIR += postgresql-plruby Added: head/databases/postgresql-mysql_fdw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql-mysql_fdw/Makefile Fri Jun 23 09:02:17 2017 (r444170) @@ -0,0 +1,30 @@ +# Created by: Jov +# $FreeBSD$ + +PORTNAME= mysql_fdw +PORTVERSION= 2.2.0 +CATEGORIES= databases +PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- + +MAINTAINER= amutu@amutu.com +COMMENT= PostgreSQL foreign data wrapper for MySQL + +LICENSE= PostgreSQL + +USES= gmake pgsql:9.3+ mysql +USE_GITHUB= yes +GH_ACCOUNT= EnterpriseDB +GH_TAGNAME= c14ee1d + +MAKE_ENV= USE_PGXS=1 + +WANT_PGSQL= server + +PLIST_FILES= lib/postgresql/mysql_fdw.so \ + share/postgresql/extension/mysql_fdw--1.0.sql \ + share/postgresql/extension/mysql_fdw.control + +do-patch: + ${SED} -i '.orig' 's/#if defined(__APPLE__)/& || defined(__FreeBSD__)/' ${WRKSRC}/mysql_fdw.c + +.include Added: head/databases/postgresql-mysql_fdw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql-mysql_fdw/distinfo Fri Jun 23 09:02:17 2017 (r444170) @@ -0,0 +1,3 @@ +TIMESTAMP = 1496048192 +SHA256 (EnterpriseDB-mysql_fdw-2.2.0-c14ee1d_GH0.tar.gz) = 531f065a5827ba4f19f222e502b9b224031574845adb5d001d6527a0a601b55f +SIZE (EnterpriseDB-mysql_fdw-2.2.0-c14ee1d_GH0.tar.gz) = 39601 Added: head/databases/postgresql-mysql_fdw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql-mysql_fdw/pkg-descr Fri Jun 23 09:02:17 2017 (r444170) @@ -0,0 +1,11 @@ +This PostgreSQL extension implements a Foreign Data Wrapper (FDW) for MySQL. +The following enhancements are added to the mysql_fdw: + Write-able FDW + Connection Pooling + Where clause push-down + Column push-down + Prepared Statment +Please note that this version of mysql_fdw works with PostgreSQL 9.3, 9.4, 9.5 +and 9.6. + +WWW: https://github.com/EnterpriseDB/mysql_fdw From owner-svn-ports-head@freebsd.org Fri Jun 23 09:12:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AE2ADA0469; Fri, 23 Jun 2017 09:12:17 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7DDD7E261; Fri, 23 Jun 2017 09:12:16 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 3F5C63021; Fri, 23 Jun 2017 09:12:16 +0000 (UTC) Date: Fri, 23 Jun 2017 09:12:16 +0000 From: Alexey Dokuchaev To: Dirk Meyer Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r444162 - head/mail/fdm Message-ID: <20170623091216.GA59301@FreeBSD.org> References: <201706230005.v5N05uAv003195@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <201706230005.v5N05uAv003195@repo.freebsd.org> User-Agent: Mutt/1.8.2 (2017-04-18) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 09:12:17 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jun 23, 2017 at 12:05:56AM +0000, Dirk Meyer wrote: > New Revision: 444162 > URL: https://svnweb.freebsd.org/changeset/ports/444162 > > Log: > - fix build, add MAKE_JOBS_UNSAFE > PR: 220072 > Submitted by: Brad Sliger Why not fix it properly instead, by adding missing dependency of `lex.c' (no other file wants to include `parse.h') on it? See attachment. ./danfe --0F1p//8PRICkK4MW Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="fdm.diff" Index: Makefile =================================================================== --- Makefile (revision 444167) +++ Makefile (working copy) @@ -13,8 +13,6 @@ LIB_DEPENDS= libtdb.so:databases/tdb -MAKE_JOBS_UNSAFE= yes - USE_GITHUB= yes GH_ACCOUNT= nicm USES= autoreconf:build ssl @@ -34,6 +32,7 @@ post-patch: @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/*.[15] ${WRKSRC}/MANUAL + @${ECHO_CMD} 'lex.c: parse.h' >> ${WRKSRC}/Makefile.am pre-configure: @cd ${WRKSRC} && sh autogen.sh --0F1p//8PRICkK4MW-- From owner-svn-ports-head@freebsd.org Fri Jun 23 09:25:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CACA4DA06F1; Fri, 23 Jun 2017 09:25:05 +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 A67E67E810; Fri, 23 Jun 2017 09:25:05 +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 v5N9P4rb032587; Fri, 23 Jun 2017 09:25:04 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N9P4lZ032584; Fri, 23 Jun 2017 09:25:04 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201706230925.v5N9P4lZ032584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Fri, 23 Jun 2017 09:25:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444171 - head/graphics/gnome-video-effects X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 09:25:05 -0000 Author: kwm Date: Fri Jun 23 09:25:04 2017 New Revision: 444171 URL: https://svnweb.freebsd.org/changeset/ports/444171 Log: Update gnome-video-effects to 0.4.3. * This ports describes gstreamer pipelines, make sure we depend on the GStreamer ports that supply the plugin used in these pipelines. * Drop old GNOME repo $ID * Assign this port to the gnome@ pool * Don't depend on bsd.port.mk to add USES=gnome * Add NO_ARCH, no arch dependend files Modified: head/graphics/gnome-video-effects/Makefile head/graphics/gnome-video-effects/distinfo head/graphics/gnome-video-effects/pkg-plist Modified: head/graphics/gnome-video-effects/Makefile ============================================================================== --- head/graphics/gnome-video-effects/Makefile Fri Jun 23 09:02:17 2017 (r444170) +++ head/graphics/gnome-video-effects/Makefile Fri Jun 23 09:25:04 2017 (r444171) @@ -1,17 +1,18 @@ # Created by: Koop Mast # $FreeBSD$ -# $MCom: ports/trunk/graphics/gnome-video-effects/Makefile 19900 2014-09-20 11:28:00Z kwm $ PORTNAME= gnome-video-effects -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.3 CATEGORIES= graphics MASTER_SITES= GNOME -MAINTAINER= kwm@FreeBSD.org +MAINTAINER= gnome@FreeBSD.org COMMENT= Collection of Gstreamer effects -USE_GNOME= intlhack -USES= gettext gmake pathfix tar:xz +USE_GNOME= intltool +USES= gettext gmake gnome pathfix tar:xz GNU_CONFIGURE= yes +USE_GSTREAMER1= good bad +NO_ARCH= yes .include Modified: head/graphics/gnome-video-effects/distinfo ============================================================================== --- head/graphics/gnome-video-effects/distinfo Fri Jun 23 09:02:17 2017 (r444170) +++ head/graphics/gnome-video-effects/distinfo Fri Jun 23 09:25:04 2017 (r444171) @@ -1,2 +1,3 @@ -SHA256 (gnome-video-effects-0.4.1.tar.xz) = 34be42713a97caf698b84ce7e1158aa21cc0977df7f7a7477cece226bc8d844a -SIZE (gnome-video-effects-0.4.1.tar.xz) = 145016 +TIMESTAMP = 1498206851 +SHA256 (gnome-video-effects-0.4.3.tar.xz) = 5a7ee0f5ade4b7d921f1b99f3b97d7d7bb830f2fef0f1daee20a7a1867708219 +SIZE (gnome-video-effects-0.4.3.tar.xz) = 142100 Modified: head/graphics/gnome-video-effects/pkg-plist ============================================================================== --- head/graphics/gnome-video-effects/pkg-plist Fri Jun 23 09:02:17 2017 (r444170) +++ head/graphics/gnome-video-effects/pkg-plist Fri Jun 23 09:25:04 2017 (r444171) @@ -10,7 +10,7 @@ share/gnome-video-effects/flip.effect share/gnome-video-effects/heat.effect share/gnome-video-effects/historical.effect share/gnome-video-effects/hulk.effect -share/gnome-video-effects/invertion.effect +share/gnome-video-effects/inversion.effect share/gnome-video-effects/kaleidoscope.effect share/gnome-video-effects/mauve.effect share/gnome-video-effects/mirror.effect From owner-svn-ports-head@freebsd.org Fri Jun 23 09:28:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2677CDA07A0; Fri, 23 Jun 2017 09:28:18 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E95357EA56; Fri, 23 Jun 2017 09:28:17 +0000 (UTC) (envelope-from knu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5N9SHYu032847; Fri, 23 Jun 2017 09:28:17 GMT (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N9SGwC032845; Fri, 23 Jun 2017 09:28:16 GMT (envelope-from knu@FreeBSD.org) Message-Id: <201706230928.v5N9SGwC032845@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: knu set sender to knu@FreeBSD.org using -f From: Akinori MUSHA Date: Fri, 23 Jun 2017 09:28:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444172 - head/databases/mysql-q4m X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 09:28:18 -0000 Author: knu Date: Fri Jun 23 09:28:16 2017 New Revision: 444172 URL: https://svnweb.freebsd.org/changeset/ports/444172 Log: Unbreak and update to 0.9.14 Modified: head/databases/mysql-q4m/Makefile head/databases/mysql-q4m/distinfo Modified: head/databases/mysql-q4m/Makefile ============================================================================== --- head/databases/mysql-q4m/Makefile Fri Jun 23 09:25:04 2017 (r444171) +++ head/databases/mysql-q4m/Makefile Fri Jun 23 09:28:16 2017 (r444172) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= q4m -PORTVERSION= 0.9.13 -PORTREVISION= 3 +PORTVERSION= 0.9.14 CATEGORIES= databases MASTER_SITES= http://q4m.kazuhooku.com/dist/ PKGNAMEPREFIX= ${_MYSQL_SERVER:T:C/-server$/-/} @@ -11,21 +10,20 @@ PKGNAMEPREFIX= ${_MYSQL_SERVER:T:C/-server$/-/} MAINTAINER= knu@FreeBSD.org COMMENT= Message queue that works as a pluggable storage engine of MySQL -FETCH_DEPENDS+= ${NONEXISTENT}:${_MYSQL_SERVER}:build +FETCH_DEPENDS+= ${NONEXISTENT}:${_MYSQL_SERVER}:fetch +BUILD_DEPENDS+= ${NONEXISTENT}:${_MYSQL_SERVER}:build -BROKEN= does not build (ha_queue.cc:35:27: fatal error: mysql_version.h: No such file or directory) - USES= gmake perl5 libtool USE_MYSQL= server USE_GCC= any USE_PERL5= run GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -DDBUG_OFF -LDFLAGS+= -lpthread -L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql +LDFLAGS+= -lpthread -L${LOCALBASE}/lib/mysql CONFIGURE_ARGS= --prefix="${PREFIX}" \ --libdir="${PREFIX}/lib/mysql/plugin" \ - --with-mysql="$$(cd ${PORTSDIR}/${_MYSQL_SERVER}; ${MAKE} -V WRKSRC)" + --with-mysql="$$(cd ${PORTSDIR}/${_MYSQL_SERVER}; ${MAKE} -V WRKSRC)" \ + CPPFLAGS="-I$$(cd ${PORTSDIR}/${_MYSQL_SERVER}; ${MAKE} -V BUILD_WRKSRC)/include -DDEBUG_OFF" INSTALL_TARGET= bindir=${STAGEDIR}${PREFIX}/bin install post-extract: Modified: head/databases/mysql-q4m/distinfo ============================================================================== --- head/databases/mysql-q4m/distinfo Fri Jun 23 09:25:04 2017 (r444171) +++ head/databases/mysql-q4m/distinfo Fri Jun 23 09:28:16 2017 (r444172) @@ -1,2 +1,3 @@ -SHA256 (q4m-0.9.13.tar.gz) = fec473030e65895a6a4ac88e10f53fcfc6ec005607a0313be6b074e1079bf1a7 -SIZE (q4m-0.9.13.tar.gz) = 1664407 +TIMESTAMP = 1481686487 +SHA256 (q4m-0.9.14.tar.gz) = 26f6242fb56580a3bd16fd025012fac3b264be6269255532d1398273b1d7792a +SIZE (q4m-0.9.14.tar.gz) = 1665552 From owner-svn-ports-head@freebsd.org Fri Jun 23 09:44:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5EEEDA0AD0; Fri, 23 Jun 2017 09:44:33 +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 8837E7F1A8; Fri, 23 Jun 2017 09:44:33 +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 v5N9iWIm041094; Fri, 23 Jun 2017 09:44:32 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5N9iWcq041091; Fri, 23 Jun 2017 09:44:32 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201706230944.v5N9iWcq041091@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Fri, 23 Jun 2017 09:44:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444173 - head/multimedia/totem-pl-parser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 09:44:33 -0000 Author: kwm Date: Fri Jun 23 09:44:32 2017 New Revision: 444173 URL: https://svnweb.freebsd.org/changeset/ports/444173 Log: Update totem-pl-parser to 3.10.8. * Disable detection of gmime-3.0, for now. Modified: head/multimedia/totem-pl-parser/Makefile head/multimedia/totem-pl-parser/distinfo head/multimedia/totem-pl-parser/pkg-plist Modified: head/multimedia/totem-pl-parser/Makefile ============================================================================== --- head/multimedia/totem-pl-parser/Makefile Fri Jun 23 09:28:16 2017 (r444172) +++ head/multimedia/totem-pl-parser/Makefile Fri Jun 23 09:44:32 2017 (r444173) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= totem-pl-parser -PORTVERSION= 3.10.7 +PORTVERSION= 3.10.8 CATEGORIES= multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -31,5 +31,9 @@ OPTIONS_DEFAULT=QUVI QUVI_DESC= Flash media stream URL support QUVI_CONFIGURE_ENABLE= quvi QUVI_LIB_DEPENDS= libquvi-0.9.so:multimedia/libquvi09 + +post-patch: + @${REINPLACE_CMD} -e 's|gmime-3.0|disabled-gmime-3.0|g' \ + ${WRKSRC}/configure .include Modified: head/multimedia/totem-pl-parser/distinfo ============================================================================== --- head/multimedia/totem-pl-parser/distinfo Fri Jun 23 09:28:16 2017 (r444172) +++ head/multimedia/totem-pl-parser/distinfo Fri Jun 23 09:44:32 2017 (r444173) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477062322 -SHA256 (gnome2/totem-pl-parser-3.10.7.tar.xz) = 9c8285bc3131faa309d5cba5a919d5166abc2b8cc5a0c850fe861be8b14e089c -SIZE (gnome2/totem-pl-parser-3.10.7.tar.xz) = 1608864 +TIMESTAMP = 1498210013 +SHA256 (gnome2/totem-pl-parser-3.10.8.tar.xz) = ffc50a0713d5f3049912545169eea7d367483b2c4a868032940516ed1e78dd2b +SIZE (gnome2/totem-pl-parser-3.10.8.tar.xz) = 1618992 Modified: head/multimedia/totem-pl-parser/pkg-plist ============================================================================== --- head/multimedia/totem-pl-parser/pkg-plist Fri Jun 23 09:28:16 2017 (r444172) +++ head/multimedia/totem-pl-parser/pkg-plist Fri Jun 23 09:44:32 2017 (r444173) @@ -18,12 +18,10 @@ libdata/pkgconfig/totem-plparser.pc %%DOCSDIR%%/TotemPlParser.html %%DOCSDIR%%/TotemPlPlaylist.html %%DOCSDIR%%/annotation-glossary.html -%%DOCSDIR%%/api-index-deprecated.html %%DOCSDIR%%/api-index-full.html %%DOCSDIR%%/api-reference.html %%DOCSDIR%%/home.png %%DOCSDIR%%/index.html -%%DOCSDIR%%/ix02.html %%DOCSDIR%%/left-insensitive.png %%DOCSDIR%%/left.png %%DOCSDIR%%/right-insensitive.png From owner-svn-ports-head@freebsd.org Fri Jun 23 10:45:12 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3475DA1B8A; Fri, 23 Jun 2017 10:45:12 +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 A216980D7E; Fri, 23 Jun 2017 10:45:12 +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 v5NAjBPY065963; Fri, 23 Jun 2017 10:45:11 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NAjBMv065961; Fri, 23 Jun 2017 10:45:11 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706231045.v5NAjBMv065961@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 23 Jun 2017 10:45:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444174 - head/emulators/citra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 10:45:12 -0000 Author: jbeich Date: Fri Jun 23 10:45:11 2017 New Revision: 444174 URL: https://svnweb.freebsd.org/changeset/ports/444174 Log: emulators/citra: update to s20170622 Changes: https://github.com/citra-emu/citra/compare/ac168eeb5...cac1133bc MFH: 2017Q2 Modified: head/emulators/citra/Makefile (contents, props changed) head/emulators/citra/distinfo (contents, props changed) Modified: head/emulators/citra/Makefile ============================================================================== --- head/emulators/citra/Makefile Fri Jun 23 09:44:32 2017 (r444173) +++ head/emulators/citra/Makefile Fri Jun 23 10:45:11 2017 (r444174) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20170613 +PORTVERSION= s20170622 PORTREVISION?= 0 CATEGORIES= emulators @@ -29,9 +29,9 @@ ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dy USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= ac168eeb5 +GH_TAGNAME= cac1133bc GH_TUPLE= citra-emu:ext-soundtouch:5274ec4:soundtouch/externals/soundtouch \ - MerryMage:dynarmic:7707ff1:dynarmic/externals/dynarmic \ + MerryMage:dynarmic:8f15e3f:dynarmic/externals/dynarmic \ fmtlib:fmt:3.0.0-187-gac5484c:fmt/externals/fmt \ herumi:xbyak:v5.40:xbyak/externals/xbyak \ neobrain:nihstro:7e24743:nihstro/externals/nihstro \ Modified: head/emulators/citra/distinfo ============================================================================== --- head/emulators/citra/distinfo Fri Jun 23 09:44:32 2017 (r444173) +++ head/emulators/citra/distinfo Fri Jun 23 10:45:11 2017 (r444174) @@ -1,10 +1,10 @@ -TIMESTAMP = 1497380458 -SHA256 (citra-emu-citra-s20170613-ac168eeb5_GH0.tar.gz) = 0289a85717e893c23e7deed9a1d60336b4560922dca5fa53c5f0b5cc01be0091 -SIZE (citra-emu-citra-s20170613-ac168eeb5_GH0.tar.gz) = 2261570 +TIMESTAMP = 1498183203 +SHA256 (citra-emu-citra-s20170622-cac1133bc_GH0.tar.gz) = 5a7164c55f8ca147b40e33ad80119a8e84714b6f19cfc721b24da3f072425948 +SIZE (citra-emu-citra-s20170622-cac1133bc_GH0.tar.gz) = 2264625 SHA256 (citra-emu-ext-soundtouch-5274ec4_GH0.tar.gz) = de5e101818ba38b5ea30d8cde0b2b788b53bc7c0f5d77b380b8968569872c2cb SIZE (citra-emu-ext-soundtouch-5274ec4_GH0.tar.gz) = 34535 -SHA256 (MerryMage-dynarmic-7707ff1_GH0.tar.gz) = 3f3a2158b0ee5550ad1c7edfc1144a3d7936a7130f3d36a8e71f9fd95996bd55 -SIZE (MerryMage-dynarmic-7707ff1_GH0.tar.gz) = 420317 +SHA256 (MerryMage-dynarmic-8f15e3f_GH0.tar.gz) = 3e5b184c8d190849374fa426ee6a511f3375682232b46aaa8e060632eaa4cadb +SIZE (MerryMage-dynarmic-8f15e3f_GH0.tar.gz) = 420423 SHA256 (fmtlib-fmt-3.0.0-187-gac5484c_GH0.tar.gz) = 1400d4e807c5bb0329e44784210bbabddd4f42103f3d9d86c8d3d97188bc9975 SIZE (fmtlib-fmt-3.0.0-187-gac5484c_GH0.tar.gz) = 615682 SHA256 (herumi-xbyak-v5.40_GH0.tar.gz) = 106bbe15dc7e5d025ff98d1b5dd62a3f0a26d2569debe77fcde14852d50a66e1 From owner-svn-ports-head@freebsd.org Fri Jun 23 11:24:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6C9EDA25B6; Fri, 23 Jun 2017 11:24:27 +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 AAB9181C5C; Fri, 23 Jun 2017 11:24:27 +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 v5NBOQ2L082162; Fri, 23 Jun 2017 11:24:26 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NBOQ2u082159; Fri, 23 Jun 2017 11:24:26 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201706231124.v5NBOQ2u082159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 23 Jun 2017 11:24:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444175 - head/graphics/xface.el X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 11:24:28 -0000 Author: matthew Date: Fri Jun 23 11:24:26 2017 New Revision: 444175 URL: https://svnweb.freebsd.org/changeset/ports/444175 Log: Simplify port by removing support for emacs versions no longer available from ports. Add license Add do-install-DOCS-on target PR: 213187 Submitted by: yasu@utahime.org Modified: head/graphics/xface.el/Makefile head/graphics/xface.el/distinfo head/graphics/xface.el/pkg-plist Modified: head/graphics/xface.el/Makefile ============================================================================== --- head/graphics/xface.el/Makefile Fri Jun 23 10:45:11 2017 (r444174) +++ head/graphics/xface.el/Makefile Fri Jun 23 11:24:26 2017 (r444175) @@ -3,36 +3,24 @@ PORTNAME= xface.el PORTVERSION= 1.3.6.24 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= graphics elisp MASTER_SITES= http://www.jpl.org/ftp/pub/elisp/ \ ftp://ftp.jpl.org/pub/elisp/ PKGNAMESUFFIX= -${EMACS_PORT_NAME} DISTNAME= x-face-${PORTVERSION} -DISTFILES= ${DISTNAME}.tar.gz \ - x-face-e21.el.gz -EXTRACT_ONLY= ${DISTNAME}.tar.gz MAINTAINER= ports@FreeBSD.org COMMENT= X-Face encoder/decoder/viewer for Emacsen -EMACS_PORT_NAME?= emacs25 +LICENSE= GPLv2+ RUN_DEPENDS= compface:mail/faces USE_EMACS= yes LISP_FILES= x-face -.if (${EMACS_PORT_NAME} == xemacs21 || ${EMACS_PORT_NAME} == xemacs21-mule) -LISPDIR= ${EMACS_SITE_LISPDIR}/x-face -LISP_FILES+= x-face-xmas -PLIST_SUB+= E21_ONLY="@comment " \ - XEMACS_ONLY="" -.else LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/x-face -PLIST_SUB+= E21_ONLY="@comment " \ - XEMACS_ONLY="@comment " -.endif PLIST_SUB+= LISPDIR=${LISPDIR} \ DOCSDIR=share/doc/${PORTNAME} @@ -44,6 +32,8 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${i}.el ${WRKSRC}/${i}.elc \ ${STAGEDIR}${PREFIX}/${LISPDIR} .endfor + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} METHOD.ja README.ja README-Anim.ja \ TODO.ja ${STAGEDIR}${DOCSDIR}) Modified: head/graphics/xface.el/distinfo ============================================================================== --- head/graphics/xface.el/distinfo Fri Jun 23 10:45:11 2017 (r444174) +++ head/graphics/xface.el/distinfo Fri Jun 23 11:24:26 2017 (r444175) @@ -1,4 +1,3 @@ +TIMESTAMP = 1475572879 SHA256 (x-face-1.3.6.24.tar.gz) = 9b94b09ce48a58a3241468236628c35dee1ad6697782936ac6d7fab17c7e414a SIZE (x-face-1.3.6.24.tar.gz) = 82489 -SHA256 (x-face-e21.el.gz) = 1e0b5f88938f1db76cfc18c2ac176125693a510e9fb20e65831a3c5bf2bfc76c -SIZE (x-face-e21.el.gz) = 21930 Modified: head/graphics/xface.el/pkg-plist ============================================================================== --- head/graphics/xface.el/pkg-plist Fri Jun 23 10:45:11 2017 (r444174) +++ head/graphics/xface.el/pkg-plist Fri Jun 23 11:24:26 2017 (r444175) @@ -1,9 +1,5 @@ %%LISPDIR%%/x-face.el %%LISPDIR%%/x-face.elc -%%XEMACS_ONLY%%%%LISPDIR%%/x-face-xmas.el -%%XEMACS_ONLY%%%%LISPDIR%%/x-face-xmas.elc -%%E21_ONLY%%%%LISPDIR%%/x-face-e21.el -%%E21_ONLY%%%%LISPDIR%%/x-face-e21.elc %%PORTDOCS%%%%DOCSDIR%%/METHOD.ja %%PORTDOCS%%%%DOCSDIR%%/README.ja %%PORTDOCS%%%%DOCSDIR%%/README-Anim.ja From owner-svn-ports-head@freebsd.org Fri Jun 23 11:54:01 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D5F4DA2B0C; Fri, 23 Jun 2017 11:54:01 +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 1D7AD826DA; Fri, 23 Jun 2017 11:54:01 +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 v5NBs0tb094174; Fri, 23 Jun 2017 11:54:00 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NBs05w094172; Fri, 23 Jun 2017 11:54:00 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201706231154.v5NBs05w094172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 23 Jun 2017 11:54:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444176 - head/japanese/mecab-ipadic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 11:54:01 -0000 Author: matthew Date: Fri Jun 23 11:53:59 2017 New Revision: 444176 URL: https://svnweb.freebsd.org/changeset/ports/444176 Log: - Add LICENSE when it it metaport. - Simplify *_BUILD_DEPENS. - Update WWW. PR: 213328 Submitted by: yasu@utahime.org (maintainer) Modified: head/japanese/mecab-ipadic/Makefile head/japanese/mecab-ipadic/distinfo head/japanese/mecab-ipadic/pkg-descr Modified: head/japanese/mecab-ipadic/Makefile ============================================================================== --- head/japanese/mecab-ipadic/Makefile Fri Jun 23 11:24:26 2017 (r444175) +++ head/japanese/mecab-ipadic/Makefile Fri Jun 23 11:53:59 2017 (r444176) @@ -10,7 +10,17 @@ MASTER_SITES= https://drive.google.com/uc?export=downl MAINTAINER= yasu@utahime.org COMMENT?= MeCab IPA dictionary meta-port +LICENSE= NAIST ICOT +LICENSE_COMB= multi +LICENSE_NAME_NAIST= NAIST +LICENSE_NAME_ICOT= ICOT +LICENSE_PERMS_NAIST= ${_LICENSE_PERMS_DEFAULT} +LICENSE_PERMS_ICOT= ${_LICENSE_PERMS_DEFAULT} + .if empty(PKGNAMESUFFIX) +LICENSE_TEXT_NAIST= See https://github.com/taku910/mecab/blob/master/mecab-ipadic/COPYING +LICENSE_TEXT_ICOT= See https://github.com/taku910/mecab/blob/master/mecab-ipadic/COPYING + USES= metaport OPTIONS_RADIO= CHARSET OPTIONS_RADIO_CHARSET= EUCJP SHIFTJIS UTF8 @@ -19,20 +29,14 @@ OPTIONS_DEFAULT= UTF8 EUCJP_DESC= Use EUC-JP as dictionary charset. SHIFTJIS_DESC= Use SHIFT-JIS as dictionary charset. UTF8_DESC= Use UTF-8 as dictionary charset. -EUCJP_RUN_DEPENDS= ${LOCALBASE}/lib/mecab/dic/ipadic/char.bin:japanese/mecab-ipadic-eucjp -SHIFTJIS_RUN_DEPENDS= ${LOCALBASE}/lib/mecab/dic/ipadic/char.bin:japanese/mecab-ipadic-sjis -UTF8_RUN_DEPENDS= ${LOCALBASE}/lib/mecab/dic/ipadic/char.bin:japanese/mecab-ipadic-utf8 +EUCJP_RUN_DEPENDS= ja-mecab-ipadic-eucjp>0:japanese/mecab-ipadic-eucjp +SHIFTJIS_RUN_DEPENDS= ja-mecab-ipadic-sjis>0:japanese/mecab-ipadic-sjis +UTF8_RUN_DEPENDS= ja-mecab-ipadic-utf8>0:japanese/mecab-ipadic-utf8 .endif .if !empty(PKGNAMESUFFIX) -LICENSE= NAIST ICOT -LICENSE_COMB= multi -LICENSE_NAME_NAIST= NAIST -LICENSE_NAME_ICOT= ICOT LICENSE_FILE_NAIST= ${WRKSRC}/COPYING LICENSE_FILE_ICOT= ${WRKSRC}/COPYING -LICENSE_PERMS_NAIST= ${_LICENSE_PERMS_DEFAULT} -LICENSE_PERMS_ICOT= ${_LICENSE_PERMS_DEFAULT} BUILD_DEPENDS= ja-mecab>=0.94:japanese/mecab Modified: head/japanese/mecab-ipadic/distinfo ============================================================================== --- head/japanese/mecab-ipadic/distinfo Fri Jun 23 11:24:26 2017 (r444175) +++ head/japanese/mecab-ipadic/distinfo Fri Jun 23 11:53:59 2017 (r444176) @@ -1,2 +1,3 @@ +TIMESTAMP = 1498217854 SHA256 (mecab-ipadic-2.7.0-20070801.tar.gz) = b62f527d881c504576baed9c6ef6561554658b175ce6ae0096a60307e49e3523 SIZE (mecab-ipadic-2.7.0-20070801.tar.gz) = 12208105 Modified: head/japanese/mecab-ipadic/pkg-descr ============================================================================== --- head/japanese/mecab-ipadic/pkg-descr Fri Jun 23 11:24:26 2017 (r444175) +++ head/japanese/mecab-ipadic/pkg-descr Fri Jun 23 11:53:59 2017 (r444176) @@ -1,3 +1,3 @@ Japanese Morphological Dictionary for MeCab. -WWW: https://code.google.com/p/mecab/ +WWW: http://taku910.github.io/mecab/ From owner-svn-ports-head@freebsd.org Fri Jun 23 12:29:49 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2C88DA3B66; Fri, 23 Jun 2017 12:29:49 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 71D27838DE; Fri, 23 Jun 2017 12:29:49 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NCTm4G006829; Fri, 23 Jun 2017 12:29:48 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NCTm7W006826; Fri, 23 Jun 2017 12:29:48 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201706231229.v5NCTm7W006826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 23 Jun 2017 12:29:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444177 - head/net-im/mastodon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 12:29:49 -0000 Author: jrm Date: Fri Jun 23 12:29:48 2017 New Revision: 444177 URL: https://svnweb.freebsd.org/changeset/ports/444177 Log: net-im/mastodon: Update to version 1.4.5 Upstream changes: https://github.com/tootsuite/mastodon/releases/tag/v1.4.5 Modified: head/net-im/mastodon/Makefile head/net-im/mastodon/distinfo head/net-im/mastodon/pkg-plist Modified: head/net-im/mastodon/Makefile ============================================================================== --- head/net-im/mastodon/Makefile Fri Jun 23 11:53:59 2017 (r444176) +++ head/net-im/mastodon/Makefile Fri Jun 23 12:29:48 2017 (r444177) @@ -2,7 +2,7 @@ PORTNAME= mastodon DISTVERSIONPREFIX= v -DISTVERSION= 1.4.4 +DISTVERSION= 1.4.5 CATEGORIES= net-im www MAINTAINER= jrm@FreeBSD.org Modified: head/net-im/mastodon/distinfo ============================================================================== --- head/net-im/mastodon/distinfo Fri Jun 23 11:53:59 2017 (r444176) +++ head/net-im/mastodon/distinfo Fri Jun 23 12:29:48 2017 (r444177) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498068913 -SHA256 (tootsuite-mastodon-v1.4.4_GH0.tar.gz) = 50da9b370bc1adda58b0218ae0d2af71a9638abf6d16566b636e577e63a9e366 -SIZE (tootsuite-mastodon-v1.4.4_GH0.tar.gz) = 10184510 +TIMESTAMP = 1498215197 +SHA256 (tootsuite-mastodon-v1.4.5_GH0.tar.gz) = cc9e9f7b917d381d0e65876cc859bd722f831908e900f3687b93a5f02a057e79 +SIZE (tootsuite-mastodon-v1.4.5_GH0.tar.gz) = 10186972 Modified: head/net-im/mastodon/pkg-plist ============================================================================== --- head/net-im/mastodon/pkg-plist Fri Jun 23 11:53:59 2017 (r444176) +++ head/net-im/mastodon/pkg-plist Fri Jun 23 12:29:48 2017 (r444177) @@ -5357,6 +5357,7 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/spec_helper.rb %%WWWDIR%%/spec/support/examples/lib/settings/scoped_settings.rb %%WWWDIR%%/spec/support/examples/lib/settings/settings_extended.rb +%%WWWDIR%%/spec/support/examples/models/concerns/account_avatar.rb %%WWWDIR%%/spec/support/matchers/model/model_have_error_on_field.rb %%WWWDIR%%/spec/views/about/_contact.html.haml_spec.rb %%WWWDIR%%/spec/views/about/_links.html.haml_spec.rb From owner-svn-ports-head@freebsd.org Fri Jun 23 13:47:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9ECD8DA4FD3; Fri, 23 Jun 2017 13:47:00 +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 6E712116A; Fri, 23 Jun 2017 13:47:00 +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 v5NDkxQM045394; Fri, 23 Jun 2017 13:46:59 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NDkwJO045387; Fri, 23 Jun 2017 13:46:58 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706231346.v5NDkwJO045387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 23 Jun 2017 13:46:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444179 - in head/lang: erlang erlang-java erlang-wx erlang-wx/files erlang/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 13:47:00 -0000 Author: olgeni Date: Fri Jun 23 13:46:58 2017 New Revision: 444179 URL: https://svnweb.freebsd.org/changeset/ports/444179 Log: Update Erlang ports to version 20.0. Deleted: head/lang/erlang-wx/files/ head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp Modified: head/lang/erlang-java/Makefile head/lang/erlang-java/distinfo head/lang/erlang-wx/Makefile head/lang/erlang-wx/distinfo head/lang/erlang/Makefile head/lang/erlang/distinfo head/lang/erlang/pkg-plist (contents, props changed) Modified: head/lang/erlang-java/Makefile ============================================================================== --- head/lang/erlang-java/Makefile Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang-java/Makefile Fri Jun 23 13:46:58 2017 (r444179) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.3.6 +PORTVERSION= 20.0 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -14,8 +14,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ - patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 +PATCHFILES= MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang interface for Java @@ -32,14 +31,14 @@ MAKE_JOBS_UNSAFE=yes OPTIONS_DEFINE= DOCS -ERL_RELEASE= 19.3 +ERL_RELEASE= 20.0 USES= gmake ncurses perl5 USE_PERL5= build GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -APP_VERSION= 1.7.1 +APP_VERSION= 1.8 APP_DIR= ${PREFIX}/lib/erlang/lib/jinterface-${APP_VERSION} .include Modified: head/lang/erlang-java/distinfo ============================================================================== --- head/lang/erlang-java/distinfo Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang-java/distinfo Fri Jun 23 13:46:58 2017 (r444179) @@ -1,17 +1,5 @@ -TIMESTAMP = 1496937518 -SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 -SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 -SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c -SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 -SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd -SIZE (erlang/patch-otp-19.3.1) = 30225 -SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a -SIZE (erlang/patch-otp-19.3.2) = 6290 -SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 -SIZE (erlang/patch-otp-19.3.3) = 12525 -SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af -SIZE (erlang/patch-otp-19.3.4) = 13504 -SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 -SIZE (erlang/patch-otp-19.3.5) = 44563 -SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 -SIZE (erlang/patch-otp-19.3.6) = 13073 +TIMESTAMP = 1498165640 +SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 +SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 +SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a +SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 Modified: head/lang/erlang-wx/Makefile ============================================================================== --- head/lang/erlang-wx/Makefile Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang-wx/Makefile Fri Jun 23 13:46:58 2017 (r444179) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.3.6 +PORTVERSION= 20.0 CATEGORIES= lang parallel MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -14,8 +14,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ - patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 +PATCHFILES= MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang bindings for wxWindows @@ -33,14 +32,14 @@ MAKE_JOBS_UNSAFE=yes OPTIONS_DEFINE= DOCS -ERL_RELEASE= 19.3 +ERL_RELEASE= 20.0 USES= gmake USE_GL= gl glu GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -APP_VERSION= 1.8 +APP_VERSION= 1.8.1 APP_DIR= ${PREFIX}/lib/erlang/lib/wx-${APP_VERSION} .include Modified: head/lang/erlang-wx/distinfo ============================================================================== --- head/lang/erlang-wx/distinfo Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang-wx/distinfo Fri Jun 23 13:46:58 2017 (r444179) @@ -1,17 +1,5 @@ -TIMESTAMP = 1496937511 -SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 -SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 -SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c -SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 -SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd -SIZE (erlang/patch-otp-19.3.1) = 30225 -SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a -SIZE (erlang/patch-otp-19.3.2) = 6290 -SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 -SIZE (erlang/patch-otp-19.3.3) = 12525 -SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af -SIZE (erlang/patch-otp-19.3.4) = 13504 -SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 -SIZE (erlang/patch-otp-19.3.5) = 44563 -SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 -SIZE (erlang/patch-otp-19.3.6) = 13073 +TIMESTAMP = 1498166065 +SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 +SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 +SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a +SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang/Makefile Fri Jun 23 13:46:58 2017 (r444179) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 19.3.6 +PORTVERSION= 20.0 PORTEPOCH= 3 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ @@ -20,8 +20,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ - patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 +PATCHFILES= MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -66,7 +65,7 @@ OPTIONS_EXCLUDE_i386= DTRACE # ld(1) fails to link probes: missing __dtrace_erlang___* symbols OPTIONS_EXCLUDE_aarch64= DTRACE -ERL_RELEASE= 19.3 +ERL_RELEASE= 20.0 USES= gmake ncurses perl5 USE_PERL5= build @@ -74,9 +73,9 @@ USE_RC_SUBR= epmd GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -EI_VSN= 3.9.3 -SNMP_VSN= 5.2.5 -TOOLS_VSN= 2.9.1 +EI_VSN= 3.10 +SNMP_VSN= 5.2.6 +TOOLS_VSN= 2.10 .include @@ -234,35 +233,6 @@ post-install: .if ${PORT_OPTIONS:MDOCS} ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3.5 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.3/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.4 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.3 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.6/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.9 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.6 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.1/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.2 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.1 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.1/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.3 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.1 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1.1 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1 - - ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.13/* \ - ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.14 - ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.13 - ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/lang/erlang/distinfo ============================================================================== --- head/lang/erlang/distinfo Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang/distinfo Fri Jun 23 13:46:58 2017 (r444179) @@ -1,10 +1,10 @@ -TIMESTAMP = 1496937493 -SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 -SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 -SHA256 (erlang/otp_doc_man_19.3.tar.gz) = f8192ffdd7367083c055695eeddf198155da43dcc221aed1d870d1e3871dd95c -SIZE (erlang/otp_doc_man_19.3.tar.gz) = 1410781 -SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c -SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 +TIMESTAMP = 1498164950 +SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 +SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 +SHA256 (erlang/otp_doc_man_20.0.tar.gz) = b7f1542a94a170f8791f5d80a85706f9e8838924ea65d4301032d0c0cfb845cc +SIZE (erlang/otp_doc_man_20.0.tar.gz) = 1430939 +SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a +SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 SHA256 (erlang/armstrong_thesis_2003.pdf) = da585b914eb07350e2d6f727db5eb0fb1551f49fc1270f7d4dc079f2c8c1ab7a SIZE (erlang/armstrong_thesis_2003.pdf) = 859249 SHA256 (erlang/bjarnelic.pdf) = 9544d4af5cea324e5c9cf77e670d9561ad61ddc240cdb5c2afecebc0a3d7429b @@ -17,15 +17,3 @@ SHA256 (erlang/mnesia_overview.pdf) = f07f9edd4ba865a1 SIZE (erlang/mnesia_overview.pdf) = 150266 SHA256 (erlang/programming_rules.pdf) = b95f8851004832b044e064c12976a422613ece897e98308a27ee8b66738b4502 SIZE (erlang/programming_rules.pdf) = 77025 -SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd -SIZE (erlang/patch-otp-19.3.1) = 30225 -SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a -SIZE (erlang/patch-otp-19.3.2) = 6290 -SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 -SIZE (erlang/patch-otp-19.3.3) = 12525 -SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af -SIZE (erlang/patch-otp-19.3.4) = 13504 -SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 -SIZE (erlang/patch-otp-19.3.5) = 44563 -SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 -SIZE (erlang/patch-otp-19.3.6) = 13073 Modified: head/lang/erlang/pkg-plist ============================================================================== --- head/lang/erlang/pkg-plist Fri Jun 23 12:52:40 2017 (r444178) +++ head/lang/erlang/pkg-plist Fri Jun 23 13:46:58 2017 (r444179) @@ -8,7 +8,6 @@ bin/escript bin/run_erl bin/snmpc bin/to_erl -bin/typer etc/man.d/erlang.conf %%PORTDOCS%%%%DOCSDIR%%/armstrong_thesis_2003.pdf %%PORTDOCS%%%%DOCSDIR%%/bjarnelic.pdf From owner-svn-ports-head@freebsd.org Fri Jun 23 13:50:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A30B8DA510F; Fri, 23 Jun 2017 13:50:23 +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 5C77E14F1; Fri, 23 Jun 2017 13:50:23 +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 v5NDoM4h045966; Fri, 23 Jun 2017 13:50:22 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NDoKrU045947; Fri, 23 Jun 2017 13:50:20 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706231350.v5NDoKrU045947@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 23 Jun 2017 13:50:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444180 - in head: archivers/erlang-snappy archivers/erlang-snappy/files databases/couchdb databases/couchdb/files devel/elixir-conform devel/erlang-cuttlefish devel/erlang-cuttlefish/f... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 13:50:23 -0000 Author: olgeni Date: Fri Jun 23 13:50:20 2017 New Revision: 444180 URL: https://svnweb.freebsd.org/changeset/ports/444180 Log: Fix some Erlang ports for version 20.0. Added: head/archivers/erlang-snappy/files/ head/archivers/erlang-snappy/files/patch-rebar.config (contents, props changed) head/devel/erlang-msgpack/files/ head/devel/erlang-msgpack/files/patch-rebar.config (contents, props changed) head/graphics/wings/files/patch-src_Makefile (contents, props changed) Modified: head/archivers/erlang-snappy/Makefile head/databases/couchdb/Makefile head/databases/couchdb/files/patch-configure head/devel/elixir-conform/Makefile head/devel/elixir-conform/distinfo head/devel/erlang-cuttlefish/Makefile head/devel/erlang-cuttlefish/files/patch-rebar.config head/devel/erlang-erlware_commons/Makefile head/devel/erlang-erlware_commons/files/patch-rebar.config head/devel/erlang-erlware_commons/files/patch-rebar.config.script head/devel/erlang-msgpack/Makefile head/devel/erlang-unicode_util_compat/Makefile head/devel/erlang-unicode_util_compat/pkg-plist head/graphics/wings/Makefile head/graphics/wings/files/patch-e3d_e3d__qbvh.erl head/graphics/wings/files/patch-intl__tools_tools.erl Modified: head/archivers/erlang-snappy/Makefile ============================================================================== --- head/archivers/erlang-snappy/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/archivers/erlang-snappy/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -3,6 +3,7 @@ PORTNAME= snappy PORTVERSION= 1.1.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= archivers PKGNAMEPREFIX= erlang- Added: head/archivers/erlang-snappy/files/patch-rebar.config ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/erlang-snappy/files/patch-rebar.config Fri Jun 23 13:50:20 2017 (r444180) @@ -0,0 +1,8 @@ +--- rebar.config.orig 2017-06-23 09:04:51 UTC ++++ rebar.config +@@ -1,4 +1,4 @@ +-{require_otp_vsn, "R13B04|R14|R15|R16|17|18|19"}. ++{require_otp_vsn, "R13B04|R14|R15|R16|17|18|19|20"}. + {erl_opts, [debug_info, warn_unused_vars, warn_shadow_vars, warn_unused_import]}. + {eunit_opts, [verbose]}. + {pre_hooks, [ Modified: head/databases/couchdb/Makefile ============================================================================== --- head/databases/couchdb/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/databases/couchdb/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -3,7 +3,7 @@ PORTNAME= couchdb PORTVERSION= 1.6.1 -PORTREVISION= 10 +PORTREVISION= 11 PORTEPOCH= 2 CATEGORIES= databases MASTER_SITES= APACHE/couchdb/source/${PORTVERSION} Modified: head/databases/couchdb/files/patch-configure ============================================================================== --- head/databases/couchdb/files/patch-configure Fri Jun 23 13:46:58 2017 (r444179) +++ head/databases/couchdb/files/patch-configure Fri Jun 23 13:50:20 2017 (r444180) @@ -5,7 +5,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking Erlang version compatibility" >&5 $as_echo_n "checking Erlang version compatibility... " >&6; } -erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 17 (erts-6.0)" -+erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 18 (erts-8.0)" ++erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 20 (erts-9.0)" version="`${ERL} -version 2>&1 | ${SED} 's/[^0-9]/ /g'` 0 0 0" major_version=`echo $version | ${AWK} "{print \\$1}"` @@ -14,7 +14,7 @@ echo -n "detected Erlang version: $major_version.$minor_version.$patch_version..." -if test $major_version -lt 5 -o $major_version -gt 6; then -+if test $major_version -lt 5 -o $major_version -gt 8; then ++if test $major_version -lt 5 -o $major_version -gt 9; then as_fn_error $? "$erlang_version_error major_version does not match" "$LINENO" 5 fi @@ -23,7 +23,7 @@ - if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17)"); then -+ if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17|18|19)"); then ++ if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17|18|19|20)"); then USE_OTP_NIFS_TRUE= USE_OTP_NIFS_FALSE='#' else @@ -32,7 +32,7 @@ fi - if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17)"); then -+ if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17|18|19)"); then ++ if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17|18|19|20)"); then USE_EJSON_COMPARE_NIF_TRUE= USE_EJSON_COMPARE_NIF_FALSE='#' else Modified: head/devel/elixir-conform/Makefile ============================================================================== --- head/devel/elixir-conform/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/elixir-conform/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= conform -DISTVERSION= 2.3.3 +DISTVERSION= 2.3.4 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= elixir- Modified: head/devel/elixir-conform/distinfo ============================================================================== --- head/devel/elixir-conform/distinfo Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/elixir-conform/distinfo Fri Jun 23 13:50:20 2017 (r444180) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495220502 -SHA256 (bitwalker-conform-2.3.3_GH0.tar.gz) = 63a0482ac201beb94dac47c3c242762ce9d7391cb9f8629fbcf45dbf0320200d -SIZE (bitwalker-conform-2.3.3_GH0.tar.gz) = 2969982 +TIMESTAMP = 1498119949 +SHA256 (bitwalker-conform-2.3.4_GH0.tar.gz) = 1f2a295082240974e51b8b0d1cd9cb1b0d23978dd638d44d650d72ce55fba5bc +SIZE (bitwalker-conform-2.3.4_GH0.tar.gz) = 2969948 Modified: head/devel/erlang-cuttlefish/Makefile ============================================================================== --- head/devel/erlang-cuttlefish/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-cuttlefish/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -2,6 +2,7 @@ PORTNAME= cuttlefish PORTVERSION= 2.0.11 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-cuttlefish/files/patch-rebar.config ============================================================================== --- head/devel/erlang-cuttlefish/files/patch-rebar.config Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-cuttlefish/files/patch-rebar.config Fri Jun 23 13:50:20 2017 (r444180) @@ -1,11 +1,14 @@ ---- rebar.config.orig 2017-01-04 20:43:48 UTC +--- rebar.config.orig 2017-01-04 17:58:38 UTC +++ rebar.config -@@ -1,4 +1,4 @@ +@@ -1,6 +1,6 @@ -{require_otp_vsn, "R16|17|18"}. -+{require_otp_vsn, "R16|17|18|19"}. ++{require_otp_vsn, "R16|17|18|19|20"}. - {erl_opts, [warnings_as_errors, {parse_transform, lager_transform}, debug_info, warn_untyped_record]}. +-{erl_opts, [warnings_as_errors, {parse_transform, lager_transform}, debug_info, warn_untyped_record]}. ++{erl_opts, [{parse_transform, lager_transform}, debug_info, warn_untyped_record]}. + {eunit_opts, [verbose]}. + {cover_enabled, true}. @@ -12,12 +12,9 @@ {xref_queries, [{"(XC - UC) || (XU - X - B - \"(rebar.*|mustache)\" : Mod)", []}]}. Modified: head/devel/erlang-erlware_commons/Makefile ============================================================================== --- head/devel/erlang-erlware_commons/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-erlware_commons/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -2,6 +2,7 @@ PORTNAME= erlware_commons PORTVERSION= 0.22.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-erlware_commons/files/patch-rebar.config ============================================================================== --- head/devel/erlang-erlware_commons/files/patch-rebar.config Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-erlware_commons/files/patch-rebar.config Fri Jun 23 13:50:20 2017 (r444180) @@ -1,4 +1,4 @@ ---- rebar.config.orig 2016-12-10 09:13:15 UTC +--- rebar.config.orig 2016-11-27 19:19:42 UTC +++ rebar.config @@ -2,7 +2,6 @@ @@ -8,3 +8,13 @@ ]}. {erl_first_files, ["ec_dictionary", "ec_vsn"]}. +@@ -14,8 +13,7 @@ + {platform_define, "^R1[4|5]", deprecated_crypto}, + {platform_define, "^1[8|9]", rand_module}, + {platform_define, "^2", rand_module}, +- debug_info, +- warnings_as_errors]}. ++ debug_info]}. + + %% EUnit ======================================================================= + {eunit_opts, [verbose, Modified: head/devel/erlang-erlware_commons/files/patch-rebar.config.script ============================================================================== --- head/devel/erlang-erlware_commons/files/patch-rebar.config.script Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-erlware_commons/files/patch-rebar.config.script Fri Jun 23 13:50:20 2017 (r444180) @@ -1,4 +1,4 @@ ---- rebar.config.script.orig 2016-08-02 12:50:27 UTC +--- rebar.config.script.orig 2016-11-27 19:19:42 UTC +++ rebar.config.script @@ -7,7 +7,6 @@ IsRebar3 = case application:get_key(reba end, Modified: head/devel/erlang-msgpack/Makefile ============================================================================== --- head/devel/erlang-msgpack/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-msgpack/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -2,6 +2,7 @@ PORTNAME= msgpack PORTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= erlang- Added: head/devel/erlang-msgpack/files/patch-rebar.config ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/erlang-msgpack/files/patch-rebar.config Fri Jun 23 13:50:20 2017 (r444180) @@ -0,0 +1,8 @@ +--- rebar.config.orig 2017-06-23 09:06:28 UTC ++++ rebar.config +@@ -1,4 +1,4 @@ +-{require_otp_vsn, "17|18|19"}. ++{require_otp_vsn, "17|18|19|20"}. + + {erl_opts, [fail_on_warning, debug_info, warn_untyped_record]}. + %%, {parse_transform, eqc_cover}]}. Modified: head/devel/erlang-unicode_util_compat/Makefile ============================================================================== --- head/devel/erlang-unicode_util_compat/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-unicode_util_compat/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -2,6 +2,7 @@ PORTNAME= unicode_util_compat PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-unicode_util_compat/pkg-plist ============================================================================== --- head/devel/erlang-unicode_util_compat/pkg-plist Fri Jun 23 13:46:58 2017 (r444179) +++ head/devel/erlang-unicode_util_compat/pkg-plist Fri Jun 23 13:50:20 2017 (r444180) @@ -1,7 +1,5 @@ -lib/erlang/lib/unicode_util_compat-%%VERSION%%/ebin/unicode_util.beam lib/erlang/lib/unicode_util_compat-%%VERSION%%/ebin/unicode_util_compat.app lib/erlang/lib/unicode_util_compat-%%VERSION%%/ebin/unicode_util_compat.beam -lib/erlang/lib/unicode_util_compat-%%VERSION%%/src/unicode_util.erl lib/erlang/lib/unicode_util_compat-%%VERSION%%/src/unicode_util_compat.app.src lib/erlang/lib/unicode_util_compat-%%VERSION%%/src/unicode_util_compat.erl %%PORTDOCS%%%%DOCSDIR%%/README.md Modified: head/graphics/wings/Makefile ============================================================================== --- head/graphics/wings/Makefile Fri Jun 23 13:46:58 2017 (r444179) +++ head/graphics/wings/Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -3,7 +3,7 @@ PORTNAME= wings PORTVERSION= 1.5.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF DIST_SUBDIR= erlang @@ -47,7 +47,7 @@ post-patch: ${WRKSRC}/src/wings_sel_cmd.erl \ ${WRKSRC}/e3d/e3d_util.erl \ ${WRKSRC}/plugins_src/autouv/auv_mapping.erl - @${FIND} ${WRKSRC} -name "*.orig" -delete +# @${FIND} ${WRKSRC} -name "*.orig" -delete do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} "src ebin fonts plugins textures shaders patches" \ Modified: head/graphics/wings/files/patch-e3d_e3d__qbvh.erl ============================================================================== --- head/graphics/wings/files/patch-e3d_e3d__qbvh.erl Fri Jun 23 13:46:58 2017 (r444179) +++ head/graphics/wings/files/patch-e3d_e3d__qbvh.erl Fri Jun 23 13:50:20 2017 (r444180) @@ -1,14 +1,23 @@ --- e3d/e3d_qbvh.erl.orig 2015-08-06 10:38:19 UTC +++ e3d/e3d_qbvh.erl -@@ -40,6 +40,7 @@ +@@ -17,6 +17,8 @@ + -module(e3d_qbvh). + ++-compile({no_auto_import,[ceil/1]}). ++ + -export([init/1, init/2, + n_nodes/1, n_quads/1, convert_to_image2d/3 + ]). +@@ -40,6 +42,7 @@ + -define(F32, 32/float-native). -define(I32, 32/signed-native). +-define(U32, 32/unsigned-native). -define(QNODE_SZ, ((24+4)*4)). -define(QTRI_SZ, ((12*3+4)*4)). -@@ -118,8 +119,8 @@ convert_to_image(W, <>, Acc) -> Acc. convert_children(4, _W, Qns, Acc) -> {Qns, Acc}; Modified: head/graphics/wings/files/patch-intl__tools_tools.erl ============================================================================== --- head/graphics/wings/files/patch-intl__tools_tools.erl Fri Jun 23 13:46:58 2017 (r444179) +++ head/graphics/wings/files/patch-intl__tools_tools.erl Fri Jun 23 13:50:20 2017 (r444180) @@ -1,26 +1,26 @@ ---- intl_tools/tools.erl.orig 2016-09-23 14:29:04 UTC +--- intl_tools/tools.erl.orig 2015-08-06 10:38:19 UTC +++ intl_tools/tools.erl -@@ -244,7 +244,7 @@ get_en_template_1([_|T]) -> +@@ -261,7 +261,7 @@ get_en_template_1([_|T]) -> %%% -define(STRINGS, wings_lang_transform_strings). --define(FUNCTION_NAME, wings_lang_transform_function_name). -+-define(WINGS_FUNCTION_NAME, wings_lang_transform_function_name). ++-define(T_FUNCTION_NAME, wings_lang_transform_function_name). -define(ERRORS, wings_lang_transform_errors). -define(FILENAME, wings_lang_transform_filename). -@@ -269,12 +269,12 @@ transform({attribute,_,file,{Filename,_} +@@ -286,12 +286,12 @@ transform({attribute,_,file,{Filename,_} put(?FILENAME, Filename), Form; transform({function,L,Name,Arity,Cs}) -> - put(?FUNCTION_NAME, Name), -+ put(?WINGS_FUNCTION_NAME, Name), ++ put(?T_FUNCTION_NAME, Name), {function,L,Name,Arity,transform(Cs)}; transform({call,L,{remote,_,{atom,_,wings_lang},{atom,_,str}}=Rem, [{tuple,_,[{atom,_,M}=Mod,Key]}, {string,_,S}=Str]}) -> - FunName = get(?FUNCTION_NAME), -+ FunName = get(?WINGS_FUNCTION_NAME), ++ FunName = get(?T_FUNCTION_NAME), K = literal_key(Key), add_string({{M,FunName,K},{S,L}}), {call,L,Rem,[{tuple,L,[Mod,{atom,L,FunName},Key]},Str]}; Added: head/graphics/wings/files/patch-src_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/wings/files/patch-src_Makefile Fri Jun 23 13:50:20 2017 (r444180) @@ -0,0 +1,11 @@ +--- src/Makefile.orig 2015-08-06 10:38:19 UTC ++++ src/Makefile +@@ -132,7 +132,7 @@ TARGET_FILES= $(MODULES:%=$(EBIN)/%.beam + # ---------------------------------------------------- + # FLAGS + # ---------------------------------------------------- +-ERL_COMPILE_FLAGS += -Werror -I ../e3d $(TYPE_FLAGS) \ ++ERL_COMPILE_FLAGS += -I ../e3d $(TYPE_FLAGS) \ + '-Dwings_version="$(WINGS_VSN)"' -pa $(WINGS_INTL) $(USE_WX) + + # ---------------------------------------------------- From owner-svn-ports-head@freebsd.org Fri Jun 23 15:36:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 419EBDA6D37; Fri, 23 Jun 2017 15:36:53 +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 1D22564DEE; Fri, 23 Jun 2017 15:36:53 +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 v5NFaqqY090651; Fri, 23 Jun 2017 15:36:52 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NFapqW090646; Fri, 23 Jun 2017 15:36:51 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201706231536.v5NFapqW090646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 23 Jun 2017 15:36:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444181 - in head/dns/knot2: . 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, 23 Jun 2017 15:36:53 -0000 Author: matthew Date: Fri Jun 23 15:36:51 2017 New Revision: 444181 URL: https://svnweb.freebsd.org/changeset/ports/444181 Log: Update to 2.5.1 * Add new USES: autoreconf, localbase, python, shebangfix * Mark broken on i386 -- undefined reference to '__atomic_fetch_add_8' * Move libfstrm.so dependency so it is only added when the DNSTAP option is enabled. PR: 220205 Submitted by: freebsd@dns-lab.com (maintainer) Modified: head/dns/knot2/Makefile head/dns/knot2/distinfo head/dns/knot2/files/pkg-message.in (contents, props changed) head/dns/knot2/pkg-plist Modified: head/dns/knot2/Makefile ============================================================================== --- head/dns/knot2/Makefile Fri Jun 23 13:50:20 2017 (r444180) +++ head/dns/knot2/Makefile Fri Jun 23 15:36:51 2017 (r444181) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= knot -PORTVERSION= 2.4.3 +PORTVERSION= 2.5.1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ @@ -13,18 +13,16 @@ COMMENT= High performance authoritative-only DNS serve LICENSE= GPLv3 -LIB_DEPENDS= libfstrm.so:devel/fstrm \ - libgnutls.so:security/gnutls \ - libjansson.so:devel/jansson \ +LIB_DEPENDS= libgnutls.so:security/gnutls \ liblmdb.so:databases/lmdb \ libnettle.so:security/nettle \ liburcu.so:sysutils/liburcu CONFLICTS= knot-1.* knot1-[0-6].* -USES= alias compiler:c11 libedit libtool pkgconfig tar:xz +USES= autoreconf alias compiler:c11 libedit libtool localbase pkgconfig python shebangfix tar:xz +SHEBANG_FILES= src/utils/pykeymgr/pykeymgr.in USE_LDCONFIG= yes - GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-rundir=/var/run/knot \ --with-storage=/var/db/knot \ @@ -42,11 +40,14 @@ SUB_LIST+= USERS="${USERS}" GROUPS="${GROUPS}" PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS +BROKEN_i386= Issues in knot/modules/*/*.c: undefined reference to '__atomic_fetch_add_8' + OPTIONS_DEFINE= DNSTAP FASTPARSER IDN DNSTAP_DESC= dnstap support (see dnstap.info) DNSTAP_CONFIGURE_ENABLE= dnstap -DNSTAP_LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c +DNSTAP_LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c \ + libfstrm.so:devel/fstrm # XXX: because `kdig_CPPFLAGS += $(DNSTAP_CFLAGS)' line is missing from # `src/Makefile.am' file (and thus pre-generated `src/Makefile.in') which # should contain "$libfstrm_CFLAGS $libprotobuf_c_CFLAGS" set by configure Modified: head/dns/knot2/distinfo ============================================================================== --- head/dns/knot2/distinfo Fri Jun 23 13:50:20 2017 (r444180) +++ head/dns/knot2/distinfo Fri Jun 23 15:36:51 2017 (r444181) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493403989 -SHA256 (knot-2.4.3.tar.xz) = f90258bcb29c1f351cd8d824ff8d67aef906ae5d5ff0f652c4f69c69ed8a704f -SIZE (knot-2.4.3.tar.xz) = 1110588 +TIMESTAMP = 1496870306 +SHA256 (knot-2.5.1.tar.xz) = 6c08cdc0a0182e262136b936a968ad667abce112195d99c27e50ea22afc08398 +SIZE (knot-2.5.1.tar.xz) = 1070108 Modified: head/dns/knot2/files/pkg-message.in ============================================================================== --- head/dns/knot2/files/pkg-message.in Fri Jun 23 13:50:20 2017 (r444180) +++ head/dns/knot2/files/pkg-message.in Fri Jun 23 15:36:51 2017 (r444181) @@ -12,7 +12,7 @@ ###################################################################### Please consult the documentation: - - man knot.conf + - man knotd - https://www.knot-dns.cz/documentation/ ###################################################################### Modified: head/dns/knot2/pkg-plist ============================================================================== --- head/dns/knot2/pkg-plist Fri Jun 23 13:50:20 2017 (r444180) +++ head/dns/knot2/pkg-plist Fri Jun 23 15:36:51 2017 (r444181) @@ -10,20 +10,17 @@ include/dnssec/binary.h include/dnssec/crypto.h include/dnssec/dnssec.h include/dnssec/error.h -include/dnssec/event.h -include/dnssec/kasp.h include/dnssec/key.h include/dnssec/keyid.h -include/dnssec/keystate.h include/dnssec/keystore.h include/dnssec/keytag.h -include/dnssec/keyusage.h include/dnssec/list.h include/dnssec/nsec.h include/dnssec/random.h include/dnssec/sign.h include/dnssec/tsig.h include/dnssec/version.h +include/knot/module.h include/libknot/attribute.h include/libknot/binary.h include/libknot/codes.h @@ -67,29 +64,32 @@ include/libknot/rrtype/txt.h include/libknot/tsig-op.h include/libknot/tsig.h include/libknot/version.h +include/libknot/yparser/yparser.h +include/libknot/yparser/ypformat.h +include/libknot/yparser/ypschema.h +include/libknot/yparser/yptrafo.h include/zscanner/error.h include/zscanner/scanner.h include/zscanner/version.h lib/libdnssec.a lib/libdnssec.so -lib/libdnssec.so.2 -lib/libdnssec.so.2.1.0 +lib/libdnssec.so.4 +lib/libdnssec.so.4.0.0 lib/libknot.a lib/libknot.so -lib/libknot.so.5 -lib/libknot.so.5.0.0 +lib/libknot.so.6 +lib/libknot.so.6.0.0 lib/libzscanner.a lib/libzscanner.so lib/libzscanner.so.1 lib/libzscanner.so.1.0.0 +libdata/pkgconfig/knotd.pc libdata/pkgconfig/libdnssec.pc libdata/pkgconfig/libknot.pc libdata/pkgconfig/libzscanner.pc -libexec/knot1to2 man/man1/kdig.1.gz man/man1/khost.1.gz man/man1/kjournalprint.1.gz -man/man1/knot1to2.1.gz man/man1/knsec3hash.1.gz man/man1/knsupdate.1.gz man/man1/kzonecheck.1.gz @@ -97,6 +97,10 @@ man/man5/knot.conf.5.gz man/man8/keymgr.8.gz man/man8/knotc.8.gz man/man8/knotd.8.gz +man/man8/pykeymgr.8.gz sbin/keymgr sbin/knotc sbin/knotd +sbin/pykeymgr +@dir /var/db/knot +@dir /var/run/knot From owner-svn-ports-head@freebsd.org Fri Jun 23 17:38:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99626D8604A; Fri, 23 Jun 2017 17:38:51 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B4346A31C; Fri, 23 Jun 2017 17:38:51 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NHcoeY039833; Fri, 23 Jun 2017 17:38:50 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NHconv039831; Fri, 23 Jun 2017 17:38:50 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201706231738.v5NHconv039831@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Fri, 23 Jun 2017 17:38:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444184 - head/devel/llvm40 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 17:38:51 -0000 Author: brooks Date: Fri Jun 23 17:38:50 2017 New Revision: 444184 URL: https://svnweb.freebsd.org/changeset/ports/444184 Log: Upgrade to 4.0.1 release. Modified: head/devel/llvm40/Makefile head/devel/llvm40/distinfo Modified: head/devel/llvm40/Makefile ============================================================================== --- head/devel/llvm40/Makefile Fri Jun 23 16:38:49 2017 (r444183) +++ head/devel/llvm40/Makefile Fri Jun 23 17:38:50 2017 (r444184) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= llvm -DISTVERSION= 4.0.1rc1 -PORTREVISION= 5 +DISTVERSION= 4.0.1 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} PKGNAMESUFFIX= ${LLVM_SUFFIX} Modified: head/devel/llvm40/distinfo ============================================================================== --- head/devel/llvm40/distinfo Fri Jun 23 16:38:49 2017 (r444183) +++ head/devel/llvm40/distinfo Fri Jun 23 17:38:50 2017 (r444184) @@ -1,15 +1,15 @@ -TIMESTAMP = 1494028453 -SHA256 (llvm-4.0.1rc1.src.tar.xz) = e07bde6275d862642ec640d146358c2bd4cc99513d74f7b897364c5ff14bb5ec -SIZE (llvm-4.0.1rc1.src.tar.xz) = 21065084 -SHA256 (cfe-4.0.1rc1.src.tar.xz) = 82148c2ccd7e59eb631dd2f1941097ef96154f251b7aa09a3191ebd7788e3f94 -SIZE (cfe-4.0.1rc1.src.tar.xz) = 10933060 -SHA256 (compiler-rt-4.0.1rc1.src.tar.xz) = bf7dc6abe0be57a3d2600033c873021058a11cb96517984e0f7c6cd1ea06a2d7 -SIZE (compiler-rt-4.0.1rc1.src.tar.xz) = 1428764 -SHA256 (clang-tools-extra-4.0.1rc1.src.tar.xz) = a80f4f24f779755bdd25b4fd62a50391a303823a09cc629061e73e795f1c92c1 -SIZE (clang-tools-extra-4.0.1rc1.src.tar.xz) = 581696 -SHA256 (lld-4.0.1rc1.src.tar.xz) = 5439ee1556a7572a28d0bfe7a391dd9918c6d75f4501bb5e04c4bc50314b2e25 -SIZE (lld-4.0.1rc1.src.tar.xz) = 593192 -SHA256 (lldb-4.0.1rc1.src.tar.xz) = e4b328173bd6493be8669648dc82f337a560c63ac7ade66ee2fdcabaac03553f -SIZE (lldb-4.0.1rc1.src.tar.xz) = 19089272 -SHA256 (openmp-4.0.1rc1.src.tar.xz) = 0bda10d7fca817ba19d2fc63170621567b10da7bf52988f7d3cef09a5e50bfb0 -SIZE (openmp-4.0.1rc1.src.tar.xz) = 2275312 +TIMESTAMP = 1498236501 +SHA256 (llvm-4.0.1.src.tar.xz) = da783db1f82d516791179fe103c71706046561f7972b18f0049242dee6712b51 +SIZE (llvm-4.0.1.src.tar.xz) = 21065652 +SHA256 (cfe-4.0.1.src.tar.xz) = 61738a735852c23c3bdbe52d035488cdb2083013f384d67c1ba36fabebd8769b +SIZE (cfe-4.0.1.src.tar.xz) = 10933628 +SHA256 (compiler-rt-4.0.1.src.tar.xz) = a3c87794334887b93b7a766c507244a7cdcce1d48b2e9249fc9a94f2c3beb440 +SIZE (compiler-rt-4.0.1.src.tar.xz) = 1434100 +SHA256 (clang-tools-extra-4.0.1.src.tar.xz) = 35d1e64efc108076acbe7392566a52c35df9ec19778eb9eb12245fc7d8b915b6 +SIZE (clang-tools-extra-4.0.1.src.tar.xz) = 581788 +SHA256 (lld-4.0.1.src.tar.xz) = 63ce10e533276ca353941ce5ab5cc8e8dcd99dbdd9c4fa49f344a212f29d36ed +SIZE (lld-4.0.1.src.tar.xz) = 593796 +SHA256 (lldb-4.0.1.src.tar.xz) = 8432d2dfd86044a0fc21713e0b5c1d98e1d8aad863cf67562879f47f841ac47b +SIZE (lldb-4.0.1.src.tar.xz) = 19088212 +SHA256 (openmp-4.0.1.src.tar.xz) = ec693b170e0600daa7b372240a06e66341ace790d89eaf4a843e8d56d5f4ada4 +SIZE (openmp-4.0.1.src.tar.xz) = 2275240 From owner-svn-ports-head@freebsd.org Fri Jun 23 17:45:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E07A6D86358; Fri, 23 Jun 2017 17:45:28 +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 A5DBB6AA51; Fri, 23 Jun 2017 17:45:28 +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 v5NHjR9v043927; Fri, 23 Jun 2017 17:45:27 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NHjQmQ043916; Fri, 23 Jun 2017 17:45:26 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706231745.v5NHjQmQ043916@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, 23 Jun 2017 17:45:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444185 - in head/www/chromium: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 17:45:29 -0000 Author: cpm Date: Fri Jun 23 17:45:26 2017 New Revision: 444185 URL: https://svnweb.freebsd.org/changeset/ports/444185 Log: www/chromium: update to 59.0.3071.109 - Fix TEST option Changelog: https://chromium.googlesource.com/chromium/src/+log/59.0.3071.104..59.0.3071.109?pretty=fuller&n=10000 MFH: 2017Q2 Added: head/www/chromium/files/patch-base_logging__unittest.cc (contents, props changed) head/www/chromium/files/patch-components_os__crypt_os__crypt__unittest.cc (contents, props changed) head/www/chromium/files/patch-content_test_suite.cc (contents, props changed) Modified: head/www/chromium/Makefile head/www/chromium/Makefile.tests head/www/chromium/distinfo head/www/chromium/files/patch-chrome_test_BUILD.gn head/www/chromium/files/patch-components_os__crypt_os__crypt.h head/www/chromium/files/patch-content_test_BUILD.gn head/www/chromium/files/patch-gpu_BUILD.gn head/www/chromium/files/patch-gpu_gles2__conform__support_BUILD.gn Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/Makefile Fri Jun 23 17:45:26 2017 (r444185) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 59.0.3071.104 +PORTVERSION= 59.0.3071.109 CATEGORIES= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on Modified: head/www/chromium/Makefile.tests ============================================================================== --- head/www/chromium/Makefile.tests Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/Makefile.tests Fri Jun 23 17:45:26 2017 (r444185) @@ -1,4 +1,5 @@ #$FreeBSD$ +#net_unittests : fatal error: 'sys/epoll.h' file not found #telemetry_unittests : unknown ninja target TEST_TARGETS= base_unittests \ crypto_unittests \ @@ -12,7 +13,6 @@ TEST_TARGETS= base_unittests \ compositor_unittests \ ipc_tests \ dbus_unittests \ - net_unittests \ media_unittests \ chromedriver_unittests \ chromedriver_tests \ Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/distinfo Fri Jun 23 17:45:26 2017 (r444185) @@ -1,5 +1,5 @@ -TIMESTAMP = 1497583686 -SHA256 (chromium-59.0.3071.104.tar.xz) = a949fa166cdcdbd8419fbdb4583804613d9845130f0c851e4c647d79a4c300d0 -SIZE (chromium-59.0.3071.104.tar.xz) = 531895868 -SHA256 (chromium-59.0.3071.104-testdata.tar.xz) = 4826be59b1f29dcf25c9868d0cac296fb2c98a8f1f944e6a3d7cea275705b771 -SIZE (chromium-59.0.3071.104-testdata.tar.xz) = 124231072 +TIMESTAMP = 1498132680 +SHA256 (chromium-59.0.3071.109.tar.xz) = 83faeb3537428d83728258b28e907caaee6e6572bcd7d9b9a5f6009e7ea758d9 +SIZE (chromium-59.0.3071.109.tar.xz) = 531839168 +SHA256 (chromium-59.0.3071.109-testdata.tar.xz) = 211447bd78861623329ab39f6611b7caccc69c483d616adcd9610def524699b0 +SIZE (chromium-59.0.3071.109-testdata.tar.xz) = 124235432 Added: head/www/chromium/files/patch-base_logging__unittest.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-base_logging__unittest.cc Fri Jun 23 17:45:26 2017 (r444185) @@ -0,0 +1,11 @@ +--- base/logging_unittest.cc.orig 2017-06-21 19:47:24.089128000 +0200 ++++ base/logging_unittest.cc 2017-06-21 20:02:08.177123000 +0200 +@@ -272,7 +272,7 @@ + // need the arch-specific boilerplate below, which is inspired by breakpad. + // At the same time, on OSX, ucontext.h is deprecated but si_addr works fine. + uintptr_t crash_addr = 0; +-#if defined(OS_MACOSX) ++#if defined(OS_MACOSX) || defined(OS_BSD) + crash_addr = reinterpret_cast(info->si_addr); + #else // OS_POSIX && !OS_MACOSX + struct ucontext* context = reinterpret_cast(context_ptr); Modified: head/www/chromium/files/patch-chrome_test_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-chrome_test_BUILD.gn Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/files/patch-chrome_test_BUILD.gn Fri Jun 23 17:45:26 2017 (r444185) @@ -1,6 +1,6 @@ ---- chrome/test/BUILD.gn.orig 2017-06-05 19:03:04 UTC -+++ chrome/test/BUILD.gn -@@ -192,7 +192,7 @@ static_library("test_support") { +--- chrome/test/BUILD.gn.orig 2017-06-15 21:03:02.000000000 +0200 ++++ chrome/test/BUILD.gn 2017-06-22 05:09:51.612311000 +0200 +@@ -192,7 +192,7 @@ ] } @@ -9,7 +9,7 @@ public_deps += [ "//crypto:platform" ] } if (is_mac) { -@@ -454,7 +454,7 @@ if (!is_android) { +@@ -454,7 +454,7 @@ "$root_out_dir/test_page.css.mock-http-headers", "$root_out_dir/ui_test.pak", ] @@ -18,7 +18,7 @@ data += [ "$root_out_dir/chrome_100_percent.pak", "$root_out_dir/chrome_200_percent.pak", -@@ -463,7 +463,7 @@ if (!is_android) { +@@ -463,7 +463,7 @@ "$root_out_dir/resources.pak", ] } @@ -27,7 +27,7 @@ data += [ "$root_out_dir/libppapi_tests.so" ] } -@@ -570,7 +570,7 @@ if (!is_android) { +@@ -570,7 +570,7 @@ "base/interactive_test_utils_views.cc", ] } @@ -36,7 +36,7 @@ if (!is_chromeos) { # Desktop linux. sources -= [ -@@ -2044,14 +2044,14 @@ test("browser_tests") { +@@ -2044,14 +2044,14 @@ sources += [ "//third_party/liblouis/nacl_wrapper/liblouis_wrapper_browsertest.cc" ] deps += [ "//chrome/browser/chromeos" ] data_deps += [ "//third_party/liblouis:liblouis_test_data" ] @@ -53,7 +53,7 @@ sources += [ "../browser/nacl_host/test/nacl_gdb_browsertest.cc" ] data_deps += [ "//chrome/browser/nacl_host/test:mock_nacl_gdb" ] } -@@ -2063,7 +2063,7 @@ test("browser_tests") { +@@ -2063,7 +2063,7 @@ configs += [ "//build/config/win:default_large_module_incremental_linking" ] } @@ -62,7 +62,7 @@ data_deps += [ "//components/nacl/loader:nacl_helper" ] if (enable_nacl_nonsfi) { -@@ -2200,7 +2200,7 @@ test("browser_tests") { +@@ -2200,7 +2200,7 @@ } } @@ -71,7 +71,7 @@ # Set rpath to find the CDM adapter even in a non-component build. configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] } -@@ -2430,7 +2430,7 @@ test("browser_tests") { +@@ -2430,7 +2430,7 @@ if (toolkit_views) { sources -= [ "../browser/ui/views/select_file_dialog_extension_browsertest.cc" ] } @@ -80,7 +80,7 @@ sources += [ "../browser/ui/views/ime/input_ime_apitest_nonchromeos.cc" ] } -@@ -2620,7 +2620,7 @@ test("browser_tests") { +@@ -2620,7 +2620,7 @@ "../browser/extensions/api/networking_private/networking_private_chromeos_apitest.cc", ] } @@ -89,7 +89,7 @@ sources += [ # Tests for non mobile and non CrOS (includes Linux, Win, Mac). "../browser/metrics/desktop_session_duration/audible_contents_tracker_browsertest.cc", -@@ -2802,7 +2802,7 @@ if (!is_android) { +@@ -2802,7 +2802,7 @@ "//testing/xvfb.py", ] @@ -98,7 +98,7 @@ data += [ "$root_out_dir/chrome_100_percent.pak", "$root_out_dir/chrome_200_percent.pak", -@@ -3504,7 +3504,7 @@ test("unit_tests") { +@@ -3504,9 +3504,14 @@ "$root_out_dir/resources.pak", ] } @@ -106,8 +106,15 @@ + if (is_linux || is_bsd || is_win) { data += [ "$root_out_dir/chrome_200_percent.pak" ] } ++ ++ if (is_bsd) { ++ sources -= [ "../common/component_flash_hint_file_linux_unittest.cc" ] ++ } ++ if (is_win) { -@@ -4234,7 +4234,7 @@ test("unit_tests") { + data_deps += [ "//chrome" ] + data += [ "$root_out_dir/chrome.exe" ] +@@ -4234,7 +4239,7 @@ "//ui/wm", ] } @@ -116,7 +123,7 @@ sources += [ "../browser/password_manager/native_backend_kwallet_x_unittest.cc", "../browser/shell_integration_linux_unittest.cc", -@@ -4256,7 +4256,7 @@ test("unit_tests") { +@@ -4256,7 +4261,7 @@ if (use_gio) { deps += [ "//build/linux/libgio" ] } @@ -125,7 +132,7 @@ deps += [ "//chrome/browser/ui/libgtkui" ] } -@@ -4537,18 +4537,18 @@ test("unit_tests") { +@@ -4537,18 +4542,18 @@ "//components/os_crypt:gnome_keyring_direct", ] } @@ -147,7 +154,7 @@ ldflags = [ "-Wl,--strip-debug" ] } if (is_mac) { -@@ -5045,7 +5045,7 @@ if (safe_browsing_mode == 1 && is_mac) { +@@ -5045,7 +5050,7 @@ } } @@ -156,7 +163,7 @@ # TODO(609855): Make this compile on Android and run on the bots. test("chrome_app_unittests") { sources = [ -@@ -5071,7 +5071,7 @@ if (!is_android) { +@@ -5071,7 +5076,7 @@ } } Modified: head/www/chromium/files/patch-components_os__crypt_os__crypt.h ============================================================================== --- head/www/chromium/files/patch-components_os__crypt_os__crypt.h Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/files/patch-components_os__crypt_os__crypt.h Fri Jun 23 17:45:26 2017 (r444185) @@ -1,5 +1,5 @@ ---- components/os_crypt/os_crypt.h.orig 2017-04-19 19:06:32 UTC -+++ components/os_crypt/os_crypt.h +--- components/os_crypt/os_crypt.h.orig 2017-06-15 21:03:04.000000000 +0200 ++++ components/os_crypt/os_crypt.h 2017-06-21 19:21:25.185823000 +0200 @@ -13,7 +13,7 @@ #include "base/strings/string16.h" #include "build/build_config.h" @@ -18,3 +18,12 @@ // If |store_type| is a known password store, we will attempt to use it. // In any other case, we default to auto-detecting the store. // This should not be changed after OSCrypt has been used. +@@ -71,7 +71,7 @@ + DISALLOW_IMPLICIT_CONSTRUCTORS(OSCrypt); + }; + +-#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(UNIT_TEST) ++#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS) && defined(UNIT_TEST) + // For unit testing purposes, inject methods to be used. + // |get_key_storage_mock| provides the desired |KeyStorage| implementation. + // If the provider returns |nullptr|, a hardcoded password will be used. Added: head/www/chromium/files/patch-components_os__crypt_os__crypt__unittest.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-components_os__crypt_os__crypt__unittest.cc Fri Jun 23 17:45:26 2017 (r444185) @@ -0,0 +1,20 @@ +--- components/os_crypt/os_crypt_unittest.cc.orig 2017-06-21 19:22:48.122268000 +0200 ++++ components/os_crypt/os_crypt_unittest.cc 2017-06-21 19:23:55.247270000 +0200 +@@ -18,7 +18,7 @@ + #include "components/os_crypt/os_crypt_mocker.h" + #include "testing/gtest/include/gtest/gtest.h" + +-#if defined(OS_LINUX) && !defined(OS_CHROMEOS) ++#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS) + #include "components/os_crypt/os_crypt_mocker_linux.h" + #endif + +@@ -151,7 +151,7 @@ + class OSCryptConcurrencyTest : public testing::Test { + public: + OSCryptConcurrencyTest() { +-#if defined(OS_LINUX) && !defined(OS_CHROMEOS) ++#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS) + // Mock the key storage, but not the process of getting the passwords. + UseMockKeyStorageForTesting( + []() -> KeyStorageLinux* { return OSCryptMockerLinux::GetInstance(); }, Modified: head/www/chromium/files/patch-content_test_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-content_test_BUILD.gn Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/files/patch-content_test_BUILD.gn Fri Jun 23 17:45:26 2017 (r444185) @@ -1,6 +1,6 @@ ---- content/test/BUILD.gn.orig 2017-06-05 19:03:07 UTC -+++ content/test/BUILD.gn -@@ -815,7 +815,7 @@ test("content_browsertests") { +--- content/test/BUILD.gn.orig 2017-06-15 21:03:05.000000000 +0200 ++++ content/test/BUILD.gn 2017-06-22 13:52:52.066701000 +0200 +@@ -815,7 +815,7 @@ } } @@ -9,16 +9,30 @@ data += [ "$root_out_dir/content_shell.pak", "data/", -@@ -1442,7 +1442,7 @@ test("content_unittests") { - sources += [ "../browser/memory/memory_monitor_linux_unittest.cc" ] +@@ -1435,14 +1435,19 @@ + sources += [ "../common/quarantine/quarantine_unittest.cc" ] } ++ if (is_bsd) { ++ sources -= [ ++ "../browser/memory/test_memory_monitor.cc", ++ "../common/quarantine/quarantine_linux_unittest.cc", ++ ] ++ } ++ + # ChromeOS also defines linux but their memory-monitors conflict. + if (is_chromeos) { + sources += [ "../browser/memory/memory_monitor_chromeos_unittest.cc" ] +- } else { +- sources += [ "../browser/memory/memory_monitor_linux_unittest.cc" ] + } + - if (is_android || is_linux || is_mac || is_win) { + if (is_android || is_linux || is_bsd || is_mac || is_win) { data = [ "$root_out_dir/content_shell.pak", "data/", -@@ -1657,7 +1657,7 @@ test("content_unittests") { +@@ -1657,7 +1662,7 @@ "//ui/shell_dialogs:shell_dialogs", ] @@ -27,7 +41,7 @@ sources += [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] deps += [ "//third_party/webrtc/modules/desktop_capture" ] -@@ -1695,7 +1695,7 @@ test("content_unittests") { +@@ -1695,7 +1700,7 @@ } } Added: head/www/chromium/files/patch-content_test_suite.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-content_test_suite.cc Fri Jun 23 17:45:26 2017 (r444185) @@ -0,0 +1,18 @@ +--- content/test/content_test_suite.cc.orig 2017-06-22 13:36:32.924786000 +0200 ++++ content/test/content_test_suite.cc 2017-06-22 13:39:16.176707000 +0200 +@@ -85,6 +85,7 @@ + // to initialize GL, so don't do it here. + bool is_child_process = base::CommandLine::ForCurrentProcess()->HasSwitch( + switches::kTestChildProcess); ++#if !defined(OS_BSD) + if (!is_child_process) { + gpu::GPUInfo gpu_info; + gpu::CollectBasicGraphicsInfo(&gpu_info); +@@ -92,6 +93,7 @@ + base::CommandLine::ForCurrentProcess()); + gl::GLSurfaceTestSupport::InitializeOneOff(); + } ++#endif + testing::TestEventListeners& listeners = + testing::UnitTest::GetInstance()->listeners(); + listeners.Append(new TestInitializationListener); Modified: head/www/chromium/files/patch-gpu_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-gpu_BUILD.gn Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/files/patch-gpu_BUILD.gn Fri Jun 23 17:45:26 2017 (r444185) @@ -1,6 +1,6 @@ ---- gpu/BUILD.gn.orig 2017-04-19 19:06:34 UTC -+++ gpu/BUILD.gn -@@ -96,7 +96,7 @@ test("command_buffer_gles2_tests") { +--- gpu/BUILD.gn.orig 2017-06-15 21:03:06.000000000 +0200 ++++ gpu/BUILD.gn 2017-06-22 12:14:14.034866000 +0200 +@@ -96,7 +96,7 @@ libs += [ "android" ] deps += [ "//ui/android:ui_java" ] } @@ -9,3 +9,14 @@ configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] } } +@@ -321,6 +321,10 @@ + "ipc/common/struct_traits_unittest.cc", + "ipc/host/shader_disk_cache_unittest.cc", + ] ++ ++ if (is_bsd) { ++ sources -= [ "config/gpu_util_unittest.cc" ] ++ } + + if (is_mac) { + sources += [ "ipc/client/gpu_memory_buffer_impl_io_surface_unittest.cc" ] Modified: head/www/chromium/files/patch-gpu_gles2__conform__support_BUILD.gn ============================================================================== --- head/www/chromium/files/patch-gpu_gles2__conform__support_BUILD.gn Fri Jun 23 17:38:50 2017 (r444184) +++ head/www/chromium/files/patch-gpu_gles2__conform__support_BUILD.gn Fri Jun 23 17:45:26 2017 (r444185) @@ -1,6 +1,6 @@ ---- gpu/gles2_conform_support/BUILD.gn.orig 2017-04-19 19:06:34 UTC -+++ gpu/gles2_conform_support/BUILD.gn -@@ -60,7 +60,7 @@ executable("gles2_conform_support") { +--- gpu/gles2_conform_support/BUILD.gn.orig 2017-06-21 00:03:18.000000000 +0200 ++++ gpu/gles2_conform_support/BUILD.gn 2017-06-22 14:00:33.510247000 +0200 +@@ -60,7 +60,7 @@ "//gpu/gles2_conform_support/egl", "//ui/gl", ] @@ -9,12 +9,3 @@ sources += [ "native/egl_native_aura.cc", "native/egl_native_x11.cc", -@@ -413,7 +413,7 @@ if (internal_gles2_conform_tests) { - # Must be done this way for warning flags to be ordered correctly. - ":gles2_conform_test_warnings", - ] -- if (is_linux) { -+ if (is_linux || is_bsd) { - if (!is_chromeos) { - deps += [ "//build/config/linux/gtk2" ] - } From owner-svn-ports-head@freebsd.org Fri Jun 23 18:09:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07044D86AA1; Fri, 23 Jun 2017 18:09:42 +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 CB2CD6E70C; Fri, 23 Jun 2017 18:09:41 +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 v5NI9fd4052498; Fri, 23 Jun 2017 18:09:41 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NI9eHk052496; Fri, 23 Jun 2017 18:09:40 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706231809.v5NI9eHk052496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 23 Jun 2017 18:09:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444186 - head/emulators/rpcs3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 18:09:42 -0000 Author: jbeich Date: Fri Jun 23 18:09:40 2017 New Revision: 444186 URL: https://svnweb.freebsd.org/changeset/ports/444186 Log: emulators/rpcs3: update to 0.0.2.346 Changes: https://github.com/RPCS3/rpcs3/compare/72edf26f...321f50bf Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Fri Jun 23 17:45:26 2017 (r444185) +++ head/emulators/rpcs3/Makefile Fri Jun 23 18:09:40 2017 (r444186) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.2-334 -DISTVERSIONSUFFIX= -g72edf26f +DISTVERSION= 0.0.2-346 +DISTVERSIONSUFFIX= -g321f50bf CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Fri Jun 23 17:45:26 2017 (r444185) +++ head/emulators/rpcs3/distinfo Fri Jun 23 18:09:40 2017 (r444186) @@ -1,6 +1,6 @@ -TIMESTAMP = 1498163775 -SHA256 (RPCS3-rpcs3-v0.0.2-334-g72edf26f_GH0.tar.gz) = a70d70f90d3f3464250068e91fc6dff853cf2eacc6d7e997ee985183902ed241 -SIZE (RPCS3-rpcs3-v0.0.2-334-g72edf26f_GH0.tar.gz) = 11252916 +TIMESTAMP = 1498237773 +SHA256 (RPCS3-rpcs3-v0.0.2-346-g321f50bf_GH0.tar.gz) = 135ac4e577b7cb4ea8cff1bcb346746b3029890ad3f4d6ca0b6ddfad32f9203d +SIZE (RPCS3-rpcs3-v0.0.2-346-g321f50bf_GH0.tar.gz) = 11253239 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-head@freebsd.org Fri Jun 23 18:22:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1040D87002; Fri, 23 Jun 2017 18:22:29 +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 9C8EF6EE01; Fri, 23 Jun 2017 18:22:29 +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 v5NIMSIP060509; Fri, 23 Jun 2017 18:22:28 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NIMSrk060507; Fri, 23 Jun 2017 18:22:28 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706231822.v5NIMSrk060507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Fri, 23 Jun 2017 18:22:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444187 - 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: Fri, 23 Jun 2017 18:22:29 -0000 Author: dbn Date: Fri Jun 23 18:22:28 2017 New Revision: 444187 URL: https://svnweb.freebsd.org/changeset/ports/444187 Log: emulators/i386-wine-devel: add packages for -HEAD Modified: head/emulators/i386-wine-devel/Makefile.inc head/emulators/i386-wine-devel/distinfo Modified: head/emulators/i386-wine-devel/Makefile.inc ============================================================================== --- head/emulators/i386-wine-devel/Makefile.inc Fri Jun 23 18:09:40 2017 (r444186) +++ head/emulators/i386-wine-devel/Makefile.inc Fri Jun 23 18:22:28 2017 (r444187) @@ -48,7 +48,7 @@ MONO_RUN_DEPENDS= ${DATADIR}/mono/wine-mono-4.7.0.msi: # Included for OPSYS and OSVERSION .include -.for osrel in 10 11 +.for osrel in 10 11 12 .if ${OSREL:C/\..*//} == ${osrel} PLIST_SUB+= OSREL${osrel}="" .if ${PKGNAMESUFFIX} == -devel @@ -88,7 +88,7 @@ ${PLIST}: fetch port-update: ${RM} ${SLAVEDIR}/distinfo ${SLAVEDIR}/distinfo~ ${SLAVEDIR}/pkg-plist.* -.for osrel in 10 11 +.for osrel in 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 Fri Jun 23 18:09:40 2017 (r444186) +++ head/emulators/i386-wine-devel/distinfo Fri Jun 23 18:22:28 2017 (r444187) @@ -1,4 +1,4 @@ -TIMESTAMP = 1497742779 +TIMESTAMP = 1498169171 SHA256 (freebsd:10:x86:64/i386-wine-devel-2.10,1.txz) = 2086d984619fdc93634457e8a26a42c49cfd2e53cc1e24f316ea992832fd14e6 SIZE (freebsd:10:x86:64/i386-wine-devel-2.10,1.txz) = 53338948 SHA256 (freebsd:10:x86:64/i386-wine-staging-2.10,1.txz) = 0f07364d03aa26d992156a8c2c1d752264946558005446ca03d946ea33e9f70c @@ -7,3 +7,7 @@ SHA256 (freebsd:11:x86:64/i386-wine-devel-2.10,1.txz) SIZE (freebsd:11:x86:64/i386-wine-devel-2.10,1.txz) = 53013832 SHA256 (freebsd:11:x86:64/i386-wine-staging-2.10,1.txz) = d8dd42976ca0ff672ae4a88bed53c5d0bd68e6511337bdb223ce57c867ebe746 SIZE (freebsd:11:x86:64/i386-wine-staging-2.10,1.txz) = 55639472 +SHA256 (freebsd:12:x86:64/i386-wine-devel-2.10,1.txz) = 767fd030279fb69c21c089995f3487543b7bb9b2c10f4707763224d03295c211 +SIZE (freebsd:12:x86:64/i386-wine-devel-2.10,1.txz) = 52616468 +SHA256 (freebsd:12:x86:64/i386-wine-staging-2.10,1.txz) = 5e3e982f2cbee32363d3fcb189ffac5e1f3262748a650fa5ca60b65765b14f02 +SIZE (freebsd:12:x86:64/i386-wine-staging-2.10,1.txz) = 55213764 From owner-svn-ports-head@freebsd.org Fri Jun 23 18:32:39 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D34DD87560; Fri, 23 Jun 2017 18:32:39 +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 F01E86FC68; Fri, 23 Jun 2017 18:32: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 v5NIWc1I064765; Fri, 23 Jun 2017 18:32:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NIWcbU064764; Fri, 23 Jun 2017 18:32:38 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201706231832.v5NIWcbU064764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 23 Jun 2017 18:32:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444188 - head/graphics/p5-feedgnuplot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 18:32:39 -0000 Author: pi Date: Fri Jun 23 18:32:37 2017 New Revision: 444188 URL: https://svnweb.freebsd.org/changeset/ports/444188 Log: graphics/p5-feedgnuplot: add lang/p5-List-MoreUtils to RUN_DEPENDS - lang/p5-List-MoreUtils needs to be present if one wants to use feedgnuplot PR: 220226 Submitted by: egypcio@googlemail.com Modified: head/graphics/p5-feedgnuplot/Makefile Modified: head/graphics/p5-feedgnuplot/Makefile ============================================================================== --- head/graphics/p5-feedgnuplot/Makefile Fri Jun 23 18:22:28 2017 (r444187) +++ head/graphics/p5-feedgnuplot/Makefile Fri Jun 23 18:32:37 2017 (r444188) @@ -2,6 +2,7 @@ PORTNAME= feedgnuplot PORTVERSION= 1.42 +PORTREVISION= 1 CATEGORIES= graphics perl5 MASTER_SITES= http://search.cpan.org/CPAN/authors/id/D/DK/DKOGAN/ PKGNAMEPREFIX= p5- @@ -15,6 +16,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-String-ShellQuote>=0.50:textproc/p5-String-ShellQuote \ p5-IPC-Run>=0:devel/p5-IPC-Run RUN_DEPENDS:= ${BUILD_DEPENDS} \ + p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ gnuplot:math/gnuplot USES= perl5 From owner-svn-ports-head@freebsd.org Fri Jun 23 19:03:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6697AD87D4E; Fri, 23 Jun 2017 19:03:25 +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 3585870D9F; Fri, 23 Jun 2017 19:03:25 +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 v5NJ3OiW077232; Fri, 23 Jun 2017 19:03:24 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NJ3ORo077230; Fri, 23 Jun 2017 19:03:24 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706231903.v5NJ3ORo077230@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Fri, 23 Jun 2017 19:03:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444189 - head/finance/R-cran-tseries X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 19:03:25 -0000 Author: dbn Date: Fri Jun 23 19:03:23 2017 New Revision: 444189 URL: https://svnweb.freebsd.org/changeset/ports/444189 Log: finance/R-cran-tseries: updated to version 0.10-42 - add new run dependencies: - finance/R-cran-quantmod - changelog: - R/finance.R (get.hist.quote): Fix problem spotted by Thomas A Severini . Generated by: portcran (0.1.5) Modified: head/finance/R-cran-tseries/Makefile head/finance/R-cran-tseries/distinfo Modified: head/finance/R-cran-tseries/Makefile ============================================================================== --- head/finance/R-cran-tseries/Makefile Fri Jun 23 18:32:37 2017 (r444188) +++ head/finance/R-cran-tseries/Makefile Fri Jun 23 19:03:23 2017 (r444189) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tseries -DISTVERSION= 0.10-41 +DISTVERSION= 0.10-42 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/finance/R-cran-tseries/distinfo ============================================================================== --- head/finance/R-cran-tseries/distinfo Fri Jun 23 18:32:37 2017 (r444188) +++ head/finance/R-cran-tseries/distinfo Fri Jun 23 19:03:23 2017 (r444189) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497888808 -SHA256 (tseries_0.10-41.tar.gz) = c5139b2b615fa3bcd1d591a6180c02bb667772414f9bd90dd83bd37534bbba26 -SIZE (tseries_0.10-41.tar.gz) = 164489 +TIMESTAMP = 1498243243 +SHA256 (tseries_0.10-42.tar.gz) = 827f79858715c700e8cabd2c27853ba88ad0e05eb043bc94e126b155a75546c4 +SIZE (tseries_0.10-42.tar.gz) = 164529 From owner-svn-ports-head@freebsd.org Fri Jun 23 20:53:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58710D89B39; Fri, 23 Jun 2017 20:53:13 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D92173D09; Fri, 23 Jun 2017 20:53:13 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NKrCnH022678; Fri, 23 Jun 2017 20:53:12 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NKrCZi022676; Fri, 23 Jun 2017 20:53:12 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706232053.v5NKrCZi022676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Fri, 23 Jun 2017 20:53:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444190 - in head/net/libwebsockets: . 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, 23 Jun 2017 20:53:13 -0000 Author: ultima Date: Fri Jun 23 20:53:11 2017 New Revision: 444190 URL: https://svnweb.freebsd.org/changeset/ports/444190 Log: * Updated to 2.1.1 Changelog: https://github.com/warmcat/libwebsockets/blob/v2.1-stable/changelog#L4 PR: 220080 Submitted by: Iblis Lin (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11311 Deleted: head/net/libwebsockets/files/patch-lib_server.c Modified: head/net/libwebsockets/Makefile head/net/libwebsockets/distinfo Modified: head/net/libwebsockets/Makefile ============================================================================== --- head/net/libwebsockets/Makefile Fri Jun 23 19:03:23 2017 (r444189) +++ head/net/libwebsockets/Makefile Fri Jun 23 20:53:11 2017 (r444190) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libwebsockets -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 DISTVERSIONPREFIX= v CATEGORIES= net devel MASTER_SITES= GITHUB Modified: head/net/libwebsockets/distinfo ============================================================================== --- head/net/libwebsockets/distinfo Fri Jun 23 19:03:23 2017 (r444189) +++ head/net/libwebsockets/distinfo Fri Jun 23 20:53:11 2017 (r444190) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479903723 -SHA256 (warmcat-libwebsockets-v2.1.0_GH0.tar.gz) = bcc96aaa609daae4d3f7ab1ee480126709ef4f6a8bf9c85de40aae48e38cce66 -SIZE (warmcat-libwebsockets-v2.1.0_GH0.tar.gz) = 3721679 +TIMESTAMP = 1497692583 +SHA256 (warmcat-libwebsockets-v2.1.1_GH0.tar.gz) = 96183cbdfcd6e6a3d9465e854a924b7bfde6c8c6d3384d6159ad797c2e823b4d +SIZE (warmcat-libwebsockets-v2.1.1_GH0.tar.gz) = 3769593 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:17:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95EACD8A127; Fri, 23 Jun 2017 21:17:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7020074822; Fri, 23 Jun 2017 21:17:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLHHVo030885; Fri, 23 Jun 2017 21:17:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLHHi7030881; Fri, 23 Jun 2017 21:17:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232117.v5NLHHi7030881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:17:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444191 - in head/devel: . rubygem-concurrent-ruby-ext X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:17:18 -0000 Author: sunpoet Date: Fri Jun 23 21:17:17 2017 New Revision: 444191 URL: https://svnweb.freebsd.org/changeset/ports/444191 Log: Add rubygem-concurrent-ruby-ext 1.0.5 Potential performance improvements may be achieved under MRI by installing optional C extensions. To minimize installation errors the C extensions are available in the concurrent-ruby-ext extension gem. concurrent-ruby and concurrent-ruby-ext are always released together with same version. The concurrent-ruby gem will automatically detect the presence of the concurrent-ruby-ext gem and load the appropriate C extensions. WWW: https://github.com/ruby-concurrency/concurrent-ruby Added: head/devel/rubygem-concurrent-ruby-ext/ head/devel/rubygem-concurrent-ruby-ext/Makefile (contents, props changed) head/devel/rubygem-concurrent-ruby-ext/distinfo (contents, props changed) head/devel/rubygem-concurrent-ruby-ext/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 23 20:53:11 2017 (r444190) +++ head/devel/Makefile Fri Jun 23 21:17:17 2017 (r444191) @@ -5258,6 +5258,7 @@ SUBDIR += rubygem-commander SUBDIR += rubygem-concurrent-ruby SUBDIR += rubygem-concurrent-ruby-edge + SUBDIR += rubygem-concurrent-ruby-ext SUBDIR += rubygem-configatron SUBDIR += rubygem-configstruct SUBDIR += rubygem-configuration Added: head/devel/rubygem-concurrent-ruby-ext/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby-ext/Makefile Fri Jun 23 21:17:17 2017 (r444191) @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= concurrent-ruby-ext +PORTVERSION= 1.0.5 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= C extensions to optimize the concurrent-ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-concurrent-ruby>=${PORTVERSION}:devel/rubygem-concurrent-ruby + +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-concurrent-ruby-ext/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby-ext/distinfo Fri Jun 23 21:17:17 2017 (r444191) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498249634 +SHA256 (rubygem/concurrent-ruby-ext-1.0.5.gem) = f791da26938d57b20f183f29246274f5698859a3e098994703e28cf849293485 +SIZE (rubygem/concurrent-ruby-ext-1.0.5.gem) = 20992 Added: head/devel/rubygem-concurrent-ruby-ext/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-concurrent-ruby-ext/pkg-descr Fri Jun 23 21:17:17 2017 (r444191) @@ -0,0 +1,9 @@ +Potential performance improvements may be achieved under MRI by installing +optional C extensions. To minimize installation errors the C extensions are +available in the concurrent-ruby-ext extension gem. concurrent-ruby and +concurrent-ruby-ext are always released together with same version. + +The concurrent-ruby gem will automatically detect the presence of the +concurrent-ruby-ext gem and load the appropriate C extensions. + +WWW: https://github.com/ruby-concurrency/concurrent-ruby From owner-svn-ports-head@freebsd.org Fri Jun 23 21:17:54 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09FCBD8A163; Fri, 23 Jun 2017 21:17:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8728748F5; Fri, 23 Jun 2017 21:17:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLHrpa031063; Fri, 23 Jun 2017 21:17:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLHqNW031059; Fri, 23 Jun 2017 21:17:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232117.v5NLHqNW031059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:17:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444192 - in head/devel: . rubygem-peek X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:17:54 -0000 Author: sunpoet Date: Fri Jun 23 21:17:52 2017 New Revision: 444192 URL: https://svnweb.freebsd.org/changeset/ports/444192 Log: Add rubygem-peek 1.0.1 This is a profiling tool originally built at GitHub to help us get an insight into our application. Now, we have extracted this into Peek, so that other Rails application can experience the same benefit. Peek puts a little bar on top of your application to show you all sorts of helpful information about your application. From the screenshot above, you can see that Peek provides information about database queries, cache, Resque workers and more. However, this is only part of Peek's beauty. The true beauty of Peek lies in the fact that it is an extensible platform. If there are some performance metrics that you need but are not available on Peek, you can find it from the list of available Peek Views and integrate it into Peek. Even if you do not find what you want on Peek Views, you can always create your own. WWW: https://github.com/peek/peek Added: head/devel/rubygem-peek/ head/devel/rubygem-peek/Makefile (contents, props changed) head/devel/rubygem-peek/distinfo (contents, props changed) head/devel/rubygem-peek/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 23 21:17:17 2017 (r444191) +++ head/devel/Makefile Fri Jun 23 21:17:52 2017 (r444192) @@ -5499,6 +5499,7 @@ SUBDIR += rubygem-parser SUBDIR += rubygem-patch_finder SUBDIR += rubygem-pathutil + SUBDIR += rubygem-peek SUBDIR += rubygem-piston SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform Added: head/devel/rubygem-peek/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek/Makefile Fri Jun 23 21:17:52 2017 (r444192) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= peek +PORTVERSION= 1.0.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Take a peek into your Rails application + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-concurrent-ruby>=0.9.0:devel/rubygem-concurrent-ruby \ + rubygem-concurrent-ruby-ext>=0.9.0:devel/rubygem-concurrent-ruby-ext \ + rubygem-railties5>=4.0.0:www/rubygem-railties5 + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-peek/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek/distinfo Fri Jun 23 21:17:52 2017 (r444192) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498222031 +SHA256 (rubygem/peek-1.0.1.gem) = 9641ed21323644646f13f65c116707e6462cf20b02259bb16925884835db28a5 +SIZE (rubygem/peek-1.0.1.gem) = 25600 Added: head/devel/rubygem-peek/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-peek/pkg-descr Fri Jun 23 21:17:52 2017 (r444192) @@ -0,0 +1,16 @@ +This is a profiling tool originally built at GitHub to help us get an insight +into our application. Now, we have extracted this into Peek, so that other Rails +application can experience the same benefit. + +Peek puts a little bar on top of your application to show you all sorts of +helpful information about your application. From the screenshot above, you can +see that Peek provides information about database queries, cache, Resque workers +and more. However, this is only part of Peek's beauty. + +The true beauty of Peek lies in the fact that it is an extensible platform. If +there are some performance metrics that you need but are not available on Peek, +you can find it from the list of available Peek Views and integrate it into +Peek. Even if you do not find what you want on Peek Views, you can always create +your own. + +WWW: https://github.com/peek/peek From owner-svn-ports-head@freebsd.org Fri Jun 23 21:18:30 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EE35D8A1AB; Fri, 23 Jun 2017 21:18:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC4EE749D2; Fri, 23 Jun 2017 21:18:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLITU0031249; Fri, 23 Jun 2017 21:18:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLISNn031245; Fri, 23 Jun 2017 21:18:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232118.v5NLISNn031245@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:18:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444193 - in head/devel: . rubygem-flipper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:18:30 -0000 Author: sunpoet Date: Fri Jun 23 21:18:28 2017 New Revision: 444193 URL: https://svnweb.freebsd.org/changeset/ports/444193 Log: Add rubygem-flipper 0.10.2 Feature flipping is the act of enabling or disabling features or parts of your application, ideally without re-deploying or changing anything in your code base. The goal of this gem is to make turning features on or off so easy that everyone does it. Whatever your data store, throughput, or experience, feature flipping should be easy and have minimal impact on your application. WWW: https://github.com/jnunemaker/flipper Added: head/devel/rubygem-flipper/ head/devel/rubygem-flipper/Makefile (contents, props changed) head/devel/rubygem-flipper/distinfo (contents, props changed) head/devel/rubygem-flipper/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 23 21:17:52 2017 (r444192) +++ head/devel/Makefile Fri Jun 23 21:18:28 2017 (r444193) @@ -5325,6 +5325,7 @@ SUBDIR += rubygem-file-tail SUBDIR += rubygem-filesize SUBDIR += rubygem-flexmock + SUBDIR += rubygem-flipper SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog SUBDIR += rubygem-fog-core Added: head/devel/rubygem-flipper/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-flipper/Makefile Fri Jun 23 21:18:28 2017 (r444193) @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= flipper +PORTVERSION= 0.10.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Act of enabling/disabling features in your application + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-flipper/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-flipper/distinfo Fri Jun 23 21:18:28 2017 (r444193) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498224657 +SHA256 (rubygem/flipper-0.10.2.gem) = 175932fc945b0185b267a1ee7c36b7ce51735326bc495b07c327cf0c24697bbd +SIZE (rubygem/flipper-0.10.2.gem) = 50688 Added: head/devel/rubygem-flipper/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-flipper/pkg-descr Fri Jun 23 21:18:28 2017 (r444193) @@ -0,0 +1,9 @@ +Feature flipping is the act of enabling or disabling features or parts of your +application, ideally without re-deploying or changing anything in your code +base. + +The goal of this gem is to make turning features on or off so easy that everyone +does it. Whatever your data store, throughput, or experience, feature flipping +should be easy and have minimal impact on your application. + +WWW: https://github.com/jnunemaker/flipper From owner-svn-ports-head@freebsd.org Fri Jun 23 21:18:44 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 774DAD8A1DC; Fri, 23 Jun 2017 21:18:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A3B974A91; Fri, 23 Jun 2017 21:18:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLIhuJ031417; Fri, 23 Jun 2017 21:18:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLIhvO031412; Fri, 23 Jun 2017 21:18:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232118.v5NLIhvO031412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444194 - in head/databases: . rubygem-flipper-active_record X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:18:44 -0000 Author: sunpoet Date: Fri Jun 23 21:18:42 2017 New Revision: 444194 URL: https://svnweb.freebsd.org/changeset/ports/444194 Log: Add rubygem-flipper-active_record 0.10.2 Flipper ActiveRecord is an ActiveRecord adapter for Flipper. WWW: https://github.com/jnunemaker/flipper Added: head/databases/rubygem-flipper-active_record/ head/databases/rubygem-flipper-active_record/Makefile (contents, props changed) head/databases/rubygem-flipper-active_record/distinfo (contents, props changed) head/databases/rubygem-flipper-active_record/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Fri Jun 23 21:18:28 2017 (r444193) +++ head/databases/Makefile Fri Jun 23 21:18:42 2017 (r444194) @@ -923,6 +923,7 @@ SUBDIR += rubygem-do_sqlite3 SUBDIR += rubygem-em-redis-unified SUBDIR += rubygem-familia + SUBDIR += rubygem-flipper-active_record SUBDIR += rubygem-globalid SUBDIR += rubygem-globalid-rails5 SUBDIR += rubygem-globalid-rails50 Added: head/databases/rubygem-flipper-active_record/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-flipper-active_record/Makefile Fri Jun 23 21:18:42 2017 (r444194) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= flipper-active_record +PORTVERSION= 0.10.2 +CATEGORIES= databases rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= ActiveRecord adapter for Flipper + +LICENSE= MIT + +RUN_DEPENDS= rubygem-activerecord4>=3.2:databases/rubygem-activerecord4 \ + rubygem-flipper>=${PORTVERSION}:devel/rubygem-flipper + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/databases/rubygem-flipper-active_record/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-flipper-active_record/distinfo Fri Jun 23 21:18:42 2017 (r444194) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498231825 +SHA256 (rubygem/flipper-active_record-0.10.2.gem) = a75174b847aca193b4df73e00f3dad57feec07b624ac69761f6ea11fd2c17414 +SIZE (rubygem/flipper-active_record-0.10.2.gem) = 8704 Added: head/databases/rubygem-flipper-active_record/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/rubygem-flipper-active_record/pkg-descr Fri Jun 23 21:18:42 2017 (r444194) @@ -0,0 +1,3 @@ +Flipper ActiveRecord is an ActiveRecord adapter for Flipper. + +WWW: https://github.com/jnunemaker/flipper From owner-svn-ports-head@freebsd.org Fri Jun 23 21:18:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E915D8A20E; Fri, 23 Jun 2017 21:18:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E803A74B56; Fri, 23 Jun 2017 21:18:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLIuYs031545; Fri, 23 Jun 2017 21:18:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLIuEp031543; Fri, 23 Jun 2017 21:18:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232118.v5NLIuEp031543@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:18:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444195 - head/converters/p5-Encode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:18:58 -0000 Author: sunpoet Date: Fri Jun 23 21:18:56 2017 New Revision: 444195 URL: https://svnweb.freebsd.org/changeset/ports/444195 Log: Update to 2.91 Changes: http://search.cpan.org/dist/Encode/Changes Modified: head/converters/p5-Encode/Makefile head/converters/p5-Encode/distinfo Modified: head/converters/p5-Encode/Makefile ============================================================================== --- head/converters/p5-Encode/Makefile Fri Jun 23 21:18:42 2017 (r444194) +++ head/converters/p5-Encode/Makefile Fri Jun 23 21:18:56 2017 (r444195) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Encode -PORTVERSION= 2.90 +PORTVERSION= 2.91 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DANKOGAI Modified: head/converters/p5-Encode/distinfo ============================================================================== --- head/converters/p5-Encode/distinfo Fri Jun 23 21:18:42 2017 (r444194) +++ head/converters/p5-Encode/distinfo Fri Jun 23 21:18:56 2017 (r444195) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497125674 -SHA256 (Encode-2.90.tar.gz) = 466d1ed8ced86cc27d6b71baf6463b6907a170172604dbe80319efcb65921712 -SIZE (Encode-2.90.tar.gz) = 2035138 +TIMESTAMP = 1498242943 +SHA256 (Encode-2.91.tar.gz) = 9fcecd63cff155ff7e8c24194f9b973439f5ae60ab2b81ca0b6eea36b972d913 +SIZE (Encode-2.91.tar.gz) = 2035205 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:03 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32047D8A22D; Fri, 23 Jun 2017 21:19:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0013574B8D; Fri, 23 Jun 2017 21:19:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJ1EX031672; Fri, 23 Jun 2017 21:19:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJ1CG031670; Fri, 23 Jun 2017 21:19:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJ1CG031670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444196 - head/devel/rubygem-et-orbi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:03 -0000 Author: sunpoet Date: Fri Jun 23 21:19:01 2017 New Revision: 444196 URL: https://svnweb.freebsd.org/changeset/ports/444196 Log: Update to 1.0.5 Changes: https://github.com/floraison/et-orbi/blob/master/CHANGELOG.md Modified: head/devel/rubygem-et-orbi/Makefile head/devel/rubygem-et-orbi/distinfo Modified: head/devel/rubygem-et-orbi/Makefile ============================================================================== --- head/devel/rubygem-et-orbi/Makefile Fri Jun 23 21:18:56 2017 (r444195) +++ head/devel/rubygem-et-orbi/Makefile Fri Jun 23 21:19:01 2017 (r444196) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= et-orbi -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-et-orbi/distinfo ============================================================================== --- head/devel/rubygem-et-orbi/distinfo Fri Jun 23 21:18:56 2017 (r444195) +++ head/devel/rubygem-et-orbi/distinfo Fri Jun 23 21:19:01 2017 (r444196) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494400357 -SHA256 (rubygem/et-orbi-1.0.4.gem) = 97f101bf922f224456b90d9d65c841e8c5303db6106adca6c0a2cf274be0768b -SIZE (rubygem/et-orbi-1.0.4.gem) = 11264 +TIMESTAMP = 1498242950 +SHA256 (rubygem/et-orbi-1.0.5.gem) = 2e3651d3af2d763ad96ec5fbf515dcbdce16e95d43b17b9b7a2e9568bccb7c17 +SIZE (rubygem/et-orbi-1.0.5.gem) = 11776 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B1A2D8A255; Fri, 23 Jun 2017 21:19:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3904C74BFC; Fri, 23 Jun 2017 21:19:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJ7xt031795; Fri, 23 Jun 2017 21:19:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJ7dt031793; Fri, 23 Jun 2017 21:19:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJ7dt031793@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444197 - head/devel/rubygem-sidekiq-cron X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:08 -0000 Author: sunpoet Date: Fri Jun 23 21:19:06 2017 New Revision: 444197 URL: https://svnweb.freebsd.org/changeset/ports/444197 Log: Update to 0.6.3 Changes: https://github.com/ondrejbartas/sidekiq-cron/blob/master/Changes.md https://github.com/ondrejbartas/sidekiq-cron/commits/master Modified: head/devel/rubygem-sidekiq-cron/Makefile head/devel/rubygem-sidekiq-cron/distinfo Modified: head/devel/rubygem-sidekiq-cron/Makefile ============================================================================== --- head/devel/rubygem-sidekiq-cron/Makefile Fri Jun 23 21:19:01 2017 (r444196) +++ head/devel/rubygem-sidekiq-cron/Makefile Fri Jun 23 21:19:06 2017 (r444197) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sidekiq-cron -PORTVERSION= 0.6.2 +PORTVERSION= 0.6.3 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-sidekiq-cron/distinfo ============================================================================== --- head/devel/rubygem-sidekiq-cron/distinfo Fri Jun 23 21:19:01 2017 (r444196) +++ head/devel/rubygem-sidekiq-cron/distinfo Fri Jun 23 21:19:06 2017 (r444197) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498142128 -SHA256 (rubygem/sidekiq-cron-0.6.2.gem) = 61ddfc72aa57efdf1b96ed325b1d826b7db9b20733ed65ba56ff4d7392243811 -SIZE (rubygem/sidekiq-cron-0.6.2.gem) = 177664 +TIMESTAMP = 1498242956 +SHA256 (rubygem/sidekiq-cron-0.6.3.gem) = 191bbe2906e62b342950588c8d62dbd6bb7a68e41b507ef0cf3f4cac387b357d +SIZE (rubygem/sidekiq-cron-0.6.3.gem) = 178688 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:13 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8F08D8A287; Fri, 23 Jun 2017 21:19:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7BA574C75; Fri, 23 Jun 2017 21:19:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJCNc031915; Fri, 23 Jun 2017 21:19:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJCAF031913; Fri, 23 Jun 2017 21:19:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJCAF031913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444198 - head/devel/p5-Class-Unload X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:14 -0000 Author: sunpoet Date: Fri Jun 23 21:19:12 2017 New Revision: 444198 URL: https://svnweb.freebsd.org/changeset/ports/444198 Log: Update to 0.11 - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/Class-Unload/Changes Modified: head/devel/p5-Class-Unload/Makefile head/devel/p5-Class-Unload/distinfo Modified: head/devel/p5-Class-Unload/Makefile ============================================================================== --- head/devel/p5-Class-Unload/Makefile Fri Jun 23 21:19:06 2017 (r444197) +++ head/devel/p5-Class-Unload/Makefile Fri Jun 23 21:19:12 2017 (r444198) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Class-Unload -PORTVERSION= 0.09 +PORTVERSION= 0.11 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,6 +15,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Class-Inspector>=0:devel/p5-Class-Inspector RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Requires>=0:devel/p5-Test-Requires NO_ARCH= yes USES= perl5 Modified: head/devel/p5-Class-Unload/distinfo ============================================================================== --- head/devel/p5-Class-Unload/distinfo Fri Jun 23 21:19:06 2017 (r444197) +++ head/devel/p5-Class-Unload/distinfo Fri Jun 23 21:19:12 2017 (r444198) @@ -1,2 +1,3 @@ -SHA256 (Class-Unload-0.09.tar.gz) = afc4d729a2245df42bace73f4a5af5e8104750277f9fdbd50e94ce130487a0e0 -SIZE (Class-Unload-0.09.tar.gz) = 11085 +TIMESTAMP = 1498242963 +SHA256 (Class-Unload-0.11.tar.gz) = 52e29747a7e4d2e1a289c0e1de8107634f10c8426cd7c9d31ecac8383e4a0a5f +SIZE (Class-Unload-0.11.tar.gz) = 11607 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:18 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E25D7D8A2B5; Fri, 23 Jun 2017 21:19:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78A1974CE2; Fri, 23 Jun 2017 21:19:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJHst032038; Fri, 23 Jun 2017 21:19:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJHut032036; Fri, 23 Jun 2017 21:19:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJHut032036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444199 - head/textproc/p5-PPI X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:19 -0000 Author: sunpoet Date: Fri Jun 23 21:19:17 2017 New Revision: 444199 URL: https://svnweb.freebsd.org/changeset/ports/444199 Log: Update to 1.236 Changes: http://search.cpan.org/dist/PPI/Changes Modified: head/textproc/p5-PPI/Makefile head/textproc/p5-PPI/distinfo Modified: head/textproc/p5-PPI/Makefile ============================================================================== --- head/textproc/p5-PPI/Makefile Fri Jun 23 21:19:12 2017 (r444198) +++ head/textproc/p5-PPI/Makefile Fri Jun 23 21:19:17 2017 (r444199) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PPI -PORTVERSION= 1.228 +PORTVERSION= 1.236 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MITHALDU Modified: head/textproc/p5-PPI/distinfo ============================================================================== --- head/textproc/p5-PPI/distinfo Fri Jun 23 21:19:12 2017 (r444198) +++ head/textproc/p5-PPI/distinfo Fri Jun 23 21:19:17 2017 (r444199) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497973477 -SHA256 (PPI-1.228.tar.gz) = 96f59a71681af27c27e2c778c748eb2fee7a4cd40a8dc360a2761cabff1c36e6 -SIZE (PPI-1.228.tar.gz) = 257411 +TIMESTAMP = 1498242978 +SHA256 (PPI-1.236.tar.gz) = c6674b349c0b7d9a6d668e789a5e5215477d88ed4c8203aa69a2a50085308aec +SIZE (PPI-1.236.tar.gz) = 257245 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:23 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2BF1D8A2D5; Fri, 23 Jun 2017 21:19:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 907CD74D51; Fri, 23 Jun 2017 21:19:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJMfv032164; Fri, 23 Jun 2017 21:19:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJMaW032162; Fri, 23 Jun 2017 21:19:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJMaW032162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444200 - head/devel/rubygem-aws-sdk-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: Fri, 23 Jun 2017 21:19:23 -0000 Author: sunpoet Date: Fri Jun 23 21:19:22 2017 New Revision: 444200 URL: https://svnweb.freebsd.org/changeset/ports/444200 Log: Update to 2.10.1 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Fri Jun 23 21:19:17 2017 (r444199) +++ head/devel/rubygem-aws-sdk-core/Makefile Fri Jun 23 21:19:22 2017 (r444200) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.10.0 +PORTVERSION= 2.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Fri Jun 23 21:19:17 2017 (r444199) +++ head/devel/rubygem-aws-sdk-core/distinfo Fri Jun 23 21:19:22 2017 (r444200) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498142175 -SHA256 (rubygem/aws-sdk-core-2.10.0.gem) = d10b4e16c3dfa9cd63151a423c159870ec2bcd7d0e2e5f59900ef8a996fa84a3 -SIZE (rubygem/aws-sdk-core-2.10.0.gem) = 1032192 +TIMESTAMP = 1498242987 +SHA256 (rubygem/aws-sdk-core-2.10.1.gem) = 9e5d9aeaa2b4d8b05d447d8bfbd8b3cec41a021376e7a4e8bc8030b042239617 +SIZE (rubygem/aws-sdk-core-2.10.1.gem) = 1035776 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07883D8A311; Fri, 23 Jun 2017 21:19:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C83BE74DC8; Fri, 23 Jun 2017 21:19:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJRcT032285; Fri, 23 Jun 2017 21:19:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJR67032283; Fri, 23 Jun 2017 21:19:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJR67032283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444201 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:29 -0000 Author: sunpoet Date: Fri Jun 23 21:19:27 2017 New Revision: 444201 URL: https://svnweb.freebsd.org/changeset/ports/444201 Log: Update to 2.10.1 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Fri Jun 23 21:19:22 2017 (r444200) +++ head/devel/rubygem-aws-sdk-resources/Makefile Fri Jun 23 21:19:27 2017 (r444201) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.10.0 +PORTVERSION= 2.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Fri Jun 23 21:19:22 2017 (r444200) +++ head/devel/rubygem-aws-sdk-resources/distinfo Fri Jun 23 21:19:27 2017 (r444201) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498142181 -SHA256 (rubygem/aws-sdk-resources-2.10.0.gem) = 38943c2285daa359dedd0e5267e7a4677cc478a5b3ad06b72cb6d8c4bd45267c -SIZE (rubygem/aws-sdk-resources-2.10.0.gem) = 48640 +TIMESTAMP = 1498242993 +SHA256 (rubygem/aws-sdk-resources-2.10.1.gem) = dd03c2aeec0e477ed40c3905778e056c63c8890d774633bbe1d8ce45cf638854 +SIZE (rubygem/aws-sdk-resources-2.10.1.gem) = 48640 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:34 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83EA5D8A342; Fri, 23 Jun 2017 21:19:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50E0D74E4D; Fri, 23 Jun 2017 21:19:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJXNe032408; Fri, 23 Jun 2017 21:19:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJXMN032406; Fri, 23 Jun 2017 21:19:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJXMN032406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444202 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:34 -0000 Author: sunpoet Date: Fri Jun 23 21:19:33 2017 New Revision: 444202 URL: https://svnweb.freebsd.org/changeset/ports/444202 Log: Update to 2.10.1 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Fri Jun 23 21:19:27 2017 (r444201) +++ head/devel/rubygem-aws-sdk/Makefile Fri Jun 23 21:19:33 2017 (r444202) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -PORTVERSION= 2.10.0 +PORTVERSION= 2.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Fri Jun 23 21:19:27 2017 (r444201) +++ head/devel/rubygem-aws-sdk/distinfo Fri Jun 23 21:19:33 2017 (r444202) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498142187 -SHA256 (rubygem/aws-sdk-2.10.0.gem) = f1a6470e42edfad6d6507c93115f0ce18605f818a0cea2f5ec8ce2b59a4c5848 -SIZE (rubygem/aws-sdk-2.10.0.gem) = 4608 +TIMESTAMP = 1498242998 +SHA256 (rubygem/aws-sdk-2.10.1.gem) = f0b1681bc5843e42e6b34212456c7c60046abe5758274c08ce16aa1d09242d40 +SIZE (rubygem/aws-sdk-2.10.1.gem) = 4608 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:39 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FE50D8A373; Fri, 23 Jun 2017 21:19:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2FB9174EB9; Fri, 23 Jun 2017 21:19:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJcbk032530; Fri, 23 Jun 2017 21:19:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJc7x032528; Fri, 23 Jun 2017 21:19:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJc7x032528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444203 - head/devel/rubygem-recursive-open-struct X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:39 -0000 Author: sunpoet Date: Fri Jun 23 21:19:38 2017 New Revision: 444203 URL: https://svnweb.freebsd.org/changeset/ports/444203 Log: Update to 1.0.5 Changes: https://github.com/aetherknight/recursive-open-struct/blob/master/CHANGELOG.md Modified: head/devel/rubygem-recursive-open-struct/Makefile head/devel/rubygem-recursive-open-struct/distinfo Modified: head/devel/rubygem-recursive-open-struct/Makefile ============================================================================== --- head/devel/rubygem-recursive-open-struct/Makefile Fri Jun 23 21:19:33 2017 (r444202) +++ head/devel/rubygem-recursive-open-struct/Makefile Fri Jun 23 21:19:38 2017 (r444203) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= recursive-open-struct -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-recursive-open-struct/distinfo ============================================================================== --- head/devel/rubygem-recursive-open-struct/distinfo Fri Jun 23 21:19:33 2017 (r444202) +++ head/devel/rubygem-recursive-open-struct/distinfo Fri Jun 23 21:19:38 2017 (r444203) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493551667 -SHA256 (rubygem/recursive-open-struct-1.0.4.gem) = 79025f5fbdcbc750aec456434479bbeb29c10adf1ae63f5e9dca227feef40e46 -SIZE (rubygem/recursive-open-struct-1.0.4.gem) = 17408 +TIMESTAMP = 1498243009 +SHA256 (rubygem/recursive-open-struct-1.0.5.gem) = dfe4f101449716974be11bb249d3b25062bd74a1bfb6cf8c9aa6ecff134f1d5d +SIZE (rubygem/recursive-open-struct-1.0.5.gem) = 17920 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:44 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87EC4D8A39D; Fri, 23 Jun 2017 21:19:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54F7174F2A; Fri, 23 Jun 2017 21:19:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJhIZ032651; Fri, 23 Jun 2017 21:19:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJhd7032649; Fri, 23 Jun 2017 21:19:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJhd7032649@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444204 - head/net/foreman-proxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 23 Jun 2017 21:19:44 -0000 Author: sunpoet Date: Fri Jun 23 21:19:43 2017 New Revision: 444204 URL: https://svnweb.freebsd.org/changeset/ports/444204 Log: Update to 1.15.1 Changes: https://theforeman.org/manuals/1.15/index.html#release-notes-for-115 Modified: head/net/foreman-proxy/Makefile head/net/foreman-proxy/distinfo Modified: head/net/foreman-proxy/Makefile ============================================================================== --- head/net/foreman-proxy/Makefile Fri Jun 23 21:19:38 2017 (r444203) +++ head/net/foreman-proxy/Makefile Fri Jun 23 21:19:43 2017 (r444204) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= foreman-proxy -PORTVERSION= 1.15.0 +PORTVERSION= 1.15.1 CATEGORIES= net MASTER_SITES= http://downloads.theforeman.org/foreman-proxy/ Modified: head/net/foreman-proxy/distinfo ============================================================================== --- head/net/foreman-proxy/distinfo Fri Jun 23 21:19:38 2017 (r444203) +++ head/net/foreman-proxy/distinfo Fri Jun 23 21:19:43 2017 (r444204) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495117029 -SHA256 (foreman-proxy-1.15.0.tar.bz2) = 122d77bb6ecf836ef00766cb40f10c0153f801884a35ccd38eaa2d917f542fbf -SIZE (foreman-proxy-1.15.0.tar.bz2) = 158637 +TIMESTAMP = 1498243016 +SHA256 (foreman-proxy-1.15.1.tar.bz2) = d667ee649fe9422b636a7ba45550626002a37ba53454d4495279758508ac2ede +SIZE (foreman-proxy-1.15.1.tar.bz2) = 158948 From owner-svn-ports-head@freebsd.org Fri Jun 23 21:19:49 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97841D8A3C9; Fri, 23 Jun 2017 21:19:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62C7674FA5; Fri, 23 Jun 2017 21:19:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5NLJmVU032774; Fri, 23 Jun 2017 21:19:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5NLJmeT032772; Fri, 23 Jun 2017 21:19:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706232119.v5NLJmeT032772@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 23 Jun 2017 21:19:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444205 - head/graphics/p5-Image-ExifTool-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: Fri, 23 Jun 2017 21:19:49 -0000 Author: sunpoet Date: Fri Jun 23 21:19:48 2017 New Revision: 444205 URL: https://svnweb.freebsd.org/changeset/ports/444205 Log: Update to 10.57 Changes: http://www.sno.phy.queensu.ca/~phil/exiftool/history.html PR: 220221 Submitted by: Daniel Lin (maintainer) Modified: head/graphics/p5-Image-ExifTool-devel/Makefile head/graphics/p5-Image-ExifTool-devel/distinfo Modified: head/graphics/p5-Image-ExifTool-devel/Makefile ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/Makefile Fri Jun 23 21:19:43 2017 (r444204) +++ head/graphics/p5-Image-ExifTool-devel/Makefile Fri Jun 23 21:19:48 2017 (r444205) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Image-ExifTool -PORTVERSION= 10.56 +PORTVERSION= 10.57 CATEGORIES= graphics perl5 MASTER_SITES= http://www.sno.phy.queensu.ca/~phil/exiftool/ PKGNAMEPREFIX= p5- Modified: head/graphics/p5-Image-ExifTool-devel/distinfo ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/distinfo Fri Jun 23 21:19:43 2017 (r444204) +++ head/graphics/p5-Image-ExifTool-devel/distinfo Fri Jun 23 21:19:48 2017 (r444205) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497889300 -SHA256 (Image-ExifTool-10.56.tar.gz) = c89f225841effbc74643fa116bb619718aa02a9b483529ecbee2c34d36208788 -SIZE (Image-ExifTool-10.56.tar.gz) = 4257308 +TIMESTAMP = 1498221395 +SHA256 (Image-ExifTool-10.57.tar.gz) = 8fad67f3446c04e2a47870082bd29cc65db963e2be2d844d8f49b3306d3c3f3a +SIZE (Image-ExifTool-10.57.tar.gz) = 4258849 From owner-svn-ports-head@freebsd.org Sat Jun 24 01:41:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B245ED8F943; Sat, 24 Jun 2017 01:41:45 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 802B57C0B4; Sat, 24 Jun 2017 01:41:45 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5O1fi0x039921; Sat, 24 Jun 2017 01:41:44 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5O1fi5x039918; Sat, 24 Jun 2017 01:41:44 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201706240141.v5O1fi5x039918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sat, 24 Jun 2017 01:41:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444206 - head/net-im/mastodon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 01:41:45 -0000 Author: jrm Date: Sat Jun 24 01:41:44 2017 New Revision: 444206 URL: https://svnweb.freebsd.org/changeset/ports/444206 Log: net-im/mastodon: Update to version 1.4.6 Upstream changes: https://github.com/tootsuite/mastodon/releases/tag/v1.4.6 Modified: head/net-im/mastodon/Makefile head/net-im/mastodon/distinfo head/net-im/mastodon/pkg-plist Modified: head/net-im/mastodon/Makefile ============================================================================== --- head/net-im/mastodon/Makefile Fri Jun 23 21:19:48 2017 (r444205) +++ head/net-im/mastodon/Makefile Sat Jun 24 01:41:44 2017 (r444206) @@ -2,7 +2,7 @@ PORTNAME= mastodon DISTVERSIONPREFIX= v -DISTVERSION= 1.4.5 +DISTVERSION= 1.4.6 CATEGORIES= net-im www MAINTAINER= jrm@FreeBSD.org Modified: head/net-im/mastodon/distinfo ============================================================================== --- head/net-im/mastodon/distinfo Fri Jun 23 21:19:48 2017 (r444205) +++ head/net-im/mastodon/distinfo Sat Jun 24 01:41:44 2017 (r444206) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498215197 -SHA256 (tootsuite-mastodon-v1.4.5_GH0.tar.gz) = cc9e9f7b917d381d0e65876cc859bd722f831908e900f3687b93a5f02a057e79 -SIZE (tootsuite-mastodon-v1.4.5_GH0.tar.gz) = 10186972 +TIMESTAMP = 1498248679 +SHA256 (tootsuite-mastodon-v1.4.6_GH0.tar.gz) = 2c657723fb148044b598c94fa4468181c5f85c21da98db8f5f2fc6f85fb62cd7 +SIZE (tootsuite-mastodon-v1.4.6_GH0.tar.gz) = 10185281 Modified: head/net-im/mastodon/pkg-plist ============================================================================== --- head/net-im/mastodon/pkg-plist Fri Jun 23 21:19:48 2017 (r444205) +++ head/net-im/mastodon/pkg-plist Sat Jun 24 01:41:44 2017 (r444206) @@ -5253,12 +5253,12 @@ etc/periodic/daily/900.mastodon %%WWWDIR%%/spec/helpers/routing_helper.rb %%WWWDIR%%/spec/helpers/settings_helper_spec.rb %%WWWDIR%%/spec/helpers/stream_entries_helper_spec.rb +%%WWWDIR%%/spec/javascript/.eslintrc.yml %%WWWDIR%%/spec/javascript/components/avatar.test.js %%WWWDIR%%/spec/javascript/components/button.test.js %%WWWDIR%%/spec/javascript/components/display_name.test.js %%WWWDIR%%/spec/javascript/components/dropdown_menu.test.js %%WWWDIR%%/spec/javascript/components/features/ui/components/column.test.js -%%WWWDIR%%/spec/javascript/components/loading_indicator.test.js %%WWWDIR%%/spec/javascript/setup.js %%WWWDIR%%/spec/lib/atom_serializer_spec.rb %%WWWDIR%%/spec/lib/extractor_spec.rb From owner-svn-ports-head@freebsd.org Sat Jun 24 02:09:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75F46D90F17; Sat, 24 Jun 2017 02:09:31 +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 467177CF8F; Sat, 24 Jun 2017 02:09:31 +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 v5O29UGL049582; Sat, 24 Jun 2017 02:09:30 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5O29UmE049581; Sat, 24 Jun 2017 02:09:30 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201706240209.v5O29UmE049581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sat, 24 Jun 2017 02:09:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444207 - head/net/ladvd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 02:09:31 -0000 Author: woodsb02 Date: Sat Jun 24 02:09:29 2017 New Revision: 444207 URL: https://svnweb.freebsd.org/changeset/ports/444207 Log: net/ladvd: Update to 1.1.1 - Also take maintainership Modified: head/net/ladvd/Makefile head/net/ladvd/distinfo Modified: head/net/ladvd/Makefile ============================================================================== --- head/net/ladvd/Makefile Sat Jun 24 01:41:44 2017 (r444206) +++ head/net/ladvd/Makefile Sat Jun 24 02:09:29 2017 (r444207) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= ladvd -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 DISTVERSIONPREFIX=v -PORTREVISION= 2 CATEGORIES= net -MAINTAINER= ports@FreeBSD.org +MAINTAINER= woodsb02@FreeBSD.org COMMENT= Minimal LLDP/CDP/EDP/FDP/NDP sender daemon LICENSE= MIT Modified: head/net/ladvd/distinfo ============================================================================== --- head/net/ladvd/distinfo Sat Jun 24 01:41:44 2017 (r444206) +++ head/net/ladvd/distinfo Sat Jun 24 02:09:29 2017 (r444207) @@ -1,2 +1,3 @@ -SHA256 (sspans-ladvd-v1.1.0_GH0.tar.gz) = 6db4b3270d90469e7081695f62ed13b88ac15bd41b8467c81eec5d035742ae57 -SIZE (sspans-ladvd-v1.1.0_GH0.tar.gz) = 108845 +TIMESTAMP = 1498268391 +SHA256 (sspans-ladvd-v1.1.1_GH0.tar.gz) = 2719842630e75e85db82f0cdf36a24e04392f10e07422dabcc523473b16bb786 +SIZE (sspans-ladvd-v1.1.1_GH0.tar.gz) = 109049 From owner-svn-ports-head@freebsd.org Sat Jun 24 08:51:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 350C8D9ACBC; Sat, 24 Jun 2017 08:51:56 +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 0FF2D2A74; Sat, 24 Jun 2017 08:51:55 +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 v5O8psRi013946; Sat, 24 Jun 2017 08:51:54 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5O8ps5S013942; Sat, 24 Jun 2017 08:51:54 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201706240851.v5O8ps5S013942@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, 24 Jun 2017 08:51:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444208 - in head/security: py-acme py-acme/files py-certbot py-certbot/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, 24 Jun 2017 08:51:56 -0000 Author: cpm Date: Sat Jun 24 08:51:54 2017 New Revision: 444208 URL: https://svnweb.freebsd.org/changeset/ports/444208 Log: security/py-{acme,certbot}: update to 0.15.0 Common: - Update PORTVERSION and distinfo checksum (0.15.0) - Update RUN/TEST dependencies - Remove unnecessary patches (applied upstream) Changes: https://github.com/certbot/certbot/blob/master/CHANGELOG.md#0150---2017-06-08 Reviewed by: koobs Approved by: koobs (maintainer, py-certbot) Differential Revision: https://reviews.freebsd.org/D10612 Deleted: head/security/py-acme/files/ head/security/py-certbot/files/ Modified: head/security/py-acme/Makefile head/security/py-acme/distinfo head/security/py-certbot/Makefile head/security/py-certbot/distinfo Modified: head/security/py-acme/Makefile ============================================================================== --- head/security/py-acme/Makefile Sat Jun 24 02:09:29 2017 (r444207) +++ head/security/py-acme/Makefile Sat Jun 24 08:51:54 2017 (r444208) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= acme -PORTVERSION= 0.13.0 -PORTREVISION= 2 +PORTVERSION= 0.15.0 PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP @@ -16,19 +15,13 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0.8:security/py-cryptography \ - ${PYTHON_PKGNAMEPREFIX}ndg_httpsclient>0:net/py-ndg_httpsclient \ - ${PYTHON_PKGNAMEPREFIX}pyasn1>0:devel/py-pyasn1 \ - ${PYTHON_PKGNAMEPREFIX}dnspython>=1.12:dns/py-dnspython \ - ${PYTHON_PKGNAMEPREFIX}idna>0:dns/py-idna \ ${PYTHON_PKGNAMEPREFIX}openssl>=0.13:security/py-openssl \ ${PYTHON_PKGNAMEPREFIX}pyrfc3339>0:devel/py-pyrfc3339 \ ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz \ - ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.10:www/py-requests \ ${PYTHON_PKGNAMEPREFIX}setuptools>=1.0:devel/${PYTHON_PKGNAMEPREFIX}setuptools \ - ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \ - ${PYTHON_PKGNAMEPREFIX}werkzeug>0:www/py-werkzeug -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}funcsigs>0:devel/py-funcsigs \ - ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock \ ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose USES= python Modified: head/security/py-acme/distinfo ============================================================================== --- head/security/py-acme/distinfo Sat Jun 24 02:09:29 2017 (r444207) +++ head/security/py-acme/distinfo Sat Jun 24 08:51:54 2017 (r444208) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491648474 -SHA256 (acme-0.13.0.tar.gz) = 7489b3e20d02da0a389aedb82408ffb6b76294e41d833db85591b9f779539815 -SIZE (acme-0.13.0.tar.gz) = 90794 +TIMESTAMP = 1498041540 +SHA256 (acme-0.15.0.tar.gz) = 9fadd63322a1eb95f58e6cda8ca2095c750e828ae470bc6e3925ef618c7cfc87 +SIZE (acme-0.15.0.tar.gz) = 93083 Modified: head/security/py-certbot/Makefile ============================================================================== --- head/security/py-certbot/Makefile Sat Jun 24 02:09:29 2017 (r444207) +++ head/security/py-certbot/Makefile Sat Jun 24 08:51:54 2017 (r444208) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= certbot -PORTVERSION= 0.13.0 -PORTREVISION= 2 +PORTVERSION= 0.15.0 PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP @@ -18,18 +17,16 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme==${PKGVERSION}:security/py-acme \ ${PYTHON_PKGNAMEPREFIX}configargparse>=0.9.3:devel/py-configargparse \ ${PYTHON_PKGNAMEPREFIX}configobj>0:devel/py-configobj \ - ${PYTHON_PKGNAMEPREFIX}cryptography>=0.7:security/py-cryptography \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=1.2:security/py-cryptography \ ${PYTHON_PKGNAMEPREFIX}parsedatetime>=1.3:devel/py-parsedatetime \ - ${PYTHON_PKGNAMEPREFIX}psutil>=2.2.1:sysutils/py-psutil \ ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl \ ${PYTHON_PKGNAMEPREFIX}pyrfc3339>0:devel/py-pyrfc3339 \ - ${PYTHON_PKGNAMEPREFIX}python2-pythondialog>=3.2.2r1:devel/py-python2-pythondialog \ ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz \ ${PYTHON_PKGNAMEPREFIX}setuptools>=1.0:devel/${PYTHON_PKGNAMEPREFIX}setuptools \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six \ ${PYTHON_PKGNAMEPREFIX}zope.component>0:devel/py-zope.component \ - ${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface \ - ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock + ${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock USES= python:-2.7 USE_PYTHON= autoplist distutils Modified: head/security/py-certbot/distinfo ============================================================================== --- head/security/py-certbot/distinfo Sat Jun 24 02:09:29 2017 (r444207) +++ head/security/py-certbot/distinfo Sat Jun 24 08:51:54 2017 (r444208) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491648489 -SHA256 (certbot-0.13.0.tar.gz) = f63ad7747edaca2fb7d60c28882e44d2f48ff1cca9b9c7c251ad47e2189c00f3 -SIZE (certbot-0.13.0.tar.gz) = 241627 +TIMESTAMP = 1498041767 +SHA256 (certbot-0.15.0.tar.gz) = b8c4043b2b8df39660d4ce4a2a6eca590f98ece0e1b97eba53ab95f3bbac3beb +SIZE (certbot-0.15.0.tar.gz) = 268504 From owner-svn-ports-head@freebsd.org Sat Jun 24 09:00:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E303CD9AEC9; Sat, 24 Jun 2017 09:00: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 B1C5F2BD9; Sat, 24 Jun 2017 09:00: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 v5O909tw016147; Sat, 24 Jun 2017 09:00:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5O909RJ016146; Sat, 24 Jun 2017 09:00:09 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706240900.v5O909RJ016146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 24 Jun 2017 09:00:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444209 - head/www/p5-CGI.pm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 09:00:11 -0000 Author: amdmi3 Date: Sat Jun 24 09:00:09 2017 New Revision: 444209 URL: https://svnweb.freebsd.org/changeset/ports/444209 Log: - Add NO_ARCH - Unsilence installation commands Approved by: portmgr blanket Modified: head/www/p5-CGI.pm/Makefile Modified: head/www/p5-CGI.pm/Makefile ============================================================================== --- head/www/p5-CGI.pm/Makefile Sat Jun 24 08:51:54 2017 (r444208) +++ head/www/p5-CGI.pm/Makefile Sat Jun 24 09:00:09 2017 (r444209) @@ -19,6 +19,7 @@ CONFLICTS= p5-CGI-[4-9]* p5-CGI-Fast-[0-9]* USES= perl5 USE_PERL5= configure +NO_ARCH= yes EXAMPLES= examples/caution.xbm examples/clickable_image.cgi \ examples/cookie.cgi examples/crash.cgi examples/customize.cgi \ @@ -36,6 +37,6 @@ post-patch: post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - @${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR} .include From owner-svn-ports-head@freebsd.org Sat Jun 24 10:56:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C705D9C526; Sat, 24 Jun 2017 10:56:14 +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 3061C6567B; Sat, 24 Jun 2017 10:56:14 +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 v5OAuDwT064779; Sat, 24 Jun 2017 10:56:13 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OAuDtN064778; Sat, 24 Jun 2017 10:56:13 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201706241056.v5OAuDtN064778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Sat, 24 Jun 2017 10:56:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444210 - 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, 24 Jun 2017 10:56:14 -0000 Author: dbn Date: Sat Jun 24 10:56:13 2017 New Revision: 444210 URL: https://svnweb.freebsd.org/changeset/ports/444210 Log: emulators/i386-wine: add packages for -HEAD Modified: head/emulators/i386-wine/Makefile.inc head/emulators/i386-wine/distinfo Modified: head/emulators/i386-wine/Makefile.inc ============================================================================== --- head/emulators/i386-wine/Makefile.inc Sat Jun 24 09:00:09 2017 (r444209) +++ head/emulators/i386-wine/Makefile.inc Sat Jun 24 10:56:13 2017 (r444210) @@ -50,7 +50,7 @@ PORTSCOUT= limitw:1,even # Included for OPSYS and OSVERSION .include -.for osrel in 10 11 +.for osrel in 10 11 12 .if ${OSREL:C/\..*//} == ${osrel} PLIST_SUB+= OSREL${osrel}="" .else @@ -76,7 +76,7 @@ ${PLIST}: fetch port-update: ${RM} ${SLAVEDIR}/distinfo ${SLAVEDIR}/distinfo~ ${SLAVEDIR}/pkg-plist.* -.for osrel in 10 11 +.for osrel in 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 Jun 24 09:00:09 2017 (r444209) +++ head/emulators/i386-wine/distinfo Sat Jun 24 10:56:13 2017 (r444210) @@ -1,5 +1,7 @@ -TIMESTAMP = 1497823681 +TIMESTAMP = 1498255511 SHA256 (freebsd:10:x86:64/i386-wine-2.0.1_2,1.txz) = 0cdf7160ae74c5b646cd454287f175fa14e290d5b324db41c05ded7de644da71 SIZE (freebsd:10:x86:64/i386-wine-2.0.1_2,1.txz) = 52980584 SHA256 (freebsd:11:x86:64/i386-wine-2.0.1_2,1.txz) = 7b207d89434d8dab5fd0e22aeafbabf5e81875b1ae153b9610de810f4aa47231 SIZE (freebsd:11:x86:64/i386-wine-2.0.1_2,1.txz) = 52662924 +SHA256 (freebsd:12:x86:64/i386-wine-2.0.1_2,1.txz) = 9fe0314dc031e0a7e3c2f7620357dd5f8d748cdfc90ed1d0919d47b1c35b3efb +SIZE (freebsd:12:x86:64/i386-wine-2.0.1_2,1.txz) = 52235196 From owner-svn-ports-head@freebsd.org Sat Jun 24 11:07:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3518D9C718; Sat, 24 Jun 2017 11:07:40 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 968B365A4B; Sat, 24 Jun 2017 11:07:40 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OB7d8f069099; Sat, 24 Jun 2017 11:07:39 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OB7dCe069095; Sat, 24 Jun 2017 11:07:39 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201706241107.v5OB7dCe069095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sat, 24 Jun 2017 11:07:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444211 - in head/mail: thunderbird thunderbird-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, 24 Jun 2017 11:07:40 -0000 Author: cmt Date: Sat Jun 24 11:07:39 2017 New Revision: 444211 URL: https://svnweb.freebsd.org/changeset/ports/444211 Log: mail/thunderbird: update to 52.2.1 https://www.mozilla.org/en-US/thunderbird/52.2.1/releasenotes/ PR: 220248 Approved by: maintainer (jbeich) MFH: 2017Q2 Modified: head/mail/thunderbird-i18n/Makefile head/mail/thunderbird-i18n/distinfo head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Sat Jun 24 10:56:13 2017 (r444210) +++ head/mail/thunderbird-i18n/Makefile Sat Jun 24 11:07:39 2017 (r444211) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 52.2.0 +PORTVERSION= 52.2.1 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi Modified: head/mail/thunderbird-i18n/distinfo ============================================================================== --- head/mail/thunderbird-i18n/distinfo Sat Jun 24 10:56:13 2017 (r444210) +++ head/mail/thunderbird-i18n/distinfo Sat Jun 24 11:07:39 2017 (r444211) @@ -1,119 +1,119 @@ -TIMESTAMP = 1497298367 -SHA256 (xpi/thunderbird-i18n-52.2.0/ar.xpi) = 424ae192efaaa942346ef3d65fd119bbb94f9a30b584266bfb2a0b7e34c5b143 -SIZE (xpi/thunderbird-i18n-52.2.0/ar.xpi) = 604235 -SHA256 (xpi/thunderbird-i18n-52.2.0/ast.xpi) = d58912dca0dcf5e9d4c9b057e8016ea671d5b13111456e7e727f69aa99a94834 -SIZE (xpi/thunderbird-i18n-52.2.0/ast.xpi) = 541173 -SHA256 (xpi/thunderbird-i18n-52.2.0/be.xpi) = edb307b8958f14b099dc7d03c7abbcfb16a0a1bfc626c765319b08c57400d4c5 -SIZE (xpi/thunderbird-i18n-52.2.0/be.xpi) = 570932 -SHA256 (xpi/thunderbird-i18n-52.2.0/bg.xpi) = 3d62c2ab75e5390603d0f72033cbc38a9777d0b4c0c7681a125886ff4fd9afcd -SIZE (xpi/thunderbird-i18n-52.2.0/bg.xpi) = 634897 -SHA256 (xpi/thunderbird-i18n-52.2.0/bn-BD.xpi) = 3a511eb3f6d901271cd2f7af84a8df19d06f8aad126a5bcddd4defc82a23767f -SIZE (xpi/thunderbird-i18n-52.2.0/bn-BD.xpi) = 676901 -SHA256 (xpi/thunderbird-i18n-52.2.0/br.xpi) = 3d29b1736d106c66742f65fb9230d7898cb3b12c1d8cf529ae42830fd595f31c -SIZE (xpi/thunderbird-i18n-52.2.0/br.xpi) = 559380 -SHA256 (xpi/thunderbird-i18n-52.2.0/ca.xpi) = 682cb5a232a63c02ff158954573dab18619d4af9897d080a121a9e30d8611c4c -SIZE (xpi/thunderbird-i18n-52.2.0/ca.xpi) = 569910 -SHA256 (xpi/thunderbird-i18n-52.2.0/cs.xpi) = 9a5cef39952d952060f3df64703afc5f21bee94f3dabc50b2a5b01ad02baebb8 -SIZE (xpi/thunderbird-i18n-52.2.0/cs.xpi) = 579150 -SHA256 (xpi/thunderbird-i18n-52.2.0/cy.xpi) = 741b41bf185a6abe7f3ef8f59828b40bc8e5404e50c4f52323bdb0db9b49c192 -SIZE (xpi/thunderbird-i18n-52.2.0/cy.xpi) = 554858 -SHA256 (xpi/thunderbird-i18n-52.2.0/da.xpi) = 0125524c59d726a24ff9ffa158f1adfaf04f9f3adb71f544cdabeea009a82660 -SIZE (xpi/thunderbird-i18n-52.2.0/da.xpi) = 543335 -SHA256 (xpi/thunderbird-i18n-52.2.0/de.xpi) = 92afd27c3b937122d4d3e81ffcb436fd2bbb7a4fdaeaea0a79974afd39638565 -SIZE (xpi/thunderbird-i18n-52.2.0/de.xpi) = 555744 -SHA256 (xpi/thunderbird-i18n-52.2.0/dsb.xpi) = f411bf3db8123beaa72a83ef7e700c1881060bb5f307192d250b74a58327e712 -SIZE (xpi/thunderbird-i18n-52.2.0/dsb.xpi) = 584578 -SHA256 (xpi/thunderbird-i18n-52.2.0/el.xpi) = fd78564a39aa1e820c1dfa359d4ae051461c6b5f814e0a6d3c7d5c1601f681f3 -SIZE (xpi/thunderbird-i18n-52.2.0/el.xpi) = 662965 -SHA256 (xpi/thunderbird-i18n-52.2.0/en-GB.xpi) = 42be03f5fc0f55300f3d60c6d98698af476d0a37dc66ef000a090539d29a6cea -SIZE (xpi/thunderbird-i18n-52.2.0/en-GB.xpi) = 531234 -SHA256 (xpi/thunderbird-i18n-52.2.0/en-US.xpi) = 6858fb6f5da51e02014dd2952e5ba6b10cd60d3e6e3ce699881ec16844059783 -SIZE (xpi/thunderbird-i18n-52.2.0/en-US.xpi) = 529123 -SHA256 (xpi/thunderbird-i18n-52.2.0/es-AR.xpi) = a3edfb99fa29a576f4af13d57d24d79292b38c5318018bcd6d0c6374e2264dd9 -SIZE (xpi/thunderbird-i18n-52.2.0/es-AR.xpi) = 565995 -SHA256 (xpi/thunderbird-i18n-52.2.0/es-ES.xpi) = 9919e006e770d92187e673945dba931a5c77c3c6c90e0b1b921768bf526da5d2 -SIZE (xpi/thunderbird-i18n-52.2.0/es-ES.xpi) = 445464 -SHA256 (xpi/thunderbird-i18n-52.2.0/et.xpi) = fab144866c573324e8b6170486bd983e1a97c79087c42686fd0194a8673c9a02 -SIZE (xpi/thunderbird-i18n-52.2.0/et.xpi) = 551661 -SHA256 (xpi/thunderbird-i18n-52.2.0/eu.xpi) = 5191fae127cd551df43037bdd3433a14e3acb414d740c5449faec01dc105643c -SIZE (xpi/thunderbird-i18n-52.2.0/eu.xpi) = 555536 -SHA256 (xpi/thunderbird-i18n-52.2.0/fi.xpi) = b4fc72d824cb2f568a46fd1b6ab9f936199555685b931efd08179a7c7b8222b9 -SIZE (xpi/thunderbird-i18n-52.2.0/fi.xpi) = 550669 -SHA256 (xpi/thunderbird-i18n-52.2.0/fr.xpi) = e37fee38ee14ad875904c784e1d8930d3c7dd5b06dce0950eccf89ed8120080b -SIZE (xpi/thunderbird-i18n-52.2.0/fr.xpi) = 577560 -SHA256 (xpi/thunderbird-i18n-52.2.0/fy-NL.xpi) = ee3cfd21ffcf456db4dddd46100f2c4fc9b05ee07b289c21b1f8f5ebbe3979f5 -SIZE (xpi/thunderbird-i18n-52.2.0/fy-NL.xpi) = 563632 -SHA256 (xpi/thunderbird-i18n-52.2.0/ga-IE.xpi) = a1f2d24f299f0fb9a36211556a2aac2fe83938966d6181897b7b615375472600 -SIZE (xpi/thunderbird-i18n-52.2.0/ga-IE.xpi) = 583556 -SHA256 (xpi/thunderbird-i18n-52.2.0/gd.xpi) = bb432374ccc2a2d2d2fe2974c9f216f6c766c52b4849507302ad4c5a3f4e801d -SIZE (xpi/thunderbird-i18n-52.2.0/gd.xpi) = 574065 -SHA256 (xpi/thunderbird-i18n-52.2.0/gl.xpi) = 607885c5f322a236b9c49a52f2ef5a425b27652688313f181e999d5737291183 -SIZE (xpi/thunderbird-i18n-52.2.0/gl.xpi) = 575150 -SHA256 (xpi/thunderbird-i18n-52.2.0/he.xpi) = 1687ca74aac1b3a6c18e7d81faf4586ce54b5bda52884523ee7063a6caef6537 -SIZE (xpi/thunderbird-i18n-52.2.0/he.xpi) = 592566 -SHA256 (xpi/thunderbird-i18n-52.2.0/hr.xpi) = 2a5cc0f419bd5ce12c87e014a4e5320ee8d382e8433a578ec5c31b7edd686b1c -SIZE (xpi/thunderbird-i18n-52.2.0/hr.xpi) = 564779 -SHA256 (xpi/thunderbird-i18n-52.2.0/hsb.xpi) = 1b9f58f1769d99bcd9c0d94b1d6666814ac3d45c621913b954c025ce68898dfd -SIZE (xpi/thunderbird-i18n-52.2.0/hsb.xpi) = 582241 -SHA256 (xpi/thunderbird-i18n-52.2.0/hu.xpi) = f839e809a1000559aadb8415440a7ccfabcb22061e211c99b3f72891391116a3 -SIZE (xpi/thunderbird-i18n-52.2.0/hu.xpi) = 586446 -SHA256 (xpi/thunderbird-i18n-52.2.0/hy-AM.xpi) = ec00dd1926387dd993b4353e12e14c16eb7d65a14ec0ccf5ba13b075664d14e2 -SIZE (xpi/thunderbird-i18n-52.2.0/hy-AM.xpi) = 629879 -SHA256 (xpi/thunderbird-i18n-52.2.0/id.xpi) = 5daa6be12a764c1066c2f44d850bc03a43651375e5d7ceb870414c88a8dd0db7 -SIZE (xpi/thunderbird-i18n-52.2.0/id.xpi) = 546526 -SHA256 (xpi/thunderbird-i18n-52.2.0/is.xpi) = 0eaa42ef9166e6026b8cf5afc4817347158e56a4675a3f4c0154f089af14b1e1 -SIZE (xpi/thunderbird-i18n-52.2.0/is.xpi) = 555712 -SHA256 (xpi/thunderbird-i18n-52.2.0/it.xpi) = e87b9d2c7bfa1cd67e7cede067477b7df53c77d3a303e2b238194091c63ac9ca -SIZE (xpi/thunderbird-i18n-52.2.0/it.xpi) = 455408 -SHA256 (xpi/thunderbird-i18n-52.2.0/ja.xpi) = b9814223eadf18de6d89c197e0f1ba047c2da4574dfad7fde04c8b446f9c677b -SIZE (xpi/thunderbird-i18n-52.2.0/ja.xpi) = 630052 -SHA256 (xpi/thunderbird-i18n-52.2.0/kab.xpi) = ceaffda18829789fe23b7d9a93bd8e4c032289f38c6c26c603ba5266e11653f0 -SIZE (xpi/thunderbird-i18n-52.2.0/kab.xpi) = 568688 -SHA256 (xpi/thunderbird-i18n-52.2.0/ko.xpi) = 73c05dab4e8cbec972873f92a2342a63c1995055c3f729704e49414edc45972f -SIZE (xpi/thunderbird-i18n-52.2.0/ko.xpi) = 595517 -SHA256 (xpi/thunderbird-i18n-52.2.0/lt.xpi) = c927d1b68a82024d6e4cab14c56b87b9adf4a961181267983a5d9653f7647940 -SIZE (xpi/thunderbird-i18n-52.2.0/lt.xpi) = 580598 -SHA256 (xpi/thunderbird-i18n-52.2.0/nb-NO.xpi) = aa33839d0f42a614f3e8f23fa63e8bf1ce44bd9705c708ecc4b55395e4ca5f0f -SIZE (xpi/thunderbird-i18n-52.2.0/nb-NO.xpi) = 551104 -SHA256 (xpi/thunderbird-i18n-52.2.0/nl.xpi) = c395b6e16088d300514ea1302945cc7f1f3639bce8e6b7d42046c0944ae3caeb -SIZE (xpi/thunderbird-i18n-52.2.0/nl.xpi) = 557957 -SHA256 (xpi/thunderbird-i18n-52.2.0/nn-NO.xpi) = 057fb42f2b851534defb0c36084a937138dd59742181b4d0efa16dcd93c05a8b -SIZE (xpi/thunderbird-i18n-52.2.0/nn-NO.xpi) = 551891 -SHA256 (xpi/thunderbird-i18n-52.2.0/pa-IN.xpi) = 49f3ac1e27563c477dd7ad42f778379aaf071e96cf872058fbf17ecceacb98e3 -SIZE (xpi/thunderbird-i18n-52.2.0/pa-IN.xpi) = 646568 -SHA256 (xpi/thunderbird-i18n-52.2.0/pl.xpi) = a7ed41198a0bba2adf92954ff178928961dc432597229e75d75daa5a9f706231 -SIZE (xpi/thunderbird-i18n-52.2.0/pl.xpi) = 469901 -SHA256 (xpi/thunderbird-i18n-52.2.0/pt-BR.xpi) = da8365a51a18c6ace1ac5a58ba8fe5edb2d32a64118a1d938eb615a841655a75 -SIZE (xpi/thunderbird-i18n-52.2.0/pt-BR.xpi) = 558224 -SHA256 (xpi/thunderbird-i18n-52.2.0/pt-PT.xpi) = 4e247a47dd56d544e5240a5f792a38a8a44de633cc025e5af5e3bcffeca70132 -SIZE (xpi/thunderbird-i18n-52.2.0/pt-PT.xpi) = 565624 -SHA256 (xpi/thunderbird-i18n-52.2.0/rm.xpi) = 9a782add50588415e96aee0b17a75370383a64a2e84145730c0b3396f1aa1b73 -SIZE (xpi/thunderbird-i18n-52.2.0/rm.xpi) = 557605 -SHA256 (xpi/thunderbird-i18n-52.2.0/ro.xpi) = bb9a6a73ceb544a35f6c0ebb98935623f0c43805e0365c4ce97db6aeaa25ef61 -SIZE (xpi/thunderbird-i18n-52.2.0/ro.xpi) = 570529 -SHA256 (xpi/thunderbird-i18n-52.2.0/ru.xpi) = 37f5b424f061c8b4eab8fa16f2f586e8522afc6eb9dd073b50264012e9608908 -SIZE (xpi/thunderbird-i18n-52.2.0/ru.xpi) = 530670 -SHA256 (xpi/thunderbird-i18n-52.2.0/si.xpi) = bfc5dd5e9689385875536db910bebd30d8a969abb55e6127434a0677214dc650 -SIZE (xpi/thunderbird-i18n-52.2.0/si.xpi) = 649010 -SHA256 (xpi/thunderbird-i18n-52.2.0/sk.xpi) = c6e942a5c37dc99221d5689d7261b60bb8b5781b20f1b9d2b5877f5f9678fee7 -SIZE (xpi/thunderbird-i18n-52.2.0/sk.xpi) = 583882 -SHA256 (xpi/thunderbird-i18n-52.2.0/sl.xpi) = c9bd345ad38dafd2df16c02781de2fac5d56365042e55cff2f8fb31fc324b1c0 -SIZE (xpi/thunderbird-i18n-52.2.0/sl.xpi) = 562834 -SHA256 (xpi/thunderbird-i18n-52.2.0/sq.xpi) = 6a7fb8cf069e584e52f59565d65828dde8a0eed4d1607c1dec254a09fd10d9cf -SIZE (xpi/thunderbird-i18n-52.2.0/sq.xpi) = 570616 -SHA256 (xpi/thunderbird-i18n-52.2.0/sr.xpi) = be0e3d1e7ecda68a188cf65a28c7bbd5395d42c46b0dab54b30a3e1f7cdbcbf7 -SIZE (xpi/thunderbird-i18n-52.2.0/sr.xpi) = 609020 -SHA256 (xpi/thunderbird-i18n-52.2.0/sv-SE.xpi) = 5b0b4396a82c82024d1e99bc27634466c5435fe176c900256db94a682786f574 -SIZE (xpi/thunderbird-i18n-52.2.0/sv-SE.xpi) = 565777 -SHA256 (xpi/thunderbird-i18n-52.2.0/ta-LK.xpi) = e35af1a970fca8f866c899697af58fd5ea45baf963d31e817f88e48333fcc52f -SIZE (xpi/thunderbird-i18n-52.2.0/ta-LK.xpi) = 675039 -SHA256 (xpi/thunderbird-i18n-52.2.0/tr.xpi) = 39385fb150adb928c7cfd1179f89ddf2509ab7f61bd0c9390bd276212d99c1c4 -SIZE (xpi/thunderbird-i18n-52.2.0/tr.xpi) = 569926 -SHA256 (xpi/thunderbird-i18n-52.2.0/uk.xpi) = 7a506c7cba0b727e88c84281b41e934b02d6b2839cf24e88aff15aa1074eae5f -SIZE (xpi/thunderbird-i18n-52.2.0/uk.xpi) = 652855 -SHA256 (xpi/thunderbird-i18n-52.2.0/vi.xpi) = 087e715b010a13cc69f984f70ed399f56ffb8307b80c6ffa4391f259891671eb -SIZE (xpi/thunderbird-i18n-52.2.0/vi.xpi) = 637164 -SHA256 (xpi/thunderbird-i18n-52.2.0/zh-CN.xpi) = f6739274b662ceaa55ffa1779a2ea45d5b8932ee43c60ae1dd69a33c43ea2071 -SIZE (xpi/thunderbird-i18n-52.2.0/zh-CN.xpi) = 593612 -SHA256 (xpi/thunderbird-i18n-52.2.0/zh-TW.xpi) = 4c74964975ed98997c09c00597ff3093d6b904b373259cb7499fb51b1e45d7ec -SIZE (xpi/thunderbird-i18n-52.2.0/zh-TW.xpi) = 595729 +TIMESTAMP = 1498295116 +SHA256 (xpi/thunderbird-i18n-52.2.1/ar.xpi) = 22dcd3e9f50ba3defcf53f182f86005bba5ebd828449a875017fc053d7c756cd +SIZE (xpi/thunderbird-i18n-52.2.1/ar.xpi) = 604235 +SHA256 (xpi/thunderbird-i18n-52.2.1/ast.xpi) = 22cc9023901ca23806d6c481deb14666d0bb226292d1b5429b75dbccf38ad4a5 +SIZE (xpi/thunderbird-i18n-52.2.1/ast.xpi) = 541173 +SHA256 (xpi/thunderbird-i18n-52.2.1/be.xpi) = f48ae00c57d88a255d98c0fe75d918666e6018c07664f5572b9b446638989230 +SIZE (xpi/thunderbird-i18n-52.2.1/be.xpi) = 570931 +SHA256 (xpi/thunderbird-i18n-52.2.1/bg.xpi) = 3f501d2929ba3993ac26ef0987b8906d2f829dcf490547465622ab1165662787 +SIZE (xpi/thunderbird-i18n-52.2.1/bg.xpi) = 634897 +SHA256 (xpi/thunderbird-i18n-52.2.1/bn-BD.xpi) = 57e97e4bec110fb91c06f0ec547e56f3ef206dee6c72bcd0d247ad90bfd9f7ae +SIZE (xpi/thunderbird-i18n-52.2.1/bn-BD.xpi) = 676900 +SHA256 (xpi/thunderbird-i18n-52.2.1/br.xpi) = 52275f916bf5aac503fcb318ab5b7ada2a9c8bbdbf1e0a51255c1f56d14c3971 +SIZE (xpi/thunderbird-i18n-52.2.1/br.xpi) = 559380 +SHA256 (xpi/thunderbird-i18n-52.2.1/ca.xpi) = fbfb9924784cdd0fb447701bcd24901d982ce540f5b962c8200ded9247fffca0 +SIZE (xpi/thunderbird-i18n-52.2.1/ca.xpi) = 569910 +SHA256 (xpi/thunderbird-i18n-52.2.1/cs.xpi) = 238e9bac5c4d380e0776d042f6748b6913a9144601b0bad2e876b034be021227 +SIZE (xpi/thunderbird-i18n-52.2.1/cs.xpi) = 579149 +SHA256 (xpi/thunderbird-i18n-52.2.1/cy.xpi) = 1f1cc60b8f7b54663fabc2ce548ad054ef7ecc9827430897ac999fbf2d41d90e +SIZE (xpi/thunderbird-i18n-52.2.1/cy.xpi) = 554858 +SHA256 (xpi/thunderbird-i18n-52.2.1/da.xpi) = bfe1f5791408a9b547c06800245f8517ecb3e13a2274e641eca56a9755af26c0 +SIZE (xpi/thunderbird-i18n-52.2.1/da.xpi) = 543334 +SHA256 (xpi/thunderbird-i18n-52.2.1/de.xpi) = 3969772d76c2ca21f4c10c485c8fcbc5fad915659c9caa57a192130bb5eb54ce +SIZE (xpi/thunderbird-i18n-52.2.1/de.xpi) = 555743 +SHA256 (xpi/thunderbird-i18n-52.2.1/dsb.xpi) = 3bbb66c4ce25ea950362612d5947f335205063b27b2410751d8b31da5a3e04a3 +SIZE (xpi/thunderbird-i18n-52.2.1/dsb.xpi) = 584581 +SHA256 (xpi/thunderbird-i18n-52.2.1/el.xpi) = d51574ad11023b9f67ee3312ccf21899af65bbcdfe27bed19195ac601a20aeed +SIZE (xpi/thunderbird-i18n-52.2.1/el.xpi) = 662964 +SHA256 (xpi/thunderbird-i18n-52.2.1/en-GB.xpi) = f5f3d2e933290af5a3b02c9a22ad5ae9ab6d00fa359bd57395cbfdbc1d09beb1 +SIZE (xpi/thunderbird-i18n-52.2.1/en-GB.xpi) = 531233 +SHA256 (xpi/thunderbird-i18n-52.2.1/en-US.xpi) = 935e3e388e2d32ae364755e3611103eb82c7096253e9624e3a6bd1cab2e5bd88 +SIZE (xpi/thunderbird-i18n-52.2.1/en-US.xpi) = 529123 +SHA256 (xpi/thunderbird-i18n-52.2.1/es-AR.xpi) = 768e99b9103fd2ff64a9fe124d40250559b14e279091e0b092ebcc4d0b11c450 +SIZE (xpi/thunderbird-i18n-52.2.1/es-AR.xpi) = 565995 +SHA256 (xpi/thunderbird-i18n-52.2.1/es-ES.xpi) = 6b912064fd85bb45af5ef0197a7643666839b3007928df69fc42ae23b447cd90 +SIZE (xpi/thunderbird-i18n-52.2.1/es-ES.xpi) = 445464 +SHA256 (xpi/thunderbird-i18n-52.2.1/et.xpi) = 5dfbc14d1cd32243fe763cd48bc98dbafcf592f9ed5dcaff4fe39998b745aae6 +SIZE (xpi/thunderbird-i18n-52.2.1/et.xpi) = 551661 +SHA256 (xpi/thunderbird-i18n-52.2.1/eu.xpi) = 44d7e61ceeac53a923f84e06807aec44080c36d2a6d676a527db76efb4011349 +SIZE (xpi/thunderbird-i18n-52.2.1/eu.xpi) = 555536 +SHA256 (xpi/thunderbird-i18n-52.2.1/fi.xpi) = dcc53c8de93779ecca4a4591ce24bfccffbea8d9323ae8121928ebcd1eb26378 +SIZE (xpi/thunderbird-i18n-52.2.1/fi.xpi) = 550669 +SHA256 (xpi/thunderbird-i18n-52.2.1/fr.xpi) = 8bd2d255398ea7f4c64d506edccf7466f8a730604a4ee52343aa423faad5ffc3 +SIZE (xpi/thunderbird-i18n-52.2.1/fr.xpi) = 577560 +SHA256 (xpi/thunderbird-i18n-52.2.1/fy-NL.xpi) = a3501bfdc368011e05bc1a3453a1970fd3f8a1d0c21ac45bf1588352c70eb5b4 +SIZE (xpi/thunderbird-i18n-52.2.1/fy-NL.xpi) = 563632 +SHA256 (xpi/thunderbird-i18n-52.2.1/ga-IE.xpi) = 3dc2f7b8ce9bd9441517a7972216f7cee5c490d20dbef3e7b393298f59dfce20 +SIZE (xpi/thunderbird-i18n-52.2.1/ga-IE.xpi) = 583556 +SHA256 (xpi/thunderbird-i18n-52.2.1/gd.xpi) = 3c9bbc6e543caa0bca0585d5eaf1d4ea600bda07b2ba4446c5df8d8158bb168c +SIZE (xpi/thunderbird-i18n-52.2.1/gd.xpi) = 574065 +SHA256 (xpi/thunderbird-i18n-52.2.1/gl.xpi) = 68ede5ad952e2fd2f8dae3820c252c163955dd278a81e277cb74c1db6da14e66 +SIZE (xpi/thunderbird-i18n-52.2.1/gl.xpi) = 575150 +SHA256 (xpi/thunderbird-i18n-52.2.1/he.xpi) = 324a1922900e6344a61ffd174063a027c261795e571eb839043d3c41f1c0504b +SIZE (xpi/thunderbird-i18n-52.2.1/he.xpi) = 592566 +SHA256 (xpi/thunderbird-i18n-52.2.1/hr.xpi) = 7e437a6f7bfaf6e156cd4280630595ae02b4fd91b6cecdecf7fa59d73f498056 +SIZE (xpi/thunderbird-i18n-52.2.1/hr.xpi) = 564778 +SHA256 (xpi/thunderbird-i18n-52.2.1/hsb.xpi) = 9104b228eaa26cf8bd7406da01c518886a444ac4b7eb0440a683b1c51209e0db +SIZE (xpi/thunderbird-i18n-52.2.1/hsb.xpi) = 582241 +SHA256 (xpi/thunderbird-i18n-52.2.1/hu.xpi) = 2f50db9573f031a6e91c5f7221c97857d561e781f97bfc15dcd4eb5c466624f9 +SIZE (xpi/thunderbird-i18n-52.2.1/hu.xpi) = 586446 +SHA256 (xpi/thunderbird-i18n-52.2.1/hy-AM.xpi) = 49dd57063086b8c51b212ce38833ca458843b3b4176dbf232db31f9ed0225f1f +SIZE (xpi/thunderbird-i18n-52.2.1/hy-AM.xpi) = 629879 +SHA256 (xpi/thunderbird-i18n-52.2.1/id.xpi) = 07b0bb412779ba5a6a2da009247519d3fd6c6ccae3b17cd01cf37b74cb289af7 +SIZE (xpi/thunderbird-i18n-52.2.1/id.xpi) = 546526 +SHA256 (xpi/thunderbird-i18n-52.2.1/is.xpi) = 6ff308e59bf9e6728e9343bfa7fe54161c16fc98c5b675b48f500c5dd7dcd4b7 +SIZE (xpi/thunderbird-i18n-52.2.1/is.xpi) = 555712 +SHA256 (xpi/thunderbird-i18n-52.2.1/it.xpi) = dc6fc7d3f3e9f90b92c50e3eb55d2b4484c61778e3c87207e4da273e8935abfa +SIZE (xpi/thunderbird-i18n-52.2.1/it.xpi) = 455407 +SHA256 (xpi/thunderbird-i18n-52.2.1/ja.xpi) = a0a623c874b16b6aac4c10d5ee6017c8542549aa1c843b448e0372ca432a6095 +SIZE (xpi/thunderbird-i18n-52.2.1/ja.xpi) = 630052 +SHA256 (xpi/thunderbird-i18n-52.2.1/kab.xpi) = a4af3805d00f1687feb629eeb5d68071c437492381f4e17a9397aff019f9d4dd +SIZE (xpi/thunderbird-i18n-52.2.1/kab.xpi) = 568691 +SHA256 (xpi/thunderbird-i18n-52.2.1/ko.xpi) = 027327ac1b6b41c719ffe63118e53101ea44d89e66e865c2ff35d74ed8cd260c +SIZE (xpi/thunderbird-i18n-52.2.1/ko.xpi) = 595517 +SHA256 (xpi/thunderbird-i18n-52.2.1/lt.xpi) = f14380b74c91e07677d5f7a79c8da55602ea9609c61eb5558000d31cf3cdf55e +SIZE (xpi/thunderbird-i18n-52.2.1/lt.xpi) = 580598 +SHA256 (xpi/thunderbird-i18n-52.2.1/nb-NO.xpi) = 207bdd8e6845c0b440264b60daeaa9a177114ceefe004876b4b4dc1e7b3b5dc6 +SIZE (xpi/thunderbird-i18n-52.2.1/nb-NO.xpi) = 551103 +SHA256 (xpi/thunderbird-i18n-52.2.1/nl.xpi) = 4b23e0699b73a43a9dba2914d5b30265f0c80ef9912114afca73b10be84d4e37 +SIZE (xpi/thunderbird-i18n-52.2.1/nl.xpi) = 557956 +SHA256 (xpi/thunderbird-i18n-52.2.1/nn-NO.xpi) = d4829c4fc544b29d09ae7ec908d6036fb2fa74d6705023d5a5bd69bbdf29089a +SIZE (xpi/thunderbird-i18n-52.2.1/nn-NO.xpi) = 551891 +SHA256 (xpi/thunderbird-i18n-52.2.1/pa-IN.xpi) = a3205a13e40f975de5f741b00d74a12ca5165719b0c627a4307024521efb5d7b +SIZE (xpi/thunderbird-i18n-52.2.1/pa-IN.xpi) = 646568 +SHA256 (xpi/thunderbird-i18n-52.2.1/pl.xpi) = 41593d6ed0e2a90f40bcb3e52fd1e44b9f9177f4c8fdb069a38d7e9612e5c44e +SIZE (xpi/thunderbird-i18n-52.2.1/pl.xpi) = 469901 +SHA256 (xpi/thunderbird-i18n-52.2.1/pt-BR.xpi) = 3436a3b5c304134490501d9aec86803e9d2a19c8d417e546bea4e79e0c580fce +SIZE (xpi/thunderbird-i18n-52.2.1/pt-BR.xpi) = 558223 +SHA256 (xpi/thunderbird-i18n-52.2.1/pt-PT.xpi) = f50616dcf2608c7221a83dc1a9736b87b82e2d20e807b31e0fa52267838a01f9 +SIZE (xpi/thunderbird-i18n-52.2.1/pt-PT.xpi) = 565623 +SHA256 (xpi/thunderbird-i18n-52.2.1/rm.xpi) = 5436ec4567d8f9a3f456ed1dad8d5e99b20e17478d452f481b94d86951a4a962 +SIZE (xpi/thunderbird-i18n-52.2.1/rm.xpi) = 557605 +SHA256 (xpi/thunderbird-i18n-52.2.1/ro.xpi) = 7da7e3e2ec1fa3e7df8b2b1d8a886f25f642299b2b48acfd286c14b286d9238f +SIZE (xpi/thunderbird-i18n-52.2.1/ro.xpi) = 570529 +SHA256 (xpi/thunderbird-i18n-52.2.1/ru.xpi) = 2ec8ee1cc3f4b9467a6252ee9b0b07e21d73c570f4df32da3398ef145969e713 +SIZE (xpi/thunderbird-i18n-52.2.1/ru.xpi) = 530670 +SHA256 (xpi/thunderbird-i18n-52.2.1/si.xpi) = 528d8810eec40fd7bf7d7f8963177f510498401518f6152ba0d9954d768deb62 +SIZE (xpi/thunderbird-i18n-52.2.1/si.xpi) = 649010 +SHA256 (xpi/thunderbird-i18n-52.2.1/sk.xpi) = 4d4ed62d2eb370bae612e91387374c96abb45bb753d25a8af2ada2317daedb3b +SIZE (xpi/thunderbird-i18n-52.2.1/sk.xpi) = 583882 +SHA256 (xpi/thunderbird-i18n-52.2.1/sl.xpi) = a24004dac5fd3dbfe888b7946392b3a362725fbeb202f70ed05a525dc8ff3f40 +SIZE (xpi/thunderbird-i18n-52.2.1/sl.xpi) = 562834 +SHA256 (xpi/thunderbird-i18n-52.2.1/sq.xpi) = 5bcee7dd135c22f288066df7550f6bebca7fd84ddaf9c0c7fab8cb421b17cbab +SIZE (xpi/thunderbird-i18n-52.2.1/sq.xpi) = 570617 +SHA256 (xpi/thunderbird-i18n-52.2.1/sr.xpi) = d91e167f296c877bc0f0dd5fbd608050fb4875e11b7a69728998b0af4dce57e9 +SIZE (xpi/thunderbird-i18n-52.2.1/sr.xpi) = 609019 +SHA256 (xpi/thunderbird-i18n-52.2.1/sv-SE.xpi) = 1b8585d1c6204272c628944b7ec753256dc929a61cb915ca666feed4b8f4f985 +SIZE (xpi/thunderbird-i18n-52.2.1/sv-SE.xpi) = 565777 +SHA256 (xpi/thunderbird-i18n-52.2.1/ta-LK.xpi) = f0338196052609f2fd24ca5c68c4845993760683b77932a8995c3045d55dcc31 +SIZE (xpi/thunderbird-i18n-52.2.1/ta-LK.xpi) = 675039 +SHA256 (xpi/thunderbird-i18n-52.2.1/tr.xpi) = 984bb440a6d6fa3846badf719a45d0f07e3bb48717debed90cf039b1265702b1 +SIZE (xpi/thunderbird-i18n-52.2.1/tr.xpi) = 569926 +SHA256 (xpi/thunderbird-i18n-52.2.1/uk.xpi) = 11d0136bf683349c56e1eab3fe9a023be6b0057d48a63a5e7cebce1d818e6b92 +SIZE (xpi/thunderbird-i18n-52.2.1/uk.xpi) = 652854 +SHA256 (xpi/thunderbird-i18n-52.2.1/vi.xpi) = aee7710f39671f1265170641090064cb42ed1f1591298624c7e16ef14640e5c2 +SIZE (xpi/thunderbird-i18n-52.2.1/vi.xpi) = 637163 +SHA256 (xpi/thunderbird-i18n-52.2.1/zh-CN.xpi) = acc4de2e34fe171f6bb2d1d798c29fb90d841fc1034b80cb9cbdb2c4a58237eb +SIZE (xpi/thunderbird-i18n-52.2.1/zh-CN.xpi) = 593611 +SHA256 (xpi/thunderbird-i18n-52.2.1/zh-TW.xpi) = e1a8319aa85f8488b509742e5856d4455ebf1379a6bd3f5a2936636b5124ed7e +SIZE (xpi/thunderbird-i18n-52.2.1/zh-TW.xpi) = 595728 Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Sat Jun 24 10:56:13 2017 (r444210) +++ head/mail/thunderbird/Makefile Sat Jun 24 11:07:39 2017 (r444211) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 52.2.0 +DISTVERSION= 52.2.1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Sat Jun 24 10:56:13 2017 (r444210) +++ head/mail/thunderbird/distinfo Sat Jun 24 11:07:39 2017 (r444211) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497298367 -SHA256 (thunderbird-52.2.0.source.tar.xz) = c65c66244ac113996002bcfa9e387f14291163cfb7009a9126e3a8d4a970e72d -SIZE (thunderbird-52.2.0.source.tar.xz) = 228453944 +TIMESTAMP = 1498217453 +SHA256 (thunderbird-52.2.1.source.tar.xz) = 8b9e4b787f9059973bb3cae41c3957d6907e13e5f0b2310f3730d59ce7d8779a +SIZE (thunderbird-52.2.1.source.tar.xz) = 228498164 From owner-svn-ports-head@freebsd.org Sat Jun 24 14:45:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23328D9FF6E; Sat, 24 Jun 2017 14:45:29 +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 E7CA66ED84; Sat, 24 Jun 2017 14:45:28 +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 v5OEjS2W057675; Sat, 24 Jun 2017 14:45:28 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OEjRXl057673; Sat, 24 Jun 2017 14:45:27 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201706241445.v5OEjRXl057673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 24 Jun 2017 14:45:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444212 - 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, 24 Jun 2017 14:45:29 -0000 Author: adamw Date: Sat Jun 24 14:45:27 2017 New Revision: 444212 URL: https://svnweb.freebsd.org/changeset/ports/444212 Log: Update to patchlevel 670. Modified: head/editors/vim/Makefile head/editors/vim/distinfo Modified: head/editors/vim/Makefile ============================================================================== --- head/editors/vim/Makefile Sat Jun 24 11:07:39 2017 (r444211) +++ head/editors/vim/Makefile Sat Jun 24 14:45:27 2017 (r444212) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vim -PORTVERSION= 8.0.0642 +PORTVERSION= 8.0.0670 DISTVERSIONPREFIX= v CATEGORIES= editors Modified: head/editors/vim/distinfo ============================================================================== --- head/editors/vim/distinfo Sat Jun 24 11:07:39 2017 (r444211) +++ head/editors/vim/distinfo Sat Jun 24 14:45:27 2017 (r444212) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497709078 -SHA256 (vim-vim-v8.0.0642_GH0.tar.gz) = 5027020cb9d473da3da106f0212855e32df161c39552a6f5a71850c6cfb4a2ec -SIZE (vim-vim-v8.0.0642_GH0.tar.gz) = 13120487 +TIMESTAMP = 1498315109 +SHA256 (vim-vim-v8.0.0670_GH0.tar.gz) = 39a128c8301cc2a77b98b5afad347e574d0cd636420b5b09d586e1c781246a01 +SIZE (vim-vim-v8.0.0670_GH0.tar.gz) = 13128571 From owner-svn-ports-head@freebsd.org Sat Jun 24 15:08:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CD96DA04F5; Sat, 24 Jun 2017 15:08:53 +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 EFEA16F5C1; Sat, 24 Jun 2017 15:08:52 +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 v5OF8qjN066202; Sat, 24 Jun 2017 15:08:52 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OF8qhn066201; Sat, 24 Jun 2017 15:08:52 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201706241508.v5OF8qhn066201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sat, 24 Jun 2017 15:08:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444213 - head/databases/p5-DBD-mysql/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, 24 Jun 2017 15:08:53 -0000 Author: brnrd Date: Sat Jun 24 15:08:51 2017 New Revision: 444213 URL: https://svnweb.freebsd.org/changeset/ports/444213 Log: databases/p5-DBD-mysql: Fix issue with MariaDB 10.2 - Use method, don't access struct PR: 219788 Reported by: Alexey Added: head/databases/p5-DBD-mysql/files/ head/databases/p5-DBD-mysql/files/patch-dbdimp.c (contents, props changed) Added: head/databases/p5-DBD-mysql/files/patch-dbdimp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-DBD-mysql/files/patch-dbdimp.c Sat Jun 24 15:08:51 2017 (r444213) @@ -0,0 +1,32 @@ +From 9ea49043522f1f1387384edf42ced7ad3ec44d3a Mon Sep 17 00:00:00 2001 +From: Georg Richter +Date: Sun, 28 May 2017 15:22:09 +0200 +Subject: [PATCH] Fix for builing DBD-mysql together with MariaDB Connector/C. + Use mysql_option function instead of accessing internal members of MYSQL + structure. + +--- + dbdimp.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/dbdimp.c b/dbdimp.c +index da428ed..763b9fa 100644 +--- dbdimp.c.orig 2017-02-28 13:36:40 UTC ++++ dbdimp.c +@@ -2139,6 +2139,7 @@ MYSQL *mysql_dr_connect( + + if (result) + { ++ my_bool reconnect= 0; + #if MYSQL_VERSION_ID >=SERVER_PREPARE_VERSION + /* connection succeeded. */ + /* imp_dbh == NULL when mysql_dr_connect() is called from mysql.xs +@@ -2155,7 +2156,7 @@ MYSQL *mysql_dr_connect( + we turn off Mysql's auto reconnect and handle re-connecting ourselves + so that we can keep track of when this happens. + */ +- result->reconnect=0; ++ mysql_options(result, MYSQL_OPT_RECONNECT, &reconnect); + } + else { + /* From owner-svn-ports-head@freebsd.org Sat Jun 24 16:16:35 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07B84DA13D7; Sat, 24 Jun 2017 16:16:35 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B1E370C1A; Sat, 24 Jun 2017 16:16:34 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGGXFL094562; Sat, 24 Jun 2017 16:16:33 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGGXL6094556; Sat, 24 Jun 2017 16:16:33 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706241616.v5OGGXL6094556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 24 Jun 2017 16:16:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444214 - in head/sysutils: . dsbmc-cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:16:35 -0000 Author: dbaio Date: Sat Jun 24 16:16:33 2017 New Revision: 444214 URL: https://svnweb.freebsd.org/changeset/ports/444214 Log: New port: sysutils/dsbmc-cli dsbmc-cli is a command-line client for DSBMD that provides a simple interface to query information about storage devices, and to send requests to mount, unmount and eject these. Furthermore, it can be used as automounter and autounmounter. WWW: http://freeshell.de/~mk/projects/dsbmc-cli.html PR: 220197 Submitted by: Marcel Kaiser Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11297 Added: head/sysutils/dsbmc-cli/ head/sysutils/dsbmc-cli/Makefile (contents, props changed) head/sysutils/dsbmc-cli/distinfo (contents, props changed) head/sysutils/dsbmc-cli/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Jun 24 15:08:51 2017 (r444213) +++ head/sysutils/Makefile Sat Jun 24 16:16:33 2017 (r444214) @@ -247,6 +247,7 @@ SUBDIR += dsbbatmon SUBDIR += dsbdriverd SUBDIR += dsbmc + SUBDIR += dsbmc-cli SUBDIR += dsbmd SUBDIR += dsbwrtsysctl SUBDIR += dt Added: head/sysutils/dsbmc-cli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbmc-cli/Makefile Sat Jun 24 16:16:33 2017 (r444214) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= dsbmc-cli +PORTVERSION= 0.1.1 +CATEGORIES= sysutils +MASTER_SITES= http://freeshell.de/~mk/download/ + +MAINTAINER= mk@nic-nac-project.org +COMMENT= Command-line client for DSBMD + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= dsbmd>=0.3:sysutils/dsbmd + +USES= tar:tgz +PLIST_FILES= bin/dsbmc-cli man/man1/dsbmc-cli.1.gz + +.include Added: head/sysutils/dsbmc-cli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbmc-cli/distinfo Sat Jun 24 16:16:33 2017 (r444214) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498182061 +SHA256 (dsbmc-cli-0.1.1.tgz) = 00a8203276b40478b1403798d666f60e724050236666d1f131739acfcccab69a +SIZE (dsbmc-cli-0.1.1.tgz) = 18530 Added: head/sysutils/dsbmc-cli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dsbmc-cli/pkg-descr Sat Jun 24 16:16:33 2017 (r444214) @@ -0,0 +1,6 @@ +dsbmc-cli is a command-line client for DSBMD that provides a simple interface +to query information about storage devices, and to send requests to mount, +unmount and eject these. Furthermore, it can be used as automounter and +autounmounter. + +WWW: http://freeshell.de/~mk/projects/dsbmc-cli.html From owner-svn-ports-head@freebsd.org Sat Jun 24 16:19:45 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B3DBADA14AE; Sat, 24 Jun 2017 16:19:45 +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 8AB0670D64; Sat, 24 Jun 2017 16:19:45 +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 v5OGJie1094888; Sat, 24 Jun 2017 16:19:44 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGJhgN094880; Sat, 24 Jun 2017 16:19:43 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201706241619.v5OGJhgN094880@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Sat, 24 Jun 2017 16:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444215 - 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, 24 Jun 2017 16:19:45 -0000 Author: gjb Date: Sat Jun 24 16:19:43 2017 New Revision: 444215 URL: https://svnweb.freebsd.org/changeset/ports/444215 Log: Add 11.1-BETA3 checksums. Approved by: bdrewery (maintainer, implicit, re@ blanket) Sponsored by: The FreeBSD Foundation Added: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.1-BETA3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.1-BETA3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.1-BETA3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.1-BETA3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.1-BETA3 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.1-BETA3 (contents, props changed) 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 Jun 24 16:16:33 2017 (r444214) +++ head/misc/freebsd-release-manifests/Makefile Sat Jun 24 16:19:43 2017 (r444215) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= freebsd-release-manifests -DISTVERSION= 20170617 +DISTVERSION= 20170624 PORTREVISION= 0 CATEGORIES= misc MASTER_SITES= # Added: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.1-BETA3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.1-BETA3 Sat Jun 24 16:19:43 2017 (r444215) @@ -0,0 +1,10 @@ +base-dbg.txz da0976f352aacb01da4863b6e9158db33c4f02f3e1a2bced5b3dea3095c958e2 1427 base_dbg "Base system (Debugging)" off +base.txz 9d5e5fc79c36e698636f6452f20c201b86bc099038b3f98f94a82fafd1cd9412 22491 base "Base system (MANDATORY)" on +doc.txz 039e70da4a51b285f45e4478d101108d779ed2cf2608f1203400bb14d2d1535b 120 doc "Additional Documentation" off +kernel-dbg.txz e17e40804a55e2421e39f2c65eefb42727f91966721caa31f1b355ddcf4da8bc 845 kernel_dbg "Kernel (Debugging)" off +kernel.txz 6abc3162e8f5871ad0249fd4bde93d2dc8ebf841721e951be30b8a3ee2e80050 854 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz d5f6fdd39068810289dff40232b71117a11d56ac251a06f48d0908b68f890fb4 208 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz bb7825ed29f2f2689fb2f7662c3853b2640f472a7d8e625ae784f482cc875c65 729 lib32 "32-bit compatibility libraries" on +ports.txz f9ad473774cd67537bf48d6ade499688a069da941cb96ed539fa82acadc889fd 166533 ports "Ports tree" on +src.txz 558ec36330f610f3c39f72719b49f1dd5ead1a1a4eb9483e6bfc16ecc705dfdd 78409 src "System source tree" off +tests.txz e24ee1cbf3fd20de96f1ab9611dcfe66154af04ac72c6bb50f7959743216171c 3886 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.1-BETA3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.1-BETA3 Sat Jun 24 16:19:43 2017 (r444215) @@ -0,0 +1,8 @@ +base-dbg.txz e25a7f000242ba5d030d444b81ca42c54c1abe05bbe706291b35b0485312b77b 1393 base_dbg "Base system (Debugging)" off +base.txz b12d1ef2063e552650fd6fe0b570f42524485564f87d77d3603e296711756ef1 22133 base "Base system (MANDATORY)" on +doc.txz bebbb621443dca72a12f248217c4b454c1df4d85feef8065575be1590aba51d9 120 doc "Additional Documentation" off +kernel-dbg.txz e637f58a64e241f3017fac91fa5846fa0d56741df48d95deb3499eff3197483a 569 kernel_dbg "Kernel (Debugging)" off +kernel.txz a6e4c46560030d1e554f818ff82d62d2689267835e869f46ae9e62951ffe75e8 577 kernel "Kernel (MANDATORY)" on +ports.txz 0b333cd325f5c94f5eaba6ad3fedbe710f2acca06a5583011822fb22fee5328d 166533 ports "Ports tree" on +src.txz 558ec36330f610f3c39f72719b49f1dd5ead1a1a4eb9483e6bfc16ecc705dfdd 78409 src "System source tree" off +tests.txz 1f336d17ae94f3d3f953aafa16656a0a5a3762cf54543f6432ef5c0e97ccfa3b 3882 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.1-BETA3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.1-BETA3 Sat Jun 24 16:19:43 2017 (r444215) @@ -0,0 +1,8 @@ +base-dbg.txz e2cb1a75fd01732d12a67b2b6110e4435ccc8aa15056ac71dae5d1b3cd48b349 1427 base_dbg "Base system (Debugging)" off +base.txz 717cd4c96148ffae673f26c7f9399b99eb96dedd9781e2931b4675ef57b3ab6a 22506 base "Base system (MANDATORY)" on +doc.txz aecb12efcae6c80a91351e356f15596308265f795ffe47217243946519ede9f2 120 doc "Additional Documentation" off +kernel-dbg.txz 9803c4279f2238cdff9ba361bde8e8ef4a525f9ade4865137c1318c965b955f7 856 kernel_dbg "Kernel (Debugging)" off +kernel.txz b10405db0ed103a020e376306691fff6766c9845df33f7c65e80b6dc453e963c 865 kernel "Kernel (MANDATORY)" on +ports.txz e8131f07f55b199c0e24a1bf0e632423fb151045dab145d7d155b6ce14bc4304 166533 ports "Ports tree" on +src.txz 558ec36330f610f3c39f72719b49f1dd5ead1a1a4eb9483e6bfc16ecc705dfdd 78409 src "System source tree" off +tests.txz 27da52fe3793161def067f84b457814cad051b6d0efbaac410d9147e807cde70 3886 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.1-BETA3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.1-BETA3 Sat Jun 24 16:19:43 2017 (r444215) @@ -0,0 +1,8 @@ +base-dbg.txz 7e3445b5f59bfa4cea57e410b8c3d0cf0e237b66f987d4a287eb37052aa06e5d 1400 base_dbg "Base system (Debugging)" off +base.txz 1aa636394a64d65802be8df7a0e96a6308255e73fd0b799d0708d8aad933ba2d 22383 base "Base system (MANDATORY)" on +doc.txz ed27490578e8c76bb3fe998a0ddde21d4657f9c8cba2229eaa3f462afbf856e0 120 doc "Additional Documentation" off +kernel-dbg.txz fd514fa9b89b1cab65df1c3973499eb01efbff450a5563bbab04bd4c4f5f3650 579 kernel_dbg "Kernel (Debugging)" off +kernel.txz 21ecf7edb9e705d0e267845619518b45654998eb4aa17ade1cb4eaeafed4197f 587 kernel "Kernel (MANDATORY)" on +ports.txz 9b53385e3f6b8f82ce3af7ebc5909382f4cb94728128582ed7031523d49c9970 166533 ports "Ports tree" on +src.txz 558ec36330f610f3c39f72719b49f1dd5ead1a1a4eb9483e6bfc16ecc705dfdd 78409 src "System source tree" off +tests.txz 77a18d2d2be26dd46744dad2384329e020ce34594d65ac51ca71f113a25cf738 3882 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.1-BETA3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.1-BETA3 Sat Jun 24 16:19:43 2017 (r444215) @@ -0,0 +1,10 @@ +base-dbg.txz d6e3cf1de8f2d1444e1d07ac08d3119258188cf4915e962c66b046a9630fe3cc 1401 base_dbg "Base system (Debugging)" off +base.txz 9be4b5de68620e7a19f5d2281472ece4eceb66943a90d09de5af23bff6599328 22398 base "Base system (MANDATORY)" on +doc.txz 3b0813113c6922bac110ae987da25680c74767a884de362f7f4bb64f82598099 120 doc "Additional Documentation" off +kernel-dbg.txz 45b5c9785d48c8e20f502c9b87717fe9770a276ae12707a029a2de9bc5d730a4 672 kernel_dbg "Kernel (Debugging)" off +kernel.txz bf1c31eff38ccc935441980e3aef4a694ae85e88bd8c3c7a937d09b4be162a29 680 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz b7789f7d1e2d3690b7b7af7220c7764bce95da00e6f01949c518f1d2fc2d869d 206 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz ebb4c8194dfa129acdd82a47f0feeb75a75a8da575a9b343543e34e00b3a5d83 722 lib32 "32-bit compatibility libraries" on +ports.txz 8c811e8eb3c3b658a6e919adbba09f09fc86d099e00d9df1ed67a15b4513cc56 166533 ports "Ports tree" on +src.txz 558ec36330f610f3c39f72719b49f1dd5ead1a1a4eb9483e6bfc16ecc705dfdd 78409 src "System source tree" off +tests.txz 7474112d079cbbff209d1eb390d4a70c109fa1860c3d0c24db9ebf083b1d3f50 3882 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.1-BETA3 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.1-BETA3 Sat Jun 24 16:19:43 2017 (r444215) @@ -0,0 +1,8 @@ +base-dbg.txz 3ed6dadfdaf1f5fee36202dddc1d8814dacdb2525c9a0254066a8b85c906f914 1397 base_dbg "Base system (Debugging)" off +base.txz ef64e3bab2c60043aecdadcb479e190f48a4278e6197c6254d0beccd4075b4ac 22398 base "Base system (MANDATORY)" on +doc.txz d6a2fd64d574c42734cec87cbd658af8453c5e4fd643b079e53cde9af9017a4a 120 doc "Additional Documentation" off +kernel-dbg.txz e4dbb88109de574785430251afa23524fb1b506464a1cb5245b457af3290fcbc 564 kernel_dbg "Kernel (Debugging)" off +kernel.txz 7880de966d9109f149846adf7296b9d988fa07256197d30c220b2ffd815a5861 572 kernel "Kernel (MANDATORY)" on +ports.txz 7933d91a932e3f1e915c577c2df7be3b424032f126454c90cd7aabd7957016d0 166533 ports "Ports tree" on +src.txz 558ec36330f610f3c39f72719b49f1dd5ead1a1a4eb9483e6bfc16ecc705dfdd 78409 src "System source tree" off +tests.txz bef8868dfd6a9a395a7a56237b9eabd1b86c0e4ba66697cadb167248d7911ad6 3878 tests "Test suite" off Modified: head/misc/freebsd-release-manifests/pkg-plist ============================================================================== --- head/misc/freebsd-release-manifests/pkg-plist Sat Jun 24 16:16:33 2017 (r444214) +++ head/misc/freebsd-release-manifests/pkg-plist Sat Jun 24 16:19:43 2017 (r444215) @@ -62,3 +62,9 @@ %%DATADIR%%/MANIFESTS/powerpc-powerpc-11.1-BETA2 %%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.1-BETA2 %%DATADIR%%/MANIFESTS/sparc64-sparc64-11.1-BETA2 +%%DATADIR%%/MANIFESTS/amd64-amd64-11.1-BETA3 +%%DATADIR%%/MANIFESTS/arm64-aarch64-11.1-BETA3 +%%DATADIR%%/MANIFESTS/i386-i386-11.1-BETA3 +%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.1-BETA3 +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.1-BETA3 +%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.1-BETA3 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:23:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ED04DA1860; Sat, 24 Jun 2017 16:23:51 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0387C713AB; Sat, 24 Jun 2017 16:23:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGNoSZ099014; Sat, 24 Jun 2017 16:23:50 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGNnv9099012; Sat, 24 Jun 2017 16:23:49 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201706241623.v5OGNnv9099012@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 24 Jun 2017 16:23:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444216 - in head/sysutils/vchanger: . 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, 24 Jun 2017 16:23:51 -0000 Author: dbaio Date: Sat Jun 24 16:23:49 2017 New Revision: 444216 URL: https://svnweb.freebsd.org/changeset/ports/444216 Log: sysutils/vchanger: Update to 1.0.1 The removed patch was incorporated upstream While I'am here: Include PORTVERSION in pkg-plist for simplifying future updates Changes: https://sourceforge.net/p/vchanger/code/ci/master/tree/ChangeLog PR: 220159 Submitted by: ml@netfence.it (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11312 Deleted: head/sysutils/vchanger/files/ Modified: head/sysutils/vchanger/Makefile head/sysutils/vchanger/distinfo head/sysutils/vchanger/pkg-plist Modified: head/sysutils/vchanger/Makefile ============================================================================== --- head/sysutils/vchanger/Makefile Sat Jun 24 16:19:43 2017 (r444215) +++ head/sysutils/vchanger/Makefile Sat Jun 24 16:23:49 2017 (r444216) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= vchanger -PORTVERSION= 1.0.0 +PORTVERSION= 1.0.1 CATEGORIES= sysutils MASTER_SITES= SF @@ -18,5 +18,6 @@ SHEBANG_FILES= scripts/vchanger-genudevrules \ scripts/vchanger-mount-uuid.sh GNU_CONFIGURE= yes OPTIONS_DEFINE= DOCS +PLIST_SUB+= PORTVERSION=${PORTVERSION} .include Modified: head/sysutils/vchanger/distinfo ============================================================================== --- head/sysutils/vchanger/distinfo Sat Jun 24 16:19:43 2017 (r444215) +++ head/sysutils/vchanger/distinfo Sat Jun 24 16:23:49 2017 (r444216) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483717814 -SHA256 (vchanger-1.0.0.tar.gz) = 080a13e0ade75f7c3c7528c6958372e923c0289c2e0f3df0439443b4dbf27919 -SIZE (vchanger-1.0.0.tar.gz) = 218824 +TIMESTAMP = 1498172524 +SHA256 (vchanger-1.0.1.tar.gz) = 1b5558b762fa1976bf2994bf5172063227266925a75e495e0a6cf7f9adc5bb35 +SIZE (vchanger-1.0.1.tar.gz) = 218462 Modified: head/sysutils/vchanger/pkg-plist ============================================================================== --- head/sysutils/vchanger/pkg-plist Sat Jun 24 16:19:43 2017 (r444215) +++ head/sysutils/vchanger/pkg-plist Sat Jun 24 16:23:49 2017 (r444216) @@ -6,13 +6,13 @@ libexec/vchanger/vchanger-mount-uuid.sh libexec/vchanger/vchanger-umount-uuid.sh man/man5/vchanger.conf.5.gz man/man8/vchanger.8.gz -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/COPYING -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/INSTALL -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/NEWS -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/README -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/ReleaseNotes -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/example-vchanger-udev.rules -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/vchanger-example.conf -%%PORTDOCS%%%%DOCSDIR%%-1.0.0/vchangerHowto.html +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/README +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/ReleaseNotes +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/example-vchanger-udev.rules +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/vchanger-example.conf +%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/vchangerHowto.html From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D982DA1954; Sat, 24 Jun 2017 16:31:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C30C71696; Sat, 24 Jun 2017 16:31:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVEUY099560; Sat, 24 Jun 2017 16:31:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVEg2099558; Sat, 24 Jun 2017 16:31:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVEg2099558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444218 - head/devel/rubygem-sidekiq-scheduler X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:15 -0000 Author: sunpoet Date: Sat Jun 24 16:31:14 2017 New Revision: 444218 URL: https://svnweb.freebsd.org/changeset/ports/444218 Log: Update to 2.1.6 Changes: https://github.com/moove-it/sidekiq-scheduler/releases Modified: head/devel/rubygem-sidekiq-scheduler/Makefile head/devel/rubygem-sidekiq-scheduler/distinfo Modified: head/devel/rubygem-sidekiq-scheduler/Makefile ============================================================================== --- head/devel/rubygem-sidekiq-scheduler/Makefile Sat Jun 24 16:31:09 2017 (r444217) +++ head/devel/rubygem-sidekiq-scheduler/Makefile Sat Jun 24 16:31:14 2017 (r444218) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sidekiq-scheduler -PORTVERSION= 2.1.5 +PORTVERSION= 2.1.6 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-sidekiq-scheduler/distinfo ============================================================================== --- head/devel/rubygem-sidekiq-scheduler/distinfo Sat Jun 24 16:31:09 2017 (r444217) +++ head/devel/rubygem-sidekiq-scheduler/distinfo Sat Jun 24 16:31:14 2017 (r444218) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496153886 -SHA256 (rubygem/sidekiq-scheduler-2.1.5.gem) = 893ce7572e9c428f1449bf6ddd45616cb54d84bb2263fa1169a7d097bbfd3539 -SIZE (rubygem/sidekiq-scheduler-2.1.5.gem) = 16896 +TIMESTAMP = 1498313068 +SHA256 (rubygem/sidekiq-scheduler-2.1.6.gem) = e4418f1f26448dc6f4d284858c6545f1bb4e4401c21f64d2fc5d0236aa4e8219 +SIZE (rubygem/sidekiq-scheduler-2.1.6.gem) = 16896 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D6D6DA193D; Sat, 24 Jun 2017 16:31:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D69871673; Sat, 24 Jun 2017 16:31:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGV9Pu099439; Sat, 24 Jun 2017 16:31:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGV9WC099437; Sat, 24 Jun 2017 16:31:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGV9WC099437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444217 - head/devel/p5-curry X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:10 -0000 Author: sunpoet Date: Sat Jun 24 16:31:09 2017 New Revision: 444217 URL: https://svnweb.freebsd.org/changeset/ports/444217 Log: Update to 1.001000 Changes: http://search.cpan.org/dist/curry/Changes Modified: head/devel/p5-curry/Makefile head/devel/p5-curry/distinfo Modified: head/devel/p5-curry/Makefile ============================================================================== --- head/devel/p5-curry/Makefile Sat Jun 24 16:23:49 2017 (r444216) +++ head/devel/p5-curry/Makefile Sat Jun 24 16:31:09 2017 (r444217) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= curry -PORTVERSION= 1.000000 +PORTVERSION= 1.001000 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MSTROUT Modified: head/devel/p5-curry/distinfo ============================================================================== --- head/devel/p5-curry/distinfo Sat Jun 24 16:23:49 2017 (r444216) +++ head/devel/p5-curry/distinfo Sat Jun 24 16:31:09 2017 (r444217) @@ -1,2 +1,3 @@ -SHA256 (curry-1.000000.tar.gz) = 2d81dae9a11515a791076b005ec4a0398b892e0323939c6d82a06b92988912ac -SIZE (curry-1.000000.tar.gz) = 2470 +TIMESTAMP = 1498313059 +SHA256 (curry-1.001000.tar.gz) = 8b186079202064fb3dcc25cf7290aa3f5d551d98d1b86d5844706a760c1f56d4 +SIZE (curry-1.001000.tar.gz) = 3754 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:20 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F179DA197A; Sat, 24 Jun 2017 16:31:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BDF971708; Sat, 24 Jun 2017 16:31:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVJCC099683; Sat, 24 Jun 2017 16:31:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVJvC099681; Sat, 24 Jun 2017 16:31:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVJvC099681@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444219 - head/devel/p5-AnyEvent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:20 -0000 Author: sunpoet Date: Sat Jun 24 16:31:19 2017 New Revision: 444219 URL: https://svnweb.freebsd.org/changeset/ports/444219 Log: Update to 7.14 Changes: http://search.cpan.org/dist/AnyEvent/Changes Modified: head/devel/p5-AnyEvent/Makefile head/devel/p5-AnyEvent/distinfo Modified: head/devel/p5-AnyEvent/Makefile ============================================================================== --- head/devel/p5-AnyEvent/Makefile Sat Jun 24 16:31:14 2017 (r444218) +++ head/devel/p5-AnyEvent/Makefile Sat Jun 24 16:31:19 2017 (r444219) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= AnyEvent -PORTVERSION= 7.13 +PORTVERSION= 7.14 PORTEPOCH= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN Modified: head/devel/p5-AnyEvent/distinfo ============================================================================== --- head/devel/p5-AnyEvent/distinfo Sat Jun 24 16:31:14 2017 (r444218) +++ head/devel/p5-AnyEvent/distinfo Sat Jun 24 16:31:19 2017 (r444219) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475353106 -SHA256 (AnyEvent-7.13.tar.gz) = a4103f4def9687b5545b3e6be1f29a5a24b59ff9a817b1afc27fb9bc268d04ad -SIZE (AnyEvent-7.13.tar.gz) = 299596 +TIMESTAMP = 1498313077 +SHA256 (AnyEvent-7.14.tar.gz) = 539358d225bad34b4a64f5217f8c2a707b15e3a28c74120c9dd2270c7cca7d2a +SIZE (AnyEvent-7.14.tar.gz) = 301645 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B120EDA19A8; Sat, 24 Jun 2017 16:31:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E7017178D; Sat, 24 Jun 2017 16:31:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVO8N099805; Sat, 24 Jun 2017 16:31:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVOHF099802; Sat, 24 Jun 2017 16:31:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVOHF099802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444220 - head/www/p5-Toadfarm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:25 -0000 Author: sunpoet Date: Sat Jun 24 16:31:24 2017 New Revision: 444220 URL: https://svnweb.freebsd.org/changeset/ports/444220 Log: Update to 0.78 Changes: http://search.cpan.org/dist/Toadfarm/Changes Modified: head/www/p5-Toadfarm/Makefile head/www/p5-Toadfarm/distinfo Modified: head/www/p5-Toadfarm/Makefile ============================================================================== --- head/www/p5-Toadfarm/Makefile Sat Jun 24 16:31:19 2017 (r444219) +++ head/www/p5-Toadfarm/Makefile Sat Jun 24 16:31:24 2017 (r444220) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Toadfarm -PORTVERSION= 0.77 +PORTVERSION= 0.78 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JHTHORSEN Modified: head/www/p5-Toadfarm/distinfo ============================================================================== --- head/www/p5-Toadfarm/distinfo Sat Jun 24 16:31:19 2017 (r444219) +++ head/www/p5-Toadfarm/distinfo Sat Jun 24 16:31:24 2017 (r444220) @@ -1,3 +1,3 @@ -TIMESTAMP = 1487688155 -SHA256 (Toadfarm-0.77.tar.gz) = bb2ad41f5f576928ff92e354a0d934aecf2eb6932e92ba56aadb8a65cb5d425a -SIZE (Toadfarm-0.77.tar.gz) = 31295 +TIMESTAMP = 1498313091 +SHA256 (Toadfarm-0.78.tar.gz) = 1628be4748251383ea7c2c23717fab7f3a0c41ef16797acfdf79f3aa3b6c18aa +SIZE (Toadfarm-0.78.tar.gz) = 31365 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3AC1DA19BA; Sat, 24 Jun 2017 16:31:27 +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 C2250717BD; Sat, 24 Jun 2017 16:31:27 +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 v5OGVQIV099912; Sat, 24 Jun 2017 16:31:26 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVQPs099911; Sat, 24 Jun 2017 16:31:26 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706241631.v5OGVQPs099911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 24 Jun 2017 16:31:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444221 - head/devel/apr2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:28 -0000 Author: linimon Date: Sat Jun 24 16:31:26 2017 New Revision: 444221 URL: https://svnweb.freebsd.org/changeset/ports/444221 Log: Fix typo. No change to package. Modified: head/devel/apr2/Makefile Modified: head/devel/apr2/Makefile ============================================================================== --- head/devel/apr2/Makefile Sat Jun 24 16:31:24 2017 (r444220) +++ head/devel/apr2/Makefile Sat Jun 24 16:31:26 2017 (r444221) @@ -16,7 +16,7 @@ LICENSE= APACHE20 LIB_DEPENDS= libexpat.so:textproc/expat2 -NO_PACKAGE= Developper only package +NO_PACKAGE= Developer only package # r1676013 SNAPDATE= 20150425134304 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CAB1DA19DC; Sat, 24 Jun 2017 16:31:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECDC17180B; Sat, 24 Jun 2017 16:31:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVTKR000131; Sat, 24 Jun 2017 16:31:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVTT9000129; Sat, 24 Jun 2017 16:31:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVTT9000129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444222 - head/devel/rubygem-aws-sdk-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, 24 Jun 2017 16:31:31 -0000 Author: sunpoet Date: Sat Jun 24 16:31:29 2017 New Revision: 444222 URL: https://svnweb.freebsd.org/changeset/ports/444222 Log: Update to 2.10.2 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Sat Jun 24 16:31:26 2017 (r444221) +++ head/devel/rubygem-aws-sdk-core/Makefile Sat Jun 24 16:31:29 2017 (r444222) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -PORTVERSION= 2.10.1 +PORTVERSION= 2.10.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Sat Jun 24 16:31:26 2017 (r444221) +++ head/devel/rubygem-aws-sdk-core/distinfo Sat Jun 24 16:31:29 2017 (r444222) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498242987 -SHA256 (rubygem/aws-sdk-core-2.10.1.gem) = 9e5d9aeaa2b4d8b05d447d8bfbd8b3cec41a021376e7a4e8bc8030b042239617 -SIZE (rubygem/aws-sdk-core-2.10.1.gem) = 1035776 +TIMESTAMP = 1498313112 +SHA256 (rubygem/aws-sdk-core-2.10.2.gem) = 3efafd48ec97e88f3260342c5968da09f2c7eed121eb4d034d3a299ce2c623fd +SIZE (rubygem/aws-sdk-core-2.10.2.gem) = 1035776 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:36 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60232DA1AE6; Sat, 24 Jun 2017 16:31:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F97371891; Sat, 24 Jun 2017 16:31:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVZFu000256; Sat, 24 Jun 2017 16:31:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVZ9G000254; Sat, 24 Jun 2017 16:31:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVZ9G000254@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444223 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:36 -0000 Author: sunpoet Date: Sat Jun 24 16:31:34 2017 New Revision: 444223 URL: https://svnweb.freebsd.org/changeset/ports/444223 Log: Update to 2.10.2 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Sat Jun 24 16:31:29 2017 (r444222) +++ head/devel/rubygem-aws-sdk-resources/Makefile Sat Jun 24 16:31:34 2017 (r444223) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -PORTVERSION= 2.10.1 +PORTVERSION= 2.10.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Sat Jun 24 16:31:29 2017 (r444222) +++ head/devel/rubygem-aws-sdk-resources/distinfo Sat Jun 24 16:31:34 2017 (r444223) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498242993 -SHA256 (rubygem/aws-sdk-resources-2.10.1.gem) = dd03c2aeec0e477ed40c3905778e056c63c8890d774633bbe1d8ce45cf638854 -SIZE (rubygem/aws-sdk-resources-2.10.1.gem) = 48640 +TIMESTAMP = 1498313118 +SHA256 (rubygem/aws-sdk-resources-2.10.2.gem) = e13acdf3f393b3cacc0b9c8ce3876578510b3e6385d5d3fd343c89dd0015c4de +SIZE (rubygem/aws-sdk-resources-2.10.2.gem) = 48640 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:41 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6B3FDA1B5C; Sat, 24 Jun 2017 16:31:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1B7071924; Sat, 24 Jun 2017 16:31:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVewY000377; Sat, 24 Jun 2017 16:31:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVe9h000375; Sat, 24 Jun 2017 16:31:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVe9h000375@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444224 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:42 -0000 Author: sunpoet Date: Sat Jun 24 16:31:40 2017 New Revision: 444224 URL: https://svnweb.freebsd.org/changeset/ports/444224 Log: Update to 2.10.2 Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Sat Jun 24 16:31:34 2017 (r444223) +++ head/devel/rubygem-aws-sdk/Makefile Sat Jun 24 16:31:40 2017 (r444224) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -PORTVERSION= 2.10.1 +PORTVERSION= 2.10.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Sat Jun 24 16:31:34 2017 (r444223) +++ head/devel/rubygem-aws-sdk/distinfo Sat Jun 24 16:31:40 2017 (r444224) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498242998 -SHA256 (rubygem/aws-sdk-2.10.1.gem) = f0b1681bc5843e42e6b34212456c7c60046abe5758274c08ce16aa1d09242d40 -SIZE (rubygem/aws-sdk-2.10.1.gem) = 4608 +TIMESTAMP = 1498313123 +SHA256 (rubygem/aws-sdk-2.10.2.gem) = 16cc702a7b88770e0f4bfbb4b9693c5a70d9b4125f4c9d74c62214a9f9933acc +SIZE (rubygem/aws-sdk-2.10.2.gem) = 4608 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11C83DA1B9A; Sat, 24 Jun 2017 16:31:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5434719A6; Sat, 24 Jun 2017 16:31:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVkEI001264; Sat, 24 Jun 2017 16:31:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVjU5001260; Sat, 24 Jun 2017 16:31:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVjU5001260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444225 - head/www/rubygem-hamlit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:47 -0000 Author: sunpoet Date: Sat Jun 24 16:31:45 2017 New Revision: 444225 URL: https://svnweb.freebsd.org/changeset/ports/444225 Log: Update to 2.8.4 Changes: https://github.com/k0kubun/hamlit/blob/master/CHANGELOG.md Modified: head/www/rubygem-hamlit/Makefile head/www/rubygem-hamlit/distinfo Modified: head/www/rubygem-hamlit/Makefile ============================================================================== --- head/www/rubygem-hamlit/Makefile Sat Jun 24 16:31:40 2017 (r444224) +++ head/www/rubygem-hamlit/Makefile Sat Jun 24 16:31:45 2017 (r444225) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hamlit -PORTVERSION= 2.8.3 +PORTVERSION= 2.8.4 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-hamlit/distinfo ============================================================================== --- head/www/rubygem-hamlit/distinfo Sat Jun 24 16:31:40 2017 (r444224) +++ head/www/rubygem-hamlit/distinfo Sat Jun 24 16:31:45 2017 (r444225) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498059701 -SHA256 (rubygem/hamlit-2.8.3.gem) = 272eb3c3ad4cd86171cede16bf58dbb1b9bc4e09b81af6a59234ccd8d3b41f52 -SIZE (rubygem/hamlit-2.8.3.gem) = 70656 +TIMESTAMP = 1498313130 +SHA256 (rubygem/hamlit-2.8.4.gem) = 8e4204f2d601137d93cfca8448e83c86341b10839c4d375bbe2dd5810d7f4ed5 +SIZE (rubygem/hamlit-2.8.4.gem) = 70656 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:52 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C176DA1BC8; Sat, 24 Jun 2017 16:31:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDDB671A32; Sat, 24 Jun 2017 16:31:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVp7p001397; Sat, 24 Jun 2017 16:31:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVoDO001396; Sat, 24 Jun 2017 16:31:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVoDO001396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444226 - head/japanese/mecab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:52 -0000 Author: sunpoet Date: Sat Jun 24 16:31:50 2017 New Revision: 444226 URL: https://svnweb.freebsd.org/changeset/ports/444226 Log: Pass maintainership to ports@ PR: 220253 Submitted by: Yasuhiro KIMURA (maintainer) Modified: head/japanese/mecab/Makefile Modified: head/japanese/mecab/Makefile ============================================================================== --- head/japanese/mecab/Makefile Sat Jun 24 16:31:45 2017 (r444225) +++ head/japanese/mecab/Makefile Sat Jun 24 16:31:50 2017 (r444226) @@ -7,7 +7,7 @@ PORTREVISION= 3 CATEGORIES= japanese textproc MASTER_SITES= https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7cENtOXlicTFaRUE&dummy=/ -MAINTAINER= yasu@utahime.org +MAINTAINER= ports@FreeBSD.org COMMENT= Yet Another Part-of-Speech and Morphological Analyzer LICENSE= BSD3CLAUSE GPLv2 LGPL21 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:31:56 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D87AEDA1BF3; Sat, 24 Jun 2017 16:31:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A734F71AA4; Sat, 24 Jun 2017 16:31:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGVtHY003650; Sat, 24 Jun 2017 16:31:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGVtLd003649; Sat, 24 Jun 2017 16:31:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241631.v5OGVtLd003649@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:31:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444227 - head/japanese/mecab-ipadic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:31:57 -0000 Author: sunpoet Date: Sat Jun 24 16:31:55 2017 New Revision: 444227 URL: https://svnweb.freebsd.org/changeset/ports/444227 Log: Pass maintainership to ports@ PR: 220254 Submitted by: Yasuhiro KIMURA (maintainer) Modified: head/japanese/mecab-ipadic/Makefile Modified: head/japanese/mecab-ipadic/Makefile ============================================================================== --- head/japanese/mecab-ipadic/Makefile Sat Jun 24 16:31:50 2017 (r444226) +++ head/japanese/mecab-ipadic/Makefile Sat Jun 24 16:31:55 2017 (r444227) @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= japanese textproc MASTER_SITES= https://drive.google.com/uc?export=download&id=0B4y35FiV1wh7MWVlSDBCSXZMTXM&dummy=/ -MAINTAINER= yasu@utahime.org +MAINTAINER= ports@FreeBSD.org COMMENT?= MeCab IPA dictionary meta-port LICENSE= NAIST ICOT From owner-svn-ports-head@freebsd.org Sat Jun 24 16:32:01 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A62BFDA1C1C; Sat, 24 Jun 2017 16:32:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72E7171B1E; Sat, 24 Jun 2017 16:32:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGW02D003796; Sat, 24 Jun 2017 16:32:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGW01r003795; Sat, 24 Jun 2017 16:32:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241632.v5OGW01r003795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:32:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444228 - head/mail/bsfilter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:32:01 -0000 Author: sunpoet Date: Sat Jun 24 16:32:00 2017 New Revision: 444228 URL: https://svnweb.freebsd.org/changeset/ports/444228 Log: Pass maintainership to ports@ PR: 220255 Submitted by: Yasuhiro KIMURA (maintainer) Modified: head/mail/bsfilter/Makefile Modified: head/mail/bsfilter/Makefile ============================================================================== --- head/mail/bsfilter/Makefile Sat Jun 24 16:31:55 2017 (r444227) +++ head/mail/bsfilter/Makefile Sat Jun 24 16:32:00 2017 (r444228) @@ -7,7 +7,7 @@ PORTREVISION= 2 CATEGORIES= mail ruby MASTER_SITES= SFJP/bsfilter/59804 -MAINTAINER= yasu@utahime.org +MAINTAINER= ports@FreeBSD.org COMMENT= Bayesian spam filter written in Ruby LICENSE= GPLv2 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:32:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3517DDA1C95; Sat, 24 Jun 2017 16:32:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 034EA71D51; Sat, 24 Jun 2017 16:32:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OGWOVL004060; Sat, 24 Jun 2017 16:32:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGWNJT004058; Sat, 24 Jun 2017 16:32:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706241632.v5OGWNJT004058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Jun 2017 16:32:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444229 - head/devel/py-jupyter_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: Sat, 24 Jun 2017 16:32:25 -0000 Author: sunpoet Date: Sat Jun 24 16:32:23 2017 New Revision: 444229 URL: https://svnweb.freebsd.org/changeset/ports/444229 Log: Update to 5.1.0 Changes: https://github.com/jupyter/jupyter_client/blob/master/docs/changelog.rst Modified: head/devel/py-jupyter_client/Makefile head/devel/py-jupyter_client/distinfo Modified: head/devel/py-jupyter_client/Makefile ============================================================================== --- head/devel/py-jupyter_client/Makefile Sat Jun 24 16:32:00 2017 (r444228) +++ head/devel/py-jupyter_client/Makefile Sat Jun 24 16:32:23 2017 (r444229) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jupyter_client -PORTVERSION= 5.0.1 +PORTVERSION= 5.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-jupyter_client/distinfo ============================================================================== --- head/devel/py-jupyter_client/distinfo Sat Jun 24 16:32:00 2017 (r444228) +++ head/devel/py-jupyter_client/distinfo Sat Jun 24 16:32:23 2017 (r444229) @@ -1,3 +1,3 @@ -TIMESTAMP = 1491396563 -SHA256 (jupyter_client-5.0.1.tar.gz) = 1fe573880b5ca4469ed0bece098f4b910c373d349e12525e1ea3566f5a14536b -SIZE (jupyter_client-5.0.1.tar.gz) = 262861 +TIMESTAMP = 1498313102 +SHA256 (jupyter_client-5.1.0.tar.gz) = 08756b021765c97bc5665390700a4255c2df31666ead8bff116b368d09912aba +SIZE (jupyter_client-5.1.0.tar.gz) = 265233 From owner-svn-ports-head@freebsd.org Sat Jun 24 16:54:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10250DA21DF; Sat, 24 Jun 2017 16:54:07 +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 D24E472C16; Sat, 24 Jun 2017 16:54:06 +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 v5OGs5JT013366; Sat, 24 Jun 2017 16:54:05 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OGs5UN013365; Sat, 24 Jun 2017 16:54:05 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706241654.v5OGs5UN013365@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 24 Jun 2017 16:54:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444230 - head/misc/dnetc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 16:54:07 -0000 Author: linimon Date: Sat Jun 24 16:54:05 2017 New Revision: 444230 URL: https://svnweb.freebsd.org/changeset/ports/444230 Log: Sort ARCHs. While here, provide a sane PKGNAME for unimplmented archs. Otherwise you get the construction "dnetc-,1" which, even though the build won't be attempted, looks really strange in the poudriere output. Approved by: portmgr (tier-2 blanket) Modified: head/misc/dnetc/Makefile Modified: head/misc/dnetc/Makefile ============================================================================== --- head/misc/dnetc/Makefile Sat Jun 24 16:32:23 2017 (r444229) +++ head/misc/dnetc/Makefile Sat Jun 24 16:54:05 2017 (r444230) @@ -18,7 +18,7 @@ COMMENT= Distributed.net distributed computing project WRKSRC= ${WRKDIR}/dnetc${PORTVERSION:E}-freebsd-${ARCH:S/i386/x86/}-elf DISTINFO_FILE= ${MASTERDIR}/distinfo.${ARCH} -ONLY_FOR_ARCHS= i386 sparc64 amd64 powerpc +ONLY_FOR_ARCHS= amd64 i386 powerpc sparc64 USE_RC_SUBR= dnetc NO_BUILD= yes @@ -56,6 +56,10 @@ VERSION= 2.9109.518 REVISION= 1 DISTNAME= dnetc${PORTVERSION:E}-freebsd8-${ARCH} WRKSRC= ${WRKDIR}/dnetc${PORTVERSION:E}-freebsd8-${ARCH} + +.else +# create a backstop for PORTVERSION for unimplemented arches to get a sane PKGNAME +VERSION= 0 .endif do-install: From owner-svn-ports-head@freebsd.org Sat Jun 24 17:06:10 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E2F2DA24DA; Sat, 24 Jun 2017 17:06:10 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C4D273252; Sat, 24 Jun 2017 17:06:10 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OH699o017721; Sat, 24 Jun 2017 17:06:09 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OH69cf017719; Sat, 24 Jun 2017 17:06:09 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706241706.v5OH69cf017719@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sat, 24 Jun 2017 17:06:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444231 - head/www/py-django-statici18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 17:06:10 -0000 Author: ultima Date: Sat Jun 24 17:06:08 2017 New Revision: 444231 URL: https://svnweb.freebsd.org/changeset/ports/444231 Log: * Updated to 1.4.0 * Added NO_ARCH - Add Django 1.11 support Reviewed by: lifanov (mentor), matthew (mentor) Approved by: lifanov (mentor), matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11332 Modified: head/www/py-django-statici18n/Makefile head/www/py-django-statici18n/distinfo Modified: head/www/py-django-statici18n/Makefile ============================================================================== --- head/www/py-django-statici18n/Makefile Sat Jun 24 16:54:05 2017 (r444230) +++ head/www/py-django-statici18n/Makefile Sat Jun 24 17:06:08 2017 (r444231) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-statici18n -PORTVERSION= 1.3.0 +PORTVERSION= 1.4.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,5 +18,6 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>=0:www/py USES= python USE_PYTHON= autoplist distutils +NO_ARCH= yes .include Modified: head/www/py-django-statici18n/distinfo ============================================================================== --- head/www/py-django-statici18n/distinfo Sat Jun 24 16:54:05 2017 (r444230) +++ head/www/py-django-statici18n/distinfo Sat Jun 24 17:06:08 2017 (r444231) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485616509 -SHA256 (django-statici18n-1.3.0.tar.gz) = f37cff511dd7d6f0c0b465c685026b660aea2ae178cc82a1b4c96c1b1e718c2a -SIZE (django-statici18n-1.3.0.tar.gz) = 7046 +TIMESTAMP = 1498239803 +SHA256 (django-statici18n-1.4.0.tar.gz) = 3cb5334d42cfabda49c9c0efb1c24f5663e318ed34b3a34fada5195232f75f65 +SIZE (django-statici18n-1.4.0.tar.gz) = 7045 From owner-svn-ports-head@freebsd.org Sat Jun 24 17:10:27 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67286DA2556; Sat, 24 Jun 2017 17:10:27 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EEF2B73377; Sat, 24 Jun 2017 17:10:26 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OHAQIV018241; Sat, 24 Jun 2017 17:10:26 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OHAPFu018231; Sat, 24 Jun 2017 17:10:25 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706241710.v5OHAPFu018231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sat, 24 Jun 2017 17:10:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444232 - in head: net-mgmt/ccnet-server net-mgmt/seafile-server www/py-seafdav www/py-seafobj 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: Sat, 24 Jun 2017 17:10:27 -0000 Author: ultima Date: Sat Jun 24 17:10:25 2017 New Revision: 444232 URL: https://svnweb.freebsd.org/changeset/ports/444232 Log: * Updated to 6.1.1 Changelog: https://manual.seafile.com/changelog/server-changelog.html Affected ports: net-mgmt/seafile-server net-mgmt/ccnet-server www/py-seafdav www/py-seafobj www/seahub Reviewed by: lifanov (mentor), matthew (mentor) Approved by: lifanov (mentor), matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11333 Modified: head/net-mgmt/ccnet-server/distinfo head/net-mgmt/seafile-server/Makefile.include head/net-mgmt/seafile-server/distinfo head/net-mgmt/seafile-server/pkg-plist head/www/py-seafdav/distinfo head/www/py-seafobj/distinfo head/www/seahub/distinfo head/www/seahub/pkg-plist Modified: head/net-mgmt/ccnet-server/distinfo ============================================================================== --- head/net-mgmt/ccnet-server/distinfo Sat Jun 24 17:06:08 2017 (r444231) +++ head/net-mgmt/ccnet-server/distinfo Sat Jun 24 17:10:25 2017 (r444232) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492228561 -SHA256 (haiwen-ccnet-server-v6.0.10-server_GH0.tar.gz) = 1a31a917c143c74bbb6fd67c54ee61841c343650b70f3d07dc130c990d8ffc1f -SIZE (haiwen-ccnet-server-v6.0.10-server_GH0.tar.gz) = 211221 +TIMESTAMP = 1498236981 +SHA256 (haiwen-ccnet-server-v6.1.1-server_GH0.tar.gz) = 1cb84c8155d348f14b5af6e085640f1b42c523210d0f01216f04b3ad6a0e047e +SIZE (haiwen-ccnet-server-v6.1.1-server_GH0.tar.gz) = 211230 Modified: head/net-mgmt/seafile-server/Makefile.include ============================================================================== --- head/net-mgmt/seafile-server/Makefile.include Sat Jun 24 17:06:08 2017 (r444231) +++ head/net-mgmt/seafile-server/Makefile.include Sat Jun 24 17:10:25 2017 (r444232) @@ -1,7 +1,7 @@ # $FreeBSD$ -SEAFILE_VER=6.0.10 -SEAHUB_VER=6.0.13 +SEAFILE_VER=6.1.1 +SEAHUB_VER=6.1.1 # Various vars used in most/all the Makefiles Modified: head/net-mgmt/seafile-server/distinfo ============================================================================== --- head/net-mgmt/seafile-server/distinfo Sat Jun 24 17:06:08 2017 (r444231) +++ head/net-mgmt/seafile-server/distinfo Sat Jun 24 17:10:25 2017 (r444232) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492228562 -SHA256 (haiwen-seafile-server-v6.0.10-server_GH0.tar.gz) = 7e6a8ebaa4b2b40c2854fbe9fd6608d24a219318be1271dd00603ebbb4fe90c1 -SIZE (haiwen-seafile-server-v6.0.10-server_GH0.tar.gz) = 695741 +TIMESTAMP = 1498236981 +SHA256 (haiwen-seafile-server-v6.1.1-server_GH0.tar.gz) = e939f0d374961372f9a8bf8f34f2da6f190e1bb67f5a9b793d20e584c347e2fe +SIZE (haiwen-seafile-server-v6.1.1-server_GH0.tar.gz) = 697896 Modified: head/net-mgmt/seafile-server/pkg-plist ============================================================================== --- head/net-mgmt/seafile-server/pkg-plist Sat Jun 24 17:06:08 2017 (r444231) +++ head/net-mgmt/seafile-server/pkg-plist Sat Jun 24 17:10:25 2017 (r444232) @@ -85,6 +85,8 @@ libdata/pkgconfig/libseafile.pc %%SEAFILE_SERVER%%/upgrade/sql/5.1.0/sqlite3/seahub.sql %%SEAFILE_SERVER%%/upgrade/sql/6.0.0/mysql/seahub.sql %%SEAFILE_SERVER%%/upgrade/sql/6.0.0/sqlite3/seahub.sql +%%SEAFILE_SERVER%%/upgrade/sql/6.1.0/mysql/seahub.sql +%%SEAFILE_SERVER%%/upgrade/sql/6.1.0/sqlite3/seahub.sql %%SEAFILE_SERVER%%/upgrade/upgrade_1.2_1.3.sh %%SEAFILE_SERVER%%/upgrade/upgrade_1.3_1.4.sh %%SEAFILE_SERVER%%/upgrade/upgrade_1.4_1.5.sh @@ -104,4 +106,5 @@ libdata/pkgconfig/libseafile.pc %%SEAFILE_SERVER%%/upgrade/upgrade_4.4_5.0.sh %%SEAFILE_SERVER%%/upgrade/upgrade_5.0_5.1.sh %%SEAFILE_SERVER%%/upgrade/upgrade_5.1_6.0.sh +%%SEAFILE_SERVER%%/upgrade/upgrade_6.0_6.1.sh @dir(%%USERS%%,%%GROUPS%%,755) %%HAIWENDIR%% Modified: head/www/py-seafdav/distinfo ============================================================================== --- head/www/py-seafdav/distinfo Sat Jun 24 17:06:08 2017 (r444231) +++ head/www/py-seafdav/distinfo Sat Jun 24 17:10:25 2017 (r444232) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493210654 -SHA256 (haiwen-seafdav-v6.0.13-pro_GH0.tar.gz) = e3e5d11828fa3e8fe257a1f40cce7afc0f4ec1e224c3a59c126fe8438ea94b44 -SIZE (haiwen-seafdav-v6.0.13-pro_GH0.tar.gz) = 2554686 +TIMESTAMP = 1498236982 +SHA256 (haiwen-seafdav-v6.1.1-pro_GH0.tar.gz) = 321a9ff989f37c58516b1e4401f68635e2da21f18c1e6b5954342b65fb505c78 +SIZE (haiwen-seafdav-v6.1.1-pro_GH0.tar.gz) = 2554681 Modified: head/www/py-seafobj/distinfo ============================================================================== --- head/www/py-seafobj/distinfo Sat Jun 24 17:06:08 2017 (r444231) +++ head/www/py-seafobj/distinfo Sat Jun 24 17:10:25 2017 (r444232) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493210656 -SHA256 (haiwen-seafobj-v6.0.13-pro_GH0.tar.gz) = 1c12e50061c0f536d6808a1d3067aae92cc67823ed56bd4caca7296eefbe99fe -SIZE (haiwen-seafobj-v6.0.13-pro_GH0.tar.gz) = 6626598 +TIMESTAMP = 1498236984 +SHA256 (haiwen-seafobj-v6.1.1-pro_GH0.tar.gz) = 57ff519372b2baba530fde40d74bc942e9a6b7bef9b13bd9d06bbdfab2e8b022 +SIZE (haiwen-seafobj-v6.1.1-pro_GH0.tar.gz) = 6626615 Modified: head/www/seahub/distinfo ============================================================================== --- head/www/seahub/distinfo Sat Jun 24 17:06:08 2017 (r444231) +++ head/www/seahub/distinfo Sat Jun 24 17:10:25 2017 (r444232) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493210659 -SHA256 (haiwen-seahub-v6.0.13-pro_GH0.tar.gz) = 2645e3b38f05d4c179f3c199ef3050900fcbc5e053bfdcde26e6954eead7d8ee -SIZE (haiwen-seahub-v6.0.13-pro_GH0.tar.gz) = 8393954 +TIMESTAMP = 1498236985 +SHA256 (haiwen-seahub-v6.1.1-pro_GH0.tar.gz) = 2cba452f391321c71745b4ee901230ffa3a3f3ecd791c2713616333af2be8339 +SIZE (haiwen-seahub-v6.1.1-pro_GH0.tar.gz) = 8941954 Modified: head/www/seahub/pkg-plist ============================================================================== --- head/www/seahub/pkg-plist Sat Jun 24 17:06:08 2017 (r444231) +++ head/www/seahub/pkg-plist Sat Jun 24 17:10:25 2017 (r444232) @@ -10,16 +10,20 @@ %%SEAHUBDIR%%/fabfile/copyright.py %%SEAHUBDIR%%/fabfile/locale.py %%SEAHUBDIR%%/i18n.sh +%%SEAHUBDIR%%/locale/ar/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/ar/LC_MESSAGES/djangojs.po +%%SEAHUBDIR%%/locale/bg/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/bg/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/bg_BG/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/ca/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/ca/LC_MESSAGES/djangojs.po +%%SEAHUBDIR%%/locale/cs/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/cs/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/cs_CZ/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/da_DK/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/de/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/de/LC_MESSAGES/djangojs.po +%%SEAHUBDIR%%/locale/el/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/el/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/el_GR/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/en/LC_MESSAGES/django.po @@ -49,12 +53,17 @@ %%SEAHUBDIR%%/locale/ja/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/ko/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/ko/LC_MESSAGES/djangojs.po +%%SEAHUBDIR%%/locale/lt/LC_MESSAGES/django.po +%%SEAHUBDIR%%/locale/lt/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/lv/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/lv/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/lv_LV/LC_MESSAGES/djangojs.po +%%SEAHUBDIR%%/locale/mk/LC_MESSAGES/django.po +%%SEAHUBDIR%%/locale/mk/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/nb/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/nb_NO/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/nl/LC_MESSAGES/django.po +%%SEAHUBDIR%%/locale/nl/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/nl_NL/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/pl/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/pl/LC_MESSAGES/djangojs.po @@ -75,6 +84,7 @@ %%SEAHUBDIR%%/locale/tr/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/uk/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/uk/LC_MESSAGES/djangojs.po +%%SEAHUBDIR%%/locale/vi/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/vi/LC_MESSAGES/djangojs.po %%SEAHUBDIR%%/locale/zh_CN/LC_MESSAGES/django.po %%SEAHUBDIR%%/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -99,7 +109,7 @@ %%SEAHUBDIR%%/media/assets/scripts/app/collections/activities.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/devices.ce46433dc2f6.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/devices.js -%%SEAHUBDIR%%/media/assets/scripts/app/collections/dirents.1b18e06eb541.js +%%SEAHUBDIR%%/media/assets/scripts/app/collections/dirents.38eb16334904.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/dirents.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/group-discussions.44e990cae2b8.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/group-discussions.js @@ -139,7 +149,7 @@ %%SEAHUBDIR%%/media/assets/scripts/app/models/activity.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.3ed4e1f93c0b.js %%SEAHUBDIR%%/media/assets/scripts/app/models/dirent.js %%SEAHUBDIR%%/media/assets/scripts/app/models/group-discussion.6d7706b3388e.js %%SEAHUBDIR%%/media/assets/scripts/app/models/group-discussion.js @@ -163,7 +173,7 @@ %%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.af0b1e5fcf5d.js +%%SEAHUBDIR%%/media/assets/scripts/app/router.31d07edec0fb.js %%SEAHUBDIR%%/media/assets/scripts/app/router.js %%SEAHUBDIR%%/media/assets/scripts/app/views/account.85f0cf2e10b8.js %%SEAHUBDIR%%/media/assets/scripts/app/views/account.js @@ -187,37 +197,35 @@ %%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.b42f9140300d.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-mvcp.1e490b235d9e.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-mvcp.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-rename.2e0b43157782.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/dirent-rename.2c8c6e2c432f.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.c156d392d4b6.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-change-password.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-folder-perm-admin.a73d294517e3.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-folder-perm-admin.e14ef650a519.js %%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.8637bf1be968.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-share-link-admin.69b3699a5c20.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dialogs/repo-share-link-admin.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dir.da7d39b6c0a5.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dir.a4e0a685e41e.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dir.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dirent-grid.0ef2c59627a2.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dirent-grid.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/dirent.a4b73e46950d.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/dirent.ee40c11621b9.js %%SEAHUBDIR%%/media/assets/scripts/app/views/dirent.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/fileupload.4f9ef2481950.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/fileupload.3d9ae4a9068b.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.356001e438d1.js %%SEAHUBDIR%%/media/assets/scripts/app/views/folder-perm.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/folder-share-item.6bf2bc9696ac.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/folder-share-item.5013f990c51b.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.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.95d5671d1cb5.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-item.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-manage-member.365797e94e66.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-manage-member.js @@ -227,11 +235,11 @@ %%SEAHUBDIR%%/media/assets/scripts/app/views/group-member.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.4340a46fb87f.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group-repo.37e74e934f6d.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group-settings.29f1bf52d581.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group-settings.54474821c0ee.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group-settings.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/group.5a0bfc0e312a.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/group.d3fa52f0d2b9.js %%SEAHUBDIR%%/media/assets/scripts/app/views/group.js %%SEAHUBDIR%%/media/assets/scripts/app/views/groups.d73e0007af34.js %%SEAHUBDIR%%/media/assets/scripts/app/views/groups.js @@ -239,21 +247,21 @@ %%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.7f7e119f5c94.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-repos.9a1073b2b8fe.js %%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-repos.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-shared-repos.0c824a198fc0.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-shared-repos.31e9a0699bee.js %%SEAHUBDIR%%/media/assets/scripts/app/views/myhome-shared-repos.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/notifications.465782b64984.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/notifications.51462e66a7d8.js %%SEAHUBDIR%%/media/assets/scripts/app/views/notifications.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/organization-repo.d94ba26c26d1.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/organization-repo.efd2c5ae8430.js %%SEAHUBDIR%%/media/assets/scripts/app/views/organization-repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/organization.f2b8e14eb3f3.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/organization.279bfd4a6bf5.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-folder-perm-item.bbe385d95fb6.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/repo-folder-perm-item.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.83195d7c4b6b.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/repo.9727ecfa9f10.js %%SEAHUBDIR%%/media/assets/scripts/app/views/repo.js %%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-folder.b1e05de56a32.js %%SEAHUBDIR%%/media/assets/scripts/app/views/share-admin-folder.js @@ -271,111 +279,123 @@ %%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.b34bd0c5f0cf.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/share.d57c3b564d66.js %%SEAHUBDIR%%/media/assets/scripts/app/views/share.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/shared-repo.537274428fc9.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/shared-repo.2ae920ff2717.js %%SEAHUBDIR%%/media/assets/scripts/app/views/shared-repo.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/side-nav.7bf4591aae5b.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/side-nav.d76f3432dd17.js %%SEAHUBDIR%%/media/assets/scripts/app/views/side-nav.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file-item.0ba608466736.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file-item.6d2e839ce3bd.js %%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file-item.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file.f310aca8fe53.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file.2b4b886e6a3d.js %%SEAHUBDIR%%/media/assets/scripts/app/views/starred-file.js -%%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/dropdown.30d2a55f70bf.js +%%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/dropdown.0a9f1da823df.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.c60b850d524f.js %%SEAHUBDIR%%/media/assets/scripts/app/views/widgets/hl-item-view.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.94794a54a518.js +%%SEAHUBDIR%%/media/assets/scripts/common.9ad182d5354c.js %%SEAHUBDIR%%/media/assets/scripts/common.js -%%SEAHUBDIR%%/media/assets/scripts/dist/build.d41d8cd98f00.js -%%SEAHUBDIR%%/media/assets/scripts/dist/build.fbecce5c5594.txt +%%SEAHUBDIR%%/media/assets/scripts/dist/build.d9508a510082.js +%%SEAHUBDIR%%/media/assets/scripts/dist/build.fc96f6ef28f1.txt %%SEAHUBDIR%%/media/assets/scripts/dist/build.js %%SEAHUBDIR%%/media/assets/scripts/dist/build.txt -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ca/djangojs.43d3fa05da34.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ar/djangojs.42d7fca23fd4.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ar/djangojs.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ca/djangojs.c2528b8e21fb.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ca/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/de/djangojs.c11c44a5f194.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/de/djangojs.60e44dbed55b.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/de/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/en/djangojs.0cfe5efbf7c3.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/el/djangojs.cbf55d8ba714.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/el/djangojs.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/en/djangojs.7d3052cf2fbf.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/en/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es-ar/djangojs.a68f0e720545.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es-ar/djangojs.fcfe6788392f.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es-ar/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es-mx/djangojs.ff54ce1cdeac.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es-mx/djangojs.5dcdfaf67a7f.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es-mx/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es/djangojs.ac4137666d37.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es/djangojs.a07b2b70fbfa.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/es/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/fi/djangojs.c1b2cb826bb3.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/fi/djangojs.3a52c64c31bf.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/fi/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/fr/djangojs.a29f783f813d.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/fr/djangojs.a74d8ba43e70.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/fr/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/he/djangojs.40f8706153d5.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/he/djangojs.648b3fd2ae90.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/he/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/hu/djangojs.36e4cffb4d3d.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/hu/djangojs.a143fd85f0fa.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/hu/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/is/djangojs.7fa2faccd1d1.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/is/djangojs.7c474b58871c.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/is/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/it/djangojs.017a18aacb79.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/it/djangojs.d0d40722ab7b.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/it/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ja/djangojs.40bc6381f2d9.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ja/djangojs.63f51f39597d.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ja/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ko/djangojs.969338a15d36.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ko/djangojs.304dff70ffde.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ko/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/lv/djangojs.0e6f1cb217d0.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/lv/djangojs.9c3fdaf77b4b.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/lv/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/nl/djangojs.f4e2913f7a78.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/nl/djangojs.8153d62922f5.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/nl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/pl/djangojs.08feb41d8471.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/pl/djangojs.05646003e192.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/pl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/pt-br/djangojs.e173220a3f0d.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/pt-br/djangojs.9a3a4088c97e.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/pt-br/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ru/djangojs.d0802c7dfe72.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ru/djangojs.68cc5d3199f1.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/ru/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sk/djangojs.b8059241294f.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sk/djangojs.a30e59df1a2b.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sk/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sl/djangojs.591adbc5da06.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sl/djangojs.6e392445dc33.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sv/djangojs.d281eed53eaa.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sv/djangojs.88b23a7490d9.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/sv/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/th/djangojs.68bfa3e8cb4f.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/th/djangojs.8815c1a5874e.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/th/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/tr/djangojs.6b8a66c4d803.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/tr/djangojs.dd3ba3c51a97.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/tr/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/uk/djangojs.8a3cf6b90108.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/uk/djangojs.e7963bbebfbf.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/uk/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-cn/djangojs.dab3b79551ea.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/vi/djangojs.16ee075a0783.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/vi/djangojs.js +%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-cn/djangojs.3c70e7c81127.js %%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-cn/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/dist/i18n/zh-tw/djangojs.f9941a040e37.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/require.603390194f29.js +%%SEAHUBDIR%%/media/assets/scripts/dist/lib/jquery.iframe-transport.87a72434af00.js +%%SEAHUBDIR%%/media/assets/scripts/dist/lib/jquery.iframe-transport.js +%%SEAHUBDIR%%/media/assets/scripts/dist/lib/require.75e6d0132deb.js %%SEAHUBDIR%%/media/assets/scripts/dist/lib/require.js -%%SEAHUBDIR%%/media/assets/scripts/dist/main.33f13ff15098.js +%%SEAHUBDIR%%/media/assets/scripts/dist/main.2a228bc174f5.js %%SEAHUBDIR%%/media/assets/scripts/dist/main.js -%%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.b835656f8d30.js +%%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.d9babd6bcdb6.js %%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.js -%%SEAHUBDIR%%/media/assets/scripts/file-tree.225c1b52bbee.js +%%SEAHUBDIR%%/media/assets/scripts/file-tree.ef8a19e97e35.js %%SEAHUBDIR%%/media/assets/scripts/file-tree.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ar/djangojs.b2ed189373d7.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ar/djangojs.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.689c37649caf.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.bdce6db1a9e6.js %%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/el/djangojs.30265339e750.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/el/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.6065597ccf8a.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.8cca4820cbd5.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.66ed8f1bffa0.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.43bd5cfc5a78.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.4024777c311a.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.21cf2023e8a3.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/fi/djangojs.8d877df126c1.js %%SEAHUBDIR%%/media/assets/scripts/i18n/fi/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.e1b2f22392f7.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.04d9ed99dc3e.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.e856f5c7925a.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.61318520eb04.js %%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.1e5efefee431.js %%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.js @@ -383,23 +403,23 @@ %%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.7d265c33d601.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.f7e8b50e5530.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.b7b7f3fc6ebd.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.26c43598812a.js %%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.e4fdeeb33a06.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.b615291b3e8e.js %%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.0f4d93b902dc.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.e8d65a84758c.js %%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.21005c88880e.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.b17ae925ff96.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.06183425c030.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.4bdedeaf3df7.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.0c6574e49720.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 @@ -407,25 +427,27 @@ %%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.df38cef92053.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/vi/djangojs.571bf40b160d.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/vi/djangojs.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.fd27ef3a89eb.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.d618e87fc646.js %%SEAHUBDIR%%/media/assets/scripts/i18n/zh-tw/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/lib/backbone.c1a39c11a835.js %%SEAHUBDIR%%/media/assets/scripts/lib/backbone.js %%SEAHUBDIR%%/media/assets/scripts/lib/backbone.paginator.ee50c2f50e53.js %%SEAHUBDIR%%/media/assets/scripts/lib/backbone.paginator.js %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.c0b3962f9f23.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.5.42.1.bc1c71220915.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.5.42.1.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.file-processing.1.3.0.ee4d16d07ff3.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.file-processing.1.3.0.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.ui.9.6.0.afc32532b865.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.ui.9.6.0.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.validation.1.1.2.63b30087cf31.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.validation.1.1.2.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.iframe-transport.1.4.ccdffe1d1ff0.js -%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.iframe-transport.1.4.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload-process.c92f97e488bb.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload-process.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload-ui.d9e29eebec8f.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload-ui.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload-validate.b4f0da4b2581.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload-validate.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.e5acbaa834c0.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.fileupload.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.iframe-transport.7b39a42a7a2a.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jquery.iframe-transport.js %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.js %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.magnific-popup.46e3906a2c4d.js %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.magnific-popup.js @@ -441,8 +463,8 @@ %%SEAHUBDIR%%/media/assets/scripts/lib/jquery.ui.widget.1.11.1.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 -%%SEAHUBDIR%%/media/assets/scripts/lib/jstree.1.0.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jstree.min.baba5642f663.js +%%SEAHUBDIR%%/media/assets/scripts/lib/jstree.min.js %%SEAHUBDIR%%/media/assets/scripts/lib/marked.min.c2a88705e206.js %%SEAHUBDIR%%/media/assets/scripts/lib/marked.min.js %%SEAHUBDIR%%/media/assets/scripts/lib/moment-with-locales.c4492e6216cc.js @@ -461,6 +483,8 @@ %%SEAHUBDIR%%/media/assets/scripts/main.js %%SEAHUBDIR%%/media/assets/scripts/pinyin-by-unicode.8a45c2cfbafa.js %%SEAHUBDIR%%/media/assets/scripts/pinyin-by-unicode.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/admin-logs.bf4b3e9cc727.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/collection/admin-logs.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.c3d27133cafe.js @@ -485,9 +509,11 @@ %%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/admin-log.0b7e25e105cb.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/models/admin-log.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.85509292c9f9.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 @@ -505,8 +531,12 @@ %%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.3548ecfdd587.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/router.dacf478ddfff.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/router.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/admin-log.de2f2ba3e6b8.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/admin-log.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/admin-logs.54a8cd179255.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/admin-logs.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dashboard.d1d112f34d99.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dashboard.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/desktop-devices.ccdb031a3a7f.js @@ -515,7 +545,7 @@ %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device-error.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.b123ead950e9.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device.ef1bef7c60ea.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/device.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dir.70a4340126e2.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/dir.js @@ -539,7 +569,7 @@ %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/mobile-devices.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.6cdbf20ef146.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/repos.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/search-groups.b1a342937497.js %%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/search-groups.js @@ -549,7 +579,7 @@ %%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.25097aa15313.js +%%SEAHUBDIR%%/media/assets/scripts/sysadmin-app/views/side-nav.58861626b95f.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 @@ -580,6 +610,10 @@ %%SEAHUBDIR%%/media/css/font/fontawesome-webfont.ttf %%SEAHUBDIR%%/media/css/font/fontawesome-webfont.woff %%SEAHUBDIR%%/media/css/jquery-ui.datepicker.min.css +%%SEAHUBDIR%%/media/css/jstree_default_theme/32px.png +%%SEAHUBDIR%%/media/css/jstree_default_theme/40px.png +%%SEAHUBDIR%%/media/css/jstree_default_theme/style.min.css +%%SEAHUBDIR%%/media/css/jstree_default_theme/throbber.gif %%SEAHUBDIR%%/media/css/loading.gif %%SEAHUBDIR%%/media/css/mediaelementplayer.css %%SEAHUBDIR%%/media/css/print_for_file_view.css @@ -614,6 +648,7 @@ %%SEAHUBDIR%%/media/img/file/192/pic.png %%SEAHUBDIR%%/media/img/file/192/ppt.png %%SEAHUBDIR%%/media/img/file/192/txt.png +%%SEAHUBDIR%%/media/img/file/192/video.png %%SEAHUBDIR%%/media/img/file/192/word.png %%SEAHUBDIR%%/media/img/file/24/excel.png %%SEAHUBDIR%%/media/img/file/24/file.png @@ -622,23 +657,8 @@ %%SEAHUBDIR%%/media/img/file/24/pic.png %%SEAHUBDIR%%/media/img/file/24/ppt.png %%SEAHUBDIR%%/media/img/file/24/txt.png +%%SEAHUBDIR%%/media/img/file/24/video.png %%SEAHUBDIR%%/media/img/file/24/word.png -%%SEAHUBDIR%%/media/img/file/excel-192.png -%%SEAHUBDIR%%/media/img/file/excel.png -%%SEAHUBDIR%%/media/img/file/file-192.png -%%SEAHUBDIR%%/media/img/file/file.png -%%SEAHUBDIR%%/media/img/file/music-192.png -%%SEAHUBDIR%%/media/img/file/music.png -%%SEAHUBDIR%%/media/img/file/pdf-192.png -%%SEAHUBDIR%%/media/img/file/pdf.png -%%SEAHUBDIR%%/media/img/file/pic-192.png -%%SEAHUBDIR%%/media/img/file/pic.png -%%SEAHUBDIR%%/media/img/file/ppt-192.png -%%SEAHUBDIR%%/media/img/file/ppt.png -%%SEAHUBDIR%%/media/img/file/txt-192.png -%%SEAHUBDIR%%/media/img/file/txt.png -%%SEAHUBDIR%%/media/img/file/word-192.png -%%SEAHUBDIR%%/media/img/file/word.png %%SEAHUBDIR%%/media/img/folder-192.png %%SEAHUBDIR%%/media/img/folder-24.png %%SEAHUBDIR%%/media/img/folder-beige-192.png @@ -647,6 +667,7 @@ %%SEAHUBDIR%%/media/img/folder-read-only-24.png %%SEAHUBDIR%%/media/img/grid-white.png %%SEAHUBDIR%%/media/img/grid.png +%%SEAHUBDIR%%/media/img/grippy_large.png %%SEAHUBDIR%%/media/img/grp_public.png %%SEAHUBDIR%%/media/img/help/resync-a-library.png %%SEAHUBDIR%%/media/img/help/%%USERS%%-add-account.png @@ -712,15 +733,6 @@ %%SEAHUBDIR%%/media/js/repo_crypto.js %%SEAHUBDIR%%/media/js/select2.min.js %%SEAHUBDIR%%/media/js/silverlightmediaelement.xap -%%SEAHUBDIR%%/media/js/themes/classic/d.gif -%%SEAHUBDIR%%/media/js/themes/classic/d.png -%%SEAHUBDIR%%/media/js/themes/classic/dot_for_ie.gif -%%SEAHUBDIR%%/media/js/themes/classic/style.css -%%SEAHUBDIR%%/media/js/themes/classic/throbber.gif -%%SEAHUBDIR%%/media/js/themes/default/d.gif -%%SEAHUBDIR%%/media/js/themes/default/d.png -%%SEAHUBDIR%%/media/js/themes/default/style.css -%%SEAHUBDIR%%/media/js/themes/default/throbber.gif %%SEAHUBDIR%%/media/js/thingiview/Three.js %%SEAHUBDIR%%/media/js/thingiview/binaryReader.js %%SEAHUBDIR%%/media/js/thingiview/plane.js @@ -729,6 +741,9 @@ %%SEAHUBDIR%%/media/js/thingiview/thingiview.js %%SEAHUBDIR%%/media/js/video-js.swf %%SEAHUBDIR%%/media/js/video.min.js +%%SEAHUBDIR%%/media/office-template/empty.docx +%%SEAHUBDIR%%/media/office-template/empty.pptx +%%SEAHUBDIR%%/media/office-template/empty.xlsx %%SEAHUBDIR%%/media/rest_framework/css/bootstrap-tweaks.css %%SEAHUBDIR%%/media/rest_framework/css/bootstrap.min.css %%SEAHUBDIR%%/media/rest_framework/css/default.css @@ -746,6 +761,13 @@ %%SEAHUBDIR%%/requirements.txt %%SEAHUBDIR%%/run-seahub.sh.template %%SEAHUBDIR%%/seahub/__init__.py +%%SEAHUBDIR%%/seahub/admin_log/__init__.py +%%SEAHUBDIR%%/seahub/admin_log/admin.py +%%SEAHUBDIR%%/seahub/admin_log/migrations/0001_initial.py +%%SEAHUBDIR%%/seahub/admin_log/migrations/__init__.py +%%SEAHUBDIR%%/seahub/admin_log/models.py +%%SEAHUBDIR%%/seahub/admin_log/signals.py +%%SEAHUBDIR%%/seahub/admin_log/views.py %%SEAHUBDIR%%/seahub/api2/__init__.py %%SEAHUBDIR%%/seahub/api2/authentication.py %%SEAHUBDIR%%/seahub/api2/base.py @@ -755,6 +777,7 @@ %%SEAHUBDIR%%/seahub/api2/endpoints/admin/default_library.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/device_errors.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/devices.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/favicon.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/file_audit.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/file_update.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/group_libraries.py @@ -763,14 +786,18 @@ %%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/logo.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/logs.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/org_users.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/users_batch.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/utils.py %%SEAHUBDIR%%/seahub/api2/endpoints/be_shared_repo.py +%%SEAHUBDIR%%/seahub/api2/endpoints/copy_move_task.py %%SEAHUBDIR%%/seahub/api2/endpoints/dir.py %%SEAHUBDIR%%/seahub/api2/endpoints/dir_shared_items.py %%SEAHUBDIR%%/seahub/api2/endpoints/file.py @@ -783,10 +810,14 @@ %%SEAHUBDIR%%/seahub/api2/endpoints/groups.py %%SEAHUBDIR%%/seahub/api2/endpoints/invitation.py %%SEAHUBDIR%%/seahub/api2/endpoints/invitations.py +%%SEAHUBDIR%%/seahub/api2/endpoints/notifications.py +%%SEAHUBDIR%%/seahub/api2/endpoints/query_copy_move_progress.py %%SEAHUBDIR%%/seahub/api2/endpoints/query_zip_progress.py +%%SEAHUBDIR%%/seahub/api2/endpoints/repo_file_uploaded_bytes.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_history.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_set_password.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_trash.py +%%SEAHUBDIR%%/seahub/api2/endpoints/repos_batch.py %%SEAHUBDIR%%/seahub/api2/endpoints/search_group.py %%SEAHUBDIR%%/seahub/api2/endpoints/search_user.py %%SEAHUBDIR%%/seahub/api2/endpoints/send_share_link_email.py @@ -797,6 +828,8 @@ %%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/user_avatar.py +%%SEAHUBDIR%%/seahub/api2/endpoints/user_enabled_modules.py %%SEAHUBDIR%%/seahub/api2/endpoints/utils.py %%SEAHUBDIR%%/seahub/api2/endpoints/zip_task.py %%SEAHUBDIR%%/seahub/api2/models.py @@ -945,6 +978,7 @@ %%SEAHUBDIR%%/seahub/institutions/decorators.py %%SEAHUBDIR%%/seahub/institutions/middleware.py %%SEAHUBDIR%%/seahub/institutions/migrations/0001_initial.py +%%SEAHUBDIR%%/seahub/institutions/migrations/0002_institutionquota.py %%SEAHUBDIR%%/seahub/institutions/migrations/__init__.py %%SEAHUBDIR%%/seahub/institutions/models.py %%SEAHUBDIR%%/seahub/institutions/templates/institutions/base.html @@ -954,6 +988,7 @@ %%SEAHUBDIR%%/seahub/institutions/templates/institutions/useradmin_search.html %%SEAHUBDIR%%/seahub/institutions/tests.py %%SEAHUBDIR%%/seahub/institutions/urls.py +%%SEAHUBDIR%%/seahub/institutions/utils.py %%SEAHUBDIR%%/seahub/institutions/views.py %%SEAHUBDIR%%/seahub/invitations/__init__.py %%SEAHUBDIR%%/seahub/invitations/admin.py @@ -971,20 +1006,6 @@ %%SEAHUBDIR%%/seahub/invitations/urls.py %%SEAHUBDIR%%/seahub/invitations/utils.py %%SEAHUBDIR%%/seahub/invitations/views.py -%%SEAHUBDIR%%/seahub/message/__init__.py -%%SEAHUBDIR%%/seahub/message/forms.py -%%SEAHUBDIR%%/seahub/message/management/__init__.py -%%SEAHUBDIR%%/seahub/message/management/commands/__init__.py -%%SEAHUBDIR%%/seahub/message/management/commands/send_user_messages.py -%%SEAHUBDIR%%/seahub/message/message.py -%%SEAHUBDIR%%/seahub/message/models.py -%%SEAHUBDIR%%/seahub/message/signals.py -%%SEAHUBDIR%%/seahub/message/templates/message/all_msg.html -%%SEAHUBDIR%%/seahub/message/templates/message/all_msg_list.html -%%SEAHUBDIR%%/seahub/message/templates/message/user_msg.html -%%SEAHUBDIR%%/seahub/message/templates/message/user_msg_list.html -%%SEAHUBDIR%%/seahub/message/urls.py -%%SEAHUBDIR%%/seahub/message/views.py %%SEAHUBDIR%%/seahub/notifications/__init__.py %%SEAHUBDIR%%/seahub/notifications/i18n.sh.template %%SEAHUBDIR%%/seahub/notifications/management/__init__.py @@ -1002,6 +1023,12 @@ %%SEAHUBDIR%%/seahub/notifications/urls.py %%SEAHUBDIR%%/seahub/notifications/utils.py %%SEAHUBDIR%%/seahub/notifications/views.py +%%SEAHUBDIR%%/seahub/onlyoffice/__init__.py +%%SEAHUBDIR%%/seahub/onlyoffice/admin.py +%%SEAHUBDIR%%/seahub/onlyoffice/migrations/__init__.py +%%SEAHUBDIR%%/seahub/onlyoffice/settings.py +%%SEAHUBDIR%%/seahub/onlyoffice/templates/onlyoffice/view_file_via_onlyoffice.html +%%SEAHUBDIR%%/seahub/onlyoffice/views.py %%SEAHUBDIR%%/seahub/options/__init__.py %%SEAHUBDIR%%/seahub/options/models.py %%SEAHUBDIR%%/seahub/options/templates/options/set_user_options.html @@ -1111,12 +1138,14 @@ %%SEAHUBDIR%%/seahub/templates/snippets/file_view_js.html %%SEAHUBDIR%%/seahub/templates/snippets/file_view_style.html %%SEAHUBDIR%%/seahub/templates/snippets/go_back_js.html +%%SEAHUBDIR%%/seahub/templates/snippets/image_file_view_js.html %%SEAHUBDIR%%/seahub/templates/snippets/list_commit_detail.html %%SEAHUBDIR%%/seahub/templates/snippets/notice_html.html %%SEAHUBDIR%%/seahub/templates/snippets/office_convert_html.html %%SEAHUBDIR%%/seahub/templates/snippets/office_convert_js.html %%SEAHUBDIR%%/seahub/templates/snippets/office_convert_style.html %%SEAHUBDIR%%/seahub/templates/snippets/password_strength_js.html +%%SEAHUBDIR%%/seahub/templates/snippets/pdfjs_file_viewer.html %%SEAHUBDIR%%/seahub/templates/snippets/repo_create_js.html %%SEAHUBDIR%%/seahub/templates/snippets/repo_dir_trash_tr.html %%SEAHUBDIR%%/seahub/templates/snippets/search_form.html @@ -1239,6 +1268,11 @@ %%SEAHUBDIR%%/seahub/wiki/forms.py %%SEAHUBDIR%%/seahub/wiki/models.py %%SEAHUBDIR%%/seahub/wiki/utils.py +%%SEAHUBDIR%%/seahub/wopi/__init__.py +%%SEAHUBDIR%%/seahub/wopi/settings.py +%%SEAHUBDIR%%/seahub/wopi/urls.py +%%SEAHUBDIR%%/seahub/wopi/utils.py +%%SEAHUBDIR%%/seahub/wopi/views.py %%SEAHUBDIR%%/seahub/wsgi.py %%SEAHUBDIR%%/send_user_notifications.sh.template %%SEAHUBDIR%%/setenv.sh.template @@ -1309,7 +1343,6 @@ %%SEAHUBDIR%%/static/scripts/app/views/dirent-grid.js %%SEAHUBDIR%%/static/scripts/app/views/dirent.js %%SEAHUBDIR%%/static/scripts/app/views/fileupload.js -%%SEAHUBDIR%%/static/scripts/app/views/folder-perm-item.js %%SEAHUBDIR%%/static/scripts/app/views/folder-perm.js %%SEAHUBDIR%%/static/scripts/app/views/folder-share-item.js %%SEAHUBDIR%%/static/scripts/app/views/group-discussion.js @@ -1330,7 +1363,7 @@ %%SEAHUBDIR%%/static/scripts/app/views/notifications.js %%SEAHUBDIR%%/static/scripts/app/views/organization-repo.js %%SEAHUBDIR%%/static/scripts/app/views/organization.js -%%SEAHUBDIR%%/static/scripts/app/views/repo-folder-perm.js +%%SEAHUBDIR%%/static/scripts/app/views/repo-folder-perm-item.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 @@ -1352,8 +1385,10 @@ %%SEAHUBDIR%%/static/scripts/build.js %%SEAHUBDIR%%/static/scripts/common.js %%SEAHUBDIR%%/static/scripts/file-tree.js +%%SEAHUBDIR%%/static/scripts/i18n/ar/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/ca/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/de/djangojs.js +%%SEAHUBDIR%%/static/scripts/i18n/el/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/en/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/es-ar/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/es-mx/djangojs.js @@ -1377,15 +1412,16 @@ %%SEAHUBDIR%%/static/scripts/i18n/th/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/tr/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/uk/djangojs.js +%%SEAHUBDIR%%/static/scripts/i18n/vi/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/zh-cn/djangojs.js %%SEAHUBDIR%%/static/scripts/i18n/zh-tw/djangojs.js %%SEAHUBDIR%%/static/scripts/lib/backbone.js %%SEAHUBDIR%%/static/scripts/lib/backbone.paginator.js -%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload.5.42.1.js -%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload.file-processing.1.3.0.js -%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload.ui.9.6.0.js -%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload.validation.1.1.2.js -%%SEAHUBDIR%%/static/scripts/lib/jquery.iframe-transport.1.4.js +%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload-process.js +%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload-ui.js +%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload-validate.js +%%SEAHUBDIR%%/static/scripts/lib/jquery.fileupload.js +%%SEAHUBDIR%%/static/scripts/lib/jquery.iframe-transport.js %%SEAHUBDIR%%/static/scripts/lib/jquery.js %%SEAHUBDIR%%/static/scripts/lib/jquery.magnific-popup.js %%SEAHUBDIR%%/static/scripts/lib/jquery.simplemodal.js @@ -1394,7 +1430,7 @@ %%SEAHUBDIR%%/static/scripts/lib/jquery.ui.tabs.js %%SEAHUBDIR%%/static/scripts/lib/jquery.ui.widget.1.11.1.js %%SEAHUBDIR%%/static/scripts/lib/js.cookie.js -%%SEAHUBDIR%%/static/scripts/lib/jstree.1.0.js +%%SEAHUBDIR%%/static/scripts/lib/jstree.min.js %%SEAHUBDIR%%/static/scripts/lib/marked.min.js %%SEAHUBDIR%%/static/scripts/lib/moment-with-locales.js %%SEAHUBDIR%%/static/scripts/lib/require.js @@ -1404,6 +1440,7 @@ %%SEAHUBDIR%%/static/scripts/lib/underscore.js %%SEAHUBDIR%%/static/scripts/main.js %%SEAHUBDIR%%/static/scripts/pinyin-by-unicode.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/collection/admin-logs.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 @@ -1416,6 +1453,7 @@ %%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/admin-log.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 @@ -1427,6 +1465,8 @@ %%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/admin-log.js +%%SEAHUBDIR%%/static/scripts/sysadmin-app/views/admin-logs.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 @@ -1462,6 +1502,7 @@ %%SEAHUBDIR%%/tests/api/endpoints/admin/test_default_library.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_device_errors.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_devices.py +%%SEAHUBDIR%%/tests/api/endpoints/admin/test_favicon.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_group_libraries.py @@ -1469,6 +1510,8 @@ %%SEAHUBDIR%%/tests/api/endpoints/admin/test_groups.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_libraries.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_login_log.py +%%SEAHUBDIR%%/tests/api/endpoints/admin/test_logo.py +%%SEAHUBDIR%%/tests/api/endpoints/admin/test_logs.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_org_users.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_perm_audit_log.py %%SEAHUBDIR%%/tests/api/endpoints/admin/test_shares.py @@ -1487,10 +1530,12 @@ %%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_notifications.py %%SEAHUBDIR%%/tests/api/endpoints/test_query_zip_progress.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_history.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_set_password.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_trash.py +%%SEAHUBDIR%%/tests/api/endpoints/test_repos_batch.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 @@ -1501,6 +1546,8 @@ %%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_user_avatar.py +%%SEAHUBDIR%%/tests/api/endpoints/test_user_enabled_modules.py %%SEAHUBDIR%%/tests/api/endpoints/test_zip_task.py %%SEAHUBDIR%%/tests/api/models/__init__.py %%SEAHUBDIR%%/tests/api/models/test_token_v2.py @@ -1513,6 +1560,7 @@ %%SEAHUBDIR%%/tests/api/test_dir.py %%SEAHUBDIR%%/tests/api/test_dir_revert.py %%SEAHUBDIR%%/tests/api/test_dir_sub_repo.py +%%SEAHUBDIR%%/tests/api/test_file_ops.py %%SEAHUBDIR%%/tests/api/test_file_revert.py %%SEAHUBDIR%%/tests/api/test_files.py %%SEAHUBDIR%%/tests/api/test_group_repos.py @@ -1533,6 +1581,7 @@ %%SEAHUBDIR%%/tests/api/test_shared_repo.py %%SEAHUBDIR%%/tests/api/test_shares.py %%SEAHUBDIR%%/tests/api/test_starredfiles.py +%%SEAHUBDIR%%/tests/api/test_throttings.py %%SEAHUBDIR%%/tests/api/urls.py %%SEAHUBDIR%%/tests/common/__init__.py %%SEAHUBDIR%%/tests/common/common.py @@ -1571,6 +1620,8 @@ %%SEAHUBDIR%%/tests/seahub/registraion/test_can_email_admins_on_registration.py %%SEAHUBDIR%%/tests/seahub/registraion/tests.py %%SEAHUBDIR%%/tests/seahub/role_permissions/test_utils.py +%%SEAHUBDIR%%/tests/seahub/share/models/__init__.py +%%SEAHUBDIR%%/tests/seahub/share/models/test_fileshare.py %%SEAHUBDIR%%/tests/seahub/share/test_decorators.py %%SEAHUBDIR%%/tests/seahub/share/views/test_send_shared_link.py %%SEAHUBDIR%%/tests/seahub/share/views/test_send_shared_upload_link.py @@ -1586,6 +1637,7 @@ %%SEAHUBDIR%%/tests/seahub/views/ajax/test_get_dirents.py %%SEAHUBDIR%%/tests/seahub/views/ajax/test_get_file_upload_url_ul.py %%SEAHUBDIR%%/tests/seahub/views/ajax/test_get_unenc_group_repos.py +%%SEAHUBDIR%%/tests/seahub/views/file/test_constance_text_conf.py %%SEAHUBDIR%%/tests/seahub/views/file/test_download_file.py %%SEAHUBDIR%%/tests/seahub/views/file/test_file.py %%SEAHUBDIR%%/tests/seahub/views/file/test_get_file_content_by_commit_and_path.py @@ -1623,6 +1675,7 @@ %%SEAHUBDIR%%/tests/seahub/views/sysadmin/test_user_reset.py %%SEAHUBDIR%%/tests/seahub/views/sysadmin/test_user_search.py %%SEAHUBDIR%%/tests/seahub/views/test_list_lib_dir.py +%%SEAHUBDIR%%/tests/seahub/views/test_sso.py %%SEAHUBDIR%%/tests/seahub/views/wiki/test_personal_wiki.py %%SEAHUBDIR%%/tests/seahubtests.sh %%SEAHUBDIR%%/tests/ui/__init__.py From owner-svn-ports-head@freebsd.org Sat Jun 24 17:12:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA12FDA2746; Sat, 24 Jun 2017 17:12:40 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A651A73825; Sat, 24 Jun 2017 17:12:40 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OHCdDL022242; Sat, 24 Jun 2017 17:12:39 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OHCd5B022238; Sat, 24 Jun 2017 17:12:39 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201706241712.v5OHCd5B022238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sat, 24 Jun 2017 17:12:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444233 - in head/net-mgmt: ccnet-client seafile-client seafile-gui X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 17:12:40 -0000 Author: ultima Date: Sat Jun 24 17:12:39 2017 New Revision: 444233 URL: https://svnweb.freebsd.org/changeset/ports/444233 Log: * Updated to 6.0.7 Changelog: https://manual.seafile.com/changelog/client-changelog.html Affected ports: net-mgmt/seafile-client net-mgmt/ccnet-client net-mgmt/seafile-gui Reviewed by: lifanov (mentor), matthew (mentor) Approved by: lifanov (mentor), matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11334 Modified: head/net-mgmt/ccnet-client/distinfo head/net-mgmt/seafile-client/Makefile.include head/net-mgmt/seafile-client/distinfo head/net-mgmt/seafile-gui/distinfo Modified: head/net-mgmt/ccnet-client/distinfo ============================================================================== --- head/net-mgmt/ccnet-client/distinfo Sat Jun 24 17:10:25 2017 (r444232) +++ head/net-mgmt/ccnet-client/distinfo Sat Jun 24 17:12:39 2017 (r444233) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495806404 -SHA256 (haiwen-ccnet-v6.0.6_GH0.tar.gz) = 6b3ac78f645929f6b8633fdd65c1e7b4066cf9038b4228c64f7f389c7c446f46 -SIZE (haiwen-ccnet-v6.0.6_GH0.tar.gz) = 179362 +TIMESTAMP = 1498237201 +SHA256 (haiwen-ccnet-v6.0.7_GH0.tar.gz) = c4e02b5b77d774ffaa47235e6e265ecce00f656766a2f232397ce86eeb3162fa +SIZE (haiwen-ccnet-v6.0.7_GH0.tar.gz) = 179356 Modified: head/net-mgmt/seafile-client/Makefile.include ============================================================================== --- head/net-mgmt/seafile-client/Makefile.include Sat Jun 24 17:10:25 2017 (r444232) +++ head/net-mgmt/seafile-client/Makefile.include Sat Jun 24 17:12:39 2017 (r444233) @@ -1,3 +1,3 @@ # $FreeBSD$ -SEAFILE_CLIENT_VER=6.0.6 +SEAFILE_CLIENT_VER=6.0.7 Modified: head/net-mgmt/seafile-client/distinfo ============================================================================== --- head/net-mgmt/seafile-client/distinfo Sat Jun 24 17:10:25 2017 (r444232) +++ head/net-mgmt/seafile-client/distinfo Sat Jun 24 17:12:39 2017 (r444233) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495806405 -SHA256 (haiwen-seafile-v6.0.6_GH0.tar.gz) = 3f4e25211c301d18fa0ff0be0f9ba0fcbc2649a5092b10cdb960a78be2062aed -SIZE (haiwen-seafile-v6.0.6_GH0.tar.gz) = 823502 +TIMESTAMP = 1498237202 +SHA256 (haiwen-seafile-v6.0.7_GH0.tar.gz) = e563eade01330bf679f3e6b9f0202b198170cdd8ec80642d9fb670b3a5cda793 +SIZE (haiwen-seafile-v6.0.7_GH0.tar.gz) = 823384 Modified: head/net-mgmt/seafile-gui/distinfo ============================================================================== --- head/net-mgmt/seafile-gui/distinfo Sat Jun 24 17:10:25 2017 (r444232) +++ head/net-mgmt/seafile-gui/distinfo Sat Jun 24 17:12:39 2017 (r444233) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495806407 -SHA256 (haiwen-seafile-client-v6.0.6_GH0.tar.gz) = df3a587c5e93c4f53768b0724115889be2bead65d7910a31e637c3075690ea6b -SIZE (haiwen-seafile-client-v6.0.6_GH0.tar.gz) = 2183317 +TIMESTAMP = 1498237204 +SHA256 (haiwen-seafile-client-v6.0.7_GH0.tar.gz) = 3212acab89ec3cee1508dd37826303447b7a738232e455b44ffc1a29d3c48baf +SIZE (haiwen-seafile-client-v6.0.7_GH0.tar.gz) = 2192384 From owner-svn-ports-head@freebsd.org Sat Jun 24 18:16:33 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92736DA3661; Sat, 24 Jun 2017 18:16:33 +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 627AC74E6A; Sat, 24 Jun 2017 18:16:33 +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 v5OIGWBv046733; Sat, 24 Jun 2017 18:16:32 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OIGWPG046732; Sat, 24 Jun 2017 18:16:32 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706241816.v5OIGWPG046732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 24 Jun 2017 18:16:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444234 - head/net/rabbitmq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 18:16:33 -0000 Author: olgeni Date: Sat Jun 24 18:16:32 2017 New Revision: 444234 URL: https://svnweb.freebsd.org/changeset/ports/444234 Log: Force using erlang-runtime19 for net/rabbitmq: the current version is NOT COMPATIBLE with Erlang 20 and can lead to data corruption during upgrades. The proper solution would be to build a release with a bundled runtime, but this will have to do for now. Modified: head/net/rabbitmq/Makefile Modified: head/net/rabbitmq/Makefile ============================================================================== --- head/net/rabbitmq/Makefile Sat Jun 24 17:12:39 2017 (r444233) +++ head/net/rabbitmq/Makefile Sat Jun 24 18:16:32 2017 (r444234) @@ -3,6 +3,7 @@ PORTNAME= rabbitmq PORTVERSION= 3.6.10 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} @@ -12,12 +13,12 @@ COMMENT= RabbitMQ is an implementation of AMQP LICENSE= MPL -BUILD_DEPENDS= erl:lang/erlang \ +BUILD_DEPENDS= erlang-runtime19>=19.0:lang/erlang-runtime19 \ ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:devel/py-simplejson \ xmlto:textproc/xmlto \ zip:archivers/zip \ rsync:net/rsync -RUN_DEPENDS= erl:lang/erlang +RUN_DEPENDS= erlang-runtime19>=19.0:lang/erlang-runtime19 OPTIONS_DEFINE= ADMIN OPTIONS_SUB= yes @@ -41,7 +42,8 @@ REINPLACE_ARGS= -i "" SCRIPTS_DIR= ${WRKSRC}/deps/rabbit/scripts SHEBANG_FILES= deps/rabbitmq_management/bin/rabbitmqadmin MAKE_ARGS+= PYTHON=${PYTHON_CMD} -MAKE_ENV+= TARGET_DIR="${STAGEDIR}${PREFIX}/lib/erlang/lib/rabbitmq_server-${PORTVERSION}" \ +MAKE_ENV+= PATH="${LOCALBASE}/lib/erlang19/bin:${PATH}" \ + TARGET_DIR="${STAGEDIR}${PREFIX}/lib/erlang/lib/rabbitmq_server-${PORTVERSION}" \ SBIN_DIR="${STAGEDIR}${PREFIX}/sbin/" \ MAN_DIR="${STAGEDIR}${PREFIX}/man" \ DOC_INSTALL_DIR="${STAGEDIR}${EXAMPLESDIR}" \ @@ -52,7 +54,7 @@ MAKE_JOBS_UNSAFE= yes .include post-patch: - @${REINPLACE_CMD} -e 's|/etc/rabbitmq|${PREFIX}/etc/rabbitmq|g ; s|/var/lib|/var/db|g ; s|$${ERL_DIR}erl|${PREFIX}/bin/erl|g' \ + @${REINPLACE_CMD} -e 's|/etc/rabbitmq|${PREFIX}/etc/rabbitmq|g ; s|/var/lib|/var/db|g ; s|$${ERL_DIR}erl|${PREFIX}/lib/erlang19/bin/erl|g' \ ${SCRIPTS_DIR}/rabbitmq-server \ ${SCRIPTS_DIR}/rabbitmqctl \ ${SCRIPTS_DIR}/rabbitmq-env \ From owner-svn-ports-head@freebsd.org Sat Jun 24 18:22:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8572EDA3841; Sat, 24 Jun 2017 18:22: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 4B83A751F7; Sat, 24 Jun 2017 18:22: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 v5OIMuGh050802; Sat, 24 Jun 2017 18:22:56 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OIMuod050801; Sat, 24 Jun 2017 18:22:56 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706241822.v5OIMuod050801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 24 Jun 2017 18:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444235 - 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, 24 Jun 2017 18:22:57 -0000 Author: olgeni Date: Sat Jun 24 18:22:56 2017 New Revision: 444235 URL: https://svnweb.freebsd.org/changeset/ports/444235 Log: Add UPDATING note about net/rabbitmq and Erlang 20. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sat Jun 24 18:16:32 2017 (r444234) +++ head/UPDATING Sat Jun 24 18:22:56 2017 (r444235) @@ -5,6 +5,17 @@ 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. +20170624: + AFFECTS: users of net/rabbitmq + AUTHOR: olgeni@FreeBSD.org + + The rabbitmq-3.6.10_1 port has been changed to use version 19 of + the Erlang runtime, because RabbitMQ is not yet compatible with + version 20. + + Upgrades to the previous rabbitmq-3.6.10 must be avoided as + they can lead to data corruption due to changes in Erlang 20. + 20170622: AFFECTS: users of database/postgresql* and other software using PostgreSQL to run AUTHOR: tz@FreeBSD.org From owner-svn-ports-head@freebsd.org Sat Jun 24 18:34:58 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9411DA3ADB; Sat, 24 Jun 2017 18:34: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 69572755FE; Sat, 24 Jun 2017 18:34:58 +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 v5OIYv31055117; Sat, 24 Jun 2017 18:34:57 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OIYu89055109; Sat, 24 Jun 2017 18:34:56 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706241834.v5OIYu89055109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 24 Jun 2017 18:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444236 - in head/lang: erlang erlang-java erlang-wx erlang-wx/files erlang/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 18:34:59 -0000 Author: olgeni Date: Sat Jun 24 18:34:56 2017 New Revision: 444236 URL: https://svnweb.freebsd.org/changeset/ports/444236 Log: Downgrade Erlang to version 19 until it is clear how the new term format affects all ports, or dependencies on runtime19 are in place. Added: head/lang/erlang-wx/files/ - copied from r444178, head/lang/erlang-wx/files/ head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp - copied unchanged from r444178, head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp Modified: head/lang/erlang-java/Makefile head/lang/erlang-java/distinfo head/lang/erlang-wx/Makefile head/lang/erlang-wx/distinfo head/lang/erlang/Makefile head/lang/erlang/distinfo head/lang/erlang/pkg-plist Modified: head/lang/erlang-java/Makefile ============================================================================== --- head/lang/erlang-java/Makefile Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang-java/Makefile Sat Jun 24 18:34:56 2017 (r444236) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 20.0 +PORTVERSION= 19.3.6 +PORTEPOCH= 1 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -14,7 +15,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= +PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ + patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang interface for Java @@ -31,14 +33,14 @@ MAKE_JOBS_UNSAFE=yes OPTIONS_DEFINE= DOCS -ERL_RELEASE= 20.0 +ERL_RELEASE= 19.3 USES= gmake ncurses perl5 USE_PERL5= build GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -APP_VERSION= 1.8 +APP_VERSION= 1.7.1 APP_DIR= ${PREFIX}/lib/erlang/lib/jinterface-${APP_VERSION} .include Modified: head/lang/erlang-java/distinfo ============================================================================== --- head/lang/erlang-java/distinfo Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang-java/distinfo Sat Jun 24 18:34:56 2017 (r444236) @@ -1,5 +1,17 @@ -TIMESTAMP = 1498165640 -SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 -SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 -SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a -SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 +TIMESTAMP = 1496937518 +SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 +SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 +SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c +SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 +SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd +SIZE (erlang/patch-otp-19.3.1) = 30225 +SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a +SIZE (erlang/patch-otp-19.3.2) = 6290 +SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 +SIZE (erlang/patch-otp-19.3.3) = 12525 +SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af +SIZE (erlang/patch-otp-19.3.4) = 13504 +SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 +SIZE (erlang/patch-otp-19.3.5) = 44563 +SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 +SIZE (erlang/patch-otp-19.3.6) = 13073 Modified: head/lang/erlang-wx/Makefile ============================================================================== --- head/lang/erlang-wx/Makefile Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang-wx/Makefile Sat Jun 24 18:34:56 2017 (r444236) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 20.0 +PORTVERSION= 19.3.6 +PORTEPOCH= 1 CATEGORIES= lang parallel MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -14,7 +15,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= +PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ + patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang bindings for wxWindows @@ -32,14 +34,14 @@ MAKE_JOBS_UNSAFE=yes OPTIONS_DEFINE= DOCS -ERL_RELEASE= 20.0 +ERL_RELEASE= 19.3 USES= gmake USE_GL= gl glu GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -APP_VERSION= 1.8.1 +APP_VERSION= 1.8 APP_DIR= ${PREFIX}/lib/erlang/lib/wx-${APP_VERSION} .include Modified: head/lang/erlang-wx/distinfo ============================================================================== --- head/lang/erlang-wx/distinfo Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang-wx/distinfo Sat Jun 24 18:34:56 2017 (r444236) @@ -1,5 +1,17 @@ -TIMESTAMP = 1498166065 -SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 -SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 -SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a -SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 +TIMESTAMP = 1496937511 +SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 +SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 +SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c +SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 +SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd +SIZE (erlang/patch-otp-19.3.1) = 30225 +SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a +SIZE (erlang/patch-otp-19.3.2) = 6290 +SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 +SIZE (erlang/patch-otp-19.3.3) = 12525 +SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af +SIZE (erlang/patch-otp-19.3.4) = 13504 +SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 +SIZE (erlang/patch-otp-19.3.5) = 44563 +SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 +SIZE (erlang/patch-otp-19.3.6) = 13073 Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang/Makefile Sat Jun 24 18:34:56 2017 (r444236) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= erlang -PORTVERSION= 20.0 -PORTEPOCH= 3 +PORTVERSION= 19.3.6 +PORTEPOCH= 4 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -20,7 +20,8 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} PATCH_SITES= http://olgeni.olgeni.com/~olgeni/distfiles/ \ LOCAL/olgeni -PATCHFILES= +PATCHFILES= patch-otp-19.3.1 patch-otp-19.3.2 patch-otp-19.3.3 \ + patch-otp-19.3.4 patch-otp-19.3.5 patch-otp-19.3.6 MAINTAINER= olgeni@FreeBSD.org COMMENT= Functional programming language from Ericsson @@ -65,7 +66,7 @@ OPTIONS_EXCLUDE_i386= DTRACE # ld(1) fails to link probes: missing __dtrace_erlang___* symbols OPTIONS_EXCLUDE_aarch64= DTRACE -ERL_RELEASE= 20.0 +ERL_RELEASE= 19.3 USES= gmake ncurses perl5 USE_PERL5= build @@ -73,9 +74,9 @@ USE_RC_SUBR= epmd GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -EI_VSN= 3.10 -SNMP_VSN= 5.2.6 -TOOLS_VSN= 2.10 +EI_VSN= 3.9.3 +SNMP_VSN= 5.2.5 +TOOLS_VSN= 2.9.1 .include @@ -233,6 +234,35 @@ post-install: .if ${PORT_OPTIONS:MDOCS} ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3.5 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/erts-8.3 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.3/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.4 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/crypto-3.7.3 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.6/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.9 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/inets-6.3.6 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.1/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.2 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssh-4.4.1 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.1/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.3 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/ssl-8.1.1 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1.1 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-3.1 + + ${MV} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.13/* \ + ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.14 + ${RMDIR} ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/xmerl-1.3.13 + ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/lang/erlang/distinfo ============================================================================== --- head/lang/erlang/distinfo Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang/distinfo Sat Jun 24 18:34:56 2017 (r444236) @@ -1,10 +1,10 @@ -TIMESTAMP = 1498164950 -SHA256 (erlang/otp_src_20.0.tar.gz) = fe80e1e14a2772901be717694bb30ac4e9a07eee0cc7a28988724cbd21476811 -SIZE (erlang/otp_src_20.0.tar.gz) = 87346046 -SHA256 (erlang/otp_doc_man_20.0.tar.gz) = b7f1542a94a170f8791f5d80a85706f9e8838924ea65d4301032d0c0cfb845cc -SIZE (erlang/otp_doc_man_20.0.tar.gz) = 1430939 -SHA256 (erlang/otp_doc_html_20.0.tar.gz) = 1ab25110b148ce263d6e68cd5a3b912299b6066cfcd9d2fce416a4e9b7d2543a -SIZE (erlang/otp_doc_html_20.0.tar.gz) = 33948386 +TIMESTAMP = 1496937493 +SHA256 (erlang/otp_src_19.3.tar.gz) = fe4a00651db39b8542b04530a48d24b2f2e7e0b77cbe93d728c9f05325bdfe83 +SIZE (erlang/otp_src_19.3.tar.gz) = 68510871 +SHA256 (erlang/otp_doc_man_19.3.tar.gz) = f8192ffdd7367083c055695eeddf198155da43dcc221aed1d870d1e3871dd95c +SIZE (erlang/otp_doc_man_19.3.tar.gz) = 1410781 +SHA256 (erlang/otp_doc_html_19.3.tar.gz) = dc3e3a82d1aba7f0deac1ddb81b7d6f8dee9a75e1d42b90c677a2b645f19a00c +SIZE (erlang/otp_doc_html_19.3.tar.gz) = 35818689 SHA256 (erlang/armstrong_thesis_2003.pdf) = da585b914eb07350e2d6f727db5eb0fb1551f49fc1270f7d4dc079f2c8c1ab7a SIZE (erlang/armstrong_thesis_2003.pdf) = 859249 SHA256 (erlang/bjarnelic.pdf) = 9544d4af5cea324e5c9cf77e670d9561ad61ddc240cdb5c2afecebc0a3d7429b @@ -17,3 +17,15 @@ SHA256 (erlang/mnesia_overview.pdf) = f07f9edd4ba865a1 SIZE (erlang/mnesia_overview.pdf) = 150266 SHA256 (erlang/programming_rules.pdf) = b95f8851004832b044e064c12976a422613ece897e98308a27ee8b66738b4502 SIZE (erlang/programming_rules.pdf) = 77025 +SHA256 (erlang/patch-otp-19.3.1) = 2373f890516b58ae006812ba5f15e4af1f8820be98230011b8cd8b345f51dedd +SIZE (erlang/patch-otp-19.3.1) = 30225 +SHA256 (erlang/patch-otp-19.3.2) = 21c56ac188177985c9db11c7066dcee0f7370760da3e15a0d03c235bd2a2cb2a +SIZE (erlang/patch-otp-19.3.2) = 6290 +SHA256 (erlang/patch-otp-19.3.3) = dbe1cab750a3339c3755db27b800e53232519c84a304bd562263ffb060afab55 +SIZE (erlang/patch-otp-19.3.3) = 12525 +SHA256 (erlang/patch-otp-19.3.4) = 02437ac753932f913209102e8cb249a264b774833bfda8c1532b338af60ff8af +SIZE (erlang/patch-otp-19.3.4) = 13504 +SHA256 (erlang/patch-otp-19.3.5) = 5755da205004ae7e724390958db9ecc737d99ec14e0d14abcec8b8603ea6ece5 +SIZE (erlang/patch-otp-19.3.5) = 44563 +SHA256 (erlang/patch-otp-19.3.6) = ee1b5f0fd64db3322031c38722aee96a8ee35aaac454f430c829446a198f6534 +SIZE (erlang/patch-otp-19.3.6) = 13073 Copied: head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp (from r444178, head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp Sat Jun 24 18:34:56 2017 (r444236, copy of r444178, head/lang/erlang/files/patch-lib_wx_c__src_wxe__impl.cpp) @@ -0,0 +1,20 @@ +--- lib/wx/c_src/wxe_impl.cpp.orig 2017-01-30 23:13:25 UTC ++++ lib/wx/c_src/wxe_impl.cpp +@@ -666,7 +666,7 @@ void * WxeApp::getPtr(char * bp, wxeMemE + throw wxe_badarg(index); + } + void * temp = memenv->ref2ptr[index]; +- if((index < memenv->next) && ((index == 0) || (temp > NULL))) ++ if((index < memenv->next) && ((index == 0) || (temp != NULL))) + return temp; + else { + throw wxe_badarg(index); +@@ -678,7 +678,7 @@ void WxeApp::registerPid(char * bp, ErlD + if(!memenv) + throw wxe_badarg(index); + void * temp = memenv->ref2ptr[index]; +- if((index < memenv->next) && ((index == 0) || (temp > NULL))) { ++ if((index < memenv->next) && ((index == 0) || (temp != NULL))) { + ptrMap::iterator it; + it = ptr2ref.find(temp); + if(it != ptr2ref.end()) { Modified: head/lang/erlang/pkg-plist ============================================================================== --- head/lang/erlang/pkg-plist Sat Jun 24 18:22:56 2017 (r444235) +++ head/lang/erlang/pkg-plist Sat Jun 24 18:34:56 2017 (r444236) @@ -8,6 +8,7 @@ bin/escript bin/run_erl bin/snmpc bin/to_erl +bin/typer etc/man.d/erlang.conf %%PORTDOCS%%%%DOCSDIR%%/armstrong_thesis_2003.pdf %%PORTDOCS%%%%DOCSDIR%%/bjarnelic.pdf From owner-svn-ports-head@freebsd.org Sat Jun 24 18:36:21 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A568DA3B26; Sat, 24 Jun 2017 18:36:21 +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 D7EE8756DA; Sat, 24 Jun 2017 18:36:20 +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 v5OIaKYH055314; Sat, 24 Jun 2017 18:36:20 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OIaJqg055308; Sat, 24 Jun 2017 18:36:19 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706241836.v5OIaJqg055308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 24 Jun 2017 18:36:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444237 - in head: lang/racket lang/racket-minimal multimedia/fxtv net/userfw science/simlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 18:36:21 -0000 Author: linimon Date: Sat Jun 24 18:36:19 2017 New Revision: 444237 URL: https://svnweb.freebsd.org/changeset/ports/444237 Log: Sort NOT_FOR_ARCHS. While here, clean up some BROKEN usages. Approved by: portmgr (tier-2 blanket) Modified: head/lang/racket-minimal/Makefile head/lang/racket/Makefile head/multimedia/fxtv/Makefile head/net/userfw/Makefile head/science/simlib/Makefile Modified: head/lang/racket-minimal/Makefile ============================================================================== --- head/lang/racket-minimal/Makefile Sat Jun 24 18:34:56 2017 (r444236) +++ head/lang/racket-minimal/Makefile Sat Jun 24 18:36:19 2017 (r444237) @@ -21,9 +21,9 @@ LICENSE= LGPL3 LIB_DEPENDS= libffi.so:devel/libffi -BROKEN_i386= does not build on i386 (Seg fault (internal error) at 0x606060a) -BROKEN_powerpc64= fails to build: jit.c: 'JIT_LOCAL4' undeclared (first use in this function) -NOT_FOR_ARCHS= armv6 aarch64 sparc64 +BROKEN_i386= fails to build: Seg fault (internal error) at 0x606060a +BROKEN_powerpc64= fails to build: jit.c: 'JIT_LOCAL4' undeclared (first use in this function) +NOT_FOR_ARCHS= aarch64 aarch64 sparc64 NOT_FOR_ARCHS_REASON= not yet ported to this arch MAKE_JOBS_UNSAFE=yes Modified: head/lang/racket/Makefile ============================================================================== --- head/lang/racket/Makefile Sat Jun 24 18:34:56 2017 (r444236) +++ head/lang/racket/Makefile Sat Jun 24 18:36:19 2017 (r444237) @@ -26,7 +26,7 @@ BROKEN_powerpc64= fails to build: jit.c: 'JIT_LOCAL4' BROKEN_FreeBSD_10_i386= segfaults during build BROKEN_FreeBSD_11_i386= segfaults during build BROKEN_FreeBSD_12_i386= segfaults during build -NOT_FOR_ARCHS= armv6 aarch64 sparc64 +NOT_FOR_ARCHS= aarch64 armv6 sparc64 NOT_FOR_ARCHS_REASON= not yet ported to this arch MAKE_JOBS_UNSAFE=yes Modified: head/multimedia/fxtv/Makefile ============================================================================== --- head/multimedia/fxtv/Makefile Sat Jun 24 18:34:56 2017 (r444236) +++ head/multimedia/fxtv/Makefile Sat Jun 24 18:36:19 2017 (r444237) @@ -15,7 +15,7 @@ LICENSE= BSD2CLAUSE LIB_DEPENDS= libtiff.so:graphics/tiff \ libXaw3d.so:x11-toolkits/Xaw3d -ONLY_FOR_ARCHS= i386 ia64 amd64 +ONLY_FOR_ARCHS= amd64 i386 USES= gmake jpeg tar:tgz MAKE_ENV= X11BASE=${LOCALBASE} Modified: head/net/userfw/Makefile ============================================================================== --- head/net/userfw/Makefile Sat Jun 24 18:34:56 2017 (r444236) +++ head/net/userfw/Makefile Sat Jun 24 18:36:19 2017 (r444237) @@ -15,22 +15,19 @@ COMMENT= Modular packet filter LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc= fails to compile BROKEN_powerpc64= fails to compile: pcpu.h: size of array '__assert_0' is negative +BROKEN_FreeBSD_11= fails to build on FreeBSD 11+ +BROKEN_FreeBSD_12= fails to build on FreeBSD 11+ SSP_UNSAFE= kernel module does not support ssp USES= cmake:outsource kmod tar:xz uidfix USE_LDCONFIG= yes -BROKEN_powerpc= does not compile - .include .if !exists(${SRC_BASE}/sys/sys/module.h) IGNORE= requires kernel source files -.endif - -.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1100000 -BROKEN= does not build on FreeBSD 11+ .endif CMAKE_ARGS+= -DDOMAIN_STUB:BOOL=OFF Modified: head/science/simlib/Makefile ============================================================================== --- head/science/simlib/Makefile Sat Jun 24 18:34:56 2017 (r444236) +++ head/science/simlib/Makefile Sat Jun 24 18:36:19 2017 (r444237) @@ -17,7 +17,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME} CXXFLAGS+= -fPIC -NOT_FOR_ARCHS= armv6 aarch64 mips mips64 powerpc powerpc64 sparc64 +NOT_FOR_ARCHS= aarch64 armv6 mips mips64 powerpc powerpc64 sparc64 NOT_FOR_ARCHS_REASON= contains not working ${ARCH}-dependent assembly code post-patch: From owner-svn-ports-head@freebsd.org Sat Jun 24 19:10:07 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 714F5DA4181; Sat, 24 Jun 2017 19:10:07 +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 39719762B6; Sat, 24 Jun 2017 19:10: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 v5OJA64r068107; Sat, 24 Jun 2017 19:10:06 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OJA6O5068105; Sat, 24 Jun 2017 19:10:06 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201706241910.v5OJA6O5068105@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sat, 24 Jun 2017 19:10:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444238 - head/devel/erlang-unicode_util_compat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 19:10:07 -0000 Author: olgeni Date: Sat Jun 24 19:10:06 2017 New Revision: 444238 URL: https://svnweb.freebsd.org/changeset/ports/444238 Log: Fix pkg-plist for Erlang 19. Modified: head/devel/erlang-unicode_util_compat/Makefile head/devel/erlang-unicode_util_compat/pkg-plist Modified: head/devel/erlang-unicode_util_compat/Makefile ============================================================================== --- head/devel/erlang-unicode_util_compat/Makefile Sat Jun 24 18:36:19 2017 (r444237) +++ head/devel/erlang-unicode_util_compat/Makefile Sat Jun 24 19:10:06 2017 (r444238) @@ -2,7 +2,7 @@ PORTNAME= unicode_util_compat PORTVERSION= 0.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= erlang- Modified: head/devel/erlang-unicode_util_compat/pkg-plist ============================================================================== --- head/devel/erlang-unicode_util_compat/pkg-plist Sat Jun 24 18:36:19 2017 (r444237) +++ head/devel/erlang-unicode_util_compat/pkg-plist Sat Jun 24 19:10:06 2017 (r444238) @@ -1,5 +1,7 @@ +lib/erlang/lib/unicode_util_compat-%%VERSION%%/ebin/unicode_util.beam lib/erlang/lib/unicode_util_compat-%%VERSION%%/ebin/unicode_util_compat.app lib/erlang/lib/unicode_util_compat-%%VERSION%%/ebin/unicode_util_compat.beam +lib/erlang/lib/unicode_util_compat-%%VERSION%%/src/unicode_util.erl lib/erlang/lib/unicode_util_compat-%%VERSION%%/src/unicode_util_compat.app.src lib/erlang/lib/unicode_util_compat-%%VERSION%%/src/unicode_util_compat.erl %%PORTDOCS%%%%DOCSDIR%%/README.md From owner-svn-ports-head@freebsd.org Sat Jun 24 19:38:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12E72DA4668; Sat, 24 Jun 2017 19:38:05 +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 D344276BA5; Sat, 24 Jun 2017 19:38:04 +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 v5OJc4au080513; Sat, 24 Jun 2017 19:38:04 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OJc3ml080511; Sat, 24 Jun 2017 19:38:03 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706241938.v5OJc3ml080511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 24 Jun 2017 19:38:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444239 - head/emulators/rpcs3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 19:38:05 -0000 Author: jbeich Date: Sat Jun 24 19:38:03 2017 New Revision: 444239 URL: https://svnweb.freebsd.org/changeset/ports/444239 Log: emulators/rpcs3: update to 0.0.2.353 - Expose CMake options Changes: https://github.com/RPCS3/rpcs3/compare/321f50bf...6561ddae Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Sat Jun 24 19:10:06 2017 (r444238) +++ head/emulators/rpcs3/Makefile Sat Jun 24 19:38:03 2017 (r444239) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.2-346 -DISTVERSIONSUFFIX= -g321f50bf +DISTVERSION= 0.0.2-353 +DISTVERSIONSUFFIX= -g6561ddae CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org @@ -16,11 +16,11 @@ LICENSE_FILE_BSL= ${WRKSRC}/Utilities/LICENSE_1_0.txt LICENSE_FILE_MIT= ${WRKSRC}/3rdparty/GSL/LICENSE LICENSE_FILE_ZLIB= ${WRKSRC}/asmjit/LICENSE.md -LIB_DEPENDS= libLLVM-4.0.so:devel/llvm40 \ - libpng.so:graphics/png \ +LIB_DEPENDS= libpng.so:graphics/png \ libavcodec.so:multimedia/ffmpeg ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= requires int128 and SSSE3 USE_GITHUB= yes GH_ACCOUNT= RPCS3 @@ -43,6 +43,16 @@ PLIST_FILES= bin/${PORTNAME} \ share/applications/${PORTNAME}.desktop \ share/icons/hicolor/48x48/apps/${PORTNAME}.png \ share/icons/hicolor/scalable/apps/${PORTNAME}.svg \ + +OPTIONS_DEFINE= GDB LLVM +OPTIONS_DEFAULT=LLVM + +GDB_DESC= GDB remote stub (powerpc64 target) +GDB_CMAKE_BOOL= WITH_GDB + +LLVM_DESC= LLVM-based PPU recompiler +LLVM_LIB_DEPENDS= libLLVM-4.0.so:devel/llvm40 +LLVM_CMAKE_BOOL_OFF= WITHOUT_LLVM post-patch: @${REINPLACE_CMD} -e 's/5\.8/5\.7/' ${WRKSRC}/${PORTNAME}/CMakeLists.txt Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Sat Jun 24 19:10:06 2017 (r444238) +++ head/emulators/rpcs3/distinfo Sat Jun 24 19:38:03 2017 (r444239) @@ -1,6 +1,6 @@ -TIMESTAMP = 1498237773 -SHA256 (RPCS3-rpcs3-v0.0.2-346-g321f50bf_GH0.tar.gz) = 135ac4e577b7cb4ea8cff1bcb346746b3029890ad3f4d6ca0b6ddfad32f9203d -SIZE (RPCS3-rpcs3-v0.0.2-346-g321f50bf_GH0.tar.gz) = 11253239 +TIMESTAMP = 1498320739 +SHA256 (RPCS3-rpcs3-v0.0.2-353-g6561ddae_GH0.tar.gz) = 3987113558ffc69bbd7e5e6117c42ebd09bb81a40be9d2bbc4e6d74ff43df565 +SIZE (RPCS3-rpcs3-v0.0.2-353-g6561ddae_GH0.tar.gz) = 11194862 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 76796e880e71864f24540f6f6edf8759e4710f9b2b0594a28066865733681de0 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-23-gc095a22_GH0.tar.gz) = 105539 SHA256 (RPCS3-pugixml-f205aaf_GH0.tar.gz) = 3b2a7e21625d8cbeb3aa1841b8816f6cab0752e89008b9fc67a325c800f153b5 From owner-svn-ports-head@freebsd.org Sat Jun 24 19:50:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 749CFDA4952; Sat, 24 Jun 2017 19:50:08 +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 4513876FC3; Sat, 24 Jun 2017 19:50:08 +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 v5OJo75n084611; Sat, 24 Jun 2017 19:50:07 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OJo7Uj084609; Sat, 24 Jun 2017 19:50:07 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201706241950.v5OJo7Uj084609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Sat, 24 Jun 2017 19:50:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444240 - head/sysutils/vm-bhyve X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 19:50:08 -0000 Author: lme Date: Sat Jun 24 19:50:07 2017 New Revision: 444240 URL: https://svnweb.freebsd.org/changeset/ports/444240 Log: sysutils/vm-bhyve: Update to 1.1.8 Upstream changelog: Add ability to set ignore_bad_msr="yes" which is required on AMD processors for some guests in order to avoid crashes if the guest tries to access registers that are not implemented. Also adds generic bhyve_options configuration setting to pass arbitrary arguments to the bhyve(8) command. PR: 219860 Submitted by: maintainer Modified: head/sysutils/vm-bhyve/Makefile head/sysutils/vm-bhyve/distinfo Modified: head/sysutils/vm-bhyve/Makefile ============================================================================== --- head/sysutils/vm-bhyve/Makefile Sat Jun 24 19:38:03 2017 (r444239) +++ head/sysutils/vm-bhyve/Makefile Sat Jun 24 19:50:07 2017 (r444240) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= vm-bhyve -PORTVERSION= 1.1.7 +PORTVERSION= 1.1.8 DISTVERSIONPREFIX=v CATEGORIES= sysutils Modified: head/sysutils/vm-bhyve/distinfo ============================================================================== --- head/sysutils/vm-bhyve/distinfo Sat Jun 24 19:38:03 2017 (r444239) +++ head/sysutils/vm-bhyve/distinfo Sat Jun 24 19:50:07 2017 (r444240) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494424010 -SHA256 (churchers-vm-bhyve-v1.1.7_GH0.tar.gz) = 89b689a004edf4dec2a7797defbb9df39e8130b000d4ec094ebb78f1d3c0b715 -SIZE (churchers-vm-bhyve-v1.1.7_GH0.tar.gz) = 54573 +TIMESTAMP = 1496917755 +SHA256 (churchers-vm-bhyve-v1.1.8_GH0.tar.gz) = 2c716a03a4d94d0867fd081d5dc0abc342d66a23208b606e659d10eed56c3114 +SIZE (churchers-vm-bhyve-v1.1.8_GH0.tar.gz) = 54985 From owner-svn-ports-head@freebsd.org Sat Jun 24 20:00:32 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D62BDA4BAC; Sat, 24 Jun 2017 20:00:32 +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 5CE61774E5; Sat, 24 Jun 2017 20:00:32 +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 v5OK0VFd089031; Sat, 24 Jun 2017 20:00:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OK0Vlg089029; Sat, 24 Jun 2017 20:00:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201706242000.v5OK0Vlg089029@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 24 Jun 2017 20:00:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444241 - head/sysutils/android-file-transfer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 20:00:32 -0000 Author: jbeich Date: Sat Jun 24 20:00:31 2017 New Revision: 444241 URL: https://svnweb.freebsd.org/changeset/ports/444241 Log: sysutils/android-file-transfer: update to 3.2 Changes: https://github.com/whoozle/android-file-transfer-linux/releases/tag/v3.2 Modified: head/sysutils/android-file-transfer/Makefile (contents, props changed) head/sysutils/android-file-transfer/distinfo (contents, props changed) Modified: head/sysutils/android-file-transfer/Makefile ============================================================================== --- head/sysutils/android-file-transfer/Makefile Sat Jun 24 19:50:07 2017 (r444240) +++ head/sysutils/android-file-transfer/Makefile Sat Jun 24 20:00:31 2017 (r444241) @@ -2,13 +2,10 @@ PORTNAME= android-file-transfer DISTVERSIONPREFIX= v -DISTVERSION= 3.1 -PORTREVISION?= 1 +DISTVERSION= 3.2 +PORTREVISION?= 0 CATEGORIES= sysutils -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 7a1db96cd2e2.patch:-p1 - MAINTAINER= jbeich@FreeBSD.org COMMENT= Android MTP client with minimalistic UI @@ -49,6 +46,10 @@ QT5_CMAKE_ON= -DBUILD_QT_UI=on -DDESIRED_QT_VERSION=5 QT5_PLIST_FILES=bin/android-file-transfer \ share/applications/android-file-transfer.desktop \ share/icons/hicolor/128x128/apps/android-file-transfer.png + +post-patch: + @${REINPLACE_CMD} '/set.*AFT_VERSION/s/".*"/"${GH_TAGNAME}"/' \ + ${WRKSRC}/CMakeLists.txt post-patch-CLI-off: @${REINPLACE_CMD} '/subdirectory(cli)/d' ${WRKSRC}/CMakeLists.txt Modified: head/sysutils/android-file-transfer/distinfo ============================================================================== --- head/sysutils/android-file-transfer/distinfo Sat Jun 24 19:50:07 2017 (r444240) +++ head/sysutils/android-file-transfer/distinfo Sat Jun 24 20:00:31 2017 (r444241) @@ -1,5 +1,3 @@ -TIMESTAMP = 1488052834 -SHA256 (whoozle-android-file-transfer-linux-v3.1_GH0.tar.gz) = d6350e273fa18c3c6d9e0a65c620ec35f41ef7e926acdf423a454f597e4314ec -SIZE (whoozle-android-file-transfer-linux-v3.1_GH0.tar.gz) = 546978 -SHA256 (7a1db96cd2e2.patch) = c3dd367c374c587421f43c78492987c9838300c48736edfc3819a3c5bcae2d87 -SIZE (7a1db96cd2e2.patch) = 1780 +TIMESTAMP = 1498212490 +SHA256 (whoozle-android-file-transfer-linux-v3.2_GH0.tar.gz) = 56d0ff8b5197a9089dd30533006fafb9a1b1c7a1e310a78d359ff00145107bcf +SIZE (whoozle-android-file-transfer-linux-v3.2_GH0.tar.gz) = 548831 From owner-svn-ports-head@freebsd.org Sat Jun 24 21:14:25 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EA43DA5DE5; Sat, 24 Jun 2017 21:14:25 +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 D69527924C; Sat, 24 Jun 2017 21:14:24 +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 v5OLENIq021442; Sat, 24 Jun 2017 21:14:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLENZL021440; Sat, 24 Jun 2017 21:14:23 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706242114.v5OLENZL021440@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 24 Jun 2017 21:14:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444242 - head/security/rubygem-origami X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 21:14:25 -0000 Author: antoine Date: Sat Jun 24 21:14:23 2017 New Revision: 444242 URL: https://svnweb.freebsd.org/changeset/ports/444242 Log: Update to 2.0.3 Modified: head/security/rubygem-origami/Makefile head/security/rubygem-origami/distinfo Modified: head/security/rubygem-origami/Makefile ============================================================================== --- head/security/rubygem-origami/Makefile Sat Jun 24 20:00:31 2017 (r444241) +++ head/security/rubygem-origami/Makefile Sat Jun 24 21:14:23 2017 (r444242) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= origami -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-origami/distinfo ============================================================================== --- head/security/rubygem-origami/distinfo Sat Jun 24 20:00:31 2017 (r444241) +++ head/security/rubygem-origami/distinfo Sat Jun 24 21:14:23 2017 (r444242) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493231879 -SHA256 (rubygem/origami-2.0.2.gem) = 3f7c27577b2edc4fec9fcdf11311866b403525b9b51feefbbb31ca51f1fcf97f -SIZE (rubygem/origami-2.0.2.gem) = 256000 +TIMESTAMP = 1497553988 +SHA256 (rubygem/origami-2.0.3.gem) = a0adfc9871af884d7312d1015678246c9adf55e5b50302648a2d1480bcc34a2a +SIZE (rubygem/origami-2.0.3.gem) = 256000 From owner-svn-ports-head@freebsd.org Sat Jun 24 21:18:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C891DA5E97; Sat, 24 Jun 2017 21:18:05 +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 E7E12793EC; Sat, 24 Jun 2017 21:18:04 +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 v5OLI4WO021729; Sat, 24 Jun 2017 21:18:04 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLI3ad021725; Sat, 24 Jun 2017 21:18:03 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201706242118.v5OLI3ad021725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Sat, 24 Jun 2017 21:18:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444243 - 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: Sat, 24 Jun 2017 21:18:05 -0000 Author: mr Date: Sat Jun 24 21:18:03 2017 New Revision: 444243 URL: https://svnweb.freebsd.org/changeset/ports/444243 Log: Update to r20170624104526. Modified: head/cad/kicad-devel/Makefile head/cad/kicad-devel/Makefile.git_rev head/cad/kicad-devel/distinfo head/cad/kicad-devel/pkg-plist Modified: head/cad/kicad-devel/Makefile ============================================================================== --- head/cad/kicad-devel/Makefile Sat Jun 24 21:14:23 2017 (r444242) +++ head/cad/kicad-devel/Makefile Sat Jun 24 21:18:03 2017 (r444243) @@ -3,7 +3,6 @@ PORTNAME= kicad DISTVERSION= r${GIT_SRC_DATE} -PORTREVISION= 3 #PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= LOCAL/mr Modified: head/cad/kicad-devel/Makefile.git_rev ============================================================================== --- head/cad/kicad-devel/Makefile.git_rev Sat Jun 24 21:14:23 2017 (r444242) +++ head/cad/kicad-devel/Makefile.git_rev Sat Jun 24 21:18:03 2017 (r444243) @@ -1,2 +1,2 @@ -GIT_SRC_HASH= ac9a64a1736617846a479f825e535dcf8f786b38 -GIT_SRC_DATE= 20170602115111 +GIT_SRC_HASH= 0719b99ad81c16f06e4068c91210230d7703aeec +GIT_SRC_DATE= 20170624104526 Modified: head/cad/kicad-devel/distinfo ============================================================================== --- head/cad/kicad-devel/distinfo Sat Jun 24 21:14:23 2017 (r444242) +++ head/cad/kicad-devel/distinfo Sat Jun 24 21:18:03 2017 (r444243) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496501733 -SHA256 (kicad/kicad-r20170602115111.tar.bz2) = 2966419d1b469adc46c3ced313cca584afb9bb279b2ce36bb00d1910df837063 -SIZE (kicad/kicad-r20170602115111.tar.bz2) = 239926339 +TIMESTAMP = 1498319256 +SHA256 (kicad/kicad-r20170624104526.tar.bz2) = 285f97c5eb7537be9be535f74d9836d386723918a38d63bc8830e955a5039e89 +SIZE (kicad/kicad-r20170624104526.tar.bz2) = 243515405 Modified: head/cad/kicad-devel/pkg-plist ============================================================================== --- head/cad/kicad-devel/pkg-plist Sat Jun 24 21:14:23 2017 (r444242) +++ head/cad/kicad-devel/pkg-plist Sat Jun 24 21:18:03 2017 (r444243) @@ -419,8 +419,8 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/library/ftdi.lib %%DATADIR%%/library/gennum.dcm %%DATADIR%%/library/gennum.lib -%%DATADIR%%/library/graphic.dcm -%%DATADIR%%/library/graphic.lib +%%DATADIR%%/library/graphic_symbols.dcm +%%DATADIR%%/library/graphic_symbols.lib %%DATADIR%%/library/hc11.dcm %%DATADIR%%/library/hc11.lib %%DATADIR%%/library/infineon.dcm @@ -437,8 +437,6 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/library/leds.lib %%DATADIR%%/library/linear.dcm %%DATADIR%%/library/linear.lib -%%DATADIR%%/library/logo.dcm -%%DATADIR%%/library/logo.lib %%DATADIR%%/library/makefile %%DATADIR%%/library/maxim.dcm %%DATADIR%%/library/maxim.lib @@ -559,6 +557,10 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/Push_E-Switch_KS01Q01.wings %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/Push_E-Switch_KS01Q01.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_CuK_JS202011AQN_DPDT_Angled.step +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_CuK_JS202011AQN_DPDT_Angled.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_CuK_JS202011CQN_DPDT_Straight.step +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_CuK_JS202011CQN_DPDT_Straight.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_DIP_x10_W7.62mm_Piano.wings %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_DIP_x10_W7.62mm_Piano.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_DIP_x10_W7.62mm_Slide.wings @@ -628,8 +630,14 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h8mm.wrl %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h9.5mm.step %%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h9.5mm.wrl -%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled.step -%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx31-2LFS.step +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx31-2LFS.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx39-2LFS.step +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx39-2LFS.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx58-2LFS.step +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx58-2LFS.wrl +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx83-2LFS.step +%%DATADIR%%/modules/packages3d/Buttons_Switches_THT.3dshapes/SW_Tactile_SPST_Angled_PTS645Vx83-2LFS.wrl %%DATADIR%%/modules/packages3d/Buzzers_Beepers.3dshapes/Buzzer_12x9.5RM7.6.wings %%DATADIR%%/modules/packages3d/Buzzers_Beepers.3dshapes/Buzzer_12x9.5RM7.6.wrl %%DATADIR%%/modules/packages3d/Buzzers_Beepers.3dshapes/MagneticBuzzer_Kingstate_KCG0601.wings @@ -819,89 +827,89 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal.FCStd %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal.wrl %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Axial_Round_Horizontal_master.FCStd -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P2.50mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P3.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P3.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P3.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P3.80mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P3.80mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P3.80mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D10.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D12.5mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D13.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D14.0mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D14.0mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D14.0mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D14.0mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D14.0mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D14.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D16.0mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D16.0mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D16.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D17.0mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D17.0mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D17.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D18.0mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D18.0mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D18.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D22.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D22.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D22.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D24.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D24.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D24.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D25.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D25.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D25.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D26.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D26.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D26.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D30.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D30.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D30.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D35.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D35.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D35.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P2.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P2.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P2.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D40.0mm_P10.00mm_SnapIn.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D40.0mm_P10.00mm_SnapIn.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D40.0mm_P10.00mm_SnapIn.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D7.5mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D7.5mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D7.5mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.80mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.80mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.80mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P5.00mm.wrl %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_Round_Vertical_3pin_master.FCStd %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/CP_Radial_Round_Vertical_master.FCStd @@ -1070,359 +1078,359 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Disc_D9.0mm_W5.0mm_P5.00mm.wrl %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Disc_D9.0mm_W5.0mm_P7.50mm.FCStd %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Disc_D9.0mm_W5.0mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W11.0mm_P22.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W11.0mm_P22.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W11.0mm_P22.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W9.0mm_P22.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W9.0mm_P22.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W9.0mm_P22.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W9.0mm_P23.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W9.0mm_P23.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L27.0mm_W9.0mm_P23.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L32.0mm_W15.0mm_P27.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L32.0mm_W15.0mm_P27.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L32.0mm_W15.0mm_P27.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.0mm_W2.5mm_P2.50mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.0mm_W2.5mm_P2.50mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.0mm_W2.5mm_P2.50mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.0mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.0mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.0mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W4.5mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W4.5mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W4.5mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W6.0mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W6.0mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W6.0mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W6.5mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W6.5mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W6.5mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.5mm_W6.5mm_P5.00mm.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.5mm_W6.5mm_P5.00mm.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L7.5mm_W6.5mm_P5.00mm.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W%%PYTHON_VER%%mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W%%PYTHON_VER%%mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W%%PYTHON_VER%%mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT.wrl -%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT.FCStd +%%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT.step %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT.wrl %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/c_disc_master.FCStd %%DATADIR%%/modules/packages3d/Capacitors_THT.3dshapes/c_mks_master.FCStd @@ -1625,6 +1633,66 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_EH_S14B-EH_14x2.50mm_Angled.wrl %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_EH_S15B-EH_15x2.50mm_Angled.step %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_EH_S15B-EH_15x2.50mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B10B-PH-K_10x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B10B-PH-K_10x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B11B-PH-K_11x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B11B-PH-K_11x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B12B-PH-K_12x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B12B-PH-K_12x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B13B-PH-K_13x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B13B-PH-K_13x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B14B-PH-K_14x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B14B-PH-K_14x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B15B-PH-K_15x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B15B-PH-K_15x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B16B-PH-K_16x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B16B-PH-K_16x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B2B-PH-K_02x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B2B-PH-K_02x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B3B-PH-K_03x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B3B-PH-K_03x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B4B-PH-K_04x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B4B-PH-K_04x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B5B-PH-K_05x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B5B-PH-K_05x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B6B-PH-K_06x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B6B-PH-K_06x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B7B-PH-K_07x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B7B-PH-K_07x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B8B-PH-K_08x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B8B-PH-K_08x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B9B-PH-K_09x2.00mm_Straight.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B9B-PH-K_09x2.00mm_Straight.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S10B-PH-K_10x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S10B-PH-K_10x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S11B-PH-K_11x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S11B-PH-K_11x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S12B-PH-K_12x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S12B-PH-K_12x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S13B-PH-K_13x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S13B-PH-K_13x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S14B-PH-K_14x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S14B-PH-K_14x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S15B-PH-K_15x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S15B-PH-K_15x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S16B-PH-K_16x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S16B-PH-K_16x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S2B-PH-K_02x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S2B-PH-K_02x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S3B-PH-K_03x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S3B-PH-K_03x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S4B-PH-K_04x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S4B-PH-K_04x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S5B-PH-K_05x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S5B-PH-K_05x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S6B-PH-K_06x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S6B-PH-K_06x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S7B-PH-K_07x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S7B-PH-K_07x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S8B-PH-K_08x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S8B-PH-K_08x2.00mm_Angled.wrl +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S9B-PH-K_09x2.00mm_Angled.step +%%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S9B-PH-K_09x2.00mm_Angled.wrl %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.step %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_XH_B02B-XH-A_02x2.50mm_Straight.wrl %%DATADIR%%/modules/packages3d/Connectors_JST.3dshapes/JST_XH_B03B-XH-A_03x2.50mm_Straight.step @@ -3327,6 +3395,8 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Discret.3dshapes/TO92GSD.wrl %%DATADIR%%/modules/packages3d/Discret.3dshapes/VP0808.wings %%DATADIR%%/modules/packages3d/Discret.3dshapes/VP0808.wrl +%%DATADIR%%/modules/packages3d/Display.3dshapes/EA_DOGXL160-7.step +%%DATADIR%%/modules/packages3d/Display.3dshapes/EA_DOGXL160-7.wrl %%DATADIR%%/modules/packages3d/Display.3dshapes/HDSP-48xx.fcstd %%DATADIR%%/modules/packages3d/Display.3dshapes/HDSP-48xx.step %%DATADIR%%/modules/packages3d/Display.3dshapes/HDSP-48xx.wrl @@ -3346,6 +3416,8 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Fuse_Holders_and_Fuses.3dshapes/BladeFuse-CarType.wrl %%DATADIR%%/modules/packages3d/Fuse_Holders_and_Fuses.3dshapes/BladeFuse-Mini.wings %%DATADIR%%/modules/packages3d/Fuse_Holders_and_Fuses.3dshapes/BladeFuse-Mini.wrl +%%DATADIR%%/modules/packages3d/Fuse_Holders_and_Fuses.3dshapes/Fuseholder_Schruter_FUP_horiz_closed_5x20mm_or_6.3x32mm.step +%%DATADIR%%/modules/packages3d/Fuse_Holders_and_Fuses.3dshapes/Fuseholder_Schruter_FUP_horiz_closed_5x20mm_or_6.3x32mm.wrl %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/HTFS-Series_LEM-HallEffektCurrentTransducer.wings %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/HTFS-Series_LEM-HallEffektCurrentTransducer.wrl %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/HX02_HX03_HallEffectCurrentTransducer.wings @@ -3360,6 +3432,8 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/HX20_HX25_HallEffectCurrentTransducer.wrl %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/HX50_HallEffectCurrentTransducer.wings %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/HX50_HallEffectCurrentTransducer.wrl +%%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_HO-NP.step +%%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_HO-NP.wrl %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_LA25-P.fcstd %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_LA25-P.step %%DATADIR%%/modules/packages3d/Hall-Effect_Transducers_LEM.3dshapes/LEM_LA25-P.wrl @@ -3524,6 +3598,10 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_Pitch0.4mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-64-1EP_9x9mm_Pitch0.5mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-64-1EP_9x9mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/Texas_R_PUQFN-N12.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/Texas_R_PUQFN-N12.wrl +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/Texas_S-PVQFN-N14.step +%%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/Texas_S-PVQFN-N14.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-10_1.4x1.8mm_Pitch0.4mm.step %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-10_1.4x1.8mm_Pitch0.4mm.wrl %%DATADIR%%/modules/packages3d/Housings_DFN_QFN.3dshapes/UQFN-16-1EP_3x3mm_Pitch0.5mm.step @@ -3702,6 +3780,32 @@ share/icons/hicolor/scalable/mimetypes/application-x-k %%DATADIR%%/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl %%DATADIR%%/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.step %%DATADIR%%/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/NXP_XSON-16.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/NXP_XSON-16.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/Texas_S-PDSO-N12.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/Texas_S-PDSO-N12.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/Texas_S-PVSON-N10.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/Texas_S-PVSON-N10.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/Texas_S-PVSON-N8.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/Texas_S-PVSON-N8.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/USON-10_2.5x1.0mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/USON-10_2.5x1.0mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/USON-20_2x4mm_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/USON-20_2x4mm_Pitch0.4mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/VSON-10-1EP_3x3mm_Pitch0.5mm_ThermalPad.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/VSON-10-1EP_3x3mm_Pitch0.5mm_ThermalPad.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/VSON-8_3.3x3.3mm_Pitch0.65mm_NexFET.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/VSON-8_3.3x3.3mm_Pitch0.65mm_NexFET.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON-14_1EP_4.0x4.0mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON-14_1EP_4.0x4.0mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON-16_3.3x1.35_Pitch0.4mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON-16_3.3x1.35_Pitch0.4mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON6_1.5x1.5mm_Pitch0.5mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON6_1.5x1.5mm_Pitch0.5mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON8_4x4mm_Pitch0.8mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/WSON8_4x4mm_Pitch0.8mm.wrl +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/X2SON-8_1.4x1mm_Pitch0.35mm.step +%%DATADIR%%/modules/packages3d/Housings_SON.3dshapes/X2SON-8_1.4x1mm_Pitch0.35mm.wrl %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/ETSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm.step %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/ETSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm.wrl %%DATADIR%%/modules/packages3d/Housings_SSOP.3dshapes/HTSSOP-20-1EP_4.4x6.5mm_Pitch0.65mm_ThermalPad.step From owner-svn-ports-head@freebsd.org Sat Jun 24 21:20:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05D09DA5FB3; Sat, 24 Jun 2017 21:20: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 D416279606; Sat, 24 Jun 2017 21:20: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 v5OLK9OF021953; Sat, 24 Jun 2017 21:20:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLK9r0021950; Sat, 24 Jun 2017 21:20:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706242120.v5OLK9r0021950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 24 Jun 2017 21:20:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444244 - head/security/silktools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 21:20:11 -0000 Author: antoine Date: Sat Jun 24 21:20:09 2017 New Revision: 444244 URL: https://svnweb.freebsd.org/changeset/ports/444244 Log: Update to 3.15.0 PR: 219904 Approved by: maintainer timeout (2 weeks) Modified: head/security/silktools/Makefile head/security/silktools/distinfo head/security/silktools/pkg-plist Modified: head/security/silktools/Makefile ============================================================================== --- head/security/silktools/Makefile Sat Jun 24 21:18:03 2017 (r444243) +++ head/security/silktools/Makefile Sat Jun 24 21:20:09 2017 (r444244) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= silktools -PORTVERSION= 3.13.0 +PORTVERSION= 3.15.0 CATEGORIES= security net MASTER_SITES= http://tools.netsa.cert.org/releases/ DISTNAME= silk-${PORTVERSION} Modified: head/security/silktools/distinfo ============================================================================== --- head/security/silktools/distinfo Sat Jun 24 21:18:03 2017 (r444243) +++ head/security/silktools/distinfo Sat Jun 24 21:20:09 2017 (r444244) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476338123 -SHA256 (silk-3.13.0.tar.gz) = 79e5c052040836092df588a4dc325c2701f8ab13d5113838248b9d9ad9bc86e1 -SIZE (silk-3.13.0.tar.gz) = 5213321 +TIMESTAMP = 1496901545 +SHA256 (silk-3.15.0.tar.gz) = 52b80359f5b7e2e16b9b626f76caf2c993d38f8ce64b1ee648a3767ce5b48f04 +SIZE (silk-3.15.0.tar.gz) = 5366577 Modified: head/security/silktools/pkg-plist ============================================================================== --- head/security/silktools/pkg-plist Sat Jun 24 21:18:03 2017 (r444243) +++ head/security/silktools/pkg-plist Sat Jun 24 21:20:09 2017 (r444244) @@ -1,6 +1,10 @@ bin/mapsid bin/num2dot bin/rwaddrcount +bin/rwaggbag +bin/rwaggbagbuild +bin/rwaggbagcat +bin/rwaggbagtool bin/rwallformats bin/rwappend bin/rwbag @@ -67,6 +71,7 @@ include/silk/silk_config.h include/silk/silk_config2.h include/silk/silk_files.h include/silk/silk_types.h +include/silk/skaggbag.h include/silk/skbag.h include/silk/skcountry.h include/silk/skdaemon.h @@ -94,21 +99,23 @@ include/silk/utils.h %%STATIC%%lib/libflowsource.a lib/libflowsource.so lib/libflowsource.so.14 -lib/libflowsource.so.14.0.1 +lib/libflowsource.so.14.1.1 %%STATIC%%lib/libsilk-thrd.a lib/libsilk-thrd.so lib/libsilk-thrd.so.5 lib/libsilk-thrd.so.5.1.3 %%STATIC%%lib/libsilk.a lib/libsilk.so -lib/libsilk.so.21 -lib/libsilk.so.21.0.0 +lib/libsilk.so.23 +lib/libsilk.so.23.0.0 %%STATIC%%lib/silk/app-mismatch.a lib/silk/app-mismatch.so %%STATIC%%lib/silk/conficker-c.a lib/silk/conficker-c.so %%STATIC%%lib/silk/cutmatch.a lib/silk/cutmatch.so +%%STATIC%%lib/silk/flowkey.a +lib/silk/flowkey.so %%STATIC%%lib/silk/flowrate.a lib/silk/flowrate.so %%STATIC%%lib/silk/int-ext-fields.a @@ -122,6 +129,10 @@ lib/silk/uniq-distproto.so man/man1/mapsid.1.gz man/man1/num2dot.1.gz man/man1/rwaddrcount.1.gz +man/man1/rwaggbag.1.gz +man/man1/rwaggbagbuild.1.gz +man/man1/rwaggbagcat.1.gz +man/man1/rwaggbagtool.1.gz man/man1/rwappend.1.gz man/man1/rwbag.1.gz man/man1/rwbagbuild.1.gz @@ -174,6 +185,7 @@ man/man1/rwuniq.1.gz man/man1/silk_config.1.gz man/man3/addrtype.3.gz man/man3/ccfilter.3.gz +man/man3/flowkey.3.gz man/man3/flowrate.3.gz man/man3/int-ext-fields.3.gz man/man3/packlogic-generic.3.gz From owner-svn-ports-head@freebsd.org Sat Jun 24 21:24:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 117EBDA6170; Sat, 24 Jun 2017 21:24:31 +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 D3E6679986; Sat, 24 Jun 2017 21:24:30 +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 v5OLOT1D025752; Sat, 24 Jun 2017 21:24:29 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLOTtO025750; Sat, 24 Jun 2017 21:24:29 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706242124.v5OLOTtO025750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 24 Jun 2017 21:24:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444245 - head/security/rubygem-recog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 21:24:31 -0000 Author: antoine Date: Sat Jun 24 21:24:29 2017 New Revision: 444245 URL: https://svnweb.freebsd.org/changeset/ports/444245 Log: Update to 2.1.9 Modified: head/security/rubygem-recog/Makefile head/security/rubygem-recog/distinfo Modified: head/security/rubygem-recog/Makefile ============================================================================== --- head/security/rubygem-recog/Makefile Sat Jun 24 21:20:09 2017 (r444244) +++ head/security/rubygem-recog/Makefile Sat Jun 24 21:24:29 2017 (r444245) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= recog -PORTVERSION= 2.1.8 +PORTVERSION= 2.1.9 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-recog/distinfo ============================================================================== --- head/security/rubygem-recog/distinfo Sat Jun 24 21:20:09 2017 (r444244) +++ head/security/rubygem-recog/distinfo Sat Jun 24 21:24:29 2017 (r444245) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496478416 -SHA256 (rubygem/recog-2.1.8.gem) = 07f9a3b69ca1499c5a4e1acb9f3c1c816cd0b12e36bde525a8d4a79e13422234 -SIZE (rubygem/recog-2.1.8.gem) = 215552 +TIMESTAMP = 1498202439 +SHA256 (rubygem/recog-2.1.9.gem) = 696d56da3659af50e8986302a9a931759ad6134a6a113f53ffbdd01faef6ad8a +SIZE (rubygem/recog-2.1.9.gem) = 216064 From owner-svn-ports-head@freebsd.org Sat Jun 24 21:25:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA895DA61B2; Sat, 24 Jun 2017 21:25: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 9877979A64; Sat, 24 Jun 2017 21:25: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 v5OLPSVg025903; Sat, 24 Jun 2017 21:25:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLPSqs025901; Sat, 24 Jun 2017 21:25:28 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706242125.v5OLPSqs025901@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 24 Jun 2017 21:25:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444246 - head/security/rubygem-rex-arch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 21:25:29 -0000 Author: antoine Date: Sat Jun 24 21:25:28 2017 New Revision: 444246 URL: https://svnweb.freebsd.org/changeset/ports/444246 Log: Update to 0.1.9 Modified: head/security/rubygem-rex-arch/Makefile head/security/rubygem-rex-arch/distinfo Modified: head/security/rubygem-rex-arch/Makefile ============================================================================== --- head/security/rubygem-rex-arch/Makefile Sat Jun 24 21:24:29 2017 (r444245) +++ head/security/rubygem-rex-arch/Makefile Sat Jun 24 21:25:28 2017 (r444246) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rex-arch -PORTVERSION= 0.1.8 +PORTVERSION= 0.1.9 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-rex-arch/distinfo ============================================================================== --- head/security/rubygem-rex-arch/distinfo Sat Jun 24 21:24:29 2017 (r444245) +++ head/security/rubygem-rex-arch/distinfo Sat Jun 24 21:25:28 2017 (r444246) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496478390 -SHA256 (rubygem/rex-arch-0.1.8.gem) = cef8d082f06884aecfdfc63ff5b5a9b9d092a50a801f5f5b8374c594088bbe8d -SIZE (rubygem/rex-arch-0.1.8.gem) = 19968 +TIMESTAMP = 1498202411 +SHA256 (rubygem/rex-arch-0.1.9.gem) = 46d58c4a1a0531bed9be2e9ac3eed1986933554851f24b6b257b6648617125db +SIZE (rubygem/rex-arch-0.1.9.gem) = 19456 From owner-svn-ports-head@freebsd.org Sat Jun 24 21:26:46 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6D03DA6212; Sat, 24 Jun 2017 21: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 B56C379B72; Sat, 24 Jun 2017 21: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 v5OLQjVH026063; Sat, 24 Jun 2017 21:26:45 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLQjiR026061; Sat, 24 Jun 2017 21:26:45 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706242126.v5OLQjiR026061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 24 Jun 2017 21:26:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444247 - 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, 24 Jun 2017 21:26:47 -0000 Author: antoine Date: Sat Jun 24 21:26:45 2017 New Revision: 444247 URL: https://svnweb.freebsd.org/changeset/ports/444247 Log: Update to 0.1.4 Modified: head/security/rubygem-rex-bin_tools/Makefile head/security/rubygem-rex-bin_tools/distinfo Modified: head/security/rubygem-rex-bin_tools/Makefile ============================================================================== --- head/security/rubygem-rex-bin_tools/Makefile Sat Jun 24 21:25:28 2017 (r444246) +++ head/security/rubygem-rex-bin_tools/Makefile Sat Jun 24 21:26:45 2017 (r444247) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rex-bin_tools -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.4 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-rex-bin_tools/distinfo ============================================================================== --- head/security/rubygem-rex-bin_tools/distinfo Sat Jun 24 21:25:28 2017 (r444246) +++ head/security/rubygem-rex-bin_tools/distinfo Sat Jun 24 21:26:45 2017 (r444247) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495363731 -SHA256 (rubygem/rex-bin_tools-0.1.3.gem) = 99c3ba7a8841874b78d70abeda3b7ca2e9f2ae4f4e691b1e815619aafc5d796a -SIZE (rubygem/rex-bin_tools-0.1.3.gem) = 82432 +TIMESTAMP = 1498202468 +SHA256 (rubygem/rex-bin_tools-0.1.4.gem) = 5c6d6bbcbdc2ad3164ea02ad48b2386b646077be4eae6e0fb94d2193250b1106 +SIZE (rubygem/rex-bin_tools-0.1.4.gem) = 81920 From owner-svn-ports-head@freebsd.org Sat Jun 24 21:29:37 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26B81DA6257; Sat, 24 Jun 2017 21:29:37 +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 E8B2F79C4F; Sat, 24 Jun 2017 21:29:36 +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 v5OLTa66026276; Sat, 24 Jun 2017 21:29:36 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OLTava026274; Sat, 24 Jun 2017 21:29:36 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201706242129.v5OLTava026274@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 24 Jun 2017 21:29:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444248 - 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, 24 Jun 2017 21:29:37 -0000 Author: antoine Date: Sat Jun 24 21:29:35 2017 New Revision: 444248 URL: https://svnweb.freebsd.org/changeset/ports/444248 Log: Update to 4.14.28 Modified: head/security/metasploit/Makefile head/security/metasploit/distinfo Modified: head/security/metasploit/Makefile ============================================================================== --- head/security/metasploit/Makefile Sat Jun 24 21:26:45 2017 (r444247) +++ head/security/metasploit/Makefile Sat Jun 24 21:29:35 2017 (r444248) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= metasploit -PORTVERSION= 4.14.25 +PORTVERSION= 4.14.28 CATEGORIES= security MAINTAINER= tanawts@gmail.com @@ -111,6 +111,7 @@ post-patch: /rb-readline/d ; \ /metasploit-aggregator/d' \ ${WRKSRC}/metasploit-framework.gemspec + ${REINPLACE_CMD} "/pg/s|, '0.20.0'||" ${WRKSRC}/metasploit-framework.gemspec .if ${RUBY_VER} < 2.4 ${REINPLACE_CMD} '/xmlrpc/d' ${WRKSRC}/metasploit-framework.gemspec .endif Modified: head/security/metasploit/distinfo ============================================================================== --- head/security/metasploit/distinfo Sat Jun 24 21:26:45 2017 (r444247) +++ head/security/metasploit/distinfo Sat Jun 24 21:29:35 2017 (r444248) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497072285 -SHA256 (rapid7-metasploit-framework-4.14.25_GH0.tar.gz) = c251acff63f05c1bec95b894de2767978ba1e4b3fe1399cab2f5ec21d89b5d36 -SIZE (rapid7-metasploit-framework-4.14.25_GH0.tar.gz) = 23955165 +TIMESTAMP = 1498197601 +SHA256 (rapid7-metasploit-framework-4.14.28_GH0.tar.gz) = f2bc048542d7cbba16308b5a987718428825b5f00df7e5245543598d9d42a169 +SIZE (rapid7-metasploit-framework-4.14.28_GH0.tar.gz) = 23964535 From owner-svn-ports-head@freebsd.org Sat Jun 24 22:32:28 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9568DA6F72; Sat, 24 Jun 2017 22:32:28 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93B097B201; Sat, 24 Jun 2017 22:32:28 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5OMWRWP054462; Sat, 24 Jun 2017 22:32:27 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5OMWRD8054459; Sat, 24 Jun 2017 22:32:27 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201706242232.v5OMWRD8054459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Sat, 24 Jun 2017 22:32:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444249 - head/emulators/qmc2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 22:32:28 -0000 Author: danilo Date: Sat Jun 24 22:32:27 2017 New Revision: 444249 URL: https://svnweb.freebsd.org/changeset/ports/444249 Log: - Update to 0.186 Modified: head/emulators/qmc2/Makefile head/emulators/qmc2/distinfo head/emulators/qmc2/pkg-plist Modified: head/emulators/qmc2/Makefile ============================================================================== --- head/emulators/qmc2/Makefile Sat Jun 24 21:29:35 2017 (r444248) +++ head/emulators/qmc2/Makefile Sat Jun 24 22:32:27 2017 (r444249) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= qmc2 -PORTVERSION= 0.183 -PORTREVISION= 1 +PORTVERSION= 0.186 CATEGORIES= emulators MASTER_SITES= SF Modified: head/emulators/qmc2/distinfo ============================================================================== --- head/emulators/qmc2/distinfo Sat Jun 24 21:29:35 2017 (r444248) +++ head/emulators/qmc2/distinfo Sat Jun 24 22:32:27 2017 (r444249) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494185967 -SHA256 (qmc2-0.183.tar.bz2) = ff3226172c9aaf2078eb8c1bef6208062d4d739c204f1b6d93f009cf6731d5fc -SIZE (qmc2-0.183.tar.bz2) = 13420319 +TIMESTAMP = 1498336257 +SHA256 (qmc2-0.186.tar.bz2) = 4ae7645be79e4ff65ef0133502a86ccc631a9608b7d7c5cd35beeef4fe2605a8 +SIZE (qmc2-0.186.tar.bz2) = 13461280 Modified: head/emulators/qmc2/pkg-plist ============================================================================== --- head/emulators/qmc2/pkg-plist Sat Jun 24 21:29:35 2017 (r444248) +++ head/emulators/qmc2/pkg-plist Sat Jun 24 22:32:27 2017 (r444249) @@ -33,6 +33,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/activity_red.png %%DATADIR%%/img/add_to_favorites.png %%DATADIR%%/img/alien.png +%%DATADIR%%/img/analyze.png %%DATADIR%%/img/animbase.png %%DATADIR%%/img/arcadecabinet.png %%DATADIR%%/img/arcademode.png @@ -57,6 +58,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/circles/activity_red.png %%DATADIR%%/img/circles/add_to_favorites.png %%DATADIR%%/img/circles/alien.png +%%DATADIR%%/img/circles/analyze.png %%DATADIR%%/img/circles/animbase.png %%DATADIR%%/img/circles/arcadecabinet.png %%DATADIR%%/img/circles/arcademode.png @@ -73,6 +75,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/circles/characters.png %%DATADIR%%/img/circles/checkpoint.png %%DATADIR%%/img/circles/circuit.png +%%DATADIR%%/img/circles/cleanup.png %%DATADIR%%/img/circles/clock.png %%DATADIR%%/img/circles/clone.png %%DATADIR%%/img/circles/colors.png @@ -278,6 +281,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/circles/romalyzer_flipped.png %%DATADIR%%/img/circles/romalyzer_multiple.png %%DATADIR%%/img/circles/romalyzer_sw.png +%%DATADIR%%/img/circles/rompath.png %%DATADIR%%/img/circles/scan_manuals.png %%DATADIR%%/img/circles/search.png %%DATADIR%%/img/circles/search_multiple.png @@ -367,6 +371,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/classic/activity_red.png %%DATADIR%%/img/classic/add_to_favorites.png %%DATADIR%%/img/classic/alien.png +%%DATADIR%%/img/classic/analyze.png %%DATADIR%%/img/classic/animbase.png %%DATADIR%%/img/classic/arcadecabinet.png %%DATADIR%%/img/classic/arcademode.png @@ -383,6 +388,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/classic/characters.png %%DATADIR%%/img/classic/checkpoint.png %%DATADIR%%/img/classic/circuit.png +%%DATADIR%%/img/classic/cleanup.png %%DATADIR%%/img/classic/clock.png %%DATADIR%%/img/classic/clone.png %%DATADIR%%/img/classic/colors.png @@ -588,6 +594,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/classic/romalyzer_flipped.png %%DATADIR%%/img/classic/romalyzer_multiple.png %%DATADIR%%/img/classic/romalyzer_sw.png +%%DATADIR%%/img/classic/rompath.png %%DATADIR%%/img/classic/scan_manuals.png %%DATADIR%%/img/classic/search.png %%DATADIR%%/img/classic/search_multiple.png @@ -667,6 +674,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/classic/zoom-in.png %%DATADIR%%/img/classic/zoom-none.png %%DATADIR%%/img/classic/zoom-out.png +%%DATADIR%%/img/cleanup.png %%DATADIR%%/img/clock.png %%DATADIR%%/img/clone.png %%DATADIR%%/img/colors.png @@ -697,6 +705,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/crazy-black/activity_red.png %%DATADIR%%/img/crazy-black/add_to_favorites.png %%DATADIR%%/img/crazy-black/alien.png +%%DATADIR%%/img/crazy-black/analyze.png %%DATADIR%%/img/crazy-black/animbase.png %%DATADIR%%/img/crazy-black/arcadecabinet.png %%DATADIR%%/img/crazy-black/arcademode.png @@ -713,6 +722,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/crazy-black/characters.png %%DATADIR%%/img/crazy-black/checkpoint.png %%DATADIR%%/img/crazy-black/circuit.png +%%DATADIR%%/img/crazy-black/cleanup.png %%DATADIR%%/img/crazy-black/clock.png %%DATADIR%%/img/crazy-black/clone.png %%DATADIR%%/img/crazy-black/colors.png @@ -918,6 +928,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/crazy-black/romalyzer_flipped.png %%DATADIR%%/img/crazy-black/romalyzer_multiple.png %%DATADIR%%/img/crazy-black/romalyzer_sw.png +%%DATADIR%%/img/crazy-black/rompath.png %%DATADIR%%/img/crazy-black/scan_manuals.png %%DATADIR%%/img/crazy-black/search.png %%DATADIR%%/img/crazy-black/search_multiple.png @@ -1006,6 +1017,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/crazy/activity_red.png %%DATADIR%%/img/crazy/add_to_favorites.png %%DATADIR%%/img/crazy/alien.png +%%DATADIR%%/img/crazy/analyze.png %%DATADIR%%/img/crazy/animbase.png %%DATADIR%%/img/crazy/arcadecabinet.png %%DATADIR%%/img/crazy/arcademode.png @@ -1022,6 +1034,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/crazy/characters.png %%DATADIR%%/img/crazy/checkpoint.png %%DATADIR%%/img/crazy/circuit.png +%%DATADIR%%/img/crazy/cleanup.png %%DATADIR%%/img/crazy/clock.png %%DATADIR%%/img/crazy/clone.png %%DATADIR%%/img/crazy/colors.png @@ -1227,6 +1240,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/crazy/romalyzer_flipped.png %%DATADIR%%/img/crazy/romalyzer_multiple.png %%DATADIR%%/img/crazy/romalyzer_sw.png +%%DATADIR%%/img/crazy/rompath.png %%DATADIR%%/img/crazy/scan_manuals.png %%DATADIR%%/img/crazy/search.png %%DATADIR%%/img/crazy/search_multiple.png @@ -1315,6 +1329,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/cubes/activity_red.png %%DATADIR%%/img/cubes/add_to_favorites.png %%DATADIR%%/img/cubes/alien.png +%%DATADIR%%/img/cubes/analyze.png %%DATADIR%%/img/cubes/animbase.png %%DATADIR%%/img/cubes/arcadecabinet.png %%DATADIR%%/img/cubes/arcademode.png @@ -1331,6 +1346,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/cubes/characters.png %%DATADIR%%/img/cubes/checkpoint.png %%DATADIR%%/img/cubes/circuit.png +%%DATADIR%%/img/cubes/cleanup.png %%DATADIR%%/img/cubes/clock.png %%DATADIR%%/img/cubes/clone.png %%DATADIR%%/img/cubes/colors.png @@ -1536,6 +1552,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/cubes/romalyzer_flipped.png %%DATADIR%%/img/cubes/romalyzer_multiple.png %%DATADIR%%/img/cubes/romalyzer_sw.png +%%DATADIR%%/img/cubes/rompath.png %%DATADIR%%/img/cubes/scan_manuals.png %%DATADIR%%/img/cubes/search.png %%DATADIR%%/img/cubes/search_multiple.png @@ -1799,6 +1816,7 @@ bin/qmc2-sdlmame %%DATADIR%%/img/romalyzer_flipped.png %%DATADIR%%/img/romalyzer_multiple.png %%DATADIR%%/img/romalyzer_sw.png +%%DATADIR%%/img/rompath.png %%DATADIR%%/img/scan_manuals.png %%DATADIR%%/img/search.png %%DATADIR%%/img/search_multiple.png From owner-svn-ports-head@freebsd.org Sat Jun 24 23:41:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15699DA78DE; Sat, 24 Jun 2017 23:41:04 +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 C5D517C3A2; Sat, 24 Jun 2017 23:41:03 +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 v5ONf2Uh083732; Sat, 24 Jun 2017 23:41:02 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5ONf2WR083730; Sat, 24 Jun 2017 23:41:02 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201706242341.v5ONf2WR083730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 24 Jun 2017 23:41:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444250 - in head/lang: gcc5-aux gcc6-aux X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-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, 24 Jun 2017 23:41:04 -0000 Author: linimon Date: Sat Jun 24 23:41:02 2017 New Revision: 444250 URL: https://svnweb.freebsd.org/changeset/ports/444250 Log: Alphabetize ARCHs. Should have no effect on compilation. Modified: head/lang/gcc5-aux/Makefile.common head/lang/gcc6-aux/Makefile Modified: head/lang/gcc5-aux/Makefile.common ============================================================================== --- head/lang/gcc5-aux/Makefile.common Sat Jun 24 22:32:27 2017 (r444249) +++ head/lang/gcc5-aux/Makefile.common Sat Jun 24 23:41:02 2017 (r444250) @@ -6,7 +6,7 @@ LIB_DEPENDS= libgmp.so:math/gmp LIB_DEPENDS+= libmpfr.so:math/mpfr LIB_DEPENDS+= libmpc.so:math/mpc -ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS= amd64 i386 GNU_CONFIGURE= yes USES= gmake libtool perl5 tar:bzip2 Modified: head/lang/gcc6-aux/Makefile ============================================================================== --- head/lang/gcc6-aux/Makefile Sat Jun 24 22:32:27 2017 (r444249) +++ head/lang/gcc6-aux/Makefile Sat Jun 24 23:41:02 2017 (r444250) @@ -49,7 +49,7 @@ BOOTSTRAP_DESC= Create bootstrap compiler (overrides .include .if ${OPSYS} == FreeBSD -ONLY_FOR_ARCHS= amd64 i386 aarch64 +ONLY_FOR_ARCHS= aarch64 amd64 i386 MODERN_BINUTILS= yes . if ${ARCH} == aarch64 BOOTSTRAP_COMPILER= ada-bootstrap.aarch64.freebsd.120.tar.bz2