From owner-svn-ports-head@freebsd.org Sun Jun 17 00:08:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 628981003923; Sun, 17 Jun 2018 00:08:23 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 118BB751D1; Sun, 17 Jun 2018 00:08:23 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E81305B0E; Sun, 17 Jun 2018 00:08:22 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H08M7H091900; Sun, 17 Jun 2018 00:08:22 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H08MRD091897; Sun, 17 Jun 2018 00:08:22 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201806170008.w5H08MRD091897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Sun, 17 Jun 2018 00:08:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472578 - in head: . net/tcpdump X-SVN-Group: ports-head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: in head: . net/tcpdump X-SVN-Commit-Revision: 472578 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 00:08:23 -0000 Author: eadler Date: Sun Jun 17 00:08:22 2018 New Revision: 472578 URL: https://svnweb.freebsd.org/changeset/ports/472578 Log: net/tcpdump: use dedicated user for privsep "nobody" should only be used by NFS and nothing should run as it. Instead give tcpdump a dedicated user. Also note that IPv6 is no longer optional, so just remove the option Approved by: garga (maintainer, older version) Reviewed by: matthew Differential Revision: https://reviews.freebsd.org/D15841 Modified: head/GIDs head/UIDs head/net/tcpdump/Makefile Modified: head/GIDs ============================================================================== --- head/GIDs Sun Jun 17 00:01:55 2018 (r472577) +++ head/GIDs Sun Jun 17 00:08:22 2018 (r472578) @@ -825,7 +825,7 @@ _geodns:*:853: # free: 882 # free: 883 # free: 884 -# free: 885 +tcpdump:*:885: miniflux:*:886: pdagent:*:887: vuls:*:888: Modified: head/UIDs ============================================================================== --- head/UIDs Sun Jun 17 00:01:55 2018 (r472577) +++ head/UIDs Sun Jun 17 00:08:22 2018 (r472578) @@ -831,7 +831,7 @@ archiva:*:871:871::0:0:Apache Archiva Daemon:/nonexist # free: 882 # free: 883 # free: 884 -# free: 885 +tcpdump:*:885:885::0:0:tcpdump user:/nonexistent:/usr/sbin/nologin miniflux:*:886:886::0:0:Miniflux:/nonexistent:/usr/sbin/nologin pdagent:*:887:887::0:0:PagerDuty Agent:/nonexistent:/usr/sbin/nologin vuls:*:888:888::0:0:VULnerability Scanner:/var/db/vuls:/usr/sbin/nologin Modified: head/net/tcpdump/Makefile ============================================================================== --- head/net/tcpdump/Makefile Sun Jun 17 00:01:55 2018 (r472577) +++ head/net/tcpdump/Makefile Sun Jun 17 00:08:22 2018 (r472578) @@ -3,6 +3,7 @@ PORTNAME= tcpdump PORTVERSION= 4.9.2 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.tcpdump.org/release/ @@ -16,10 +17,10 @@ LIB_DEPENDS= libpcap.so.1:net/libpcap GNU_CONFIGURE= yes USES= gmake -UNPRIV_USER?= nobody +UNPRIV_USER?= tcpdump CHROOTDIR?= /var/run/tcpdump -OPTIONS_DEFINE= CRYPTO IPV6 SMB SMI USER CHROOT +OPTIONS_DEFINE= CRYPTO SMB SMI USER CHROOT OPTIONS_DEFAULT= CRYPTO SMB SMI CRYPTO_DESC= Support IPSEC and TCPMD5 @@ -28,16 +29,16 @@ CRYPTO_DESC= Support IPSEC and TCPMD5 # is not true. It will just not print it if this option is off. SMB_DESC= Support printing SMB information SMI_DESC= Allow MIBs to be loaded on the fly -USER_DESC= Drop privileges to nobody +USER_DESC= Drop privileges to dedicated user CHROOT_DESC= Chroot to /var/run/tcpdump (set CHROOTDIR to change) CRYPTO_USES= ssl CRYPTO_CONFIGURE_WITH= crypto -IPV6_CONFIGURE_ENABLE= ipv6 SMB_CONFIGURE_ENABLE= smb SMI_CONFIGURE_WITH= smi SMI_LIB_DEPENDS= libsmi.so:net-mgmt/libsmi USER_CONFIGURE_ON= --with-user=${UNPRIV_USER} +USER_VARS= USERS=${UNPRIV_USER} GROUPS=${UNPRIV_USER} CHROOT_CONFIGURE_ON= --with-chroot=${CHROOTDIR} PLIST_FILES= sbin/tcpdump \ From owner-svn-ports-head@freebsd.org Sun Jun 17 01:16:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C65D1005508; Sun, 17 Jun 2018 01:16:59 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0A64C76E34; Sun, 17 Jun 2018 01:16:59 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DF49566AB; Sun, 17 Jun 2018 01:16:58 +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 w5H1Gw6f027069; Sun, 17 Jun 2018 01:16:58 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1GwjO027067; Sun, 17 Jun 2018 01:16:58 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806170116.w5H1GwjO027067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 01:16:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472579 - head/astro/p5-Astro-satpass X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/astro/p5-Astro-satpass X-SVN-Commit-Revision: 472579 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:16:59 -0000 Author: wen Date: Sun Jun 17 01:16:58 2018 New Revision: 472579 URL: https://svnweb.freebsd.org/changeset/ports/472579 Log: - Update to 0.098 Changes: https://metacpan.org/changes/distribution/Astro-satpass Modified: head/astro/p5-Astro-satpass/Makefile head/astro/p5-Astro-satpass/distinfo Modified: head/astro/p5-Astro-satpass/Makefile ============================================================================== --- head/astro/p5-Astro-satpass/Makefile Sun Jun 17 00:08:22 2018 (r472578) +++ head/astro/p5-Astro-satpass/Makefile Sun Jun 17 01:16:58 2018 (r472579) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Astro-satpass -PORTVERSION= 0.097 +PORTVERSION= 0.098 CATEGORIES= astro perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/astro/p5-Astro-satpass/distinfo ============================================================================== --- head/astro/p5-Astro-satpass/distinfo Sun Jun 17 00:08:22 2018 (r472578) +++ head/astro/p5-Astro-satpass/distinfo Sun Jun 17 01:16:58 2018 (r472579) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528122552 -SHA256 (Astro-satpass-0.097.tar.gz) = 7d79eb7daa12923ff5bb3d35bd7b854290dae9ab370e0be96faf43d353fba8c1 -SIZE (Astro-satpass-0.097.tar.gz) = 551603 +TIMESTAMP = 1529197810 +SHA256 (Astro-satpass-0.098.tar.gz) = c2ab79452ab087a549a9501e95207ee69f3b5fe7947fe91533c500483ba49c1d +SIZE (Astro-satpass-0.098.tar.gz) = 552032 From owner-svn-ports-head@freebsd.org Sun Jun 17 01:26:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F3F51005B86; Sun, 17 Jun 2018 01:26:08 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 320DA7767A; Sun, 17 Jun 2018 01:26:08 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 13EB16884; Sun, 17 Jun 2018 01:26:08 +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 w5H1Q7QF032644; Sun, 17 Jun 2018 01:26:07 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1Q7Ip032642; Sun, 17 Jun 2018 01:26:07 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806170126.w5H1Q7Ip032642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 01:26:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472581 - head/astro/p5-Astro-SpaceTrack X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/astro/p5-Astro-SpaceTrack X-SVN-Commit-Revision: 472581 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:26:08 -0000 Author: wen Date: Sun Jun 17 01:26:07 2018 New Revision: 472581 URL: https://svnweb.freebsd.org/changeset/ports/472581 Log: - Update to 0.111 Changes: https://metacpan.org/changes/distribution/Astro-SpaceTrack Modified: head/astro/p5-Astro-SpaceTrack/Makefile head/astro/p5-Astro-SpaceTrack/distinfo Modified: head/astro/p5-Astro-SpaceTrack/Makefile ============================================================================== --- head/astro/p5-Astro-SpaceTrack/Makefile Sun Jun 17 01:21:45 2018 (r472580) +++ head/astro/p5-Astro-SpaceTrack/Makefile Sun Jun 17 01:26:07 2018 (r472581) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Astro-SpaceTrack -PORTVERSION= 0.110 +PORTVERSION= 0.111 CATEGORIES= astro perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/astro/p5-Astro-SpaceTrack/distinfo ============================================================================== --- head/astro/p5-Astro-SpaceTrack/distinfo Sun Jun 17 01:21:45 2018 (r472580) +++ head/astro/p5-Astro-SpaceTrack/distinfo Sun Jun 17 01:26:07 2018 (r472581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528122571 -SHA256 (Astro-SpaceTrack-0.110.tar.gz) = 04ff2e289c3b769cdbc439e54e81f09484892adfbfe4ed8ded1eb5f9a7feeecf -SIZE (Astro-SpaceTrack-0.110.tar.gz) = 172599 +TIMESTAMP = 1529198287 +SHA256 (Astro-SpaceTrack-0.111.tar.gz) = ac0f7c2111123ecc43e47f0cc67c90bce6d82a753eec544a1024b9c53a5b5f95 +SIZE (Astro-SpaceTrack-0.111.tar.gz) = 172683 From owner-svn-ports-head@freebsd.org Sun Jun 17 01:21:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71FFF100586D; Sun, 17 Jun 2018 01:21:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 26BD6771A9; Sun, 17 Jun 2018 01:21:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07D576824; Sun, 17 Jun 2018 01:21:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H1LjCt030505; Sun, 17 Jun 2018 01:21:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1LjKa030504; Sun, 17 Jun 2018 01:21:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806170121.w5H1LjKa030504@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 01:21:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472580 - head/security/py-pycryptodome X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/security/py-pycryptodome X-SVN-Commit-Revision: 472580 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:21:46 -0000 Author: yuri Date: Sun Jun 17 01:21:45 2018 New Revision: 472580 URL: https://svnweb.freebsd.org/changeset/ports/472580 Log: security/py-pycryptodome: Make namespace changeable by slave ports Also transfer maintainership to john@saltant.com. PR: 225216 Submitted by: John W. O'Brien Modified: head/security/py-pycryptodome/Makefile Modified: head/security/py-pycryptodome/Makefile ============================================================================== --- head/security/py-pycryptodome/Makefile Sun Jun 17 01:16:58 2018 (r472579) +++ head/security/py-pycryptodome/Makefile Sun Jun 17 01:21:45 2018 (r472580) @@ -3,11 +3,12 @@ PORTNAME= pycryptodome DISTVERSION= 3.6.1 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= yuri@FreeBSD.org +MAINTAINER= john@saltant.com COMMENT= Cryptographic library for Python LICENSE= BSD2CLAUSE @@ -18,12 +19,14 @@ CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}pycrypto USES= python USE_PYTHON= autoplist distutils +NAMESPACE?= Crypto + post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Cipher/*.so - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Hash/*.so - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Math/*.so - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Protocol/*.so - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/Util/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${NAMESPACE}/Cipher/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${NAMESPACE}/Hash/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${NAMESPACE}/Math/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${NAMESPACE}/Protocol/*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${NAMESPACE}/Util/*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test From owner-svn-ports-head@freebsd.org Sun Jun 17 01:33:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A7B9100626C; Sun, 17 Jun 2018 01:33:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2F72577BFC; Sun, 17 Jun 2018 01:33:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1083E6A41; Sun, 17 Jun 2018 01:33:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H1XniX037533; Sun, 17 Jun 2018 01:33:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1XnUv037532; Sun, 17 Jun 2018 01:33:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806170133.w5H1XnUv037532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 01:33:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472582 - in head/security: . py-pycryptodomex X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . py-pycryptodomex X-SVN-Commit-Revision: 472582 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:33:50 -0000 Author: yuri Date: Sun Jun 17 01:33:49 2018 New Revision: 472582 URL: https://svnweb.freebsd.org/changeset/ports/472582 Log: New port: security/py-pycryptodomex: Slave port of security/py-pycryptodome It installs the same package as security/py-pycryptodome but in a different name space, Cryptodome instead of Crypto, and therefore can be installed together with security/py-pycrypto if desired. PR: 225217 Submitted by: John W. O'Brien Added: head/security/py-pycryptodomex/ head/security/py-pycryptodomex/Makefile (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jun 17 01:26:07 2018 (r472581) +++ head/security/Makefile Sun Jun 17 01:33:49 2018 (r472582) @@ -989,6 +989,7 @@ SUBDIR += py-pyclamd SUBDIR += py-pycrypto SUBDIR += py-pycryptodome + SUBDIR += py-pycryptodomex SUBDIR += py-pycryptopp SUBDIR += py-pydeep SUBDIR += py-pyelliptic Added: head/security/py-pycryptodomex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-pycryptodomex/Makefile Sun Jun 17 01:33:49 2018 (r472582) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +PKGNAMESUFFIX= x + +CONFLICTS_INSTALL= + +MASTERDIR= ${.CURDIR}/../py-pycryptodome + +NAMESPACE= Cryptodome + +.include "${MASTERDIR}/Makefile" From owner-svn-ports-head@freebsd.org Sun Jun 17 02:08:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E23E1007E2E; Sun, 17 Jun 2018 02:08:39 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 11D9B79564; Sun, 17 Jun 2018 02:08:39 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E73576FBB; Sun, 17 Jun 2018 02:08:38 +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 w5H28cJE053623; Sun, 17 Jun 2018 02:08:38 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H28c84053621; Sun, 17 Jun 2018 02:08:38 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806170208.w5H28c84053621@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 02:08:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472587 - head/devel/p5-DateTime-Locale X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-DateTime-Locale X-SVN-Commit-Revision: 472587 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 02:08:39 -0000 Author: wen Date: Sun Jun 17 02:08:38 2018 New Revision: 472587 URL: https://svnweb.freebsd.org/changeset/ports/472587 Log: - Update to 1.22 Changes: https://metacpan.org/changes/distribution/DateTime-Locale Modified: head/devel/p5-DateTime-Locale/Makefile head/devel/p5-DateTime-Locale/distinfo Modified: head/devel/p5-DateTime-Locale/Makefile ============================================================================== --- head/devel/p5-DateTime-Locale/Makefile Sun Jun 17 02:04:53 2018 (r472586) +++ head/devel/p5-DateTime-Locale/Makefile Sun Jun 17 02:08:38 2018 (r472587) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DateTime-Locale -PORTVERSION= 1.20 +PORTVERSION= 1.22 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-DateTime-Locale/distinfo ============================================================================== --- head/devel/p5-DateTime-Locale/distinfo Sun Jun 17 02:04:53 2018 (r472586) +++ head/devel/p5-DateTime-Locale/distinfo Sun Jun 17 02:08:38 2018 (r472587) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525719353 -SHA256 (DateTime-Locale-1.20.tar.gz) = 998f034234441932c82a4598fa49a14f346d6e981d1d2d91a179913a9f81b898 -SIZE (DateTime-Locale-1.20.tar.gz) = 1304691 +TIMESTAMP = 1529200807 +SHA256 (DateTime-Locale-1.22.tar.gz) = 757b3915c6b2aac89462c52fed36543f27dfb66abc98c895523d2ab95da65f94 +SIZE (DateTime-Locale-1.22.tar.gz) = 1307053 From owner-svn-ports-head@freebsd.org Sun Jun 17 01:59:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20E871007758; Sun, 17 Jun 2018 01:59:50 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA63778D9E; Sun, 17 Jun 2018 01:59:49 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 95F7B6E0B; Sun, 17 Jun 2018 01:59:49 +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 w5H1xnCQ048306; Sun, 17 Jun 2018 01:59:49 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1xnqZ048304; Sun, 17 Jun 2018 01:59:49 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806170159.w5H1xnqZ048304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 01:59:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472585 - head/devel/p5-Config-Model X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-Config-Model X-SVN-Commit-Revision: 472585 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:59:50 -0000 Author: wen Date: Sun Jun 17 01:59:48 2018 New Revision: 472585 URL: https://svnweb.freebsd.org/changeset/ports/472585 Log: - Update to 2.124 Changes: https://metacpan.org/changes/distribution/Config-Model Modified: head/devel/p5-Config-Model/Makefile head/devel/p5-Config-Model/distinfo Modified: head/devel/p5-Config-Model/Makefile ============================================================================== --- head/devel/p5-Config-Model/Makefile Sun Jun 17 01:51:56 2018 (r472584) +++ head/devel/p5-Config-Model/Makefile Sun Jun 17 01:59:48 2018 (r472585) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Config-Model -PORTVERSION= 2.123 +PORTVERSION= 2.124 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Config-Model/distinfo ============================================================================== --- head/devel/p5-Config-Model/distinfo Sun Jun 17 01:51:56 2018 (r472584) +++ head/devel/p5-Config-Model/distinfo Sun Jun 17 01:59:48 2018 (r472585) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525281412 -SHA256 (Config-Model-2.123.tar.gz) = f12a89fc12935f2c98fe7118d039a75ec23a2aef736f008c88568c2e5ea45a40 -SIZE (Config-Model-2.123.tar.gz) = 349852 +TIMESTAMP = 1529200319 +SHA256 (Config-Model-2.124.tar.gz) = e6a4da2f134a77412ee3ddb5de55ef99229c9d4d93e14c37c7f32093c25f59fa +SIZE (Config-Model-2.124.tar.gz) = 355049 From owner-svn-ports-head@freebsd.org Sun Jun 17 01:42:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FCF9100695C; Sun, 17 Jun 2018 01:42:07 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E59577830E; Sun, 17 Jun 2018 01:42:06 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C6C4C6BEE; Sun, 17 Jun 2018 01:42:06 +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 w5H1g6mP042660; Sun, 17 Jun 2018 01:42:06 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1g64A042658; Sun, 17 Jun 2018 01:42:06 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806170142.w5H1g64A042658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 01:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472583 - head/www/p5-HTML5-DOM X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/www/p5-HTML5-DOM X-SVN-Commit-Revision: 472583 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:42:07 -0000 Author: wen Date: Sun Jun 17 01:42:06 2018 New Revision: 472583 URL: https://svnweb.freebsd.org/changeset/ports/472583 Log: - Update to 1.08 Changes: https://metacpan.org/changes/distribution/HTML5-DOM Modified: head/www/p5-HTML5-DOM/Makefile head/www/p5-HTML5-DOM/distinfo Modified: head/www/p5-HTML5-DOM/Makefile ============================================================================== --- head/www/p5-HTML5-DOM/Makefile Sun Jun 17 01:33:49 2018 (r472582) +++ head/www/p5-HTML5-DOM/Makefile Sun Jun 17 01:42:06 2018 (r472583) @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= HTML5-DOM -PORTVERSION= 1.07 +PORTVERSION= 1.08 CATEGORIES= www perl5 -MASTER_SITES= CPAN +MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ZHUMARIN -PKGNAMEPREFIX= p5- +PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= Super fast html5 DOM library with css selectors Modified: head/www/p5-HTML5-DOM/distinfo ============================================================================== --- head/www/p5-HTML5-DOM/distinfo Sun Jun 17 01:33:49 2018 (r472582) +++ head/www/p5-HTML5-DOM/distinfo Sun Jun 17 01:42:06 2018 (r472583) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527521877 -SHA256 (HTML5-DOM-1.07.tar.gz) = a254289ef90ccf5bb1c581e622fd2d4ad70a15e7801c974adc9688c59b303624 -SIZE (HTML5-DOM-1.07.tar.gz) = 1514320 +TIMESTAMP = 1529198800 +SHA256 (HTML5-DOM-1.08.tar.gz) = e135fd828a87fc84acf4fca659185da27297d78aca9518478ae38acb8fd1b6f9 +SIZE (HTML5-DOM-1.08.tar.gz) = 1466041 From owner-svn-ports-head@freebsd.org Sun Jun 17 01:51:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B8D41006FA5; Sun, 17 Jun 2018 01:51:57 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F2D70788FF; Sun, 17 Jun 2018 01:51:56 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D39566DB0; Sun, 17 Jun 2018 01:51:56 +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 w5H1puVt047854; Sun, 17 Jun 2018 01:51:56 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H1puX7047853; Sun, 17 Jun 2018 01:51:56 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806170151.w5H1puX7047853@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 01:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472584 - head/devel/p5-Config-AutoConf X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-Config-AutoConf X-SVN-Commit-Revision: 472584 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 01:51:57 -0000 Author: wen Date: Sun Jun 17 01:51:56 2018 New Revision: 472584 URL: https://svnweb.freebsd.org/changeset/ports/472584 Log: - Update to 0.317 Changes: https://metacpan.org/changes/distribution/Config-AutoConf Modified: head/devel/p5-Config-AutoConf/Makefile head/devel/p5-Config-AutoConf/distinfo Modified: head/devel/p5-Config-AutoConf/Makefile ============================================================================== --- head/devel/p5-Config-AutoConf/Makefile Sun Jun 17 01:42:06 2018 (r472583) +++ head/devel/p5-Config-AutoConf/Makefile Sun Jun 17 01:51:56 2018 (r472584) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Config-AutoConf -PORTVERSION= 0.316 +PORTVERSION= 0.317 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Config-AutoConf/distinfo ============================================================================== --- head/devel/p5-Config-AutoConf/distinfo Sun Jun 17 01:42:06 2018 (r472583) +++ head/devel/p5-Config-AutoConf/distinfo Sun Jun 17 01:51:56 2018 (r472584) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524262390 -SHA256 (Config-AutoConf-0.316.tar.gz) = 8e6f4b59a69492e0bac135dec075438a64e53e0445f306a6662ebd28c26bb977 -SIZE (Config-AutoConf-0.316.tar.gz) = 50203 +TIMESTAMP = 1529200142 +SHA256 (Config-AutoConf-0.317.tar.gz) = 01e4b22d2fecb7cfd3cc1f4dabe95cd137cf249cc5e38184f88556e5c98a9ce1 +SIZE (Config-AutoConf-0.317.tar.gz) = 50875 From owner-svn-ports-head@freebsd.org Sun Jun 17 02:04:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C49E81007B45; Sun, 17 Jun 2018 02:04:54 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 78B5F792BC; Sun, 17 Jun 2018 02:04:54 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59F3B6FAD; Sun, 17 Jun 2018 02:04:54 +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 w5H24sUW053356; Sun, 17 Jun 2018 02:04:54 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H24sA0053355; Sun, 17 Jun 2018 02:04:54 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806170204.w5H24sA0053355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 17 Jun 2018 02:04:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472586 - head/devel/bazel X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/devel/bazel X-SVN-Commit-Revision: 472586 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 02:04:54 -0000 Author: linimon Date: Sun Jun 17 02:04:53 2018 New Revision: 472586 URL: https://svnweb.freebsd.org/changeset/ports/472586 Log: Mark broken on powerpc64: assumes that clang is installed. Approved by: portmgr (tier-2 blanket) Modified: head/devel/bazel/Makefile Modified: head/devel/bazel/Makefile ============================================================================== --- head/devel/bazel/Makefile Sun Jun 17 01:59:48 2018 (r472585) +++ head/devel/bazel/Makefile Sun Jun 17 02:04:53 2018 (r472586) @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_armv6= fails to package: cp: bazel: No such file or directory BROKEN_armv7= fails to package: cp: bazel: No such file or directory +BROKEN_powerpc64= fails to compile: Action failed to execute: java.io.IOException: Cannot run program /usr/bin/clang BUILD_DEPENDS= bash:shells/bash \ zip:archivers/zip From owner-svn-ports-head@freebsd.org Sun Jun 17 02:18:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C4FC10085B3; Sun, 17 Jun 2018 02:18:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C1E1F79CC3; Sun, 17 Jun 2018 02:18:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A215F7178; Sun, 17 Jun 2018 02:18:23 +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 w5H2IN16058506; Sun, 17 Jun 2018 02:18:23 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H2INlv058505; Sun, 17 Jun 2018 02:18:23 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806170218.w5H2INlv058505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 17 Jun 2018 02:18:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472588 - head/java/jfreechart X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/java/jfreechart X-SVN-Commit-Revision: 472588 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 02:18:24 -0000 Author: linimon Date: Sun Jun 17 02:18:23 2018 New Revision: 472588 URL: https://svnweb.freebsd.org/changeset/ports/472588 Log: Mark as broken on powerpc64. Approved by: portmgr (tier-2 blanket) Modified: head/java/jfreechart/Makefile Modified: head/java/jfreechart/Makefile ============================================================================== --- head/java/jfreechart/Makefile Sun Jun 17 02:08:38 2018 (r472587) +++ head/java/jfreechart/Makefile Sun Jun 17 02:18:23 2018 (r472588) @@ -11,6 +11,8 @@ COMMENT= Free Java class library for generating charts LICENSE= LGPL21 +BROKEN_powerpc64= fails to build: DirectionalGradientPaintTransformer.java:60: unmappable character for encoding ASCII + RUN_DEPENDS= ${JAVALIBDIR}/jcommon.jar:java/jcommon USE_JAVA= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 02:24:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F21421008A3F; Sun, 17 Jun 2018 02:24:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8ED137A1C4; Sun, 17 Jun 2018 02:24:24 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 70A9D732F; Sun, 17 Jun 2018 02:24:24 +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 w5H2OOQs063455; Sun, 17 Jun 2018 02:24:24 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H2OOjA063454; Sun, 17 Jun 2018 02:24:24 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806170224.w5H2OOjA063454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 17 Jun 2018 02:24:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472589 - head/math/vtk5 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/vtk5 X-SVN-Commit-Revision: 472589 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 02:24:25 -0000 Author: linimon Date: Sun Jun 17 02:24:24 2018 New Revision: 472589 URL: https://svnweb.freebsd.org/changeset/ports/472589 Log: Mark as broken on powerpc64. The full message is: /usr/bin/ld: Graphics/CMakeFiles/vtkGraphics.dir/vtkProbeFilter.cxx.o(.text+0x182c): sibling call optimization to '_ZN14vtkProbeFilter26SetValidPointMaskArrayNameEPKc' does not allow automatic multiple TOCs; recompile with -mminimal-toc or -fno-optimize-sibling-calls, or make '_ZN14vtkProbeFilter26SetValidPointMaskArrayNameEPKc' extern This is beyond the scope of what I understand how to fix. Modified: head/math/vtk5/Makefile Modified: head/math/vtk5/Makefile ============================================================================== --- head/math/vtk5/Makefile Sun Jun 17 02:18:23 2018 (r472588) +++ head/math/vtk5/Makefile Sun Jun 17 02:24:24 2018 (r472589) @@ -14,6 +14,8 @@ COMMENT= The Visualization Toolkit LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/Copyright.txt +BROKEN_powerpc64= fails to build: sibling call optimization to `_ZN14vtkProbeFilter26SetValidPointMaskArrayNameEPKc' does not allow automatic multiple TOCs + LIB_DEPENDS= libexpat.so:textproc/expat2 \ libpng.so:graphics/png \ libtiff.so:graphics/tiff From owner-svn-ports-head@freebsd.org Sun Jun 17 02:29:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 715A01008DAB; Sun, 17 Jun 2018 02:29:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C2E57A411; Sun, 17 Jun 2018 02:29:06 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EBDCA7336; Sun, 17 Jun 2018 02:29:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H2T56V063730; Sun, 17 Jun 2018 02:29:05 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H2T53s063729; Sun, 17 Jun 2018 02:29:05 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806170229.w5H2T53s063729@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 17 Jun 2018 02:29:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472590 - head/sysutils/lnav X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/sysutils/lnav X-SVN-Commit-Revision: 472590 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 02:29:06 -0000 Author: linimon Date: Sun Jun 17 02:29:05 2018 New Revision: 472590 URL: https://svnweb.freebsd.org/changeset/ports/472590 Log: Mark as broken on powerpc64. Approved by: portmgr (tier-2 blanket) Modified: head/sysutils/lnav/Makefile Modified: head/sysutils/lnav/Makefile ============================================================================== --- head/sysutils/lnav/Makefile Sun Jun 17 02:24:24 2018 (r472589) +++ head/sysutils/lnav/Makefile Sun Jun 17 02:29:05 2018 (r472590) @@ -12,6 +12,8 @@ COMMENT= Terminal based log file navigator LICENSE= BSD2CLAUSE +BROKEN_powerpc64= fails to build: lnav.cc:(.text+0x509c): undefined reference to pcrecpp::RE::QuoteMeta[abi:cxx11](pcrecpp::StringPiece const&) + LIB_DEPENDS= libpcrecpp.so:devel/pcre USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 02:42:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87E3F10096FB; Sun, 17 Jun 2018 02:42:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 386F77AC8C; Sun, 17 Jun 2018 02:42:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1990D766D; Sun, 17 Jun 2018 02:42:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H2grPe073854; Sun, 17 Jun 2018 02:42:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H2gqWn073849; Sun, 17 Jun 2018 02:42:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806170242.w5H2gqWn073849@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 02:42:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472591 - in head/science: . dft_tools dft_tools/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . dft_tools dft_tools/files X-SVN-Commit-Revision: 472591 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 02:42:54 -0000 Author: yuri Date: Sun Jun 17 02:42:52 2018 New Revision: 472591 URL: https://svnweb.freebsd.org/changeset/ports/472591 Log: New port: science/dft_tools: Interface to DFT codes in TRIQS Added: head/science/dft_tools/ head/science/dft_tools/Makefile (contents, props changed) head/science/dft_tools/distinfo (contents, props changed) head/science/dft_tools/files/ head/science/dft_tools/files/patch-CMakeLists.txt (contents, props changed) head/science/dft_tools/pkg-descr (contents, props changed) head/science/dft_tools/pkg-plist (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sun Jun 17 02:29:05 2018 (r472590) +++ head/science/Makefile Sun Jun 17 02:42:52 2018 (r472591) @@ -48,6 +48,7 @@ SUBDIR += crf++ SUBDIR += dcl SUBDIR += devisor + SUBDIR += dft_tools SUBDIR += dkh SUBDIR += dlib-cpp SUBDIR += dlpoly-classic Added: head/science/dft_tools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dft_tools/Makefile Sun Jun 17 02:42:52 2018 (r472591) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= dft_tools +DISTVERSION= 1.5 +CATEGORIES= science + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Interface to DFT codes in TRIQS + +LICENSE= GPLv3 + +BUILD_DEPENDS= boost-libs>=1.53:devel/boost-libs \ + googletest>0:devel/googletest # not needed: https://github.com/TRIQS/dft_tools/issues/95 +LIB_DEPENDS= libcpp2py.so:devel/cpp2py \ + libfftw3.so:math/fftw3 \ + libgmpxx.so:math/gmp \ + libhdf5.so:science/hdf5 \ + libmpi.so:net/openmpi \ + libopenblas.so:math/openblas \ + libsz.so:science/szip \ + libtriqs.so:science/triqs + +USES= cmake:outsource,noninja fortran gettext-runtime python:-2.7 +USE_GITHUB= yes +GH_ACCOUNT= TRIQS + +# Use the same compiler as science/triqs +LLVM_VER= 60 +BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER} +CPP= clang-cpp${LLVM_VER} +CC= clang${LLVM_VER} +CXX= clang++${LLVM_VER} + +post-install: + @cd ${STAGEDIR}${PREFIX} && ${REINPLACE_CMD} -i '' -e 's|#!/bin/bash|#!/bin/sh|' bin/plovasp bin/vasp_dmft + +.include Added: head/science/dft_tools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dft_tools/distinfo Sun Jun 17 02:42:52 2018 (r472591) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529199984 +SHA256 (TRIQS-dft_tools-1.5_GH0.tar.gz) = ca10069c5b766092d289b07d0d36a19dfed7a7f5512fe62607334387422329ac +SIZE (TRIQS-dft_tools-1.5_GH0.tar.gz) = 2808644 Added: head/science/dft_tools/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dft_tools/files/patch-CMakeLists.txt Sun Jun 17 02:42:52 2018 (r472591) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2018-06-17 01:47:39 UTC ++++ CMakeLists.txt +@@ -16,7 +16,7 @@ project(dft_tools C CXX Fortran) + set(BUILD_SHARED_LIBS ON) + + # Load TRIQS and Cpp2Py +-find_package(TRIQS 1.5 EXACT REQUIRED) ++find_package(TRIQS REQUIRED) + find_package(Cpp2Py REQUIRED) + + if (NOT ${TRIQS_WITH_PYTHON_SUPPORT}) Added: head/science/dft_tools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dft_tools/pkg-descr Sun Jun 17 02:42:52 2018 (r472591) @@ -0,0 +1,10 @@ +TRIQS-based-based application is aimed at ab-initio calculations for correlated +materials, combining realistic DFT band-structure calculations with the +dynamical mean-field theory. Together with the necessary tools to perform the +DMFT self-consistency loop for realistic multi-band problems, the package +provides a full-fledged charge self-consistent interface to the Wien2K package. +In addition, if Wien2k is not available, it provides a generic interface for +one-shot DFT+DMFT calculations, where only the single-particle Hamiltonian in +orbital space has to be provided. + +WWW: https://triqs.github.io/dft_tools/master Added: head/science/dft_tools/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dft_tools/pkg-plist Sun Jun 17 02:42:52 2018 (r472591) @@ -0,0 +1,34 @@ +bin/dmftproj +bin/plovasp +bin/vasp_dmft +lib/libatm_c.so +lib/python2.7/site-packages/triqs_dft_tools/__init__.py +lib/python2.7/site-packages/triqs_dft_tools/block_structure.py +lib/python2.7/site-packages/triqs_dft_tools/clear_h5_output.py +lib/python2.7/site-packages/triqs_dft_tools/converters/__init__.py +lib/python2.7/site-packages/triqs_dft_tools/converters/converter_tools.py +lib/python2.7/site-packages/triqs_dft_tools/converters/hk_converter.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/__init__.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/atm.so +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/converter.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/elstruct.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/inpconf.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/plotools.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/proj_group.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/proj_shell.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/sc_dmft.py +lib/python2.7/site-packages/triqs_dft_tools/converters/plovasp/vaspio.py +lib/python2.7/site-packages/triqs_dft_tools/converters/vasp_converter.py +lib/python2.7/site-packages/triqs_dft_tools/converters/wannier90_converter.py +lib/python2.7/site-packages/triqs_dft_tools/converters/wien2k_converter.py +lib/python2.7/site-packages/triqs_dft_tools/sumk_dft.py +lib/python2.7/site-packages/triqs_dft_tools/sumk_dft_tools.py +lib/python2.7/site-packages/triqs_dft_tools/symmetry.py +lib/python2.7/site-packages/triqs_dft_tools/trans_basis.py +lib/python2.7/site-packages/triqs_dft_tools/update_archive.py +lib/python2.7/site-packages/triqs_dft_tools/version.py +share/triqs/Wien2k_SRC_files/SRC_templates/case.cf_f_mm2 +share/triqs/Wien2k_SRC_files/SRC_templates/case.cf_p_cubic +share/triqs/Wien2k_SRC_files/SRC_templates/case.indmftpr +share/triqs/Wien2k_SRC_files/SRC_templates/run_triqs +share/triqs/Wien2k_SRC_files/SRC_templates/runsp_triqs From owner-svn-ports-head@freebsd.org Sun Jun 17 03:25:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95857100B46D; Sun, 17 Jun 2018 03:25:32 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 345657CDFA; Sun, 17 Jun 2018 03:25: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0FEE27DB5; Sun, 17 Jun 2018 03:25:32 +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 w5H3PVDd095386; Sun, 17 Jun 2018 03:25:31 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H3PVTq095385; Sun, 17 Jun 2018 03:25:31 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806170325.w5H3PVTq095385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 17 Jun 2018 03:25:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472592 - head/www/py-httmock X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/www/py-httmock X-SVN-Commit-Revision: 472592 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 03:25:32 -0000 Author: tobik Date: Sun Jun 17 03:25:31 2018 New Revision: 472592 URL: https://svnweb.freebsd.org/changeset/ports/472592 Log: www/py-httmock: Fix build as user mv: rename /portdistfiles/py-httmock/tests.py to /wrkdirs/usr/ports/www/py-httmock/work-py27/httmock-1.2.6/tests.py: Permission denied - While here add NO_ARCH PR: 227624 Submitted by: maintainer Modified: head/www/py-httmock/Makefile Modified: head/www/py-httmock/Makefile ============================================================================== --- head/www/py-httmock/Makefile Sun Jun 17 02:42:52 2018 (r472591) +++ head/www/py-httmock/Makefile Sun Jun 17 03:25:31 2018 (r472592) @@ -22,11 +22,13 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=1.0.0:ww USES= python USE_PYTHON= distutils autoplist +NO_ARCH= yes + # Description: tests.py is missing from the pypi package # Issue ID: https://github.com/patrys/httmock/issues/55 # TODO: Remove extra MASTER_SITES, DISTFILES/SUBDIR, EXTRACT_ONLY, post-extract post-extract: - @${MV} ${DISTDIR}/${DIST_SUBDIR}/tests.py ${WRKSRC} + @${CP} ${DISTDIR}/${DIST_SUBDIR}/tests.py ${WRKSRC} do-test: cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test From owner-svn-ports-head@freebsd.org Sun Jun 17 06:38:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51FBD10100D5; Sun, 17 Jun 2018 06:38:37 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF90C81FFB; Sun, 17 Jun 2018 06:38:36 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D0A5311C75; Sun, 17 Jun 2018 06:38:36 +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 w5H6ca2O091704; Sun, 17 Jun 2018 06:38:36 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H6cavS091702; Sun, 17 Jun 2018 06:38:36 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806170638.w5H6cavS091702@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 17 Jun 2018 06:38:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472593 - head/devel/elfutils X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/devel/elfutils X-SVN-Commit-Revision: 472593 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 06:38:37 -0000 Author: linimon Date: Sun Jun 17 06:38:36 2018 New Revision: 472593 URL: https://svnweb.freebsd.org/changeset/ports/472593 Log: Now builds on powerpc64. Modified: head/devel/elfutils/Makefile Modified: head/devel/elfutils/Makefile ============================================================================== --- head/devel/elfutils/Makefile Sun Jun 17 03:25:31 2018 (r472592) +++ head/devel/elfutils/Makefile Sun Jun 17 06:38:36 2018 (r472593) @@ -19,7 +19,6 @@ LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING-LGPLV3 BROKEN_aarch64= fails to build: fatal error: linux/uio.h: No such file or directory BROKEN_armv6= fails to build: fails to compile i386_disasm.c BROKEN_armv7= fails to build: fails to compile i386_disasm.c -BROKEN_powerpc64= fails to build: error: field 'r' has incomplete type LIB_DEPENDS= libargp.so:devel/argp-standalone PATCH_DEPENDS= ${NONEXISTENT}:devel/gnulib:extract From owner-svn-ports-head@freebsd.org Sun Jun 17 06:41:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E47E10103E2; Sun, 17 Jun 2018 06:41:35 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43DB6822EB; Sun, 17 Jun 2018 06:41:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 257A711DBA; Sun, 17 Jun 2018 06:41:35 +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 w5H6fZ2R093412; Sun, 17 Jun 2018 06:41:35 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H6fZ43093411; Sun, 17 Jun 2018 06:41:35 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806170641.w5H6fZ43093411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 17 Jun 2018 06:41:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472594 - head/security/p5-Crypt-Curve25519 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/security/p5-Crypt-Curve25519 X-SVN-Commit-Revision: 472594 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 06:41:35 -0000 Author: linimon Date: Sun Jun 17 06:41:34 2018 New Revision: 472594 URL: https://svnweb.freebsd.org/changeset/ports/472594 Log: Now builds on powerpc64. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Modified: head/security/p5-Crypt-Curve25519/Makefile Modified: head/security/p5-Crypt-Curve25519/Makefile ============================================================================== --- head/security/p5-Crypt-Curve25519/Makefile Sun Jun 17 06:38:36 2018 (r472593) +++ head/security/p5-Crypt-Curve25519/Makefile Sun Jun 17 06:41:34 2018 (r472594) @@ -17,12 +17,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to install: error adding symbols: File in wrong format BROKEN_mips= fails to build: -m32 flag is not supported by this configuration BROKEN_mips64= fails to build: -m32 flag is not supported by this configuration -BROKEN_powerpc64= fails to build: architecture of input file is incompatible with powerpc:common64 output BROKEN_sparc64= fails to build: -m32 flag is not supported by this configuration +USES= perl5 ssl MAKE_JOBS_UNSAFE= yes USE_PERL5= configure -USES= perl5 ssl post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Crypt/Curve25519/Curve25519.so From owner-svn-ports-head@freebsd.org Sun Jun 17 08:18:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDD881014AE3; Sun, 17 Jun 2018 08:18:51 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F4DD84CA4; Sun, 17 Jun 2018 08:18:51 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 707F912C81; Sun, 17 Jun 2018 08:18:51 +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 w5H8Ip8n042271; Sun, 17 Jun 2018 08:18:51 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H8IoEV042267; Sun, 17 Jun 2018 08:18:50 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201806170818.w5H8IoEV042267@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sun, 17 Jun 2018 08:18:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472595 - in head/x11-fonts: . datalegreya X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/x11-fonts: . datalegreya X-SVN-Commit-Revision: 472595 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 08:18:52 -0000 Author: thierry Date: Sun Jun 17 08:18:50 2018 New Revision: 472595 URL: https://svnweb.freebsd.org/changeset/ports/472595 Log: Add datalegreya, a typeface which can interweave data curves with text. Datalegreya can be used in all contexts where small space is available to synthetically display graphical data: connected objects, embedded displays, annual reports, weather report, stock prices, etc. Added: head/x11-fonts/datalegreya/ head/x11-fonts/datalegreya/Makefile (contents, props changed) head/x11-fonts/datalegreya/distinfo (contents, props changed) head/x11-fonts/datalegreya/pkg-descr (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Sun Jun 17 06:41:34 2018 (r472594) +++ head/x11-fonts/Makefile Sun Jun 17 08:18:50 2018 (r472595) @@ -32,6 +32,7 @@ SUBDIR += crosextrafonts-carlito-ttf SUBDIR += cyberbit-ttfonts SUBDIR += cyr-rfx + SUBDIR += datalegreya SUBDIR += dejavu SUBDIR += dina SUBDIR += doulos Added: head/x11-fonts/datalegreya/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/datalegreya/Makefile Sun Jun 17 08:18:50 2018 (r472595) @@ -0,0 +1,31 @@ +# Created by: Thierry Thomas +# $FreeBSD$ + +PORTNAME= datalegreya +PORTVERSION= 0.2017.03.29 +CATEGORIES= x11-fonts math textproc + +MAINTAINER= thierry@FreeBSD.org +COMMENT= Typeface that melts text and data visualisation + +LICENSE= OFL11 +LICENSE_FILE= ${WRKSRC}/SIL\ Open\ Font\ License.txt + +USE_GITHUB= yes +GH_ACCOUNT= figs-lab +GH_TAGNAME= bb0872f + +USES= fonts +USE_XORG= x11 +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= %%FONTSDIR%%/Datalegreya-Dot.otf \ + %%FONTSDIR%%/Datalegreya-Gradient.otf \ + %%FONTSDIR%%/Datalegreya-Thin.otf + +do-install: + ${MKDIR} ${STAGEDIR}${FONTSDIR} + cd ${WRKSRC}/font-files && ${INSTALL_DATA} *.otf ${STAGEDIR}${FONTSDIR} + +.include Added: head/x11-fonts/datalegreya/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/datalegreya/distinfo Sun Jun 17 08:18:50 2018 (r472595) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529167984 +SHA256 (figs-lab-datalegreya-0.2017.03.29-bb0872f_GH0.tar.gz) = 38013ad9258da18994af2ae591d1be103a8e033f62e015e2c8dd28115c0e0f05 +SIZE (figs-lab-datalegreya-0.2017.03.29-bb0872f_GH0.tar.gz) = 2063747 Added: head/x11-fonts/datalegreya/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/datalegreya/pkg-descr Sun Jun 17 08:18:50 2018 (r472595) @@ -0,0 +1,15 @@ +Datalegreya is a typeface which can interweave data curves with text. It is +designed by Figs, on the basis of open source font Alegreya Sans SC Thin by type +designer Juan Pablo Del Peral. + +Datalegreya can be used in all contexts where small space is available to +synthetically display graphical data: connected objects, embedded displays, +annual reports, weather report, stock prices, etc. It doesn't need any +specialized software: users just have to install it in the operating system and +launch any software able to display OpenType fonts. Standards compliance makes +it equally available on the web or software embedded. + +A tool that helps to create datatypography is available at +. + +WWW: http://figs-lab.com/en/datalegreya From owner-svn-ports-head@freebsd.org Sun Jun 17 08:34:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40FC01015342; Sun, 17 Jun 2018 08:34:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E7159853D7; Sun, 17 Jun 2018 08:34:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C8B8A12FBC; Sun, 17 Jun 2018 08:34:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H8YdQS052336; Sun, 17 Jun 2018 08:34:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H8Ydpw052335; Sun, 17 Jun 2018 08:34:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806170834.w5H8Ydpw052335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 17 Jun 2018 08:34:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472596 - head/net/nbd-server X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/net/nbd-server X-SVN-Commit-Revision: 472596 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 08:34:40 -0000 Author: amdmi3 Date: Sun Jun 17 08:34:39 2018 New Revision: 472596 URL: https://svnweb.freebsd.org/changeset/ports/472596 Log: - Switch to new test framework Approved by: portmgr blanket Modified: head/net/nbd-server/Makefile Modified: head/net/nbd-server/Makefile ============================================================================== --- head/net/nbd-server/Makefile Sun Jun 17 08:18:50 2018 (r472595) +++ head/net/nbd-server/Makefile Sun Jun 17 08:34:39 2018 (r472596) @@ -18,14 +18,12 @@ USES= pkgconfig tar:bzip2 USE_GNOME= glib20 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-lfs --enable-syslog +TEST_TARGET= check PLIST_FILES= bin/nbd-server bin/nbd-trdump \ man/man1/nbd-server.1.gz \ man/man1/nbd-trdump.1.gz \ man/man5/nbd-server.5.gz \ man/man8/nbd-client.8.gz - -regression-test: build - cd ${WRKSRC} && ${MAKE} check .include From owner-svn-ports-head@freebsd.org Sun Jun 17 09:04:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 674C71016797; Sun, 17 Jun 2018 09:04:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E5CC9862AB; Sun, 17 Jun 2018 09:04:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C00971348E; Sun, 17 Jun 2018 09:04:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H94YDP067321; Sun, 17 Jun 2018 09:04:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H94YgR067320; Sun, 17 Jun 2018 09:04:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806170904.w5H94YgR067320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 17 Jun 2018 09:04:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472597 - head/textproc/p5-XML-Writer X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/textproc/p5-XML-Writer X-SVN-Commit-Revision: 472597 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 09:04:35 -0000 Author: amdmi3 Date: Sun Jun 17 09:04:34 2018 New Revision: 472597 URL: https://svnweb.freebsd.org/changeset/ports/472597 Log: - Add LICENSE - Add NO_ARCH Approved by: portmgr blanket Modified: head/textproc/p5-XML-Writer/Makefile Modified: head/textproc/p5-XML-Writer/Makefile ============================================================================== --- head/textproc/p5-XML-Writer/Makefile Sun Jun 17 08:34:39 2018 (r472596) +++ head/textproc/p5-XML-Writer/Makefile Sun Jun 17 09:04:34 2018 (r472597) @@ -12,7 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Simple Perl module for writing XML documents +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/LICENSE + USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Sun Jun 17 09:12:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 248E41016C4B; Sun, 17 Jun 2018 09:12:51 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C9CA8866F0; Sun, 17 Jun 2018 09:12:50 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAE2513625; Sun, 17 Jun 2018 09:12:50 +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 w5H9CoM4072737; Sun, 17 Jun 2018 09:12:50 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H9CoO9072736; Sun, 17 Jun 2018 09:12:50 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806170912.w5H9CoO9072736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 17 Jun 2018 09:12:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472598 - head/x11/kde-workspace-kde4 X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/x11/kde-workspace-kde4 X-SVN-Commit-Revision: 472598 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 09:12:51 -0000 Author: tcberner Date: Sun Jun 17 09:12:50 2018 New Revision: 472598 URL: https://svnweb.freebsd.org/changeset/ports/472598 Log: x11/kde-workspace-kde4: make stage-qa happy by fixing the startkde link Reported by: miwi Modified: head/x11/kde-workspace-kde4/Makefile Modified: head/x11/kde-workspace-kde4/Makefile ============================================================================== --- head/x11/kde-workspace-kde4/Makefile Sun Jun 17 09:04:34 2018 (r472597) +++ head/x11/kde-workspace-kde4/Makefile Sun Jun 17 09:12:50 2018 (r472598) @@ -2,7 +2,7 @@ PORTNAME= kde-workspace PORTVERSION= ${KDE4_WORKSPACE_VERSION} -PORTREVISION= 20 +PORTREVISION= 21 CATEGORIES= x11 kde kde-applications PKGNAMESUFFIX= -kde4 @@ -133,7 +133,7 @@ pre-configure: ${PATCH_WRKSRC}/doc/CMakeLists.txt post-install: - ${LN} -sf ${PREFIX}/bin/startkde ${STAGEDIR}${PREFIX}/bin/startkde4 + ${RLN} ${STAGEDIR}${PREFIX}/bin/startkde ${STAGEDIR}${PREFIX}/bin/startkde4 # Install kde4.desktop to launch kde4 via sddm. ${MKDIR} ${STAGEDIR}${PREFIX}/share/xsessions ${INSTALL_DATA} ${FILESDIR}/kde4.desktop ${STAGEDIR}${PREFIX}/share/xsessions From owner-svn-ports-head@freebsd.org Sun Jun 17 09:16:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 982D11016E14; Sun, 17 Jun 2018 09:16:56 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 382E58686B; Sun, 17 Jun 2018 09:16:56 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 13BC713628; Sun, 17 Jun 2018 09:16:56 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H9Gt2F072999; Sun, 17 Jun 2018 09:16:55 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H9GtB0072998; Sun, 17 Jun 2018 09:16:55 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201806170916.w5H9GtB0072998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 17 Jun 2018 09:16:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472599 - head/x11/xscreensaver X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/xscreensaver X-SVN-Commit-Revision: 472599 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 09:16:56 -0000 Author: zeising Date: Sun Jun 17 09:16:55 2018 New Revision: 472599 URL: https://svnweb.freebsd.org/changeset/ports/472599 Log: x11/xscreensaver: Add NSFW option Add NSFW option that, when enabled, enables some NSFW wording in the BSOD screensaver, in the ransomware picture. Submitted by: jonathan Differential Revision: https://reviews.freebsd.org/D15762 Modified: head/x11/xscreensaver/Makefile Modified: head/x11/xscreensaver/Makefile ============================================================================== --- head/x11/xscreensaver/Makefile Sun Jun 17 09:12:50 2018 (r472598) +++ head/x11/xscreensaver/Makefile Sun Jun 17 09:16:55 2018 (r472599) @@ -3,6 +3,7 @@ PORTNAME= xscreensaver PORTVERSION= 5.39 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ @@ -39,7 +40,7 @@ CONFIGURE_ARGS= --with-gtk --with-gl --with-gle --with --without-setuid-hacks --enable-locking MAKE_ARGS+= install_prefix=${STAGEDIR} -OPTIONS_DEFINE= PAM SETUID_HACKS FIREF NLS XAOS1 XDALI XEARTH \ +OPTIONS_DEFINE= PAM SETUID_HACKS FIREF NLS NSFW XAOS1 XDALI XEARTH \ XFT XMOUN XPLANET XSNOW OPTIONS_DEFAULT=XFT OPTIONS_SUB= yes @@ -54,6 +55,8 @@ FIREF_RUN_DEPENDS= ${LOCALBASE}/bin/xscreensaver-hack NLS_USES= gettext-runtime NLS_CONFIGURE_ENABLE= nls +NSFW_DESC= Include material that is Not Safe For Work + XAOS1_DESC= Add extra port graphics/xaos XAOS1_RUN_DEPENDS= xaos:graphics/xaos @@ -79,6 +82,10 @@ SUB_FILES= xscreensaver-blank.desktop xscreensaver-loc xscreensaver-start.desktop xscreensaver-stop.desktop post-patch: +.if empty(PORT_OPTIONS:NSFW) + ${REINPLACE_CMD} -e 's|Dick Pix|Stuff|' ${WRKSRC}/hacks/bsod.c + ${REINPLACE_CMD} -e 's|dick pics|data, etc.|' ${WRKSRC}/hacks/bsod.c +.endif ${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ -e 's|pkg_config --list-all|pkg_config --help|' \ ${WRKSRC}/configure.in From owner-svn-ports-head@freebsd.org Sun Jun 17 09:34:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DADFC101763D; Sun, 17 Jun 2018 09:34:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86CA087668; Sun, 17 Jun 2018 09:34:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E52F13987; Sun, 17 Jun 2018 09:34:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5H9YZ37082862; Sun, 17 Jun 2018 09:34:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5H9YYB1082861; Sun, 17 Jun 2018 09:34:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806170934.w5H9YYB1082861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 17 Jun 2018 09:34:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472600 - head/devel/horde-whups X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/horde-whups X-SVN-Commit-Revision: 472600 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 09:34:36 -0000 Author: amdmi3 Date: Sun Jun 17 09:34:34 2018 New Revision: 472600 URL: https://svnweb.freebsd.org/changeset/ports/472600 Log: - Whitespace fix - Update WWW Approved by: portmgr blanket Modified: head/devel/horde-whups/Makefile head/devel/horde-whups/pkg-descr Modified: head/devel/horde-whups/Makefile ============================================================================== --- head/devel/horde-whups/Makefile Sun Jun 17 09:16:55 2018 (r472599) +++ head/devel/horde-whups/Makefile Sun Jun 17 09:34:34 2018 (r472600) @@ -11,7 +11,7 @@ COMMENT= Horde bug tracking/ticketing system LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= horde cpe +USES= horde cpe USE_PHP= gettext json USE_HORDE_BUILD= Horde_Role USE_HORDE_RUN= Horde_Role \ Modified: head/devel/horde-whups/pkg-descr ============================================================================== --- head/devel/horde-whups/pkg-descr Sun Jun 17 09:16:55 2018 (r472599) +++ head/devel/horde-whups/pkg-descr Sun Jun 17 09:34:34 2018 (r472600) @@ -2,4 +2,4 @@ Whups is Horde's ticket-tracking application. It is ve and can be used for help-desk requests, tracking sofware development, and anything else that needs to track a set of requests and their status. -WWW: http://www.horde.org/apps/whups/ +WWW: https://www.horde.org/apps/whups/ From owner-svn-ports-head@freebsd.org Sun Jun 17 09:38:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A88881017786; Sun, 17 Jun 2018 09:38:02 +0000 (UTC) (envelope-from adridg@freebsd.org) Received: from smtp02.mail.online.nl (smtp02.mail.online.nl [194.134.25.72]) by mx1.freebsd.org (Postfix) with ESMTP id 4DD2B8778F; Sun, 17 Jun 2018 09:38:02 +0000 (UTC) (envelope-from adridg@freebsd.org) Received: from beastie.bionicmutton.org (s55969a9e.adsl.online.nl [85.150.154.158]) by smtp02.mail.online.nl (Postfix) with ESMTP id 2E3BB1A0094; Sun, 17 Jun 2018 11:37:52 +0200 (CEST) From: Adriaan de Groot To: yuri@freebsd.org Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472575 - in head/devel/cpp2py: . files Date: Sun, 17 Jun 2018 11:37:45 +0200 Message-ID: <3686747.Erkxd33iFv@beastie.bionicmutton.org> Organization: FreeBSD In-Reply-To: <201806162320.w5GNKtvI066975@repo.freebsd.org> References: <201806162320.w5GNKtvI066975@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart10924919.k2njD6izWF"; micalg="pgp-sha256"; protocol="application/pgp-signature" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 09:38:02 -0000 --nextPart10924919.k2njD6izWF Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" For completeness, I'll throw in an explanation of "correct cmake file paths" (which Yuri is correct in using). On Sunday, 17 June 2018 01:20:55 CEST Yuri Victorovich wrote: > Log: > devel/cpp2py: Correct cmake file paths > -install(FILES ${CMAKE_CURRENT_BINARY_DIR}/Cpp2PyConfig.cmake DESTINATION > ${CMAKE_INSTALL_PREFIX}/share/cmake) > ++install(FILES ${CMAKE_CURRENT_BINARY_DIR}/Cpp2PyConfig.cmake DESTINATION > ${CMAKE_INSTALL_PREFIX}/lib/cmake/cpp2py) > +lib/cmake/cpp2py/Cpp2PyConfig.cmake > -share/cmake/Modules/Cpp2PyConfig.cmake CMake looks for modules in various places. Many CMake-based software projects (and some others) install modules to help CMake find those pieces of software -- for consumers of that software, for instance. The CMake port itself installs stuff into ${LOCALBASE}/share/cmake, and in particular (normal settings), /usr/local/share/cmake/Modules are where the modules-shipped-with-CMake live. Most other software installs to /usr/local/lib/cmake/ (no extra Modules/). The "big" consumers of CMake, KDE and Qt, but also small stuff like yaml-cpp, install their CMake modules there. For CMake itself it doesn't matter: it searches many places for modules, see e.g. cmake --help-command find_package . I guess on FreeBSD we could say we have a preference for keeping share/cmake as "the place for CMake itself" and lib/cmake as "the place for third-party modules". So thanks for tidying this up, Yuri. (fwiw, pkg which /usr/local/share/cmake/Modules/* | grep -v 'package cmake-3' tells me there's some leakage; not enough to go an update packages Just Because, but something to keep in mind if touching a port anyway) [ade] --nextPart10924919.k2njD6izWF Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part. Content-Transfer-Encoding: 7Bit -----BEGIN PGP SIGNATURE----- iHUEABEIAB0WIQTVFBoRsP760fy+Jisy7lRaPghTTwUCWyYr6QAKCRAy7lRaPghT TxlIAP9XrDpME1guHkSfU7+lvgjEjB4iiPXZBPHEiPA5dolriAD/VtRod0EQfXrT H8VgJU6LNqOAwaPZ7aa2uM3fM1dQ9pg= =ozj6 -----END PGP SIGNATURE----- --nextPart10924919.k2njD6izWF-- From owner-svn-ports-head@freebsd.org Sun Jun 17 10:09:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC30A1018A97; Sun, 17 Jun 2018 10:09:07 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53A5B68705; Sun, 17 Jun 2018 10:09:07 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 68CFD21AC8; Sun, 17 Jun 2018 06:09:06 -0400 (EDT) Received: from web1 ([10.202.2.211]) by compute4.internal (MEProxy); Sun, 17 Jun 2018 06:09:06 -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=fm3; bh=oME7rz ITaP2CEaaMAR22jf+HscmgezFA54l7OBXiHWw=; b=OvejNLhYiTqYZOuR3tZDUO CqKf+WHM+7pnsn0x/x3CR0zxbgi/CB926yCM6/q1b0k4AOHnQH9qE/ZpeZHjkAkM EXem3QK6rjF9w0QJCgYZiYMf+hP/bkCJvly1xWf2N/l5fGmWnjcNpDSUAylIC8Ay aDvGzVra5F+H4gt0X/qvRbP/QvRPEul211nncMvVnfKElQzL09l5vO6DXfpj6JIc 30eLRk/ekqj4UbcDJr6BpXwPQfmCGOE+oe4lNG0UUDBV9oBnx1jE8/rWuTnSgRoh hgwosWqm+E0UquGK2ahcYoZydBDLBLrPmcOTUIVuOc2O4aq0OB3fGtyI4y+CiO7Q == X-ME-Proxy: X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 23CB3940B8; Sun, 17 Jun 2018 06:09:06 -0400 (EDT) Message-Id: <1529230146.1744976.1410681288.6303149E@webmail.messagingengine.com> From: Tobias Kortkamp To: Niclas Zeising , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-498d70f2 Date: Sun, 17 Jun 2018 12:09:06 +0200 In-Reply-To: <201806170916.w5H9GtB0072998@repo.freebsd.org> Subject: Re: svn commit: r472599 - head/x11/xscreensaver References: <201806170916.w5H9GtB0072998@repo.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 10:09:07 -0000 On Sun, Jun 17, 2018, at 11:16, Niclas Zeising wrote: > Author: zeising > Date: Sun Jun 17 09:16:55 2018 > New Revision: 472599 > URL: https://svnweb.freebsd.org/changeset/ports/472599 > > Log: > x11/xscreensaver: Add NSFW option > > Add NSFW option that, when enabled, enables some NSFW wording in the BSOD > screensaver, in the ransomware picture. > > Submitted by: jonathan > Differential Revision: https://reviews.freebsd.org/D15762 > > Modified: > head/x11/xscreensaver/Makefile > > Modified: head/x11/xscreensaver/Makefile > ============================================================================== > --- head/x11/xscreensaver/Makefile Sun Jun 17 09:12:50 2018 (r472598) > +++ head/x11/xscreensaver/Makefile Sun Jun 17 09:16:55 2018 (r472599) > @@ -3,6 +3,7 @@ > > PORTNAME= xscreensaver > PORTVERSION= 5.39 > +PORTREVISION= 1 > CATEGORIES= x11 > MASTER_SITES= http://www.jwz.org/xscreensaver/ > > @@ -39,7 +40,7 @@ CONFIGURE_ARGS= --with-gtk --with-gl --with-gle --with > --without-setuid-hacks --enable-locking > MAKE_ARGS+= install_prefix=${STAGEDIR} > > -OPTIONS_DEFINE= PAM SETUID_HACKS FIREF NLS XAOS1 XDALI XEARTH \ > +OPTIONS_DEFINE= PAM SETUID_HACKS FIREF NLS NSFW XAOS1 XDALI XEARTH \ > XFT XMOUN XPLANET XSNOW > OPTIONS_DEFAULT=XFT > OPTIONS_SUB= yes > @@ -54,6 +55,8 @@ FIREF_RUN_DEPENDS= ${LOCALBASE}/bin/xscreensaver-hack > NLS_USES= gettext-runtime > NLS_CONFIGURE_ENABLE= nls > > +NSFW_DESC= Include material that is Not Safe For Work > + > XAOS1_DESC= Add extra port graphics/xaos > XAOS1_RUN_DEPENDS= xaos:graphics/xaos > > @@ -79,6 +82,10 @@ SUB_FILES= xscreensaver-blank.desktop xscreensaver-loc > xscreensaver-start.desktop xscreensaver-stop.desktop > > post-patch: > +.if empty(PORT_OPTIONS:NSFW) > + ${REINPLACE_CMD} -e 's|Dick Pix|Stuff|' ${WRKSRC}/hacks/bsod.c > + ${REINPLACE_CMD} -e 's|dick pics|data, etc.|' ${WRKSRC}/hacks/bsod.c > +.endif This cannot work as intended. PORT_OPTIONS isn't available because bsd.port.options.mk wasn't included before. Even if it were the condition is always false. It should be empty(PORT_OPTIONS:MNSFW) or similar. But it's best to just use an options helper target `post-patch-NSFW-off:` for this. > ${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ > -e 's|pkg_config --list-all|pkg_config --help|' \ > ${WRKSRC}/configure.in > From owner-svn-ports-head@freebsd.org Sun Jun 17 11:27:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29835101ABFF; Sun, 17 Jun 2018 11:27:21 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C95696A8D1; Sun, 17 Jun 2018 11:27:20 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A1FA814B3F; Sun, 17 Jun 2018 11:27:20 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HBRK0Y038453; Sun, 17 Jun 2018 11:27:20 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HBRKaH038452; Sun, 17 Jun 2018 11:27:20 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201806171127.w5HBRKaH038452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 17 Jun 2018 11:27:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472601 - head/x11/xscreensaver X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/xscreensaver X-SVN-Commit-Revision: 472601 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 11:27:21 -0000 Author: zeising Date: Sun Jun 17 11:27:20 2018 New Revision: 472601 URL: https://svnweb.freebsd.org/changeset/ports/472601 Log: x11/xscreensaver: Fix NSFW option Fix the NSFW option to actually work. I don't know what I was thinking in the previous commit. Reported by: tobik Modified: head/x11/xscreensaver/Makefile Modified: head/x11/xscreensaver/Makefile ============================================================================== --- head/x11/xscreensaver/Makefile Sun Jun 17 09:34:34 2018 (r472600) +++ head/x11/xscreensaver/Makefile Sun Jun 17 11:27:20 2018 (r472601) @@ -3,7 +3,7 @@ PORTNAME= xscreensaver PORTVERSION= 5.39 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ @@ -82,10 +82,6 @@ SUB_FILES= xscreensaver-blank.desktop xscreensaver-loc xscreensaver-start.desktop xscreensaver-stop.desktop post-patch: -.if empty(PORT_OPTIONS:NSFW) - ${REINPLACE_CMD} -e 's|Dick Pix|Stuff|' ${WRKSRC}/hacks/bsod.c - ${REINPLACE_CMD} -e 's|dick pics|data, etc.|' ${WRKSRC}/hacks/bsod.c -.endif ${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \ -e 's|pkg_config --list-all|pkg_config --help|' \ ${WRKSRC}/configure.in @@ -94,6 +90,10 @@ post-patch: ${WRKSRC}/driver/xscreensaver.man ${CP} ${FILESDIR}/xscreensaver.pam \ ${WRKSRC}/driver/xscreensaver.pam.in + +post-patch-NSFW-off: + ${REINPLACE_CMD} -e 's|Dick Pix|Stuff|' ${WRKSRC}/hacks/bsod.c + ${REINPLACE_CMD} -e 's|dick pics|data, etc.|' ${WRKSRC}/hacks/bsod.c post-install: ${INSTALL_DATA} ${FILESDIR}/x*.xml ${STAGEDIR}${DATADIR}/config/ From owner-svn-ports-head@freebsd.org Sun Jun 17 13:46:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53C3E101FD91; Sun, 17 Jun 2018 13:46:21 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 07C8B6F0FF; Sun, 17 Jun 2018 13:46:21 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DE5D8161AE; Sun, 17 Jun 2018 13:46:20 +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 w5HDkKNO009361; Sun, 17 Jun 2018 13:46:20 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HDkK40009360; Sun, 17 Jun 2018 13:46:20 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201806171346.w5HDkK40009360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sun, 17 Jun 2018 13:46:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472604 - head X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head X-SVN-Commit-Revision: 472604 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 13:46:21 -0000 Author: jrm Date: Sun Jun 17 13:46:20 2018 New Revision: 472604 URL: https://svnweb.freebsd.org/changeset/ports/472604 Log: .gitauthors: Add Mateusz Piotrowski (0mp) Modified: head/.gitauthors (contents, props changed) Modified: head/.gitauthors ============================================================================== --- head/.gitauthors Sun Jun 17 13:35:31 2018 (r472603) +++ head/.gitauthors Sun Jun 17 13:46:20 2018 (r472604) @@ -13,6 +13,7 @@ # when users could be removed is if they no longer have an account and # never committed. +0mp = Mateusz Piotrowski <0mp@FreeBSD.org> aaron = Aaron Dalton abial = Andrzej Bialecki ache = Andrey A. Chernov From owner-svn-ports-head@freebsd.org Sun Jun 17 14:30:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA2EA1020C58; Sun, 17 Jun 2018 14:30:32 +0000 (UTC) (envelope-from misha@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5C5D070224; Sun, 17 Jun 2018 14:30:32 +0000 (UTC) (envelope-from misha@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D8371682C; Sun, 17 Jun 2018 14:30:32 +0000 (UTC) (envelope-from misha@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HEUWFI029909; Sun, 17 Jun 2018 14:30:32 GMT (envelope-from misha@FreeBSD.org) Received: (from misha@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HEUVbG029908; Sun, 17 Jun 2018 14:30:31 GMT (envelope-from misha@FreeBSD.org) Message-Id: <201806171430.w5HEUVbG029908@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: misha set sender to misha@FreeBSD.org using -f From: Mikhail Pchelin Date: Sun, 17 Jun 2018 14:30:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472606 - head/mail/offlineimap X-SVN-Group: ports-head X-SVN-Commit-Author: misha X-SVN-Commit-Paths: head/mail/offlineimap X-SVN-Commit-Revision: 472606 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 14:30:32 -0000 Author: misha Date: Sun Jun 17 14:30:31 2018 New Revision: 472606 URL: https://svnweb.freebsd.org/changeset/ports/472606 Log: - update from 7.2.0 to 7.2.1 Modified: head/mail/offlineimap/Makefile head/mail/offlineimap/distinfo Modified: head/mail/offlineimap/Makefile ============================================================================== --- head/mail/offlineimap/Makefile Sun Jun 17 14:21:49 2018 (r472605) +++ head/mail/offlineimap/Makefile Sun Jun 17 14:30:31 2018 (r472606) @@ -3,7 +3,7 @@ PORTNAME= offlineimap DISTVERSIONPREFIX= v -DISTVERSION= 7.2.0 +DISTVERSION= 7.2.1 CATEGORIES= mail python MAINTAINER= mp39590@gmail.com Modified: head/mail/offlineimap/distinfo ============================================================================== --- head/mail/offlineimap/distinfo Sun Jun 17 14:21:49 2018 (r472605) +++ head/mail/offlineimap/distinfo Sun Jun 17 14:30:31 2018 (r472606) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528120539 -SHA256 (OfflineIMAP-offlineimap-v7.2.0_GH0.tar.gz) = b6c8c6dbd67ec7cd6228a40866b5d6143f707d78faf9603d9328c9bc43fdf7c4 -SIZE (OfflineIMAP-offlineimap-v7.2.0_GH0.tar.gz) = 715558 +TIMESTAMP = 1529241476 +SHA256 (OfflineIMAP-offlineimap-v7.2.1_GH0.tar.gz) = 1d4164941413234cf4669ae57d27176701a7e07214fe49fa265df5c085eb4280 +SIZE (OfflineIMAP-offlineimap-v7.2.1_GH0.tar.gz) = 720220 From owner-svn-ports-head@freebsd.org Sun Jun 17 14:42:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9757810214DF; Sun, 17 Jun 2018 14:42:25 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E92870AF5; Sun, 17 Jun 2018 14:42:25 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5095816B6B; Sun, 17 Jun 2018 14:42:25 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HEgPx3040098; Sun, 17 Jun 2018 14:42:25 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HEgOCK040096; Sun, 17 Jun 2018 14:42:24 GMT (envelope-from db@FreeBSD.org) Message-Id: <201806171442.w5HEgOCK040096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Sun, 17 Jun 2018 14:42:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472607 - in head/comms/quisk: . files X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/comms/quisk: . files X-SVN-Commit-Revision: 472607 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 14:42:25 -0000 Author: db Date: Sun Jun 17 14:42:24 2018 New Revision: 472607 URL: https://svnweb.freebsd.org/changeset/ports/472607 Log: Fix typo of locale.setlocal which should be locale.setlocale Pointy hat to: @shurd Modified: head/comms/quisk/Makefile head/comms/quisk/files/patch-quisk.py (contents, props changed) Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Sun Jun 17 14:30:31 2018 (r472606) +++ head/comms/quisk/Makefile Sun Jun 17 14:42:24 2018 (r472607) @@ -3,7 +3,7 @@ PORTNAME= quisk PORTVERSION= 4.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= comms hamradio MASTER_SITES= http://james.ahlstrom.name/quisk/ \ LOCAL/db Modified: head/comms/quisk/files/patch-quisk.py ============================================================================== --- head/comms/quisk/files/patch-quisk.py Sun Jun 17 14:30:31 2018 (r472606) +++ head/comms/quisk/files/patch-quisk.py Sun Jun 17 14:42:24 2018 (r472607) @@ -1,12 +1,12 @@ ---- quisk.py.orig 2016-11-30 18:26:59 UTC -+++ quisk.py -@@ -21,6 +21,13 @@ os.chdir(os.path.normpath(os.path.dirnam +--- quisk.py.orig 2016-11-30 13:26:59.000000000 -0500 ++++ quisk.py 2018-06-17 10:30:03.031192000 -0400 +@@ -21,6 +21,13 @@ if sys.path[0] != "'.'": # Make sure the current working directory is on path sys.path.insert(0, '.') +# Hack to ensure unicode is available. +import locale -+locale.setlocal(locale.LC_ALL, '') ++locale.setlocale(locale.LC_ALL, '') +cloc = locale.getdefaultlocale() +if locale.nl_langinfo(locale.CODESET) != 'UTF-8': + locale.setlocale(locale.LC_ALL, (cloc[0], 'UTF-8')) From owner-svn-ports-head@freebsd.org Sun Jun 17 15:29:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2F631022C32; Sun, 17 Jun 2018 15:29:02 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86253723FB; Sun, 17 Jun 2018 15:29:02 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5D57B17203; Sun, 17 Jun 2018 15:29:02 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HFT23K060672; Sun, 17 Jun 2018 15:29:02 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HFT1F1060670; Sun, 17 Jun 2018 15:29:01 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201806171529.w5HFT1F1060670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Sun, 17 Jun 2018 15:29:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472608 - head/x11/mlterm X-SVN-Group: ports-head X-SVN-Commit-Author: nobutaka X-SVN-Commit-Paths: head/x11/mlterm X-SVN-Commit-Revision: 472608 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 15:29:03 -0000 Author: nobutaka Date: Sun Jun 17 15:29:01 2018 New Revision: 472608 URL: https://svnweb.freebsd.org/changeset/ports/472608 Log: Update to 3.8.6. Modified: head/x11/mlterm/Makefile head/x11/mlterm/distinfo Modified: head/x11/mlterm/Makefile ============================================================================== --- head/x11/mlterm/Makefile Sun Jun 17 14:42:24 2018 (r472607) +++ head/x11/mlterm/Makefile Sun Jun 17 15:29:01 2018 (r472608) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mlterm -PORTVERSION= 3.8.5 +PORTVERSION= 3.8.6 CATEGORIES= x11 MASTER_SITES= SF/${PORTNAME}/01release/${PORTNAME}-${PORTVERSION} Modified: head/x11/mlterm/distinfo ============================================================================== --- head/x11/mlterm/distinfo Sun Jun 17 14:42:24 2018 (r472607) +++ head/x11/mlterm/distinfo Sun Jun 17 15:29:01 2018 (r472608) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523718467 -SHA256 (mlterm-3.8.5.tar.gz) = 6452181ffac4735aa6659c75babca532df61798bac960db271b08ffb72f6da61 -SIZE (mlterm-3.8.5.tar.gz) = 3928532 +TIMESTAMP = 1529246637 +SHA256 (mlterm-3.8.6.tar.gz) = 6dc7ca3ab38bc93cf45d4ea5fff63cff949609d99b6698ce4e9a2068e3a2fe1b +SIZE (mlterm-3.8.6.tar.gz) = 3952815 From owner-svn-ports-head@freebsd.org Sun Jun 17 15:57:41 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01EDF1023EC2; Sun, 17 Jun 2018 15:57:40 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9126A73593; Sun, 17 Jun 2018 15:57:40 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 57E6017702; Sun, 17 Jun 2018 15:57:40 +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 w5HFvexv075723; Sun, 17 Jun 2018 15:57:40 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HFvd4O075716; Sun, 17 Jun 2018 15:57:39 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806171557.w5HFvd4O075716@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 17 Jun 2018 15:57:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472609 - in head/devel: qbs qtcreator X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/devel: qbs qtcreator X-SVN-Commit-Revision: 472609 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 15:57:41 -0000 Author: tcberner Date: Sun Jun 17 15:57:39 2018 New Revision: 472609 URL: https://svnweb.freebsd.org/changeset/ports/472609 Log: Update devel/qtcreator to 4.6.2 While here, fix a typo in devel/qbs's Makefile. Modified: head/devel/qbs/Makefile head/devel/qtcreator/Makefile head/devel/qtcreator/distinfo head/devel/qtcreator/pkg-plist Modified: head/devel/qbs/Makefile ============================================================================== --- head/devel/qbs/Makefile Sun Jun 17 15:29:01 2018 (r472608) +++ head/devel/qbs/Makefile Sun Jun 17 15:57:39 2018 (r472609) @@ -3,6 +3,7 @@ PORTNAME= qbs DISTVERSIONPREFIX= src- DISTVERSION= 1.11.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= QT/official_releases/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/Qt/qbs @@ -22,7 +23,7 @@ USE_QT5= buildtools_build core concurrent gui network SHEBANG_FILES= src/3rdparty/python/bin/dmgbuild QMAKE_ARGS= CONFIG+=qbs_disable_rpath \ - COFNIG+=qbs_enable_project_file_updates + CONFIG+=qbs_enable_project_file_updates QMAKE_SOURCE_PATH= ${WRKSRC}/qbs.pro OPTIONS_DEFINE= DOCS Modified: head/devel/qtcreator/Makefile ============================================================================== --- head/devel/qtcreator/Makefile Sun Jun 17 15:29:01 2018 (r472608) +++ head/devel/qtcreator/Makefile Sun Jun 17 15:57:39 2018 (r472609) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qtcreator -DISTVERSION= 4.6.1 +DISTVERSION= 4.6.2 CATEGORIES= devel MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION} DISTNAME= qt-creator-opensource-src-${DISTVERSION} Modified: head/devel/qtcreator/distinfo ============================================================================== --- head/devel/qtcreator/distinfo Sun Jun 17 15:29:01 2018 (r472608) +++ head/devel/qtcreator/distinfo Sun Jun 17 15:57:39 2018 (r472609) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525502745 -SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-4.6.1.tar.xz) = e74dce61becc2a97199ff4a0e50a148e4dbafb6572587212323c470d70c137da -SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-4.6.1.tar.xz) = 23403488 +TIMESTAMP = 1529098887 +SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-4.6.2.tar.xz) = bbaf667f51051c602df02e04c1d7369bef9553326d8377bc36a019ae718843cc +SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-4.6.2.tar.xz) = 23397676 Modified: head/devel/qtcreator/pkg-plist ============================================================================== --- head/devel/qtcreator/pkg-plist Sun Jun 17 15:29:01 2018 (r472608) +++ head/devel/qtcreator/pkg-plist Sun Jun 17 15:57:39 2018 (r472609) @@ -2290,6 +2290,7 @@ libexec/qtcreator/sdktool %%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/stop_small.png %%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/text.png %%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/unifieddiff.png +%%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/used-in-examples/transitions/qt-logo.png %%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/var.png %%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/var_priv.png %%PORTDOCS%%%%DOCSDIR%%/qtcreator/images/var_prot.png From owner-svn-ports-head@freebsd.org Sun Jun 17 16:15:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9DB1100063E; Sun, 17 Jun 2018 16:15:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E59B73E83; Sun, 17 Jun 2018 16:15:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4CE9617A3C; Sun, 17 Jun 2018 16:15:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HGFXpc085745; Sun, 17 Jun 2018 16:15:33 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HGFXBh085744; Sun, 17 Jun 2018 16:15:33 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806171615.w5HGFXBh085744@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 17 Jun 2018 16:15:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472610 - head/lang/nbc X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/lang/nbc X-SVN-Commit-Revision: 472610 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 16:15:33 -0000 Author: rene Date: Sun Jun 17 16:15:32 2018 New Revision: 472610 URL: https://svnweb.freebsd.org/changeset/ports/472610 Log: lang/nbc: fix build with lld by setting LLD_UNSAFE [1] While here, set the license (MPL11) and bump PORTREVISION PR: 228613 [1] Submitted by: emaste [1] Modified: head/lang/nbc/Makefile Modified: head/lang/nbc/Makefile ============================================================================== --- head/lang/nbc/Makefile Sun Jun 17 15:57:39 2018 (r472609) +++ head/lang/nbc/Makefile Sun Jun 17 16:15:32 2018 (r472610) @@ -3,7 +3,7 @@ PORTNAME= nbc PORTVERSION= 1.2.1.r4 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= lang MASTER_SITES= SF/bricxcc/NBC_NXC/NBC%20release%20${PORTVERSION:S/.r/%20r/} DISTNAME= ${PORTNAME}-${PORTVERSION}.src @@ -11,6 +11,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}.src MAINTAINER= rene@FreeBSD.org COMMENT= Programming language for the LEGO MINDSTORMS NXT +LICENSE= MPL11 + MAKE_JOBS_UNSAFE= yes MAKEFILE= nbcunix.mak WRKSRC= ${WRKDIR}/NXT @@ -30,6 +32,8 @@ PLIST_FILES= bin/nbc \ PORTDOCS= Changelog \ Readme + +LLD_UNSAFE= yes # PR 228613, needs FPC changes? post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/${MAKEFILE} From owner-svn-ports-head@freebsd.org Sun Jun 17 16:43:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 500F110013CA; Sun, 17 Jun 2018 16:43:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E640175056; Sun, 17 Jun 2018 16:43:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C17D817F22; Sun, 17 Jun 2018 16:43:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HGhwDR001168; Sun, 17 Jun 2018 16:43:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HGhwCm001167; Sun, 17 Jun 2018 16:43:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171643.w5HGhwCm001167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 16:43:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472611 - head/misc/pubs X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/pubs X-SVN-Commit-Revision: 472611 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 16:43:59 -0000 Author: yuri Date: Sun Jun 17 16:43:58 2018 New Revision: 472611 URL: https://svnweb.freebsd.org/changeset/ports/472611 Log: misc/pubs: Update 0.7.0 -> 0.7.0.104 Modified: head/misc/pubs/Makefile head/misc/pubs/distinfo Modified: head/misc/pubs/Makefile ============================================================================== --- head/misc/pubs/Makefile Sun Jun 17 16:15:32 2018 (r472610) +++ head/misc/pubs/Makefile Sun Jun 17 16:43:58 2018 (r472611) @@ -1,9 +1,10 @@ # $FreeBSD$ PORTNAME= pubs -DISTVERSION= 0.7.0 +DISTVERSIONPREFIX= v +DISTVERSION= 0.7.0-104 +DISTVERSIONSUFFIX= -gc513870 CATEGORIES= misc python -MASTER_SITES= CHEESESHOP MAINTAINER= yuri@FreeBSD.org COMMENT= Your bibliography on the command line @@ -18,6 +19,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>0:ww ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} USES= python +USE_GITHUB= yes USE_PYTHON= distutils autoplist noflavors .include Modified: head/misc/pubs/distinfo ============================================================================== --- head/misc/pubs/distinfo Sun Jun 17 16:15:32 2018 (r472610) +++ head/misc/pubs/distinfo Sun Jun 17 16:43:58 2018 (r472611) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521066653 -SHA256 (pubs-0.7.0.tar.gz) = 629e9015b39e331bf1b6a0b9ea387b83cba2b81884afa99178b771a07a30984d -SIZE (pubs-0.7.0.tar.gz) = 32366 +TIMESTAMP = 1529253705 +SHA256 (pubs-pubs-v0.7.0-104-gc513870_GH0.tar.gz) = 3eaecda3cbc4ca15584142972000f4f05c3afb18031ddbaa42f15cd13b9c6c35 +SIZE (pubs-pubs-v0.7.0-104-gc513870_GH0.tar.gz) = 672365 From owner-svn-ports-head@freebsd.org Sun Jun 17 16:50:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B40AF100165F; Sun, 17 Jun 2018 16:50:31 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5FB83752BF; Sun, 17 Jun 2018 16:50: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 404C717F2F; Sun, 17 Jun 2018 16:50:31 +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 w5HGoV4A001570; Sun, 17 Jun 2018 16:50:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HGoVCD001569; Sun, 17 Jun 2018 16:50:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806171650.w5HGoVCD001569@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 17 Jun 2018 16:50:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472612 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 472612 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 16:50:31 -0000 Author: jbeich Date: Sun Jun 17 16:50:30 2018 New Revision: 472612 URL: https://svnweb.freebsd.org/changeset/ports/472612 Log: gecko: check app compatibility for -i18n via package registry make[5]: "/usr/ports/Mk/Uses/gecko.mk" line 48: warning: "/usr/local/bin/firefox --version 2>/dev/null" returned non-zero status $ sudo firefox --version Running Nightly as root in a regular user's session is not supported. ($XAUTHORITY is /home/foo/.Xauthority which is owned by foo.) https://bugzilla.mozilla.org/show_bug.cgi?id=1323302 PR: 229064 Reported by: Vladimir Omelchuk Analyzed by: Rainer Hurling Submitted by: Walter Schwarzenfeld (based on) Modified: head/Mk/Uses/gecko.mk (contents, props changed) Modified: head/Mk/Uses/gecko.mk ============================================================================== --- head/Mk/Uses/gecko.mk Sun Jun 17 16:43:58 2018 (r472611) +++ head/Mk/Uses/gecko.mk Sun Jun 17 16:50:30 2018 (r472612) @@ -45,8 +45,8 @@ _GECKO_TYPE= firefox 60_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) -_GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null -_GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:M[0-9][0-9]*:C/([0-9][0-9]).*/\1/g} +_GECKO_INSTALLED_VER!= ${PKG_QUERY} %v firefox firefox-esr +_GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/\..*//} .endif .elif ${gecko_ARGS:Mseamonkey} @@ -56,8 +56,8 @@ _GECKO_VERSIONS= 49 _GECKO_TYPE= seamonkey .if exists(${LOCALBASE}/bin/seamonkey) -_GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/seamonkey --version 2>/dev/null -_GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:M[0-9]*:C/[0-9].([0-9][0-9]).*/\1/g} +_GECKO_INSTALLED_VER!= ${PKG_QUERY} %v seamonkey +_GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/[0-9]*\.//:C/\..*//} .endif # Dependence lines for different Seamonkey versions @@ -70,8 +70,8 @@ _GECKO_VERSIONS= 52 _GECKO_TYPE= thunderbird .if exists(${LOCALBASE}/bin/thunderbird) -_GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/thunderbird --version 2>/dev/null -_GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:M[0-9][0-9]*:C/([0-9][0-9]).*/\1/g} +_GECKO_INSTALLED_VER!= ${PKG_QUERY} %v thunderbird +_GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/\..*//} .endif # Dependence lines for different Thunderbird versions From owner-svn-ports-head@freebsd.org Sun Jun 17 17:23:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 253B51002E18; Sun, 17 Jun 2018 17:23:34 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFFA3766A3; Sun, 17 Jun 2018 17:23:33 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9EE6D1859D; Sun, 17 Jun 2018 17:23:33 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HHNX7S022307; Sun, 17 Jun 2018 17:23:33 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HHNXiG022306; Sun, 17 Jun 2018 17:23:33 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201806171723.w5HHNXiG022306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Sun, 17 Jun 2018 17:23:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472613 - in head/math/z3: . files X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: in head/math/z3: . files X-SVN-Commit-Revision: 472613 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 17:23:34 -0000 Author: arrowd Date: Sun Jun 17 17:23:32 2018 New Revision: 472613 URL: https://svnweb.freebsd.org/changeset/ports/472613 Log: math/z3: Update to 4.7.1. Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15864 Deleted: head/math/z3/files/patch-src_util_lp_lp__solver__instances.cpp Modified: head/math/z3/Makefile head/math/z3/distinfo Modified: head/math/z3/Makefile ============================================================================== --- head/math/z3/Makefile Sun Jun 17 16:50:30 2018 (r472612) +++ head/math/z3/Makefile Sun Jun 17 17:23:32 2018 (r472613) @@ -2,10 +2,10 @@ PORTNAME= z3 DISTVERSIONPREFIX= ${PORTNAME}- -DISTVERSION= 4.6.0 +DISTVERSION= 4.7.1 CATEGORIES= math -MAINTAINER= 6yearold@gmail.com +MAINTAINER= arrowd@FreeBSD.org COMMENT= Z3 Theorem Prover LICENSE= MIT Modified: head/math/z3/distinfo ============================================================================== --- head/math/z3/distinfo Sun Jun 17 16:50:30 2018 (r472612) +++ head/math/z3/distinfo Sun Jun 17 17:23:32 2018 (r472613) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516713093 -SHA256 (Z3Prover-z3-z3-4.6.0_GH0.tar.gz) = 511da31d1f985cf0c79b2de05bda4e057371ba519769d1546ff71e1304fe53c9 -SIZE (Z3Prover-z3-z3-4.6.0_GH0.tar.gz) = 3987830 +TIMESTAMP = 1529241358 +SHA256 (Z3Prover-z3-z3-4.7.1_GH0.tar.gz) = a353e3da00cdaffd258052cc1406efc854606855222ab4bfd5679c58af5c11c7 +SIZE (Z3Prover-z3-z3-4.7.1_GH0.tar.gz) = 4015416 From owner-svn-ports-head@freebsd.org Sun Jun 17 17:35:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 986891003728; Sun, 17 Jun 2018 17:35:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A4837740B; Sun, 17 Jun 2018 17:35:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C70C1874E; Sun, 17 Jun 2018 17:35:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HHZrsT027815; Sun, 17 Jun 2018 17:35:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HHZqPL027813; Sun, 17 Jun 2018 17:35:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171735.w5HHZqPL027813@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 17:35:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472614 - head/devel/py-IBMQuantumExperience X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-IBMQuantumExperience X-SVN-Commit-Revision: 472614 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 17:35:53 -0000 Author: yuri Date: Sun Jun 17 17:35:52 2018 New Revision: 472614 URL: https://svnweb.freebsd.org/changeset/ports/472614 Log: devel/py-IBMQuantumExperience: Update 1.9.3 -> 1.9.4 Reported by: portscout Modified: head/devel/py-IBMQuantumExperience/Makefile head/devel/py-IBMQuantumExperience/distinfo Modified: head/devel/py-IBMQuantumExperience/Makefile ============================================================================== --- head/devel/py-IBMQuantumExperience/Makefile Sun Jun 17 17:23:32 2018 (r472613) +++ head/devel/py-IBMQuantumExperience/Makefile Sun Jun 17 17:35:52 2018 (r472614) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= IBMQuantumExperience -DISTVERSION= 1.9.3 +DISTVERSION= 1.9.4 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-IBMQuantumExperience/distinfo ============================================================================== --- head/devel/py-IBMQuantumExperience/distinfo Sun Jun 17 17:23:32 2018 (r472613) +++ head/devel/py-IBMQuantumExperience/distinfo Sun Jun 17 17:35:52 2018 (r472614) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528962744 -SHA256 (IBMQuantumExperience-1.9.3.tar.gz) = 8de0f7b24430ef9c12640d15a6eee36ab9b270e3b1fc13bb5f6079bfe5f7eadb -SIZE (IBMQuantumExperience-1.9.3.tar.gz) = 13082 +TIMESTAMP = 1529256837 +SHA256 (IBMQuantumExperience-1.9.4.tar.gz) = 44f8da2d8184ead892efdde08387193bbe47305e51c138f4f308c4091a7e2132 +SIZE (IBMQuantumExperience-1.9.4.tar.gz) = 13104 From owner-svn-ports-head@freebsd.org Sun Jun 17 17:41:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0489B10039B8; Sun, 17 Jun 2018 17:41:00 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ABBC1778A8; Sun, 17 Jun 2018 17:40:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8CF591885D; Sun, 17 Jun 2018 17:40:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HHexfu028287; Sun, 17 Jun 2018 17:40:59 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HHexpd028285; Sun, 17 Jun 2018 17:40:59 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171740.w5HHexpd028285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 17:40:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472615 - head/math/alglib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/alglib X-SVN-Commit-Revision: 472615 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 17:41:00 -0000 Author: yuri Date: Sun Jun 17 17:40:58 2018 New Revision: 472615 URL: https://svnweb.freebsd.org/changeset/ports/472615 Log: math/alglib: Update 3.13.0 -> 3.14.0 Reported by: portscout Modified: head/math/alglib/Makefile head/math/alglib/distinfo Modified: head/math/alglib/Makefile ============================================================================== --- head/math/alglib/Makefile Sun Jun 17 17:35:52 2018 (r472614) +++ head/math/alglib/Makefile Sun Jun 17 17:40:58 2018 (r472615) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= alglib -DISTVERSION= 3.13.0 +DISTVERSION= 3.14.0 CATEGORIES= math science MASTER_SITES= http://www.alglib.net/translator/re/ EXTRACT_SUFX= .cpp.gpl.zip Modified: head/math/alglib/distinfo ============================================================================== --- head/math/alglib/distinfo Sun Jun 17 17:35:52 2018 (r472614) +++ head/math/alglib/distinfo Sun Jun 17 17:40:58 2018 (r472615) @@ -1,3 +1,3 @@ -TIMESTAMP = 1515624681 -SHA256 (alglib-3.13.0.cpp.gpl.zip) = 9ae3cc920e978f2691a8291ddd8d2c31d9a029a5af09b356d7c2241dd69e7ca5 -SIZE (alglib-3.13.0.cpp.gpl.zip) = 2468838 +TIMESTAMP = 1529256979 +SHA256 (alglib-3.14.0.cpp.gpl.zip) = b217ebc6bfcbc4d58c87542fbcb6a27637f7a853a3a7851d9a2e0539e55c1a7e +SIZE (alglib-3.14.0.cpp.gpl.zip) = 2548344 From owner-svn-ports-head@freebsd.org Sun Jun 17 17:45:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A387B1003C88; Sun, 17 Jun 2018 17:45:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 525DE77C65; Sun, 17 Jun 2018 17:45:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 33761188E6; Sun, 17 Jun 2018 17:45:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HHj2XY033044; Sun, 17 Jun 2018 17:45:02 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HHj1iF033042; Sun, 17 Jun 2018 17:45:01 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171745.w5HHj1iF033042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 17:45:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472616 - head/databases/py-python-arango X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/databases/py-python-arango X-SVN-Commit-Revision: 472616 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 17:45:02 -0000 Author: yuri Date: Sun Jun 17 17:45:01 2018 New Revision: 472616 URL: https://svnweb.freebsd.org/changeset/ports/472616 Log: atabases/py-python-arango: Update 4.2.0 -> 4.2.1 Reported by: portscout Modified: head/databases/py-python-arango/Makefile head/databases/py-python-arango/distinfo Modified: head/databases/py-python-arango/Makefile ============================================================================== --- head/databases/py-python-arango/Makefile Sun Jun 17 17:40:58 2018 (r472615) +++ head/databases/py-python-arango/Makefile Sun Jun 17 17:45:01 2018 (r472616) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= python-arango -DISTVERSION= 4.2.0 +DISTVERSION= 4.2.1 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-python-arango/distinfo ============================================================================== --- head/databases/py-python-arango/distinfo Sun Jun 17 17:40:58 2018 (r472615) +++ head/databases/py-python-arango/distinfo Sun Jun 17 17:45:01 2018 (r472616) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528302164 -SHA256 (python-arango-4.2.0.tar.gz) = a5c5dd60e5e1ce12575ff25d84ce8741c0467bb4dcb534d4b367a9e43a6e1193 -SIZE (python-arango-4.2.0.tar.gz) = 53909 +TIMESTAMP = 1529257297 +SHA256 (python-arango-4.2.1.tar.gz) = 3f2e98d0fb88ac31af1031ed09cf327609ba0bb110b8d615ef5566fee87e2c38 +SIZE (python-arango-4.2.1.tar.gz) = 53999 From owner-svn-ports-head@freebsd.org Sun Jun 17 17:57:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80F6410040B2; Sun, 17 Jun 2018 17:57:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 31EBB78107; Sun, 17 Jun 2018 17:57:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0AD6418A9E; Sun, 17 Jun 2018 17:57:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HHvjWb038517; Sun, 17 Jun 2018 17:57:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HHvjP4038516; Sun, 17 Jun 2018 17:57:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171757.w5HHvjP4038516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 17:57:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472617 - head/science/triqs X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/triqs X-SVN-Commit-Revision: 472617 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 17:57:46 -0000 Author: yuri Date: Sun Jun 17 17:57:45 2018 New Revision: 472617 URL: https://svnweb.freebsd.org/changeset/ports/472617 Log: science/triqs: Limit portscout to valid versions Modified: head/science/triqs/Makefile Modified: head/science/triqs/Makefile ============================================================================== --- head/science/triqs/Makefile Sun Jun 17 17:45:01 2018 (r472616) +++ head/science/triqs/Makefile Sun Jun 17 17:57:45 2018 (r472617) @@ -24,6 +24,8 @@ LIB_DEPENDS= libcpp2py.so:devel/cpp2py \ libsz.so:science/szip RUN_DEPENDS= ${PYNUMPY} +PORTSCOUT= limit:^[0-9]+\.[0-9].*$$ + USES= cmake:outsource,noninja fortran gettext-runtime python:2.7- # python:2.7- matches that in devel/cpp2py USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tu} From owner-svn-ports-head@freebsd.org Sun Jun 17 18:14:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E45471004C6E; Sun, 17 Jun 2018 18:14:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 932BC78B31; Sun, 17 Jun 2018 18:14:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 759AE18DE4; Sun, 17 Jun 2018 18:14:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HIE2TC048831; Sun, 17 Jun 2018 18:14:02 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIE2qQ048830; Sun, 17 Jun 2018 18:14:02 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806171814.w5HIE2qQ048830@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Sun, 17 Jun 2018 18:14:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472618 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 472618 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:14:03 -0000 Author: mfechner Date: Sun Jun 17 18:14:01 2018 New Revision: 472618 URL: https://svnweb.freebsd.org/changeset/ports/472618 Log: Document vulnerability for libgit2 and py-pygit2. Reviewed by: tz (mentor) Approved by: tz (mentor) Differential Revision: https://reviews.freebsd.org/D15668 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jun 17 17:57:45 2018 (r472617) +++ head/security/vuxml/vuln.xml Sun Jun 17 18:14:01 2018 (r472618) @@ -506,6 +506,33 @@ Notes: + + Libgit2 -- Fixing insufficient validation of submodule names + + + libgit2 + py-pygit2 + 0.27.1 + + + + +

The Git community reports:

+
+

Insufficient validation of submodule names

+
+ +
+ + https://github.com/libgit2/libgit2/releases/tag/v0.27.1 + CVE-2018-11235 + + + 2018-05-29 + 2018-06-05 + +
+ Git -- Fix memory out-of-bounds and remote code execution vulnerabilities (CVE-2018-11233 and CVE-2018-11235) From owner-svn-ports-head@freebsd.org Sun Jun 17 18:15:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B39D01004D23; Sun, 17 Jun 2018 18:15:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 626A678C38; Sun, 17 Jun 2018 18:15:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 449F918DE6; Sun, 17 Jun 2018 18:15:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HIFAEp049005; Sun, 17 Jun 2018 18:15:10 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIFA8d049004; Sun, 17 Jun 2018 18:15:10 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171815.w5HIFA8d049004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 18:15:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472619 - head/textproc/ibus-m17n X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/textproc/ibus-m17n X-SVN-Commit-Revision: 472619 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:15:10 -0000 Author: yuri Date: Sun Jun 17 18:15:09 2018 New Revision: 472619 URL: https://svnweb.freebsd.org/changeset/ports/472619 Log: textproc/ibus-m17n: Limit portscout to valid versions Modified: head/textproc/ibus-m17n/Makefile Modified: head/textproc/ibus-m17n/Makefile ============================================================================== --- head/textproc/ibus-m17n/Makefile Sun Jun 17 18:14:01 2018 (r472618) +++ head/textproc/ibus-m17n/Makefile Sun Jun 17 18:15:09 2018 (r472619) @@ -18,6 +18,8 @@ LIB_DEPENDS= libibus-1.0.so:textproc/ibus \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= ibus-daemon:textproc/ibus +PORTSCOUT= limit:^[0-9]+\.[0-9].*$$ + USES= autoreconf gmake libtool pkgconfig GNU_CONFIGURE= yes USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 18:21:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E2111005133; Sun, 17 Jun 2018 18:21:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3288278EF5; Sun, 17 Jun 2018 18:21:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 13EBE18F44; Sun, 17 Jun 2018 18:21:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HILLM0050218; Sun, 17 Jun 2018 18:21:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HILLWG050217; Sun, 17 Jun 2018 18:21:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171821.w5HILLWG050217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 18:21:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472620 - head/devel/libsimdpp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/libsimdpp X-SVN-Commit-Revision: 472620 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:21:22 -0000 Author: yuri Date: Sun Jun 17 18:21:21 2018 New Revision: 472620 URL: https://svnweb.freebsd.org/changeset/ports/472620 Log: devel/libsimdpp: Limit portscout to valid versions Modified: head/devel/libsimdpp/Makefile Modified: head/devel/libsimdpp/Makefile ============================================================================== --- head/devel/libsimdpp/Makefile Sun Jun 17 18:15:09 2018 (r472619) +++ head/devel/libsimdpp/Makefile Sun Jun 17 18:21:21 2018 (r472620) @@ -11,6 +11,8 @@ COMMENT= Header-only zero-overhead C++ wrapper of SIMD LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt +PORTSCOUT= limit:^cxx98.* + USES= cmake:outsource USE_GITHUB= yes GH_ACCOUNT= p12tic From owner-svn-ports-head@freebsd.org Sun Jun 17 18:24:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E1811005305; Sun, 17 Jun 2018 18:24:36 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A8934791CE; Sun, 17 Jun 2018 18:24:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 843B418FA6; Sun, 17 Jun 2018 18:24:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HIOZQf054042; Sun, 17 Jun 2018 18:24:35 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIOZEj054041; Sun, 17 Jun 2018 18:24:35 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171824.w5HIOZEj054041@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 18:24:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472621 - head/mail/mailpile X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/mail/mailpile X-SVN-Commit-Revision: 472621 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:24:36 -0000 Author: yuri Date: Sun Jun 17 18:24:35 2018 New Revision: 472621 URL: https://svnweb.freebsd.org/changeset/ports/472621 Log: mail/mailpile: Limit portscout to valid versions Also order the USExx section. Modified: head/mail/mailpile/Makefile Modified: head/mail/mailpile/Makefile ============================================================================== --- head/mail/mailpile/Makefile Sun Jun 17 18:21:21 2018 (r472620) +++ head/mail/mailpile/Makefile Sun Jun 17 18:24:35 2018 (r472621) @@ -18,11 +18,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-l ${PYTHON_PKGNAMEPREFIX}dns>=0:dns/py-dns@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}spambayes>=0:mail/py-spambayes@${FLAVOR} -USE_GITHUB= yes -GH_ACCOUNT= mailpile -GH_PROJECT= Mailpile +PORTSCOUT= limit:^[1-9] USES= gettext python:2.7 shebangfix +USE_GITHUB= yes +GH_PROJECT= Mailpile python_OLD_CMD= /usr/bin/python2 SHEBANG_FILES= mailpile/contrib/gui/gui-o-matic.py \ mailpile/contrib/gui/gui-test.sh \ From owner-svn-ports-head@freebsd.org Sun Jun 17 18:32:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 043AF10055BB; Sun, 17 Jun 2018 18:32:15 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE82B7956C; Sun, 17 Jun 2018 18:32:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90EA71912B; Sun, 17 Jun 2018 18:32:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HIWEQT058520; Sun, 17 Jun 2018 18:32:14 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIWE9c058519; Sun, 17 Jun 2018 18:32:14 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171832.w5HIWE9c058519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 18:32:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472622 - head/audio/qmidiarp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/qmidiarp X-SVN-Commit-Revision: 472622 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:32:15 -0000 Author: yuri Date: Sun Jun 17 18:32:14 2018 New Revision: 472622 URL: https://svnweb.freebsd.org/changeset/ports/472622 Log: audio/qmidiarp: Limit portscout to valid versions Modified: head/audio/qmidiarp/Makefile Modified: head/audio/qmidiarp/Makefile ============================================================================== --- head/audio/qmidiarp/Makefile Sun Jun 17 18:24:35 2018 (r472621) +++ head/audio/qmidiarp/Makefile Sun Jun 17 18:32:14 2018 (r472622) @@ -19,6 +19,8 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \ liblo.so:audio/liblo \ libjack.so:audio/jack +PORTSCOUT= limit:^qmidiarp + USES= autoreconf compiler:c++11-lib desktop-file-utils \ gmake localbase libtool pkgconfig USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 18:35:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C10310056FF; Sun, 17 Jun 2018 18:35:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 19E9B7975C; Sun, 17 Jun 2018 18:35:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EED4D19160; Sun, 17 Jun 2018 18:35:03 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HIZ3b1059460; Sun, 17 Jun 2018 18:35:03 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIZ33s059459; Sun, 17 Jun 2018 18:35:03 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171835.w5HIZ33s059459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 18:35:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472623 - head/devel/libsimdpp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/libsimdpp X-SVN-Commit-Revision: 472623 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:35:04 -0000 Author: yuri Date: Sun Jun 17 18:35:03 2018 New Revision: 472623 URL: https://svnweb.freebsd.org/changeset/ports/472623 Log: devel/libsimdpp: Correct PORTSCOUT Modified: head/devel/libsimdpp/Makefile Modified: head/devel/libsimdpp/Makefile ============================================================================== --- head/devel/libsimdpp/Makefile Sun Jun 17 18:32:14 2018 (r472622) +++ head/devel/libsimdpp/Makefile Sun Jun 17 18:35:03 2018 (r472623) @@ -11,7 +11,7 @@ COMMENT= Header-only zero-overhead C++ wrapper of SIMD LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt -PORTSCOUT= limit:^cxx98.* +PORTSCOUT= skipv:^cxx98.* USES= cmake:outsource USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 18:41:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 200DB1005975; Sun, 17 Jun 2018 18:41:36 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C182879929; Sun, 17 Jun 2018 18:41:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A46FA191B0; Sun, 17 Jun 2018 18:41:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HIfZds060775; Sun, 17 Jun 2018 18:41:35 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIfZ3N060774; Sun, 17 Jun 2018 18:41:35 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171841.w5HIfZ3N060774@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 18:41:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472624 - head/www/davix X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/davix X-SVN-Commit-Revision: 472624 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:41:36 -0000 Author: yuri Date: Sun Jun 17 18:41:35 2018 New Revision: 472624 URL: https://svnweb.freebsd.org/changeset/ports/472624 Log: www/davix: Limit portscout to valid versions Modified: head/www/davix/Makefile Modified: head/www/davix/Makefile ============================================================================== --- head/www/davix/Makefile Sun Jun 17 18:35:03 2018 (r472623) +++ head/www/davix/Makefile Sun Jun 17 18:41:35 2018 (r472624) @@ -13,6 +13,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid +PORTSCOUT= skipv:^.*-el + USES= cmake localbase ssl USE_GNOME= libxml2 USE_LDCONFIG= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 18:46:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 231FB1005B24; Sun, 17 Jun 2018 18:46:09 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C985679C91; Sun, 17 Jun 2018 18:46: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAE67192F4; Sun, 17 Jun 2018 18:46: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 w5HIk8i9064963; Sun, 17 Jun 2018 18:46:08 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIk8bV064962; Sun, 17 Jun 2018 18:46:08 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806171846.w5HIk8bV064962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 17 Jun 2018 18:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472625 - head/misc/mbuffer/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/misc/mbuffer/files X-SVN-Commit-Revision: 472625 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:46:09 -0000 Author: tobik Date: Sun Jun 17 18:46:08 2018 New Revision: 472625 URL: https://svnweb.freebsd.org/changeset/ports/472625 Log: Unbreak misc/mbuffer when objdump is missing (for example on aarch64) The configure script uses objdump to check for libc symbol names for open/read/write/fstat. We could switch it to nm or readelf but as the names are unlikely to ever going to differ from their visible names on FreeBSD hardcode them instead and skip the check. Added: head/misc/mbuffer/files/ head/misc/mbuffer/files/patch-configure (contents, props changed) Added: head/misc/mbuffer/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/mbuffer/files/patch-configure Sun Jun 17 18:46:08 2018 (r472625) @@ -0,0 +1,169 @@ +Remove objdump and open/read/write/fstat symbol names check. objdump +is not available on all architectures and the symbol names are +unlikely to ever change from their visible names on FreeBSD. + +--- configure.orig 2018-05-05 15:01:58 UTC ++++ configure +@@ -628,7 +628,6 @@ ALLOCA + EGREP + GREP + CPP +-OBJDUMP + AWK + TAR + MT +@@ -4242,51 +4241,7 @@ $as_echo "no" >&6; } + fi + + +-for ac_prog in objdump gobjdump +-do +- # Extract the first word of "$ac_prog", so it can be a program name with args. +-set dummy $ac_prog; ac_word=$2 +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +-$as_echo_n "checking for $ac_word... " >&6; } +-if ${ac_cv_path_OBJDUMP+:} false; then : +- $as_echo_n "(cached) " >&6 +-else +- case $OBJDUMP in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_OBJDUMP="$OBJDUMP" # Let the user override the test with a path. +- ;; +- *) +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then +- ac_cv_path_OBJDUMP="$as_dir/$ac_word$ac_exec_ext" +- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +- done +-IFS=$as_save_IFS + +- ;; +-esac +-fi +-OBJDUMP=$ac_cv_path_OBJDUMP +-if test -n "$OBJDUMP"; then +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +-$as_echo "$OBJDUMP" >&6; } +-else +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +-$as_echo "no" >&6; } +-fi +- +- +- test -n "$OBJDUMP" && break +-done +- + { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 + $as_echo_n "checking return type of signal handlers... " >&6; } + if ${ac_cv_type_signal+:} false; then : +@@ -4931,11 +4886,7 @@ fi + + + +-if test -z "$OBJDUMP"; then +- as_fn_error $? "unable to find objdump" "$LINENO" 5 +-fi + +- + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable assertions" >&5 + $as_echo_n "checking whether to enable assertions... " >&6; } + # Check whether --enable-assert was given. +@@ -6129,86 +6080,12 @@ fi + fi + + +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking linking open() and write() to detect libc names" >&5 +-$as_echo_n "checking linking open() and write() to detect libc names... " >&6; } +-ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +- +-cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +- +- +- #define _LARGEFILE64_SOURCE +- #include +- #include +- #include +- int main(int argc, char **argv) { +- unsigned x; +- struct stat st; +- open(*argv,O_RDONLY); +- fstat(0,&st); +- read(0,&x,sizeof(x)); +- write(1,"null",4); +- } +- +-_ACEOF +-if ac_fn_c_try_link "$LINENO"; then : +- +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: OK" >&5 +-$as_echo "OK" >&6; } +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking name of open() in C library" >&5 +-$as_echo_n "checking name of open() in C library... " >&6; } +- libc_open=`$OBJDUMP -T conftest | $AWK '/\*UND\*/ && $NF ~ /^open/ { print $NF }'` +- + cat >>confdefs.h <<_ACEOF +-#define LIBC_OPEN $libc_open ++#define LIBC_OPEN open ++#define LIBC_READ read ++#define LIBC_WRITE write ++#define LIBC_FSTAT fstat + _ACEOF +- +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_open" >&5 +-$as_echo "$libc_open" >&6; } +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking name of read() in C library" >&5 +-$as_echo_n "checking name of read() in C library... " >&6; } +- libc_read=`$OBJDUMP -T conftest | $AWK '/\*UND\*/ && $NF ~ /^read/ { print $NF }'` +- +-cat >>confdefs.h <<_ACEOF +-#define LIBC_READ $libc_read +-_ACEOF +- +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_read" >&5 +-$as_echo "$libc_read" >&6; } +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking name of write() in C library" >&5 +-$as_echo_n "checking name of write() in C library... " >&6; } +- libc_write=`$OBJDUMP -T conftest | $AWK '/\*UND\*/ && $NF ~ /^write/ { print $NF }'` +- +-cat >>confdefs.h <<_ACEOF +-#define LIBC_WRITE $libc_write +-_ACEOF +- +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_write" >&5 +-$as_echo "$libc_write" >&6; } +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking name of fstat() in C library" >&5 +-$as_echo_n "checking name of fstat() in C library... " >&6; } +- libc_fstat=`$OBJDUMP -T conftest | $AWK '/\*UND\*/ && $NF ~ /^fstat/ { print $NF }'` +- +-cat >>confdefs.h <<_ACEOF +-#define LIBC_FSTAT $libc_fstat +-_ACEOF +- +- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_fstat" >&5 +-$as_echo "$libc_fstat" >&6; } +- +-else +- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +-as_fn_error $? "failed to link open/write test +-See \`config.log' for more details" "$LINENO" 5; } +- +-fi +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext conftest.$ac_ext + + + From owner-svn-ports-head@freebsd.org Sun Jun 17 18:52:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EEFD1005DBF; Sun, 17 Jun 2018 18:52:55 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 063607A058; Sun, 17 Jun 2018 18:52:55 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7FCD19487; Sun, 17 Jun 2018 18:52: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 w5HIqsgL069708; Sun, 17 Jun 2018 18:52:54 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HIqsU8069707; Sun, 17 Jun 2018 18:52:54 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806171852.w5HIqsU8069707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 17 Jun 2018 18:52:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472626 - head/audio/sidplay2 X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/audio/sidplay2 X-SVN-Commit-Revision: 472626 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 18:52:55 -0000 Author: tobik Date: Sun Jun 17 18:52:54 2018 New Revision: 472626 URL: https://svnweb.freebsd.org/changeset/ports/472626 Log: audio/sidplay2: Unbreak on FreeBSD 12.0 - While here also add license information checking for working sidplay2 library and headers... /usr/local/lib, /usr/local/include configure: error: sidplay2 build test failed with found library and header files. Please check your installation! In file included from conftest.cc:27: ... /usr/include/stdlib.h:97:17: error: declaration of 'exit' has a different language linkage _Noreturn void exit(int); ^ conftest.cc:11:6: note: previous declaration is here void exit (int); http://beefy12.nyi.freebsd.org/data/head-amd64-default/p472224_s334983/logs/errors/sidplay2-2.0.9_4.log Modified: head/audio/sidplay2/Makefile Modified: head/audio/sidplay2/Makefile ============================================================================== --- head/audio/sidplay2/Makefile Sun Jun 17 18:46:08 2018 (r472625) +++ head/audio/sidplay2/Makefile Sun Jun 17 18:52:54 2018 (r472626) @@ -11,10 +11,14 @@ DISTNAME= sidplay-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Commodore SID music player using libsidplay2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libsidplay2.so:audio/libsidplay2 GNU_CONFIGURE= yes USES= pkgconfig +USE_CXXSTD= c++98 PLIST_FILES= bin/sidplay2 man/man1/sidplay2.1.gz From owner-svn-ports-head@freebsd.org Sun Jun 17 19:06:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 704C010062DD; Sun, 17 Jun 2018 19:06:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 21C7E7A579; Sun, 17 Jun 2018 19:06: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0440219650; Sun, 17 Jun 2018 19:06:52 +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 w5HJ6ph9074953; Sun, 17 Jun 2018 19:06:51 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HJ6ppI074952; Sun, 17 Jun 2018 19:06:51 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806171906.w5HJ6ppI074952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 17 Jun 2018 19:06:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472627 - in head/databases/dbtool: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/databases/dbtool: . files X-SVN-Commit-Revision: 472627 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 19:06:52 -0000 Author: tobik Date: Sun Jun 17 19:06:51 2018 New Revision: 472627 URL: https://svnweb.freebsd.org/changeset/ports/472627 Log: databases/dbtool: Unbreak with Clang 6 engine.cc:539:46: error: non-constant-expression cannot be narrowed from type 'std::__1::basic_string, std::__1::allocator >::size_type' (aka 'unsigned long') to 'int' in initializer list [-Wc++11-narrowing] datum key = {(char *)config.key.c_str(), config.key.length()}; ^~~~~~~~~~~~~~~~~~~ engine.cc:539:46: note: insert an explicit cast to silence this issue datum key = {(char *)config.key.c_str(), config.key.length()}; ^~~~~~~~~~~~~~~~~~~ static_cast( ) http://beefy12.nyi.freebsd.org/data/head-amd64-default/p472224_s334983/logs/dbtool-1.9.1.log Added: head/databases/dbtool/files/ head/databases/dbtool/files/patch-engine.cc (contents, props changed) Modified: head/databases/dbtool/Makefile Modified: head/databases/dbtool/Makefile ============================================================================== --- head/databases/dbtool/Makefile Sun Jun 17 18:52:54 2018 (r472626) +++ head/databases/dbtool/Makefile Sun Jun 17 19:06:51 2018 (r472627) @@ -14,13 +14,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpcre.so:devel/pcre -USES= gmake shebangfix +USES= gmake localbase shebangfix SHEBANG_FILES= samples/account-db/accdb bash_OLD_CMD= /bin/sh GNU_CONFIGURE= yes - -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib PORTEXAMPLES= * PLIST_FILES= bin/dbtool man/man1/dbtool.1.gz Added: head/databases/dbtool/files/patch-engine.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/dbtool/files/patch-engine.cc Sun Jun 17 19:06:51 2018 (r472627) @@ -0,0 +1,64 @@ +engine.cc:539:46: error: non-constant-expression cannot be narrowed from type + 'std::__1::basic_string, + std::__1::allocator >::size_type' (aka 'unsigned long') to 'int' in + initializer list [-Wc++11-narrowing] + datum key = {(char *)config.key.c_str(), config.key.length()}; + ^~~~~~~~~~~~~~~~~~~ +engine.cc:539:46: note: insert an explicit cast to silence this issue + datum key = {(char *)config.key.c_str(), config.key.length()}; + ^~~~~~~~~~~~~~~~~~~ + static_cast( ) + +--- engine.cc.orig 2018-06-17 15:07:26 UTC ++++ engine.cc +@@ -324,8 +324,8 @@ void Engine::from_input() { + Dbt d_key((char *)key.c_str(), key.length()); + Dbt d_value((char *)value.c_str(), value.length()); + #else +- datum d_key = {(char *)key.c_str(), key.length()}; +- datum d_value = {(char *)value.c_str(), value.length()}; ++ datum d_key = {(char *)key.c_str(), static_cast(key.length())}; ++ datum d_value = {(char *)value.c_str(), static_cast(value.length())}; + #endif + if(config.force == 1) { + #ifdef HAVE_BERKELEY +@@ -405,8 +405,8 @@ void Engine::insert() { + Dbt value(v, strlen(v)); + #else + int ret; +- datum key = {(char *)config.key.c_str(), config.key.length()}; +- datum value = {(char *)__value.c_str(), __value.length()}; ++ datum key = {(char *)config.key.c_str(), static_cast(config.key.length())}; ++ datum value = {(char *)__value.c_str(), static_cast(__value.length())}; + #endif + + if(config.force == 1) { +@@ -465,8 +465,8 @@ void Engine::update() { + Dbt value(v, strlen(v)); + #else + int ret; +- datum key = {(char *)config.key.c_str(), config.key.length()}; +- datum value = {(char *)__value.c_str(), __value.length()}; ++ datum key = {(char *)config.key.c_str(), static_cast(config.key.length())}; ++ datum value = {(char *)__value.c_str(), static_cast(__value.length())}; + #endif + + if(config.force == 1) { +@@ -536,7 +536,7 @@ void Engine::remove() { + } + db->close(0); + #else +- datum key = {(char *)config.key.c_str(), config.key.length()}; ++ datum key = {(char *)config.key.c_str(), static_cast(config.key.length())}; + ret = gdbm_delete(db, key); + gdbm_close(db); + #endif +@@ -579,7 +579,7 @@ void Engine::select() { + db->close(0); + #else + datum content; +- datum key = {(char *)config.key.c_str(), config.key.length()}; ++ datum key = {(char *)config.key.c_str(), static_cast(config.key.length())}; + content = gdbm_fetch(db, key); + string V(content.dptr, content.dsize); + if(config.with == 1) From owner-svn-ports-head@freebsd.org Sun Jun 17 19:10:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8F541006377; Sun, 17 Jun 2018 19:10:27 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A01A7A68A; Sun, 17 Jun 2018 19:10: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6CD5019655; Sun, 17 Jun 2018 19:10: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 w5HJARSG075219; Sun, 17 Jun 2018 19:10:27 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HJARZb075218; Sun, 17 Jun 2018 19:10:27 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806171910.w5HJARZb075218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 17 Jun 2018 19:10:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472628 - head/japanese/FreeWnn-server X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/japanese/FreeWnn-server X-SVN-Commit-Revision: 472628 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 19:10:28 -0000 Author: pi Date: Sun Jun 17 19:10:27 2018 New Revision: 472628 URL: https://svnweb.freebsd.org/changeset/ports/472628 Log: japanese/FreeWnn-server: remove ftp.freewnn.org from MASTER_SITES - FTP site no longer works PR: 228243 Submitted by: Yasuhiro KIMURA Approved by: hrs (maintainer timeout) Modified: head/japanese/FreeWnn-server/Makefile Modified: head/japanese/FreeWnn-server/Makefile ============================================================================== --- head/japanese/FreeWnn-server/Makefile Sun Jun 17 19:06:51 2018 (r472627) +++ head/japanese/FreeWnn-server/Makefile Sun Jun 17 19:10:27 2018 (r472628) @@ -5,8 +5,7 @@ PORTNAME= FreeWnn PORTVERSION= 1.1.1.a021 PORTREVISION= 14 CATEGORIES?= japanese -MASTER_SITES= ftp://ftp.freewnn.org/pub/FreeWnn/alpha/ \ - OSDN/freewnn/17724 +MASTER_SITES= OSDN/freewnn/17724 PKGNAMESUFFIX= -server DISTNAME= ${PORTNAME}-1.1.1-a021 From owner-svn-ports-head@freebsd.org Sun Jun 17 19:15:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCA8810066BD; Sun, 17 Jun 2018 19:15:56 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 701017ABC9; Sun, 17 Jun 2018 19:15:56 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 37C5F197EC; Sun, 17 Jun 2018 19:15:56 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HJFuTn080454; Sun, 17 Jun 2018 19:15:56 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HJFtdQ080452; Sun, 17 Jun 2018 19:15:55 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806171915.w5HJFtdQ080452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 19:15:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472629 - head/science/rdkit X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/rdkit X-SVN-Commit-Revision: 472629 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 19:15:57 -0000 Author: yuri Date: Sun Jun 17 19:15:55 2018 New Revision: 472629 URL: https://svnweb.freebsd.org/changeset/ports/472629 Log: science/rdkit: Update 2018_03_1 -> 2018_03_2 Reported by: portscout Modified: head/science/rdkit/Makefile head/science/rdkit/distinfo Modified: head/science/rdkit/Makefile ============================================================================== --- head/science/rdkit/Makefile Sun Jun 17 19:10:27 2018 (r472628) +++ head/science/rdkit/Makefile Sun Jun 17 19:15:55 2018 (r472629) @@ -2,9 +2,12 @@ PORTNAME= rdkit DISTVERSIONPREFIX= Release_ -DISTVERSION= 2018_03_1 +DISTVERSION= 2018_03_2 CATEGORIES= science +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES= fe443fcb429e69ef13219a7b5c6dd53544042cbf.patch:-p1 # fix the SONAMEs regression + MAINTAINER= yuri@FreeBSD.org COMMENT= Collection of cheminformatics and machine-learning software @@ -17,7 +20,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= bison:build cmake:outsource eigen:3 python USE_GITHUB= yes -GH_TUPLE= schrodinger:maeparser:8336829:maeparser/External/CoordGen/maeparser \ +GH_TUPLE= schrodinger:maeparser:1.0.0:maeparser/External/CoordGen/maeparser \ schrodinger:coordgenlibs:ede3191:coordgenlibs/External/CoordGen/coordgenlibs USE_LDCONFIG= yes Modified: head/science/rdkit/distinfo ============================================================================== --- head/science/rdkit/distinfo Sun Jun 17 19:10:27 2018 (r472628) +++ head/science/rdkit/distinfo Sun Jun 17 19:15:55 2018 (r472629) @@ -1,7 +1,9 @@ -TIMESTAMP = 1524726444 -SHA256 (rdkit-rdkit-Release_2018_03_1_GH0.tar.gz) = 9edac0f57c963947b59dfe6f5a84cf3bd2d93ca7111d4d3cf883c9c61756905d -SIZE (rdkit-rdkit-Release_2018_03_1_GH0.tar.gz) = 30290905 -SHA256 (schrodinger-maeparser-8336829_GH0.tar.gz) = b075902313b95e17057199591b90c801c922d63669e8900dea95bef74d41e600 -SIZE (schrodinger-maeparser-8336829_GH0.tar.gz) = 24974 +TIMESTAMP = 1529260616 +SHA256 (rdkit-rdkit-Release_2018_03_2_GH0.tar.gz) = 29eeba93e723f0f9d61e31cf0f89ec18ba942a7f9e416dbc1a92122fce08cbed +SIZE (rdkit-rdkit-Release_2018_03_2_GH0.tar.gz) = 30294348 +SHA256 (schrodinger-maeparser-1.0.0_GH0.tar.gz) = f21e49d25fda5fb2ba4d698f104aa3fbfdd131d92f0807f3e617c15ebfc314aa +SIZE (schrodinger-maeparser-1.0.0_GH0.tar.gz) = 26292 SHA256 (schrodinger-coordgenlibs-ede3191_GH0.tar.gz) = 85b1ab66647a523a87bee584533fa81315ea82fde42542aa59e1e08bdf734471 SIZE (schrodinger-coordgenlibs-ede3191_GH0.tar.gz) = 3721485 +SHA256 (fe443fcb429e69ef13219a7b5c6dd53544042cbf.patch) = dbd0592e016cc0cf96b64028cffc5a13c99f82d3272fe0a7175149e2bca1f75c +SIZE (fe443fcb429e69ef13219a7b5c6dd53544042cbf.patch) = 1334 From owner-svn-ports-head@freebsd.org Sun Jun 17 19:24:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEB201006DD6; Sun, 17 Jun 2018 19:24:49 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 80FC07B190; Sun, 17 Jun 2018 19:24:49 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59A7F19981; Sun, 17 Jun 2018 19:24:49 +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 w5HJOnBj085631; Sun, 17 Jun 2018 19:24:49 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HJOn9E085630; Sun, 17 Jun 2018 19:24:49 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806171924.w5HJOn9E085630@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 17 Jun 2018 19:24:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472630 - head/japanese/font-ume X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/japanese/font-ume X-SVN-Commit-Revision: 472630 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 19:24:50 -0000 Author: pi Date: Sun Jun 17 19:24:48 2018 New Revision: 472630 URL: https://svnweb.freebsd.org/changeset/ports/472630 Log: japanese/font-ume: Fix MASTER_SITES PR: 228242 Submitted by: Yasuhiro KIMURA Approved by: hrs (maintainer timeout) Modified: head/japanese/font-ume/Makefile Modified: head/japanese/font-ume/Makefile ============================================================================== --- head/japanese/font-ume/Makefile Sun Jun 17 19:15:55 2018 (r472629) +++ head/japanese/font-ume/Makefile Sun Jun 17 19:24:48 2018 (r472630) @@ -3,7 +3,7 @@ PORTNAME= ume PORTVERSION= 0.0.660 CATEGORIES= japanese x11-fonts -MASTER_SITES= OSDN/${PORTNAME}-font/22212 +MASTER_SITES= OSDN/${PORTNAME}-font/63494 PKGNAMEPREFIX= ja-font- DISTNAME= umefont_${PORTVERSION:E} From owner-svn-ports-head@freebsd.org Sun Jun 17 20:07:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBCF11008067; Sun, 17 Jun 2018 20:07:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 888547C84C; Sun, 17 Jun 2018 20:07:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6B0E11A046; Sun, 17 Jun 2018 20:07:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HK78PF006227; Sun, 17 Jun 2018 20:07:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HK77lf006223; Sun, 17 Jun 2018 20:07:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172007.w5HK77lf006223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 20:07:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472631 - in head/math: . py-permutation X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-permutation X-SVN-Commit-Revision: 472631 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 20:07:09 -0000 Author: yuri Date: Sun Jun 17 20:07:07 2018 New Revision: 472631 URL: https://svnweb.freebsd.org/changeset/ports/472631 Log: New port: math/py-permutation: Permutations of finitely many positive integers Added: head/math/py-permutation/ head/math/py-permutation/Makefile (contents, props changed) head/math/py-permutation/distinfo (contents, props changed) head/math/py-permutation/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Jun 17 19:24:48 2018 (r472630) +++ head/math/Makefile Sun Jun 17 20:07:07 2018 (r472631) @@ -691,6 +691,7 @@ SUBDIR += py-pandas SUBDIR += py-pandas-datareader SUBDIR += py-patsy + SUBDIR += py-permutation SUBDIR += py-petsc4py SUBDIR += py-piranha SUBDIR += py-plastex Added: head/math/py-permutation/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-permutation/Makefile Sun Jun 17 20:07:07 2018 (r472631) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= permutation +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.0-2 +DISTVERSIONSUFFIX= -g42654bb +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Permutations of finitely many positive integers + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= jwodder +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-permutation/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-permutation/distinfo Sun Jun 17 20:07:07 2018 (r472631) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529265718 +SHA256 (jwodder-permutation-v0.1.0-2-g42654bb_GH0.tar.gz) = 20419731be9aaba9efa74842769c88f8db3da3be83779e77cbf0fb42c386b10c +SIZE (jwodder-permutation-v0.1.0-2-g42654bb_GH0.tar.gz) = 12979 Added: head/math/py-permutation/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-permutation/pkg-descr Sun Jun 17 20:07:07 2018 (r472631) @@ -0,0 +1,7 @@ +permutation provides a Permutation class for representing permutations of +finitely many positive integers in Python. Supported operations & properties +include inverses, (group theoretic) order, parity, composition/multiplication, +cycle decomposition, cycle notation, word representation, Lehmer codes, and, +of course, use as a callable on integers. + +WWW: https://github.com/jwodder/permutation From owner-svn-ports-head@freebsd.org Sun Jun 17 20:33:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A5D41008CE9; Sun, 17 Jun 2018 20:33:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 119827D9E6; Sun, 17 Jun 2018 20:33:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E88751A52A; Sun, 17 Jun 2018 20:33:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HKX4Wq021552; Sun, 17 Jun 2018 20:33:04 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HKX4er021551; Sun, 17 Jun 2018 20:33:04 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806172033.w5HKX4er021551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 17 Jun 2018 20:33:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472632 - head/devel/py-pep8-naming X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/py-pep8-naming X-SVN-Commit-Revision: 472632 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 20:33:05 -0000 Author: amdmi3 Date: Sun Jun 17 20:33:04 2018 New Revision: 472632 URL: https://svnweb.freebsd.org/changeset/ports/472632 Log: - Update to 0.7.0 Modified: head/devel/py-pep8-naming/Makefile head/devel/py-pep8-naming/distinfo Modified: head/devel/py-pep8-naming/Makefile ============================================================================== --- head/devel/py-pep8-naming/Makefile Sun Jun 17 20:07:07 2018 (r472631) +++ head/devel/py-pep8-naming/Makefile Sun Jun 17 20:33:04 2018 (r472632) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pep8-naming -PORTVERSION= 0.6.1 +PORTVERSION= 0.7.0 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-pep8-naming/distinfo ============================================================================== --- head/devel/py-pep8-naming/distinfo Sun Jun 17 20:07:07 2018 (r472631) +++ head/devel/py-pep8-naming/distinfo Sun Jun 17 20:33:04 2018 (r472632) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525617267 -SHA256 (pep8-naming-0.6.1.tar.gz) = efe8333af257499fb121194f0f65c8a56ac68b9a003467906fa581ec35299842 -SIZE (pep8-naming-0.6.1.tar.gz) = 9765 +TIMESTAMP = 1529265874 +SHA256 (pep8-naming-0.7.0.tar.gz) = 624258e0dd06ef32a9daf3c36cc925ff7314da7233209c5b01f7e5cdd3c34826 +SIZE (pep8-naming-0.7.0.tar.gz) = 10702 From owner-svn-ports-head@freebsd.org Sun Jun 17 20:36:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 031521008F25; Sun, 17 Jun 2018 20:36:24 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE1FD7DD3A; Sun, 17 Jun 2018 20:36:23 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 906101A536; Sun, 17 Jun 2018 20:36:23 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HKaNHa022028; Sun, 17 Jun 2018 20:36:23 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HKaMlj022023; Sun, 17 Jun 2018 20:36:22 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201806172036.w5HKaMlj022023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Sun, 17 Jun 2018 20:36:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472633 - in head/math: cryptominisat py-cryptominisat py-cryptominisat/files X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: in head/math: cryptominisat py-cryptominisat py-cryptominisat/files X-SVN-Commit-Revision: 472633 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 20:36:24 -0000 Author: arrowd Date: Sun Jun 17 20:36:22 2018 New Revision: 472633 URL: https://svnweb.freebsd.org/changeset/ports/472633 Log: math/cryptominisat and math/py-cryptominisat: Update to 5.6.1. Reviewed by: mat Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15735 Modified: head/math/cryptominisat/Makefile head/math/cryptominisat/distinfo head/math/cryptominisat/pkg-plist head/math/py-cryptominisat/Makefile head/math/py-cryptominisat/distinfo head/math/py-cryptominisat/files/patch-setup.py.in Modified: head/math/cryptominisat/Makefile ============================================================================== --- head/math/cryptominisat/Makefile Sun Jun 17 20:33:04 2018 (r472632) +++ head/math/cryptominisat/Makefile Sun Jun 17 20:36:22 2018 (r472633) @@ -1,28 +1,28 @@ # $FreeBSD$ PORTNAME= cryptominisat -PORTVERSION= 5.0.1 -PORTREVISION= 9 +DISTVERSION= 5.6.1 CATEGORIES= math -MAINTAINER= 6yearold@gmail.com +MAINTAINER= arrowd@FreeBSD.org COMMENT= General-purpose award-winning SAT solver LICENSE= MIT LGPL21 LICENSE_COMB= multi -LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE-SCALMC +LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE.txt +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.txt -BUILD_DEPENDS= xxd:editors/vim-console # for xxd tool +BROKEN_powerpc64= fails to compile: main.cpp: undefined reference to boost::program_options::abstract_variables_map::operator[] + LIB_DEPENDS= libboost_program_options.so:devel/boost-libs -BROKEN_powerpc64= fails to compile: main.cpp: undefined reference to boost::program_options::abstract_variables_map::operator[] +USES= cmake:outsource compiler:c++11-lib +USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= msoos -USES= cmake compiler:c++11-lib -USE_LDCONFIG= yes - -CMAKE_ARGS= -DNOM4RI=1 -DENABLE_PYTHON_INTERFACE=OFF +CMAKE_ON= NOM4RI +CMAKE_OFF= ENABLE_PYTHON_INTERFACE .include Modified: head/math/cryptominisat/distinfo ============================================================================== --- head/math/cryptominisat/distinfo Sun Jun 17 20:33:04 2018 (r472632) +++ head/math/cryptominisat/distinfo Sun Jun 17 20:36:22 2018 (r472633) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473692160 -SHA256 (msoos-cryptominisat-5.0.1_GH0.tar.gz) = 789d53c90ecbd5910f48e4e1bd835e374b268e0b3872a81fd5c6178a30a5e263 -SIZE (msoos-cryptominisat-5.0.1_GH0.tar.gz) = 596710 +TIMESTAMP = 1528624412 +SHA256 (msoos-cryptominisat-5.6.1_GH0.tar.gz) = f86c1cc94abcb9b9f9227fab2ea29f869b0b47f8dc83946e06e7d98b97cac2aa +SIZE (msoos-cryptominisat-5.6.1_GH0.tar.gz) = 675234 Modified: head/math/cryptominisat/pkg-plist ============================================================================== --- head/math/cryptominisat/pkg-plist Sun Jun 17 20:33:04 2018 (r472632) +++ head/math/cryptominisat/pkg-plist Sun Jun 17 20:36:22 2018 (r472633) @@ -2,9 +2,11 @@ bin/cryptominisat5 bin/cryptominisat5_simple include/cryptominisat5/cryptominisat.h include/cryptominisat5/cryptominisat_c.h +include/cryptominisat5/dimacsparser.h include/cryptominisat5/solvertypesmini.h +include/cryptominisat5/streambuffer.h lib/cmake/cryptominisat5/cryptominisat5Config.cmake lib/cmake/cryptominisat5/cryptominisat5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/cryptominisat5/cryptominisat5Targets.cmake lib/libcryptominisat5.so -lib/libcryptominisat5.so.5.0 +lib/libcryptominisat5.so.5.6 Modified: head/math/py-cryptominisat/Makefile ============================================================================== --- head/math/py-cryptominisat/Makefile Sun Jun 17 20:33:04 2018 (r472632) +++ head/math/py-cryptominisat/Makefile Sun Jun 17 20:36:22 2018 (r472633) @@ -1,20 +1,21 @@ # $FreeBSD$ PORTNAME= cryptominisat -PORTVERSION= 5.0.0 -PORTREVISION= 2 +DISTVERSION= 5.6.1 CATEGORIES= math python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= 6yearold@gmail.com +MAINTAINER= arrowd@FreeBSD.org COMMENT= Bindings to CryptoMiniSat (a SAT solver) -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= MIT LGPL21 +LICENSE_COMB= multi +LICENSE_FILE_LGPL21= ${WRKSRC}/../LICENSE.txt +LICENSE_FILE_MIT= ${WRKSRC}/../LICENSE.txt LIB_DEPENDS= libcryptominisat5.so:math/cryptominisat -USES= compiler:c++11-lib python:-2.7 +USES= compiler:c++11-lib python USE_PYTHON= autoplist distutils USE_GITHUB= yes @@ -25,7 +26,12 @@ WRKSRC_SUBDIR= python PYDISTUTILS_BUILDTARGET= build_ext --include-dirs=${LOCALBASE}/include post-patch: - ${REINPLACE_CMD} -e 's|@PROJECT_VERSION@|${PORTVERSION}|' ${WRKSRC}/setup.py.in + ${REINPLACE_CMD} -e 's|@PROJECT_VERSION@|${PORTVERSION}|' \ + -e 's|$${CMAKE_C_COMPILER}|${CC}|' \ + -e 's|$${CMAKE_CXX_COMPILER}|${CXX}|' \ + -e 's|$${PY_C_CONFIG}||' \ + -e 's|$${PY_LD_CONFIG}||' \ + -e 's|$${APPLE}||' ${WRKSRC}/setup.py.in ${CP} ${WRKSRC}/setup.py.in ${WRKSRC}/setup.py post-install: Modified: head/math/py-cryptominisat/distinfo ============================================================================== --- head/math/py-cryptominisat/distinfo Sun Jun 17 20:33:04 2018 (r472632) +++ head/math/py-cryptominisat/distinfo Sun Jun 17 20:36:22 2018 (r472633) @@ -1,3 +1,3 @@ -TIMESTAMP = 1469896511 -SHA256 (msoos-cryptominisat-5.0.0_GH0.tar.gz) = 4c000daf9886e7c55f05b00247688ed0341a19cda13de49e2f35f40e95cc9910 -SIZE (msoos-cryptominisat-5.0.0_GH0.tar.gz) = 596712 +TIMESTAMP = 1528628948 +SHA256 (msoos-cryptominisat-5.6.1_GH0.tar.gz) = f86c1cc94abcb9b9f9227fab2ea29f869b0b47f8dc83946e06e7d98b97cac2aa +SIZE (msoos-cryptominisat-5.6.1_GH0.tar.gz) = 675234 Modified: head/math/py-cryptominisat/files/patch-setup.py.in ============================================================================== --- head/math/py-cryptominisat/files/patch-setup.py.in Sun Jun 17 20:33:04 2018 (r472632) +++ head/math/py-cryptominisat/files/patch-setup.py.in Sun Jun 17 20:36:22 2018 (r472633) @@ -1,38 +1,27 @@ ---- setup.py.in.orig 2016-07-06 12:22:54 UTC +--- setup.py.in.orig 2018-06-05 06:06:54 UTC +++ setup.py.in -@@ -26,9 +26,9 @@ import sys - from distutils.core import setup, Extension - from distutils import sysconfig +@@ -119,12 +119,12 @@ if platform.system() == 'Darwin': --cconf = """${PY_C_CONFIG}""".split(" ") --ldconf = """${PY_LD_CONFIG}""".split(" ") --is_apple = """${APPLE}""" -+cconf = """""".split(" ") -+ldconf = """""".split(" ") -+is_apple = """""" - - def cleanup(dat): - ret = [] -@@ -81,12 +81,12 @@ __version__ = '@PROJECT_VERSION@' - - ext_kwds = dict( + modules = dict( name = "pycryptosat", -- sources = ["${CMAKE_CURRENT_SOURCE_DIR}/pycryptosat.cpp"], -+ sources = ["pycryptosat.cpp"], - define_macros = [], +- sources = ["${CMAKE_CURRENT_SOURCE_DIR}/src/pycryptosat.cpp"], ++ sources = ["src/pycryptosat.cpp"], + define_macros = [('LIBRARY_VERSION', '"' + __LIBRARY_VERSION__ + '"')], - extra_compile_args = cconf + ['-I${PROJECT_SOURCE_DIR}', '-I${PROJECT_BINARY_DIR}/cmsat5-src'], + extra_compile_args = cconf + ['-I/usr/local/include', '-I../cmsat5-src'], - extra_link_args = ldconf, + extra_link_args = extra_link_args, language = "c++", - library_dirs=['.', '${PROJECT_BINARY_DIR}/lib'], + library_dirs=['.', '/usr/local/lib'], + runtime_library_dirs=['${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}'], libraries = ['cryptominisat5'] ) - -@@ -111,5 +111,5 @@ setup( - ext_modules = [Extension(**ext_kwds)], - py_modules = ['pycryptosat'], - description = "bindings to CryptoMiniSat (a SAT solver)", +@@ -150,7 +150,7 @@ setup( + description = "Bindings to CryptoMiniSat {} (a SAT solver)".\ + format(__LIBRARY_VERSION__), + # py_modules = ['pycryptosat'], - long_description = open('${CMAKE_CURRENT_SOURCE_DIR}/README.rst').read(), + long_description = open('README.rst').read(), - ) + cmdclass={ + 'test': TestCommand + } From owner-svn-ports-head@freebsd.org Sun Jun 17 20:43:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBDC110093D8; Sun, 17 Jun 2018 20:43:36 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F3B27E26F; Sun, 17 Jun 2018 20:43:36 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 706161A70E; Sun, 17 Jun 2018 20:43:36 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HKhanm026865; Sun, 17 Jun 2018 20:43:36 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HKhZ6b026861; Sun, 17 Jun 2018 20:43:35 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201806172043.w5HKhZ6b026861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Sun, 17 Jun 2018 20:43:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472634 - in head/audio/musicpc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: in head/audio/musicpc: . files X-SVN-Commit-Revision: 472634 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 20:43:37 -0000 Author: fernape Date: Sun Jun 17 20:43:35 2018 New Revision: 472634 URL: https://svnweb.freebsd.org/changeset/ports/472634 Log: audio/musicpc: update to 0.30 PR: 229034 Reported by: uzsolt@uzsolt.hu (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15852 Modified: head/audio/musicpc/Makefile head/audio/musicpc/distinfo head/audio/musicpc/files/patch-doc_meson.build head/audio/musicpc/files/patch-meson.build Modified: head/audio/musicpc/Makefile ============================================================================== --- head/audio/musicpc/Makefile Sun Jun 17 20:36:22 2018 (r472633) +++ head/audio/musicpc/Makefile Sun Jun 17 20:43:35 2018 (r472634) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= musicpc -DISTVERSION= 0.29 -PORTREVISION= 1 +DISTVERSION= 0.30 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpc/0/ DISTNAME= mpc-${PORTVERSION} Modified: head/audio/musicpc/distinfo ============================================================================== --- head/audio/musicpc/distinfo Sun Jun 17 20:36:22 2018 (r472633) +++ head/audio/musicpc/distinfo Sun Jun 17 20:43:35 2018 (r472634) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519656312 -SHA256 (mpc-0.29.tar.xz) = 02f1daec902cb48f8cdaa6fe21c7219f6231b091dddbe437a3a4fb12cb07b9d3 -SIZE (mpc-0.29.tar.xz) = 41872 +TIMESTAMP = 1529036000 +SHA256 (mpc-0.30.tar.xz) = 65fc5b0a8430efe9acbe6e261127960682764b20ab994676371bdc797d867fce +SIZE (mpc-0.30.tar.xz) = 41968 Modified: head/audio/musicpc/files/patch-doc_meson.build ============================================================================== --- head/audio/musicpc/files/patch-doc_meson.build Sun Jun 17 20:36:22 2018 (r472633) +++ head/audio/musicpc/files/patch-doc_meson.build Sun Jun 17 20:43:35 2018 (r472634) @@ -1,8 +1,8 @@ ---- doc/meson.build.orig 2018-02-11 12:01:23 UTC +--- doc/meson.build.orig 2018-06-15 04:16:53 UTC +++ doc/meson.build -@@ -1,23 +1,27 @@ +@@ -1,16 +1,19 @@ -sphinx = find_program('sphinx-build', required:false) - +- -if sphinx.found() - custom_target( - 'HTML documentation', @@ -14,7 +14,7 @@ - install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()), - ) +use_sphinx = get_option('use_sphinx') -+ + +if use_sphinx == 'false' + use_sphinx = false +elif use_sphinx == 'true' @@ -27,17 +27,16 @@ + sphinx = find_program('sphinx-build', required:false) + use_sphinx = sphinx.found() +endif - ++ +if use_sphinx custom_target( 'Manpage documentation', output: 'man', - input: ['index.rst', 'conf.py'], -- command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@'], -+ command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@/man1'], +@@ -18,6 +21,6 @@ if sphinx.found() + command: [sphinx, '-q', '-b', 'man', '-d', '@OUTDIR@/doctrees', meson.current_source_dir(), '@OUTPUT@/man1'], build_by_default: true, install: true, -- install_dir: join_paths(get_option('datadir'), 'man', 'man1'), -+ install_dir: join_paths(get_option('mandir')), +- install_dir: get_option('datadir'), ++ install_dir: get_option('mandir'), ) endif Modified: head/audio/musicpc/files/patch-meson.build ============================================================================== --- head/audio/musicpc/files/patch-meson.build Sun Jun 17 20:36:22 2018 (r472633) +++ head/audio/musicpc/files/patch-meson.build Sun Jun 17 20:43:35 2018 (r472634) @@ -1,12 +1,12 @@ ---- meson.build.orig 2018-02-26 15:35:16 UTC +--- meson.build.orig 2018-05-03 10:27:29 UTC +++ meson.build @@ -1,4 +1,4 @@ -project('mpc', 'c', +project('musicpc', 'c', - version: '0.29', + version: '0.30', default_options: [ 'c_std=c99', -@@ -113,13 +113,13 @@ executable('mpc', +@@ -101,13 +101,13 @@ executable('mpc', install: true ) From owner-svn-ports-head@freebsd.org Sun Jun 17 20:44:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 951C71009449; Sun, 17 Jun 2018 20:44:14 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 430CC7E371; Sun, 17 Jun 2018 20:44:14 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2431D1A715; Sun, 17 Jun 2018 20:44:14 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HKiEma027048; Sun, 17 Jun 2018 20:44:14 GMT (envelope-from ygy@FreeBSD.org) Received: (from ygy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HKiDGW027045; Sun, 17 Jun 2018 20:44:13 GMT (envelope-from ygy@FreeBSD.org) Message-Id: <201806172044.w5HKiDGW027045@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ygy set sender to ygy@FreeBSD.org using -f From: Guangyuan Yang Date: Sun, 17 Jun 2018 20:44:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472635 - head/devel/py-gitpython X-SVN-Group: ports-head X-SVN-Commit-Author: ygy X-SVN-Commit-Paths: head/devel/py-gitpython X-SVN-Commit-Revision: 472635 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 20:44:14 -0000 Author: ygy (doc committer) Date: Sun Jun 17 20:44:13 2018 New Revision: 472635 URL: https://svnweb.freebsd.org/changeset/ports/472635 Log: - Update devel/py-gitpython to 2.1.10. - Change FLAVOR to use PY_FLAVOR. Reviewed by: mat Approved by: woodsb02 Differential Revision: https://reviews.freebsd.org/D15790 Modified: head/devel/py-gitpython/Makefile head/devel/py-gitpython/distinfo Modified: head/devel/py-gitpython/Makefile ============================================================================== --- head/devel/py-gitpython/Makefile Sun Jun 17 20:43:35 2018 (r472634) +++ head/devel/py-gitpython/Makefile Sun Jun 17 20:44:13 2018 (r472635) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= GitPython -DISTVERSION= 2.1.9 +DISTVERSION= 2.1.10 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,10 +12,10 @@ COMMENT= Python Git Library LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ddt>=1.1.1:devel/py-ddt@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gitdb2>=2.0.0:devel/py-gitdb2@${FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ddt>=1.1.1:devel/py-ddt@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gitdb2>=2.0.0:devel/py-gitdb2@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} NO_ARCH= yes USES= python Modified: head/devel/py-gitpython/distinfo ============================================================================== --- head/devel/py-gitpython/distinfo Sun Jun 17 20:43:35 2018 (r472634) +++ head/devel/py-gitpython/distinfo Sun Jun 17 20:44:13 2018 (r472635) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528576992 -SHA256 (GitPython-2.1.9.tar.gz) = c47cc31af6e88979c57a33962cbc30a7c25508d74a1b3a19ec5aa7ed64b03129 -SIZE (GitPython-2.1.9.tar.gz) = 429598 +TIMESTAMP = 1528894672 +SHA256 (GitPython-2.1.10.tar.gz) = b60b045cf64a321e5b620debb49890099fa6c7be6dfb7fb249027e5d34227301 +SIZE (GitPython-2.1.10.tar.gz) = 430939 From owner-svn-ports-head@freebsd.org Sun Jun 17 21:24:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4F23100B510; Sun, 17 Jun 2018 21:24:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A66180668; Sun, 17 Jun 2018 21:24:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6152D1ADEC; Sun, 17 Jun 2018 21:24:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HLO43X047393; Sun, 17 Jun 2018 21:24:04 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLO3oO047389; Sun, 17 Jun 2018 21:24:03 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172124.w5HLO3oO047389@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 21:24:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472636 - in head/science: . py-PyQuante X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . py-PyQuante X-SVN-Commit-Revision: 472636 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:24:05 -0000 Author: yuri Date: Sun Jun 17 21:24:03 2018 New Revision: 472636 URL: https://svnweb.freebsd.org/changeset/ports/472636 Log: New port: science/py-PyQuante: Quantum chemistry in Python Added: head/science/py-PyQuante/ head/science/py-PyQuante/Makefile (contents, props changed) head/science/py-PyQuante/distinfo (contents, props changed) head/science/py-PyQuante/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sun Jun 17 20:44:13 2018 (r472635) +++ head/science/Makefile Sun Jun 17 21:24:03 2018 (r472636) @@ -163,6 +163,7 @@ SUBDIR += psychopy SUBDIR += pulseview SUBDIR += py-DendroPy + SUBDIR += py-PyQuante SUBDIR += py-MDAnalysis SUBDIR += py-MDAnalysisTests SUBDIR += py-OpenFermion Added: head/science/py-PyQuante/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-PyQuante/Makefile Sun Jun 17 21:24:03 2018 (r472636) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= PyQuante +DISTVERSION= 1.6.5 +CATEGORIES= science python +MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME}-${DISTVERSION:R}/${PORTNAME}-${DISTVERSION}/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Quantum chemistry in Python + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} + +USES= python:2.7- +USE_PYTHON= distutils autoplist + +.include Added: head/science/py-PyQuante/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-PyQuante/distinfo Sun Jun 17 21:24:03 2018 (r472636) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529269768 +SHA256 (PyQuante-1.6.5.tar.gz) = 145ac192503c7c0cf9e1b262a39a7de3a43a50e53d6884b45124ade0cfcdb7cc +SIZE (PyQuante-1.6.5.tar.gz) = 681165 Added: head/science/py-PyQuante/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-PyQuante/pkg-descr Sun Jun 17 21:24:03 2018 (r472636) @@ -0,0 +1,12 @@ +PyQuante (Sourceforge Project Page) is an open-source suite of programs for +developing quantum chemistry methods. The program is written in the Python +programming language, but has many "rate-determining" modules also written +in C for speed. The resulting code, though not as fast as Jaguar, NWChem, +Gaussian, or MPQC, is much easier to understand and modify. The goal of this +software is not necessarily to provide a working quantum chemistry program +(although it will hopefully do that), but rather to provide a well-engineered +set of tools so that scientists can construct their own quantum chemistry +programs without going through the tedium of having to write every low-level +routine. + +WWW: http://pyquante.sourceforge.net/ From owner-svn-ports-head@freebsd.org Sun Jun 17 21:24:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCCEE100B55E; Sun, 17 Jun 2018 21:24:38 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B09B8078C; Sun, 17 Jun 2018 21:24:38 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C1361ADEE; Sun, 17 Jun 2018 21:24:38 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HLOc2v047560; Sun, 17 Jun 2018 21:24:38 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLObvI047556; Sun, 17 Jun 2018 21:24:37 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806172124.w5HLObvI047556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Sun, 17 Jun 2018 21:24:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472637 - in head/graphics/Coin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: in head/graphics/Coin: . files X-SVN-Commit-Revision: 472637 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:24:39 -0000 Author: adridg Date: Sun Jun 17 21:24:37 2018 New Revision: 472637 URL: https://svnweb.freebsd.org/changeset/ports/472637 Log: The update to CMake 3.12 showed up compile failures (see the new patches, all of which are from upstream). All of these show Clang being more strict in its C++ than before. Reported by: tcberner Obtained from: upstream Added: head/graphics/Coin/files/patch-hg-11469.diff (contents, props changed) head/graphics/Coin/files/patch-hg-11603.diff (contents, props changed) head/graphics/Coin/files/patch-hg-11629.diff (contents, props changed) Modified: head/graphics/Coin/Makefile Modified: head/graphics/Coin/Makefile ============================================================================== --- head/graphics/Coin/Makefile Sun Jun 17 21:24:03 2018 (r472636) +++ head/graphics/Coin/Makefile Sun Jun 17 21:24:37 2018 (r472637) @@ -3,7 +3,7 @@ PORTNAME= Coin PORTVERSION= 3.1.3 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= graphics MASTER_SITES= https://bitbucket.org/Coin3D/coin/downloads/ Added: head/graphics/Coin/files/patch-hg-11469.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/Coin/files/patch-hg-11469.diff Sun Jun 17 21:24:37 2018 (r472637) @@ -0,0 +1,16 @@ +Fix compile, passing NULL isn't an integer for initializing a bool. + +From upstream revision 11469. + +diff -r a9e748858e58 -r d77c7249db51 src/profiler/SoProfilerVisualizeKit.cpp +--- src/profiler/SoProfilerVisualizeKit.cpp Mon Feb 16 13:09:45 2015 +0000 ++++ src/profiler/SoProfilerVisualizeKit.cpp Thu Feb 19 22:30:51 2015 +0100 +@@ -150,7 +150,7 @@ + SO_KIT_ADD_FIELD(separatorsWithGLCaches, (NULL)); + + this->separatorsWithGLCaches.setNum(0); +- this->separatorsWithGLCaches.setDefault(NULL); ++ this->separatorsWithGLCaches.setDefault(FALSE); + PRIVATE(this)->cacheSensor.reset(new SoFieldSensor(cacheSensorCB, this)); + PRIVATE(this)->cacheSensor->attach(&this->separatorsWithGLCaches); + PRIVATE(this)->rootSensor.reset(new SoFieldSensor(rootChangedCB, this)); Added: head/graphics/Coin/files/patch-hg-11603.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/Coin/files/patch-hg-11603.diff Sun Jun 17 21:24:37 2018 (r472637) @@ -0,0 +1,28 @@ +Fix compile, don't narrow unsigned int to int. + +Path of the diff has been adjusted to reflect upstream file moves. +From upstream revision 11603. + +diff -r cf80fb39af0b -r 3d88c63d65bb src/rendering/SoOffscreenRenderer.cpp +--- src/misc/SoOffscreenRenderer.cpp Tue Sep 26 09:47:59 2017 +0200 ++++ src/misc/SoOffscreenRenderer.cpp Tue Sep 26 09:49:30 2017 +0200 +@@ -432,7 +432,7 @@ + size_t bufferbytesize; + + CoinOffscreenGLCanvas glcanvas; +- unsigned int glcanvassize[2]; ++ int glcanvassize[2]; + + int numsubscreens[2]; + // The subscreen size of the current tile. (Less than max if it's a +@@ -1736,9 +1736,8 @@ + if (renderaction->getNumPasses() > 1) { + SbVec3f jittervec; + SbMatrix m; +- const int vpsize[2] = { this->glcanvassize[0], this->glcanvassize[1] }; + coin_viewvolume_jitter(renderaction->getNumPasses(), renderaction->getCurPass(), +- vpsize, (float *)jittervec.getValue()); ++ this->glcanvassize, (float *)jittervec.getValue()); + m.setTranslate(jittervec); + proj.multRight(m); + } Added: head/graphics/Coin/files/patch-hg-11629.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/Coin/files/patch-hg-11629.diff Sun Jun 17 21:24:37 2018 (r472637) @@ -0,0 +1,27 @@ +NUL-terminate the string, instead of accidentally setting the +pointer to NULL (which fails to compile on 12-CURRENT due to +converting char to pointer). + +From upstream revision 11629. + +diff -r fbd6ca1c1436 -r 6008c4bd6ba6 src/3ds/SoStream.cpp +--- src/3ds/SoStream.cpp Wed Aug 30 13:05:43 2017 +0200 ++++ src/3ds/SoStream.cpp Wed Aug 30 13:06:50 2017 +0200 +@@ -185,7 +185,7 @@ + if (!gotNum) { setBadBit(); return FALSE; } \ + \ + char *ce; \ +- s = '\0'; \ ++ *s = '\0'; \ + _convertType_ tempVal = _convertFunc_(buf, &ce, 0); \ + \ + if (ce != s) \ +@@ -282,7 +282,7 @@ + gotAll: \ + \ + char *ce; \ +- s = '\0'; \ ++ *s = '\0'; \ + double tempVal = _convertFunc_(buf, &ce); \ + \ + if (ce != s) \ From owner-svn-ports-head@freebsd.org Sun Jun 17 21:25:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43582100B5CF; Sun, 17 Jun 2018 21:25:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E983980892; Sun, 17 Jun 2018 21:25:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CAB4E1ADEF; Sun, 17 Jun 2018 21:25:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HLPQKw047701; Sun, 17 Jun 2018 21:25:26 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLPQf5047700; Sun, 17 Jun 2018 21:25:26 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172125.w5HLPQf5047700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 21:25:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472638 - head/science X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science X-SVN-Commit-Revision: 472638 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:25:27 -0000 Author: yuri Date: Sun Jun 17 21:25:26 2018 New Revision: 472638 URL: https://svnweb.freebsd.org/changeset/ports/472638 Log: science/Makefile: Fix sortedness Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sun Jun 17 21:24:37 2018 (r472637) +++ head/science/Makefile Sun Jun 17 21:25:26 2018 (r472638) @@ -163,10 +163,10 @@ SUBDIR += psychopy SUBDIR += pulseview SUBDIR += py-DendroPy - SUBDIR += py-PyQuante SUBDIR += py-MDAnalysis SUBDIR += py-MDAnalysisTests SUBDIR += py-OpenFermion + SUBDIR += py-PyQuante SUBDIR += py-abipy SUBDIR += py-cdo SUBDIR += py-coards From owner-svn-ports-head@freebsd.org Sun Jun 17 21:39:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA45D100BBB6; Sun, 17 Jun 2018 21:39:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7AE5B80F9D; Sun, 17 Jun 2018 21:39:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 428BF1AF93; Sun, 17 Jun 2018 21:39:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HLdMH1053186; Sun, 17 Jun 2018 21:39:22 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLdLru053183; Sun, 17 Jun 2018 21:39:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172139.w5HLdLru053183@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 21:39:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472639 - in head/www/py-ddgr: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www/py-ddgr: . files X-SVN-Commit-Revision: 472639 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:39:23 -0000 Author: yuri Date: Sun Jun 17 21:39:21 2018 New Revision: 472639 URL: https://svnweb.freebsd.org/changeset/ports/472639 Log: www/py-ddgr: Update 1.1 -> 1.4 PR: 229090 Approved by: jsmith@resonatingmedia.com (maintainer) Modified: head/www/py-ddgr/Makefile head/www/py-ddgr/distinfo head/www/py-ddgr/files/patch-Makefile Modified: head/www/py-ddgr/Makefile ============================================================================== --- head/www/py-ddgr/Makefile Sun Jun 17 21:25:26 2018 (r472638) +++ head/www/py-ddgr/Makefile Sun Jun 17 21:39:21 2018 (r472639) @@ -2,7 +2,7 @@ PORTNAME= ddgr DISTVERSIONPREFIX= v -DISTVERSION= 1.1 +DISTVERSION= 1.4 CATEGORIES= www PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -23,7 +23,7 @@ NO_ARCH= yes SHEBANG_FILES= ${PORTNAME} python_OLD_CMD= "/usr/bin/env python3" # see bug#223980 -MAKE_ARGS= DOCDIR=${STAGEDIR}${DOCSDIR} FREEBSD_PYTHON_VER=${PYTHON_VER} +MAKE_ARGS= DOCDIR=${DOCSDIR} OPTIONS_DEFINE= DOCS Modified: head/www/py-ddgr/distinfo ============================================================================== --- head/www/py-ddgr/distinfo Sun Jun 17 21:25:26 2018 (r472638) +++ head/www/py-ddgr/distinfo Sun Jun 17 21:39:21 2018 (r472639) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511990479 -SHA256 (jarun-ddgr-v1.1_GH0.tar.gz) = 6fbf7a638e3e4c0db57ef4a86f253b5810e5755b88727444b17d4528e3a4f5d8 -SIZE (jarun-ddgr-v1.1_GH0.tar.gz) = 38553 +TIMESTAMP = 1529264905 +SHA256 (jarun-ddgr-v1.4_GH0.tar.gz) = 045063b4d7262992a7ea3cd9fe9715a199318828de82073f54c42631d3ef41b7 +SIZE (jarun-ddgr-v1.4_GH0.tar.gz) = 40983 Modified: head/www/py-ddgr/files/patch-Makefile ============================================================================== --- head/www/py-ddgr/files/patch-Makefile Sun Jun 17 21:25:26 2018 (r472638) +++ head/www/py-ddgr/files/patch-Makefile Sun Jun 17 21:39:21 2018 (r472639) @@ -1,21 +1,21 @@ ---- Makefile.orig 2017-11-29 12:33:58 UTC +--- Makefile.orig 2018-04-04 23:26:45 UTC +++ Makefile @@ -1,6 +1,6 @@ PREFIX ?= /usr/local - BINDIR = $(DESTDIR)$(PREFIX)/bin --MANDIR = $(DESTDIR)$(PREFIX)/share/man/man1 -+MANDIR = $(DESTDIR)$(PREFIX)/man/man1 - DOCDIR = $(DESTDIR)$(PREFIX)/share/doc/ddgr + BINDIR ?= $(PREFIX)/bin +-MANDIR ?= $(PREFIX)/share/man/man1 ++MANDIR ?= $(PREFIX)/man/man1 + DOCDIR ?= $(PREFIX)/share/doc/ddgr .PHONY: all install uninstall @@ -11,9 +11,8 @@ install: - install -m755 -d $(BINDIR) - install -m755 -d $(MANDIR) - install -m755 -d $(DOCDIR) + install -m755 -d $(DESTDIR)$(BINDIR) + install -m755 -d $(DESTDIR)$(MANDIR) + install -m755 -d $(DESTDIR)$(DOCDIR) - gzip -c ddgr.1 > ddgr.1.gz - install -m755 ddgr $(BINDIR) -- install -m644 ddgr.1.gz $(MANDIR) -+ install -m644 ddgr.1 $(MANDIR) - install -m644 README.md $(DOCDIR) + install -m755 ddgr $(DESTDIR)$(BINDIR) +- install -m644 ddgr.1.gz $(DESTDIR)$(MANDIR) ++ install -m644 ddgr.1 $(DESTDIR)$(MANDIR) + install -m644 README.md $(DESTDIR)$(DOCDIR) rm -f ddgr.1.gz From owner-svn-ports-head@freebsd.org Sun Jun 17 21:44:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A65BC100C053; Sun, 17 Jun 2018 21:44:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 506788152B; Sun, 17 Jun 2018 21:44:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 318CE1B127; Sun, 17 Jun 2018 21:44:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HLijS8058130; Sun, 17 Jun 2018 21:44:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLijfZ058129; Sun, 17 Jun 2018 21:44:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172144.w5HLijfZ058129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 21:44:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472640 - head/security/py-pycryptodomex X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/security/py-pycryptodomex X-SVN-Commit-Revision: 472640 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:44:45 -0000 Author: yuri Date: Sun Jun 17 21:44:44 2018 New Revision: 472640 URL: https://svnweb.freebsd.org/changeset/ports/472640 Log: security/py-pycryptodomex: Fix build by creating a special file in WRKSRC See https://github.com/Legrandin/pycryptodome/blob/v3.6.1/setup.py#L39-L48 PR: 225217 Reported by: John W. O'Brien (maintainer) Modified: head/security/py-pycryptodomex/Makefile Modified: head/security/py-pycryptodomex/Makefile ============================================================================== --- head/security/py-pycryptodomex/Makefile Sun Jun 17 21:39:21 2018 (r472639) +++ head/security/py-pycryptodomex/Makefile Sun Jun 17 21:44:44 2018 (r472640) @@ -8,4 +8,7 @@ MASTERDIR= ${.CURDIR}/../py-pycryptodome NAMESPACE= Cryptodome +pre-build: + @${TOUCH} ${WRKSRC}/.separate_namespace + .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@freebsd.org Sun Jun 17 21:48:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CAE1100C298; Sun, 17 Jun 2018 21:48:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 41F1E81704; Sun, 17 Jun 2018 21:48:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1EC431B12F; Sun, 17 Jun 2018 21:48:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HLmja5058404; Sun, 17 Jun 2018 21:48:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLmjUG058403; Sun, 17 Jun 2018 21:48:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172148.w5HLmjUG058403@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 21:48:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472641 - head/devel/libsimdpp X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/libsimdpp X-SVN-Commit-Revision: 472641 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:48:46 -0000 Author: yuri Date: Sun Jun 17 21:48:45 2018 New Revision: 472641 URL: https://svnweb.freebsd.org/changeset/ports/472641 Log: devel/libsimdpp: In PORTSCOUT, replace skipv with limit skipv doesn't work for some reason. Modified: head/devel/libsimdpp/Makefile Modified: head/devel/libsimdpp/Makefile ============================================================================== --- head/devel/libsimdpp/Makefile Sun Jun 17 21:44:44 2018 (r472640) +++ head/devel/libsimdpp/Makefile Sun Jun 17 21:48:45 2018 (r472641) @@ -11,7 +11,7 @@ COMMENT= Header-only zero-overhead C++ wrapper of SIMD LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt -PORTSCOUT= skipv:^cxx98.* +PORTSCOUT= limit:^[v1-9] USES= cmake:outsource USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Sun Jun 17 21:50:48 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D689100C388; Sun, 17 Jun 2018 21:50:48 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF7048183F; Sun, 17 Jun 2018 21:50:47 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 919051B146; Sun, 17 Jun 2018 21:50:47 +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 w5HLoliM059548; Sun, 17 Jun 2018 21:50:47 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HLolnP059545; Sun, 17 Jun 2018 21:50:47 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806172150.w5HLolnP059545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Sun, 17 Jun 2018 21:50:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472642 - head/games/wtf X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: head/games/wtf X-SVN-Commit-Revision: 472642 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 21:50:48 -0000 Author: lifanov Date: Sun Jun 17 21:50:46 2018 New Revision: 472642 URL: https://svnweb.freebsd.org/changeset/ports/472642 Log: update games/wtf to 20180615 snapshot from NetBSD Modified: head/games/wtf/Makefile head/games/wtf/distinfo Modified: head/games/wtf/Makefile ============================================================================== --- head/games/wtf/Makefile Sun Jun 17 21:48:45 2018 (r472641) +++ head/games/wtf/Makefile Sun Jun 17 21:50:46 2018 (r472642) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wtf -PORTVERSION= 20180525 +PORTVERSION= 20180615 CATEGORIES= games MASTER_SITES= SF/bsdwtf Modified: head/games/wtf/distinfo ============================================================================== --- head/games/wtf/distinfo Sun Jun 17 21:48:45 2018 (r472641) +++ head/games/wtf/distinfo Sun Jun 17 21:50:46 2018 (r472642) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527255101 -SHA256 (wtf-20180525.tar.gz) = 84cdf0c459daf609c7bf3dc0eb74e5633a6623db18998653d43454e240bf426e -SIZE (wtf-20180525.tar.gz) = 25923 +TIMESTAMP = 1529272177 +SHA256 (wtf-20180615.tar.gz) = 1c23f267a05f97fce14dcfa8fe7329167ab5dcbba54ba4d4707d75f1f49223b5 +SIZE (wtf-20180615.tar.gz) = 26498 From owner-svn-ports-head@freebsd.org Sun Jun 17 22:05:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C13EE100C829; Sun, 17 Jun 2018 22:05:40 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5792681F44; Sun, 17 Jun 2018 22:05:40 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3341D1B46B; Sun, 17 Jun 2018 22:05:40 +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 w5HM5efD068515; Sun, 17 Jun 2018 22:05:40 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HM5d5p068513; Sun, 17 Jun 2018 22:05:39 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806172205.w5HM5d5p068513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Sun, 17 Jun 2018 22:05:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472643 - head/sysutils/ansible X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: head/sysutils/ansible X-SVN-Commit-Revision: 472643 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:05:40 -0000 Author: lifanov Date: Sun Jun 17 22:05:39 2018 New Revision: 472643 URL: https://svnweb.freebsd.org/changeset/ports/472643 Log: update sysutils/ansible to 2.5.5 Changes: https://github.com/ansible/ansible/blob/v2.5.5/changelogs/CHANGELOG-v2.5.rst Modified: head/sysutils/ansible/Makefile head/sysutils/ansible/distinfo Modified: head/sysutils/ansible/Makefile ============================================================================== --- head/sysutils/ansible/Makefile Sun Jun 17 21:50:46 2018 (r472642) +++ head/sysutils/ansible/Makefile Sun Jun 17 22:05:39 2018 (r472643) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ansible -PORTVERSION?= 2.5.3 +PORTVERSION?= 2.5.5 PORTREVISION?= 0 CATEGORIES= sysutils python MASTER_SITES= http://releases.ansible.com/ansible/ Modified: head/sysutils/ansible/distinfo ============================================================================== --- head/sysutils/ansible/distinfo Sun Jun 17 21:50:46 2018 (r472642) +++ head/sysutils/ansible/distinfo Sun Jun 17 22:05:39 2018 (r472643) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526651178 -SHA256 (ansible-2.5.3.tar.gz) = 0b34126dad0a77fce220d264ba5179221bbff82af5fda5de197dffb96171749c -SIZE (ansible-2.5.3.tar.gz) = 10138567 +TIMESTAMP = 1529272911 +SHA256 (ansible-2.5.5.tar.gz) = d7e5aae60c0e76c824bf8a410fe247b5c4afcfaee272f6283b4f996d237e365a +SIZE (ansible-2.5.5.tar.gz) = 10150862 From owner-svn-ports-head@freebsd.org Sun Jun 17 22:11:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0826B100CB48; Sun, 17 Jun 2018 22:11:28 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE8C4823C0; Sun, 17 Jun 2018 22:11:27 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9138E1B4A8; Sun, 17 Jun 2018 22:11:27 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HMBRif068964; Sun, 17 Jun 2018 22:11:27 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HMBRrf068962; Sun, 17 Jun 2018 22:11:27 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201806172211.w5HMBRrf068962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Sun, 17 Jun 2018 22:11:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472644 - head/www/py-flask-admin X-SVN-Group: ports-head X-SVN-Commit-Author: robak X-SVN-Commit-Paths: head/www/py-flask-admin X-SVN-Commit-Revision: 472644 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:11:28 -0000 Author: robak Date: Sun Jun 17 22:11:26 2018 New Revision: 472644 URL: https://svnweb.freebsd.org/changeset/ports/472644 Log: www/py-flask-admin: update 1.5.0 -> 1.5.1 Modified: head/www/py-flask-admin/Makefile head/www/py-flask-admin/distinfo Modified: head/www/py-flask-admin/Makefile ============================================================================== --- head/www/py-flask-admin/Makefile Sun Jun 17 22:05:39 2018 (r472643) +++ head/www/py-flask-admin/Makefile Sun Jun 17 22:11:26 2018 (r472644) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Flask-Admin -PORTVERSION= 1.5.0 +PORTVERSION= 1.5.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-flask-admin/distinfo ============================================================================== --- head/www/py-flask-admin/distinfo Sun Jun 17 22:05:39 2018 (r472643) +++ head/www/py-flask-admin/distinfo Sun Jun 17 22:11:26 2018 (r472644) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489404059 -SHA256 (Flask-Admin-1.5.0.tar.gz) = fe3a96d99f22e293cd7e83d364de6cffd36573ef25db93d6e32102527a624bc5 -SIZE (Flask-Admin-1.5.0.tar.gz) = 1598074 +TIMESTAMP = 1529213719 +SHA256 (Flask-Admin-1.5.1.tar.gz) = e3a8268fdb6c271a44196de7f2a85faff886df18061d337e66b4b3c80e9c4f23 +SIZE (Flask-Admin-1.5.1.tar.gz) = 1587527 From owner-svn-ports-head@freebsd.org Sun Jun 17 22:17:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69F94100CD55; Sun, 17 Jun 2018 22:17:30 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D19582709; Sun, 17 Jun 2018 22:17:30 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F272D1B608; Sun, 17 Jun 2018 22:17:29 +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 w5HMHTNS074137; Sun, 17 Jun 2018 22:17:29 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HMHTlo074135; Sun, 17 Jun 2018 22:17:29 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806172217.w5HMHTlo074135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Sun, 17 Jun 2018 22:17:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472645 - head/emulators/winetricks X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: head/emulators/winetricks X-SVN-Commit-Revision: 472645 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:17:30 -0000 Author: lifanov Date: Sun Jun 17 22:17:29 2018 New Revision: 472645 URL: https://svnweb.freebsd.org/changeset/ports/472645 Log: update emulators/winetricks to 20180603 Modified: head/emulators/winetricks/Makefile head/emulators/winetricks/distinfo head/emulators/winetricks/pkg-message Modified: head/emulators/winetricks/Makefile ============================================================================== --- head/emulators/winetricks/Makefile Sun Jun 17 22:11:26 2018 (r472644) +++ head/emulators/winetricks/Makefile Sun Jun 17 22:17:29 2018 (r472645) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= winetricks -PORTVERSION= 20180217 +PORTVERSION= 20180603 CATEGORIES= emulators MAINTAINER= lifanov@FreeBSD.org Modified: head/emulators/winetricks/distinfo ============================================================================== --- head/emulators/winetricks/distinfo Sun Jun 17 22:11:26 2018 (r472644) +++ head/emulators/winetricks/distinfo Sun Jun 17 22:17:29 2018 (r472645) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519142457 -SHA256 (Winetricks-winetricks-20180217_GH0.tar.gz) = 10e11dd150f1629af17f5549404d66b17968130cbdec6a4524b51d9291484a47 -SIZE (Winetricks-winetricks-20180217_GH0.tar.gz) = 646726 +TIMESTAMP = 1529273612 +SHA256 (Winetricks-winetricks-20180603_GH0.tar.gz) = 66d8b48e001136d6d68b4c467c740753c56becceab9138632b479cb6c559074f +SIZE (Winetricks-winetricks-20180603_GH0.tar.gz) = 651678 Modified: head/emulators/winetricks/pkg-message ============================================================================== --- head/emulators/winetricks/pkg-message Sun Jun 17 22:11:26 2018 (r472644) +++ head/emulators/winetricks/pkg-message Sun Jun 17 22:17:29 2018 (r472645) @@ -1,5 +1,5 @@ The winetricks port requires a 32 bit version of Wine Please install one of the following packages: - wine, wine-devel, or wine-staging on i386 - i386-wine, i386-wine-devel, or i386-wine-staging on amd64 + wine or wine-devel on i386 + i386-wine or i386-wine-devel on amd64 From owner-svn-ports-head@freebsd.org Sun Jun 17 22:23:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61605100D2CB; Sun, 17 Jun 2018 22:23:11 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 11B2582DD5; Sun, 17 Jun 2018 22:23:11 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6DC31B79B; Sun, 17 Jun 2018 22:23:10 +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 w5HMNA7u079127; Sun, 17 Jun 2018 22:23:10 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HMNAuR079125; Sun, 17 Jun 2018 22:23:10 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806172223.w5HMNAuR079125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Sun, 17 Jun 2018 22:23:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472646 - head/sysutils/packer X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: head/sysutils/packer X-SVN-Commit-Revision: 472646 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:23:11 -0000 Author: lifanov Date: Sun Jun 17 22:23:10 2018 New Revision: 472646 URL: https://svnweb.freebsd.org/changeset/ports/472646 Log: update sysutils/packer to 1.2.4 Changes: https://github.com/hashicorp/packer/blob/v1.2.4/CHANGELOG.md Modified: head/sysutils/packer/Makefile head/sysutils/packer/distinfo Modified: head/sysutils/packer/Makefile ============================================================================== --- head/sysutils/packer/Makefile Sun Jun 17 22:17:29 2018 (r472645) +++ head/sysutils/packer/Makefile Sun Jun 17 22:23:10 2018 (r472646) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= packer -PORTVERSION= 1.2.3 +PORTVERSION= 1.2.4 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: head/sysutils/packer/distinfo ============================================================================== --- head/sysutils/packer/distinfo Sun Jun 17 22:17:29 2018 (r472645) +++ head/sysutils/packer/distinfo Sun Jun 17 22:23:10 2018 (r472646) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524760627 -SHA256 (hashicorp-packer-v1.2.3_GH0.tar.gz) = 008a377d5fe8440822114e3196225cc2837be72d57210cf7944530723b255051 -SIZE (hashicorp-packer-v1.2.3_GH0.tar.gz) = 7587941 +TIMESTAMP = 1529273897 +SHA256 (hashicorp-packer-v1.2.4_GH0.tar.gz) = 7b2a8ead54ae9c699ba86895b202bfc15c88b980bb63de039b59212bc2c5d892 +SIZE (hashicorp-packer-v1.2.4_GH0.tar.gz) = 7759870 From owner-svn-ports-head@freebsd.org Sun Jun 17 22:29:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C92D9100D5F1; Sun, 17 Jun 2018 22:29:56 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75ED8830F3; Sun, 17 Jun 2018 22:29: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 526C41B7A3; Sun, 17 Jun 2018 22:29: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 w5HMTugI079552; Sun, 17 Jun 2018 22:29:56 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HMTtTK079550; Sun, 17 Jun 2018 22:29:55 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806172229.w5HMTtTK079550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Sun, 17 Jun 2018 22:29:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472647 - head/archivers/innoextract X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: head/archivers/innoextract X-SVN-Commit-Revision: 472647 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:29:57 -0000 Author: lifanov Date: Sun Jun 17 22:29:55 2018 New Revision: 472647 URL: https://svnweb.freebsd.org/changeset/ports/472647 Log: update archivers/innoextract to 1.7 Added support for Inno Setup 5.6.0 installers Added support for new GOG installers with GOG Galaxy file parts Added support for encrypted installers Added --list-sizes and --list-checksums options to print file information Adde a --data-version (-V) option to check if an executable is an Inno Setup installer Fixed case-sensitivity in parent directory when creating subdirectories Fixed issues with names used to load .bin slice files Modified: head/archivers/innoextract/Makefile head/archivers/innoextract/distinfo Modified: head/archivers/innoextract/Makefile ============================================================================== --- head/archivers/innoextract/Makefile Sun Jun 17 22:23:10 2018 (r472646) +++ head/archivers/innoextract/Makefile Sun Jun 17 22:29:55 2018 (r472647) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= innoextract -PORTVERSION= 1.6 -PORTREVISION= 7 +PORTVERSION= 1.7 CATEGORIES= archivers MASTER_SITES= http://constexpr.org/innoextract/files/ Modified: head/archivers/innoextract/distinfo ============================================================================== --- head/archivers/innoextract/distinfo Sun Jun 17 22:23:10 2018 (r472646) +++ head/archivers/innoextract/distinfo Sun Jun 17 22:29:55 2018 (r472647) @@ -1,2 +1,3 @@ -SHA256 (innoextract-1.6.tar.gz) = 66463f145fffd4d5883c6b3e2f7b2c2837d6f07095810114e514233a88c1033e -SIZE (innoextract-1.6.tar.gz) = 183380 +TIMESTAMP = 1529273428 +SHA256 (innoextract-1.7.tar.gz) = c1efb732f2bc3a80065c5f51a0d4ea6027aebf528c609d3f336aea2055d2f0a4 +SIZE (innoextract-1.7.tar.gz) = 195123 From owner-svn-ports-head@freebsd.org Sun Jun 17 22:31:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94BD5100D776; Sun, 17 Jun 2018 22:31:50 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4714D833C5; Sun, 17 Jun 2018 22:31: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 281A51B806; Sun, 17 Jun 2018 22:31: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 w5HMVnG7083587; Sun, 17 Jun 2018 22:31:49 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HMVnbL083583; Sun, 17 Jun 2018 22:31:49 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806172231.w5HMVnbL083583@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Sun, 17 Jun 2018 22:31:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472648 - in head/sysutils/debootstrap: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: in head/sysutils/debootstrap: . files X-SVN-Commit-Revision: 472648 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:31:50 -0000 Author: lifanov Date: Sun Jun 17 22:31:48 2018 New Revision: 472648 URL: https://svnweb.freebsd.org/changeset/ports/472648 Log: update sysutils/debootstrap to 1.0.102 Modified: head/sysutils/debootstrap/Makefile head/sysutils/debootstrap/distinfo head/sysutils/debootstrap/files/patch-debootstrap head/sysutils/debootstrap/pkg-plist Modified: head/sysutils/debootstrap/Makefile ============================================================================== --- head/sysutils/debootstrap/Makefile Sun Jun 17 22:29:55 2018 (r472647) +++ head/sysutils/debootstrap/Makefile Sun Jun 17 22:31:48 2018 (r472648) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debootstrap -PORTVERSION= 1.0.96 +PORTVERSION= 1.0.102 CATEGORIES= sysutils MASTER_SITES= DEBIAN/pool/main/d/${PORTNAME} DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/sysutils/debootstrap/distinfo ============================================================================== --- head/sysutils/debootstrap/distinfo Sun Jun 17 22:29:55 2018 (r472647) +++ head/sysutils/debootstrap/distinfo Sun Jun 17 22:31:48 2018 (r472648) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523456571 -SHA256 (debootstrap_1.0.96.tar.gz) = 5fe34b69069a8dcb425450f81d7e7c9eda9a6afd90082985d9e8f790868dae86 -SIZE (debootstrap_1.0.96.tar.gz) = 69541 +TIMESTAMP = 1529274215 +SHA256 (debootstrap_1.0.102.tar.gz) = 09675c7338ff0a328a1d67d84af93af46716a618d6c8cdb8c76d1ce07cb70ec5 +SIZE (debootstrap_1.0.102.tar.gz) = 72977 Modified: head/sysutils/debootstrap/files/patch-debootstrap ============================================================================== --- head/sysutils/debootstrap/files/patch-debootstrap Sun Jun 17 22:29:55 2018 (r472647) +++ head/sysutils/debootstrap/files/patch-debootstrap Sun Jun 17 22:31:48 2018 (r472648) @@ -1,4 +1,4 @@ ---- debootstrap.orig 2016-09-09 12:32:15 UTC +--- debootstrap.orig 2018-06-13 13:00:11 UTC +++ debootstrap @@ -14,7 +14,7 @@ if [ -z "$DEBOOTSTRAP_DIR" ]; then if [ -x /debootstrap/debootstrap ]; then @@ -9,22 +9,22 @@ fi fi -@@ -409,13 +409,7 @@ fi +@@ -474,13 +474,7 @@ fi ########################################################################### -if in_path dpkg && \ - dpkg --print-architecture >/dev/null 2>&1; then -- HOST_ARCH=`/usr/bin/dpkg --print-architecture` +- HOST_ARCH=$(/usr/bin/dpkg --print-architecture) -elif in_path udpkg && \ - udpkg --print-architecture >/dev/null 2>&1; then -- HOST_ARCH=`/usr/bin/udpkg --print-architecture` --elif [ -e $DEBOOTSTRAP_DIR/arch ]; then -+if [ -e $DEBOOTSTRAP_DIR/arch ]; then - HOST_ARCH=`cat $DEBOOTSTRAP_DIR/arch` +- HOST_ARCH=$(/usr/bin/udpkg --print-architecture) +-elif [ -e "$DEBOOTSTRAP_DIR/arch" ]; then ++if [ -e "$DEBOOTSTRAP_DIR/arch" ]; then + HOST_ARCH=$(cat "$DEBOOTSTRAP_DIR/arch") fi HOST_OS="$HOST_ARCH" -@@ -437,6 +431,11 @@ if [ -z "$HOST_OS" ]; then +@@ -502,6 +496,11 @@ if [ -z "$HOST_OS" ]; then esac fi @@ -34,5 +34,5 @@ +fi + if [ -z "$ARCH" ]; then - ARCH=$HOST_ARCH + ARCH="$HOST_ARCH" fi Modified: head/sysutils/debootstrap/pkg-plist ============================================================================== --- head/sysutils/debootstrap/pkg-plist Sun Jun 17 22:29:55 2018 (r472647) +++ head/sysutils/debootstrap/pkg-plist Sun Jun 17 22:31:48 2018 (r472648) @@ -5,10 +5,12 @@ man/man8/debootstrap.8.gz %%DATADIR%%/scripts/artful %%DATADIR%%/scripts/bartholomea %%DATADIR%%/scripts/bionic +%%DATADIR%%/scripts/bookworm %%DATADIR%%/scripts/breezy %%DATADIR%%/scripts/bullseye %%DATADIR%%/scripts/buster %%DATADIR%%/scripts/chromodoris +%%DATADIR%%/scripts/cosmic %%DATADIR%%/scripts/dapper %%DATADIR%%/scripts/dasyatis %%DATADIR%%/scripts/debian-common From owner-svn-ports-head@freebsd.org Sun Jun 17 22:56:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22700100DEE9; Sun, 17 Jun 2018 22:56:23 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B985C83CE9; Sun, 17 Jun 2018 22:56: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91F2E1BC6B; Sun, 17 Jun 2018 22:56: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 w5HMuM8G095100; Sun, 17 Jun 2018 22:56:22 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HMuJDu095086; Sun, 17 Jun 2018 22:56:19 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172256.w5HMuJDu095086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 22:56:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472649 - in head/math/saga: . files X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/math/saga: . files X-SVN-Commit-Revision: 472649 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 22:56:23 -0000 Author: wen Date: Sun Jun 17 22:56:19 2018 New Revision: 472649 URL: https://svnweb.freebsd.org/changeset/ports/472649 Log: - Update version from 6.1.0 to 6.3.0 - Use devel/liblas12 with changed naming scheme - If using openMP, change the compiler from gcc to clang - Recreate some patches with makepatch PR: 227901 Submitted by: rhurlin@gwdg.de(maintainer) Added: head/math/saga/files/patch-configure (contents, props changed) head/math/saga/files/patch-src_tools_io_io__shapes__las_Makefile.am (contents, props changed) head/math/saga/files/patch-src_tools_io_io__shapes__las_las__export.cpp (contents, props changed) head/math/saga/files/patch-src_tools_io_io__shapes__las_las__import.cpp (contents, props changed) head/math/saga/files/patch-src_tools_io_io__shapes__las_las__info.h (contents, props changed) Deleted: head/math/saga/files/patch-git_6e14443b30ce Modified: head/math/saga/Makefile head/math/saga/distinfo head/math/saga/files/patch-configure.ac head/math/saga/files/patch-src_saga__core_saga__cmd_saga__cmd.cpp head/math/saga/files/patch-src_saga__core_saga__gui_dlg__about.cpp head/math/saga/files/patch-src_tools_imagery_imagery__opencv_opencv.h head/math/saga/files/patch-src_tools_imagery_imagery__svm_MLB__Interface.cpp head/math/saga/files/patch-src_tools_imagery_imagery__svm_svm__grids.h head/math/saga/files/patch-src_tools_io_io__grid__image_grid__to__kml.cpp head/math/saga/pkg-plist Modified: head/math/saga/Makefile ============================================================================== --- head/math/saga/Makefile Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/Makefile Sun Jun 17 22:56:19 2018 (r472649) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= saga -PORTVERSION= 6.1.0 -PORTREVISION= 4 +PORTVERSION= 6.3.0 CATEGORIES= math MASTER_SITES= SF/saga-gis/SAGA%20-%20${PORTVERSION:C/\.[[:digit:]]\.[[:digit:]]*$//}/SAGA%20-%20${PORTVERSION} @@ -13,12 +12,13 @@ COMMENT= System for Automated Geoscientific Analyses LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -BUILD_DEPENDS= swig3.0:devel/swig30 +BUILD_DEPENDS= clang50:devel/llvm50 \ + swig3.0:devel/swig30 LIB_DEPENDS= libfftw3.so:math/fftw3 \ libgdal.so:graphics/gdal \ libhpdf.so:print/libharu \ libjasper.so:graphics/jasper \ - liblas.so:devel/liblas12 \ + liblas12.so:devel/liblas12 \ libodbc.so:databases/unixODBC \ libopencv_core.so:graphics/opencv-core \ libopencv_ml.so:graphics/opencv \ @@ -26,12 +26,11 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ libsvm.so:science/libsvm \ libtbb.so:devel/tbb \ libtiff.so:graphics/tiff -RUN_DEPENDS:= ${BUILD_DEPENDS} +RUN_DEPENDS:= swig3.0:devel/swig30 -USES= autoreconf compiler:gcc-c++11-lib desktop-file-utils dos2unix \ +USES= autoreconf compiler:c++11-lib desktop-file-utils dos2unix \ iconv:wchar_t libtool localbase pkgconfig python:2.7 USE_LDCONFIG= yes -USE_CXXSTD= c++11 USE_WX= 3.0+ CONFIGURE_ARGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ --enable-python --with-system-svm @@ -39,19 +38,27 @@ CONFIGURE_ENV= SWIG="${LOCALBASE}/bin/swig3.0" GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +CPP= clang-cpp50 +CC= clang50 +CXX= clang++50 INSTALLS_ICONS= yes DOS2UNIX_GLOB= *.cpp *.h PLIST_SUB= PORTVERSION=${PORTVERSION} OPTIONS_DEFINE= PGSQL OPENMP VIGRA -OPTIONS_DEFAULT= PGSQL OPENMP VIGRA +OPTIONS_DEFAULT= PGSQL VIGRA +OPTIONS_DEFAULT_amd64= OPENMP +OPTIONS_DEFAULT_i386= OPENMP NO_OPTIONS_SORT= yes OPTIONS_SUB= yes -OPENMP_DESC= Enable Multiprocessing +OPENMP_DESC= Enable Multiprocessing (only amd64 and i386) VIGRA_DESC= Enable 'Vision with Generic Algorithms' Library +## TODO: OPENMP_?= Only for archs amd64 and i386 OPENMP_CONFIGURE_ENABLE= openmp -OPENMP_LDFLAGS= -pthread +OPENMP_LIB_DEPENDS= libomp.so:devel/openmp +OPENMP_LDFLAGS= -L${LOCALBASE}/lib -lm -pthread +#OPENMP_EXTRA_PATCHES= ${PATCHDIR}/ PGSQL_CONFIGURE_OFF= --with-postgresql=no PGSQL_CONFIGURE_ON= --with-postgresql=${LOCALBASE}/bin/pg_config PGSQL_USES= pgsql @@ -91,10 +98,13 @@ post-patch: @${REINPLACE_CMD} -e 's|PORTVERSION|${PORTVERSION}|' \ ${WRKSRC}/src/saga_core/saga_gui/dlg_about.cpp +post-patch-OPENMP-on: + @${REINPLACE_CMD} -e 's|-lgomp|-lomp|' ${WRKSRC}/configure.ac + post-configure: @${REINPLACE_CMD} -e 's|cd $$(pkgdatadir);|cd ${STAGEDIR}${DATADIR};|g' \ ${WRKSRC}/src/saga_core/saga_gui/Makefile - @${REINPLACE_CMD} -e 's|^LDFLAGS = .*|& -lopencv_contrib|' \ + @${REINPLACE_CMD} -e 's|^LDFLAGS = .*|& -lopencv_core|' \ ${WRKSRC}/src/tools/imagery/imagery_opencv/Makefile post-install: Modified: head/math/saga/distinfo ============================================================================== --- head/math/saga/distinfo Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/distinfo Sun Jun 17 22:56:19 2018 (r472649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511371377 -SHA256 (saga-6.1.0.tar.gz) = da5767d339c3a2cd9d5905a66251e44b8be7325aa10b673db7ea55a8d4bffe6e -SIZE (saga-6.1.0.tar.gz) = 4574237 +TIMESTAMP = 1524468589 +SHA256 (saga-6.3.0.tar.gz) = bb4b99406e3a25cdaa12559904ce3272c449acb542bc0883b2755ce6508dd243 +SIZE (saga-6.3.0.tar.gz) = 4583450 Added: head/math/saga/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/saga/files/patch-configure Sun Jun 17 22:56:19 2018 (r472649) @@ -0,0 +1,19 @@ +--- configure.orig 2017-12-21 10:57:30 UTC ++++ configure +@@ -16235,13 +16235,13 @@ if test "x$ac_cv_lib_fftw3_fftw_execute" = xyes; then + FFTWFOUND=1 + fi + +-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LAS_GetVersion in -llas" >&5 +-$as_echo_n "checking for LAS_GetVersion in -llas... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LAS_GetVersion in -llas12" >&5 ++$as_echo_n "checking for LAS_GetVersion in -llas12... " >&6; } + if ${ac_cv_lib_las_LAS_GetVersion+:} false; then : + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-llas $LIBS" ++LIBS="-llas12 $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + Modified: head/math/saga/files/patch-configure.ac ============================================================================== --- head/math/saga/files/patch-configure.ac Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-configure.ac Sun Jun 17 22:56:19 2018 (r472649) @@ -1,6 +1,13 @@ ---- configure.ac.orig 2016-08-23 13:23:41 UTC +--- configure.ac.orig 2018-04-23 07:44:48 UTC +++ configure.ac -@@ -26,7 +26,7 @@ AC_CHECK_LIB([odbc], [SQLFetch], ODBCFOU +@@ -20,13 +20,13 @@ AC_PROG_LIBTOOL + AC_CHECK_LIB([opencv_core], [cvGetRows], CVFOUND=1,,) + AC_CHECK_LIB([geotrans], [Set_Mercator_Coordinates]) + AC_CHECK_LIB([fftw3],[fftw_execute],FFTWFOUND=1,) +-AC_CHECK_LIB([las], [LAS_GetVersion], LASFOUND=1,,) ++AC_CHECK_LIB([las12], [LAS_GetVersion], LASFOUND=1,,) + AC_CHECK_LIB(hpdf, HPDF_Pages_New, HARUFOUND=1,,) + AC_CHECK_LIB([odbc], [SQLFetch], ODBCFOUND=1,[ODBC \(libodbc\) library not found]) AC_CHECK_LIB([proj], [pj_is_latlong], PROJFOUND=1,,) AC_CHECK_LIB([vigraimpex], [VIGRA_RGBE_ReadPixels_Raw],VIGRAFOUND=1,) AC_CHECK_LIB([gomp], [omp_get_num_threads], GOMPFOUND=1,,) @@ -9,4 +16,3 @@ PKG_CHECK_MODULES([DXFLIB], [dxflib], [LIBDXFFOUND=1],[LIBDXFFOUND=0]) PKG_CHECK_MODULES([HDF5],[hdf5],LIBHDF5FOUND=1,LIBHDF5FOUND=0) - Modified: head/math/saga/files/patch-src_saga__core_saga__cmd_saga__cmd.cpp ============================================================================== --- head/math/saga/files/patch-src_saga__core_saga__cmd_saga__cmd.cpp Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-src_saga__core_saga__cmd_saga__cmd.cpp Sun Jun 17 22:56:19 2018 (r472649) @@ -1,14 +1,14 @@ ---- src/saga_core/saga_cmd/saga_cmd.cpp.orig 2016-06-29 05:55:46 UTC +--- src/saga_core/saga_cmd/saga_cmd.cpp.orig 2018-05-01 09:07:11 UTC +++ src/saga_core/saga_cmd/saga_cmd.cpp -@@ -65,6 +65,7 @@ +@@ -64,6 +64,7 @@ #include #include +#include + #include "config.h" #include "callback.h" - -@@ -164,7 +165,7 @@ _except(1) +@@ -168,7 +169,7 @@ _except(1) //--------------------------------------------------------- bool Run(int argc, char *argv[]) { Modified: head/math/saga/files/patch-src_saga__core_saga__gui_dlg__about.cpp ============================================================================== --- head/math/saga/files/patch-src_saga__core_saga__gui_dlg__about.cpp Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-src_saga__core_saga__gui_dlg__about.cpp Sun Jun 17 22:56:19 2018 (r472649) @@ -1,6 +1,6 @@ ---- src/saga_core/saga_gui/dlg_about.cpp.orig 2016-06-29 05:55:46 UTC +--- src/saga_core/saga_gui/dlg_about.cpp.orig 2018-05-01 09:07:11 UTC +++ src/saga_core/saga_gui/dlg_about.cpp -@@ -189,6 +189,7 @@ wxString CDLG_About::_Get_Version(void) +@@ -188,6 +188,7 @@ wxString CDLG_About::_Get_Version(void) s += "http://www.saga-gis.org\n"; s += "\n"; s += "Version: " + wxString(SAGA_VERSION) + "\n"; @@ -8,7 +8,7 @@ #ifdef _SAGA_MSW #ifdef _WIN64 -@@ -264,7 +265,25 @@ wxString CDLG_About::_Get_Version(void) +@@ -263,7 +264,25 @@ wxString CDLG_About::_Get_Version(void) #elif defined(__GNUWIN32__) "Gnu-Win32 compiler" #elif defined(__GNUG__) Modified: head/math/saga/files/patch-src_tools_imagery_imagery__opencv_opencv.h ============================================================================== --- head/math/saga/files/patch-src_tools_imagery_imagery__opencv_opencv.h Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-src_tools_imagery_imagery__opencv_opencv.h Sun Jun 17 22:56:19 2018 (r472649) @@ -1,6 +1,6 @@ ---- src/tools/imagery/imagery_opencv/opencv.h.orig 2016-06-29 05:55:46 UTC +--- src/tools/imagery/imagery_opencv/opencv.h.orig 2018-05-01 09:07:11 UTC +++ src/tools/imagery/imagery_opencv/opencv.h -@@ -74,7 +74,8 @@ +@@ -73,7 +73,8 @@ //--------------------------------------------------------- #include Modified: head/math/saga/files/patch-src_tools_imagery_imagery__svm_MLB__Interface.cpp ============================================================================== --- head/math/saga/files/patch-src_tools_imagery_imagery__svm_MLB__Interface.cpp Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-src_tools_imagery_imagery__svm_MLB__Interface.cpp Sun Jun 17 22:56:19 2018 (r472649) @@ -1,6 +1,6 @@ ---- src/tools/imagery/imagery_svm/MLB_Interface.cpp.orig 2017-01-29 14:18:09 UTC +--- src/tools/imagery/imagery_svm/MLB_Interface.cpp.orig 2018-05-01 09:07:10 UTC +++ src/tools/imagery/imagery_svm/MLB_Interface.cpp -@@ -62,7 +62,7 @@ +@@ -61,7 +61,7 @@ #include "MLB_Interface.h" #if defined(SYSTEM_SVM) Modified: head/math/saga/files/patch-src_tools_imagery_imagery__svm_svm__grids.h ============================================================================== --- head/math/saga/files/patch-src_tools_imagery_imagery__svm_svm__grids.h Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-src_tools_imagery_imagery__svm_svm__grids.h Sun Jun 17 22:56:19 2018 (r472649) @@ -1,6 +1,6 @@ ---- src/tools/imagery/imagery_svm/svm_grids.h.orig 2017-01-29 14:18:09 UTC +--- src/tools/imagery/imagery_svm/svm_grids.h.orig 2018-05-01 09:07:11 UTC +++ src/tools/imagery/imagery_svm/svm_grids.h -@@ -73,7 +73,7 @@ +@@ -72,7 +72,7 @@ #include "MLB_Interface.h" #if defined(SYSTEM_SVM) Modified: head/math/saga/files/patch-src_tools_io_io__grid__image_grid__to__kml.cpp ============================================================================== --- head/math/saga/files/patch-src_tools_io_io__grid__image_grid__to__kml.cpp Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/files/patch-src_tools_io_io__grid__image_grid__to__kml.cpp Sun Jun 17 22:56:19 2018 (r472649) @@ -1,16 +1,25 @@ -grid_to_kml.cpp: In member function 'bool CGrid_from_KML::Load_Overlay(const wchar_t*, const CSG_MetaData&)': -grid_to_kml.cpp:585:49: error: conversion from 'const wxScopedWCharBuffer {aka const wxScopedCharTypeBuffer}' to non-scalar type 'CSG_String' requested - CSG_String FullPath = fn.GetFullPath().wc_str(); - ~~~~~~~~~~~~~~~~~~~~~~~^~ - ---- src/tools/io/io_grid_image/grid_to_kml.cpp.orig 2017-06-21 13:50:57 UTC +--- src/tools/io/io_grid_image/grid_to_kml.cpp.orig 2018-05-03 05:29:35 UTC +++ src/tools/io/io_grid_image/grid_to_kml.cpp -@@ -582,7 +582,7 @@ bool CGrid_from_KML::Load_Overlay(const SG_Char *Dir, +@@ -504,7 +504,7 @@ bool CGrid_from_KML::On_Execute(void) + + if( !KML.Load(&File) ) + { +- Error_Fmt("%s [%s]", _TL("failed to load file"), File.wc_str()); ++ Error_Fmt("%s [%s]", _TL("failed to load file"), File.wx_str()); + + return( false ); } +@@ -582,11 +582,11 @@ bool CGrid_from_KML::Load_Overlay(const SG_Char *Dir, + } CSG_Data_Manager Data; - CSG_String FullPath = fn.GetFullPath().wc_str(); -+ CSG_String FullPath = static_cast(fn.GetFullPath().wc_str()); ++ CSG_String FullPath = fn.GetFullPath().wx_str(); if( !Data.Add(FullPath) || !Data.Get_Grid_System(0) || !Data.Get_Grid_System(0)->Get(0) ) { +- Error_Fmt("%s: %s", _TL("failed to load KML ground overlay icon"), fn.GetFullPath().wc_str()); ++ Error_Fmt("%s: %s", _TL("failed to load KML ground overlay icon"), fn.GetFullPath().wx_str()); + } + + //----------------------------------------------------- Added: head/math/saga/files/patch-src_tools_io_io__shapes__las_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/saga/files/patch-src_tools_io_io__shapes__las_Makefile.am Sun Jun 17 22:56:19 2018 (r472649) @@ -0,0 +1,11 @@ +--- src/tools/io/io_shapes_las/Makefile.am.orig 2016-11-17 08:03:02 UTC ++++ src/tools/io/io_shapes_las/Makefile.am +@@ -6,7 +6,7 @@ DBGFLAGS = -g -DDEBUG + endif + + if HAVE_LLAS +-DEP_LIBS = -llas ++DEP_LIBS = -llas12 + DEF_SAGA = -D_SAGA_LINUX -D_TYPEDEF_BYTE -D_TYPEDEF_WORD -D_SAGA_UNICODE + CXX_INCS = -I$(top_srcdir)/src/saga_core + AM_CXXFLAGS = -fPIC $(CXX_INCS) $(DEF_SAGA) $(DBGFLAGS) $(GOMPFLAGS) Added: head/math/saga/files/patch-src_tools_io_io__shapes__las_las__export.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/saga/files/patch-src_tools_io_io__shapes__las_las__export.cpp Sun Jun 17 22:56:19 2018 (r472649) @@ -0,0 +1,15 @@ +--- src/tools/io/io_shapes_las/las_export.cpp.orig 2018-05-01 09:07:10 UTC ++++ src/tools/io/io_shapes_las/las_export.cpp +@@ -61,9 +61,9 @@ + //--------------------------------------------------------- + #include "las_export.h" + +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + #include Added: head/math/saga/files/patch-src_tools_io_io__shapes__las_las__import.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/saga/files/patch-src_tools_io_io__shapes__las_las__import.cpp Sun Jun 17 22:56:19 2018 (r472649) @@ -0,0 +1,15 @@ +--- src/tools/io/io_shapes_las/las_import.cpp.orig 2018-05-01 09:07:10 UTC ++++ src/tools/io/io_shapes_las/las_import.cpp +@@ -60,9 +60,9 @@ + //--------------------------------------------------------- + #include "las_import.h" + +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + Added: head/math/saga/files/patch-src_tools_io_io__shapes__las_las__info.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/saga/files/patch-src_tools_io_io__shapes__las_las__info.h Sun Jun 17 22:56:19 2018 (r472649) @@ -0,0 +1,15 @@ +--- src/tools/io/io_shapes_las/las_info.h.orig 2018-05-01 09:07:11 UTC ++++ src/tools/io/io_shapes_las/las_info.h +@@ -76,9 +76,9 @@ + //--------------------------------------------------------- + #include "MLB_Interface.h" + +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + Modified: head/math/saga/pkg-plist ============================================================================== --- head/math/saga/pkg-plist Sun Jun 17 22:31:48 2018 (r472648) +++ head/math/saga/pkg-plist Sun Jun 17 22:56:19 2018 (r472649) @@ -184,7 +184,10 @@ share/pixmaps/saga.png %%DATADIR%%/saga_tip.txt %%DATADIR%%/toolchains/climate.xml %%DATADIR%%/toolchains/cluster_terrain.xml -%%DATADIR%%/toolchains/gc_simple_filter.xml +%%DATADIR%%/toolchains/gc_filter_gaussian.xml +%%DATADIR%%/toolchains/gc_filter_laplacian.xml +%%DATADIR%%/toolchains/gc_filter_rank.xml +%%DATADIR%%/toolchains/gc_filter_simple.xml %%DATADIR%%/toolchains/gc_tools.xml %%DATADIR%%/toolchains/grid_filter.xml %%DATADIR%%/toolchains/grid_list_simple_filter.xml From owner-svn-ports-head@freebsd.org Sun Jun 17 23:09:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BA5D100E3E8; Sun, 17 Jun 2018 23:09:36 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B1D9584363; Sun, 17 Jun 2018 23:09:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 946D11BE17; Sun, 17 Jun 2018 23:09:35 +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 w5HN9ZvP000438; Sun, 17 Jun 2018 23:09:35 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HN9ZTv000436; Sun, 17 Jun 2018 23:09:35 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172309.w5HN9ZTv000436@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:09:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472650 - head/net/p5-Net-Frame-Dump X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/net/p5-Net-Frame-Dump X-SVN-Commit-Revision: 472650 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:09:36 -0000 Author: wen Date: Sun Jun 17 23:09:34 2018 New Revision: 472650 URL: https://svnweb.freebsd.org/changeset/ports/472650 Log: - Update to 1.17 Changes: https://metacpan.org/changes/distribution/Net-Frame-Dump Modified: head/net/p5-Net-Frame-Dump/Makefile head/net/p5-Net-Frame-Dump/distinfo Modified: head/net/p5-Net-Frame-Dump/Makefile ============================================================================== --- head/net/p5-Net-Frame-Dump/Makefile Sun Jun 17 22:56:19 2018 (r472649) +++ head/net/p5-Net-Frame-Dump/Makefile Sun Jun 17 23:09:34 2018 (r472650) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-Frame-Dump -PORTVERSION= 1.16 +PORTVERSION= 1.17 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-Net-Frame-Dump/distinfo ============================================================================== --- head/net/p5-Net-Frame-Dump/distinfo Sun Jun 17 22:56:19 2018 (r472649) +++ head/net/p5-Net-Frame-Dump/distinfo Sun Jun 17 23:09:34 2018 (r472650) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526716265 -SHA256 (Net-Frame-Dump-1.16.tar.gz) = 46b0b23f70baba4f7881a3dd8846e74534ab75725927368195e22d11bebb93d6 -SIZE (Net-Frame-Dump-1.16.tar.gz) = 19354 +TIMESTAMP = 1529276421 +SHA256 (Net-Frame-Dump-1.17.tar.gz) = 9167ed9e7c8be479fae1cf082f15c72b6e7f58dd01fac808bc07cef97c063af8 +SIZE (Net-Frame-Dump-1.17.tar.gz) = 19636 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:15:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D8FD100E6E4; Sun, 17 Jun 2018 23:15:52 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0B8384770; Sun, 17 Jun 2018 23:15:51 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7BEE11BFA8; Sun, 17 Jun 2018 23:15:51 +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 w5HNFpoj005256; Sun, 17 Jun 2018 23:15:51 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNFpAO005254; Sun, 17 Jun 2018 23:15:51 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172315.w5HNFpAO005254@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:15:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472651 - head/devel/p5-Module-Starter X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-Module-Starter X-SVN-Commit-Revision: 472651 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:15:52 -0000 Author: wen Date: Sun Jun 17 23:15:50 2018 New Revision: 472651 URL: https://svnweb.freebsd.org/changeset/ports/472651 Log: - Update to 1.75 Changes: https://metacpan.org/changes/distribution/Module-Starter Modified: head/devel/p5-Module-Starter/Makefile head/devel/p5-Module-Starter/distinfo Modified: head/devel/p5-Module-Starter/Makefile ============================================================================== --- head/devel/p5-Module-Starter/Makefile Sun Jun 17 23:09:34 2018 (r472650) +++ head/devel/p5-Module-Starter/Makefile Sun Jun 17 23:15:50 2018 (r472651) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-Starter -PORTVERSION= 1.73 +PORTVERSION= 1.75 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-Starter/distinfo ============================================================================== --- head/devel/p5-Module-Starter/distinfo Sun Jun 17 23:09:34 2018 (r472650) +++ head/devel/p5-Module-Starter/distinfo Sun Jun 17 23:15:50 2018 (r472651) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502473904 -SHA256 (Module-Starter-1.73.tar.gz) = 80299e53b7e4db4840dd7174740ea60a679cbb38a5e17d256a0f82fd9b3b8ae5 -SIZE (Module-Starter-1.73.tar.gz) = 61368 +TIMESTAMP = 1529277196 +SHA256 (Module-Starter-1.75.tar.gz) = b0c5c8d5425cd4ffe666a9cf9bd9b10f12222a737b6511ce78f99fda34ed8ce0 +SIZE (Module-Starter-1.75.tar.gz) = 61736 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:19:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C924100E778; Sun, 17 Jun 2018 23:19:23 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4191A84872; Sun, 17 Jun 2018 23:19:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1F7CD1BFA9; Sun, 17 Jun 2018 23:19:23 +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 w5HNJM20005506; Sun, 17 Jun 2018 23:19:22 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNJMU8005504; Sun, 17 Jun 2018 23:19:22 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172319.w5HNJMU8005504@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:19:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472652 - head/devel/p5-Test-Warn X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-Test-Warn X-SVN-Commit-Revision: 472652 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:19:23 -0000 Author: wen Date: Sun Jun 17 23:19:22 2018 New Revision: 472652 URL: https://svnweb.freebsd.org/changeset/ports/472652 Log: - Update to 0.35 Changes: https://metacpan.org/changes/distribution/Test-Warn Modified: head/devel/p5-Test-Warn/Makefile head/devel/p5-Test-Warn/distinfo Modified: head/devel/p5-Test-Warn/Makefile ============================================================================== --- head/devel/p5-Test-Warn/Makefile Sun Jun 17 23:15:50 2018 (r472651) +++ head/devel/p5-Test-Warn/Makefile Sun Jun 17 23:19:22 2018 (r472652) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Warn -PORTVERSION= 0.34 +PORTVERSION= 0.35 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Warn/distinfo ============================================================================== --- head/devel/p5-Test-Warn/distinfo Sun Jun 17 23:15:50 2018 (r472651) +++ head/devel/p5-Test-Warn/distinfo Sun Jun 17 23:19:22 2018 (r472652) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527884609 -SHA256 (Test-Warn-0.34.tar.gz) = 817a11ec7c1e840e7c98576b11a4c400decbae4fb45b7af953c30f7a0875f8ff -SIZE (Test-Warn-0.34.tar.gz) = 11787 +TIMESTAMP = 1529277355 +SHA256 (Test-Warn-0.35.tar.gz) = 24e410963cc8a3bf76851f475e322e1d232ea93d73d700f6b9e7888201b354c5 +SIZE (Test-Warn-0.35.tar.gz) = 12230 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:22:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3A53100E81A; Sun, 17 Jun 2018 23:22:15 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A225484BA1; Sun, 17 Jun 2018 23:22:15 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 835441C11E; Sun, 17 Jun 2018 23:22:15 +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 w5HNMFrc010588; Sun, 17 Jun 2018 23:22:15 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNMFC0010586; Sun, 17 Jun 2018 23:22:15 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172322.w5HNMFC0010586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:22:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472653 - head/devel/p5-Time-Local X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-Time-Local X-SVN-Commit-Revision: 472653 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:22:16 -0000 Author: wen Date: Sun Jun 17 23:22:14 2018 New Revision: 472653 URL: https://svnweb.freebsd.org/changeset/ports/472653 Log: - Update to 1.28 Changes: https://metacpan.org/changes/distribution/Time-Local Modified: head/devel/p5-Time-Local/Makefile head/devel/p5-Time-Local/distinfo Modified: head/devel/p5-Time-Local/Makefile ============================================================================== --- head/devel/p5-Time-Local/Makefile Sun Jun 17 23:19:22 2018 (r472652) +++ head/devel/p5-Time-Local/Makefile Sun Jun 17 23:22:14 2018 (r472653) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Time-Local -PORTVERSION= 1.25 +PORTVERSION= 1.28 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Time-Local/distinfo ============================================================================== --- head/devel/p5-Time-Local/distinfo Sun Jun 17 23:19:22 2018 (r472652) +++ head/devel/p5-Time-Local/distinfo Sun Jun 17 23:22:14 2018 (r472653) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489236898 -SHA256 (Time-Local-1.25.tar.gz) = 1ae9c51d777ac44a3ebc154dc625ba24d7c0cde6a8b6dba87b46d0777889fef2 -SIZE (Time-Local-1.25.tar.gz) = 37621 +TIMESTAMP = 1529277575 +SHA256 (Time-Local-1.28.tar.gz) = 9278b9e5cc99dcbb0fd27a43e914828b59685601edae082889b5ee7266afe10e +SIZE (Time-Local-1.28.tar.gz) = 40090 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:24:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 478A2100EA0E; Sun, 17 Jun 2018 23:24:46 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ECD6C84CF8; Sun, 17 Jun 2018 23:24:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CE0451C13A; Sun, 17 Jun 2018 23:24:45 +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 w5HNOjHI010801; Sun, 17 Jun 2018 23:24:45 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNOjZT010800; Sun, 17 Jun 2018 23:24:45 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172324.w5HNOjZT010800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:24:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472654 - head/mail/p5-Email-Simple X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/mail/p5-Email-Simple X-SVN-Commit-Revision: 472654 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:24:46 -0000 Author: wen Date: Sun Jun 17 23:24:45 2018 New Revision: 472654 URL: https://svnweb.freebsd.org/changeset/ports/472654 Log: - Updateto 2.216 Changes: https://metacpan.org/changes/distribution/Email-Simple Modified: head/mail/p5-Email-Simple/Makefile head/mail/p5-Email-Simple/distinfo Modified: head/mail/p5-Email-Simple/Makefile ============================================================================== --- head/mail/p5-Email-Simple/Makefile Sun Jun 17 23:22:14 2018 (r472653) +++ head/mail/p5-Email-Simple/Makefile Sun Jun 17 23:24:45 2018 (r472654) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Email-Simple -PORTVERSION= 2.214 +PORTVERSION= 2.216 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/mail/p5-Email-Simple/distinfo ============================================================================== --- head/mail/p5-Email-Simple/distinfo Sun Jun 17 23:22:14 2018 (r472653) +++ head/mail/p5-Email-Simple/distinfo Sun Jun 17 23:24:45 2018 (r472654) @@ -1,3 +1,3 @@ -TIMESTAMP = 1504948354 -SHA256 (Email-Simple-2.214.tar.gz) = b2f02b37441ea60efbddebbd675017d26bb767e9a4de3e0fc30b5410a1416b92 -SIZE (Email-Simple-2.214.tar.gz) = 39590 +TIMESTAMP = 1529277749 +SHA256 (Email-Simple-2.216.tar.gz) = d85f63cd1088d11311103676a8cf498fff564a201b538de52cd753b5e5ca8bd4 +SIZE (Email-Simple-2.216.tar.gz) = 39695 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:27:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 567D1100EAB6; Sun, 17 Jun 2018 23:27:35 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF65484E03; Sun, 17 Jun 2018 23:27:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D078F1C13D; Sun, 17 Jun 2018 23:27:34 +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 w5HNRYZm011039; Sun, 17 Jun 2018 23:27:34 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNRYQv011038; Sun, 17 Jun 2018 23:27:34 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172327.w5HNRYQv011038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:27:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472655 - head/mail/p5-Net-IMAP-Simple X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/mail/p5-Net-IMAP-Simple X-SVN-Commit-Revision: 472655 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:27:35 -0000 Author: wen Date: Sun Jun 17 23:27:34 2018 New Revision: 472655 URL: https://svnweb.freebsd.org/changeset/ports/472655 Log: - Update to 1.2212 Changes: https://metacpan.org/changes/distribution/Net-IMAP-Simple Modified: head/mail/p5-Net-IMAP-Simple/Makefile head/mail/p5-Net-IMAP-Simple/distinfo Modified: head/mail/p5-Net-IMAP-Simple/Makefile ============================================================================== --- head/mail/p5-Net-IMAP-Simple/Makefile Sun Jun 17 23:24:45 2018 (r472654) +++ head/mail/p5-Net-IMAP-Simple/Makefile Sun Jun 17 23:27:34 2018 (r472655) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-IMAP-Simple -PORTVERSION= 1.2211 +PORTVERSION= 1.2212 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/mail/p5-Net-IMAP-Simple/distinfo ============================================================================== --- head/mail/p5-Net-IMAP-Simple/distinfo Sun Jun 17 23:24:45 2018 (r472654) +++ head/mail/p5-Net-IMAP-Simple/distinfo Sun Jun 17 23:27:34 2018 (r472655) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526673883 -SHA256 (Net-IMAP-Simple-1.2211.tar.gz) = 6566705bc03d648c914d1b2b17545f3936dcb7aa7ee46fdfc88c149de1f41ae7 -SIZE (Net-IMAP-Simple-1.2211.tar.gz) = 45868 +TIMESTAMP = 1529277917 +SHA256 (Net-IMAP-Simple-1.2212.tar.gz) = 9812cd0aa3be333768b6069e8b13a761fcd9fe42dc6b8b5a5ea1870dac5b7f55 +SIZE (Net-IMAP-Simple-1.2212.tar.gz) = 45917 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:33:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83B95100ECD8; Sun, 17 Jun 2018 23:33:24 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2ED108519B; Sun, 17 Jun 2018 23:33:24 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0C9C01C2D2; Sun, 17 Jun 2018 23:33:24 +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 w5HNXNwB016023; Sun, 17 Jun 2018 23:33:23 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNXNOP016021; Sun, 17 Jun 2018 23:33:23 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172333.w5HNXNOP016021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:33:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472656 - head/net/p5-Net-SIP X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/net/p5-Net-SIP X-SVN-Commit-Revision: 472656 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:33:24 -0000 Author: wen Date: Sun Jun 17 23:33:23 2018 New Revision: 472656 URL: https://svnweb.freebsd.org/changeset/ports/472656 Log: - Update to 0.815 Changes: https://metacpan.org/changes/distribution/Net-SIP Modified: head/net/p5-Net-SIP/Makefile head/net/p5-Net-SIP/distinfo Modified: head/net/p5-Net-SIP/Makefile ============================================================================== --- head/net/p5-Net-SIP/Makefile Sun Jun 17 23:27:34 2018 (r472655) +++ head/net/p5-Net-SIP/Makefile Sun Jun 17 23:33:23 2018 (r472656) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-SIP -PORTVERSION= 0.814 +PORTVERSION= 0.815 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-Net-SIP/distinfo ============================================================================== --- head/net/p5-Net-SIP/distinfo Sun Jun 17 23:27:34 2018 (r472655) +++ head/net/p5-Net-SIP/distinfo Sun Jun 17 23:33:23 2018 (r472656) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519482514 -SHA256 (Net-SIP-0.814.tar.gz) = a847fad5ecbd173e92c01673cdea7992a68482470b92af94c306bebae0e4df87 -SIZE (Net-SIP-0.814.tar.gz) = 205818 +TIMESTAMP = 1529278189 +SHA256 (Net-SIP-0.815.tar.gz) = 5d811eba26a7deaa82214a454d01b3880945a32af805b35e3f4c0b68fd454b25 +SIZE (Net-SIP-0.815.tar.gz) = 205678 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:36:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7832100ED33; Sun, 17 Jun 2018 23:36:30 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 58CBA852A0; Sun, 17 Jun 2018 23:36:30 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2F02A1C2D3; Sun, 17 Jun 2018 23:36:30 +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 w5HNaTvk016287; Sun, 17 Jun 2018 23:36:29 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNaT3i016285; Sun, 17 Jun 2018 23:36:29 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172336.w5HNaT3i016285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:36:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472657 - head/net/p5-Net-Whois-Raw X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/net/p5-Net-Whois-Raw X-SVN-Commit-Revision: 472657 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:36:30 -0000 Author: wen Date: Sun Jun 17 23:36:29 2018 New Revision: 472657 URL: https://svnweb.freebsd.org/changeset/ports/472657 Log: - Update to 2.99015 Changes: https://metacpan.org/changes/distribution/Net-Whois-Raw Modified: head/net/p5-Net-Whois-Raw/Makefile head/net/p5-Net-Whois-Raw/distinfo Modified: head/net/p5-Net-Whois-Raw/Makefile ============================================================================== --- head/net/p5-Net-Whois-Raw/Makefile Sun Jun 17 23:33:23 2018 (r472656) +++ head/net/p5-Net-Whois-Raw/Makefile Sun Jun 17 23:36:29 2018 (r472657) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-Whois-Raw -PORTVERSION= 2.99014 +PORTVERSION= 2.99015 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-Net-Whois-Raw/distinfo ============================================================================== --- head/net/p5-Net-Whois-Raw/distinfo Sun Jun 17 23:33:23 2018 (r472656) +++ head/net/p5-Net-Whois-Raw/distinfo Sun Jun 17 23:36:29 2018 (r472657) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525892948 -SHA256 (Net-Whois-Raw-2.99014.tar.gz) = 11b5ed866fd789ab8736217b0dcf6e9aa36e3e6f36920df19fcf57771477bdaf -SIZE (Net-Whois-Raw-2.99014.tar.gz) = 72928 +TIMESTAMP = 1529278413 +SHA256 (Net-Whois-Raw-2.99015.tar.gz) = 39fd26924b0d183a28813c83e7b3da5210bc2ed6019d31910dea9e069fcd8dea +SIZE (Net-Whois-Raw-2.99015.tar.gz) = 72984 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:38:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D8E2100EDB4; Sun, 17 Jun 2018 23:38:40 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C95DC85393; Sun, 17 Jun 2018 23:38:39 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9EF4B1C2D4; Sun, 17 Jun 2018 23:38:39 +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 w5HNcdq0016499; Sun, 17 Jun 2018 23:38:39 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNcdj6016497; Sun, 17 Jun 2018 23:38:39 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172338.w5HNcdj6016497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:38:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472658 - head/textproc/p5-Text-SimpleTable X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/textproc/p5-Text-SimpleTable X-SVN-Commit-Revision: 472658 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:38:40 -0000 Author: wen Date: Sun Jun 17 23:38:38 2018 New Revision: 472658 URL: https://svnweb.freebsd.org/changeset/ports/472658 Log: - Update to 2.05 Changes: https://metacpan.org/changes/distribution/Text-SimpleTable Modified: head/textproc/p5-Text-SimpleTable/Makefile head/textproc/p5-Text-SimpleTable/distinfo Modified: head/textproc/p5-Text-SimpleTable/Makefile ============================================================================== --- head/textproc/p5-Text-SimpleTable/Makefile Sun Jun 17 23:36:29 2018 (r472657) +++ head/textproc/p5-Text-SimpleTable/Makefile Sun Jun 17 23:38:38 2018 (r472658) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Text-SimpleTable -PORTVERSION= 2.04 +PORTVERSION= 2.05 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-Text-SimpleTable/distinfo ============================================================================== --- head/textproc/p5-Text-SimpleTable/distinfo Sun Jun 17 23:36:29 2018 (r472657) +++ head/textproc/p5-Text-SimpleTable/distinfo Sun Jun 17 23:38:38 2018 (r472658) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521998671 -SHA256 (Text-SimpleTable-2.04.tar.gz) = 8d82f3140b1453b962956b7855ba288d435e7f656c3c40ced4e3e8e359ab5293 -SIZE (Text-SimpleTable-2.04.tar.gz) = 9408 +TIMESTAMP = 1529278611 +SHA256 (Text-SimpleTable-2.05.tar.gz) = a5aab24fd4a55bae75b5fd6f9b9865e58167f6f649828b1093d57882e3d86caa +SIZE (Text-SimpleTable-2.05.tar.gz) = 9654 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:41:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58DE5100EE73; Sun, 17 Jun 2018 23:41:08 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0DA91857C4; Sun, 17 Jun 2018 23:41:08 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E2D821C30B; Sun, 17 Jun 2018 23:41:07 +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 w5HNf7HB018134; Sun, 17 Jun 2018 23:41:07 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNf7fv018132; Sun, 17 Jun 2018 23:41:07 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172341.w5HNf7fv018132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:41:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472659 - head/textproc/p5-XML-MyXML X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/textproc/p5-XML-MyXML X-SVN-Commit-Revision: 472659 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:41:08 -0000 Author: wen Date: Sun Jun 17 23:41:07 2018 New Revision: 472659 URL: https://svnweb.freebsd.org/changeset/ports/472659 Log: - Update to 1.02 Changes: https://metacpan.org/changes/distribution/XML-MyXML Modified: head/textproc/p5-XML-MyXML/Makefile head/textproc/p5-XML-MyXML/distinfo Modified: head/textproc/p5-XML-MyXML/Makefile ============================================================================== --- head/textproc/p5-XML-MyXML/Makefile Sun Jun 17 23:38:38 2018 (r472658) +++ head/textproc/p5-XML-MyXML/Makefile Sun Jun 17 23:41:07 2018 (r472659) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= XML-MyXML -PORTVERSION= 0.9407 +PORTVERSION= 1.02 PORTEPOCH= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN Modified: head/textproc/p5-XML-MyXML/distinfo ============================================================================== --- head/textproc/p5-XML-MyXML/distinfo Sun Jun 17 23:38:38 2018 (r472658) +++ head/textproc/p5-XML-MyXML/distinfo Sun Jun 17 23:41:07 2018 (r472659) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484304113 -SHA256 (XML-MyXML-0.9407.tar.gz) = 8c058dea9048eb46c8fff3a3c4dae4f7f01911718583a6be08384a1278d16d6b -SIZE (XML-MyXML-0.9407.tar.gz) = 23234 +TIMESTAMP = 1529278755 +SHA256 (XML-MyXML-1.02.tar.gz) = 9d81779ee4c25caa177e310c880eb109150b941ebd67bfea77bb367eac487fd9 +SIZE (XML-MyXML-1.02.tar.gz) = 25379 From owner-svn-ports-head@freebsd.org Sun Jun 17 23:47:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16C73100F0F9; Sun, 17 Jun 2018 23:47:52 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B042185A5A; Sun, 17 Jun 2018 23:47:51 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8F7981C47F; Sun, 17 Jun 2018 23:47:51 +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 w5HNlpJ5021629; Sun, 17 Jun 2018 23:47:51 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HNlp9Z021627; Sun, 17 Jun 2018 23:47:51 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806172347.w5HNlp9Z021627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 17 Jun 2018 23:47:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472660 - head/www/p5-HTTP-Message X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/www/p5-HTTP-Message X-SVN-Commit-Revision: 472660 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 23:47:52 -0000 Author: wen Date: Sun Jun 17 23:47:50 2018 New Revision: 472660 URL: https://svnweb.freebsd.org/changeset/ports/472660 Log: - Update to 6.18 Changes: https://metacpan.org/changes/distribution/HTTP-Message Modified: head/www/p5-HTTP-Message/Makefile head/www/p5-HTTP-Message/distinfo Modified: head/www/p5-HTTP-Message/Makefile ============================================================================== --- head/www/p5-HTTP-Message/Makefile Sun Jun 17 23:41:07 2018 (r472659) +++ head/www/p5-HTTP-Message/Makefile Sun Jun 17 23:47:50 2018 (r472660) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= HTTP-Message -PORTVERSION= 6.17 +PORTVERSION= 6.18 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-HTTP-Message/distinfo ============================================================================== --- head/www/p5-HTTP-Message/distinfo Sun Jun 17 23:41:07 2018 (r472659) +++ head/www/p5-HTTP-Message/distinfo Sun Jun 17 23:47:50 2018 (r472660) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528175965 -SHA256 (HTTP-Message-6.17.tar.gz) = b0ba6cadff95367dfc97eaf63eea95cd795eeacf61f7bcdfa169127e015c6984 -SIZE (HTTP-Message-6.17.tar.gz) = 81334 +TIMESTAMP = 1529279146 +SHA256 (HTTP-Message-6.18.tar.gz) = d060d170d388b694c58c14f4d13ed908a2807f0e581146cef45726641d809112 +SIZE (HTTP-Message-6.18.tar.gz) = 81363 From owner-svn-ports-head@freebsd.org Mon Jun 18 00:37:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAEFB1010194; Mon, 18 Jun 2018 00:37:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E78A86BEE; Mon, 18 Jun 2018 00:37:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 630281CC6E; Mon, 18 Jun 2018 00:37:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I0brYI047069; Mon, 18 Jun 2018 00:37:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I0bq9T047067; Mon, 18 Jun 2018 00:37:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180037.w5I0bq9T047067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 00:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472661 - head/misc/urh X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/urh X-SVN-Commit-Revision: 472661 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 00:37:54 -0000 Author: yuri Date: Mon Jun 18 00:37:52 2018 New Revision: 472661 URL: https://svnweb.freebsd.org/changeset/ports/472661 Log: New port: misc/urh: Universal Radio Hacker: investigate wireless protocols like a boss Added: head/misc/urh/ head/misc/urh/Makefile (contents, props changed) head/misc/urh/distinfo (contents, props changed) head/misc/urh/pkg-descr (contents, props changed) Added: head/misc/urh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/urh/Makefile Mon Jun 18 00:37:52 2018 (r472661) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= urh +DISTVERSION= 2.1.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Universal Radio Hacker: investigate wireless protocols like a boss + +LICENSE= GPLv2 + +BUILD_DEPENDS= ${PYNUMPY} +LIB_DEPENDS= libomp.so:devel/openmp +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyzmq>0:net/py-pyzmq@${PY_FLAVOR} + +USES= fortran python:3.4+ localbase pyqt:5 +USE_PYQT= core gui test widgets +USE_PYTHON= distutils autoplist + +PLIST_FILES= bin/urh.shadow + +post-install: + @${MV} ${STAGEDIR}${PREFIX}/bin/urh ${STAGEDIR}${PREFIX}/bin/urh.shadow + @(echo "#!/bin/sh"; \ + echo ""; \ + echo "LD_PRELOAD=${PREFIX}/lib/gcc6/libgcc_s.so ${PREFIX}/bin/urh.shadow \"$$@\"" \ + ) > ${STAGEDIR}${PREFIX}/bin/urh + @${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/urh + +.include Added: head/misc/urh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/urh/distinfo Mon Jun 18 00:37:52 2018 (r472661) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529279220 +SHA256 (urh-2.1.1.tar.gz) = fd66d3f3c054eb9ebef62425cc5289627b93b19e3d9cd155ed02866660c06228 +SIZE (urh-2.1.1.tar.gz) = 2904518 Added: head/misc/urh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/urh/pkg-descr Mon Jun 18 00:37:52 2018 (r472661) @@ -0,0 +1,21 @@ +The Universal Radio Hacker (URH) is a software for investigating unknown +wireless protocols. + +Features include: +* hardware interfaces for common Software Defined Radios +* easy demodulation of signals +* assigning participants to keep overview of your data +* customizable decodings to crack even sophisticated encodings like CC1101 + data whitening +* assign labels to reveal the logic of the protocol +* fuzzing component to find security leaks +* modulation support to inject the data back into the system +* simulation environment to perform stateful attacks + +In order to use this software, you need SDR hardware, for example +* HackRF One (can send and receive on frequencies 1 MHz to 6 GHz) +* SDRplay RSP2pro (can receive on frequencies 1 kHz to 2 GHz) + +See the user guide: https://github.com/jopohl/urh/raw/master/data/userguide.pdf + +WWW: https://github.com/jopohl/urh From owner-svn-ports-head@freebsd.org Mon Jun 18 00:40:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A2401010270; Mon, 18 Jun 2018 00:40:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F035E86D31; Mon, 18 Jun 2018 00:40:00 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD5171CC72; Mon, 18 Jun 2018 00:40:00 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I0e04S047285; Mon, 18 Jun 2018 00:40:00 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I0e0T4047284; Mon, 18 Jun 2018 00:40:00 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180040.w5I0e0T4047284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 00:40:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472662 - head/misc X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc X-SVN-Commit-Revision: 472662 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 00:40:01 -0000 Author: yuri Date: Mon Jun 18 00:40:00 2018 New Revision: 472662 URL: https://svnweb.freebsd.org/changeset/ports/472662 Log: Hook misc/urh to the build. Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Jun 18 00:37:52 2018 (r472661) +++ head/misc/Makefile Mon Jun 18 00:40:00 2018 (r472662) @@ -519,6 +519,7 @@ SUBDIR += unicode-emoji SUBDIR += upclient SUBDIR += urbit + SUBDIR += urh SUBDIR += us-zipcodes SUBDIR += usbids SUBDIR += usbrh-libusb From owner-svn-ports-head@freebsd.org Mon Jun 18 01:13:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B2911010FB0; Mon, 18 Jun 2018 01:13:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A9F1187BD0; Mon, 18 Jun 2018 01:13:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B6691D2D6; Mon, 18 Jun 2018 01:13:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I1D7Ei067381; Mon, 18 Jun 2018 01:13:07 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I1D7Js067379; Mon, 18 Jun 2018 01:13:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180113.w5I1D7Js067379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 01:13:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472663 - head/net-im/toxins X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net-im/toxins X-SVN-Commit-Revision: 472663 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 01:13:08 -0000 Author: yuri Date: Mon Jun 18 01:13:06 2018 New Revision: 472663 URL: https://svnweb.freebsd.org/changeset/ports/472663 Log: net-im/toxins: Update g20180214 -> g20180217 Add minitox: a minimal client written for toxcore Modified: head/net-im/toxins/Makefile head/net-im/toxins/distinfo Modified: head/net-im/toxins/Makefile ============================================================================== --- head/net-im/toxins/Makefile Mon Jun 18 00:40:00 2018 (r472662) +++ head/net-im/toxins/Makefile Mon Jun 18 01:13:06 2018 (r472663) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= toxins -DISTVERSION= g20180214 +DISTVERSION= g20180217 CATEGORIES= net-im MAINTAINER= yuri@FreeBSD.org @@ -16,10 +16,11 @@ LIB_DEPENDS= libsodium.so:security/libsodium \ USES= gmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= TokTok -GH_TAGNAME= e7bb43c +GH_TAGNAME= f76a7bd ALL_TARGET= build +GH_TUPLE= hqwrong:minitox:45b9e3f:minitox/minitox/import -PROGS= irc_syncbot tox_shell tox_sync echobot +PROGS= irc_syncbot tox_shell tox_sync echobot minitox PLIST_FILES= ${PROGS:S/^/bin\//} Modified: head/net-im/toxins/distinfo ============================================================================== --- head/net-im/toxins/distinfo Mon Jun 18 00:40:00 2018 (r472662) +++ head/net-im/toxins/distinfo Mon Jun 18 01:13:06 2018 (r472663) @@ -1,3 +1,5 @@ -TIMESTAMP = 1520496023 -SHA256 (TokTok-toxins-g20180214-e7bb43c_GH0.tar.gz) = 481efdfe6eb33feb16c161cd169305c53f671de367b418006936688b4cd160a6 -SIZE (TokTok-toxins-g20180214-e7bb43c_GH0.tar.gz) = 23606 +TIMESTAMP = 1529284105 +SHA256 (TokTok-toxins-g20180217-f76a7bd_GH0.tar.gz) = 8be321cbeabb2ee315eaa067fd2640556f70ba418b22dfb6612e069747b7389c +SIZE (TokTok-toxins-g20180217-f76a7bd_GH0.tar.gz) = 23896 +SHA256 (hqwrong-minitox-45b9e3f_GH0.tar.gz) = 358266b987e4a5b723418325641a9a27c3b3bf314e11f5be64e0b3958ce6fc9b +SIZE (hqwrong-minitox-45b9e3f_GH0.tar.gz) = 124512 From owner-svn-ports-head@freebsd.org Mon Jun 18 01:48:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72B5A1011CE6; Mon, 18 Jun 2018 01:48:49 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E1970689CE; Mon, 18 Jun 2018 01:48:48 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C37AE1D7AF; Mon, 18 Jun 2018 01:48:48 +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 w5I1mmt8082742; Mon, 18 Jun 2018 01:48:48 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I1mkgN082732; Mon, 18 Jun 2018 01:48:46 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806180148.w5I1mkgN082732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 01:48:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472665 - in head: audio/faac audio/faad audio/mp3blaster audio/volumeicon biology/iqtree cad/alliance cad/freehdl cad/meshlab cad/repsnapper chinese/ibus-libpinyin comms/sunxi-tools X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: audio/faac audio/faad audio/mp3blaster audio/volumeicon biology/iqtree cad/alliance cad/freehdl cad/meshlab cad/repsnapper chinese/ibus-libpinyin comms/sunxi-tools X-SVN-Commit-Revision: 472665 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 01:48:49 -0000 Author: linimon Date: Mon Jun 18 01:48:46 2018 New Revision: 472665 URL: https://svnweb.freebsd.org/changeset/ports/472665 Log: Mark ports broken on powerpc64, categories a-c. While here, pet portlint and do some other cleanup. Approved by: portmgr (tier-2 blanket) Modified: head/audio/faac/Makefile head/audio/faad/Makefile head/audio/mp3blaster/Makefile head/audio/volumeicon/Makefile head/biology/iqtree/Makefile head/cad/alliance/Makefile head/cad/freehdl/Makefile head/cad/meshlab/Makefile head/cad/repsnapper/Makefile head/chinese/ibus-libpinyin/Makefile head/comms/sunxi-tools/Makefile Modified: head/audio/faac/Makefile ============================================================================== --- head/audio/faac/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/audio/faac/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -17,6 +17,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_ISO= ${WRKSRC}/README LICENSE_PERMS_ISO= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN_powerpc64= fails to build: quantize.c:152: error: initializer element is not constant + USES= gmake libtool INSTALL_TARGET= install-strip GNU_CONFIGURE= yes Modified: head/audio/faad/Makefile ============================================================================== --- head/audio/faad/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/audio/faad/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -13,6 +13,8 @@ COMMENT= MPEG-2 and MPEG-4 AAC audio decoder LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to build: mp4read.o:(.text+0x714): undefined reference to '__builtin_bswap16' + USES= autoreconf gmake libtool INSTALL_TARGET= install-strip Modified: head/audio/mp3blaster/Makefile ============================================================================== --- head/audio/mp3blaster/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/audio/mp3blaster/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -13,6 +13,8 @@ COMMENT= MP3 console ncurses-based player LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to configure: checking for main in -lm... no + USES= gmake localbase:ldflags ncurses GNU_CONFIGURE= yes CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -Wno-narrowing" Modified: head/audio/volumeicon/Makefile ============================================================================== --- head/audio/volumeicon/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/audio/volumeicon/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -10,6 +10,8 @@ COMMENT= Lightweight volume control for the systray LICENSE= GPLv3 +BROKEN_powerpc64= fails to build: oss3_backend.c:80: 'for' loop initial declaration used outside C99 mode + GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-oss=v3 \ --with-oss-include-path=/usr/include/sys Modified: head/biology/iqtree/Makefile ============================================================================== --- head/biology/iqtree/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/biology/iqtree/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -11,9 +11,10 @@ COMMENT= Efficient phylogenomic software by maximum li LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_aarch64= fails to compile: unrecognized command line option '-msse3' -BROKEN_armv6= fails to compile: unrecognized command line options '-m32' and '-msse3' -BROKEN_armv7= fails to compile: unrecognized command line options '-m32' and '-msse3' +BROKEN_aarch64= fails to compile: unrecognized command line option '-msse3' +BROKEN_armv6= fails to compile: unrecognized command line options '-m32' and '-msse3' +BROKEN_armv7= fails to compile: unrecognized command line options '-m32' and '-msse3' +BROKEN_powerpc64= fails to build: GCC version must be at least 4.8! USES= cmake compiler:openmp eigen:3 USE_GITHUB= yes Modified: head/cad/alliance/Makefile ============================================================================== --- head/cad/alliance/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/cad/alliance/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -18,6 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENCE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BROKEN_aarch64= fails to link: collect2: error: ld returned 1 exit status +BROKEN_powerpc64= fails to build: cc1plus: error: unrecognized command line option "-std=gnu++03" CONFLICTS_INSTALL= fspclient-* Modified: head/cad/freehdl/Makefile ============================================================================== --- head/cad/freehdl/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/cad/freehdl/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -10,6 +10,8 @@ MASTER_SITES= http://freehdl.seul.org/~enaroska/ MAINTAINER= ports@FreeBSD.org COMMENT= Free VHDL simulator +BROKEN_powerpc64= fails to build: cc1plus: error: unrecognized command line option "-std=gnu++03" + USES= gmake pathfix libtool makeinfo perl5 pkgconfig USE_LDCONFIG= yes USE_GCC= any Modified: head/cad/meshlab/Makefile ============================================================================== --- head/cad/meshlab/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/cad/meshlab/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -13,13 +13,16 @@ COMMENT= 3D triangular meshes processing and editing t LICENSE= GPLv2 +BROKEN_aarch64= fails to compile: constant expression evaluates to -1 which cannot be narrowed to type char +BROKEN_armv6= fails to compile: constant expression evaluates to -1 which cannot be narrowed to type char +BROKEN_armv7= fails to compile: constant expression evaluates to -1 which cannot be narrowed to type char +BROKEN_powerpc64= fails to compile: mc_lookup_table.h:316:5: narrowing conversion of '-1' from 'int' to 'char' inside { } + EXTRACT_DEPENDS=gtar:archivers/gtar LIB_DEPENDS= libQtSolutions_SOAP-head.so:devel/qt4-qtsolutions-soap \ libmpir.so:math/mpir -BROKEN_aarch64= Fails to compile: constant expression evaluates to -1 which cannot be narrowed to type char - -USES= dos2unix qmake compiler:c++11-lib tar:tgz +USES= compiler:c++11-lib dos2unix qmake tar:tgz USE_CXXSTD= c++11 USE_GL= glew glu USE_QT4= moc_build rcc_build uic_build corelib gui xml \ Modified: head/cad/repsnapper/Makefile ============================================================================== --- head/cad/repsnapper/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/cad/repsnapper/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -12,15 +12,16 @@ COMMENT= Controller and GCode generator for RepRap 3D LICENSE= GPLv2 BSD3CLAUSE MIT LICENSE_COMB= multi +BROKEN_powerpc64= fails to compile: clipper.hpp:52:10: 'vector' file not found + LIB_DEPENDS= libgtkglextmm-x11-1.2.so:x11-toolkits/gtkglextmm \ libpolyclipping.so:graphics/polyclipping \ libzip.so:archivers/libzip -USE_GITHUB= yes -GH_ACCOUNT= timschmidt - USES= compiler:c++11-lib autoreconf gettext gmake libtool localbase \ perl5 pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= timschmidt USE_GNOME= gtkmm24 intltool libxml++26 USE_GL= gl USE_PERL5= build Modified: head/chinese/ibus-libpinyin/Makefile ============================================================================== --- head/chinese/ibus-libpinyin/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/chinese/ibus-libpinyin/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -12,6 +12,8 @@ COMMENT= Intelligent Pinyin engine based on libpinyin LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: PYLibPinyin.cc:222:54: 'getline' was not declared in this scope + LIB_DEPENDS= libsqlite3.so:databases/sqlite3 \ libibus-1.0.so:textproc/ibus \ libpinyin.so:chinese/libpinyin Modified: head/comms/sunxi-tools/Makefile ============================================================================== --- head/comms/sunxi-tools/Makefile Mon Jun 18 01:20:28 2018 (r472664) +++ head/comms/sunxi-tools/Makefile Mon Jun 18 01:48:46 2018 (r472665) @@ -11,9 +11,10 @@ COMMENT= Tools to help hacking Allwinner devices LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.md -USE_GITHUB= yes -GH_ACCOUNT= linux-sunxi +BROKEN_powerpc64= fails to build: unrecognized command line option "-Wno-unused-result" USES= gmake pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= linux-sunxi .include From owner-svn-ports-head@freebsd.org Mon Jun 18 02:34:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3274C1012FD5; Mon, 18 Jun 2018 02:34:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D45406A0BB; Mon, 18 Jun 2018 02:34:03 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9CF261E0A5; Mon, 18 Jun 2018 02:34:03 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I2Y3MQ008335; Mon, 18 Jun 2018 02:34:03 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I2Y2Y4008332; Mon, 18 Jun 2018 02:34:02 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180234.w5I2Y2Y4008332@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 02:34:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472666 - in head/science: . py-SimpleSpectral X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . py-SimpleSpectral X-SVN-Commit-Revision: 472666 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 02:34:04 -0000 Author: yuri Date: Mon Jun 18 02:34:02 2018 New Revision: 472666 URL: https://svnweb.freebsd.org/changeset/ports/472666 Log: New port: science/py-SimpleSpectral: Simplified scipy.signal.spectral module with only pyFFTW support Added: head/science/py-SimpleSpectral/ head/science/py-SimpleSpectral/Makefile (contents, props changed) head/science/py-SimpleSpectral/distinfo (contents, props changed) head/science/py-SimpleSpectral/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Mon Jun 18 01:48:46 2018 (r472665) +++ head/science/Makefile Mon Jun 18 02:34:02 2018 (r472666) @@ -167,6 +167,7 @@ SUBDIR += py-MDAnalysisTests SUBDIR += py-OpenFermion SUBDIR += py-PyQuante + SUBDIR += py-SimpleSpectral SUBDIR += py-abipy SUBDIR += py-cdo SUBDIR += py-coards Added: head/science/py-SimpleSpectral/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-SimpleSpectral/Makefile Mon Jun 18 02:34:02 2018 (r472666) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= SimpleSpectral +DISTVERSION= 1.0.0 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Simplified scipy.signal.spectral module with only pyFFTW support + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} + +USES= python:3.4+ +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/science/py-SimpleSpectral/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-SimpleSpectral/distinfo Mon Jun 18 02:34:02 2018 (r472666) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529288885 +SHA256 (SimpleSpectral-1.0.0.tar.gz) = 869326949870faed82bf21890603569e5c834a8599be5d55c38cb3b41bef0362 +SIZE (SimpleSpectral-1.0.0.tar.gz) = 6116 Added: head/science/py-SimpleSpectral/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-SimpleSpectral/pkg-descr Mon Jun 18 02:34:02 2018 (r472666) @@ -0,0 +1,13 @@ +You can use scipy.signal tutorial and reference guide in most cases, but +there are some important differences: +* input data is assumed to be complex and two-sided spectrum is always returned + (return_onesided argument is not implemented) +* length of FFT is always same as length of segment (nfft argument is not + implemented) +* functions work always over last axis of array (axis argument is not + implemented) +* if you want to have best FFT performance with pyFFTW, you should create arrays + with empty, zeros or ones functions from SimpleSpectral instead of generic + versions from NumPy (arrays will be byte aligned for your CPU) + +WWW: https://github.com/xmikos/simplespectral From owner-svn-ports-head@freebsd.org Mon Jun 18 02:42:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E7061013274; Mon, 18 Jun 2018 02:42:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9E2316A538; Mon, 18 Jun 2018 02:42:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 809D41E238; Mon, 18 Jun 2018 02:42:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I2gfw9013561; Mon, 18 Jun 2018 02:42:41 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I2ge65013557; Mon, 18 Jun 2018 02:42:40 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180242.w5I2ge65013557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 02:42:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472667 - in head/misc: . py-SimpleSoapy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-SimpleSoapy X-SVN-Commit-Revision: 472667 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 02:42:42 -0000 Author: yuri Date: Mon Jun 18 02:42:40 2018 New Revision: 472667 URL: https://svnweb.freebsd.org/changeset/ports/472667 Log: New port: misc/py-SimpleSoapy: Simple pythonic wrapper for SoapySDR library Added: head/misc/py-SimpleSoapy/ head/misc/py-SimpleSoapy/Makefile (contents, props changed) head/misc/py-SimpleSoapy/distinfo (contents, props changed) head/misc/py-SimpleSoapy/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Jun 18 02:34:02 2018 (r472666) +++ head/misc/Makefile Mon Jun 18 02:42:40 2018 (r472667) @@ -401,6 +401,7 @@ SUBDIR += ptsort SUBDIR += pubs SUBDIR += py-PyUserInput + SUBDIR += py-SimpleSoapy SUBDIR += py-YABT SUBDIR += py-cinder SUBDIR += py-colorbrewer Added: head/misc/py-SimpleSoapy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SimpleSoapy/Makefile Mon Jun 18 02:42:40 2018 (r472667) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= SimpleSoapy +DISTVERSION= 1.5.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Simple pythonic wrapper for SoapySDR library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} + +USES= python:3.4+ +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/misc/py-SimpleSoapy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SimpleSoapy/distinfo Mon Jun 18 02:42:40 2018 (r472667) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529289388 +SHA256 (SimpleSoapy-1.5.1.tar.gz) = 14923538128676eb18d6f7e094c91d77e54a3d1199efdbf5b95520f94b15002e +SIZE (SimpleSoapy-1.5.1.tar.gz) = 6633 Added: head/misc/py-SimpleSoapy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SimpleSoapy/pkg-descr Mon Jun 18 02:42:40 2018 (r472667) @@ -0,0 +1,4 @@ +Simple pythonic wrapper for SoapySDR library allowing to connect +to SDR (Software-Defined Radio) devices. + +WWW: https://github.com/xmikos/simplesoapy From owner-svn-ports-head@freebsd.org Mon Jun 18 03:06:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A22210139BB; Mon, 18 Jun 2018 03:06:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B27A86B034; Mon, 18 Jun 2018 03:06:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93B121E5F3; Mon, 18 Jun 2018 03:06:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I36UJO024688; Mon, 18 Jun 2018 03:06:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I36TXi024684; Mon, 18 Jun 2018 03:06:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180306.w5I36TXi024684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 03:06:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472668 - in head/math: . py-pyFFTW py-pyFFTW/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-pyFFTW py-pyFFTW/files X-SVN-Commit-Revision: 472668 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 03:06:31 -0000 Author: yuri Date: Mon Jun 18 03:06:29 2018 New Revision: 472668 URL: https://svnweb.freebsd.org/changeset/ports/472668 Log: New port: math/py-pyFFTW: Pythonic wrapper around FFTW, the FFT library Added: head/math/py-pyFFTW/ head/math/py-pyFFTW/Makefile (contents, props changed) head/math/py-pyFFTW/distinfo (contents, props changed) head/math/py-pyFFTW/files/ head/math/py-pyFFTW/files/patch-setup.py (contents, props changed) head/math/py-pyFFTW/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Jun 18 02:42:40 2018 (r472667) +++ head/math/Makefile Mon Jun 18 03:06:29 2018 (r472668) @@ -696,6 +696,7 @@ SUBDIR += py-piranha SUBDIR += py-plastex SUBDIR += py-probstat + SUBDIR += py-pyFFTW SUBDIR += py-pyasp SUBDIR += py-pybloom SUBDIR += py-pycosat Added: head/math/py-pyFFTW/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyFFTW/Makefile Mon Jun 18 03:06:29 2018 (r472668) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= pyFFTW +DISTVERSION= 0.10.4 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Pythonic wrapper around FFTW, the FFT library + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= ${PYNUMPY} +LIB_DEPENDS= libfftw3.so:math/fftw3 \ + libfftw3f.so:math/fftw3-float +RUN_DEPENDS= ${PYNUMPY} + +USES= python localbase:ldflags +USE_PYTHON= distutils cython autoplist + +.include Added: head/math/py-pyFFTW/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyFFTW/distinfo Mon Jun 18 03:06:29 2018 (r472668) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529290455 +SHA256 (pyFFTW-0.10.4.tar.gz) = 739b436b7c0aeddf99a48749380260364d2dc027cf1d5f63dafb5f50068ede1a +SIZE (pyFFTW-0.10.4.tar.gz) = 365496 Added: head/math/py-pyFFTW/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyFFTW/files/patch-setup.py Mon Jun 18 03:06:29 2018 (r472668) @@ -0,0 +1,13 @@ +--- setup.py.orig 2016-06-06 16:40:50 UTC ++++ setup.py +@@ -121,8 +121,8 @@ def get_libraries(): + libraries = ['libfftw3-3', 'libfftw3f-3', 'libfftw3l-3'] + + else: +- libraries = ['fftw3', 'fftw3f', 'fftw3l', 'fftw3_threads', +- 'fftw3f_threads', 'fftw3l_threads'] ++ libraries = ['fftw3', 'fftw3f', 'fftw3_threads', ++ 'fftw3f_threads'] + + return libraries + Added: head/math/py-pyFFTW/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyFFTW/pkg-descr Mon Jun 18 03:06:29 2018 (r472668) @@ -0,0 +1,10 @@ +pyFFTW is a pythonic wrapper around FFTW, the speedy FFT library. The ultimate +aim is to present a unified interface for all the possible transforms that FFTW +can perform. + +Both the complex DFT and the real DFT are supported, as well as on arbitrary +axes of abitrary shaped and strided arrays, which makes it almost feature +equivalent to standard and real FFT functions of numpy.fft (indeed, it supports +the clongdouble dtype which numpy.fft does not). + +WWW: http://hgomersall.github.io/pyFFTW/ From owner-svn-ports-head@freebsd.org Mon Jun 18 03:13:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD56C1013EC0; Mon, 18 Jun 2018 03:13:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 73BE96B4D4; Mon, 18 Jun 2018 03:13:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3BBBE1E7B3; Mon, 18 Jun 2018 03:13:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I3D2vC030090; Mon, 18 Jun 2018 03:13:02 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I3D1fN030086; Mon, 18 Jun 2018 03:13:01 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180313.w5I3D1fN030086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 03:13:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472669 - in head/misc: . py-soapy_power X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-soapy_power X-SVN-Commit-Revision: 472669 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 03:13:03 -0000 Author: yuri Date: Mon Jun 18 03:13:01 2018 New Revision: 472669 URL: https://svnweb.freebsd.org/changeset/ports/472669 Log: New port: misc/py-soapy_power: Obtain power spectrum from SoapySDR devices Added: head/misc/py-soapy_power/ head/misc/py-soapy_power/Makefile (contents, props changed) head/misc/py-soapy_power/distinfo (contents, props changed) head/misc/py-soapy_power/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Jun 18 03:06:29 2018 (r472668) +++ head/misc/Makefile Mon Jun 18 03:13:01 2018 (r472669) @@ -429,6 +429,7 @@ SUBDIR += py-qt5-demo SUBDIR += py-scikit-fusion SUBDIR += py-serverfiles + SUBDIR += py-soapy_power SUBDIR += py-socli SUBDIR += py-spdx SUBDIR += py-spdx-lookup Added: head/misc/py-soapy_power/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-soapy_power/Makefile Mon Jun 18 03:13:01 2018 (r472669) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= soapy_power +DISTVERSION= 1.6.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Obtain power spectrum from SoapySDR devices + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pyFFTW>0:math/py-pyFFTW@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}SimpleSoapy>=1.5.0:misc/py-SimpleSoapy@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}SimpleSpectral>0:science/py-SimpleSpectral@${FLAVOR} + +USES= python:3.4+ +USE_PYTHON= distutils concurrent autoplist + +.include Added: head/misc/py-soapy_power/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-soapy_power/distinfo Mon Jun 18 03:13:01 2018 (r472669) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529288619 +SHA256 (soapy_power-1.6.1.tar.gz) = b5e54841ac2aa85addd60c11077efedad1800a27b998e90fbc656fcc9eaf52e5 +SIZE (soapy_power-1.6.1.tar.gz) = 18956 Added: head/misc/py-soapy_power/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-soapy_power/pkg-descr Mon Jun 18 03:13:01 2018 (r472669) @@ -0,0 +1,4 @@ +Obtain power spectrum from SoapySDR devices +(RTL-SDR, Airspy, SDRplay, HackRF, bladeRF, USRP, LimeSDR, etc.) + +WWW: https://github.com/xmikos/soapy_power From owner-svn-ports-head@freebsd.org Mon Jun 18 03:49:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CE7210153BD; Mon, 18 Jun 2018 03:49:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39C7F6C6A1; Mon, 18 Jun 2018 03:49:19 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 14D401ECD8; Mon, 18 Jun 2018 03:49:19 +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 w5I3nIvT046156; Mon, 18 Jun 2018 03:49:18 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I3nAdu046106; Mon, 18 Jun 2018 03:49:10 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806180349.w5I3nAdu046106@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 03:49:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472670 - in head: databases/fastdb databases/galera databases/hamsterdb databases/postgresql-plruby databases/rocksdb deskutils/easystroke deskutils/gnome-clocks deskutils/showdown des... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: databases/fastdb databases/galera databases/hamsterdb databases/postgresql-plruby databases/rocksdb deskutils/easystroke deskutils/gnome-clocks deskutils/showdown deskutils/xneur devel/aarch6... X-SVN-Commit-Revision: 472670 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 03:49:20 -0000 Author: linimon Date: Mon Jun 18 03:49:09 2018 New Revision: 472670 URL: https://svnweb.freebsd.org/changeset/ports/472670 Log: Mark ports broken on powerpc64, categories d-f. While here, pet portlint and do some other cleanup. Approved by: portmgr (tier-2 blanket) Modified: head/databases/fastdb/Makefile head/databases/galera/Makefile head/databases/hamsterdb/Makefile head/databases/postgresql-plruby/Makefile head/databases/rocksdb/Makefile head/deskutils/easystroke/Makefile head/deskutils/gnome-clocks/Makefile head/deskutils/showdown/Makefile head/deskutils/xneur/Makefile head/devel/aarch64-none-elf-gcc/Makefile head/devel/astyle/Makefile head/devel/bcc/Makefile head/devel/catch/Makefile head/devel/chromium-gn/Makefile head/devel/cltune/Makefile head/devel/codeblocks/Makefile head/devel/concurrencykit/Makefile head/devel/cpprestsdk/Makefile head/devel/cquery/Makefile head/devel/doxygen/Makefile head/devel/eric6/Makefile head/devel/flatbuffers/Makefile head/devel/fuzzylite/Makefile head/devel/gearmand-devel/Makefile head/devel/gearmand/Makefile head/devel/gitg0/Makefile head/devel/jna/Makefile head/devel/libosmocore/Makefile head/devel/libspice-server/Makefile head/devel/llbuild/Makefile head/devel/mongo-cxx-driver/Makefile head/devel/py-bullet3/Makefile head/devel/py-pip-tools/Makefile head/devel/rlvm/Makefile head/devel/ruby-qtruby-kde4/Makefile head/devel/smack/Makefile head/devel/thrift/Makefile head/devel/uatraits/Makefile head/dns/dnsdbq/Makefile head/dns/mdnsd/Makefile head/editors/pdfedit/Makefile head/editors/tea/Makefile head/finance/quickfix/Makefile Modified: head/databases/fastdb/Makefile ============================================================================== --- head/databases/fastdb/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/databases/fastdb/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,10 +12,8 @@ COMMENT= Main Memory Relational Database Management Sy LICENSE= MIT -WRKSRC= ${WRKDIR}/${PORTNAME} +BROKEN_powerpc64= fails to compile: unrecognized command line option "-std=gnu++03" -OPTIONS_DEFINE= DOCS - USES= gmake dos2unix USE_GCC= any MAKE_ENV= OSTYPE="${OPSYS}" @@ -23,6 +21,10 @@ MAKEFILE= makefile USE_LDCONFIG= yes DOS2UNIX_FILES= ${MAKEFILE} CXXFLAGS+= -D_WANT_SEMUN + +WRKSRC= ${WRKDIR}/${PORTNAME} + +OPTIONS_DEFINE= DOCS PORTDOCS= FastDB.htm Modified: head/databases/galera/Makefile ============================================================================== --- head/databases/galera/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/databases/galera/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -3,8 +3,8 @@ PORTNAME= galera PORTVERSION?= 25.3.23 -PORTREVISION= 1 DISTVERSIONPREFIX?= release_ +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= devel@galeracluster.com @@ -12,15 +12,12 @@ COMMENT= Synchronous multi-master replication engine LICENSE= GPLv2 -BUILD_DEPENDS= checkmk:devel/check \ - ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs -LIB_DEPENDS= libboost_date_time.so:devel/boost-libs - BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= check that SSL devel headers are installed and usable 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' BROKEN_armv7= fails to compile: gu_int128.h: use of undeclared identifier '__bswap64_var' +BROKEN_powerpc64= fails to configure: Checking for C library pthread... no NOT_FOR_ARCHS= i386 # On i386 older versions of clang produce: # cannot compile this atomic library call yet ... __atomic_add_fetch @@ -31,6 +28,10 @@ NOT_FOR_ARCHS= i386 # https://bugs.llvm.org//show_bug.cgi?id=24908 # https://tracker.crystax.net/issues/1263 NOT_FOR_ARCHS_REASON_i386=Uses 64 bit atomics that clang cannot generate on i386 + +BUILD_DEPENDS= checkmk:devel/check \ + ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs +LIB_DEPENDS= libboost_date_time.so:devel/boost-libs USES= python:build scons ssl Modified: head/databases/hamsterdb/Makefile ============================================================================== --- head/databases/hamsterdb/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/databases/hamsterdb/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,14 +12,16 @@ COMMENT= Lightweight Embedded Database Engine LICENSE= APACHE20 +BROKEN_powerpc64= fails to configure: checking for the Boost system library... no + BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs +USES= alias gmake libtool +USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-boost=${LOCALBASE} INSTALL_TARGET= install-strip CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -USES= alias gmake libtool -USE_LDCONFIG= yes HAM_DOCS= README INSTALL ChangeLog TODO AUTHORS CREDITS Modified: head/databases/postgresql-plruby/Makefile ============================================================================== --- head/databases/postgresql-plruby/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/databases/postgresql-plruby/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,13 +13,15 @@ COMMENT= PL/Ruby procedural language for the PostgreSQ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_GITHUB= yes -GH_ACCOUNT= devrimgunduz +BROKEN_powerpc64= fails to build: ruby.h:628:35: call to 'ruby_safe_level_2_error' declared with attribute error: $SAFE=2 to 4 are obsolete USES= uidfix pgsql WANT_PGSQL= server USE_RUBY= yes USE_RUBY_EXTCONF= yes + +USE_GITHUB= yes +GH_ACCOUNT= devrimgunduz POSTGRESQL_PORT?= databases/postgresql${PGSQL_VER_NODOT}-server PGSQL_PORTDIR?= ${PORTSDIR}/${POSTGRESQL_PORT} Modified: head/databases/rocksdb/Makefile ============================================================================== --- head/databases/rocksdb/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/databases/rocksdb/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -17,6 +17,7 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING BROKEN_DragonFly= does not build on DragonFly BSD using GCC with -Werror BROKEN_armv6?= does not build: db/c.cc:2281:44: implicit conversion loses integer precision: 'uint64_t' (aka 'unsigned long long') to 'size_t' (aka 'unsigned int') BROKEN_armv7?= does not build: /nxb-bin/usr/bin/ld: undefined reference to symbol `__gnu_Unwind_Find_exidx@@FBSD_1.4' (try adding -lc) #'` +BROKEN_powerpc64= does not build: util/crc32c.cc:435:22: 'arch_ppc_probe' was not declared in this scope BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libgflags.so:devel/gflags \ @@ -25,6 +26,7 @@ LIB_DEPENDS= libgflags.so:devel/gflags \ OPTIONS_DEFINE= DEBUG LZ4 ZSTD OPTIONS_DEFAULT=LZ4 +USES= compiler:c++11-lib gmake localbase:ldflags shebangfix ALL_TARGET= shared_lib static_lib all CFLAGS+= -DOS_FREEBSD CONFIGURE_ARGS= make_config.mk @@ -34,7 +36,6 @@ HAS_CONFIGURE= yes MAKE_ENV= CXX=${CXX} INSTALL_PATH=${STAGEDIR}${PREFIX} USE_CXXSTD= c++11 USE_LDCONFIG= yes -USES= compiler:c++11-lib gmake localbase:ldflags shebangfix PLIST_SUB= PORTVERSION=${PORTVERSION} SHLIB_MAJOR=${PORTVERSION:R:R} SHLIB_MINOR=${PORTVERSION:R:E} PORTDATA= make_config.mk Modified: head/deskutils/easystroke/Makefile ============================================================================== --- head/deskutils/easystroke/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/deskutils/easystroke/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,15 +13,17 @@ COMMENT= Easystroke is a gesture-recognition applicati LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to build: handler.cc:560:27: call of overloaded 'abs(float&)' is ambiguous + BUILD_DEPENDS= help2man:misc/help2man \ ${LOCALBASE}/include/xorg/xserver-properties.h:x11-servers/xorg-server LIB_DEPENDS= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ libboost_serialization.so:devel/boost-libs +USES= compiler:c++11-lang gettext gmake pkgconfig USE_GNOME= gtkmm30 USE_XORG= x11 xext xfixes xi xtst -USES= compiler:c++11-lang gettext gmake pkgconfig USE_CXXSTD= c++11 INSTALLS_ICONS= yes Modified: head/deskutils/gnome-clocks/Makefile ============================================================================== --- head/deskutils/gnome-clocks/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/deskutils/gnome-clocks/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ COMMENT= Clocks for GNOME 3 LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-unused-but-set-variable" + BUILD_DEPENDS= itstool:textproc/itstool \ vala:lang/vala LIB_DEPENDS= libgeoclue-2.so:net/geoclue \ Modified: head/deskutils/showdown/Makefile ============================================================================== --- head/deskutils/showdown/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/deskutils/showdown/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -10,6 +10,8 @@ COMMENT= Simple markdown viewer, written in Vala and G LICENSE= GPLv3 +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-incompatible-pointer-types" + BUILD_DEPENDS= ${LOCALBASE}/lib/libmarkdown.a:textproc/discount \ valac:lang/vala LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ Modified: head/deskutils/xneur/Makefile ============================================================================== --- head/deskutils/xneur/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/deskutils/xneur/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -3,8 +3,8 @@ PORTNAME= xneur PORTVERSION= 0.17.0 -PORTREVISION= 4 DISTVERSIONSUFFIX=.orig +PORTREVISION= 4 CATEGORIES= deskutils MASTER_SITES= https://launchpad.net/~andrew-crew-kuznetsov/+archive/xneur-stable/+files/ DISTNAME= ${PORTNAME}_${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} @@ -13,6 +13,8 @@ MAINTAINER= admin@lissyara.su COMMENT= Auto keyboard switcher LICENSE= GPLv2 + +BROKEN_powerpc64= fails to compile: text.c:272: nested functions are disabled, use -fnested-functions to re-enable LIB_DEPENDS= libnotify.so:devel/libnotify \ libpcre.so:devel/pcre Modified: head/devel/aarch64-none-elf-gcc/Makefile ============================================================================== --- head/devel/aarch64-none-elf-gcc/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/aarch64-none-elf-gcc/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,6 +12,7 @@ INSTALL_TARGET= install-gcc install-target-libgcc BROKEN_aarch64= fails to package BROKEN_mips= configure: error: cannot compute suffix of object files: cannot compile BROKEN_mips64= configure: error: cannot compute suffix of object files: cannot compile +BROKEN_powerpc64= fails to compile: libgcc2.c:1846:9: internal compiler error: Segmentation fault MASTERDIR= ${.CURDIR}/../powerpc64-gcc Modified: head/devel/astyle/Makefile ============================================================================== --- head/devel/astyle/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/astyle/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ COMMENT= Source code indenter and formatter for C, C++ LICENSE= MIT LICENSE_FILE= ${WRKDIR}/astyle/LICENSE.md +BROKEN_powerpc64= fails to build: unrecognized command line option "-std=c++11" + USES= compiler:c++11-lang dos2unix gmake ALL_TARGET= astyle Modified: head/devel/bcc/Makefile ============================================================================== --- head/devel/bcc/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/bcc/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,10 +13,11 @@ COMMENT= Bruce's C compiler (with as and ld); can do 1 LICENSE= GPLv2 +BROKEN_aarch64= fails to link: error adding symbols: File in wrong format +BROKEN_powerpc64= fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc + USES= uidfix CONFLICTS= bin86-[0-9]* dev86-[0-9]* - -BROKEN_aarch64= Fails to link: error adding symbols: File in wrong format .include Modified: head/devel/catch/Makefile ============================================================================== --- head/devel/catch/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/catch/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,6 +12,8 @@ COMMENT= Header-only test framework for C++ LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN_powerpc64= fails to compile: catch_tostring.cpp:206:21: comparison is always true due to limited range of data type + USES= compiler:c++14-lang cmake pathfix USE_GITHUB= yes GH_ACCOUNT= catchorg Modified: head/devel/chromium-gn/Makefile ============================================================================== --- head/devel/chromium-gn/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/chromium-gn/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -8,6 +8,8 @@ COMMENT= Gn meta build framework MASTERDIR= ${.CURDIR}/../../www/chromium +BROKEN_powerpc64= fails to compile: safe_math_clang_gcc_impl.h:132:45: '__builtin_subcb' was not declared in this scope + BUILDTYPE= Release NO_BUILD= yes Modified: head/devel/cltune/Makefile ============================================================================== --- head/devel/cltune/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/cltune/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,16 +11,17 @@ COMMENT= Library to tune OpenCL kernels LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to build: GCC version must be at least 4.7 + BUILD_DEPENDS= opencl>=0:devel/opencl LIB_DEPENDS= libOpenCL.so:devel/ocl-icd RUN_DEPENDS= opencl>=0:devel/opencl +USES= cmake +USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= CNugteren GH_PROJECT= CLTune - -USE_LDCONFIG= yes -USES= cmake PLIST_FILES= include/cltune.h \ lib/libcltune.so \ Modified: head/devel/codeblocks/Makefile ============================================================================== --- head/devel/codeblocks/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/codeblocks/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -14,6 +14,8 @@ COMMENT= Open source, cross-platform, free C/C++ IDE LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi +BROKEN_powerpc64= fails to configure: checking for exit in -lboost_system-boost_system... no + BUILD_DEPENDS= zip:archivers/zip LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libfontconfig.so:x11-fonts/fontconfig \ Modified: head/devel/concurrencykit/Makefile ============================================================================== --- head/devel/concurrencykit/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/concurrencykit/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -15,9 +15,10 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 sparc64 -BROKEN_aarch64= Fails to configure: Detecting machine architecture...failed [unsupported] -BROKEN_armv6= Fails to configure: Finding suitable compiler........failed [not found] -BROKEN_armv7= Fails to configure: Finding suitable compiler........failed [not found] +BROKEN_aarch64= fails to configure: Detecting machine architecture...failed [unsupported] +BROKEN_armv6= fails to configure: Finding suitable compiler........failed [not found] +BROKEN_armv7= fails to configure: Finding suitable compiler........failed [not found] +BROKEN_powerpc64= fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc OPTIONS_DEFINE= RTM VMAPACK OPTIONS_DEFAULT= VMAPACK Modified: head/devel/cpprestsdk/Makefile ============================================================================== --- head/devel/cpprestsdk/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/cpprestsdk/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -14,11 +14,10 @@ LICENSE_FILE= ${WRKSRC}/../license.txt LIB_DEPENDS= libboost_system.so:devel/boost-libs -USE_GITHUB= yes -GH_ACCOUNT= Microsoft - USES= cmake compiler:c++11-lib ssl USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= Microsoft WRKSRC_SUBDIR= Release CMAKE_OFF= BUILD_SAMPLES BUILD_TESTS Modified: head/devel/cquery/Makefile ============================================================================== --- head/devel/cquery/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/cquery/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -10,6 +10,8 @@ COMMENT= Highly-scalable, low-latency language server LICENSE= MIT +BROKEN_powerpc64= fails to build: Checking for 'clang++' (C++ compiler): not found + BUILD_DEPENDS= llvm-config60:devel/llvm60 LIB_DEPENDS= libclang.so:devel/llvm60 Modified: head/devel/doxygen/Makefile ============================================================================== --- head/devel/doxygen/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/doxygen/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -15,6 +15,8 @@ COMMENT= Documentation system for C, C++, and other la LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to link: ../lib/lib_doxygen.a(language.cpp.o)(.text+0xb6c): sibling call optimization to `_ZN12ConfigValuesD1Ev' does not allow automatic multiple TOCs + USES= bison cmake:outsource,noninja iconv python shebangfix ALL_TARGET= all CMAKE_ARGS+= -DDOC_INSTALL_DIR:PATH=${DOCSDIR_REL} Modified: head/devel/eric6/Makefile ============================================================================== --- head/devel/eric6/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/eric6/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -2,8 +2,10 @@ # $FreeBSD$ PKGNAMESUFFIX= -${FLAVOR:U:S/_/-/} -CATEGORIES= devel python DISTNAME= ${PORTNAME}-nolang-${DISTVERSION} +CATEGORIES= devel python + +BROKEN_powerpc64= fails to link: libstdc++.so.6: version GLIBCXX_3.4.14 required by /usr/local/lib/qt4/libqscintilla2_qt4.so.13 not found BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/PyQt${PYQTVER}/QtGui.so:x11-toolkits/py-qt${PYQTVER}-gui@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/PyQt${PYQTVER}/Qsci.so:devel/py-qt${PYQTVER}-qscintilla2@${PY_FLAVOR} Modified: head/devel/flatbuffers/Makefile ============================================================================== --- head/devel/flatbuffers/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/flatbuffers/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,6 +12,8 @@ COMMENT= Memory efficient serialization library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN_powerpc64= fails to compile: base.h:189:32: use of deleted function flatbuffers::EndianSwap(T) + USES= cmake:outsource compiler:c++11-lib USE_LDCONFIG= yes USE_GITHUB= yes Modified: head/devel/fuzzylite/Makefile ============================================================================== --- head/devel/fuzzylite/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/fuzzylite/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,6 +11,8 @@ COMMENT= Fuzzy logic control library in C++ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-type-limits" + USES= cmake:outsource compiler USE_GITHUB= yes USE_LDCONFIG= yes Modified: head/devel/gearmand-devel/Makefile ============================================================================== --- head/devel/gearmand-devel/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/gearmand-devel/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,6 +11,9 @@ PKGNAMESUFFIX= -devel MAINTAINER= bdrewery@FreeBSD.org COMMENT= Gearman C Server and Library +BROKEN_sparc64= fails to build: cannot link with boost +BROKEN_powerpc64= fails to build: checking for the Boost program_options library... no + BUILD_DEPENDS= boost-libs>=0:devel/boost-libs \ ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} LIB_DEPENDS= libevent.so:devel/libevent \ @@ -21,11 +24,9 @@ CONFLICTS= p5-Gearman-Server-1.* gearmand-1.0.* USERS= gearmand GROUPS= gearmand -BROKEN_sparc64= Does not build: cannot link with boost - +USES= pathfix perl5 gmake gperf libtool python:build USE_PERL5= build GNU_CONFIGURE= yes -USES= pathfix perl5 gmake gperf libtool python:build USE_LDCONFIG= yes USE_RC_SUBR= gearmand SUB_LIST+= USERS=${USERS} GROUPS=${GROUPS} Modified: head/devel/gearmand/Makefile ============================================================================== --- head/devel/gearmand/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/gearmand/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -10,6 +10,9 @@ MASTER_SITES= http://launchpad.net/gearmand/1.0/${PORT MAINTAINER= bdrewery@FreeBSD.org COMMENT= Gearman C Server and Library +BROKEN_sparc64= fails to build: cannot link with boost +BROKEN_powerpc64= fails to build: checking for the Boost program_options library... no + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \ libevent.so:devel/libevent \ @@ -20,11 +23,9 @@ CONFLICTS= p5-Gearman-Server-1.* gearmand-1.1.* USERS= gearmand GROUPS= gearmand -BROKEN_sparc64= Does not build: cannot link with boost - +USES= pathfix gmake perl5 python:build libtool USE_PERL5= build GNU_CONFIGURE= yes -USES= pathfix gmake perl5 python:build libtool USE_LDCONFIG= yes USE_RC_SUBR= gearmand SUB_LIST+= USERS=${USERS} GROUPS=${GROUPS} Modified: head/devel/gitg0/Makefile ============================================================================== --- head/devel/gitg0/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/gitg0/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -14,6 +14,8 @@ COMMENT= GTK-based git repository viewer (gtk2 version LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to link: gitg-branch-actions.o(.text+0x46c): unresolvable R_PPC64_REL24 relocation against symbol gitg_revision_get_subject + RUN_DEPENDS= git:devel/git CONFLICTS= gitg-[0-9]* Modified: head/devel/jna/Makefile ============================================================================== --- head/devel/jna/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/jna/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -15,6 +15,7 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.AL BROKEN_armv6= fails to compile: build.xml: compilation failed BROKEN_armv7= fails to compile: build.xml: compilation failed +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-unknown-warning-option" USES= autoreconf:build gmake libtool USE_ANT= yes Modified: head/devel/libosmocore/Makefile ============================================================================== --- head/devel/libosmocore/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/libosmocore/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ COMMENT= Common library for all Osmocom projects LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: application.c:179: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= libpcsclite.so:devel/pcsc-lite \ libtalloc.so:devel/talloc Modified: head/devel/libspice-server/Makefile ============================================================================== --- head/devel/libspice-server/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/libspice-server/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ COMMENT= Implements the server side of the SPICE proto LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: red-channel-client.h:44: redefinition of typedef 'RedChannelClient' + LIB_DEPENDS= libopus.so:audio/opus BUILD_DEPENDS= spice-protocol>=0.12.10:devel/spice-protocol Modified: head/devel/llbuild/Makefile ============================================================================== --- head/devel/llbuild/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/llbuild/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ LICENSE= APACHE20 BSD3CLAUSE NCSA LICENSE_COMB= multi LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.txt +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wdocumentation" + LIB_DEPENDS= libsqlite3.so:databases/sqlite3 USES= cmake:outsource Modified: head/devel/mongo-cxx-driver/Makefile ============================================================================== --- head/devel/mongo-cxx-driver/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/mongo-cxx-driver/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/APACHE-2.0.txt BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= use of undeclared identifier 'BIO_s_file_internal' +BROKEN_powerpc64= fails to configure: Checking for C++ library boost_regex... no LIB_DEPENDS= libboost_system.so:devel/boost-libs Modified: head/devel/py-bullet3/Makefile ============================================================================== --- head/devel/py-bullet3/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/py-bullet3/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,6 +11,8 @@ COMMENT= Python version of 3D collision detection libr LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN_powerpc64= fails to compile: FontData.h:265:1: narrowing conversion of '-96' from 'int' to 'char' inside { } + USES= compiler:c++11-lang localbase python USE_GITHUB= yes GH_ACCOUNT= bulletphysics Modified: head/devel/py-pip-tools/Makefile ============================================================================== --- head/devel/py-pip-tools/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/py-pip-tools/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,14 +13,16 @@ COMMENT= Keep your pinned dependencies fresh LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 6865: ordinal not in range(128) + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=6:devel/py-click@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}first>=0:devel/py-first@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} NO_ARCH= yes +USES= python USE_LOCALE= en_US.UTF-8 USE_PYTHON= autoplist concurrent distutils -USES= python .include Modified: head/devel/rlvm/Makefile ============================================================================== --- head/devel/rlvm/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/rlvm/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ COMMENT= RealLive virtual machine clone LICENSE= GPLv2 GPLv3 MIT LICENSE_COMB= multi +BROKEN_powerpc64= fails to link: gcn_platform.cc: undefined reference to gcn::Exception::Exception + BUILD_DEPENDS= ${LOCALBASE}/include/utf8.h:devel/utf8cpp LIB_DEPENDS= libvorbisfile.so:audio/libvorbis \ libboost_serialization.so:devel/boost-libs \ Modified: head/devel/ruby-qtruby-kde4/Makefile ============================================================================== --- head/devel/ruby-qtruby-kde4/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/ruby-qtruby-kde4/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -9,6 +9,8 @@ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} MAINTAINER= kde@FreeBSD.org COMMENT= Ruby bindings for Qt +BROKEN_powerpc64= fails to compile: ruby.h:1381: wrong number of arguments specified for '__deprecated__' attribute + LIB_DEPENDS= libqwt.so:x11-toolkits/qwt5 \ libqscintilla2_qt4.so:devel/qscintilla2 Modified: head/devel/smack/Makefile ============================================================================== --- head/devel/smack/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/smack/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,6 +11,8 @@ COMMENT= Low-level I/O storage library which packs dat LICENSE= GPLv2 +BROKEN_powerpc64= fails to build: libboost_filesystem.so: undefined reference to std::__cxx11::basic_string + LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \ libsnappy.so:archivers/snappy Modified: head/devel/thrift/Makefile ============================================================================== --- head/devel/thrift/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/thrift/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,6 +12,8 @@ COMMENT= Framework for scalable cross-language service LICENSE= APACHE20 +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-c++11-long-long" + USES= autoreconf libtool pkgconfig GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/devel/uatraits/Makefile ============================================================================== --- head/devel/uatraits/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/devel/uatraits/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -10,6 +10,8 @@ MASTER_SITES= http://people.freebsd.org/~demon/ MAINTAINER= demon@FreeBSD.org COMMENT= User-Agent detection library +BROKEN_powerpc64= fails to link: checking linkage with boost::test... no + LIB_DEPENDS= ${PY_BOOST} \ libpcre.so:devel/pcre \ libxml2.so:textproc/libxml2 Modified: head/dns/dnsdbq/Makefile ============================================================================== --- head/dns/dnsdbq/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/dns/dnsdbq/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -13,6 +13,8 @@ LICENSE_COMB= multi LICENSE_FILE_APACHE20= ${WRKSRC}/Apache-2.0 LICENSE_FILE_ISCL= ${WRKSRC}/ISC +BROKEN_powerpc64= fails to compile: dnsdbq.c:817: passing argument 1 of 'curl_global_init' with different width due to prototype + LIB_DEPENDS= libjansson.so:devel/jansson \ libcurl.so:ftp/curl Modified: head/dns/mdnsd/Makefile ============================================================================== --- head/dns/mdnsd/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/dns/mdnsd/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -15,6 +15,8 @@ COMMENT= Advertise a service via Rendezvous LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wpedantic" + USES= cmake:outsource USE_GITHUB= yes GH_ACCOUNT= Pro Modified: head/editors/pdfedit/Makefile ============================================================================== --- head/editors/pdfedit/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/editors/pdfedit/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -12,6 +12,9 @@ COMMENT= PDF document manipulating library LICENSE= GPLv2 +BROKEN_powerpc64= fails to configure: error: Could not link against boost_program_options +BROKEN_sparc64= fails to configure: error: Could not link against boost_program_options + LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png \ @@ -33,8 +36,6 @@ INSTALL_TARGET= install install-tools PORTDOCS= Changelog README AUTHORS OPTIONS_DEFINE= DOCS - -BROKEN_sparc64= Fails to configure: error: Could not link against boost_program_options post-extract: ${INSTALL_DATA} ${WRKSRC}/doc/AUTHORS ${WRKSRC} Modified: head/editors/tea/Makefile ============================================================================== --- head/editors/tea/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/editors/tea/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,6 +11,8 @@ COMMENT= Simple and powerful Qt-based text editor LICENSE= GPLv3 +BROKEN_powerpc64= fails to link: spellchecker.o:(.text+0xd2c): undefined reference to Hunspell::remove(std::string const&) + OPTIONS_SINGLE= TOOLKITS OPTIONS_SINGLE_TOOLKITS= QT4 QT5 OPTIONS_DEFINE= DOCS Modified: head/finance/quickfix/Makefile ============================================================================== --- head/finance/quickfix/Makefile Mon Jun 18 03:13:01 2018 (r472669) +++ head/finance/quickfix/Makefile Mon Jun 18 03:49:09 2018 (r472670) @@ -11,6 +11,8 @@ COMMENT= Free FIX Protocol Implementation LICENSE= GPLv3+ +BROKEN_powerpc64= fails to configure: unable to find set_terminate in std or global namespace + BUILD_DEPENDS= bash:shells/bash USES= gmake iconv libtool shebangfix ssl From owner-svn-ports-head@freebsd.org Mon Jun 18 04:16:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40F051015D04; Mon, 18 Jun 2018 04:16:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E40F96D3FE; Mon, 18 Jun 2018 04:16:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C01B41F1B0; Mon, 18 Jun 2018 04:16: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 w5I4GKcT061710; Mon, 18 Jun 2018 04:16:20 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I4GJUt061701; Mon, 18 Jun 2018 04:16:19 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806180416.w5I4GJUt061701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 04:16:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472671 - in head: converters/rcctools deskutils/xneur multimedia/xmms-skins sysutils/colorize X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: converters/rcctools deskutils/xneur multimedia/xmms-skins sysutils/colorize X-SVN-Commit-Revision: 472671 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 04:16:21 -0000 Author: linimon Date: Mon Jun 18 04:16:19 2018 New Revision: 472671 URL: https://svnweb.freebsd.org/changeset/ports/472671 Log: Reset maintainer: email bounces. Modified: head/converters/rcctools/Makefile head/deskutils/xneur/Makefile head/multimedia/xmms-skins/Makefile head/sysutils/colorize/Makefile Modified: head/converters/rcctools/Makefile ============================================================================== --- head/converters/rcctools/Makefile Mon Jun 18 03:49:09 2018 (r472670) +++ head/converters/rcctools/Makefile Mon Jun 18 04:16:19 2018 (r472671) @@ -7,7 +7,7 @@ PORTREVISION= 4 CATEGORIES= converters MASTER_SITES= SF/rusxmms/${PORTNAME}/${PORTVERSION} -MAINTAINER= admin@lissyara.su +MAINTAINER= ports@FreeBSD.org COMMENT= Charset conversion utility with language and encoding autodetection LIB_DEPENDS= librcc.so:devel/librcc Modified: head/deskutils/xneur/Makefile ============================================================================== --- head/deskutils/xneur/Makefile Mon Jun 18 03:49:09 2018 (r472670) +++ head/deskutils/xneur/Makefile Mon Jun 18 04:16:19 2018 (r472671) @@ -9,7 +9,7 @@ CATEGORIES= deskutils MASTER_SITES= https://launchpad.net/~andrew-crew-kuznetsov/+archive/xneur-stable/+files/ DISTNAME= ${PORTNAME}_${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} -MAINTAINER= admin@lissyara.su +MAINTAINER= ports@FreeBSD.org COMMENT= Auto keyboard switcher LICENSE= GPLv2 Modified: head/multimedia/xmms-skins/Makefile ============================================================================== --- head/multimedia/xmms-skins/Makefile Mon Jun 18 03:49:09 2018 (r472670) +++ head/multimedia/xmms-skins/Makefile Mon Jun 18 04:16:19 2018 (r472671) @@ -90,7 +90,7 @@ DISTFILES= AbsoluteE_Xmms.zip \ xmms-256.zip EXTRACT_ONLY= -MAINTAINER= admin@lissyara.su +MAINTAINER= ports@FreeBSD.org COMMENT= Skins for X Multimedia System (XMMS) CONFLICTS_INSTALL= xmms-skins-huge-* Modified: head/sysutils/colorize/Makefile ============================================================================== --- head/sysutils/colorize/Makefile Mon Jun 18 03:49:09 2018 (r472670) +++ head/sysutils/colorize/Makefile Mon Jun 18 04:16:19 2018 (r472671) @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v PORTREVISION= 1 CATEGORIES= sysutils -MAINTAINER= admin@lissyara.su +MAINTAINER= ports@FreeBSD.org COMMENT= Robust log colorizer LICENSE= GPLv2 From owner-svn-ports-head@freebsd.org Mon Jun 18 04:59:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC5361016DA3; Mon, 18 Jun 2018 04:59:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9FDC76E89B; Mon, 18 Jun 2018 04:59: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8115F1F827; Mon, 18 Jun 2018 04:59: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 w5I4xfSe082535; Mon, 18 Jun 2018 04:59:41 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I4xetT082530; Mon, 18 Jun 2018 04:59:40 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806180459.w5I4xetT082530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 18 Jun 2018 04:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472672 - in head/shells: . zsh-antigen zsh-antigen/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/shells: . zsh-antigen zsh-antigen/files X-SVN-Commit-Revision: 472672 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 04:59:42 -0000 Author: tobik Date: Mon Jun 18 04:59:40 2018 New Revision: 472672 URL: https://svnweb.freebsd.org/changeset/ports/472672 Log: New port: shells/zsh-antigen Antigen is a small set of functions that help you easily manage your Z shell (zsh) plugins, called bundles. The concept is pretty much the same as bundles in a typical vim+pathogen setup. Antigen is to zsh, what Vundle is to vim. WWW: https://github.com/zsh-users/antigen PR: 217706 Submitted by: Victor Added: head/shells/zsh-antigen/ head/shells/zsh-antigen/Makefile (contents, props changed) head/shells/zsh-antigen/distinfo (contents, props changed) head/shells/zsh-antigen/files/ head/shells/zsh-antigen/files/pkg-message.in (contents, props changed) head/shells/zsh-antigen/pkg-descr (contents, props changed) Modified: head/shells/Makefile Modified: head/shells/Makefile ============================================================================== --- head/shells/Makefile Mon Jun 18 04:16:19 2018 (r472671) +++ head/shells/Makefile Mon Jun 18 04:59:40 2018 (r472672) @@ -49,6 +49,7 @@ SUBDIR += wcd SUBDIR += xonsh SUBDIR += zsh + SUBDIR += zsh-antigen SUBDIR += zsh-navigation-tools .include Added: head/shells/zsh-antigen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/Makefile Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= zsh-antigen +DISTVERSIONPREFIX= v +DISTVERSION= 2.2.3 +CATEGORIES= shells + +MAINTAINER= gudfitz@gmail.com +COMMENT= Tool for managing Zshell plugins inspired by Vundle + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= zsh>=4.3.11:shells/zsh \ + git:devel/git + +USE_GITHUB= yes +GH_ACCOUNT= zsh-users +GH_PROJECT= antigen + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= ${DATADIR}/antigen.zsh +SUB_FILES= pkg-message + +do-install: + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/bin/antigen.zsh ${STAGEDIR}${DATADIR} + +.include Added: head/shells/zsh-antigen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/distinfo Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529013823 +SHA256 (zsh-users-antigen-v2.2.3_GH0.tar.gz) = bd3f1077050d52f459bc30fa3f025c44c528d625b4924a2f487fd2bacb89d61e +SIZE (zsh-users-antigen-v2.2.3_GH0.tar.gz) = 72679 Added: head/shells/zsh-antigen/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/files/pkg-message.in Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1 @@ +Antigen can be found at %%DATADIR%%/antigen.zsh Added: head/shells/zsh-antigen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/zsh-antigen/pkg-descr Mon Jun 18 04:59:40 2018 (r472672) @@ -0,0 +1,6 @@ +Antigen is a small set of functions that help you easily manage +your Z shell (zsh) plugins, called bundles. The concept is pretty +much the same as bundles in a typical vim+pathogen setup. Antigen +is to zsh, what Vundle is to vim. + +WWW: https://github.com/zsh-users/antigen From owner-svn-ports-head@freebsd.org Mon Jun 18 07:29:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92EAD101A573; Mon, 18 Jun 2018 07:29:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43DBF72669; Mon, 18 Jun 2018 07:29:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 250B821049; Mon, 18 Jun 2018 07:29:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I7TM3D058257; Mon, 18 Jun 2018 07:29:22 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I7TL70058255; Mon, 18 Jun 2018 07:29:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180729.w5I7TL70058255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 07:29:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472673 - in head/math/gnubc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math/gnubc: . files X-SVN-Commit-Revision: 472673 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 07:29:22 -0000 Author: yuri Date: Mon Jun 18 07:29:21 2018 New Revision: 472673 URL: https://svnweb.freebsd.org/changeset/ports/472673 Log: math/gnubc: Update 1.06 -> 1.07.1 Port changes: * Change to DISTVERSION * Fix LICENSE, it's actually GPLv3 * Add LICENSE_FILE * Add USES=makeinfo * Order USExx section * Remove patches - not needed any more * Change WWW to https Reported by: portscout Deleted: head/math/gnubc/files/ Modified: head/math/gnubc/Makefile head/math/gnubc/distinfo head/math/gnubc/pkg-descr Modified: head/math/gnubc/Makefile ============================================================================== --- head/math/gnubc/Makefile Mon Jun 18 04:59:40 2018 (r472672) +++ head/math/gnubc/Makefile Mon Jun 18 07:29:21 2018 (r472673) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= bc -PORTVERSION= 1.06 -PORTREVISION= 3 +DISTVERSION= 1.07.1 CATEGORIES= math MASTER_SITES= GNU PKGNAMEPREFIX= gnu @@ -11,10 +10,11 @@ PKGNAMEPREFIX= gnu MAINTAINER= ports@FreeBSD.org COMMENT= GNU bc/dc calculator -LICENSE= GPLv2 +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING +USES= libedit makeinfo GNU_CONFIGURE= yes -USES= libedit CONFIGURE_ARGS+= --with-libedit INFO= bc \ dc Modified: head/math/gnubc/distinfo ============================================================================== --- head/math/gnubc/distinfo Mon Jun 18 04:59:40 2018 (r472672) +++ head/math/gnubc/distinfo Mon Jun 18 07:29:21 2018 (r472673) @@ -1,2 +1,3 @@ -SHA256 (bc-1.06.tar.gz) = 4ef6d9f17c3c0d92d8798e35666175ecd3d8efac4009d6457b5c99cea72c0e33 -SIZE (bc-1.06.tar.gz) = 278926 +TIMESTAMP = 1529306440 +SHA256 (bc-1.07.1.tar.gz) = 62adfca89b0a1c0164c2cdca59ca210c1d44c3ffc46daf9931cf4942664cb02a +SIZE (bc-1.07.1.tar.gz) = 419850 Modified: head/math/gnubc/pkg-descr ============================================================================== --- head/math/gnubc/pkg-descr Mon Jun 18 04:59:40 2018 (r472672) +++ head/math/gnubc/pkg-descr Mon Jun 18 07:29:21 2018 (r472673) @@ -2,4 +2,4 @@ bc is an arbitrary precision numeric processing langua to C but differs in many substantial areas. It supports interactive execution of statements. The bc utility is included in the POSIX 1003.1-2008 standard. -WWW: http://www.gnu.org/software/bc/ +WWW: https://www.gnu.org/software/bc/ From owner-svn-ports-head@freebsd.org Mon Jun 18 07:32:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0C17101A7E0; Mon, 18 Jun 2018 07:32:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 606EC72A57; Mon, 18 Jun 2018 07:32:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 42803211D9; Mon, 18 Jun 2018 07:32:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I7WvNb063223; Mon, 18 Jun 2018 07:32:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I7Wv2A063222; Mon, 18 Jun 2018 07:32:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806180732.w5I7Wv2A063222@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Jun 2018 07:32:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472674 - head/www/davix X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/davix X-SVN-Commit-Revision: 472674 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 07:32:57 -0000 Author: yuri Date: Mon Jun 18 07:32:56 2018 New Revision: 472674 URL: https://svnweb.freebsd.org/changeset/ports/472674 Log: www/davix: Update PORTSCOUT to use 'limit' 'skipv' doesn't seem to work. Modified: head/www/davix/Makefile Modified: head/www/davix/Makefile ============================================================================== --- head/www/davix/Makefile Mon Jun 18 07:29:21 2018 (r472673) +++ head/www/davix/Makefile Mon Jun 18 07:32:56 2018 (r472674) @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid -PORTSCOUT= skipv:^.*-el +PORTSCOUT= limit:^.*\.[0-9]+$$ USES= cmake localbase ssl USE_GNOME= libxml2 From owner-svn-ports-head@freebsd.org Mon Jun 18 08:17:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAF3B101BB6A; Mon, 18 Jun 2018 08:17:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 980CF73F4E; Mon, 18 Jun 2018 08:17:50 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 792902186F; Mon, 18 Jun 2018 08:17:50 +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 w5I8HoqZ083814; Mon, 18 Jun 2018 08:17:50 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I8HnBR083809; Mon, 18 Jun 2018 08:17:49 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806180817.w5I8HnBR083809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 18 Jun 2018 08:17:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472675 - in head/dns/bind9-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/dns/bind9-devel: . files X-SVN-Commit-Revision: 472675 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 08:17:51 -0000 Author: mat Date: Mon Jun 18 08:17:49 2018 New Revision: 472675 URL: https://svnweb.freebsd.org/changeset/ports/472675 Log: Update to latest commit. Sponsored by: Absolight Deleted: head/dns/bind9-devel/files/patch-CVE-2018-5738 Modified: head/dns/bind9-devel/Makefile (contents, props changed) head/dns/bind9-devel/distinfo (contents, props changed) head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl (contents, props changed) head/dns/bind9-devel/files/patch-configure (contents, props changed) head/dns/bind9-devel/pkg-plist (contents, props changed) Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Mon Jun 18 07:32:56 2018 (r472674) +++ head/dns/bind9-devel/Makefile Mon Jun 18 08:17:49 2018 (r472675) @@ -9,7 +9,7 @@ PORTREVISION= 0 .else # XXX: correct version # dns/bind9xx here -PORTREVISION= 1 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 # XXX: put the ISC master_site @@ -40,13 +40,13 @@ LIB_DEPENDS= libxml2.so:textproc/libxml2 # XXX: remove tar:bz2 USES= cpe libedit ssl tar:bz2 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.13.0a0.2018.06.08 +ISCVERSION= 9.13.0a0.2018.06.15 # XXX: Remove gitlab USE_GITLAB= yes GL_SITE= https://gitlab.isc.org GL_ACCOUNT= isc-projects GL_PROJECT= bind9 -GL_COMMIT= b8fbe4aab40f5a41b9b0f00586c972d5afdba05f +GL_COMMIT= e495999c621a481db1ae2a5d189c416238a82980 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Jun 18 07:32:56 2018 (r472674) +++ head/dns/bind9-devel/distinfo Mon Jun 18 08:17:49 2018 (r472675) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528712121 -SHA256 (isc-projects-bind9-b8fbe4aab40f5a41b9b0f00586c972d5afdba05f_GL0.tar.gz) = a1b32af9f19a77b73661ef6690603bb9b011591f700f6e64819fa04e6399cd59 -SIZE (isc-projects-bind9-b8fbe4aab40f5a41b9b0f00586c972d5afdba05f_GL0.tar.gz) = 8925777 +TIMESTAMP = 1529305510 +SHA256 (isc-projects-bind9-e495999c621a481db1ae2a5d189c416238a82980_GL0.tar.gz) = d9b3559bc9a4d35bbe61d5e2316d3c1f97eac9b21e0f36502fc3839d8c7646c0 +SIZE (isc-projects-bind9-e495999c621a481db1ae2a5d189c416238a82980_GL0.tar.gz) = 8534156 Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl ============================================================================== --- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Jun 18 07:32:56 2018 (r472674) +++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Jun 18 08:17:49 2018 (r472675) @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2018-06-08 18:48:01 UTC +--- bin/named/config.c.orig 2018-06-15 08:58:30 UTC +++ bin/named/config.c @@ -176,12 +176,14 @@ options {\n\ max-recursion-queries 75;\n\ @@ -13,11 +13,11 @@ nsec3-test-zone no;\n\ + override-cache-ttl 0; /* do not override */\n\ provide-ixfr true;\n\ + qname-minimization relaxed;\n\ query-source address *;\n\ - query-source-v6 address *;\n\ ---- bin/named/server.c.orig 2018-06-08 18:48:01 UTC +--- bin/named/server.c.orig 2018-06-15 08:58:30 UTC +++ bin/named/server.c -@@ -4074,6 +4074,16 @@ configure_view(dns_view_t *view, dns_vie +@@ -4071,6 +4071,16 @@ configure_view(dns_view_t *view, dns_vie } obj = NULL; @@ -34,9 +34,9 @@ result = named_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2018-06-08 18:48:01 UTC +--- lib/dns/include/dns/view.h.orig 2018-06-15 08:58:30 UTC +++ lib/dns/include/dns/view.h -@@ -149,6 +149,8 @@ struct dns_view { +@@ -151,6 +151,8 @@ struct dns_view { isc_boolean_t requestnsid; isc_boolean_t sendcookie; dns_ttl_t maxcachettl; @@ -45,9 +45,9 @@ dns_ttl_t maxncachettl; isc_uint32_t nta_lifetime; isc_uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2018-06-08 18:48:01 UTC +--- lib/dns/resolver.c.orig 2018-06-15 08:58:30 UTC +++ lib/dns/resolver.c -@@ -5748,6 +5748,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5799,6 +5799,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -66,9 +66,9 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2018-06-08 18:48:01 UTC +--- lib/isccfg/namedconf.c.orig 2018-06-15 08:58:30 UTC +++ lib/isccfg/namedconf.c -@@ -1916,6 +1916,8 @@ view_clauses[] = { +@@ -1917,6 +1917,8 @@ view_clauses[] = { { "max-acache-size", &cfg_type_sizenodefault, CFG_CLAUSEFLAG_OBSOLETE }, { "max-cache-size", &cfg_type_sizeorpercent, 0 }, Modified: head/dns/bind9-devel/files/patch-configure ============================================================================== --- head/dns/bind9-devel/files/patch-configure Mon Jun 18 07:32:56 2018 (r472674) +++ head/dns/bind9-devel/files/patch-configure Mon Jun 18 08:17:49 2018 (r472675) @@ -1,6 +1,6 @@ ---- configure.orig 2018-06-08 18:48:01 UTC +--- configure.orig 2018-06-15 08:58:30 UTC +++ configure -@@ -14848,27 +14848,9 @@ done +@@ -14856,27 +14856,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -14911,47 +14893,7 @@ $as_echo "no" >&6; } ;; +@@ -14919,47 +14901,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -23303,7 +23245,7 @@ $as_echo "" >&6; } +@@ -23311,7 +23253,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). Modified: head/dns/bind9-devel/pkg-plist ============================================================================== --- head/dns/bind9-devel/pkg-plist Mon Jun 18 07:32:56 2018 (r472674) +++ head/dns/bind9-devel/pkg-plist Mon Jun 18 08:17:49 2018 (r472675) @@ -120,6 +120,7 @@ include/dns/view.h include/dns/xfrin.h include/dns/zone.h include/dns/zonekey.h +include/dns/zoneverify.h include/dns/zt.h include/dst/dst.h include/dst/gssapi.h From owner-svn-ports-head@freebsd.org Mon Jun 18 08:32:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A43B6101C488; Mon, 18 Jun 2018 08:32:06 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 549D374877; Mon, 18 Jun 2018 08:32:06 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 35E8321B84; Mon, 18 Jun 2018 08:32:06 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I8W589089819; Mon, 18 Jun 2018 08:32:05 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I8W58t089817; Mon, 18 Jun 2018 08:32:05 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806180832.w5I8W58t089817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 18 Jun 2018 08:32:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472676 - in head: . net net/syncthing-discosrv net/syncthing-inotify X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head: . net net/syncthing-discosrv net/syncthing-inotify X-SVN-Commit-Revision: 472676 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 08:32:06 -0000 Author: rene Date: Mon Jun 18 08:32:05 2018 New Revision: 472676 URL: https://svnweb.freebsd.org/changeset/ports/472676 Log: Remove expired ports: 2018-06-17 net/syncthing-discosrv: Included in net/syncthing now 2018-06-17 net/syncthing-inotify: Included in net/syncthing now Deleted: head/net/syncthing-discosrv/ head/net/syncthing-inotify/ Modified: head/MOVED head/net/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Mon Jun 18 08:17:49 2018 (r472675) +++ head/MOVED Mon Jun 18 08:32:05 2018 (r472676) @@ -10277,3 +10277,5 @@ textproc/elasticsearch2-plugin-hq||2018-06-15|Removed, textproc/elasticsearch2-plugin-migration||2018-06-15|Removed, depends on expired textproc/elasticsearch2 textproc/elasticsearch2||2018-06-15|Has expired: Elastic 2.4 EoL is 2018-02-28 net-im/imspector||2018-06-16|Has expired: No active upstream, master site disappeared long ago +net/syncthing-discosrv|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now +net/syncthing-inotify|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 18 08:17:49 2018 (r472675) +++ head/net/Makefile Mon Jun 18 08:32:05 2018 (r472676) @@ -1422,8 +1422,6 @@ SUBDIR += svnup SUBDIR += syncthing SUBDIR += syncthing-cli - SUBDIR += syncthing-discosrv - SUBDIR += syncthing-inotify SUBDIR += syndication SUBDIR += tableutil SUBDIR += tac_plus4 From owner-svn-ports-head@freebsd.org Mon Jun 18 08:34:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A8F2101C68D; Mon, 18 Jun 2018 08:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B6FD74A48; Mon, 18 Jun 2018 08:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2CE0D21BAC; Mon, 18 Jun 2018 08:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I8YaYv094044; Mon, 18 Jun 2018 08:34:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I8YaI6094043; Mon, 18 Jun 2018 08:34:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806180834.w5I8YaI6094043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 18 Jun 2018 08:34:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472677 - head/math/libflame X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/math/libflame X-SVN-Commit-Revision: 472677 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 08:34:37 -0000 Author: amdmi3 Date: Mon Jun 18 08:34:36 2018 New Revision: 472677 URL: https://svnweb.freebsd.org/changeset/ports/472677 Log: - Switch to new test framework Approved by: portmgr blanket Modified: head/math/libflame/Makefile Modified: head/math/libflame/Makefile ============================================================================== --- head/math/libflame/Makefile Mon Jun 18 08:32:05 2018 (r472676) +++ head/math/libflame/Makefile Mon Jun 18 08:34:36 2018 (r472677) @@ -317,7 +317,7 @@ do-install: BUILD_DEPENDS += ${RUN_DEPENDS} CONFIGURE_ARGS+= --enable-verbose-make-output -check regression-test test: build +do-test: @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} \ ${MAKE_ARGS} MK_INCL_DIR_INST_W_ARCH_VERS="${WRKDIR}/include" \ install-headers From owner-svn-ports-head@freebsd.org Mon Jun 18 08:37:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57533101C86A; Mon, 18 Jun 2018 08:37:00 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 03C1C74BD2; Mon, 18 Jun 2018 08:37:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D52F621BAD; Mon, 18 Jun 2018 08:36:59 +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 w5I8axao094270; Mon, 18 Jun 2018 08:36:59 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I8axuc094268; Mon, 18 Jun 2018 08:36:59 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201806180836.w5I8axuc094268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 18 Jun 2018 08:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472678 - head/www/py-html5-parser X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/www/py-html5-parser X-SVN-Commit-Revision: 472678 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 08:37:00 -0000 Author: madpilot Date: Mon Jun 18 08:36:59 2018 New Revision: 472678 URL: https://svnweb.freebsd.org/changeset/ports/472678 Log: - Update py-html5-parser to 0.4.5 - Add missing dependency - Strip binaries Modified: head/www/py-html5-parser/Makefile head/www/py-html5-parser/distinfo Modified: head/www/py-html5-parser/Makefile ============================================================================== --- head/www/py-html5-parser/Makefile Mon Jun 18 08:34:36 2018 (r472677) +++ head/www/py-html5-parser/Makefile Mon Jun 18 08:36:59 2018 (r472678) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= html5-parser -PORTVERSION= 0.4.4 +PORTVERSION= 0.4.5 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,5 +15,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=3.8.0:deve USES= pkgconfig python USE_PYTHON= autoplist distutils +USE_GNOME= libxml2 + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/html5_parser/html_parser.so .include Modified: head/www/py-html5-parser/distinfo ============================================================================== --- head/www/py-html5-parser/distinfo Mon Jun 18 08:34:36 2018 (r472677) +++ head/www/py-html5-parser/distinfo Mon Jun 18 08:36:59 2018 (r472678) @@ -1,3 +1,3 @@ -TIMESTAMP = 1501753238 -SHA256 (html5-parser-0.4.4.tar.gz) = b9f3a1d4cdb8742e8e4ecafab04bff541bde4ff09af233293ed0b94028ec1ab5 -SIZE (html5-parser-0.4.4.tar.gz) = 267787 +TIMESTAMP = 1529238524 +SHA256 (html5-parser-0.4.5.tar.gz) = a903ef8b93b51788a6d1604b3833303e9f2f8db488306ee4241436d2f518bd06 +SIZE (html5-parser-0.4.5.tar.gz) = 275587 From owner-svn-ports-head@freebsd.org Mon Jun 18 08:48:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 195A6101D1F0; Mon, 18 Jun 2018 08:48:55 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B4BC6751E4; Mon, 18 Jun 2018 08:48:54 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 92F3721D4B; Mon, 18 Jun 2018 08:48:54 +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 w5I8msSY099267; Mon, 18 Jun 2018 08:48:54 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I8msnL099266; Mon, 18 Jun 2018 08:48:54 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201806180848.w5I8msnL099266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 18 Jun 2018 08:48:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472679 - head/x11/xfce4-goodies X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/x11/xfce4-goodies X-SVN-Commit-Revision: 472679 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 08:48:55 -0000 Author: madpilot Date: Mon Jun 18 08:48:54 2018 New Revision: 472679 URL: https://svnweb.freebsd.org/changeset/ports/472679 Log: Add MENULIBRE option enabled by default to xfce4-goodies. Adds the x11/menulibre to the component installed by the metaport. It's a utility to edit Desktop environment application menus. If present xfce allows calling it as it's default menu editor. Modified: head/x11/xfce4-goodies/Makefile Modified: head/x11/xfce4-goodies/Makefile ============================================================================== --- head/x11/xfce4-goodies/Makefile Mon Jun 18 08:36:59 2018 (r472678) +++ head/x11/xfce4-goodies/Makefile Mon Jun 18 08:48:54 2018 (r472679) @@ -3,7 +3,7 @@ PORTNAME= xfce4-goodies PORTVERSION= 4.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= xfce@FreeBSD.org @@ -16,7 +16,7 @@ OPTIONS_DEFAULT= DASHBOARD DICTIONARY GIGOLO PAROLE \ TERMINAL XFBURN \ BATTERY CALCULATOR CLIPMAN CPUGRAPH \ DATETIME DISKPERF EMBED FSGUARD GENMON \ - MAILWATCH MOUNT NETLOAD NOTES \ + MAILWATCH MENULIBRE MOUNT NETLOAD NOTES \ SMARTBOOKMARK SYSTEMLOAD TIMER TIMEOUT VERVE WAVELAN \ WEATHER WHISKERMENU XKB \ ARCHIVE MEDIATAGS VCS \ @@ -127,10 +127,11 @@ ARCHIVE_RUN_DEPENDS= thunar-archive-plugin>=0:archive MEDIATAGS_RUN_DEPENDS= thunar-media-tags-plugin>=0:audio/thunar-media-tags-plugin VCS_RUN_DEPENDS= thunar-vcs-plugin>=0:devel/thunar-vcs-plugin -OPTIONS_GROUP_UNOFFICIAL= BSDCPUFREQ EQUAKE MIXER PRINT THEMES \ +OPTIONS_GROUP_UNOFFICIAL= BSDCPUFREQ EQUAKE MENULIBRE MIXER PRINT THEMES \ VALA VFS VOLUMED BSDCPUFREQ_DESC= Display the CPU clock frequency in Xfce panel EQUAKE_DESC= Earthquake monitor plugin for the Xfce panel +MENULIBRE_DESC= Advanced compliant menu editor MIXER_DESC= Volume control for the Xfce desktop PRINT_DESC= Print system support for the Xfce Desktop THEMES_DESC= Additional themes for xfwm4 @@ -141,6 +142,7 @@ VOLUMEDPULSE_DESC= Volume management daemon for Xfce BSDCPUFREQ_RUN_DEPENDS= xfce4-bsdcpufreq-plugin>=0:sysutils/xfce4-bsdcpufreq-plugin EQUAKE_RUN_DEPENDS= xfce4-equake-plugin>=0:science/xfce4-equake-plugin +MENULIBRE_RUN_DEPENDS= py36-menulibre>=0:x11/menulibre MIXER_RUN_DEPENDS= xfce4-mixer>=0:audio/xfce4-mixer PRINT_RUN_DEPENDS= xfce4-print>=0:print/xfce4-print THEMES_RUN_DEPENDS= xfce4-wm-themes>=0:misc/xfce4-wm-themes From owner-svn-ports-head@freebsd.org Mon Jun 18 09:04:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EA3D101E508; Mon, 18 Jun 2018 09:04:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 134F575CC3; Mon, 18 Jun 2018 09:04:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8E852208C; Mon, 18 Jun 2018 09:04:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I94ZKL009260; Mon, 18 Jun 2018 09:04:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I94ZZZ009258; Mon, 18 Jun 2018 09:04:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806180904.w5I94ZZZ009258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 18 Jun 2018 09:04:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472680 - head/x11-fonts/cantarell-fonts X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/x11-fonts/cantarell-fonts X-SVN-Commit-Revision: 472680 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 09:04:36 -0000 Author: amdmi3 Date: Mon Jun 18 09:04:35 2018 New Revision: 472680 URL: https://svnweb.freebsd.org/changeset/ports/472680 Log: - Add LICENSE - Add NO_ARCH - Add WWW Approved by: portmgr blanket Modified: head/x11-fonts/cantarell-fonts/Makefile head/x11-fonts/cantarell-fonts/pkg-descr Modified: head/x11-fonts/cantarell-fonts/Makefile ============================================================================== --- head/x11-fonts/cantarell-fonts/Makefile Mon Jun 18 08:48:54 2018 (r472679) +++ head/x11-fonts/cantarell-fonts/Makefile Mon Jun 18 09:04:35 2018 (r472680) @@ -9,6 +9,9 @@ MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= Cantarell, a Humanist sans-serif font family +LICENSE= OFL11 +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig USES= fonts gmake gnome pkgconfig tar:xz @@ -16,5 +19,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-configdir=${PREFIX}/etc/fonts/conf.avail FONTSDIR= share/fonts/cantarell PLIST_SUB= FONTSDIR=${FONTSDIR} +NO_ARCH= yes .include Modified: head/x11-fonts/cantarell-fonts/pkg-descr ============================================================================== --- head/x11-fonts/cantarell-fonts/pkg-descr Mon Jun 18 08:48:54 2018 (r472679) +++ head/x11-fonts/cantarell-fonts/pkg-descr Mon Jun 18 09:04:35 2018 (r472680) @@ -1,3 +1,5 @@ Dave Crossland's Cantarell is a contemporary Humanist sans serif that fully support the following writing systems: Basic Latin, Western European, Catalan, Baltic, Turkish, Central European, Dutch and Afrikaans. + +WWW: https://wiki.gnome.org/Projects/CantarellFonts From owner-svn-ports-head@freebsd.org Mon Jun 18 09:34:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAE82101FC13; Mon, 18 Jun 2018 09:34:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9B4DE76BCE; Mon, 18 Jun 2018 09:34:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D7312258A; Mon, 18 Jun 2018 09:34:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5I9YaG2024558; Mon, 18 Jun 2018 09:34:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5I9YaR5024556; Mon, 18 Jun 2018 09:34:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806180934.w5I9YaR5024556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 18 Jun 2018 09:34:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472681 - head/sysutils/zeroer X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/sysutils/zeroer X-SVN-Commit-Revision: 472681 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 09:34:37 -0000 Author: amdmi3 Date: Mon Jun 18 09:34:35 2018 New Revision: 472681 URL: https://svnweb.freebsd.org/changeset/ports/472681 Log: - Switch to USES=localbase - Switch to options helpers - Update WWW Approved by: portmgr blanket Modified: head/sysutils/zeroer/Makefile head/sysutils/zeroer/pkg-descr Modified: head/sysutils/zeroer/Makefile ============================================================================== --- head/sysutils/zeroer/Makefile Mon Jun 18 09:04:35 2018 (r472680) +++ head/sysutils/zeroer/Makefile Mon Jun 18 09:34:35 2018 (r472681) @@ -15,11 +15,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpopt.so:devel/popt +USES= localbase:ldflags PLIST_FILES= bin/zeroer man/man1/zeroer.1.gz PORTDOCS= README -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lpopt +LDFLAGS+= -lpopt OPTIONS_DEFINE= DOCS @@ -30,6 +30,8 @@ do-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} Modified: head/sysutils/zeroer/pkg-descr ============================================================================== --- head/sysutils/zeroer/pkg-descr Mon Jun 18 09:04:35 2018 (r472680) +++ head/sysutils/zeroer/pkg-descr Mon Jun 18 09:34:35 2018 (r472681) @@ -7,4 +7,4 @@ The utility's principle consists in writing huge zero- file. To a certain extent this works similar to dd, however zeroer dynamically reduces the blockwriter's buffer size when the filesystem is going to be full. -WWW: http://critical.ch/zeroer/ +WWW: https://critical.ch/zeroer/ From owner-svn-ports-head@freebsd.org Mon Jun 18 10:33:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 743A910224B6; Mon, 18 Jun 2018 10:33:01 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24BD178876; Mon, 18 Jun 2018 10:33:01 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0485322F5A; Mon, 18 Jun 2018 10:33:01 +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 w5IAX0vB054768; Mon, 18 Jun 2018 10:33:00 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IAX0ib054767; Mon, 18 Jun 2018 10:33:00 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201806181033.w5IAX0ib054767@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Mon, 18 Jun 2018 10:33:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472682 - in head/security/tinc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head/security/tinc: . files X-SVN-Commit-Revision: 472682 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 10:33:01 -0000 Author: dinoex Date: Mon Jun 18 10:33:00 2018 New Revision: 472682 URL: https://svnweb.freebsd.org/changeset/ports/472682 Log: - update to 1.0.34 Deleted: head/security/tinc/files/patch-doc-Makefile.am Modified: head/security/tinc/Makefile head/security/tinc/distinfo Modified: head/security/tinc/Makefile ============================================================================== --- head/security/tinc/Makefile Mon Jun 18 09:34:35 2018 (r472681) +++ head/security/tinc/Makefile Mon Jun 18 10:33:00 2018 (r472682) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tinc -PORTVERSION= 1.0.33 -PORTREVISION= 1 +PORTVERSION= 1.0.34 CATEGORIES= security MASTER_SITES= https://www.tinc-vpn.org/packages/ \ http://www.tinc-vpn.org/packages/ @@ -15,7 +14,7 @@ LICENSE= GPLv3 LIB_DEPENDS= liblzo2.so:archivers/lzo2 -USES= cpe ssl makeinfo autoreconf +USES= cpe ssl makeinfo CPE_VENDOR= tinc-vpn GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/security/tinc/distinfo ============================================================================== --- head/security/tinc/distinfo Mon Jun 18 09:34:35 2018 (r472681) +++ head/security/tinc/distinfo Mon Jun 18 10:33:00 2018 (r472682) @@ -1,3 +1,3 @@ -TIMESTAMP = 1515127532 -SHA256 (tinc-1.0.33.tar.gz) = 7f6f5dc6444bc651ac635c81f4745bcce581bbd1d45ed60cbdc4ee11bebb10f4 -SIZE (tinc-1.0.33.tar.gz) = 486374 +TIMESTAMP = 1529083849 +SHA256 (tinc-1.0.34.tar.gz) = c03a9b61dedd452116dd9a8db231545ba08a7c96bce011e0cbd3cfd2c56dcfda +SIZE (tinc-1.0.34.tar.gz) = 484174 From owner-svn-ports-head@freebsd.org Mon Jun 18 10:34:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E41A3102260E; Mon, 18 Jun 2018 10:34:33 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 98E1878981; Mon, 18 Jun 2018 10:34:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A07C22F5B; Mon, 18 Jun 2018 10:34:33 +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 w5IAYXig054951; Mon, 18 Jun 2018 10:34:33 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IAYXa7054950; Mon, 18 Jun 2018 10:34:33 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201806181034.w5IAYXa7054950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Mon, 18 Jun 2018 10:34:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472683 - head/security/tinc-devel X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: head/security/tinc-devel X-SVN-Commit-Revision: 472683 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 10:34:34 -0000 Author: dinoex Date: Mon Jun 18 10:34:32 2018 New Revision: 472683 URL: https://svnweb.freebsd.org/changeset/ports/472683 Log: - update to 1.1pre16 Modified: head/security/tinc-devel/Makefile head/security/tinc-devel/distinfo Modified: head/security/tinc-devel/Makefile ============================================================================== --- head/security/tinc-devel/Makefile Mon Jun 18 10:33:00 2018 (r472682) +++ head/security/tinc-devel/Makefile Mon Jun 18 10:34:32 2018 (r472683) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tinc -PORTVERSION= 1.1pre15 +PORTVERSION= 1.1pre16 CATEGORIES= security MASTER_SITES= https://www.tinc-vpn.org/packages/ \ http://www.tinc-vpn.org/packages/ @@ -19,10 +19,10 @@ CPE_VENDOR= tinc-vpn GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS= --localstatedir=/var +CONFIGURE_ARGS= --localstatedir=/var --with-curses=/usr USE_RC_SUBR= tincd INFO= tinc -PLIST_FILES= bin/tinc-gui sbin/tincd sbin/tinc \ +PLIST_FILES= sbin/tincd sbin/tinc \ man/man8/tinc-gui.8.gz man/man5/tinc.conf.5.gz \ man/man8/tinc.8.gz man/man8/tincd.8.gz Modified: head/security/tinc-devel/distinfo ============================================================================== --- head/security/tinc-devel/distinfo Mon Jun 18 10:33:00 2018 (r472682) +++ head/security/tinc-devel/distinfo Mon Jun 18 10:34:32 2018 (r472683) @@ -1,3 +1,3 @@ -TIMESTAMP = 1506227200 -SHA256 (tinc-1.1pre15.tar.gz) = 41dc3e40c5f8be497b779acd6f59ef4572e1430d0d0f0436f2de5cb21a59ef18 -SIZE (tinc-1.1pre15.tar.gz) = 704145 +TIMESTAMP = 1528954102 +SHA256 (tinc-1.1pre16.tar.gz) = 9934c53f8b22bbcbfa0faae0cb7ea13875fe1990cce75af728a7f4ced2c0230b +SIZE (tinc-1.1pre16.tar.gz) = 703679 From owner-svn-ports-head@freebsd.org Mon Jun 18 12:36:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65E0010047CC; Mon, 18 Jun 2018 12:36:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 027537CCDB; Mon, 18 Jun 2018 12:36:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D1B77242D1; Mon, 18 Jun 2018 12:36:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5ICahe2015493; Mon, 18 Jun 2018 12:36:43 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ICahM3015491; Mon, 18 Jun 2018 12:36:43 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806181236.w5ICahM3015491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 18 Jun 2018 12:36:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472684 - head/sysutils/uptimed X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/sysutils/uptimed X-SVN-Commit-Revision: 472684 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 12:36:44 -0000 Author: swills Date: Mon Jun 18 12:36:43 2018 New Revision: 472684 URL: https://svnweb.freebsd.org/changeset/ports/472684 Log: sysutils/uptimed: update to 0.4.1, pet portlint PR: 229097 Submitted by: Piotr Kubaj (maintainer) Modified: head/sysutils/uptimed/Makefile (contents, props changed) head/sysutils/uptimed/distinfo (contents, props changed) Modified: head/sysutils/uptimed/Makefile ============================================================================== --- head/sysutils/uptimed/Makefile Mon Jun 18 10:34:32 2018 (r472683) +++ head/sysutils/uptimed/Makefile Mon Jun 18 12:36:43 2018 (r472684) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= uptimed -PORTVERSION= 0.4.0 +PORTVERSION= 0.4.1 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -12,10 +12,9 @@ COMMENT= Uptime daemon LICENSE= GPLv2 # only LICENSE_FILE= ${WRKSRC}/COPYING +USES= autoreconf gmake libtool USE_GITHUB= yes GH_ACCOUNT= rpodgorny - -USES= autoreconf gmake libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: head/sysutils/uptimed/distinfo ============================================================================== --- head/sysutils/uptimed/distinfo Mon Jun 18 10:34:32 2018 (r472683) +++ head/sysutils/uptimed/distinfo Mon Jun 18 12:36:43 2018 (r472684) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466516687 -SHA256 (rpodgorny-uptimed-v0.4.0_GH0.tar.gz) = 26891965bb499065e34072cecd3eb8087102b1c05f530c8fe8504a07c722f9bf -SIZE (rpodgorny-uptimed-v0.4.0_GH0.tar.gz) = 55026 +TIMESTAMP = 1529300193 +SHA256 (rpodgorny-uptimed-v0.4.1_GH0.tar.gz) = 01b16519bbdd3b99c97a09e910b74e4dceb5eea74e3ab20b6c90c76c8cb55905 +SIZE (rpodgorny-uptimed-v0.4.1_GH0.tar.gz) = 55162 From owner-svn-ports-head@freebsd.org Mon Jun 18 12:59:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 681D71005A0A; Mon, 18 Jun 2018 12:59:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 16C6B7D851; Mon, 18 Jun 2018 12:59:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EC042245FE; Mon, 18 Jun 2018 12:59:29 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5ICxTWD025687; Mon, 18 Jun 2018 12:59:29 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ICxTNS025685; Mon, 18 Jun 2018 12:59:29 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806181259.w5ICxTNS025685@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 18 Jun 2018 12:59:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472685 - in head: . net net/syncthing-cli X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head: . net net/syncthing-cli X-SVN-Commit-Revision: 472685 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 12:59:30 -0000 Author: rene Date: Mon Jun 18 12:59:29 2018 New Revision: 472685 URL: https://svnweb.freebsd.org/changeset/ports/472685 Log: Remove expired port: 2018-06-17 net/syncthing-cli: Included in net/syncthing now Deleted: head/net/syncthing-cli/ Modified: head/MOVED head/net/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Mon Jun 18 12:36:43 2018 (r472684) +++ head/MOVED Mon Jun 18 12:59:29 2018 (r472685) @@ -10279,3 +10279,4 @@ textproc/elasticsearch2||2018-06-15|Has expired: Elast net-im/imspector||2018-06-16|Has expired: No active upstream, master site disappeared long ago net/syncthing-discosrv|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now net/syncthing-inotify|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now +net/syncthing-cli|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 18 12:36:43 2018 (r472684) +++ head/net/Makefile Mon Jun 18 12:59:29 2018 (r472685) @@ -1421,7 +1421,6 @@ SUBDIR += sup SUBDIR += svnup SUBDIR += syncthing - SUBDIR += syncthing-cli SUBDIR += syndication SUBDIR += tableutil SUBDIR += tac_plus4 From owner-svn-ports-head@freebsd.org Mon Jun 18 13:06:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB17510062E2; Mon, 18 Jun 2018 13:06:39 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7973D7DECC; Mon, 18 Jun 2018 13:06:39 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5BCC524799; Mon, 18 Jun 2018 13:06:39 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5ID6d9D030982; Mon, 18 Jun 2018 13:06:39 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ID6dsX030981; Mon, 18 Jun 2018 13:06:39 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201806181306.w5ID6dsX030981@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Mon, 18 Jun 2018 13:06:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472686 - head/japanese/another-htmllint X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: head/japanese/another-htmllint X-SVN-Commit-Revision: 472686 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:06:40 -0000 Author: meta Date: Mon Jun 18 13:06:38 2018 New Revision: 472686 URL: https://svnweb.freebsd.org/changeset/ports/472686 Log: japanese/another-htmllint: Change dependecy from www/p5-CGI.pm to www/p5-CGI www/p5-CGI and www/p5-CGI.pm provide same functions and conflict each other. While a lot of ports use www/p5-CGI, only this one uses www/p5-CGI.pm. By swiching to use www/p5-CGI this port and others can be installed together. Also, pass maintainership to the submitter due to consecutive maintainer timeouts. PR: 228236 Submitted by: Yasuhiro KIMURA Approved by: maintainer timeout, pi (mentor) Modified: head/japanese/another-htmllint/Makefile Modified: head/japanese/another-htmllint/Makefile ============================================================================== --- head/japanese/another-htmllint/Makefile Mon Jun 18 12:59:29 2018 (r472685) +++ head/japanese/another-htmllint/Makefile Mon Jun 18 13:06:38 2018 (r472686) @@ -2,12 +2,12 @@ PORTNAME= another-htmllint PORTVERSION= 20111128 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese www MASTER_SITES= http://openlab.ring.gr.jp/k16/htmllint/archives/ DISTNAME= htmllint -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= yasu@utahime.org COMMENT= Another HTML-lint (all messages are written in Japanese) LICENSE= AnotherHTMLlint @@ -15,7 +15,7 @@ LICENSE_NAME= Another HTML-lint License LICENSE_TEXT= See http://openlab.ring.gr.jp/k16/htmllint/index.html (Written in Japanese) LICENSE_PERMS= no-dist-sell no-pkg-sell -RUN_DEPENDS= p5-CGI.pm>=0:www/p5-CGI.pm \ +RUN_DEPENDS= p5-CGI>=0:www/p5-CGI \ p5-LWP-Protocol-https>=0:www/p5-LWP-Protocol-https \ p5-libwww>=0:www/p5-libwww \ ja-p5-Jcode>=0:japanese/p5-Jcode @@ -38,7 +38,7 @@ HTML= *.cgi *.html *.gif *.css SEDSUB= ${SED} -i.bak -e 's@%%PREFIX%%@${PREFIX}@ ; s@%%DATADIR%%@${DATADIR}@' # Please set this! -HTMLLINT_ADMIN?= kuriyama@FreeBSD.org +HTMLLINT_ADMIN?= webmaster@example.com do-build: @${SEDSUB} ${WRKSRC}/htmllintenv From owner-svn-ports-head@freebsd.org Mon Jun 18 13:08:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51F1610064C4; Mon, 18 Jun 2018 13:08:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 07E117E078; Mon, 18 Jun 2018 13:08:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D8F6F2479B; Mon, 18 Jun 2018 13:08:36 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5ID8aT0031275; Mon, 18 Jun 2018 13:08:36 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ID8ZVL031265; Mon, 18 Jun 2018 13:08:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806181308.w5ID8ZVL031265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 18 Jun 2018 13:08:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472687 - in head/x11/sterm: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/x11/sterm: . files X-SVN-Commit-Revision: 472687 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:08:37 -0000 Author: swills Date: Mon Jun 18 13:08:35 2018 New Revision: 472687 URL: https://svnweb.freebsd.org/changeset/ports/472687 Log: x11/sterm: add SOLARIZED, SCROLLBACK options PR: 229099 Submitted by: Piotr Kubaj (maintainer) Added: head/x11/sterm/files/.gitattributes (contents, props changed) head/x11/sterm/files/extra-scrollback-patch-config.def.h (contents, props changed) head/x11/sterm/files/extra-scrollback-patch-st.c (contents, props changed) head/x11/sterm/files/extra-scrollback-patch-st.h (contents, props changed) head/x11/sterm/files/extra-solarized-patch-config.def.h (contents, props changed) head/x11/sterm/files/extra-solarized-patch-st.h (contents, props changed) head/x11/sterm/files/extra-solarized-patch-x.c (contents, props changed) Modified: head/x11/sterm/Makefile (contents, props changed) Modified: head/x11/sterm/Makefile ============================================================================== --- head/x11/sterm/Makefile Mon Jun 18 13:06:38 2018 (r472686) +++ head/x11/sterm/Makefile Mon Jun 18 13:08:35 2018 (r472687) @@ -28,6 +28,18 @@ PORTDATA= config.def.h st.info PORTDOCS= FAQ LEGACY README TODO OPTIONS_DEFINE= DOCS +OPTIONS_RADIO= PATCHES +OPTIONS_RADIO_PATCHES= SCROLLBACK SOLARIZED +SCROLLBACK_DESC= Scroll back through terminal output +SOLARIZED_DESC= Use Solarized color scheme + +SCROLLBACK_EXTRA_PATCHES= ${PATCHDIR}/extra-scrollback-patch-config.def.h \ + ${PATCHDIR}/extra-scrollback-patch-st.c \ + ${PATCHDIR}/extra-scrollback-patch-st.h + +SOLARIZED_EXTRA_PATCHES= ${PATCHDIR}/extra-solarized-patch-config.def.h \ + ${PATCHDIR}/extra-solarized-patch-x.c \ + ${PATCHDIR}/extra-solarized-patch-st.h SUB_FILES= pkg-message Added: head/x11/sterm/files/.gitattributes ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/.gitattributes Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,6 @@ +extra-scrollback-patch-config.def.h svn-properties=fbsd:nokeywords=yes +extra-scrollback-patch-st.c svn-properties=fbsd:nokeywords=yes +extra-scrollback-patch-st.h svn-properties=fbsd:nokeywords=yes +extra-solarized-patch-config.def.h svn-properties=fbsd:nokeywords=yes +extra-solarized-patch-st.h svn-properties=fbsd:nokeywords=yes +extra-solarized-patch-x.c svn-properties=fbsd:nokeywords=yes Added: head/x11/sterm/files/extra-scrollback-patch-config.def.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/extra-scrollback-patch-config.def.h Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,11 @@ +--- config.def.h.orig 2018-06-18 05:54:16 UTC ++++ config.def.h +@@ -178,6 +178,8 @@ static Shortcut shortcuts[] = { + { TERMMOD, XK_Y, selpaste, {.i = 0} }, + { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, + { TERMMOD, XK_I, iso14755, {.i = 0} }, ++ { ShiftMask, XK_Page_Up, kscrollup, {.i = -1} }, ++ { ShiftMask, XK_Page_Down, kscrolldown, {.i = -1} }, + }; + + /* Added: head/x11/sterm/files/extra-scrollback-patch-st.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/extra-scrollback-patch-st.c Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,300 @@ +--- st.c.orig 2018-03-20 20:29:59 UTC ++++ st.c +@@ -121,6 +121,9 @@ typedef struct { + int col; /* nb col */ + Line *line; /* screen */ + Line *alt; /* alternate screen */ ++ Line hist[HISTSIZE]; /* history buffer */ ++ int histi; /* history index */ ++ int scr; /* scroll back */ + int *dirty; /* dirtyness of lines */ + TCursor c; /* cursor */ + int ocx; /* old cursor col */ +@@ -188,8 +191,8 @@ static void tnewline(int); + static void tputtab(int); + static void tputc(Rune); + static void treset(void); +-static void tscrollup(int, int); +-static void tscrolldown(int, int); ++static void tscrollup(int, int, int); ++static void tscrolldown(int, int, int); + static void tsetattr(int *, int); + static void tsetchar(Rune, Glyph *, int, int); + static void tsetdirt(int, int); +@@ -431,10 +434,10 @@ tlinelen(int y) + { + int i = term.col; + +- if (term.line[y][i - 1].mode & ATTR_WRAP) ++ if (TLINE(y)[i - 1].mode & ATTR_WRAP) + return i; + +- while (i > 0 && term.line[y][i - 1].u == ' ') ++ while (i > 0 && TLINE(y)[i - 1].u == ' ') + --i; + + return i; +@@ -543,7 +546,7 @@ selsnap(int *x, int *y, int direction) + * Snap around if the word wraps around at the end or + * beginning of a line. + */ +- prevgp = &term.line[*y][*x]; ++ prevgp = &TLINE(*y)[*x]; + prevdelim = ISDELIM(prevgp->u); + for (;;) { + newx = *x + direction; +@@ -558,14 +561,14 @@ selsnap(int *x, int *y, int direction) + yt = *y, xt = *x; + else + yt = newy, xt = newx; +- if (!(term.line[yt][xt].mode & ATTR_WRAP)) ++ if (!(TLINE(yt)[xt].mode & ATTR_WRAP)) + break; + } + + if (newx >= tlinelen(newy)) + break; + +- gp = &term.line[newy][newx]; ++ gp = &TLINE(newy)[newx]; + delim = ISDELIM(gp->u); + if (!(gp->mode & ATTR_WDUMMY) && (delim != prevdelim + || (delim && gp->u != prevgp->u))) +@@ -586,14 +589,14 @@ selsnap(int *x, int *y, int direction) + *x = (direction < 0) ? 0 : term.col - 1; + if (direction < 0) { + for (; *y > 0; *y += direction) { +- if (!(term.line[*y-1][term.col-1].mode ++ if (!(TLINE(*y-1)[term.col-1].mode + & ATTR_WRAP)) { + break; + } + } + } else if (direction > 0) { + for (; *y < term.row-1; *y += direction) { +- if (!(term.line[*y][term.col-1].mode ++ if (!(TLINE(*y)[term.col-1].mode + & ATTR_WRAP)) { + break; + } +@@ -624,13 +627,13 @@ getsel(void) + } + + if (sel.type == SEL_RECTANGULAR) { +- gp = &term.line[y][sel.nb.x]; ++ gp = &TLINE(y)[sel.nb.x]; + lastx = sel.ne.x; + } else { +- gp = &term.line[y][sel.nb.y == y ? sel.nb.x : 0]; ++ gp = &TLINE(y)[sel.nb.y == y ? sel.nb.x : 0]; + lastx = (sel.ne.y == y) ? sel.ne.x : term.col-1; + } +- last = &term.line[y][MIN(lastx, linelen-1)]; ++ last = &TLINE(y)[MIN(lastx, linelen-1)]; + while (last >= gp && last->u == ' ') + --last; + +@@ -835,6 +838,9 @@ ttyread(void) + if (buflen > 0) + memmove(buf, buf + written, buflen); + ++ if (term.scr > 0 && term.scr < HISTSIZE-1) ++ term.scr++; ++ + return ret; + } + +@@ -842,6 +848,9 @@ void + ttywrite(const char *s, size_t n, int may_echo) + { + const char *next; ++ Arg arg = (Arg) { .i = term.scr }; ++ ++ kscrolldown(&arg); + + if (may_echo && IS_SET(MODE_ECHO)) + twrite(s, n, 1); +@@ -1053,13 +1062,54 @@ tswapscreen(void) + } + + void +-tscrolldown(int orig, int n) ++kscrolldown(const Arg* a) ++{ ++ int n = a->i; ++ ++ if (n < 0) ++ n = term.row + n; ++ ++ if (n > term.scr) ++ n = term.scr; ++ ++ if (term.scr > 0) { ++ term.scr -= n; ++ selscroll(0, -n); ++ tfulldirt(); ++ } ++} ++ ++void ++kscrollup(const Arg* a) ++{ ++ int n = a->i; ++ ++ if (n < 0) ++ n = term.row + n; ++ ++ if (term.scr <= HISTSIZE-n) { ++ term.scr += n; ++ selscroll(0, n); ++ tfulldirt(); ++ } ++} ++ ++ ++void ++tscrolldown(int orig, int n, int copyhist) + { + int i; + Line temp; + + LIMIT(n, 0, term.bot-orig+1); + ++ if (copyhist) { ++ term.histi = (term.histi - 1 + HISTSIZE) % HISTSIZE; ++ temp = term.hist[term.histi]; ++ term.hist[term.histi] = term.line[term.bot]; ++ term.line[term.bot] = temp; ++ } ++ + tsetdirt(orig, term.bot-n); + tclearregion(0, term.bot-n+1, term.col-1, term.bot); + +@@ -1073,13 +1123,20 @@ tscrolldown(int orig, int n) + } + + void +-tscrollup(int orig, int n) ++tscrollup(int orig, int n, int copyhist) + { + int i; + Line temp; + + LIMIT(n, 0, term.bot-orig+1); + ++ if (copyhist) { ++ term.histi = (term.histi + 1) % HISTSIZE; ++ temp = term.hist[term.histi]; ++ term.hist[term.histi] = term.line[orig]; ++ term.line[orig] = temp; ++ } ++ + tclearregion(0, orig, term.col-1, orig+n-1); + tsetdirt(orig+n, term.bot); + +@@ -1128,7 +1185,7 @@ tnewline(int first_col) + int y = term.c.y; + + if (y == term.bot) { +- tscrollup(term.top, 1); ++ tscrollup(term.top, 1, 1); + } else { + y++; + } +@@ -1293,14 +1350,14 @@ void + tinsertblankline(int n) + { + if (BETWEEN(term.c.y, term.top, term.bot)) +- tscrolldown(term.c.y, n); ++ tscrolldown(term.c.y, n, 0); + } + + void + tdeleteline(int n) + { + if (BETWEEN(term.c.y, term.top, term.bot)) +- tscrollup(term.c.y, n); ++ tscrollup(term.c.y, n, 0); + } + + int32_t +@@ -1729,11 +1786,11 @@ csihandle(void) + break; + case 'S': /* SU -- Scroll line up */ + DEFAULT(csiescseq.arg[0], 1); +- tscrollup(term.top, csiescseq.arg[0]); ++ tscrollup(term.top, csiescseq.arg[0], 0); + break; + case 'T': /* SD -- Scroll line down */ + DEFAULT(csiescseq.arg[0], 1); +- tscrolldown(term.top, csiescseq.arg[0]); ++ tscrolldown(term.top, csiescseq.arg[0], 0); + break; + case 'L': /* IL -- Insert blank lines */ + DEFAULT(csiescseq.arg[0], 1); +@@ -2257,7 +2314,7 @@ eschandle(uchar ascii) + return 0; + case 'D': /* IND -- Linefeed */ + if (term.c.y == term.bot) { +- tscrollup(term.top, 1); ++ tscrollup(term.top, 1, 1); + } else { + tmoveto(term.c.x, term.c.y+1); + } +@@ -2270,7 +2327,7 @@ eschandle(uchar ascii) + break; + case 'M': /* RI -- Reverse index */ + if (term.c.y == term.top) { +- tscrolldown(term.top, 1); ++ tscrolldown(term.top, 1, 1); + } else { + tmoveto(term.c.x, term.c.y-1); + } +@@ -2489,7 +2546,7 @@ twrite(const char *buf, int buflen, int + void + tresize(int col, int row) + { +- int i; ++ int i, j; + int minrow = MIN(row, term.row); + int mincol = MIN(col, term.col); + int *bp; +@@ -2526,7 +2583,15 @@ tresize(int col, int row) + term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty)); + term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs)); + +- /* resize each row to new width, zero-pad if needed */ ++ for (i = 0; i < HISTSIZE; i++) { ++ term.hist[i] = xrealloc(term.hist[i], col * sizeof(Glyph)); ++ for (j = mincol; j < col; j++) { ++ term.hist[i][j] = term.c.attr; ++ term.hist[i][j].u = ' '; ++ } ++ } ++ ++ /* resize each r w to new width, zero-pad if needed */ + for (i = 0; i < minrow; i++) { + term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph)); + term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph)); +@@ -2583,7 +2648,7 @@ drawregion(int x1, int y1, int x2, int y + continue; + + term.dirty[y] = 0; +- xdrawline(term.line[y], x1, y, x2); ++ xdrawline(TLINE(y), x1, y, x2); + } + } + +@@ -2604,8 +2669,10 @@ draw(void) + cx--; + + drawregion(0, 0, term.col, term.row); +- xdrawcursor(cx, term.c.y, term.line[term.c.y][cx], +- term.ocx, term.ocy, term.line[term.ocy][term.ocx]); ++ if (term.scr == 0) { ++ xdrawcursor(cx, term.c.y, term.line[term.c.y][cx], ++ term.ocx, term.ocy, term.line[term.ocy][term.ocx]); ++ } + term.ocx = cx, term.ocy = term.c.y; + xfinishdraw(); + } Added: head/x11/sterm/files/extra-scrollback-patch-st.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/extra-scrollback-patch-st.h Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,31 @@ +--- st.h.orig 2018-03-20 20:29:59 UTC ++++ st.h +@@ -3,6 +3,9 @@ + #include + #include + ++/* Arbitrary size */ ++#define HISTSIZE 2000 ++ + /* macros */ + #define MIN(a, b) ((a) < (b) ? (a) : (b)) + #define MAX(a, b) ((a) < (b) ? (b) : (a)) +@@ -19,6 +22,8 @@ + + #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b)) + #define IS_TRUECOL(x) (1 << 24 & (x)) ++#define TLINE(y) ((y) < term.scr ? term.hist[((y) + term.histi - term.scr \ ++ + HISTSIZE + 1) % HISTSIZE] : term.line[(y) - term.scr]) + + enum glyph_attribute { + ATTR_NULL = 0, +@@ -111,6 +116,9 @@ void *xmalloc(size_t); + void *xrealloc(void *, size_t); + char *xstrdup(char *); + ++void kscrolldown(const Arg *); ++void kscrollup(const Arg *); ++ + /* config.h globals */ + extern char *utmp; + extern char *stty_args; Added: head/x11/sterm/files/extra-solarized-patch-config.def.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/extra-solarized-patch-config.def.h Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,95 @@ +--- config.def.h.orig 2018-03-20 20:29:59 UTC ++++ config.def.h +@@ -84,31 +84,44 @@ unsigned int tabspaces = 8; + + /* Terminal colors (16 first used in escape sequence) */ + static const char *colorname[] = { +- /* 8 normal colors */ +- "black", +- "red3", +- "green3", +- "yellow3", +- "blue2", +- "magenta3", +- "cyan3", +- "gray90", +- +- /* 8 bright colors */ +- "gray50", +- "red", +- "green", +- "yellow", +- "#5c5cff", +- "magenta", +- "cyan", +- "white", +- +- [255] = 0, +- +- /* more colors can be added after 255 to use with DefaultXX */ +- "#cccccc", +- "#555555", ++ /* solarized dark */ ++ "#073642", /* 0: black */ ++ "#dc322f", /* 1: red */ ++ "#859900", /* 2: green */ ++ "#b58900", /* 3: yellow */ ++ "#268bd2", /* 4: blue */ ++ "#d33682", /* 5: magenta */ ++ "#2aa198", /* 6: cyan */ ++ "#eee8d5", /* 7: white */ ++ "#002b36", /* 8: brblack */ ++ "#cb4b16", /* 9: brred */ ++ "#586e75", /* 10: brgreen */ ++ "#657b83", /* 11: bryellow */ ++ "#839496", /* 12: brblue */ ++ "#6c71c4", /* 13: brmagenta*/ ++ "#93a1a1", /* 14: brcyan */ ++ "#fdf6e3", /* 15: brwhite */ ++}; ++ ++/* Terminal colors for alternate (light) palette */ ++static const char *altcolorname[] = { ++ /* solarized light */ ++ "#eee8d5", /* 0: black */ ++ "#dc322f", /* 1: red */ ++ "#859900", /* 2: green */ ++ "#b58900", /* 3: yellow */ ++ "#268bd2", /* 4: blue */ ++ "#d33682", /* 5: magenta */ ++ "#2aa198", /* 6: cyan */ ++ "#073642", /* 7: white */ ++ "#fdf6e3", /* 8: brblack */ ++ "#cb4b16", /* 9: brred */ ++ "#93a1a1", /* 10: brgreen */ ++ "#839496", /* 11: bryellow */ ++ "#657b83", /* 12: brblue */ ++ "#6c71c4", /* 13: brmagenta*/ ++ "#586e75", /* 14: brcyan */ ++ "#002b36", /* 15: brwhite */ + }; + + +@@ -116,10 +129,10 @@ static const char *colorname[] = { + * Default colors (colorname index) + * foreground, background, cursor, reverse cursor + */ +-unsigned int defaultfg = 7; +-unsigned int defaultbg = 0; +-static unsigned int defaultcs = 256; +-static unsigned int defaultrcs = 257; ++unsigned int defaultfg = 12; ++unsigned int defaultbg = 8; ++static unsigned int defaultcs = 14; ++static unsigned int defaultrcs = 15; + + /* + * Default shape of cursor +@@ -178,6 +191,7 @@ static Shortcut shortcuts[] = { + { TERMMOD, XK_Y, selpaste, {.i = 0} }, + { TERMMOD, XK_Num_Lock, numlock, {.i = 0} }, + { TERMMOD, XK_I, iso14755, {.i = 0} }, ++ { XK_ANY_MOD, XK_F6, swapcolors, {.i = 0} }, + }; + + /* Added: head/x11/sterm/files/extra-solarized-patch-st.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/extra-solarized-patch-st.h Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,10 @@ +--- st.h.orig 2018-03-20 20:29:59 UTC ++++ st.h +@@ -118,6 +118,7 @@ extern char *vtiden; + extern char *worddelimiters; + extern int allowaltscreen; + extern char *termname; ++extern int usealtcolors; + extern unsigned int tabspaces; + extern unsigned int defaultfg; + extern unsigned int defaultbg; Added: head/x11/sterm/files/extra-solarized-patch-x.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sterm/files/extra-solarized-patch-x.c Mon Jun 18 13:08:35 2018 (r472687) @@ -0,0 +1,100 @@ +--- x.c.orig 2018-03-20 20:29:59 UTC ++++ x.c +@@ -53,6 +53,7 @@ static void clipcopy(const Arg *); + static void clippaste(const Arg *); + static void numlock(const Arg *); + static void selpaste(const Arg *); ++static void swapcolors(const Arg *); + static void zoom(const Arg *); + static void zoomabs(const Arg *); + static void zoomreset(const Arg *); +@@ -240,6 +241,8 @@ static char *opt_title = NULL; + + static int oldbutton = 3; /* button event on startup: 3 = release */ + ++int usealtcolors = 0; /* 1 to use alternate palette */ ++ + void + clipcopy(const Arg *dummy) + { +@@ -279,6 +282,14 @@ numlock(const Arg *dummy) + } + + void ++swapcolors(const Arg *dummy) ++{ ++ usealtcolors = !usealtcolors; ++ xloadcols(); ++ redraw(); ++} ++ ++void + zoom(const Arg *arg) + { + Arg larg; +@@ -700,6 +711,11 @@ sixd_to_16bit(int x) + return x == 0 ? 0 : 0x3737 + 0x2828 * x; + } + ++const char* getcolorname(int i) ++{ ++ return (usealtcolors) ? altcolorname[i] : colorname[i]; ++} ++ + int + xloadcolor(int i, const char *name, Color *ncolor) + { +@@ -718,7 +734,7 @@ xloadcolor(int i, const char *name, Colo + return XftColorAllocValue(xw.dpy, xw.vis, + xw.cmap, &color, ncolor); + } else +- name = colorname[i]; ++ name = getcolorname(i); + } + + return XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, ncolor); +@@ -731,7 +747,7 @@ xloadcols(void) + static int loaded; + Color *cp; + +- dc.collen = MAX(LEN(colorname), 256); ++ dc.collen = MAX(LEN(colorname), LEN(altcolorname)); + dc.col = xmalloc(dc.collen * sizeof(Color)); + + if (loaded) { +@@ -741,8 +757,8 @@ xloadcols(void) + + for (i = 0; i < dc.collen; i++) + if (!xloadcolor(i, NULL, &dc.col[i])) { +- if (colorname[i]) +- die("Could not allocate color '%s'\n", colorname[i]); ++ if (getcolorname(i)) ++ die("Could not allocate color '%s'\n", getcolorname(i)); + else + die("Could not allocate color %d\n", i); + } +@@ -1079,13 +1095,13 @@ xinit(int cols, int rows) + cursor = XCreateFontCursor(xw.dpy, mouseshape); + XDefineCursor(xw.dpy, xw.win, cursor); + +- if (XParseColor(xw.dpy, xw.cmap, colorname[mousefg], &xmousefg) == 0) { ++ if (XParseColor(xw.dpy, xw.cmap, getcolorname(mousefg), &xmousefg) == 0) { + xmousefg.red = 0xffff; + xmousefg.green = 0xffff; + xmousefg.blue = 0xffff; + } + +- if (XParseColor(xw.dpy, xw.cmap, colorname[mousebg], &xmousebg) == 0) { ++ if (XParseColor(xw.dpy, xw.cmap, getcolorname(mousebg), &xmousebg) == 0) { + xmousebg.red = 0x0000; + xmousebg.green = 0x0000; + xmousebg.blue = 0x0000; +@@ -1295,7 +1311,7 @@ xdrawglyphfontspecs(const XftGlyphFontSp + + /* Change basic system colors [0-7] to bright system colors [8-15] */ + if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7)) +- fg = &dc.col[base.fg + 8]; ++ fg = &dc.col[base.fg]; + + if (IS_SET(MODE_REVERSE)) { + if (fg == &dc.col[defaultfg]) { From owner-svn-ports-head@freebsd.org Mon Jun 18 13:10:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35B7B1006651; Mon, 18 Jun 2018 13:10:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DBAFF7E1AB; Mon, 18 Jun 2018 13:10:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A29C3247A0; Mon, 18 Jun 2018 13:10:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IDA1OA031477; Mon, 18 Jun 2018 13:10:01 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IDA1xu031476; Mon, 18 Jun 2018 13:10:01 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806181310.w5IDA1xu031476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 18 Jun 2018 13:10:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472688 - head/x11/sterm/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11/sterm/files X-SVN-Commit-Revision: 472688 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:10:02 -0000 Author: swills Date: Mon Jun 18 13:10:01 2018 New Revision: 472688 URL: https://svnweb.freebsd.org/changeset/ports/472688 Log: Remove accidentally added .gitattributes file Deleted: head/x11/sterm/files/.gitattributes From owner-svn-ports-head@freebsd.org Mon Jun 18 13:15:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E98671006C26; Mon, 18 Jun 2018 13:15:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A6647E746; Mon, 18 Jun 2018 13:15:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7925024943; Mon, 18 Jun 2018 13:15:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IDFOow036184; Mon, 18 Jun 2018 13:15:24 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IDFOIU036182; Mon, 18 Jun 2018 13:15:24 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806181315.w5IDFOIU036182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 18 Jun 2018 13:15:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472689 - head/security/gopass X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/security/gopass X-SVN-Commit-Revision: 472689 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:15:25 -0000 Author: swills Date: Mon Jun 18 13:15:23 2018 New Revision: 472689 URL: https://svnweb.freebsd.org/changeset/ports/472689 Log: security/gopass: update to 1.8.1 PR: 229103 Submitted by: Sascha Holzleiter (maintainer) Modified: head/security/gopass/Makefile (contents, props changed) head/security/gopass/distinfo (contents, props changed) Modified: head/security/gopass/Makefile ============================================================================== --- head/security/gopass/Makefile Mon Jun 18 13:10:01 2018 (r472688) +++ head/security/gopass/Makefile Mon Jun 18 13:15:23 2018 (r472689) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gopass -PORTVERSION= 1.7.2 +PORTVERSION= 1.8.1 DISTVERSIONPREFIX= v CATEGORIES= security @@ -12,12 +12,13 @@ COMMENT= Gopass is a rewrite of the pass password mana LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= gpg2:security/gnupg +RUN_DEPENDS= git:devel/git \ + gpg2:security/gnupg USES= go USE_GITHUB= yes -GH_ACCOUNT= justwatchcom +GH_ACCOUNT= gopasspw GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} Modified: head/security/gopass/distinfo ============================================================================== --- head/security/gopass/distinfo Mon Jun 18 13:10:01 2018 (r472688) +++ head/security/gopass/distinfo Mon Jun 18 13:15:23 2018 (r472689) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527534180 -SHA256 (justwatchcom-gopass-v1.7.2_GH0.tar.gz) = 71fece96684e36f4765e913bf30bf93c9bf7a1df9638b9187732d49d8b2f22cb -SIZE (justwatchcom-gopass-v1.7.2_GH0.tar.gz) = 5929128 +TIMESTAMP = 1529309385 +SHA256 (gopasspw-gopass-v1.8.1_GH0.tar.gz) = 14b016112abaf18427d58009e61999a7d2aff2d49df9a4458ab572532d4b05e8 +SIZE (gopasspw-gopass-v1.8.1_GH0.tar.gz) = 5953043 From owner-svn-ports-head@freebsd.org Mon Jun 18 13:16:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BFD91006D67; Mon, 18 Jun 2018 13:16:57 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DDBF77E873; Mon, 18 Jun 2018 13:16:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BD80424946; Mon, 18 Jun 2018 13:16:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IDGusg036370; Mon, 18 Jun 2018 13:16:56 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IDGuki036368; Mon, 18 Jun 2018 13:16:56 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806181316.w5IDGuki036368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 18 Jun 2018 13:16:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472690 - head/dns/py-dns-lexicon X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/dns/py-dns-lexicon X-SVN-Commit-Revision: 472690 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:16:57 -0000 Author: swills Date: Mon Jun 18 13:16:56 2018 New Revision: 472690 URL: https://svnweb.freebsd.org/changeset/ports/472690 Log: dns/py-dns-lexicon: Update to 2.4.3 PR: 229104 Submitted by: Goran Mekić (maintainer) Modified: head/dns/py-dns-lexicon/Makefile (contents, props changed) head/dns/py-dns-lexicon/distinfo (contents, props changed) Modified: head/dns/py-dns-lexicon/Makefile ============================================================================== --- head/dns/py-dns-lexicon/Makefile Mon Jun 18 13:15:23 2018 (r472689) +++ head/dns/py-dns-lexicon/Makefile Mon Jun 18 13:16:56 2018 (r472690) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dns-lexicon -DISTVERSION= 2.3.0 +DISTVERSION= 2.4.3 CATEGORIES= dns python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/dns/py-dns-lexicon/distinfo ============================================================================== --- head/dns/py-dns-lexicon/distinfo Mon Jun 18 13:15:23 2018 (r472689) +++ head/dns/py-dns-lexicon/distinfo Mon Jun 18 13:16:56 2018 (r472690) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527415643 -SHA256 (dns-lexicon-2.3.0.tar.gz) = fad9002f9fdb9208f9f0094ba4290ca326a354f27990b3dcf98d8d2a5318b4f6 -SIZE (dns-lexicon-2.3.0.tar.gz) = 54661 +TIMESTAMP = 1529311382 +SHA256 (dns-lexicon-2.4.3.tar.gz) = 4565395329cfdb72aed4f58c4ccc075486ac829b5d1853f9287a4abeb38687bd +SIZE (dns-lexicon-2.4.3.tar.gz) = 57567 From owner-svn-ports-head@freebsd.org Mon Jun 18 13:26:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 201711007493; Mon, 18 Jun 2018 13:26:24 +0000 (UTC) (envelope-from jonathan@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7BFD7ECFB; Mon, 18 Jun 2018 13:26:23 +0000 (UTC) (envelope-from jonathan@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A4C8B24AD4; Mon, 18 Jun 2018 13:26:23 +0000 (UTC) (envelope-from jonathan@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IDQNbj041499; Mon, 18 Jun 2018 13:26:23 GMT (envelope-from jonathan@FreeBSD.org) Received: (from jonathan@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IDQNkr041498; Mon, 18 Jun 2018 13:26:23 GMT (envelope-from jonathan@FreeBSD.org) Message-Id: <201806181326.w5IDQNkr041498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jonathan set sender to jonathan@FreeBSD.org using -f From: Jonathan Anderson Date: Mon, 18 Jun 2018 13:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472691 - head/multimedia/webcamd/files X-SVN-Group: ports-head X-SVN-Commit-Author: jonathan X-SVN-Commit-Paths: head/multimedia/webcamd/files X-SVN-Commit-Revision: 472691 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:26:24 -0000 Author: jonathan (src committer) Date: Mon Jun 18 13:26:23 2018 New Revision: 472691 URL: https://svnweb.freebsd.org/changeset/ports/472691 Log: Add devd rule for Elantech touchscreens. The touchscreen in the HP Spectre x360 is made by Elantech rather than Wacom. Adding this devd rule starts webcamd properly for such devices, enabling their use with the X evdev driver. Approved by: hselasky Differential Revision: https://reviews.freebsd.org/D8397 Modified: head/multimedia/webcamd/files/webcamd.conf.in Modified: head/multimedia/webcamd/files/webcamd.conf.in ============================================================================== --- head/multimedia/webcamd/files/webcamd.conf.in Mon Jun 18 13:16:56 2018 (r472690) +++ head/multimedia/webcamd/files/webcamd.conf.in Mon Jun 18 13:26:23 2018 (r472691) @@ -39,3 +39,15 @@ notify 100 { match "vendor" "0x056a"; action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface"; }; + +# Elantech touchscreen +notify 100 { + match "system" "USB"; + match "subsystem" "INTERFACE"; + match "type" "ATTACH"; + + match "vendor" "0x04f3"; + match "product" "0x2071"; + + action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface"; +}; From owner-svn-ports-head@freebsd.org Mon Jun 18 13:35:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14EF01007C40; Mon, 18 Jun 2018 13:35:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B75497F339; Mon, 18 Jun 2018 13:35:27 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A8E824C6A; Mon, 18 Jun 2018 13:35:27 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IDZRs4046975; Mon, 18 Jun 2018 13:35:27 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IDZReY046974; Mon, 18 Jun 2018 13:35:27 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806181335.w5IDZReY046974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 18 Jun 2018 13:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472692 - head/textproc/consul-template X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/textproc/consul-template X-SVN-Commit-Revision: 472692 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 13:35:28 -0000 Author: swills Date: Mon Jun 18 13:35:26 2018 New Revision: 472692 URL: https://svnweb.freebsd.org/changeset/ports/472692 Log: textproc/consul-template: update to 0.19.5 Modified: head/textproc/consul-template/Makefile (contents, props changed) head/textproc/consul-template/distinfo (contents, props changed) Modified: head/textproc/consul-template/Makefile ============================================================================== --- head/textproc/consul-template/Makefile Mon Jun 18 13:26:23 2018 (r472691) +++ head/textproc/consul-template/Makefile Mon Jun 18 13:35:26 2018 (r472692) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= consul-template -PORTVERSION= 0.19.4 +PORTVERSION= 0.19.5 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= swills@FreeBSD.org Modified: head/textproc/consul-template/distinfo ============================================================================== --- head/textproc/consul-template/distinfo Mon Jun 18 13:26:23 2018 (r472691) +++ head/textproc/consul-template/distinfo Mon Jun 18 13:35:26 2018 (r472692) @@ -1,3 +1,3 @@ -TIMESTAMP = 1512580165 -SHA256 (hashicorp-consul-template-v0.19.4_GH0.tar.gz) = 97290bd7621560bdada4bb4dba6195638d57f122161ef0429f626a5ea0a204cc -SIZE (hashicorp-consul-template-v0.19.4_GH0.tar.gz) = 6048451 +TIMESTAMP = 1529328028 +SHA256 (hashicorp-consul-template-v0.19.5_GH0.tar.gz) = d10dbd1f332f1882c433f410a0704a84de405ba3068f285f9c23704701ee3d73 +SIZE (hashicorp-consul-template-v0.19.5_GH0.tar.gz) = 6054881 From owner-svn-ports-head@freebsd.org Mon Jun 18 14:00:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F054810095E5; Mon, 18 Jun 2018 14:00:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0238804FE; Mon, 18 Jun 2018 14:00:52 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 812D724FFA; Mon, 18 Jun 2018 14:00:52 +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 w5IE0qdV057606; Mon, 18 Jun 2018 14:00:52 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IE0hfj057564; Mon, 18 Jun 2018 14:00:43 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181400.w5IE0hfj057564@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 14:00:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472693 - in head: graphics/animorph graphics/evolvotron graphics/fracplanet graphics/gimmage graphics/goxel graphics/mupdf graphics/pqiv graphics/py-gphoto2 graphics/scantailor graphic... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: graphics/animorph graphics/evolvotron graphics/fracplanet graphics/gimmage graphics/goxel graphics/mupdf graphics/pqiv graphics/py-gphoto2 graphics/scantailor graphics/waifu2x-converter-cpp g... X-SVN-Commit-Revision: 472693 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:00:53 -0000 Author: linimon Date: Mon Jun 18 14:00:43 2018 New Revision: 472693 URL: https://svnweb.freebsd.org/changeset/ports/472693 Log: Mark ports broken on powerpc64, categories g-n. While here, pet portlint and do some other cleanup. Approved by: portmgr (tier-2 blanket) Modified: head/graphics/animorph/Makefile head/graphics/evolvotron/Makefile head/graphics/fracplanet/Makefile head/graphics/gimmage/Makefile head/graphics/goxel/Makefile head/graphics/mupdf/Makefile head/graphics/pqiv/Makefile head/graphics/py-gphoto2/Makefile head/graphics/scantailor/Makefile head/graphics/waifu2x-converter-cpp/Makefile head/graphics/wayland/Makefile head/irc/ezbounce/Makefile head/mail/isync/Makefile head/mail/openemm2013/Makefile head/mail/openemm2015/Makefile head/math/drgeo/Makefile head/math/libmesh/Makefile head/math/libqalculate/Makefile head/math/pari/Makefile head/math/rexx-regmath/Makefile head/math/stp/Makefile head/misc/bibletime/Makefile head/misc/free42/Makefile head/misc/libpostal/Makefile head/misc/libsweep-lidar/Makefile head/multimedia/gstreamer1-editing-services/Makefile head/net-im/prosody/Makefile head/net-mgmt/mdata-client/Makefile head/net-p2p/torrent-file-editor/Makefile head/net-p2p/verlihub-plugins-floodprotect/Makefile head/net-p2p/xmrig/Makefile head/net/bird2/Makefile head/net/delegate/Makefile head/net/freeradius3/Makefile head/net/grive2/Makefile head/net/liferea/Makefile head/net/ndproxy/Makefile head/net/samba46/Makefile head/net/samba48/Makefile Modified: head/graphics/animorph/Makefile ============================================================================== --- head/graphics/animorph/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/animorph/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,6 +12,8 @@ COMMENT= Morphing engine for MakeHuman LICENSE= LGPL21 +BROKEN_powerpc64= fails to compile: unrecognized command line option "-std=gnu++03" + GNU_CONFIGURE= yes USES= pkgconfig gmake libtool USE_LDCONFIG= yes Modified: head/graphics/evolvotron/Makefile ============================================================================== --- head/graphics/evolvotron/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/evolvotron/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -15,6 +15,8 @@ COMMENT= Generative software that evolves images/textu LICENSE= GPLv3+ # LICENSE file is GPLv2 though +BROKEN_powerpc64= fails to link: evolvotron.o: undefined reference to boost::program_options::options_description::options_description + LIB_DEPENDS= libboost_thread.so:devel/boost-libs WRKSRC= ${WRKDIR}/${PORTNAME} Modified: head/graphics/fracplanet/Makefile ============================================================================== --- head/graphics/fracplanet/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/fracplanet/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -16,6 +16,8 @@ COMMENT= Interactive tool for creating random fractal LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to link: obj/fracplanet.o:(.text+0x250): undefined reference to boost::program_options::options_description::options_description + BUILD_DEPENDS= xsltproc:textproc/libxslt LIB_DEPENDS= libboost_program_options.so:devel/boost-libs Modified: head/graphics/gimmage/Makefile ============================================================================== --- head/graphics/gimmage/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/gimmage/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Simple image viewer LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to configure: C++ compiler cannot create executables + LIB_DEPENDS= libcurl.so:ftp/curl \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 Modified: head/graphics/goxel/Makefile ============================================================================== --- head/graphics/goxel/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/goxel/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,6 +12,8 @@ COMMENT= Free and Open Source 3D Voxel Editor LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to build: sh: clang++: not found + LIB_DEPENDS= libargp.so:devel/argp-standalone \ libglfw.so:graphics/glfw \ libpng.so:graphics/png Modified: head/graphics/mupdf/Makefile ============================================================================== --- head/graphics/mupdf/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/mupdf/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -15,6 +15,8 @@ COMMENT= Lightweight PDF viewer and toolkit LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: cmsmd5.c:36:51: 'ContextID' undeclared + LIB_DEPENDS= libcurl.so:ftp/curl \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ Modified: head/graphics/pqiv/Makefile ============================================================================== --- head/graphics/pqiv/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/pqiv/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -10,6 +10,8 @@ COMMENT= Pretty Quick Image Viewer LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: pqiv.c:1183: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 BUILD_DEPENDS= bash:shells/bash Modified: head/graphics/py-gphoto2/Makefile ============================================================================== --- head/graphics/py-gphoto2/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/py-gphoto2/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Python bindings for libgphoto2 LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-unused-but-set-variable" + LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 USES= pkgconfig python shebangfix Modified: head/graphics/scantailor/Makefile ============================================================================== --- head/graphics/scantailor/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/scantailor/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,11 +12,12 @@ COMMENT= Interactive post-processing tool for scanned LICENSE= GPLv3 -LIB_DEPENDS= libtiff.so:graphics/tiff \ - libjbig.so:graphics/jbigkit \ - libpng.so:graphics/png \ +BROKEN_powerpc64= fails to compile: core.hpp:69: boost::lambda::::_1 causes a section type conflict BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs +LIB_DEPENDS= libtiff.so:graphics/tiff \ + libjbig.so:graphics/jbigkit \ + libpng.so:graphics/png #MAKE_JOBS_UNSAFE= yes USES= cmake gettext jpeg Modified: head/graphics/waifu2x-converter-cpp/Makefile ============================================================================== --- head/graphics/waifu2x-converter-cpp/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/waifu2x-converter-cpp/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -14,6 +14,8 @@ LICENSE_COMB= multi LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to link: libw2xc.so: undefined reference to cv::imread + BUILD_DEPENDS= ${LOCALBASE}/include/CL/opencl.h:devel/opencl LIB_DEPENDS= libopencv_highgui.so:graphics/opencv \ libopencv_imgproc.so:graphics/opencv-core Modified: head/graphics/wayland/Makefile ============================================================================== --- head/graphics/wayland/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/graphics/wayland/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,6 +12,8 @@ COMMENT= Wayland composite "server" LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: tests/test-runner.c:349: undefined reference to prctl + LIB_DEPENDS= libexpat.so:textproc/expat2 \ libffi.so:devel/libffi \ libepoll-shim.so:devel/libepoll-shim Modified: head/irc/ezbounce/Makefile ============================================================================== --- head/irc/ezbounce/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/irc/ezbounce/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -10,6 +10,8 @@ MASTER_SITES= http://BSDforge.com/projects/source/irc/ MAINTAINER= portmaster@BSDforge.com COMMENT= Highly configurable IRC Proxy +BROKEN_powerpc64= fails to configure: checking for boostlib >= 1.33... not found + OPTIONS_DEFINE= DOCS SSL COMPRESS OPTIONS_DEFAULT=SSL COMPRESS OPTIONS_SUB= yes Modified: head/mail/isync/Makefile ============================================================================== --- head/mail/isync/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/mail/isync/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -11,6 +11,8 @@ COMMENT= Maintain local copies of remote IMAP folders LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: util.c:523: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 USES= alias bdb cpe perl5 ssl Modified: head/mail/openemm2013/Makefile ============================================================================== --- head/mail/openemm2013/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/mail/openemm2013/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -17,6 +17,8 @@ COMMENT= OpenEMM a email marketing enterprise app LICENSE= CPAL-1.0 LICENSE_FILE= ${WRKSRC}/other/LICENSE.txt +BROKEN_powerpc64= fails to build: gmake[1]: clang: Command not found + LIB_DEPENDS= libslang.so:devel/libslang2 \ libsa.so:net/ossp-sa BUILD_DEPENDS= ${TOMCATHOME}/bin/bootstrap.jar:www/tomcat8 \ @@ -24,11 +26,11 @@ BUILD_DEPENDS= ${TOMCATHOME}/bin/bootstrap.jar:www/tom RUN_DEPENDS= ${TOMCATHOME}/bin/bootstrap.jar:www/tomcat8 \ py27-MySQLdb>=1.2.3:databases/py-MySQLdb +USES= dos2unix gmake python:2.7,run USE_RC_SUBR= openemm2013 USE_JAVA= yes JAVA_VERSION= 1.7+ -USES= dos2unix gmake python:2.7,run DOS2UNIX_GLOB= *.c *.cpp *.h *.java *.xml *.properties CC= clang CXX= clang++ Modified: head/mail/openemm2015/Makefile ============================================================================== --- head/mail/openemm2015/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/mail/openemm2015/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -16,6 +16,8 @@ COMMENT= OpenEMM a email marketing enterprise app LICENSE= CPAL-1.0 LICENSE_FILE= ${WRKSRC}/other/LICENSE.txt +BROKEN_powerpc64= fails to build: gmake[1]: clang: Command not found + LIB_DEPENDS= libslang.so:devel/libslang2 \ libsa.so:net/ossp-sa BUILD_DEPENDS= ${TOMCATHOME}/bin/bootstrap.jar:www/tomcat8 \ @@ -23,11 +25,11 @@ BUILD_DEPENDS= ${TOMCATHOME}/bin/bootstrap.jar:www/tom RUN_DEPENDS= ${TOMCATHOME}/bin/bootstrap.jar:www/tomcat8 \ py27-MySQLdb>=1.2.3:databases/py-MySQLdb +USES= dos2unix gmake python:2.7,run USE_RC_SUBR= openemm2015 USE_JAVA= yes JAVA_VERSION= 1.7+ -USES= dos2unix gmake python:2.7,run DOS2UNIX_GLOB= *.c *.cpp *.h *.java *.xml *.properties CC= clang CXX= clang++ Modified: head/math/drgeo/Makefile ============================================================================== --- head/math/drgeo/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/math/drgeo/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= GTK interactive geometry software LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: ./geo/libgeo.a: multiple definition of drgeoDialogData + LIB_DEPENDS= libguile.so:lang/guile GNU_CONFIGURE= yes Modified: head/math/libmesh/Makefile ============================================================================== --- head/math/libmesh/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/math/libmesh/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Numerical simulation of partial differential LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to link: libcontrib_opt.a: relocation truncated to fit: R_PPC64_GOT_TLSLD16 against .LANCHOR1 + LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= autoreconf eigen:3 gmake libtool Modified: head/math/libqalculate/Makefile ============================================================================== --- head/math/libqalculate/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/math/libqalculate/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Multi-purpose desktop calculator (backend lib LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: umachine.h:347: 'char16_t' does not name a type + LIB_DEPENDS= libicuuc.so:devel/icu \ libcurl.so:ftp/curl \ libgmp.so:math/gmp \ Modified: head/math/pari/Makefile ============================================================================== --- head/math/pari/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/math/pari/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -14,6 +14,8 @@ COMMENT= Mathematics library and advanced calculator p LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to link: intnum.o: relocation truncated to fit: R_PPC64_GOT_TLSGD16 against symbol 'avma' defined in .tbss section in init.o + LIB_DEPENDS= libgmp.so:math/gmp USES= perl5 readline Modified: head/math/rexx-regmath/Makefile ============================================================================== --- head/math/rexx-regmath/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/math/rexx-regmath/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -14,6 +14,8 @@ COMMENT= Two mathematics libraries for Rexx LICENSE= MPL10 +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-incompatible-pointer-types" + BUILD_DEPENDS= ${LOCALBASE}/include/rexxsaa.h:lang/rexx-regina USES= zip Modified: head/math/stp/Makefile ============================================================================== --- head/math/stp/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/math/stp/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,13 +12,14 @@ COMMENT= Decision Procedure for Bitvectors and Arrays LICENSE= MIT +BROKEN_aarch64= fails to compile: undefined reference to sbrk +BROKEN_powerpc64= fails to compile: main.cpp.o: undefined reference to boost::program_options::error_with_option_name::get_canonical_option_name() + LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \ libboost_system.so:devel/boost-libs USES= bison:build cmake:noninja perl5 tar:xz USE_PERL5= build CMAKE_ARGS= -DFL_LIBRARY=/usr/lib/libfl.a - -BROKEN_aarch64= Fails to compile: undefined reference to sbrk .include Modified: head/misc/bibletime/Makefile ============================================================================== --- head/misc/bibletime/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/misc/bibletime/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -11,6 +11,8 @@ COMMENT= Open source Bible study tool LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: btosismorphsegmentation.cpp.o: undefined reference to sword::SWOptionFilter::SWOptionFilter + LIB_DEPENDS= libclucene-core.so:textproc/clucene \ libsword.so:misc/sword Modified: head/misc/free42/Makefile ============================================================================== --- head/misc/free42/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/misc/free42/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_aarch64= fails to link: c++: error: no such file or directory: 'gcc111libbid.a' BROKEN_armv6= fails to link: c++: error: no such file or directory: 'gcc111libbid.a' BROKEN_mips64= fails to link: c++: error: no such file or directory: 'gcc111libbid.a' +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-c++11-narrowing" LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 Modified: head/misc/libpostal/Makefile ============================================================================== --- head/misc/libpostal/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/misc/libpostal/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -11,6 +11,8 @@ COMMENT= Library for parsing/normalizing street addres LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-c++11-narrowing" + RUN_DEPENDS= curl:ftp/curl USES= autoreconf libtool localbase Modified: head/misc/libsweep-lidar/Makefile ============================================================================== --- head/misc/libsweep-lidar/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/misc/libsweep-lidar/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -11,6 +11,8 @@ COMMENT= Low-level Scanse Sweep LiDAR library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Weverything" + USES= cmake:outsource USE_GITHUB= yes GH_ACCOUNT= scanse Modified: head/multimedia/gstreamer1-editing-services/Makefile ============================================================================== --- head/multimedia/gstreamer1-editing-services/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/multimedia/gstreamer1-editing-services/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -10,6 +10,8 @@ DISTNAME= gstreamer-editing-services-${PORTVERSION} MAINTAINER= multimedia@FreeBSD.org COMMENT= GStreamer editing services +BROKEN_powerpc64= fails to compile: ges-extractable.h:24: error: redefinition of typedef 'GESExtractable' + PORTSCOUT= limitw:1,even USES= gmake gnome libtool pathfix python:2.7 pkgconfig tar:xz Modified: head/net-im/prosody/Makefile ============================================================================== --- head/net-im/prosody/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net-im/prosody/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Simple extensible XMPP server written in Lua LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: table.c:14: 'for' loop initial declaration used outside C99 mode + RUN_DEPENDS= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket-51 \ ${LUA_MODLIBDIR}/ssl.so:security/luasec-51 \ ${LUA_MODLIBDIR}/lxp.so:textproc/luaexpat-51 \ Modified: head/net-mgmt/mdata-client/Makefile ============================================================================== --- head/net-mgmt/mdata-client/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net-mgmt/mdata-client/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -10,9 +10,10 @@ COMMENT= Metadata tools for use within guests of the S LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_GITHUB= yes -GH_ACCOUNT= joyent +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-typedef-redefinition" USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= joyent .include Modified: head/net-p2p/torrent-file-editor/Makefile ============================================================================== --- head/net-p2p/torrent-file-editor/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net-p2p/torrent-file-editor/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,6 +12,8 @@ COMMENT= Qt-based GUI tool for creating and editing .t LICENSE= GPLv3 +BROKEN_powerpc64= fails to compile: -Werror=cpp: No option -Wcpp + USES= cmake desktop-file-utils _QT4_DEPS= linguisttools_build moc_build qmake_build rcc_build \ Modified: head/net-p2p/verlihub-plugins-floodprotect/Makefile ============================================================================== --- head/net-p2p/verlihub-plugins-floodprotect/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net-p2p/verlihub-plugins-floodprotect/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -10,6 +10,8 @@ DISTNAME= ${PLUGIN_NAME} MAINTAINER= me@skylord.ru +BROKEN_powerpc64= fails to compile: thasharray.h:338:29: cast from 'std::nullptr_t' to 'short int' loses precision + PLUGIN_NAME= floodprot PLUGIN_DESC= Floodprotect Modified: head/net-p2p/xmrig/Makefile ============================================================================== --- head/net-p2p/xmrig/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net-p2p/xmrig/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,6 +12,8 @@ COMMENT= High performance Monero (XMR) CPU miner LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to configure: Target "xmrig" requires the language dialect "CXX11", but CMake does not know the compile flags to use to enable it. + OPTIONS_DEFINE= STATIC MICROHTTPD MICROHTTPD_DESC=Build with libmicrohttpd support OPTIONS_DEFAULT=MICROHTTPD Modified: head/net/bird2/Makefile ============================================================================== --- head/net/bird2/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/bird2/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Dynamic IP routing daemon LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: ./lib/ip.h:337: 'for' loop initial declaration used outside C99 mode + LIB_DEPENDS= libssh.so:security/libssh CONFLICTS= bird-[0-9]* Modified: head/net/delegate/Makefile ============================================================================== --- head/net/delegate/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/delegate/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -10,6 +10,8 @@ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= danilo@FreeBSD.org COMMENT= General purpose TCP/IP proxy system +BROKEN_powerpc64= fails to build: gmake[1]: *** [Makefile:116: mkmake.exe] Error 1 + USES= gmake SUB_FILES= pkg-message Modified: head/net/freeradius3/Makefile ============================================================================== --- head/net/freeradius3/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/freeradius3/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -17,6 +17,8 @@ COMMENT= Free RADIUS server implementation LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-date-time" + LIB_DEPENDS= libgdbm.so:databases/gdbm \ libtalloc.so:devel/talloc @@ -26,9 +28,9 @@ KRB5_CONFIG?= /usr/bin/krb5-config --libs CONFLICTS_INSTALL= gnu-radius-[0-9].* openradius-[0-9].* radiusd-cistron-[0-9].* \ freeradius-mysql-[0-9].* freeradius-[^3].* +USES= gmake readline shebangfix ssl tar:bzip2 USE_RC_SUBR= radiusd -USES= gmake readline shebangfix ssl tar:bzip2 SHEBANG_FILES= src/modules/rlm_counter/rad_counter scripts/sql/radsqlrelay GNU_CONFIGURE= yes # Prevent /root/.rnd leftover Modified: head/net/grive2/Makefile ============================================================================== --- head/net/grive2/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/grive2/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -12,6 +12,8 @@ COMMENT= Open source client for Google Drive LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: JsonValTest.cc.o: undefined reference to boost::unit_test::ut_detail::normalize_test_case_name + LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ libcurl.so:ftp/curl \ libexpat.so:textproc/expat2 \ Modified: head/net/liferea/Makefile ============================================================================== --- head/net/liferea/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/liferea/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -11,6 +11,8 @@ COMMENT= Simple RSS/RDF feed reader LICENSE= GPLv2 +BROKEN_powerpc64= fails to compile: WebKitWebEditor.h:40: redefinition of typedef 'WebKitWebEditor' + BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ libwebkit2gtk-4.0.so:www/webkit2-gtk3 \ Modified: head/net/ndproxy/Makefile ============================================================================== --- head/net/ndproxy/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/ndproxy/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -11,6 +11,8 @@ COMMENT= Implementation of IPv6 Neighbor Discovery pro LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to build: ndproxy.c:51: function declaration isn't a prototype + SUB_FILES= pkg-message USES= kmod Modified: head/net/samba46/Makefile ============================================================================== --- head/net/samba46/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/samba46/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT?= Free SMB/CIFS and AD/DC server and client LICENSE= GPLv3 +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-format-truncation" + IGNORE_NONTHREAD_PYTHON= needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support CONFLICTS_INSTALL?= samba4-4.0.* samba4[1-57-9]-4.* p5-Parse-Pidl-4.* Modified: head/net/samba48/Makefile ============================================================================== --- head/net/samba48/Makefile Mon Jun 18 13:35:26 2018 (r472692) +++ head/net/samba48/Makefile Mon Jun 18 14:00:43 2018 (r472693) @@ -13,6 +13,8 @@ COMMENT= Free SMB/CIFS and AD/DC server and client f LICENSE= GPLv3 +BROKEN_powerpc64= fails to compile: auth.idl:107: Unable to determine origin of type struct cli_credentials + IGNORE_NONTHREAD_PYTHON= needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support CONFLICTS_INSTALL?= samba4-4.0.* samba4[1-79]-4.* p5-Parse-Pidl-4.* From owner-svn-ports-head@freebsd.org Mon Jun 18 14:07:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77AFF1009CC9; Mon, 18 Jun 2018 14:07:19 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 285FE80B29; Mon, 18 Jun 2018 14:07: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 095FD2516E; Mon, 18 Jun 2018 14:07: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 w5IE7IqB062941; Mon, 18 Jun 2018 14:07:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IE7I0s062940; Mon, 18 Jun 2018 14:07:18 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806181407.w5IE7I0s062940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 18 Jun 2018 14:07:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472695 - head/multimedia/ffmpeg X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/ffmpeg X-SVN-Commit-Revision: 472695 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:07:19 -0000 Author: jbeich Date: Mon Jun 18 14:07:18 2018 New Revision: 472695 URL: https://svnweb.freebsd.org/changeset/ports/472695 Log: multimedia/ffmpeg: update to 4.0.1 Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0.1:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Security: CVE-2018-12458, CVE-2018-12459, CVE-2018-12460 PR: 227726 (for tracking) Modified: head/multimedia/ffmpeg/Makefile (contents, props changed) head/multimedia/ffmpeg/distinfo (contents, props changed) Modified: head/multimedia/ffmpeg/Makefile ============================================================================== --- head/multimedia/ffmpeg/Makefile Mon Jun 18 14:05:42 2018 (r472694) +++ head/multimedia/ffmpeg/Makefile Mon Jun 18 14:07:18 2018 (r472695) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ffmpeg -PORTVERSION= 4.0 -PORTREVISION= 1 +PORTVERSION= 4.0.1 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= https://ffmpeg.org/releases/ Modified: head/multimedia/ffmpeg/distinfo ============================================================================== --- head/multimedia/ffmpeg/distinfo Mon Jun 18 14:05:42 2018 (r472694) +++ head/multimedia/ffmpeg/distinfo Mon Jun 18 14:07:18 2018 (r472695) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524218686 -SHA256 (ffmpeg-4.0.tar.xz) = ed945daf40b124e77a685893cc025d086f638bc703183460aff49508edb3a43f -SIZE (ffmpeg-4.0.tar.xz) = 8656948 +TIMESTAMP = 1529111536 +SHA256 (ffmpeg-4.0.1.tar.xz) = 605f5c01c60db35d3b617a79cabb2c7032412be243554602eeed1b628125c0ee +SIZE (ffmpeg-4.0.1.tar.xz) = 8663660 From owner-svn-ports-head@freebsd.org Mon Jun 18 14:10:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAA79100A16D; Mon, 18 Jun 2018 14:10:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5CA7180FD8; Mon, 18 Jun 2018 14:10:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F85625288; Mon, 18 Jun 2018 14:10:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IEAwu5064292; Mon, 18 Jun 2018 14:10:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEAvlA064290; Mon, 18 Jun 2018 14:10:57 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201806181410.w5IEAvlA064290@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 18 Jun 2018 14:10:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472696 - in head/lang/mono: . files X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/lang/mono: . files X-SVN-Commit-Revision: 472696 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:10:58 -0000 Author: feld Date: Mon Jun 18 14:10:57 2018 New Revision: 472696 URL: https://svnweb.freebsd.org/changeset/ports/472696 Log: lang/mono: Require python 2.7 - Revive python patch for mono-heapviz - Also remove unnecessary mirror/distfile tag Added: head/lang/mono/files/patch-scripts_mono-heapviz - copied unchanged from r472554, head/lang/mono/files/patch-scripts_mono-heapviz Modified: head/lang/mono/Makefile Modified: head/lang/mono/Makefile ============================================================================== --- head/lang/mono/Makefile Mon Jun 18 14:07:18 2018 (r472695) +++ head/lang/mono/Makefile Mon Jun 18 14:10:57 2018 (r472696) @@ -3,10 +3,10 @@ PORTNAME= mono PORTVERSION= 5.10.1.47 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang -MASTER_SITES= https://download.mono-project.com/sources/mono/:mono -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:mono +MASTER_SITES= https://download.mono-project.com/sources/mono/ +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= mono@FreeBSD.org COMMENT= Open source implementation of .NET Development Framework @@ -36,7 +36,7 @@ MONOLITE_VERSION= 1051000004 X11_USES= display:test USES= autoreconf bison compiler:c11 cpe gettext gmake iconv libtool \ - pathfix perl5 python shebangfix tar:bzip2 + pathfix perl5 python:2.7 shebangfix tar:bzip2 USE_PERL5= build GNU_CONFIGURE= yes USE_LDCONFIG= yes Copied: head/lang/mono/files/patch-scripts_mono-heapviz (from r472554, head/lang/mono/files/patch-scripts_mono-heapviz) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/mono/files/patch-scripts_mono-heapviz Mon Jun 18 14:10:57 2018 (r472696, copy of r472554, head/lang/mono/files/patch-scripts_mono-heapviz) @@ -0,0 +1,11 @@ +--- scripts/mono-heapviz.orig 2018-01-18 17:41:54 UTC ++++ scripts/mono-heapviz +@@ -7,7 +7,7 @@ + + from __future__ import print_function + import sys, os +-import Image, ImageDraw ++from PIL import Image, ImageDraw + from xml.sax import ContentHandler, make_parser + from xml.sax.handler import feature_namespaces + from optparse import OptionParser From owner-svn-ports-head@freebsd.org Mon Jun 18 14:12:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F0C6100A487; Mon, 18 Jun 2018 14:12:47 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 544DA813C5; Mon, 18 Jun 2018 14:12:47 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3501E25300; Mon, 18 Jun 2018 14:12:47 +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 w5IEClOf068340; Mon, 18 Jun 2018 14:12:47 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IECkTr068338; Mon, 18 Jun 2018 14:12:46 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201806181412.w5IECkTr068338@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Mon, 18 Jun 2018 14:12:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472697 - head/devel/jenkins X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/devel/jenkins X-SVN-Commit-Revision: 472697 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:12:47 -0000 Author: lwhsu Date: Mon Jun 18 14:12:46 2018 New Revision: 472697 URL: https://svnweb.freebsd.org/changeset/ports/472697 Log: - Update to 2.128 Sponsored by: The FreeBSD Foundation Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Mon Jun 18 14:10:57 2018 (r472696) +++ head/devel/jenkins/Makefile Mon Jun 18 14:12:46 2018 (r472697) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.127 +PORTVERSION= 2.128 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Mon Jun 18 14:10:57 2018 (r472696) +++ head/devel/jenkins/distinfo Mon Jun 18 14:12:46 2018 (r472697) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528772415 -SHA256 (jenkins/2.127/jenkins.war) = 5ab171dc956939e8b43bf81512577a74e540ecd99388e6b51e0b477d1cf2910b -SIZE (jenkins/2.127/jenkins.war) = 74788242 +TIMESTAMP = 1529330646 +SHA256 (jenkins/2.128/jenkins.war) = e9288b78093507953550214c395bb6f1baf7a23c172a6cb9c035e5a7305ae7a2 +SIZE (jenkins/2.128/jenkins.war) = 74881373 From owner-svn-ports-head@freebsd.org Mon Jun 18 14:37:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67D51100B805; Mon, 18 Jun 2018 14:37:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 15DFF8209F; Mon, 18 Jun 2018 14:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E798325636; Mon, 18 Jun 2018 14:37:09 +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 w5IEb9ut078236; Mon, 18 Jun 2018 14:37:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEb9vg078234; Mon, 18 Jun 2018 14:37:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806181437.w5IEb9vg078234@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 18 Jun 2018 14:37:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472698 - head/www/py-flexget X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/py-flexget X-SVN-Commit-Revision: 472698 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:37:10 -0000 Author: jbeich Date: Mon Jun 18 14:37:09 2018 New Revision: 472698 URL: https://svnweb.freebsd.org/changeset/ports/472698 Log: www/py-flexget: update to 2.13.22 Changes: https://github.com/Flexget/Flexget/compare/2.13.21...2.13.22 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 Mon Jun 18 14:12:46 2018 (r472697) +++ head/www/py-flexget/Makefile Mon Jun 18 14:37:09 2018 (r472698) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.13.21 +PORTVERSION= 2.13.22 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-flexget/distinfo ============================================================================== --- head/www/py-flexget/distinfo Mon Jun 18 14:12:46 2018 (r472697) +++ head/www/py-flexget/distinfo Mon Jun 18 14:37:09 2018 (r472698) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527559438 -SHA256 (flexget-Flexget-2.13.21_GH0.tar.gz) = a10db146b443662793a20c6db1e0b28e590910de22befad1eba2051d51ba1a3f -SIZE (flexget-Flexget-2.13.21_GH0.tar.gz) = 6963305 +TIMESTAMP = 1529287463 +SHA256 (flexget-Flexget-2.13.22_GH0.tar.gz) = 17e1541528356532e2ab147afa632b93c099c4ef3505a1ad01d72099c9b03d58 +SIZE (flexget-Flexget-2.13.22_GH0.tar.gz) = 7173342 From owner-svn-ports-head@freebsd.org Mon Jun 18 14:40:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C1F3100BB6C; Mon, 18 Jun 2018 14:40:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C531822DB; Mon, 18 Jun 2018 14:40:38 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2B592563F; Mon, 18 Jun 2018 14:40:37 +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 w5IEebrS078816; Mon, 18 Jun 2018 14:40:37 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEeVME078786; Mon, 18 Jun 2018 14:40:31 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181440.w5IEeVME078786@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 14:40:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472699 - in head: print/pdfcube science/cdo science/pcmsolver security/clamfs security/highwayhash security/iaikpkcs11wrapper security/libtomcrypt security/py-python-nss security/spass... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: print/pdfcube science/cdo science/pcmsolver security/clamfs security/highwayhash security/iaikpkcs11wrapper security/libtomcrypt security/py-python-nss security/spass sysutils/cbsd sysutils/c... X-SVN-Commit-Revision: 472699 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:40:38 -0000 Author: linimon Date: Mon Jun 18 14:40:31 2018 New Revision: 472699 URL: https://svnweb.freebsd.org/changeset/ports/472699 Log: Mark ports broken on powerpc64, categories o-z. While here, pet portlint and do some other cleanup. Approved by: portmgr (tier-2 blanket) Modified: head/print/pdfcube/Makefile head/science/cdo/Makefile head/science/pcmsolver/Makefile head/security/clamfs/Makefile head/security/highwayhash/Makefile head/security/iaikpkcs11wrapper/Makefile head/security/libtomcrypt/Makefile head/security/py-python-nss/Makefile head/security/spass/Makefile head/sysutils/cbsd/Makefile head/sysutils/condor/Makefile head/sysutils/fusefs-libs3/Makefile head/sysutils/incron/Makefile head/sysutils/smart/Makefile head/textproc/ffe/Makefile head/textproc/heirloom-doctools/Makefile head/textproc/libmwaw03/Makefile head/textproc/multimarkdown/Makefile head/textproc/source-highlight/Makefile head/textproc/xmlwrapp/Makefile head/www/domoticz/Makefile head/www/h2o/Makefile head/www/mod_md-devel/Makefile head/x11-toolkits/gnustep-gui/Makefile head/x11-toolkits/gtksourceview3/Makefile head/x11-toolkits/py-fltk/Makefile head/x11-wm/gcompmgr/Makefile Modified: head/print/pdfcube/Makefile ============================================================================== --- head/print/pdfcube/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/print/pdfcube/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -10,6 +10,8 @@ MASTER_SITES= http://code.100allora.it/releases/pdfcub MAINTAINER= lwhsu@FreeBSD.org COMMENT= OpenGL presentation viewer on a spinning cube +BROKEN_powerpc64= fails to configure: checking for exit in -lboost_program_options... no + LIB_DEPENDS= libgtkglext-x11-1.0.so:x11-toolkits/gtkglext \ libpoppler-glib.so:graphics/poppler-glib \ libboost_program_options.so:devel/boost-libs Modified: head/science/cdo/Makefile ============================================================================== --- head/science/cdo/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/science/cdo/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -13,6 +13,8 @@ COMMENT= Climate Data Operators LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: remaplib.cc:1504:6: internal compiler error: in gsi_insert_seq_nodes_after, at gimple-iterator.c:283 + OPTIONS_DEFINE= CGRIBEX HDF5 JASPER NETCDF PROJ SZIP UDUNITS UUID OPTIONS_DEFAULT=CGRIBEX HDF5 JASPER NETCDF PROJ SZIP UDUNITS UUID OPTIONS_SUB= yes @@ -36,9 +38,9 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip MAKE_JOBS_UNSAFE= yes TEST_TARGET= check +USES= compiler:c++11-lib gmake libtool localbase pathfix USE_CXXSTD= c++11 USE_LDCONFIG= yes -USES= compiler:c++11-lib gmake libtool localbase pathfix CGRIBEX_CONFIGURE_WITH= cgribex CGRIBEX_LIB_DEPENDS= libcgribex.so:science/cgribex Modified: head/science/pcmsolver/Makefile ============================================================================== --- head/science/pcmsolver/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/science/pcmsolver/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -11,6 +11,8 @@ COMMENT= API for the Polarizable Continuum Model LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: SphericalDiffuse.cpp:182: invalid initialization of non-const reference + LIB_DEPENDS= libflang.so:devel/flang # USES=fortran:clang breaks in configure: can't find libs directory USES= cmake:outsource,noninja python Modified: head/security/clamfs/Makefile ============================================================================== --- head/security/clamfs/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/security/clamfs/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -14,6 +14,7 @@ LICENSE= GPLv2 BROKEN_armv6= fails to compile: ./config.hxx:52:17: expected namespace name BROKEN_armv7= fails to compile: ./config.hxx:52:17: expected namespace name +BROKEN_powerpc64= fails to compile: g++6: unrecognized command line option '-mavx2' LIB_DEPENDS= libccgnu2.so:devel/commoncpp \ libPocoNet.so:devel/poco-ssl \ Modified: head/security/highwayhash/Makefile ============================================================================== --- head/security/highwayhash/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/security/highwayhash/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -12,6 +12,7 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to compile: /usr/lib/clang/5.0.0/include/mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms' +BROKEN_powerpc64= fails to link: main.cpp.o: undefined reference to `boost::program_options::options_description::options_description ONLY_FOR_ARCHS= aarch64 amd64 powerpc powerpc64 ONLY_FOR_ARCHS_REASON= Assembly is implemented only for specific architectures in highwayhash/tsc_timer.h Modified: head/security/iaikpkcs11wrapper/Makefile ============================================================================== --- head/security/iaikpkcs11wrapper/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/security/iaikpkcs11wrapper/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -10,6 +10,8 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:S/./_/g} MAINTAINER= ale@FreeBSD.org COMMENT= PKCS\#11 Java wrapper +BROKEN_powerpc64= fails to link: cannot find -lgcc + OPTIONS_DEFINE= DOCS EXAMPLES USES= dos2unix gmake zip Modified: head/security/libtomcrypt/Makefile ============================================================================== --- head/security/libtomcrypt/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/security/libtomcrypt/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -14,6 +14,8 @@ COMMENT= Comprehensive, modular, and portable cryptogr LICENSE= PD LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-type-limits" + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} CFLAGS+= -I${LOCALBASE}/include Modified: head/security/py-python-nss/Makefile ============================================================================== --- head/security/py-python-nss/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/security/py-python-nss/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -15,6 +15,8 @@ LICENSE_FILE_LGPL21+ = ${WRKSRC}/LICENSE.lgpl LICENSE_FILE_GPLv2+ = ${WRKSRC}/LICENSE.gpl LICENSE_FILE_MPL20= ${WRKSRC}/LICENSE.mpl +BROKEN_powerpc64= fails to compile: py_nss.c:20285: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= libnspr4.so:devel/nspr \ libnss3.so:security/nss Modified: head/security/spass/Makefile ============================================================================== --- head/security/spass/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/security/spass/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -11,10 +11,11 @@ COMMENT= Secure password generator with a true random LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_sparc64= cannot link with boost +BROKEN_powerpc64= fails to link: main.cpp.o: undefined reference to boost::program_options::options_description::options_description + BUILD_DEPENDS= ${LOCALBASE}/include/boost/format.hpp:devel/boost-libs LIB_DEPENDS= libboost_program_options.so:devel/boost-libs - -BROKEN_sparc64= cannot link with boost USE_GITHUB= yes GH_ACCOUNT= guyru Modified: head/sysutils/cbsd/Makefile ============================================================================== --- head/sysutils/cbsd/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/sysutils/cbsd/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -10,6 +10,8 @@ COMMENT= Yet another FreeBSD Jail and Bhyve Management LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to link: cannot find -lc++ + RUN_DEPENDS= rsync:net/rsync \ sudo:security/sudo \ sqlite3:databases/sqlite3 \ Modified: head/sysutils/condor/Makefile ============================================================================== --- head/sysutils/condor/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/sysutils/condor/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -17,7 +17,7 @@ COMMENT= High-throughput computing on distributively o LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt -BROKEN_powerpc64= fails to build +BROKEN_powerpc64= fails to link: test_unit.hpp:249: undefined reference to boost::unit_test::ut_detail::normalize_test_case_name LIB_DEPENDS= libkrb5support.so:security/krb5 \ libpcre.so:devel/pcre \ Modified: head/sysutils/fusefs-libs3/Makefile ============================================================================== --- head/sysutils/fusefs-libs3/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/sysutils/fusefs-libs3/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -12,6 +12,8 @@ COMMENT= FUSE library version 3 for filesystems implem LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-unused-result" + USES= meson USE_LDCONFIG= yes Modified: head/sysutils/incron/Makefile ============================================================================== --- head/sysutils/incron/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/sysutils/incron/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -15,6 +15,8 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE-GPL LICENSE_FILE_LGPL21= ${WRKSRC}/LICENSE-LGPL LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-X11 +BROKEN_powerpc64= fails to compile: usertable.cpp:440: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= libinotify.so:devel/libinotify USE_GITHUB= indeed Modified: head/sysutils/smart/Makefile ============================================================================== --- head/sysutils/smart/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/sysutils/smart/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -9,6 +9,7 @@ COMMENT= Output disk SMART values LICENSE= ISCL +BROKEN_powerpc64= fails to compile: libsmart.c:241: storage size of 's' isn't constant IGNORE_FreeBSD_10= Requires FreeBSD 11 or later USE_GITHUB= yes Modified: head/textproc/ffe/Makefile ============================================================================== --- head/textproc/ffe/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/textproc/ffe/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -12,6 +12,8 @@ COMMENT= Flat file extractor LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wmaybe-uninitialized" + LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error Modified: head/textproc/heirloom-doctools/Makefile ============================================================================== --- head/textproc/heirloom-doctools/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/textproc/heirloom-doctools/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -10,6 +10,8 @@ COMMENT= Portable and enhanced troff, nroff, and relat LICENSE= CDDL +BROKEN_powerpc64= fails to package: Unable to access file pub/utf-8: No such file or directory + USES= gmake USE_GITHUB= yes GH_ACCOUNT= n-t-roff Modified: head/textproc/libmwaw03/Makefile ============================================================================== --- head/textproc/libmwaw03/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/textproc/libmwaw03/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -12,6 +12,8 @@ COMMENT= Import library for some old mac text document LICENSE= LGPL21+ MPL20 LICENSE_COMB= dual +BROKEN_powerpc64= fails to compile: MWAWCell.cxx:644: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= librevenge-0.0.so:textproc/librevenge CONFIGURE_ARGS= --disable-werror --without-docs Modified: head/textproc/multimarkdown/Makefile ============================================================================== --- head/textproc/multimarkdown/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/textproc/multimarkdown/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -13,6 +13,8 @@ LICENSE= BSD3CLAUSE MIT GPLv2+ ZLIB LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN_powerpc64= fails to compile: Sources/libMultiMarkdown/file.h:116: redefinition of typedef 'DString' + LIB_DEPENDS= libcurl.so:ftp/curl USES= cmake Modified: head/textproc/source-highlight/Makefile ============================================================================== --- head/textproc/source-highlight/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/textproc/source-highlight/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -13,7 +13,8 @@ COMMENT= C/C++ and Java sources to HTML converter LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_sparc64= Does not compile with GCC 4.2 +BROKEN_powerpc64= fails to configure: checking for exit in -lboost_regex... (cached) no +BROKEN_sparc64= fails to compile with GCC 4.2 BUILD_DEPENDS= exctags:devel/ctags LIB_DEPENDS= libboost_regex.so:devel/boost-libs Modified: head/textproc/xmlwrapp/Makefile ============================================================================== --- head/textproc/xmlwrapp/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/textproc/xmlwrapp/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -13,6 +13,8 @@ COMMENT= Modern style C++ library for working with XML LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to configure: invalid value: boost_major_version= + LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs OPTIONS_DEFINE= XSLT DOCS @@ -22,7 +24,7 @@ OPTIONS_SUB= yes XSLT_USE= gnome=libxslt XSLT_CONFIGURE_ENABLE= xslt -USES= pathfix pkgconfig libtool +USES= compiler:c++11-lang libtool pathfix pkgconfig USE_GNOME= libxml2 GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/www/domoticz/Makefile ============================================================================== --- head/www/domoticz/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/www/domoticz/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -11,6 +11,8 @@ COMMENT= Home Automation System LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/License.txt +BROKEN_powerpc64= fails to compile: libboost_thread.so: undefined reference to std::__cxx11::basic_string + LIB_DEPENDS= libcurl.so:ftp/curl \ libexpat.so:textproc/expat2 Modified: head/www/h2o/Makefile ============================================================================== --- head/www/h2o/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/www/h2o/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -15,6 +15,7 @@ LICENSE_COMB= multi BROKEN_armv6= fails to compile: asm_arm.inc:139:36: '.syntax divided' arm assembly not supported BROKEN_armv7= fails to compile: asm_arm.inc:139:36: '.syntax divided' arm assembly not supported +BROKEN_powerpc64= fails to link: unrecognized option '-Wl,-rpath=/usr/local/lib/gcc6' LIB_DEPENDS= libuv.so:devel/libuv Modified: head/www/mod_md-devel/Makefile ============================================================================== --- head/www/mod_md-devel/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/www/mod_md-devel/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -14,6 +14,8 @@ COMMENT= Early experience LetsEncrypt module for Apach LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= fails to compile: md_json.c:29: expected [error|warning|ignored] after '#pragma GCC diagnostic' + LIB_DEPENDS= libaprutil-1.so:devel/apr1 \ libcurl.so:ftp/curl \ libjansson.so:devel/jansson Modified: head/x11-toolkits/gnustep-gui/Makefile ============================================================================== --- head/x11-toolkits/gnustep-gui/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/x11-toolkits/gnustep-gui/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -23,6 +23,7 @@ LIB_DEPENDS+= libflite.so:audio/flite BROKEN_armv6= fails to package: chmod: GSSpeechServer.desktop: No such file or directory BROKEN_armv7= fails to package: chmod: GSSpeechServer.desktop: No such file or directory +BROKEN_powerpc64= fails to build: Illegal instruction (core dumped) OPTIONS_DEFINE= DOCS CUPS ASPELL OPTIONS_DEFAULT= CUPS Modified: head/x11-toolkits/gtksourceview3/Makefile ============================================================================== --- head/x11-toolkits/gtksourceview3/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/x11-toolkits/gtksourceview3/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -11,6 +11,8 @@ DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Text widget that adds syntax highlighting to the GtkTextView widget +BROKEN_powerpc64= fails to compile: gtksourcetag.h:43: redefinition of typedef 'GtkSourceTag' + USES= tar:xz PORTSCOUT= limitw:1,even Modified: head/x11-toolkits/py-fltk/Makefile ============================================================================== --- head/x11-toolkits/py-fltk/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/x11-toolkits/py-fltk/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -14,13 +14,15 @@ COMMENT= Python interface to FLTK window toolkit LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: fltk_wrap.cpp:5355: #pragma GCC diagnostic not allowed inside functions + LIB_DEPENDS= libfltk.so:x11-toolkits/fltk CFLAGS+= -DFL_LIBRARY MAKE_ENV= FLTK_HOME=${LOCALBASE}/bin +USES= python USE_PYTHON= autoplist distutils USE_XORG= x11 -USES= python DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Modified: head/x11-wm/gcompmgr/Makefile ============================================================================== --- head/x11-wm/gcompmgr/Makefile Mon Jun 18 14:37:09 2018 (r472698) +++ head/x11-wm/gcompmgr/Makefile Mon Jun 18 14:40:31 2018 (r472699) @@ -10,6 +10,8 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-$ MAINTAINER= ports@FreeBSD.org COMMENT= GNOME interface to xcompmgr +BROKEN_powerpc64= fails to compile: params.cc:135:37: 'memset' was not declared in this scope + RUN_DEPENDS= xcompmgr:x11-wm/xcompmgr GNU_CONFIGURE= yes From owner-svn-ports-head@freebsd.org Mon Jun 18 14:48:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4652100C26B; Mon, 18 Jun 2018 14:48:34 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 974D082823; Mon, 18 Jun 2018 14:48:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 759A1257C5; Mon, 18 Jun 2018 14:48:34 +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 w5IEmYV3084398; Mon, 18 Jun 2018 14:48:34 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEmYbU084397; Mon, 18 Jun 2018 14:48:34 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181448.w5IEmYbU084397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 14:48:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472700 - head/x11-toolkits/gtksourceview3 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/x11-toolkits/gtksourceview3 X-SVN-Commit-Revision: 472700 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:48:35 -0000 Author: linimon Date: Mon Jun 18 14:48:34 2018 New Revision: 472700 URL: https://svnweb.freebsd.org/changeset/ports/472700 Log: Fix WWW. Missed in previous commit. Modified: head/x11-toolkits/gtksourceview3/pkg-descr Modified: head/x11-toolkits/gtksourceview3/pkg-descr ============================================================================== --- head/x11-toolkits/gtksourceview3/pkg-descr Mon Jun 18 14:40:31 2018 (r472699) +++ head/x11-toolkits/gtksourceview3/pkg-descr Mon Jun 18 14:48:34 2018 (r472700) @@ -1,4 +1,4 @@ GtkSourceView is a text widget for Gtk+-3 that provides syntax highlighting and other features typically expected in a source code editor. -https://wiki.gnome.org/Projects/GtkSourceView/ +WWW: https://wiki.gnome.org/Projects/GtkSourceView/ From owner-svn-ports-head@freebsd.org Mon Jun 18 14:49:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD6AB100C3A0; Mon, 18 Jun 2018 14:49:43 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 916BB8294E; Mon, 18 Jun 2018 14:49:43 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 74013257C6; Mon, 18 Jun 2018 14:49:43 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IEnh8K084560; Mon, 18 Jun 2018 14:49:43 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEnhMq084558; Mon, 18 Jun 2018 14:49:43 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201806181449.w5IEnhMq084558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Mon, 18 Jun 2018 14:49:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472701 - head/benchmarks/stress-ng X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: head/benchmarks/stress-ng X-SVN-Commit-Revision: 472701 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:49:44 -0000 Author: pizzamig Date: Mon Jun 18 14:49:42 2018 New Revision: 472701 URL: https://svnweb.freebsd.org/changeset/ports/472701 Log: benchmarks/stress-ng: Update to 0.09.30 Modified: head/benchmarks/stress-ng/Makefile head/benchmarks/stress-ng/distinfo Modified: head/benchmarks/stress-ng/Makefile ============================================================================== --- head/benchmarks/stress-ng/Makefile Mon Jun 18 14:48:34 2018 (r472700) +++ head/benchmarks/stress-ng/Makefile Mon Jun 18 14:49:42 2018 (r472701) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= stress-ng -PORTVERSION= 0.09.29 +PORTVERSION= 0.09.30 CATEGORIES= benchmarks MASTER_SITES= http://kernel.ubuntu.com/~cking/tarballs/stress-ng/ Modified: head/benchmarks/stress-ng/distinfo ============================================================================== --- head/benchmarks/stress-ng/distinfo Mon Jun 18 14:48:34 2018 (r472700) +++ head/benchmarks/stress-ng/distinfo Mon Jun 18 14:49:42 2018 (r472701) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528815052 -SHA256 (stress-ng-0.09.29.tar.xz) = 2e701b5a11db8135bac3b7a47efea8573987df1d879d01f5d8c34cf61880490e -SIZE (stress-ng-0.09.29.tar.xz) = 349276 +TIMESTAMP = 1529329210 +SHA256 (stress-ng-0.09.30.tar.xz) = 38881e799cbc400d058f08ebe9d4aa4c3ca9979541aa67e36a24b217d0d07294 +SIZE (stress-ng-0.09.30.tar.xz) = 350520 From owner-svn-ports-head@freebsd.org Mon Jun 18 14:49:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62BFA100C3E2; Mon, 18 Jun 2018 14:49:49 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7920E82988; Mon, 18 Jun 2018 14:49:47 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2414C257C7; Mon, 18 Jun 2018 14:49:47 +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 w5IEnkmF084652; Mon, 18 Jun 2018 14:49:46 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEnk8m084651; Mon, 18 Jun 2018 14:49:46 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181449.w5IEnk8m084651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 14:49:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472702 - head/benchmarks/netperfmeter X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/benchmarks/netperfmeter X-SVN-Commit-Revision: 472702 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:49:49 -0000 Author: linimon Date: Mon Jun 18 14:49:46 2018 New Revision: 472702 URL: https://svnweb.freebsd.org/changeset/ports/472702 Log: Mark as broken on powerpc64. Approved by: portmgr (tier-2 blanket) Modified: head/benchmarks/netperfmeter/Makefile Modified: head/benchmarks/netperfmeter/Makefile ============================================================================== --- head/benchmarks/netperfmeter/Makefile Mon Jun 18 14:49:42 2018 (r472701) +++ head/benchmarks/netperfmeter/Makefile Mon Jun 18 14:49:46 2018 (r472702) @@ -12,6 +12,8 @@ COMMENT= Network Performance Meter LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-array-bounds" + USES= cmake shebangfix CMAKE_ON= BUILD_PLOT_PROGRAMS CMAKE_OFF= BUILD_TEST_PROGRAMS WITH_NEAT From owner-svn-ports-head@freebsd.org Mon Jun 18 14:54:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAE4A100CABD; Mon, 18 Jun 2018 14:54:46 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CF5B82F50; Mon, 18 Jun 2018 14:54:46 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5A10C2596A; Mon, 18 Jun 2018 14:54:46 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IEsk2d089375; Mon, 18 Jun 2018 14:54:46 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IEsjJW089373; Mon, 18 Jun 2018 14:54:45 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201806181454.w5IEsjJW089373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Mon, 18 Jun 2018 14:54:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472703 - head/math/dynare X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/math/dynare X-SVN-Commit-Revision: 472703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 14:54:47 -0000 Author: fernape Date: Mon Jun 18 14:54:45 2018 New Revision: 472703 URL: https://svnweb.freebsd.org/changeset/ports/472703 Log: math/dynare: update to 4.5.5 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15738 Modified: head/math/dynare/Makefile head/math/dynare/distinfo head/math/dynare/pkg-plist Modified: head/math/dynare/Makefile ============================================================================== --- head/math/dynare/Makefile Mon Jun 18 14:49:46 2018 (r472702) +++ head/math/dynare/Makefile Mon Jun 18 14:54:45 2018 (r472703) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= dynare -DISTVERSION= 4.5.4 -PORTREVISION= 4 +DISTVERSION= 4.5.5 CATEGORIES= math MASTER_SITES= http://www.dynare.org/release/source/ Modified: head/math/dynare/distinfo ============================================================================== --- head/math/dynare/distinfo Mon Jun 18 14:49:46 2018 (r472702) +++ head/math/dynare/distinfo Mon Jun 18 14:54:45 2018 (r472703) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518262738 -SHA256 (dynare-4.5.4.tar.xz) = 5ee1c30e9a8e0c0ec4f60e83c02beb98271f9e324b9b667d4a5f5b2ee634a7e6 -SIZE (dynare-4.5.4.tar.xz) = 16073208 +TIMESTAMP = 1528466462 +SHA256 (dynare-4.5.5.tar.xz) = 9e2f604aa7a722cbcc6a4150af0b7fb78874490cf0b4868b2a410193ae1e3727 +SIZE (dynare-4.5.5.tar.xz) = 16074424 Modified: head/math/dynare/pkg-plist ============================================================================== --- head/math/dynare/pkg-plist Mon Jun 18 14:49:46 2018 (r472702) +++ head/math/dynare/pkg-plist Mon Jun 18 14:54:45 2018 (r472703) @@ -628,14 +628,15 @@ lib/dynare/matlab/missing/nanmean/nanmean.m lib/dynare/matlab/missing/ordeig/ordeig.m lib/dynare/matlab/missing/rows_columns/columns.m lib/dynare/matlab/missing/rows_columns/rows.m +lib/dynare/matlab/missing/stats-matlab/common_size.m +lib/dynare/matlab/missing/stats-matlab/corr.m +lib/dynare/matlab/missing/stats-matlab/quantile.m lib/dynare/matlab/missing/stats/betacdf.m lib/dynare/matlab/missing/stats/betainv.m lib/dynare/matlab/missing/stats/betapdf.m lib/dynare/matlab/missing/stats/betarnd.m lib/dynare/matlab/missing/stats/chi2cdf.m lib/dynare/matlab/missing/stats/chi2inv.m -lib/dynare/matlab/missing/stats/common_size.m -lib/dynare/matlab/missing/stats/corr.m lib/dynare/matlab/missing/stats/exprnd.m lib/dynare/matlab/missing/stats/gamcdf.m lib/dynare/matlab/missing/stats/gaminv.m @@ -644,7 +645,6 @@ lib/dynare/matlab/missing/stats/gamrnd.m lib/dynare/matlab/missing/stats/normcdf.m lib/dynare/matlab/missing/stats/norminv.m lib/dynare/matlab/missing/stats/normpdf.m -lib/dynare/matlab/missing/stats/quantile.m lib/dynare/matlab/missing/stats/stdnormal_cdf.m lib/dynare/matlab/missing/stats/stdnormal_inv.m lib/dynare/matlab/missing/stats/stdnormal_pdf.m @@ -1171,7 +1171,6 @@ lib/dynare/matlab/stoch_simul.m lib/dynare/matlab/stochastic_solvers.m lib/dynare/matlab/store_smoother_results.m lib/dynare/matlab/subset.m -%%OCTAVE%%lib/dynare/matlab/supported_octave_version.m lib/dynare/matlab/symmetric_matrix_index.m lib/dynare/matlab/test_for_deep_parameters_calibration.m lib/dynare/matlab/th_autocovariances.m From owner-svn-ports-head@freebsd.org Mon Jun 18 15:26:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8758100E2D0; Mon, 18 Jun 2018 15:26:34 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68BDE841C9; Mon, 18 Jun 2018 15:26:34 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 45BC125E83; Mon, 18 Jun 2018 15:26:34 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IFQY45005078; Mon, 18 Jun 2018 15:26:34 GMT (envelope-from lev@FreeBSD.org) Received: (from lev@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IFQX7C005075; Mon, 18 Jun 2018 15:26:33 GMT (envelope-from lev@FreeBSD.org) Message-Id: <201806181526.w5IFQX7C005075@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lev set sender to lev@FreeBSD.org using -f From: "Lev A. Serebryakov" Date: Mon, 18 Jun 2018 15:26:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472704 - head/www/neon X-SVN-Group: ports-head X-SVN-Commit-Author: lev X-SVN-Commit-Paths: head/www/neon X-SVN-Commit-Revision: 472704 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 15:26:34 -0000 Author: lev Date: Mon Jun 18 15:26:33 2018 New Revision: 472704 URL: https://svnweb.freebsd.org/changeset/ports/472704 Log: Update to latest version 0.30.2, which should support OpenSSL 1.1.x Move distfile to LOCAL, as upstream site is dead. PR: 228867 Modified: head/www/neon/Makefile head/www/neon/distinfo head/www/neon/pkg-plist Modified: head/www/neon/Makefile ============================================================================== --- head/www/neon/Makefile Mon Jun 18 14:54:45 2018 (r472703) +++ head/www/neon/Makefile Mon Jun 18 15:26:33 2018 (r472704) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= neon -PORTVERSION= 0.30.1 +PORTVERSION= 0.30.2 CATEGORIES= www -MASTER_SITES= http://www.webdav.org/neon/ +MASTER_SITES= LOCAL/lev MAINTAINER= lev@FreeBSD.org COMMENT= HTTP and WebDAV client library for Unix systems Modified: head/www/neon/distinfo ============================================================================== --- head/www/neon/distinfo Mon Jun 18 14:54:45 2018 (r472703) +++ head/www/neon/distinfo Mon Jun 18 15:26:33 2018 (r472704) @@ -1,2 +1,3 @@ -SHA256 (neon-0.30.1.tar.gz) = 00c626c0dc18d094ab374dbd9a354915bfe4776433289386ed489c2ec0845cdd -SIZE (neon-0.30.1.tar.gz) = 911414 +TIMESTAMP = 1529335398 +SHA256 (neon-0.30.2.tar.gz) = db0bd8cdec329b48f53a6f00199c92d5ba40b0f015b153718d1b15d3d967fbca +SIZE (neon-0.30.2.tar.gz) = 932779 Modified: head/www/neon/pkg-plist ============================================================================== --- head/www/neon/pkg-plist Mon Jun 18 14:54:45 2018 (r472703) +++ head/www/neon/pkg-plist Mon Jun 18 15:26:33 2018 (r472704) @@ -26,7 +26,7 @@ include/neon/ne_xmlreq.h lib/libneon.a lib/libneon.so lib/libneon.so.27 -lib/libneon.so.27.3.1 +lib/libneon.so.27.3.2 libdata/pkgconfig/neon.pc man/man1/neon-config.1.gz man/man3/ne_add_request_header.3.gz From owner-svn-ports-head@freebsd.org Mon Jun 18 18:00:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FF681016558; Mon, 18 Jun 2018 18:00:30 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0813D6A2BF; Mon, 18 Jun 2018 18:00:30 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DE1A827745; Mon, 18 Jun 2018 18:00:29 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5II0Tev081205; Mon, 18 Jun 2018 18:00:29 GMT (envelope-from lev@FreeBSD.org) Received: (from lev@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5II0S4R081198; Mon, 18 Jun 2018 18:00:28 GMT (envelope-from lev@FreeBSD.org) Message-Id: <201806181800.w5II0S4R081198@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lev set sender to lev@FreeBSD.org using -f From: "Lev A. Serebryakov" Date: Mon, 18 Jun 2018 18:00:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472705 - in head/java: . linux-oracle-jdk10 linux-oracle-jre10 linux-oracle-serverjre10 X-SVN-Group: ports-head X-SVN-Commit-Author: lev X-SVN-Commit-Paths: in head/java: . linux-oracle-jdk10 linux-oracle-jre10 linux-oracle-serverjre10 X-SVN-Commit-Revision: 472705 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 18:00:30 -0000 Author: lev Date: Mon Jun 18 18:00:28 2018 New Revision: 472705 URL: https://svnweb.freebsd.org/changeset/ports/472705 Log: Add Oracle Linux Java 10 JDK/JRE/Server JRE. This version need linux-c7 and crashes with linux-c6. Works only on amd64. PR: 228848 Added: head/java/linux-oracle-jdk10/ head/java/linux-oracle-jdk10/Makefile (contents, props changed) head/java/linux-oracle-jdk10/distinfo (contents, props changed) head/java/linux-oracle-jdk10/pkg-descr (contents, props changed) head/java/linux-oracle-jdk10/pkg-message (contents, props changed) head/java/linux-oracle-jdk10/pkg-plist (contents, props changed) head/java/linux-oracle-jre10/ head/java/linux-oracle-jre10/Makefile (contents, props changed) head/java/linux-oracle-jre10/distinfo (contents, props changed) head/java/linux-oracle-jre10/pkg-descr (contents, props changed) head/java/linux-oracle-jre10/pkg-message (contents, props changed) head/java/linux-oracle-jre10/pkg-plist (contents, props changed) head/java/linux-oracle-serverjre10/ head/java/linux-oracle-serverjre10/Makefile (contents, props changed) head/java/linux-oracle-serverjre10/distinfo (contents, props changed) head/java/linux-oracle-serverjre10/pkg-descr (contents, props changed) head/java/linux-oracle-serverjre10/pkg-message (contents, props changed) head/java/linux-oracle-serverjre10/pkg-plist (contents, props changed) Modified: head/java/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Mon Jun 18 15:26:33 2018 (r472704) +++ head/java/Makefile Mon Jun 18 18:00:28 2018 (r472705) @@ -94,10 +94,13 @@ SUBDIR += jxgrabkey SUBDIR += langspec SUBDIR += lightweight-java-profiler + SUBDIR += linux-oracle-jdk10 SUBDIR += linux-oracle-jdk18 SUBDIR += linux-oracle-jdk9 + SUBDIR += linux-oracle-jre10 SUBDIR += linux-oracle-jre18 SUBDIR += linux-oracle-jre9 + SUBDIR += linux-oracle-serverjre10 SUBDIR += mmake SUBDIR += mx4j SUBDIR += netbeans Added: head/java/linux-oracle-jdk10/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/linux-oracle-jdk10/Makefile Mon Jun 18 18:00:28 2018 (r472705) @@ -0,0 +1,60 @@ +# $FreeBSD$ + +PORTNAME= jdk +PORTVERSION= ${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION} +CATEGORIES= java devel +MASTER_SITES= # +PKGNAMEPREFIX= linux-${JDK_VENDOR}- +PKGNAMESUFFIX= ${JDK_VERSION} +DISTNAME= jdk-${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION}_linux-x64_bin + +MAINTAINER= java@FreeBSD.org +COMMENT= Oracle Java ${JDK_VERSION} Development Kit for Linux + +ONLY_FOR_ARCHS= amd64 +RUN_DEPENDS= javavm:java/javavmwrapper + +RESTRICTED= Redistribution of repackaged binaries not permitted + +WRKSRC= ${WRKDIR}/jdk-${DL_JDK_VERSION} +PLIST_SUB= T=${APP_HOME:S/^${PREFIX}\///} PORTVERSION=${PORTVERSION} + +NO_BUILD= yes +USES= linux:c7 shebangfix +USE_LINUX= xorglibs + +JDK_VENDOR= oracle +JDK_VERSION= 10 +JDK_UPDATE_VERSION= 0 +JDK_PATCH_VERSION= 1 +.if ${JDK_PATCH_VERSION} == 0 +.if ${JDK_UPDATE_VERSION} == 0 +DL_JDK_VERSION= ${JDK_VERSION} +.else +DL_JDK_VERSION= ${JDK_VERSION}.${JDK_UPDATE_VERSION} +.endif +.else +DL_JDK_VERSION= ${JDK_VERSION}.${JDK_UPDATE_VERSION}.${JDK_PATCH_VERSION} +.endif +DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html + +APP_HOME= ${PREFIX}/${PKGNAMEPREFIX}${PORTNAME}${JDK_VERSION} +BIN_DIRS= bin +LIB_DIRS= ${BIN_DIRS:S|bin$|lib|} +SHEBANG_FILES= ${BIN_DIRS:S|$|/javapackager|} +bash_CMD= /compat/linux/bin/bash + +.include + +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE?=You must manually fetch the J2SE SDK download for the Linux platform (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again +.endif + +post-patch: + @cd ${WRKSRC}/include && ${LN} -s linux freebsd + +do-install: + @${MKDIR} ${STAGEDIR}${APP_HOME} + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${APP_HOME} + +.include Added: head/java/linux-oracle-jdk10/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/linux-oracle-jdk10/distinfo Mon Jun 18 18:00:28 2018 (r472705) @@ -0,0 +1,3 @@ +TIMESTAMP = 1528567719 +SHA256 (jdk-10.0.1_linux-x64_bin.tar.gz) = ae8ed645e6af38432a56a847597ac61d4283b7536688dbab44ab536199d1e5a4 +SIZE (jdk-10.0.1_linux-x64_bin.tar.gz) = 354846158 Added: head/java/linux-oracle-jdk10/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/linux-oracle-jdk10/pkg-descr Mon Jun 18 18:00:28 2018 (r472705) @@ -0,0 +1,3 @@ +The Oracle Java Development Kit 10 for Linux. + +WWW: http://www.oracle.com/us/technologies/java/index.html Added: head/java/linux-oracle-jdk10/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/linux-oracle-jdk10/pkg-message Mon Jun 18 18:00:28 2018 (r472705) @@ -0,0 +1,19 @@ +====================================================================== + +Warning: This JDK may be unstable. You are advised to use the native +FreeBSD JDK 8, in ports/java/openjdk8. + +This Java VM will attempt to obtain some system information by +accessing files in linux's procfs. You must install the Linux +emulation procfs filesystem for this to work correctly. The JVM +will exhibit various problems otherwise. This can be accomplished +by adding the following line to your /etc/fstab file: + + linprocfs /compat/linux/proc linprocfs rw 0 0 + +and then, as root, executing the commands: + +kldload linprocfs +mount /compat/linux/proc + +====================================================================== Added: head/java/linux-oracle-jdk10/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/linux-oracle-jdk10/pkg-plist Mon Jun 18 18:00:28 2018 (r472705) @@ -0,0 +1,1211 @@ +%%T%%/README.html +@mode 555 +%%T%%/bin/appletviewer +%%T%%/bin/idlj +%%T%%/bin/jaotc +%%T%%/bin/jar +%%T%%/bin/jarsigner +%%T%%/bin/java +@javavm %%RESETPREFIX%%/%%T%%/bin/java +%%T%%/bin/javac +%%T%%/bin/javadoc +%%T%%/bin/javap +%%T%%/bin/javapackager +%%T%%/bin/javaws +%%T%%/bin/jcmd +%%T%%/bin/jconsole +%%T%%/bin/jcontrol +%%T%%/bin/jdb +%%T%%/bin/jdeprscan +%%T%%/bin/jdeps +%%T%%/bin/jhsdb +%%T%%/bin/jimage +%%T%%/bin/jinfo +%%T%%/bin/jjs +%%T%%/bin/jlink +%%T%%/bin/jmap +%%T%%/bin/jmc +%%T%%/bin/jmod +%%T%%/bin/jps +%%T%%/bin/jrunscript +%%T%%/bin/jshell +%%T%%/bin/jstack +%%T%%/bin/jstat +%%T%%/bin/jstatd +%%T%%/bin/jweblauncher +%%T%%/bin/keytool +%%T%%/bin/orbd +%%T%%/bin/pack200 +%%T%%/bin/rmic +%%T%%/bin/rmid +%%T%%/bin/rmiregistry +%%T%%/bin/schemagen +%%T%%/bin/serialver +%%T%%/bin/servertool +%%T%%/bin/tnameserv +%%T%%/bin/unpack200 +%%T%%/bin/wsgen +%%T%%/bin/wsimport +%%T%%/bin/xjc +@mode +%%T%%/conf/logging.properties +%%T%%/conf/management/jmxremote.access +%%T%%/conf/management/jmxremote.password.template +%%T%%/conf/management/management.properties +%%T%%/conf/management/snmp.acl.template +%%T%%/conf/net.properties +%%T%%/conf/security/java.policy +%%T%%/conf/security/java.security +%%T%%/conf/security/javaws.policy +%%T%%/conf/security/policy/README.txt +%%T%%/conf/security/policy/limited/default_US_export.policy +%%T%%/conf/security/policy/limited/default_local.policy +%%T%%/conf/security/policy/limited/exempt_local.policy +%%T%%/conf/security/policy/unlimited/default_US_export.policy +%%T%%/conf/security/policy/unlimited/default_local.policy +%%T%%/conf/sound.properties +%%T%%/include/classfile_constants.h +%%T%%/include/freebsd +%%T%%/include/ir.idl +%%T%%/include/jawt.h +%%T%%/include/jdwpTransport.h +%%T%%/include/jni.h +%%T%%/include/jvmti.h +%%T%%/include/jvmticmlr.h +%%T%%/include/linux/jawt_md.h +%%T%%/include/linux/jni_md.h +%%T%%/include/orb.idl +%%T%%/jmods/java.activation.jmod +%%T%%/jmods/java.base.jmod +%%T%%/jmods/java.compiler.jmod +%%T%%/jmods/java.corba.jmod +%%T%%/jmods/java.datatransfer.jmod +%%T%%/jmods/java.desktop.jmod +%%T%%/jmods/java.instrument.jmod +%%T%%/jmods/java.jnlp.jmod +%%T%%/jmods/java.logging.jmod +%%T%%/jmods/java.management.jmod +%%T%%/jmods/java.management.rmi.jmod +%%T%%/jmods/java.naming.jmod +%%T%%/jmods/java.prefs.jmod +%%T%%/jmods/java.rmi.jmod +%%T%%/jmods/java.scripting.jmod +%%T%%/jmods/java.se.ee.jmod +%%T%%/jmods/java.se.jmod +%%T%%/jmods/java.security.jgss.jmod +%%T%%/jmods/java.security.sasl.jmod +%%T%%/jmods/java.smartcardio.jmod +%%T%%/jmods/java.sql.jmod +%%T%%/jmods/java.sql.rowset.jmod +%%T%%/jmods/java.transaction.jmod +%%T%%/jmods/java.xml.bind.jmod +%%T%%/jmods/java.xml.crypto.jmod +%%T%%/jmods/java.xml.jmod +%%T%%/jmods/java.xml.ws.annotation.jmod +%%T%%/jmods/java.xml.ws.jmod +%%T%%/jmods/javafx.base.jmod +%%T%%/jmods/javafx.controls.jmod +%%T%%/jmods/javafx.deploy.jmod +%%T%%/jmods/javafx.fxml.jmod +%%T%%/jmods/javafx.graphics.jmod +%%T%%/jmods/javafx.media.jmod +%%T%%/jmods/javafx.swing.jmod +%%T%%/jmods/javafx.web.jmod +%%T%%/jmods/jdk.accessibility.jmod +%%T%%/jmods/jdk.aot.jmod +%%T%%/jmods/jdk.attach.jmod +%%T%%/jmods/jdk.charsets.jmod +%%T%%/jmods/jdk.compiler.jmod +%%T%%/jmods/jdk.crypto.cryptoki.jmod +%%T%%/jmods/jdk.crypto.ec.jmod +%%T%%/jmods/jdk.deploy.controlpanel.jmod +%%T%%/jmods/jdk.deploy.jmod +%%T%%/jmods/jdk.dynalink.jmod +%%T%%/jmods/jdk.editpad.jmod +%%T%%/jmods/jdk.hotspot.agent.jmod +%%T%%/jmods/jdk.httpserver.jmod +%%T%%/jmods/jdk.incubator.httpclient.jmod +%%T%%/jmods/jdk.internal.ed.jmod +%%T%%/jmods/jdk.internal.jvmstat.jmod +%%T%%/jmods/jdk.internal.le.jmod +%%T%%/jmods/jdk.internal.opt.jmod +%%T%%/jmods/jdk.internal.vm.ci.jmod +%%T%%/jmods/jdk.internal.vm.compiler.jmod +%%T%%/jmods/jdk.jartool.jmod +%%T%%/jmods/jdk.javadoc.jmod +%%T%%/jmods/jdk.javaws.jmod +%%T%%/jmods/jdk.jcmd.jmod +%%T%%/jmods/jdk.jconsole.jmod +%%T%%/jmods/jdk.jdeps.jmod +%%T%%/jmods/jdk.jdi.jmod +%%T%%/jmods/jdk.jdwp.agent.jmod +%%T%%/jmods/jdk.jfr.jmod +%%T%%/jmods/jdk.jlink.jmod +%%T%%/jmods/jdk.jshell.jmod +%%T%%/jmods/jdk.jsobject.jmod +%%T%%/jmods/jdk.jstatd.jmod +%%T%%/jmods/jdk.localedata.jmod +%%T%%/jmods/jdk.management.agent.jmod +%%T%%/jmods/jdk.management.cmm.jmod +%%T%%/jmods/jdk.management.jfr.jmod +%%T%%/jmods/jdk.management.jmod +%%T%%/jmods/jdk.management.resource.jmod +%%T%%/jmods/jdk.naming.dns.jmod +%%T%%/jmods/jdk.naming.rmi.jmod +%%T%%/jmods/jdk.net.jmod +%%T%%/jmods/jdk.pack.jmod +%%T%%/jmods/jdk.packager.jmod +%%T%%/jmods/jdk.packager.services.jmod +%%T%%/jmods/jdk.plugin.jmod +%%T%%/jmods/jdk.plugin.server.jmod +%%T%%/jmods/jdk.rmic.jmod +%%T%%/jmods/jdk.scripting.nashorn.jmod +%%T%%/jmods/jdk.scripting.nashorn.shell.jmod +%%T%%/jmods/jdk.sctp.jmod +%%T%%/jmods/jdk.security.auth.jmod +%%T%%/jmods/jdk.security.jgss.jmod +%%T%%/jmods/jdk.snmp.jmod +%%T%%/jmods/jdk.unsupported.jmod +%%T%%/jmods/jdk.xml.bind.jmod +%%T%%/jmods/jdk.xml.dom.jmod +%%T%%/jmods/jdk.xml.ws.jmod +%%T%%/jmods/jdk.zipfs.jmod +%%T%%/jmods/oracle.desktop.jmod +%%T%%/jmods/oracle.net.jmod +%%T%%/legal/java.activation/COPYRIGHT +%%T%%/legal/java.activation/LICENSE +%%T%%/legal/java.base/COPYRIGHT +%%T%%/legal/java.base/LICENSE +%%T%%/legal/java.base/aes.md +%%T%%/legal/java.base/asm.md +%%T%%/legal/java.base/cldr.md +%%T%%/legal/java.base/icu.md +%%T%%/legal/java.base/public_suffix.md +%%T%%/legal/java.base/zlib.md +%%T%%/legal/java.compiler/COPYRIGHT +%%T%%/legal/java.compiler/LICENSE +%%T%%/legal/java.corba/COPYRIGHT +%%T%%/legal/java.corba/LICENSE +%%T%%/legal/java.datatransfer/COPYRIGHT +%%T%%/legal/java.datatransfer/LICENSE +%%T%%/legal/java.desktop/COPYRIGHT +%%T%%/legal/java.desktop/LICENSE +%%T%%/legal/java.desktop/colorimaging.md +%%T%%/legal/java.desktop/giflib.md +%%T%%/legal/java.desktop/harfbuzz.md +%%T%%/legal/java.desktop/jpeg.md +%%T%%/legal/java.desktop/lcms.md +%%T%%/legal/java.desktop/libpng.md +%%T%%/legal/java.desktop/mesa3d.md +%%T%%/legal/java.desktop/opengl.md +%%T%%/legal/java.desktop/xwindows.md +%%T%%/legal/java.instrument/COPYRIGHT +%%T%%/legal/java.instrument/LICENSE +%%T%%/legal/java.jnlp/COPYRIGHT +%%T%%/legal/java.jnlp/LICENSE +%%T%%/legal/java.logging/COPYRIGHT +%%T%%/legal/java.logging/LICENSE +%%T%%/legal/java.management.rmi/COPYRIGHT +%%T%%/legal/java.management.rmi/LICENSE +%%T%%/legal/java.management/COPYRIGHT +%%T%%/legal/java.management/LICENSE +%%T%%/legal/java.naming/COPYRIGHT +%%T%%/legal/java.naming/LICENSE +%%T%%/legal/java.prefs/COPYRIGHT +%%T%%/legal/java.prefs/LICENSE +%%T%%/legal/java.rmi/COPYRIGHT +%%T%%/legal/java.rmi/LICENSE +%%T%%/legal/java.scripting/COPYRIGHT +%%T%%/legal/java.scripting/LICENSE +%%T%%/legal/java.se.ee/COPYRIGHT +%%T%%/legal/java.se.ee/LICENSE +%%T%%/legal/java.se/COPYRIGHT +%%T%%/legal/java.se/LICENSE +%%T%%/legal/java.security.jgss/COPYRIGHT +%%T%%/legal/java.security.jgss/LICENSE +%%T%%/legal/java.security.sasl/COPYRIGHT +%%T%%/legal/java.security.sasl/LICENSE +%%T%%/legal/java.smartcardio/COPYRIGHT +%%T%%/legal/java.smartcardio/LICENSE +%%T%%/legal/java.smartcardio/pcsclite.md +%%T%%/legal/java.sql.rowset/COPYRIGHT +%%T%%/legal/java.sql.rowset/LICENSE +%%T%%/legal/java.sql/COPYRIGHT +%%T%%/legal/java.sql/LICENSE +%%T%%/legal/java.transaction/COPYRIGHT +%%T%%/legal/java.transaction/LICENSE +%%T%%/legal/java.xml.bind/COPYRIGHT +%%T%%/legal/java.xml.bind/LICENSE +%%T%%/legal/java.xml.crypto/COPYRIGHT +%%T%%/legal/java.xml.crypto/LICENSE +%%T%%/legal/java.xml.crypto/santuario.md +%%T%%/legal/java.xml.ws.annotation/COPYRIGHT +%%T%%/legal/java.xml.ws.annotation/LICENSE +%%T%%/legal/java.xml.ws/COPYRIGHT +%%T%%/legal/java.xml.ws/LICENSE +%%T%%/legal/java.xml/COPYRIGHT +%%T%%/legal/java.xml/LICENSE +%%T%%/legal/java.xml/bcel.md +%%T%%/legal/java.xml/dom.md +%%T%%/legal/java.xml/jcup.md +%%T%%/legal/java.xml/xalan.md +%%T%%/legal/java.xml/xerces.md +%%T%%/legal/javafx.base/COPYRIGHT +%%T%%/legal/javafx.base/LICENSE +%%T%%/legal/javafx.controls/COPYRIGHT +%%T%%/legal/javafx.controls/LICENSE +%%T%%/legal/javafx.deploy/COPYRIGHT +%%T%%/legal/javafx.deploy/LICENSE +%%T%%/legal/javafx.fxml/COPYRIGHT +%%T%%/legal/javafx.fxml/LICENSE +%%T%%/legal/javafx.graphics/COPYRIGHT +%%T%%/legal/javafx.graphics/LICENSE +%%T%%/legal/javafx.graphics/jpeg_v7.md +%%T%%/legal/javafx.media/COPYRIGHT +%%T%%/legal/javafx.media/LICENSE +%%T%%/legal/javafx.media/applecoreaudio.md +%%T%%/legal/javafx.media/glib.md +%%T%%/legal/javafx.media/gstreamer.md +%%T%%/legal/javafx.media/libffi.md +%%T%%/legal/javafx.swing/COPYRIGHT +%%T%%/legal/javafx.swing/LICENSE +%%T%%/legal/javafx.web/COPYRIGHT +%%T%%/legal/javafx.web/LICENSE +%%T%%/legal/javafx.web/icu_v51.md +%%T%%/legal/javafx.web/libxml2.md +%%T%%/legal/javafx.web/libxslt.md +%%T%%/legal/javafx.web/webkit.md +%%T%%/legal/jdk.accessibility/COPYRIGHT +%%T%%/legal/jdk.accessibility/LICENSE +%%T%%/legal/jdk.aot/COPYRIGHT +%%T%%/legal/jdk.aot/LICENSE +%%T%%/legal/jdk.attach/COPYRIGHT +%%T%%/legal/jdk.attach/LICENSE +%%T%%/legal/jdk.charsets/COPYRIGHT +%%T%%/legal/jdk.charsets/LICENSE +%%T%%/legal/jdk.compiler/COPYRIGHT +%%T%%/legal/jdk.compiler/LICENSE +%%T%%/legal/jdk.crypto.cryptoki/COPYRIGHT +%%T%%/legal/jdk.crypto.cryptoki/LICENSE +%%T%%/legal/jdk.crypto.cryptoki/pkcs11cryptotoken.md +%%T%%/legal/jdk.crypto.cryptoki/pkcs11wrapper.md +%%T%%/legal/jdk.crypto.ec/COPYRIGHT +%%T%%/legal/jdk.crypto.ec/LICENSE +%%T%%/legal/jdk.crypto.ec/ecc.md +%%T%%/legal/jdk.deploy.controlpanel/COPYRIGHT +%%T%%/legal/jdk.deploy.controlpanel/LICENSE +%%T%%/legal/jdk.deploy/COPYRIGHT +%%T%%/legal/jdk.deploy/LICENSE +%%T%%/legal/jdk.dynalink/COPYRIGHT +%%T%%/legal/jdk.dynalink/LICENSE +%%T%%/legal/jdk.dynalink/dynalink.md +%%T%%/legal/jdk.editpad/COPYRIGHT +%%T%%/legal/jdk.editpad/LICENSE +%%T%%/legal/jdk.hotspot.agent/COPYRIGHT +%%T%%/legal/jdk.hotspot.agent/LICENSE +%%T%%/legal/jdk.httpserver/COPYRIGHT +%%T%%/legal/jdk.httpserver/LICENSE +%%T%%/legal/jdk.incubator.httpclient/COPYRIGHT +%%T%%/legal/jdk.incubator.httpclient/LICENSE +%%T%%/legal/jdk.internal.ed/COPYRIGHT +%%T%%/legal/jdk.internal.ed/LICENSE +%%T%%/legal/jdk.internal.jvmstat/COPYRIGHT +%%T%%/legal/jdk.internal.jvmstat/LICENSE +%%T%%/legal/jdk.internal.le/COPYRIGHT +%%T%%/legal/jdk.internal.le/LICENSE +%%T%%/legal/jdk.internal.le/jline.md +%%T%%/legal/jdk.internal.opt/COPYRIGHT +%%T%%/legal/jdk.internal.opt/LICENSE +%%T%%/legal/jdk.internal.opt/jopt-simple.md +%%T%%/legal/jdk.internal.vm.ci/COPYRIGHT +%%T%%/legal/jdk.internal.vm.ci/LICENSE +%%T%%/legal/jdk.internal.vm.compiler/COPYRIGHT +%%T%%/legal/jdk.internal.vm.compiler/LICENSE +%%T%%/jmods/jdk.internal.vm.compiler.management.jmod +%%T%%/legal/jdk.internal.vm.compiler.management/COPYRIGHT +%%T%%/legal/jdk.internal.vm.compiler.management/LICENSE +%%T%%/legal/jdk.jartool/COPYRIGHT +%%T%%/legal/jdk.jartool/LICENSE +%%T%%/legal/jdk.javadoc/COPYRIGHT +%%T%%/legal/jdk.javadoc/LICENSE +%%T%%/legal/jdk.javadoc/jquery.md +%%T%%/legal/jdk.javadoc/jszip.md +%%T%%/legal/jdk.javadoc/pako.md +%%T%%/legal/jdk.javaws/COPYRIGHT +%%T%%/legal/jdk.javaws/LICENSE +%%T%%/legal/jdk.jcmd/COPYRIGHT +%%T%%/legal/jdk.jcmd/LICENSE +%%T%%/legal/jdk.jconsole/COPYRIGHT +%%T%%/legal/jdk.jconsole/LICENSE +%%T%%/legal/jdk.jdeps/COPYRIGHT +%%T%%/legal/jdk.jdeps/LICENSE +%%T%%/legal/jdk.jdi/COPYRIGHT +%%T%%/legal/jdk.jdi/LICENSE +%%T%%/legal/jdk.jdwp.agent/COPYRIGHT +%%T%%/legal/jdk.jdwp.agent/LICENSE +%%T%%/legal/jdk.jfr/COPYRIGHT +%%T%%/legal/jdk.jfr/LICENSE +%%T%%/legal/jdk.jlink/COPYRIGHT +%%T%%/legal/jdk.jlink/LICENSE +%%T%%/legal/jdk.jshell/COPYRIGHT +%%T%%/legal/jdk.jshell/LICENSE +%%T%%/legal/jdk.jsobject/COPYRIGHT +%%T%%/legal/jdk.jsobject/LICENSE +%%T%%/legal/jdk.jstatd/COPYRIGHT +%%T%%/legal/jdk.jstatd/LICENSE +%%T%%/legal/jdk.localedata/COPYRIGHT +%%T%%/legal/jdk.localedata/LICENSE +%%T%%/legal/jdk.localedata/cldr.md +%%T%%/legal/jdk.localedata/thaidict.md +%%T%%/legal/jdk.management.agent/COPYRIGHT +%%T%%/legal/jdk.management.agent/LICENSE +%%T%%/legal/jdk.management.cmm/COPYRIGHT +%%T%%/legal/jdk.management.cmm/LICENSE +%%T%%/legal/jdk.management.jfr/COPYRIGHT +%%T%%/legal/jdk.management.jfr/LICENSE +%%T%%/legal/jdk.management.resource/COPYRIGHT +%%T%%/legal/jdk.management.resource/LICENSE +%%T%%/legal/jdk.management/COPYRIGHT +%%T%%/legal/jdk.management/LICENSE +%%T%%/legal/jdk.naming.dns/COPYRIGHT +%%T%%/legal/jdk.naming.dns/LICENSE +%%T%%/legal/jdk.naming.rmi/COPYRIGHT +%%T%%/legal/jdk.naming.rmi/LICENSE +%%T%%/legal/jdk.net/COPYRIGHT +%%T%%/legal/jdk.net/LICENSE +%%T%%/legal/jdk.pack/COPYRIGHT +%%T%%/legal/jdk.pack/LICENSE +%%T%%/legal/jdk.packager.services/COPYRIGHT +%%T%%/legal/jdk.packager.services/LICENSE +%%T%%/legal/jdk.packager/COPYRIGHT +%%T%%/legal/jdk.packager/LICENSE +%%T%%/legal/jdk.plugin.server/COPYRIGHT +%%T%%/legal/jdk.plugin.server/LICENSE +%%T%%/legal/jdk.plugin/COPYRIGHT +%%T%%/legal/jdk.plugin/LICENSE +%%T%%/legal/jdk.rmic/COPYRIGHT +%%T%%/legal/jdk.rmic/LICENSE +%%T%%/legal/jdk.scripting.nashorn.shell/COPYRIGHT +%%T%%/legal/jdk.scripting.nashorn.shell/LICENSE +%%T%%/legal/jdk.scripting.nashorn/COPYRIGHT +%%T%%/legal/jdk.scripting.nashorn/LICENSE +%%T%%/legal/jdk.scripting.nashorn/double-conversion.md +%%T%%/legal/jdk.scripting.nashorn/joni.md +%%T%%/legal/jdk.sctp/COPYRIGHT +%%T%%/legal/jdk.sctp/LICENSE +%%T%%/legal/jdk.security.auth/COPYRIGHT +%%T%%/legal/jdk.security.auth/LICENSE +%%T%%/legal/jdk.security.jgss/COPYRIGHT +%%T%%/legal/jdk.security.jgss/LICENSE +%%T%%/legal/jdk.snmp/COPYRIGHT +%%T%%/legal/jdk.snmp/LICENSE +%%T%%/legal/jdk.unsupported/COPYRIGHT +%%T%%/legal/jdk.unsupported/LICENSE +%%T%%/legal/jdk.xml.bind/COPYRIGHT +%%T%%/legal/jdk.xml.bind/LICENSE +%%T%%/legal/jdk.xml.bind/freebxml.md +%%T%%/legal/jdk.xml.bind/relaxngdatatype.md +%%T%%/legal/jdk.xml.bind/rngom.md +%%T%%/legal/jdk.xml.bind/xmlresolver.md +%%T%%/legal/jdk.xml.dom/COPYRIGHT +%%T%%/legal/jdk.xml.dom/LICENSE +%%T%%/legal/jdk.xml.ws/COPYRIGHT +%%T%%/legal/jdk.xml.ws/LICENSE +%%T%%/legal/jdk.zipfs/COPYRIGHT +%%T%%/legal/jdk.zipfs/LICENSE +%%T%%/legal/jmc/COPYRIGHT +%%T%%/legal/jmc/LICENSE +%%T%%/legal/oracle.desktop/COPYRIGHT +%%T%%/legal/oracle.desktop/LICENSE +%%T%%/legal/oracle.net/COPYRIGHT +%%T%%/legal/oracle.net/LICENSE +%%T%%/lib/ant-javafx.jar +%%T%%/lib/classlist +%%T%%/lib/ct.sym +%%T%%/lib/deploy.jar +%%T%%/lib/deploy/MixedCodeMainDialog.ui +%%T%%/lib/deploy/MixedCodeMainDialogJs.ui +%%T%%/lib/deploy/cautionshield.icns +%%T%%/lib/deploy/java-icon.ico +%%T%%/lib/deploy/messages.properties +%%T%%/lib/deploy/messages_de.properties +%%T%%/lib/deploy/messages_es.properties +%%T%%/lib/deploy/messages_fr.properties +%%T%%/lib/deploy/messages_it.properties +%%T%%/lib/deploy/messages_ja.properties +%%T%%/lib/deploy/messages_ko.properties +%%T%%/lib/deploy/messages_pt_BR.properties +%%T%%/lib/deploy/messages_sv.properties +%%T%%/lib/deploy/messages_zh_CN.properties +%%T%%/lib/deploy/messages_zh_HK.properties +%%T%%/lib/deploy/messages_zh_TW.properties +%%T%%/lib/deploy/mixcode_s.png +%%T%%/lib/deploy/splash.gif +%%T%%/lib/desktop/applications/sun-java.desktop +%%T%%/lib/desktop/applications/sun-javaws.desktop +%%T%%/lib/desktop/applications/sun_java.desktop +%%T%%/lib/desktop/icons/HighContrast/16x16/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/HighContrast/16x16/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/HighContrast/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/HighContrast/16x16/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/HighContrast/48x48/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/HighContrast/48x48/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/HighContrast/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/HighContrast/48x48/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/HighContrastInverse/16x16/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/HighContrastInverse/48x48/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/HighContrastInverse/48x48/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/HighContrastInverse/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/HighContrastInverse/48x48/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/LowContrast/16x16/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/LowContrast/16x16/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/LowContrast/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/LowContrast/16x16/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/LowContrast/48x48/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/LowContrast/48x48/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/LowContrast/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/LowContrast/48x48/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/hicolor/16x16/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/hicolor/16x16/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/hicolor/16x16/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/hicolor/16x16/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/icons/hicolor/48x48/apps/sun-jcontrol.png +%%T%%/lib/desktop/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-java-archive.png +%%T%%/lib/desktop/icons/hicolor/48x48/mimetypes/gnome-mime-application-x-java-jnlp-file.png +%%T%%/lib/desktop/icons/hicolor/48x48/mimetypes/gnome-mime-text-x-java.png +%%T%%/lib/desktop/mime/packages/x-java-archive.xml +%%T%%/lib/desktop/mime/packages/x-java-jnlp-file.xml +%%T%%/lib/fontconfig.RedHat.6.bfc +%%T%%/lib/fontconfig.RedHat.6.properties.src +%%T%%/lib/fontconfig.SuSE.11.bfc +%%T%%/lib/fontconfig.SuSE.11.properties.src +%%T%%/lib/fontconfig.bfc +%%T%%/lib/fontconfig.properties.src +%%T%%/lib/fonts/LucidaBrightDemiBold.ttf +%%T%%/lib/fonts/LucidaBrightDemiItalic.ttf +%%T%%/lib/fonts/LucidaBrightItalic.ttf +%%T%%/lib/fonts/LucidaBrightRegular.ttf +%%T%%/lib/fonts/LucidaSansDemiBold.ttf +%%T%%/lib/fonts/LucidaSansRegular.ttf +%%T%%/lib/fonts/LucidaTypewriterBold.ttf +%%T%%/lib/fonts/LucidaTypewriterRegular.ttf +%%T%%/lib/fonts/fonts.dir +%%T%%/lib/java.jnlp.jar +%%T%%/lib/javafx-swt.jar +%%T%%/lib/javafx.properties +%%T%%/lib/javaws.jar +%%T%%/lib/jdk.deploy.jar +%%T%%/lib/jdk.javaws.jar +%%T%%/lib/jdk.plugin.jar +@(,,555) %%T%%/lib/jexec +%%T%%/lib/jfr/default.jfc +%%T%%/lib/jfr/profile.jfc +%%T%%/lib/jli/libjli.so +%%T%%/lib/jrt-fs.jar +%%T%%/lib/jvm.cfg +%%T%%/lib/libattach.so +%%T%%/lib/libavplugin-53.so +%%T%%/lib/libavplugin-54.so +%%T%%/lib/libavplugin-55.so +%%T%%/lib/libavplugin-56.so +%%T%%/lib/libavplugin-57.so +%%T%%/lib/libavplugin-ffmpeg-56.so +%%T%%/lib/libavplugin-ffmpeg-57.so +%%T%%/lib/libawt.so +%%T%%/lib/libawt_headless.so +%%T%%/lib/libawt_xawt.so +%%T%%/lib/libbci.so +%%T%%/lib/libcmm.so +%%T%%/lib/libdecora_sse.so +%%T%%/lib/libdeploy.so +%%T%%/lib/libdt_socket.so +%%T%%/lib/libextnet.so +%%T%%/lib/libfontmanager.so +%%T%%/lib/libfxplugins.so +%%T%%/lib/libglass.so +%%T%%/lib/libglassgtk2.so +%%T%%/lib/libglassgtk3.so +%%T%%/lib/libgstreamer-lite.so +%%T%%/lib/libinstrument.so +%%T%%/lib/libj2gss.so +%%T%%/lib/libj2pcsc.so +%%T%%/lib/libj2pkcs11.so +%%T%%/lib/libjaas_unix.so +%%T%%/lib/libjava.so +%%T%%/lib/libjavafx_font.so +%%T%%/lib/libjavafx_font_freetype.so +%%T%%/lib/libjavafx_font_pango.so +%%T%%/lib/libjavafx_iio.so +%%T%%/lib/libjavajpeg.so +%%T%%/lib/libjawt.so +%%T%%/lib/libjdwp.so +%%T%%/lib/libjfxmedia.so +%%T%%/lib/libjfxwebkit.so +%%T%%/lib/libjimage.so +%%T%%/lib/libjsig.so +%%T%%/lib/libjsound.so +%%T%%/lib/libjsoundalsa.so +%%T%%/lib/liblcms.so +%%T%%/lib/libmanagement.so +%%T%%/lib/libmanagement_agent.so +%%T%%/lib/libmanagement_ext.so +%%T%%/lib/libmlib_image.so +%%T%%/lib/libnet.so +%%T%%/lib/libnio.so +%%T%%/lib/libnpjp2.so +%%T%%/lib/libprefs.so +%%T%%/lib/libprism_common.so +%%T%%/lib/libprism_es2.so +%%T%%/lib/libprism_sw.so +%%T%%/lib/librm.so +%%T%%/lib/librmi.so +%%T%%/lib/libsaproc.so +%%T%%/lib/libsctp.so +%%T%%/lib/libsplashscreen.so +%%T%%/lib/libsunec.so +%%T%%/lib/libt2k.so +%%T%%/lib/libunpack.so +%%T%%/lib/libverify.so +%%T%%/lib/libzip.so +%%T%%/lib/locale/de/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/es/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/fr/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/it/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/ja/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/ko.UTF-8/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/ko/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/pt_BR/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/sv/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/zh.GBK/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/zh/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/zh_HK.BIG5HK/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/zh_TW.BIG5/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/locale/zh_TW/LC_MESSAGES/sunw_java_plugin.mo +%%T%%/lib/missioncontrol/.eclipseproduct +%%T%%/lib/missioncontrol/THIRDPARTYLICENSEREADME.txt +%%T%%/lib/missioncontrol/artifacts.xml +%%T%%/lib/missioncontrol/configuration/config.ini +%%T%%/lib/missioncontrol/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info +%%T%%/lib/missioncontrol/configuration/org.eclipse.update/platform.xml +%%T%%/lib/missioncontrol/dropins/README.TXT +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.console_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.console_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.core_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.core_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.flightrecorder_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.flightrecorder_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp.ja_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp.ja_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp.update_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp.update_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp.zh_CN_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp.zh_CN_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.feature.rcp_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/com.oracle.jmc.rcp.product_6.0.0.173920/feature.properties +%%T%%/lib/missioncontrol/features/com.oracle.jmc.rcp.product_6.0.0.173920/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_ja_4.5.0.v20151128060001/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_ja_4.5.0.v20151128060001/eclipse_update_120.jpg +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_ja_4.5.0.v20151128060001/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_ja_4.5.0.v20151128060001/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_ja_4.5.0.v20151128060001/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_ja_4.5.0.v20151128060001/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_zh_4.5.0.v20151128060001/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_zh_4.5.0.v20151128060001/eclipse_update_120.jpg +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_zh_4.5.0.v20151128060001/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_zh_4.5.0.v20151128060001/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_zh_4.5.0.v20151128060001/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.babel.nls_eclipse_zh_4.5.0.v20151128060001/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.e4.rcp_1.5.0.v20160701-1418/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.e4.rcp_1.5.0.v20160701-1418/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.e4.rcp_1.5.0.v20160701-1418/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.e4.rcp_1.5.0.v20160701-1418/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.e4.rcp_1.5.0.v20160701-1418/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.feature_1.3.0.v20160405-1820/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.core.ssl.feature_1.1.0.v20160405-1820/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/asl-v20.txt +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.feature_3.13.1.v20160405-1820/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/asl-v20.txt +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.13.1.v20160405-1820/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/asl-v20.txt +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.1.0.v20160405-1820/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/about.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.ecf.filetransfer.ssl.feature_1.1.0.v20160405-1820/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.emf.common_2.12.0.v20160420-0247/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/META-INF/eclipse.inf +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.emf.ecore_2.12.0.v20160420-0247/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.core.feature_1.3.200.v20160606-1311/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/META-INF/ECLIPSE_.RSA +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/META-INF/ECLIPSE_.SF +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.equinox.p2.rcp.feature_1.2.200.v20160606-1311/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.help_2.2.0.v20160815-0911/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.help_2.2.0.v20160815-0911/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.help_2.2.0.v20160815-0911/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.help_2.2.0.v20160815-0911/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.help_2.2.0.v20160815-0911/license.html +%%T%%/lib/missioncontrol/features/org.eclipse.rcp_4.6.0.v20160815-0911/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/features/org.eclipse.rcp_4.6.0.v20160815-0911/epl-v10.html +%%T%%/lib/missioncontrol/features/org.eclipse.rcp_4.6.0.v20160815-0911/feature.properties +%%T%%/lib/missioncontrol/features/org.eclipse.rcp_4.6.0.v20160815-0911/feature.xml +%%T%%/lib/missioncontrol/features/org.eclipse.rcp_4.6.0.v20160815-0911/license.html +%%T%%/lib/missioncontrol/icon.xpm +%%T%%/lib/missioncontrol/jmc +%%T%%/lib/missioncontrol/jmc.ini +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/.lock +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1509481958900.profile.gz +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1509481959257.profile.gz +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1509481967479.profile.gz +%%T%%/lib/missioncontrol/p2/org.eclipse.equinox.p2.engine/profileRegistry/JMC.profile/1509481968617.profile.gz +%%T%%/lib/missioncontrol/plugins/com.ibm.icu_56.1.0.v201601250100.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.alert.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.alert.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.alert_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.attach_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.attach.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.attach.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.attach_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.jdp.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.jdp.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.jdp_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.browser_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.commands_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.common.internal_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.common_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.persistence.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.persistence.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.persistence_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.diagnostic.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.diagnostic.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.diagnostic_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.mbeanbrowser.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.mbeanbrowser.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.mbeanbrowser_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/com.oracle.jmc.console.ui.notification_contexts.xml +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/icons/alert_obj.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/icons/file_obj.gif +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/icons/flight_recorder.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/icons/new-trigger-wiz.gif +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/notification_plugin.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/plugin.properties +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.notification_6.0.0.173920/plugin.xml +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.console.ui_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.core_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.docs.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.docs.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.docs_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.configuration_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.controlpanel.ui.configuration_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.controlpanel.ui.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.controlpanel.ui.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.controlpanel.ui_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.rules.extensionprovider_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.rules.jdk_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.rules_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.ui.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.ui.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder.ui_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.flightrecorder_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.greychart.ui.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.greychart.ui.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.greychart.ui_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.greychartplugin_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.javafx.osgi_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.jdp_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.p2.ui.overridden_5.5.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rcp.application.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rcp.application.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rcp.application_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rcp.intro.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rcp.intro.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rcp.intro_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.ext_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.services.jfr_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.ui.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.ui.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.ui_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/META-INF/MANIFEST.MF +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/console_view.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/date-span-16.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/day-of-week-16.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/diagnostic-command-16.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/hprof-16.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/send-email-16.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/icons/time-span-16.png +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/lib/dsn.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/lib/gimap.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/lib/imap.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/lib/mailapi.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/lib/pop3.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/lib/smtp.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/plugin.properties +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/plugin.xml +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/rjmx.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.actionProvider.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.attributeTransformation.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.descriptorProvider.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.metadataprovider.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.service.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.syntheticattribute.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/com.oracle.jmc.rjmx.syntheticnotification.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/triggerActionExceptionHandlers.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/triggerActions.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/triggerConstraints.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.rjmx_6.0.0.173920/schema/triggerEvaluators.exsd +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.ui.ja_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.ui.zh_CN_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.oracle.jmc.ui_6.0.0.173920.jar +%%T%%/lib/missioncontrol/plugins/com.sun.el_2.2.0.v201303151357.jar +%%T%%/lib/missioncontrol/plugins/javax.annotation_1.2.0.v201602091430.jar +%%T%%/lib/missioncontrol/plugins/javax.el_2.2.0.v201303151357.jar +%%T%%/lib/missioncontrol/plugins/javax.inject_1.0.0.v20091030.jar +%%T%%/lib/missioncontrol/plugins/javax.servlet.jsp_2.2.0.v201112011158.jar +%%T%%/lib/missioncontrol/plugins/javax.servlet_3.1.0.v201410161800.jar +%%T%%/lib/missioncontrol/plugins/javax.xml_1.3.4.v201005080400.jar +%%T%%/lib/missioncontrol/plugins/org.apache.batik.css_1.7.0.v201011041433.jar +%%T%%/lib/missioncontrol/plugins/org.apache.batik.util.gui_1.7.0.v200903091627.jar +%%T%%/lib/missioncontrol/plugins/org.apache.batik.util_1.7.0.v201011041433.jar +%%T%%/lib/missioncontrol/plugins/org.apache.commons.codec_1.6.0.v201305230611.jar +%%T%%/lib/missioncontrol/plugins/org.apache.commons.jxpath_1.3.0.v200911051830.jar +%%T%%/lib/missioncontrol/plugins/org.apache.commons.logging_1.1.1.v201101211721.jar +%%T%%/lib/missioncontrol/plugins/org.apache.felix.gogo.command_0.10.0.v201209301215.jar +%%T%%/lib/missioncontrol/plugins/org.apache.felix.gogo.runtime_0.10.0.v201209301036.jar +%%T%%/lib/missioncontrol/plugins/org.apache.felix.gogo.shell_0.10.0.v201212101605.jar +%%T%%/lib/missioncontrol/plugins/org.apache.httpcomponents.httpclient_4.3.6.v201511171540.jar +%%T%%/lib/missioncontrol/plugins/org.apache.httpcomponents.httpcore_4.3.3.v201411290715.jar +%%T%%/lib/missioncontrol/plugins/org.apache.jasper.glassfish_2.2.2.v201501141630.jar +%%T%%/lib/missioncontrol/plugins/org.apache.lucene.analysis_3.5.0.v20120725-1805.jar +%%T%%/lib/missioncontrol/plugins/org.apache.lucene.core_3.5.0.v20120725-1805.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.commands.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.commands.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.commands_3.8.0.v20160316-1921.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.contenttype_3.5.100.v20160418-1621.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.beans.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.beans.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.beans_1.3.100.v20160509-1025.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.observable.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.observable.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.observable_1.6.0.v20160511-1747.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.property.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.property.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding.property_1.6.0.v20160427-0852.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.databinding_1.6.0.v20160412-0910.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.expressions_3.5.100.v20160418-1621.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.filesystem.linux.x86_64.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.filesystem.linux.x86_64.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.filesystem.nl_ja_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.filesystem.nl_zh_4.5.0.v20151128060001.jar +%%T%%/lib/missioncontrol/plugins/org.eclipse.core.filesystem_1.6.0.v20160503-1608.jar *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Mon Jun 18 19:03:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 467D1101A799; Mon, 18 Jun 2018 19:03:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EB7AA6CEF3; Mon, 18 Jun 2018 19:03:09 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B289432A; Mon, 18 Jun 2018 19:03:09 +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 w5IJ39l6017138; Mon, 18 Jun 2018 19:03:09 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IJ34aP017107; Mon, 18 Jun 2018 19:03:04 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181903.w5IJ34aP017107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 19:03:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472706 - in head: archivers/innoextract audio/mpdas biology/stacks databases/p5-DBD-cego databases/postgresql-libpqxx devel/eblob devel/gecode devel/libftdi1 devel/libvirt devel/xsd ed... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: archivers/innoextract audio/mpdas biology/stacks databases/p5-DBD-cego databases/postgresql-libpqxx devel/eblob devel/gecode devel/libftdi1 devel/libvirt devel/xsd editors/medit editors/texwo... X-SVN-Commit-Revision: 472706 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 19:03:10 -0000 Author: linimon Date: Mon Jun 18 19:03:03 2018 New Revision: 472706 URL: https://svnweb.freebsd.org/changeset/ports/472706 Log: Adjust USES to fix builds on gcc-based architectures. While here, pet portlint. Tested for no regression on amd64. Approved by: portmgr (tier-2 blanket) Modified: head/archivers/innoextract/Makefile head/audio/mpdas/Makefile head/biology/stacks/Makefile head/databases/p5-DBD-cego/Makefile head/databases/postgresql-libpqxx/Makefile head/devel/eblob/Makefile head/devel/gecode/Makefile head/devel/libftdi1/Makefile head/devel/libvirt/Makefile head/devel/xsd/Makefile head/editors/medit/Makefile head/editors/texworks/Makefile head/graphics/ayam/Makefile head/graphics/diffpdf/Makefile head/graphics/epdfview/Makefile head/graphics/py-poppler-qt4/Makefile head/graphics/qcomicbook/Makefile head/graphics/vips/Makefile head/mail/gnubiff/Makefile head/net/frr4/Makefile head/net/ostinato/Makefile head/news/nget/Makefile head/print/qpdfview/Makefile head/science/tfel/Makefile head/security/md5deep/Makefile head/sysutils/tmux-mem-cpu-load/Makefile head/textproc/goldendict/Makefile head/www/varnish5/Makefile Modified: head/archivers/innoextract/Makefile ============================================================================== --- head/archivers/innoextract/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/archivers/innoextract/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -12,16 +12,16 @@ COMMENT= Program to extract Inno Setup files LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_sparc64= Does not build: undefined reference to std::ctype::_M_widen_init() + LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \ libboost_filesystem.so:devel/boost-libs \ libboost_system.so:devel/boost-libs \ libboost_program_options.so:devel/boost-libs -USES= cmake iconv +USES= cmake compiler:c++11-lang iconv PLIST_FILES= bin/innoextract \ man/man1/innoextract.1.gz - -BROKEN_sparc64= Does not build: undefined reference to std::ctype::_M_widen_init() .include Modified: head/audio/mpdas/Makefile ============================================================================== --- head/audio/mpdas/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/audio/mpdas/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl \ libmpdclient.so:audio/libmpdclient -USES= pkgconfig +USES= compiler:c++11-lang pkgconfig USE_RC_SUBR= mpdas Modified: head/biology/stacks/Makefile ============================================================================== --- head/biology/stacks/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/biology/stacks/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -11,7 +11,7 @@ COMMENT= Software pipeline for building loci from shor LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= gmake python shebangfix +USES= compiler:c++11-lang gmake python shebangfix SHEBANG_FILES= scripts/*.pl scripts/*.py GNU_CONFIGURE= yes Modified: head/databases/p5-DBD-cego/Makefile ============================================================================== --- head/databases/p5-DBD-cego/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/databases/p5-DBD-cego/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -15,9 +15,10 @@ BUILD_DEPENDS= p5-DBI>=1.631:databases/p5-DBI RUN_DEPENDS= p5-DBI>=1.631:databases/p5-DBI LIB_DEPENDS= libcego.so:databases/cego -USES= gmake perl5 +USES= compiler gmake perl5 USE_PERL5= configure CC:= ${CXX} +COMPILER_TYPE= clang CONFIGURE_ARGS+= --prefix=${PREFIX} post-install: Modified: head/databases/postgresql-libpqxx/Makefile ============================================================================== --- head/databases/postgresql-libpqxx/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/databases/postgresql-libpqxx/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -15,7 +15,7 @@ LICENSE= BSD3CLAUSE CONFLICTS= postgresql-libpqxx-[1-5].* postgresql-libpqxx3-3.* \ postgresql-libpqxx4-4.* -USES= gmake libtool pathfix pgsql python:2.7,build shebangfix +USES= compiler:c++11-lang gmake libtool pathfix pgsql python:2.7,build shebangfix USE_GITHUB= yes GH_ACCOUNT= jtv GNU_CONFIGURE= yes Modified: head/devel/eblob/Makefile ============================================================================== --- head/devel/eblob/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/devel/eblob/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -13,11 +13,10 @@ LICENSE= GPLv2 LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= zloidemon GH_TAGNAME= 0a75b89 - -USES= cmake USE_LDCONFIG= yes OPTIONS_DEFINE= ASSERT PYTHON SNAPPY EXAMPLES TESTS Modified: head/devel/gecode/Makefile ============================================================================== --- head/devel/gecode/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/devel/gecode/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -13,13 +13,13 @@ COMMENT= Generic Constraint Development Environment LICENSE= BSL MIT LICENSE_COMB= multi -LIB_DEPENDS= libmpfr.so:math/mpfr \ - libgmp.so:math/gmp - NOT_FOR_ARCHS= aarch64 armv6 armv7 mips mips64 NOT_FOR_ARCHS_REASON= needs code written to specify rounding control mechanism in Boost.Numeric.Interval -USES= bison gmake perl5 +LIB_DEPENDS= libmpfr.so:math/mpfr \ + libgmp.so:math/gmp + +USES= bison compiler:c++11-lang gmake perl5 USE_PERL5= build GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static \ Modified: head/devel/libftdi1/Makefile ============================================================================== --- head/devel/libftdi1/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/devel/libftdi1/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -11,6 +11,8 @@ COMMENT= Library (using libusb) to talk to FTDI chips LICENSE= GPLv2 +BROKEN_sparc64= Does not build: fails to link + LIB_DEPENDS= libconfuse.so:devel/libconfuse OPTIONS_DEFINE= PYTHON BOOST DOCS EXAMPLES @@ -20,9 +22,7 @@ OPTIONS_SUB= yes BOOST_DESC= Build with boost PYTHON_DESC= Build Python bindings -BROKEN_sparc64= Does not build: fails to link - -USES= cmake gettext-runtime pkgconfig tar:bzip2 +USES= cmake compiler:c++11-lang gettext-runtime pkgconfig tar:bzip2 USE_LDCONFIG= yes PORTDOCS= COPYING.LIB ChangeLog README Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/devel/libvirt/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -97,7 +97,7 @@ PORTSCOUT= limit:\d+\.\d+\.\d+$$ LDFLAGS+= -L${LOCALBASE}/lib -fstack-protector -USES= charsetfix cpe gettext-runtime gmake libtool pathfix \ +USES= charsetfix compiler:c++0x cpe gettext-runtime gmake libtool pathfix \ perl5 python:build pkgconfig shebangfix tar:xz USE_RC_SUBR= libvirtd virtlogd CPE_VENDOR= redhat Modified: head/devel/xsd/Makefile ============================================================================== --- head/devel/xsd/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/devel/xsd/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -33,7 +33,7 @@ MAKE_ARGS= EXTERNAL_LIBCUTL=y \ install_prefix=${STAGEDIR}${PREFIX} \ install_man_dir=${STAGEDIR}${MANPREFIX}/man \ verbose=1 -USES= gmake tar:bzip2 +USES= compiler:c++11-lang gmake tar:bzip2 post-patch: # Use devel/build instead of the port's bundled copy. Modified: head/editors/medit/Makefile ============================================================================== --- head/editors/medit/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/editors/medit/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -13,7 +13,7 @@ COMMENT= Programming and around-programming text edito LICENSE= LGPL21 -USES= gmake localbase pkgconfig tar:bzip2 +USES= compiler:c++11-lang gmake localbase pkgconfig tar:bzip2 GNU_CONFIGURE= yes USE_GNOME= gtk20 INSTALLS_ICONS= yes Modified: head/editors/texworks/Makefile ============================================================================== --- head/editors/texworks/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/editors/texworks/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -18,7 +18,7 @@ BROKEN_armv7= fails to install: PDFDocument.cpp:1836: BUILD_DEPENDS= hunspell:textproc/hunspell LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 -USES= pkgconfig qmake +USES= compiler:c++11-lang pkgconfig qmake USE_GITHUB= yes GH_ACCOUNT= TeXworks USE_QT4= gui corelib rcc_build moc_build uic_build \ Modified: head/graphics/ayam/Makefile ============================================================================== --- head/graphics/ayam/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/graphics/ayam/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -21,7 +21,7 @@ RUN_DEPENDS= xdg-open:devel/xdg-utils WRKSRC= ${WRKDIR}/${PORTNAME}/src -USES= gmake tk +USES= compiler:c++11-lang gmake tk USE_XORG= x11 xext xmu USE_GL= glu MAKE_ENV= TCL_INCLUDEDIR="${TCL_INCLUDEDIR}" \ Modified: head/graphics/diffpdf/Makefile ============================================================================== --- head/graphics/diffpdf/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/graphics/diffpdf/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -13,7 +13,7 @@ LICENSE= GPLv2+ LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 -USES= qmake +USES= compiler:c++11-lang qmake USE_QT4= qmake_build moc_build rcc_build uic_build linguist_build PLIST_FILES= bin/diffpdf Modified: head/graphics/epdfview/Makefile ============================================================================== --- head/graphics/epdfview/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/graphics/epdfview/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -18,9 +18,9 @@ LICENSE= GPLv2 BUILD_DEPENDS= cppunit-config:devel/cppunit LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib +USES= compiler:c++11-lang desktop-file-utils iconv gmake pkgconfig tar:bzip2 GNU_CONFIGURE= yes INSTALLS_ICONS= yes -USES= desktop-file-utils iconv gmake pkgconfig tar:bzip2 USE_GNOME= gtk20 intlhack CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/graphics/py-poppler-qt4/Makefile ============================================================================== --- head/graphics/py-poppler-qt4/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/graphics/py-poppler-qt4/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -16,7 +16,7 @@ LICENSE_COMB= dual LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 -USES= pkgconfig pyqt:4 python +USES= compiler:c++11-lang pkgconfig pyqt:4 python USE_PYQT= gui xml sip_build USE_PYTHON= distutils autoplist Modified: head/graphics/qcomicbook/Makefile ============================================================================== --- head/graphics/qcomicbook/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/graphics/qcomicbook/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -14,7 +14,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 -USES= cmake:outsource pkgconfig +USES= cmake:outsource compiler:c++11-lang pkgconfig USE_QT4= corelib gui linguisttools_build moc_build qmake_build rcc_build \ uic_build xml Modified: head/graphics/vips/Makefile ============================================================================== --- head/graphics/vips/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/graphics/vips/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -34,7 +34,7 @@ LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ libhdf5.so:science/hdf5 \ libexpat.so:textproc/expat2 -USES= cpe gettext gmake jpeg libtool pathfix pkgconfig python:2.7 shebangfix +USES= compiler:c++11-lang cpe gettext gmake jpeg libtool pathfix pkgconfig python:2.7 shebangfix SHEBANG_FILES= tools/vips-${PORTVERSION:R} tools/vipsprofile USE_GNOME= cairo gdkpixbuf2 glib20 libgsf librsvg2 libxml2 pango GNU_CONFIGURE= yes Modified: head/mail/gnubiff/Makefile ============================================================================== --- head/mail/gnubiff/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/mail/gnubiff/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -10,12 +10,12 @@ MASTER_SITES= SF MAINTAINER= tdb@FreeBSD.org COMMENT= Mail notification program for Gnome -OPTIONS_DEFINE= NLS - LIB_DEPENDS= libpopt.so:devel/popt +OPTIONS_DEFINE= NLS + +USES= compiler:c++11-lang cpe fam gmake pathfix pkgconfig USE_GNOME= intlhack libglade2 esound -USES= cpe fam gmake pathfix pkgconfig GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -lX11 Modified: head/net/frr4/Makefile ============================================================================== --- head/net/frr4/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/net/frr4/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -18,9 +18,9 @@ LIB_DEPENDS= libjson-c.so:devel/json-c CONFLICTS= openbgpd openospfd zebra quagga frr3 +USES= autoreconf bison compiler:c++11-lang gmake pkgconfig libtool makeinfo readline GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= autoreconf bison gmake pkgconfig libtool makeinfo python:2.7,build readline USE_LDCONFIG= yes USE_GITHUB= yes Modified: head/net/ostinato/Makefile ============================================================================== --- head/net/ostinato/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/net/ostinato/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -15,7 +15,7 @@ LICENSE= GPLv3 LIB_DEPENDS= libprotobuf.so:devel/protobuf -USES= qmake +USES= compiler:c++11-lang qmake USE_QT4= corelib gui moc_build rcc_build uic_build network script \ xml Modified: head/news/nget/Makefile ============================================================================== --- head/news/nget/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/news/nget/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -14,7 +14,7 @@ COMMENT= Auto-resuming command line nntp file grabber LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= gmake +USES= compiler:c++11-lang gmake GNU_CONFIGURE= yes # Skip check if the C++ compiler supports exceptions. We know both Modified: head/print/qpdfview/Makefile ============================================================================== --- head/print/qpdfview/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/print/qpdfview/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -13,7 +13,7 @@ COMMENT= Tabbed DjVu/PDF/PS document viewer LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= desktop-file-utils pkgconfig qmake +USES= compiler:c++11-lang desktop-file-utils pkgconfig qmake USE_LDCONFIG= yes QMAKE_SOURCE_PATH= ${PORTNAME}.pro Modified: head/science/tfel/Makefile ============================================================================== --- head/science/tfel/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/science/tfel/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -15,7 +15,7 @@ LICENSE= GPLv3 BUILD_DEPENDS= gnuplot:math/gnuplot RUN_DEPENDS= gnuplot:math/gnuplot -USES= cmake tar:bzip2 +USES= cmake compiler:c++0x tar:bzip2 OPTIONS_DEFINE= DOCS PYTHON OPTIONS_DEFAULT= PYTHON Modified: head/security/md5deep/Makefile ============================================================================== --- head/security/md5deep/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/security/md5deep/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -15,8 +15,8 @@ GH_ACCOUNT= jessek GH_PROJECT= hashdeep GH_TAGNAME= cd2ed74 +USES= autoreconf compiler:c++11-lang gmake USE_GITHUB= yes -USES= autoreconf gmake GNU_CONFIGURE= yes .include Modified: head/sysutils/tmux-mem-cpu-load/Makefile ============================================================================== --- head/sysutils/tmux-mem-cpu-load/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/sysutils/tmux-mem-cpu-load/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -13,12 +13,9 @@ LICENSE= APACHE20 RUN_DEPENDS= tmux:sysutils/tmux -BROKEN_powerpc64= fails to compile: Compiler GNU 4.2.1 has no C++11 support - +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= thewtex - -USES= cmake PLIST_FILES= bin/tmux-mem-cpu-load Modified: head/textproc/goldendict/Makefile ============================================================================== --- head/textproc/goldendict/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/textproc/goldendict/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -17,7 +17,7 @@ LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell \ libvorbis.so:audio/libvorbis NO_WRKSUBDIR= yes -USES= dos2unix iconv:wchar_t pkgconfig qmake tar:bzip2 +USES= compiler:c++11-lang dos2unix iconv:wchar_t pkgconfig qmake tar:bzip2 DOS2UNIX_FILES= processwrapper.cc USE_XORG= xtst USE_QT4= corelib gui webkit phonon \ Modified: head/www/varnish5/Makefile ============================================================================== --- head/www/varnish5/Makefile Mon Jun 18 18:00:28 2018 (r472705) +++ head/www/varnish5/Makefile Mon Jun 18 19:03:03 2018 (r472706) @@ -17,8 +17,8 @@ LIB_DEPENDS= libpcre.so:devel/pcre CONFLICTS= varnish-2.* varnish-3.* varnish4-4.* -USES= autoreconf cpe gmake libedit libtool ncurses pathfix \ - pkgconfig python:2.7,build readline shebangfix +USES= autoreconf compiler:c++11-lang cpe gmake libedit libtool \ + ncurses pathfix pkgconfig python:2.7,build readline shebangfix SHEBANG_FILES= lib/libvcc/*.py CPE_VENDOR= varnish-cache CFLAGS+= -I${LOCALBASE}/include From owner-svn-ports-head@freebsd.org Mon Jun 18 19:14:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8039D101B153; Mon, 18 Jun 2018 19:14:49 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 342D66D79F; Mon, 18 Jun 2018 19:14:49 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 14D7C4EE; Mon, 18 Jun 2018 19:14:49 +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 w5IJEmWT022309; Mon, 18 Jun 2018 19:14:48 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IJEmNC022308; Mon, 18 Jun 2018 19:14:48 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181914.w5IJEmNC022308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 19:14:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472707 - head/biology/seqan-apps X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/biology/seqan-apps X-SVN-Commit-Revision: 472707 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 19:14:49 -0000 Author: linimon Date: Mon Jun 18 19:14:48 2018 New Revision: 472707 URL: https://svnweb.freebsd.org/changeset/ports/472707 Log: Mark as broken on powerpc64 pending fix for PR 199603. Approved by: portmgr (tier-2 blanket) Modified: head/biology/seqan-apps/Makefile Modified: head/biology/seqan-apps/Makefile ============================================================================== --- head/biology/seqan-apps/Makefile Mon Jun 18 19:03:03 2018 (r472706) +++ head/biology/seqan-apps/Makefile Mon Jun 18 19:14:48 2018 (r472707) @@ -13,6 +13,8 @@ COMMENT= Official bioinformatic applications based on LICENSE= BSD3CLAUSE LGPL3 GPLv3 LICENSE_COMB= multi +BROKEN_powerpc64= fails to build: requires 'c++14-lang' in USES (cf.) + BUILD_DEPENDS= boost-libs>0:devel/boost-libs USES= cmake:outsource compiler:openmp # once #199603 is resolved, add c++14-lang From owner-svn-ports-head@freebsd.org Mon Jun 18 19:38:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB2A7101CA8D; Mon, 18 Jun 2018 19:38:24 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4913D6EA66; Mon, 18 Jun 2018 19:38:24 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 247C286D; Mon, 18 Jun 2018 19:38:24 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IJcOsV032560; Mon, 18 Jun 2018 19:38:24 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IJcNOA032557; Mon, 18 Jun 2018 19:38:23 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201806181938.w5IJcNOA032557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 18 Jun 2018 19:38:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472708 - head/www/webkit2-gtk3 X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: head/www/webkit2-gtk3 X-SVN-Commit-Revision: 472708 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 19:38:25 -0000 Author: kwm Date: Mon Jun 18 19:38:23 2018 New Revision: 472708 URL: https://svnweb.freebsd.org/changeset/ports/472708 Log: Update webkit2-gtk3 to 2.20.3. Modified: head/www/webkit2-gtk3/Makefile head/www/webkit2-gtk3/distinfo head/www/webkit2-gtk3/pkg-plist Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Mon Jun 18 19:14:48 2018 (r472707) +++ head/www/webkit2-gtk3/Makefile Mon Jun 18 19:38:23 2018 (r472708) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= webkit -PORTVERSION= 2.20.2 +PORTVERSION= 2.20.3 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 @@ -15,6 +15,7 @@ LICENSE= GPLv2 BSD2CLAUSE LICENSE_COMB= dual LIB_DEPENDS= libenchant-2.so:textproc/enchant2 \ + libfribidi.so:converters/fribidi \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libwebp.so:graphics/webp \ Modified: head/www/webkit2-gtk3/distinfo ============================================================================== --- head/www/webkit2-gtk3/distinfo Mon Jun 18 19:14:48 2018 (r472707) +++ head/www/webkit2-gtk3/distinfo Mon Jun 18 19:38:23 2018 (r472708) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526325251 -SHA256 (webkitgtk-2.20.2.tar.xz) = dffe93a241f03f1c73b369f4e323e4d8f12e39d33d5515948cbf454ca4b526e2 -SIZE (webkitgtk-2.20.2.tar.xz) = 16622048 +TIMESTAMP = 1529262397 +SHA256 (webkitgtk-2.20.3.tar.xz) = 579b307d78fa16a73f112790178022166d7ad17d4147492ced9b9fba48f20dd8 +SIZE (webkitgtk-2.20.3.tar.xz) = 16623456 Modified: head/www/webkit2-gtk3/pkg-plist ============================================================================== --- head/www/webkit2-gtk3/pkg-plist Mon Jun 18 19:14:48 2018 (r472707) +++ head/www/webkit2-gtk3/pkg-plist Mon Jun 18 19:38:23 2018 (r472708) @@ -199,10 +199,10 @@ lib/girepository-1.0/WebKit2-4.0.typelib lib/girepository-1.0/WebKit2WebExtension-4.0.typelib lib/libjavascriptcoregtk-4.0.so lib/libjavascriptcoregtk-4.0.so.18 -lib/libjavascriptcoregtk-4.0.so.18.7.10 +lib/libjavascriptcoregtk-4.0.so.18.7.11 lib/libwebkit2gtk-4.0.so lib/libwebkit2gtk-4.0.so.37 -lib/libwebkit2gtk-4.0.so.37.28.2 +lib/libwebkit2gtk-4.0.so.37.28.3 lib/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so libdata/pkgconfig/javascriptcoregtk-4.0.pc libdata/pkgconfig/webkit2gtk-4.0.pc From owner-svn-ports-head@freebsd.org Mon Jun 18 19:50:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2754101D7BC; Mon, 18 Jun 2018 19:50:42 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6449E6F3CA; Mon, 18 Jun 2018 19:50:42 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 45B4BA1C; Mon, 18 Jun 2018 19:50:42 +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 w5IJogK5038345; Mon, 18 Jun 2018 19:50:42 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IJogAl038344; Mon, 18 Jun 2018 19:50:42 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806181950.w5IJogAl038344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 18 Jun 2018 19:50:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472709 - head/security/py-certstream X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/security/py-certstream X-SVN-Commit-Revision: 472709 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 19:50:42 -0000 Author: antoine Date: Mon Jun 18 19:50:41 2018 New Revision: 472709 URL: https://svnweb.freebsd.org/changeset/ports/472709 Log: Fix depends Modified: head/security/py-certstream/Makefile Modified: head/security/py-certstream/Makefile ============================================================================== --- head/security/py-certstream/Makefile Mon Jun 18 19:38:23 2018 (r472708) +++ head/security/py-certstream/Makefile Mon Jun 18 19:50:41 2018 (r472709) @@ -2,6 +2,7 @@ PORTNAME= certstream PORTVERSION= 1.9 +PORTREVISION= 1 CATEGORIES= security www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +14,7 @@ LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}termcolor>=0:devel/py-termcolor@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}websocket-client>=0:www/py-websocket-client@${PY_FLAVOR} -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}termcolor>=0:devel/py-termcolor@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}termcolor>=0:devel/py-termcolor@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}websocket-client>=0:www/py-websocket-client@${PY_FLAVOR} NO_ARCH= yes From owner-svn-ports-head@freebsd.org Mon Jun 18 19:51:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E7BC101D8B1; Mon, 18 Jun 2018 19:51:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EE79C6F59C; Mon, 18 Jun 2018 19:51:28 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D0420B50; Mon, 18 Jun 2018 19:51:28 +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 w5IJpSVv040225; Mon, 18 Jun 2018 19:51:28 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IJpNsp040198; Mon, 18 Jun 2018 19:51:23 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806181951.w5IJpNsp040198@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 19:51:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472710 - in head/sysutils: u-boot-a13-olinuxino u-boot-a64-olinuxino u-boot-bananapi u-boot-bananapim2 u-boot-beaglebone u-boot-chip u-boot-cubieboard u-boot-cubieboard2 u-boot-duovero... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: u-boot-a13-olinuxino u-boot-a64-olinuxino u-boot-bananapi u-boot-bananapim2 u-boot-beaglebone u-boot-chip u-boot-cubieboard u-boot-cubieboard2 u-boot-duovero u-boot-nanopi-m1plus u-b... X-SVN-Commit-Revision: 472710 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 19:51:29 -0000 Author: linimon Date: Mon Jun 18 19:51:23 2018 New Revision: 472710 URL: https://svnweb.freebsd.org/changeset/ports/472710 Log: Update the instruction and description of the u-boot ports which use u-boot-master. Submitted by: manu Differential Revision: D15883 Modified: head/sysutils/u-boot-a13-olinuxino/pkg-descr head/sysutils/u-boot-a64-olinuxino/pkg-descr head/sysutils/u-boot-bananapi/pkg-descr head/sysutils/u-boot-bananapim2/pkg-descr head/sysutils/u-boot-beaglebone/pkg-descr head/sysutils/u-boot-chip/pkg-descr head/sysutils/u-boot-cubieboard/pkg-descr head/sysutils/u-boot-cubieboard2/pkg-descr head/sysutils/u-boot-duovero/pkg-descr head/sysutils/u-boot-nanopi-m1plus/pkg-descr head/sysutils/u-boot-nanopi-neo-air/pkg-descr head/sysutils/u-boot-nanopi-neo/pkg-descr head/sysutils/u-boot-olimex-a20-som-evb/pkg-descr head/sysutils/u-boot-olinuxino-lime/pkg-descr head/sysutils/u-boot-orangepi-one/pkg-descr head/sysutils/u-boot-orangepi-pc/pkg-descr head/sysutils/u-boot-orangepi-pc2/pkg-descr head/sysutils/u-boot-orangepi-plus-2e/pkg-descr head/sysutils/u-boot-orangepi-zero/pkg-descr head/sysutils/u-boot-pandaboard/pkg-descr head/sysutils/u-boot-pcduino3/pkg-descr head/sysutils/u-boot-sinovoip-bpi-m3/pkg-descr head/sysutils/u-boot-zedboard/pkg-descr head/sysutils/u-boot-zybo/pkg-descr Modified: head/sysutils/u-boot-a13-olinuxino/pkg-descr ============================================================================== --- head/sysutils/u-boot-a13-olinuxino/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-a13-olinuxino/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,16 +1,13 @@ U-Boot loader for A13 Olinuxino. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-a13-olinuxino/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-a13-olinuxino/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The distroboot command knows how to load FreeBSD loader(8) - * By default, it loads ubldr.bin (PIE) from file ubldr.bin on the FAT - partition to address 0x42000000, and launches it. If ubldr.bin is - not found, it falls back on ubldr + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-a64-olinuxino/pkg-descr ============================================================================== --- head/sysutils/u-boot-a64-olinuxino/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-a64-olinuxino/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -4,6 +4,6 @@ To install this bootloader on an sdcard just do: dd if=/usr/local/share/u-boot/u-boot-a64-olinuxino/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-bananapi/pkg-descr ============================================================================== --- head/sysutils/u-boot-bananapi/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-bananapi/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Banana Pi. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-bananapi/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr - using the fdtfile env variable. ubldr loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads ELF ubldr from file ubldr on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on Banana Pi, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-bananapim2/pkg-descr ============================================================================== --- head/sysutils/u-boot-bananapim2/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-bananapim2/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Banana Pi M2. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-bananapim2/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr - using the fdtfile env variable. ubldr loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on Banana Pi, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-beaglebone/pkg-descr ============================================================================== --- head/sysutils/u-boot-beaglebone/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-beaglebone/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -5,19 +5,10 @@ partition on an SD card or the eMMC. Normally this is different partitions can be set with U-Boot environment variables. This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file uboot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr - using the fdtfile env variable. ubldr loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads ELF ubldr from file bbubldr on the FAT partition - to address 0x88000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot scripts ) that loads ubldr.bin and execute it is included -Note: prefixing the boot files with 'bb' allows building -images with boot bits for more than one board. - For information about running FreeBSD on BeagleBone or BeagleBone Black, see - https://wiki.freebsd.org/FreeBSD/arm/BeagleBone +https://wiki.freebsd.org/FreeBSD/arm/BeagleBone -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-chip/pkg-descr ============================================================================== --- head/sysutils/u-boot-chip/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-chip/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,16 +1,13 @@ U-Boot loader for NextThingCo CHIP. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-chip/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-chip/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The distroboot command knows how to load FreeBSD loader(8) - * By default, it loads ubldr.bin (PIE) from file ubldr.bin on the FAT - partition to address 0x42000000, and launches it. If ubldr.bin is - not found, it falls back on ubldr + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-cubieboard/pkg-descr ============================================================================== --- head/sysutils/u-boot-cubieboard/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-cubieboard/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Cubieboard. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-cubieboard/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr - using the fdtfile env variable. ubldr loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads ELF ubldr from file ubldr on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on Cubieboard, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-cubieboard2/pkg-descr ============================================================================== --- head/sysutils/u-boot-cubieboard2/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-cubieboard2/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Cubieboard2. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-cubieboard2/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr - using the fdtfile env variable. ubldr loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads ELF ubldr from file ubldr on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on Cubieboard, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-duovero/pkg-descr ============================================================================== --- head/sysutils/u-boot-duovero/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-duovero/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -5,17 +5,10 @@ partition on an SD card. Normally this is partition 1, partitions can be set with U-Boot environment variables. This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file uboot.env on the FAT partition. - * The DTB file name is passed to ubldr using the fdtfile env variable. - The default is omap4-duovero-parlor.dtb for a Parlor expansion board. - ubldr loads the DTB from /boot/dtb/ on the FreeBSD partition. - (Not tested) - * By default, it loads ELF ubldr from file ubldr on the FAT partition - to address 0x88000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Duovero, see - https://wiki.freebsd.org/FreeBSD/arm/Duovero +https://wiki.freebsd.org/FreeBSD/arm -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-nanopi-m1plus/pkg-descr ============================================================================== --- head/sysutils/u-boot-nanopi-m1plus/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-nanopi-m1plus/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,16 +1,13 @@ U-Boot loader for NanoPi M1 Plus. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-nanopi-m1plus/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The distroboot command knows how to load FreeBSD loader(8) - * By default, it loads ubldr.bin (PIE) from file ubldr.bin on the FAT - partition to address 0x42000000, and launches it. If ubldr.bin is - not found, it falls back on ubldr + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on NanoPi Neo, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-nanopi-neo-air/pkg-descr ============================================================================== --- head/sysutils/u-boot-nanopi-neo-air/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-nanopi-neo-air/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,16 +1,13 @@ U-Boot loader for NanoPi Neo Air. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-nanopi-neo-air/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The distroboot command knows how to load FreeBSD loader(8) - * By default, it loads ubldr.bin (PIE) from file ubldr.bin on the FAT - partition to address 0x42000000, and launches it. If ubldr.bin is - not found, it falls back on ubldr + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on NanoPi Neo, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-nanopi-neo/pkg-descr ============================================================================== --- head/sysutils/u-boot-nanopi-neo/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-nanopi-neo/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,16 +1,13 @@ U-Boot loader for NanoPi Neo. -To install this bootloader, follow the instructions in - http://linux-sunxi.org/Bootable_SD_card#Bootloader +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-nanopi-neo/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The distroboot command knows how to load FreeBSD loader(8) - * By default, it loads ubldr.bin (PIE) from file ubldr.bin on the FAT - partition to address 0x42000000, and launches it. If ubldr.bin is - not found, it falls back on ubldr + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included -For information about running FreeBSD on NanoPi Neo, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-olimex-a20-som-evb/pkg-descr ============================================================================== --- head/sysutils/u-boot-olimex-a20-som-evb/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-olimex-a20-som-evb/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Olimex A20 SOM EVB. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-olimex-a20-som-evb/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-olimex-a20-som-evb/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-olinuxino-lime/pkg-descr ============================================================================== --- head/sysutils/u-boot-olinuxino-lime/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-olinuxino-lime/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Olinuxino Lime. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-olinuxino-lime/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-olinuxino-lime/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-orangepi-one/pkg-descr ============================================================================== --- head/sysutils/u-boot-orangepi-one/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-orangepi-one/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for OrangePi One. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-orangepi-one/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-orangepi-one/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-orangepi-pc/pkg-descr ============================================================================== --- head/sysutils/u-boot-orangepi-pc/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-orangepi-pc/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,9 +1,13 @@ U-Boot loader and related files for the OrangePi PC -To install this bootloader on an sdcard just do: -dd if=/usr/local/share/u-boot/u-boot-orangepi-pc/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-orangepi-pc/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync +This version is patched so that: + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included + For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-orangepi-pc2/pkg-descr ============================================================================== --- head/sysutils/u-boot-orangepi-pc2/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-orangepi-pc2/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,9 +1,9 @@ U-Boot loader and related files for the OrangePi PC2 To install this bootloader on an sdcard just do: -dd if=/usr/local/share/u-boot/u-boot-orangepi-pc2/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync +dd if=$LOCALBASE/share/u-boot/u-boot-orangepi-pc2/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-orangepi-plus-2e/pkg-descr ============================================================================== --- head/sysutils/u-boot-orangepi-plus-2e/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-orangepi-plus-2e/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,20 +1,13 @@ U-Boot loader for OrangePi Plus2E. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-orangepi-plus-2e/u-boot-sunxi-with-spl.bin \ - of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-orangepi-plus-2e/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-orangepi-zero/pkg-descr ============================================================================== --- head/sysutils/u-boot-orangepi-zero/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-orangepi-zero/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for OrangePi Zero. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-orangepi-zero/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-orangepi-zero/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-pandaboard/pkg-descr ============================================================================== --- head/sysutils/u-boot-pandaboard/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-pandaboard/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -5,17 +5,10 @@ partition on an SD card. Normally this is partition 1 partitions can be set with U-Boot environment variables. This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file uboot.env on the FAT partition. - * The DTB file name is passed to ubldr using the fdtfile env variable. - It defaults to omap4-panda.dtb unless you override it. ubldr loads - the DTB from /boot/dtb/ on the FreeBSD partition. - (Not tested) - * By default, it loads ELF ubldr from file ubldr on the FAT partition - to address 0x88000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot scripts ) that loads ubldr.bin and execute it is included For information about running FreeBSD on the PandaBoard, see - https://wiki.freebsd.org/FreeBSD/arm/PandaBoard +https://wiki.freebsd.org/FreeBSD/arm/PandaBoard -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-pcduino3/pkg-descr ============================================================================== --- head/sysutils/u-boot-pcduino3/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-pcduino3/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for pcDuino3 To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-pcduino3/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-pcduino3/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-sinovoip-bpi-m3/pkg-descr ============================================================================== --- head/sysutils/u-boot-sinovoip-bpi-m3/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-sinovoip-bpi-m3/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -1,19 +1,13 @@ U-Boot loader for Banana Pi M3. To install this bootloader on an sdcard just do : -dd if=/usr/local/share/u-boot/u-boot-sinovoip-bpi-m3/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync +dd if=$LOCALBASE/share/u-boot/u-boot-sinovoip-bpi-m3/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=sync This version is patched so that: - * ELF and API features are enabled. - * The default environment is trimmed to just what's needed to boot. - * The saveenv command writes to the file u-boot.env on the FAT partition. - * The DTB file name is chosen based on the board model and passed to ubldr.bin - using the fdtfile env variable. ubldr.bin loads the DTB from /boot/dtb/ on - the FreeBSD partition. - * By default, it loads PIE ubldr.bin from file ubldr.bin on the FAT partition - to address 0x42000000, and launches it. + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included For information about running FreeBSD on Allwinner boards, see - https://wiki.freebsd.org/FreeBSD/arm/Allwinner +https://wiki.freebsd.org/FreeBSD/arm/Allwinner -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-zedboard/pkg-descr ============================================================================== --- head/sysutils/u-boot-zedboard/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-zedboard/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -3,10 +3,10 @@ U-Boot loader for the Xilinx Zynq-based Zedboard. To install this bootloader, copy the files in the share/u-boot/u-boot-zedboard directory to the first partition, formatted as FAT16 or FAT32, on an SD card. -This version is patched as follows: - * ELF and API features are enabled. +This version is patched so that: + * API features are enabled. For information about running FreeBSD on Xilinx Zynq SoCs, see -WWW: https://wiki.freebsd.org/FreeBSD/arm/Zedboard +https://wiki.freebsd.org/FreeBSD/arm/Zedboard -For general information about U-Boot see WWW: https://www.denx.de/wiki/U-Boot +WWW: https://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-zybo/pkg-descr ============================================================================== --- head/sysutils/u-boot-zybo/pkg-descr Mon Jun 18 19:50:41 2018 (r472709) +++ head/sysutils/u-boot-zybo/pkg-descr Mon Jun 18 19:51:23 2018 (r472710) @@ -3,10 +3,10 @@ U-Boot loader for the Xilinx Zynq-based Zedboard. To install this bootloader, copy the files in the share/u-boot/u-boot-zedboard directory to the first partition, formatted as FAT16 or FAT32, on an SD card. -This version is patched as follows: - * ELF and API features are enabled. +This version is patched so that: + * API features are enabled. For information about running FreeBSD on Xilinx Zynq SoCs, see -WWW: https://wiki.freebsd.org/FreeBSD/arm/Zedboard +https://wiki.freebsd.org/FreeBSD/arm/Zedboard -For general information about U-Boot see WWW: https://www.denx.de/wiki/U-Boot +WWW: https://www.denx.de/wiki/U-Boot From owner-svn-ports-head@freebsd.org Mon Jun 18 19:59:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C83EC101E197; Mon, 18 Jun 2018 19:59:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E9AF6FCA0; Mon, 18 Jun 2018 19:59:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5B6A8BA3; Mon, 18 Jun 2018 19:59:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IJxb8M043702; Mon, 18 Jun 2018 19:59:37 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IJxawm043700; Mon, 18 Jun 2018 19:59:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806181959.w5IJxawm043700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 18 Jun 2018 19:59:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472711 - head/net-mgmt/p5-Telnet-Cisco X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/net-mgmt/p5-Telnet-Cisco X-SVN-Commit-Revision: 472711 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 19:59:38 -0000 Author: pi Date: Mon Jun 18 19:59:36 2018 New Revision: 472711 URL: https://svnweb.freebsd.org/changeset/ports/472711 Log: net-mgmt/p5-Telnet-Cisco: update 1.10 -> 1.11, add LICENSE, NO_ARCH PR: 229111 Submitted by: Kai Approved by: lyngbol@wheel.dk (maintainer) Relnotes: https://metacpan.org/changes/distribution/Net-Telnet-Cisco Modified: head/net-mgmt/p5-Telnet-Cisco/Makefile head/net-mgmt/p5-Telnet-Cisco/distinfo Modified: head/net-mgmt/p5-Telnet-Cisco/Makefile ============================================================================== --- head/net-mgmt/p5-Telnet-Cisco/Makefile Mon Jun 18 19:51:23 2018 (r472710) +++ head/net-mgmt/p5-Telnet-Cisco/Makefile Mon Jun 18 19:59:36 2018 (r472711) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Net-Telnet-Cisco -PORTVERSION= 1.10 -PORTREVISION= 2 +PORTVERSION= 1.11 CATEGORIES= net-mgmt perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,10 +10,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= lyngbol@wheel.dk COMMENT= Perl5 module to telnet to Cisco routers +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + RUN_DEPENDS= p5-Net-Telnet>=3.02:net/p5-Net-Telnet \ p5-Term-ReadKey>=2:devel/p5-Term-ReadKey USES= perl5 USE_PERL5= configure + +NO_ARCH= yes .include Modified: head/net-mgmt/p5-Telnet-Cisco/distinfo ============================================================================== --- head/net-mgmt/p5-Telnet-Cisco/distinfo Mon Jun 18 19:51:23 2018 (r472710) +++ head/net-mgmt/p5-Telnet-Cisco/distinfo Mon Jun 18 19:59:36 2018 (r472711) @@ -1,2 +1,3 @@ -SHA256 (Net-Telnet-Cisco-1.10.tar.gz) = 0959b9b0e6f19ba4402334dfdc3c07657bdd5c2672d4c5ffcbf3214d5edd38f4 -SIZE (Net-Telnet-Cisco-1.10.tar.gz) = 17579 +TIMESTAMP = 1529334521 +SHA256 (Net-Telnet-Cisco-1.11.tar.gz) = bd2aa58c474f582c3736f290ce114c9530c26447c1c3d69130fa55259140f6c1 +SIZE (Net-Telnet-Cisco-1.11.tar.gz) = 19282 From owner-svn-ports-head@freebsd.org Mon Jun 18 20:02:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F9D7101E540; Mon, 18 Jun 2018 20:02:05 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F2E1370067; Mon, 18 Jun 2018 20:02: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D3A89C16; Mon, 18 Jun 2018 20:02:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IK24XO048341; Mon, 18 Jun 2018 20:02:04 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IK24nE048339; Mon, 18 Jun 2018 20:02:04 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806182002.w5IK24nE048339@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 20:02:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472712 - in head/sysutils: u-boot-cubox-hummingboard u-boot-wandboard X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: u-boot-cubox-hummingboard u-boot-wandboard X-SVN-Commit-Revision: 472712 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:02:05 -0000 Author: linimon Date: Mon Jun 18 20:02:04 2018 New Revision: 472712 URL: https://svnweb.freebsd.org/changeset/ports/472712 Log: Canonicalize two pkg-descrs missed in D15883. Modified: head/sysutils/u-boot-cubox-hummingboard/pkg-descr head/sysutils/u-boot-wandboard/pkg-descr Modified: head/sysutils/u-boot-cubox-hummingboard/pkg-descr ============================================================================== --- head/sysutils/u-boot-cubox-hummingboard/pkg-descr Mon Jun 18 19:59:36 2018 (r472711) +++ head/sysutils/u-boot-cubox-hummingboard/pkg-descr Mon Jun 18 20:02:04 2018 (r472712) @@ -17,4 +17,4 @@ at https://github.com/SolidRun/u-boot-imx6 which appea modified fork of the stock U-Boot 2013.10 release. As of this writing, the changes in this fork have not been rolled back into upstream U-Boot. -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot Modified: head/sysutils/u-boot-wandboard/pkg-descr ============================================================================== --- head/sysutils/u-boot-wandboard/pkg-descr Mon Jun 18 19:59:36 2018 (r472711) +++ head/sysutils/u-boot-wandboard/pkg-descr Mon Jun 18 20:02:04 2018 (r472712) @@ -21,4 +21,4 @@ at https://github.com/TechNexion/U-Boot-edm/ which app modified fork of the stock U-Boot 2013.10 release. As of this writing, the changes in this fork have not been rolled back into upstream U-Boot. -For general information about U-Boot see WWW: http://www.denx.de/wiki/U-Boot +WWW: http://www.denx.de/wiki/U-Boot From owner-svn-ports-head@freebsd.org Mon Jun 18 20:07:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD671101E96D; Mon, 18 Jun 2018 20:07:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 81FBE702B2; Mon, 18 Jun 2018 20:07:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E5E6D52; Mon, 18 Jun 2018 20:07:18 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5IK7IBp048701; Mon, 18 Jun 2018 20:07:18 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IK7HPX048699; Mon, 18 Jun 2018 20:07:17 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806182007.w5IK7HPX048699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Mon, 18 Jun 2018 20:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472713 - in head/lang/qt5-qml: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/lang/qt5-qml: . files X-SVN-Commit-Revision: 472713 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:07:19 -0000 Author: tcberner Date: Mon Jun 18 20:07:17 2018 New Revision: 472713 URL: https://svnweb.freebsd.org/changeset/ports/472713 Log: lang/qt5-qml: enable JIT on aarch64 PR: 229124 Submitted by: mikael.urankar@gmail.com Added: head/lang/qt5-qml/files/patch-src_3rdparty_masm_assembler_ARM64Assembler.h (contents, props changed) head/lang/qt5-qml/files/patch-src_qml_jsruntime_qv4global__p.h (contents, props changed) Modified: head/lang/qt5-qml/Makefile Modified: head/lang/qt5-qml/Makefile ============================================================================== --- head/lang/qt5-qml/Makefile Mon Jun 18 20:02:04 2018 (r472712) +++ head/lang/qt5-qml/Makefile Mon Jun 18 20:07:17 2018 (r472713) @@ -2,6 +2,7 @@ PORTNAME= qml DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= lang PKGNAMEPREFIX= qt5- Added: head/lang/qt5-qml/files/patch-src_3rdparty_masm_assembler_ARM64Assembler.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/qt5-qml/files/patch-src_3rdparty_masm_assembler_ARM64Assembler.h Mon Jun 18 20:07:17 2018 (r472713) @@ -0,0 +1,12 @@ +--- src/3rdparty/masm/assembler/ARM64Assembler.h 2018-02-06 19:49:18 UTC ++++ src/3rdparty/masm/assembler/ARM64Assembler.h +@@ -3032,6 +3032,8 @@ + linuxPageFlush(current, current + page); + + linuxPageFlush(current, end); ++#elif OS(FREEBSD) ++ __clear_cache(code, reinterpret_cast(code) + size); + #elif OS(QNX) + #if !ENABLE(ASSEMBLER_WX_EXCLUSIVE) + msync(code, size, MS_INVALIDATE_ICACHE); + Added: head/lang/qt5-qml/files/patch-src_qml_jsruntime_qv4global__p.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/qt5-qml/files/patch-src_qml_jsruntime_qv4global__p.h Mon Jun 18 20:07:17 2018 (r472713) @@ -0,0 +1,11 @@ +--- src/qml/jsruntime/qv4global_p.h 2018-02-06 19:49:18 UTC ++++ src/qml/jsruntime/qv4global_p.h +@@ -104,7 +104,7 @@ inline double trunc(double d) { return d > 0 ? floor(d + # define V4_ENABLE_JIT + # endif + #elif defined(Q_PROCESSOR_ARM_64) && (QT_POINTER_SIZE == 8) +-# if defined(Q_OS_LINUX) || defined(Q_OS_QNX) ++# if defined(Q_OS_LINUX) || defined(Q_OS_QNX) || defined(Q_OS_FREEBSD) + # define V4_ENABLE_JIT + # endif + #elif defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX) From owner-svn-ports-head@freebsd.org Mon Jun 18 20:22:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03079101F958; Mon, 18 Jun 2018 20:22:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A6FE471276; Mon, 18 Jun 2018 20:22:18 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87B6810BA; Mon, 18 Jun 2018 20:22:18 +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 w5IKMIah059661; Mon, 18 Jun 2018 20:22:18 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IKMDuE059178; Mon, 18 Jun 2018 20:22:13 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806182022.w5IKMDuE059178@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 20:22:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472714 - in head/sysutils: u-boot-a13-olinuxino u-boot-a64-olinuxino u-boot-bananapi u-boot-bananapim2 u-boot-beaglebone u-boot-chip u-boot-cubieboard u-boot-cubieboard2 u-boot-cubox-h... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: u-boot-a13-olinuxino u-boot-a64-olinuxino u-boot-bananapi u-boot-bananapim2 u-boot-beaglebone u-boot-chip u-boot-cubieboard u-boot-cubieboard2 u-boot-cubox-hummingboard u-boot-duover... X-SVN-Commit-Revision: 472714 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:22:19 -0000 Author: linimon Date: Mon Jun 18 20:22:13 2018 New Revision: 472714 URL: https://svnweb.freebsd.org/changeset/ports/472714 Log: Consolidate maintainership of various u-boot ports under u-boot@. Submitted by: manu Differential Revision: D15884 Modified: head/sysutils/u-boot-a13-olinuxino/Makefile head/sysutils/u-boot-a64-olinuxino/Makefile head/sysutils/u-boot-bananapi/Makefile head/sysutils/u-boot-bananapim2/Makefile head/sysutils/u-boot-beaglebone/Makefile head/sysutils/u-boot-chip/Makefile head/sysutils/u-boot-cubieboard/Makefile head/sysutils/u-boot-cubieboard2/Makefile head/sysutils/u-boot-cubox-hummingboard/Makefile head/sysutils/u-boot-duovero/Makefile head/sysutils/u-boot-master/Makefile head/sysutils/u-boot-nanopi-m1plus/Makefile head/sysutils/u-boot-nanopi-neo-air/Makefile head/sysutils/u-boot-nanopi-neo/Makefile head/sysutils/u-boot-olimex-a20-som-evb/Makefile head/sysutils/u-boot-olinuxino-lime/Makefile head/sysutils/u-boot-orangepi-one/Makefile head/sysutils/u-boot-orangepi-pc/Makefile head/sysutils/u-boot-orangepi-pc2/Makefile head/sysutils/u-boot-pandaboard/Makefile head/sysutils/u-boot-pcduino3/Makefile head/sysutils/u-boot-sinovoip-bpi-m3/Makefile head/sysutils/u-boot-wandboard/Makefile head/sysutils/u-boot-zedboard/Makefile head/sysutils/u-boot-zybo/Makefile Modified: head/sysutils/u-boot-a13-olinuxino/Makefile ============================================================================== --- head/sysutils/u-boot-a13-olinuxino/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-a13-olinuxino/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= a13-olinuxino Modified: head/sysutils/u-boot-a64-olinuxino/Makefile ============================================================================== --- head/sysutils/u-boot-a64-olinuxino/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-a64-olinuxino/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= uboot@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= a64-olinuxino Modified: head/sysutils/u-boot-bananapi/Makefile ============================================================================== --- head/sysutils/u-boot-bananapi/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-bananapi/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= bananapi Modified: head/sysutils/u-boot-bananapim2/Makefile ============================================================================== --- head/sysutils/u-boot-bananapim2/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-bananapim2/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= bananapim2 Modified: head/sysutils/u-boot-beaglebone/Makefile ============================================================================== --- head/sysutils/u-boot-beaglebone/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-beaglebone/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= beaglebone Modified: head/sysutils/u-boot-chip/Makefile ============================================================================== --- head/sysutils/u-boot-chip/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-chip/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= chip Modified: head/sysutils/u-boot-cubieboard/Makefile ============================================================================== --- head/sysutils/u-boot-cubieboard/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-cubieboard/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= cubieboard Modified: head/sysutils/u-boot-cubieboard2/Makefile ============================================================================== --- head/sysutils/u-boot-cubieboard2/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-cubieboard2/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= cubieboard2 Modified: head/sysutils/u-boot-cubox-hummingboard/Makefile ============================================================================== --- head/sysutils/u-boot-cubox-hummingboard/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-cubox-hummingboard/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= cubox-hummingboard Modified: head/sysutils/u-boot-duovero/Makefile ============================================================================== --- head/sysutils/u-boot-duovero/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-duovero/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= duovero Modified: head/sysutils/u-boot-master/Makefile ============================================================================== --- head/sysutils/u-boot-master/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-master/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -9,7 +9,7 @@ CATEGORIES= sysutils PKGNAMESUFFIX?= -${MODEL} MASTER_SITES= ftp://ftp.denx.de/pub/u-boot/ -MAINTAINER= uboot@FreeBSD.org +MAINTAINER?= uboot@FreeBSD.org COMMENT= Cross-build das u-boot for model ${MODEL} LICENSE= GPLv2 Modified: head/sysutils/u-boot-nanopi-m1plus/Makefile ============================================================================== --- head/sysutils/u-boot-nanopi-m1plus/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-nanopi-m1plus/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= manu@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= nanopi_m1plus Modified: head/sysutils/u-boot-nanopi-neo-air/Makefile ============================================================================== --- head/sysutils/u-boot-nanopi-neo-air/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-nanopi-neo-air/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= manu@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= nanopi_neo_air Modified: head/sysutils/u-boot-nanopi-neo/Makefile ============================================================================== --- head/sysutils/u-boot-nanopi-neo/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-nanopi-neo/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= manu@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= nanopi_neo Modified: head/sysutils/u-boot-olimex-a20-som-evb/Makefile ============================================================================== --- head/sysutils/u-boot-olimex-a20-som-evb/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-olimex-a20-som-evb/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= olimex-a20-som-evb Modified: head/sysutils/u-boot-olinuxino-lime/Makefile ============================================================================== --- head/sysutils/u-boot-olinuxino-lime/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-olinuxino-lime/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= olinuxino-lime Modified: head/sysutils/u-boot-orangepi-one/Makefile ============================================================================== --- head/sysutils/u-boot-orangepi-one/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-orangepi-one/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= orangepi-one Modified: head/sysutils/u-boot-orangepi-pc/Makefile ============================================================================== --- head/sysutils/u-boot-orangepi-pc/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-orangepi-pc/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= uboot@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= orangepi-pc Modified: head/sysutils/u-boot-orangepi-pc2/Makefile ============================================================================== --- head/sysutils/u-boot-orangepi-pc2/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-orangepi-pc2/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= uboot@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= orangepi-pc2 Modified: head/sysutils/u-boot-pandaboard/Makefile ============================================================================== --- head/sysutils/u-boot-pandaboard/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-pandaboard/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= pandaboard Modified: head/sysutils/u-boot-pcduino3/Makefile ============================================================================== --- head/sysutils/u-boot-pcduino3/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-pcduino3/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= pcduino3 Modified: head/sysutils/u-boot-sinovoip-bpi-m3/Makefile ============================================================================== --- head/sysutils/u-boot-sinovoip-bpi-m3/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-sinovoip-bpi-m3/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= uboot@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= sinovoip-bpi-m3 Modified: head/sysutils/u-boot-wandboard/Makefile ============================================================================== --- head/sysutils/u-boot-wandboard/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-wandboard/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= wandboard Modified: head/sysutils/u-boot-zedboard/Makefile ============================================================================== --- head/sysutils/u-boot-zedboard/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-zedboard/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= zedboard Modified: head/sysutils/u-boot-zybo/Makefile ============================================================================== --- head/sysutils/u-boot-zybo/Makefile Mon Jun 18 20:07:17 2018 (r472713) +++ head/sysutils/u-boot-zybo/Makefile Mon Jun 18 20:22:13 2018 (r472714) @@ -1,6 +1,5 @@ # $FreeBSD$ -MAINTAINER= imp@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= zybo From owner-svn-ports-head@freebsd.org Mon Jun 18 20:22:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B587B101F9F1; Mon, 18 Jun 2018 20:22:58 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64489713BF; Mon, 18 Jun 2018 20:22:58 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id B559E161CC; Mon, 18 Jun 2018 20:22:57 +0000 (UTC) (envelope-from mat@FreeBSD.org) Date: Mon, 18 Jun 2018 22:22:51 +0200 From: Mathieu Arnold To: "Carlos J. Puga Medina" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472498 - head/archivers/py-borgbackup Message-ID: <20180618202251.5p2uvx6vc2bwgjx4@atuin.in.mat.cc> References: <201806152206.w5FM6dup090058@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="tln7sgbcio65klnd" Content-Disposition: inline In-Reply-To: <201806152206.w5FM6dup090058@repo.freebsd.org> User-Agent: NeoMutt/20180323 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:22:58 -0000 --tln7sgbcio65klnd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 15, 2018 at 10:06:39PM +0000, Carlos J. Puga Medina wrote: > - Enable FUSE option by default Why? --=20 Mathieu Arnold --tln7sgbcio65klnd Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAlsoFJtfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkjQ3w/5AW+bqS1MYDwvaifZruV9DoJ6Jp3QvRBGTS8YhCud4rlgXmy+m0IVI3Ru D3Qu81FzGef79T9wa5L+2f8by7+Xv6lcTXig7/WdMAMnv/CvAt/3oJv7kA/s2udm idUpRVWNIJZubU2dSq+oldJ1EtJ3t0Arm6sZaqmc3xT/x8QCusBUaOcKpVLnoZJt zODD/I3k1qRuV+WNptkvX6jXu/Tc8+5aMbYzo9vlaoPDrsvIbflJ1qoyrbAKtLCi 5p+WeqFLvFDJKlJqYoajTxh+JHyVUrXiqIFy/ZTEJZiRWK5Fak/YmoW27ms7vF4d PrC4xjrKvNPRaIu+XORXMZ2Jqrdo3VNIB7l0TgXWFl1R5hiZ2O4MuCpFxQaFchSV l8b1kd/s7kQfUbA33j+VCCC/VAq6K1eP0J9mtXMhaX0HP1g00SjQ8dselJR6x5RM GjQgiRv7l4AR27lOs3uiu381pQ4bVQnJCjgZSc98Sr+4wN63ZRW+0pv5GAlfV+dQ ktqMk9qdWseaTItfRPzdAsyLnOXukz302b5D8+YCg1pnOhzFM08UoFqUhoqB/miB ZEUR03xWvBGDXgyLl/yp/tCW5CcFgdLe5k3FMKK5cnl4dh4/khQBSiu8UXachBcm M7O0lW0Napt8IHNE1WpKRkwEImyEG/NaEhth3XWXzd2gfj5xvQw= =gQOo -----END PGP SIGNATURE----- --tln7sgbcio65klnd-- From owner-svn-ports-head@freebsd.org Mon Jun 18 20:24:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88600101FB62; Mon, 18 Jun 2018 20:24:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC2C71774; Mon, 18 Jun 2018 20:24:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 8FA54161CD; Mon, 18 Jun 2018 20:24:26 +0000 (UTC) (envelope-from mat@FreeBSD.org) Date: Mon, 18 Jun 2018 22:24:25 +0200 From: Mathieu Arnold To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472501 - head/science/py-spglib Message-ID: <20180618202425.76wlikagjpytnafy@atuin.in.mat.cc> References: <201806152234.w5FMYTUx005541@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="4n7sfrl5rp3aux3r" Content-Disposition: inline In-Reply-To: <201806152234.w5FMYTUx005541@repo.freebsd.org> User-Agent: NeoMutt/20180323 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:24:27 -0000 --4n7sfrl5rp3aux3r Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 15, 2018 at 10:34:29PM +0000, Yuri Victorovich wrote: > * Remove USES=3Dshebangfix Why? --=20 Mathieu Arnold --4n7sfrl5rp3aux3r Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAlsoFPlfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkiOLRAAkMcnLejP1HGwjdxr2WKzKVj0k2j/WZN+XeW0JSLo5zxXfPtJ9FgjPANX ScBcqNkvdOFF53rBALn60AAxGAg1WpKQxXOFLh5B+EbCP1EyXT8X/+mBpi99D6P0 +dYwu++HYxU+/Cx5P0glRqQf4LcMP3DTLm8H6tOTCADiW6WDkGdP3SdlCGYyTWK6 G+78tdMmOf9GXMBlsFA5yclRIY9yoWZPwikiaIWvtEt/hds/3cgJ7F3ZJoy8Wqd0 BnwYkr8R8tkP3EAUffFQyZ+Cm+X+Et8eMCaX7AODpfYPSJUFzrHjG+yBOtXlJooT fW3tN8itjsc3KnLKlHYSJbuGVMP1R5SoT+mfCdJY2ZWa9ySE17tWFe/uQSOI3HzY q+voJ533upHOZmfwr8tbktp8cJvyPC+asiPoF0vD+nEV8VbOlA3KZhAmB6g2OoSb cHQ9qB673oUukJHwt+POWbOpW9OEvYhOUTnWgfW9k+MZtzOg5rdcHthdCEC51uTC C/9qQYpgMyXFIHky2jyHoRY6g/whvsDxPIxSBKmN3gA5JBXccSe/f72K1eG2BH13 lRoYssNOdScD6+UCuT+vgHn7UnXRWDeIFL5Rq/OnhNNRPXwfKxVCaTYSq9QODA86 /axPJXkAqx3FpuMmjYxqdlvVQ4zF6UNjKOT3MkTmROTWgU8qPGI= =C5go -----END PGP SIGNATURE----- --4n7sfrl5rp3aux3r-- From owner-svn-ports-head@freebsd.org Mon Jun 18 20:26:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A3C1101FD58; Mon, 18 Jun 2018 20:26:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 38092718CC; Mon, 18 Jun 2018 20:26:21 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 6ADF6161CE; Mon, 18 Jun 2018 20:26:20 +0000 (UTC) (envelope-from mat@FreeBSD.org) Date: Mon, 18 Jun 2018 22:26:19 +0200 From: Mathieu Arnold To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472505 - in head/science: . py-abipy Message-ID: <20180618202619.4ff3ympyappfqjcq@atuin.in.mat.cc> References: <201806160037.w5G0bZJp066568@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ox7mrspkfbo62bjc" Content-Disposition: inline In-Reply-To: <201806160037.w5G0bZJp066568@repo.freebsd.org> User-Agent: NeoMutt/20180323 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:26:21 -0000 --ox7mrspkfbo62bjc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 16, 2018 at 12:37:35AM +0000, Yuri Victorovich wrote: > Author: yuri > Date: Sat Jun 16 00:37:35 2018 > New Revision: 472505 > URL: https://svnweb.freebsd.org/changeset/ports/472505 >=20 > Log: > New port: science/py-abipy: Library for analyzing the results produced = by ABINIT I'm replying to one of those ports you add that nobody will probably ever need. Could you at least do them right, like, using PY_FLAVOR in dependency lines? --=20 Mathieu Arnold --ox7mrspkfbo62bjc Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAlsoFWpfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkhzGg//YAv9/+xwnP0u3lLZZo53PNFS6GWinovdHsKcIYPXgea2mHLcLig1TwpC SNBo9fKVLO4JcLEjjsAb32yt3imnm0q6bK8oQMTUonZmEyrbjrTFUVEspRrVfSxe LemXodz2I2YpIFXnHavaEheqMhtUGmbBgr/ArM9elY9KnMficgk8FZju5HhQJa8J FasMHUj/HpwnOaWKJAKcf6ytKmuVjHmaDdwuunctWAXpBS8HRhZyJljuL/6fsMaI 5mim/OI3sZMs+4XdNElhpqt2lKLxBnzucXcUFHBuJVvOagGIVJd+tzb9g2MqUdAq 0fQQvoyK8jMj3dtP0caOwdZ2fvUnVS0DGaxHM+/2mXx7xAvpSO1fai6reNIjTqVc gWhBsATRHsBQV2SwMZc74gh4uZtfKIELIsMcBo9ZlkTSWLohEtYmxBM8D9f/uosW dkbv8SHpRQneqiYHevXML3sPWcHtWP0AA8uWhIsZhLtN6Qku3gilgy+rS1RFBAE8 3gewPZZRDKSRknmkd4VVziwsZb5IJ/OUAlWa1RySmhPhgzoFR9kAdLeabiO+LDvZ o/h+8EOs7zItvaTVYbRQFVty/aBc8bxs0LRvw0xCqLaJ3TjkmSQR562iIjJoCNbO zN3xggfIIjrELffv5v+JftIqKFZf1/cxZ0/jSTJDJgE0No0owPw= =UYRx -----END PGP SIGNATURE----- --ox7mrspkfbo62bjc-- From owner-svn-ports-head@freebsd.org Mon Jun 18 20:52:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 855EE10218AC; Mon, 18 Jun 2018 20:52:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D12A72E11; Mon, 18 Jun 2018 20:52:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0E60715BF; Mon, 18 Jun 2018 20:52:33 +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 w5IKqWot075016; Mon, 18 Jun 2018 20:52:32 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IKqWHY075014; Mon, 18 Jun 2018 20:52:32 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806182052.w5IKqWHY075014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 18 Jun 2018 20:52:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472715 - head/databases/pecl-mongodb X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/databases/pecl-mongodb X-SVN-Commit-Revision: 472715 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:52:33 -0000 Author: pi Date: Mon Jun 18 20:52:32 2018 New Revision: 472715 URL: https://svnweb.freebsd.org/changeset/ports/472715 Log: databases/pecl-mongodb: update 1.4.3 -> 1.4.4 Relnotes: https://pecl.php.net/package-changelog.php?package=mongodb Modified: head/databases/pecl-mongodb/Makefile head/databases/pecl-mongodb/distinfo Modified: head/databases/pecl-mongodb/Makefile ============================================================================== --- head/databases/pecl-mongodb/Makefile Mon Jun 18 20:22:13 2018 (r472714) +++ head/databases/pecl-mongodb/Makefile Mon Jun 18 20:52:32 2018 (r472715) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mongodb -PORTVERSION= 1.4.3 +PORTVERSION= 1.4.4 CATEGORIES= databases pear MAINTAINER= pi@FreeBSD.org Modified: head/databases/pecl-mongodb/distinfo ============================================================================== --- head/databases/pecl-mongodb/distinfo Mon Jun 18 20:22:13 2018 (r472714) +++ head/databases/pecl-mongodb/distinfo Mon Jun 18 20:52:32 2018 (r472715) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527776411 -SHA256 (PECL/mongodb-1.4.3.tgz) = 633485d2dd3f608143d0716f7ebf352a32d94b16eb7947a2bb851b29bad3e912 -SIZE (PECL/mongodb-1.4.3.tgz) = 1042883 +TIMESTAMP = 1529354859 +SHA256 (PECL/mongodb-1.4.4.tgz) = 13acc8dbc08ecb18689e021f89f74ec3a99fe2298322bba8a230f9f516c1b9eb +SIZE (PECL/mongodb-1.4.4.tgz) = 1043458 From owner-svn-ports-head@freebsd.org Mon Jun 18 20:56:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EEC951021B44; Mon, 18 Jun 2018 20:56:29 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A082F72FA4; Mon, 18 Jun 2018 20:56:29 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D38C15C6; Mon, 18 Jun 2018 20:56:29 +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 w5IKuTfT075313; Mon, 18 Jun 2018 20:56:29 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IKuTer075311; Mon, 18 Jun 2018 20:56:29 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806182056.w5IKuTer075311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 18 Jun 2018 20:56:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472716 - head/devel/py-ruamel.yaml X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/devel/py-ruamel.yaml X-SVN-Commit-Revision: 472716 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 20:56:30 -0000 Author: pi Date: Mon Jun 18 20:56:28 2018 New Revision: 472716 URL: https://svnweb.freebsd.org/changeset/ports/472716 Log: devel/py-ruamel.yaml: update 0.15.37 -> 0.15.40 Relnotes: https://bitbucket.org/ruamel/yaml Modified: head/devel/py-ruamel.yaml/Makefile head/devel/py-ruamel.yaml/distinfo Modified: head/devel/py-ruamel.yaml/Makefile ============================================================================== --- head/devel/py-ruamel.yaml/Makefile Mon Jun 18 20:52:32 2018 (r472715) +++ head/devel/py-ruamel.yaml/Makefile Mon Jun 18 20:56:28 2018 (r472716) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ruamel.yaml -DISTVERSION= 0.15.37 +DISTVERSION= 0.15.40 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-ruamel.yaml/distinfo ============================================================================== --- head/devel/py-ruamel.yaml/distinfo Mon Jun 18 20:52:32 2018 (r472715) +++ head/devel/py-ruamel.yaml/distinfo Mon Jun 18 20:56:28 2018 (r472716) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522277310 -SHA256 (ruamel.yaml-0.15.37.tar.gz) = 509842d96fb194f79b57483b76429f8956d8f7ade3cb49d1e5aeb5c5e9ef4918 -SIZE (ruamel.yaml-0.15.37.tar.gz) = 280165 +TIMESTAMP = 1529355220 +SHA256 (ruamel.yaml-0.15.40.tar.gz) = 974e91b23273eb6c32aef979a32c20ed0f6c6e4d9c1523611ea10c5fda9b8928 +SIZE (ruamel.yaml-0.15.40.tar.gz) = 278766 From owner-svn-ports-head@freebsd.org Mon Jun 18 21:10:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03E2910225A5; Mon, 18 Jun 2018 21:10:04 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A917873760; Mon, 18 Jun 2018 21:10:03 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 05F93165D6; Mon, 18 Jun 2018 21:10:02 +0000 (UTC) (envelope-from mat@FreeBSD.org) Date: Mon, 18 Jun 2018 23:09:57 +0200 From: Mathieu Arnold To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472636 - in head/science: . py-PyQuante Message-ID: <20180618210957.wdiisof4quyrtat7@atuin.in.mat.cc> References: <201806172124.w5HLO3oO047389@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="z2qfrjo32dfhiv6y" Content-Disposition: inline In-Reply-To: <201806172124.w5HLO3oO047389@repo.freebsd.org> User-Agent: NeoMutt/20180323 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 21:10:04 -0000 --z2qfrjo32dfhiv6y Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jun 17, 2018 at 09:24:03PM +0000, Yuri Victorovich wrote: > +USES=3D python:2.7- Python 2.6 was removed 4.5 years ago, please do not use `2.7-`, use `2.7`. --=20 Mathieu Arnold --z2qfrjo32dfhiv6y Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAlsoH6VfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkhfzw//eTyXg/ZozSknm0b/u99+I8twxtW+x2OOs6QHUohttgjm128U6acmegiZ hO0Sz85+hiExtMXb4k0TvfSp83K65qb5v2E7dVn6r0CMm1HTjjzdi4hEWrt9OVwe uFQlgJFoMkm2WC6BVx38oQkYw22rCNP2g22tPksMrOjg2AFdT5Q05scMY+GTYjNI kH3cA4BY2pMcS02dK8pOKsBEI4gSK7+4xsH49gDc3pYtLM1tUVzmv+1lCLv3nQEj DFN+69mO/zZNClYLa8OWeB4ZC6h1QbmXyDs4GcxJHmQpBWWNqPh88B9cDRYUPmmh 4S/GZFW3WursYt7jE+PkV1zD6iKtQe/OCBf/z67xzwz9M4GljCyWGjViQz/7JDwn VrNrvknt+h5ASIylSmjMHdp/9wD+aXNN9e3M9qP61bZ0koTWjGz4VLWLZdJn/76k d+1fUUAOwlXvPwd0iZlmvREJGYhqovfW32YbWtMgESSneZxKIkYWQQEHnZ8XWK/6 iNA9v5FpG+OM9JMDGH8ydU5VG0fSGvCnfxiDmqr2qB/qHoyxWN5p9YUEN6tXxY1K WQTI5lQfaYGAsQ7w4P552/KQgZ/C//mc23PC5aYShMifxu978FSfXywh5xldSXwj 59HLeIItcTonllqNrIKsIzAGd9ESwVdvHMARyGM1J4xGFheRTTg= =/HV2 -----END PGP SIGNATURE----- --z2qfrjo32dfhiv6y-- From owner-svn-ports-head@freebsd.org Mon Jun 18 21:26:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A7A210233B7; Mon, 18 Jun 2018 21:26:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 18A2E74436; Mon, 18 Jun 2018 21:26:38 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8A1B1ABB; Mon, 18 Jun 2018 21:26:37 +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 w5ILQbTO090306; Mon, 18 Jun 2018 21:26:37 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ILQbX8090304; Mon, 18 Jun 2018 21:26:37 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806182126.w5ILQbX8090304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 21:26:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472717 - in head/sysutils: . u-boot-riotboard X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: . u-boot-riotboard X-SVN-Commit-Revision: 472717 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 21:26:38 -0000 Author: linimon Date: Mon Jun 18 21:26:36 2018 New Revision: 472717 URL: https://svnweb.freebsd.org/changeset/ports/472717 Log: Add new port for the u-boot code for the RIoTboard. Submitted by: manu Differential Revision: D15885 Added: head/sysutils/u-boot-riotboard/ head/sysutils/u-boot-riotboard/Makefile (contents, props changed) head/sysutils/u-boot-riotboard/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jun 18 20:56:28 2018 (r472716) +++ head/sysutils/Makefile Mon Jun 18 21:26:36 2018 (r472717) @@ -1309,6 +1309,7 @@ SUBDIR += u-boot-pandaboard SUBDIR += u-boot-pcduino3 SUBDIR += u-boot-pine64 + SUBDIR += u-boot-riotboard SUBDIR += u-boot-rpi SUBDIR += u-boot-rpi2 SUBDIR += u-boot-rpi3 Added: head/sysutils/u-boot-riotboard/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-riotboard/Makefile Mon Jun 18 21:26:36 2018 (r472717) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= riotboard +BOARD_CONFIG= riotboard_defconfig +FAMILY= riotboard + +UBOOT_PLIST= u-boot.imx + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-riotboard/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-riotboard/pkg-descr Mon Jun 18 21:26:36 2018 (r472717) @@ -0,0 +1,13 @@ +U-Boot loader for RIoTboard + +To install this bootloader on an sdcard just do : +dd if=$LOCALBASE/share/u-boot/u-boot-riotboard/u-boot.imx of=/path/to/sdcarddevice bs=1k seek=1 conv=sync + +This version is patched so that: + * API features is enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included + +For information about running FreeBSD on IMX6 boards, see +https://wiki.freebsd.org/FreeBSD/arm/imx6 + +WWW: http://www.denx.de/wiki/U-Boot From owner-svn-ports-head@freebsd.org Mon Jun 18 21:30:41 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 082411023731; Mon, 18 Jun 2018 21:30:41 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC95774796; Mon, 18 Jun 2018 21:30:40 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D9B81AD7; Mon, 18 Jun 2018 21:30:40 +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 w5ILUeSr090760; Mon, 18 Jun 2018 21:30:40 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ILUdPU090750; Mon, 18 Jun 2018 21:30:39 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201806182130.w5ILUdPU090750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Mon, 18 Jun 2018 21:30:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472718 - in head: devel/llvm-cheri emulators/qemu-cheri X-SVN-Group: ports-head X-SVN-Commit-Author: brooks X-SVN-Commit-Paths: in head: devel/llvm-cheri emulators/qemu-cheri X-SVN-Commit-Revision: 472718 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 21:30:41 -0000 Author: brooks Date: Mon Jun 18 21:30:38 2018 New Revision: 472718 URL: https://svnweb.freebsd.org/changeset/ports/472718 Log: Update CHERI LLVM and QEMU to new snapshots. Committed together as code generated by the new LLVM requires updated (virtual) hardware. Sponsored by: DARPA, AFRL Modified: head/devel/llvm-cheri/Makefile head/devel/llvm-cheri/Makefile.snapshot head/devel/llvm-cheri/distinfo head/devel/llvm-cheri/pkg-plist head/emulators/qemu-cheri/Makefile head/emulators/qemu-cheri/Makefile.snapshot head/emulators/qemu-cheri/distinfo Modified: head/devel/llvm-cheri/Makefile ============================================================================== --- head/devel/llvm-cheri/Makefile Mon Jun 18 21:26:36 2018 (r472717) +++ head/devel/llvm-cheri/Makefile Mon Jun 18 21:30:38 2018 (r472718) @@ -2,7 +2,7 @@ PORTNAME= llvm PORTVERSION= ${LLVM_MAJOR}.d${SNAPDATE} -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= devel lang PKGNAMESUFFIX= ${LLVM_SUFFIX} Modified: head/devel/llvm-cheri/Makefile.snapshot ============================================================================== --- head/devel/llvm-cheri/Makefile.snapshot Mon Jun 18 21:26:36 2018 (r472717) +++ head/devel/llvm-cheri/Makefile.snapshot Mon Jun 18 21:30:38 2018 (r472718) @@ -6,9 +6,9 @@ # LLVM_MAJOR= 7.0 LLVM_RELEASE= ${LLVM_MAJOR}.0 -SNAPDATE= 20180205 +SNAPDATE= 20180615 -LLVM_COMMIT= a96483ca03f032c31dde64c9d013782affcd2d55 -CLANG_COMMIT= 88ee4bd7313a6b1b0a7b389fa7e5d4c796409b10 -LLD_COMMIT= 8bbb95977e02dd1a73a67c8974d97ed497a2a865 +LLVM_COMMIT= 19d36abc279ec90d9a8c03ffd2fae608bed6f733 +CLANG_COMMIT= 1ab4b309c5aed3be3542b6263a8f2d5aa5f7d7e7 +LLD_COMMIT= f105558e15f09f1957e27073229167552fb94a96 LLDB_COMMIT= 7ee5905d0109a13d543a127a9cda7c280c8103c8 Modified: head/devel/llvm-cheri/distinfo ============================================================================== --- head/devel/llvm-cheri/distinfo Mon Jun 18 21:26:36 2018 (r472717) +++ head/devel/llvm-cheri/distinfo Mon Jun 18 21:30:38 2018 (r472718) @@ -1,7 +1,7 @@ -TIMESTAMP = 1517850799 -SHA256 (CTSRD-CHERI-llvm-7.0.d20180205-a96483ca03f032c31dde64c9d013782affcd2d55_GH0.tar.gz) = 3f685131ad03c8c3486f6ccb37a9f1f65f88dcee6ccdb7d7a98b10ea33aee9ec -SIZE (CTSRD-CHERI-llvm-7.0.d20180205-a96483ca03f032c31dde64c9d013782affcd2d55_GH0.tar.gz) = 38650902 -SHA256 (CTSRD-CHERI-clang-88ee4bd7313a6b1b0a7b389fa7e5d4c796409b10_GH0.tar.gz) = 135c4a540024facd60d1008d68add7f8dbb077acfd61d257c867fb368e6e54e0 -SIZE (CTSRD-CHERI-clang-88ee4bd7313a6b1b0a7b389fa7e5d4c796409b10_GH0.tar.gz) = 17024145 -SHA256 (CTSRD-CHERI-lld-8bbb95977e02dd1a73a67c8974d97ed497a2a865_GH0.tar.gz) = e20b67f20ad1d26878e73a08358eee8f87334c301162be3f576d7206102f1ee2 -SIZE (CTSRD-CHERI-lld-8bbb95977e02dd1a73a67c8974d97ed497a2a865_GH0.tar.gz) = 4010874 +TIMESTAMP = 1529097632 +SHA256 (CTSRD-CHERI-llvm-7.0.d20180615-19d36abc279ec90d9a8c03ffd2fae608bed6f733_GH0.tar.gz) = 3d79c7d21a7e94fca7dfc371506a7535d628b762bce56368ca37f407d68e8eb3 +SIZE (CTSRD-CHERI-llvm-7.0.d20180615-19d36abc279ec90d9a8c03ffd2fae608bed6f733_GH0.tar.gz) = 38939262 +SHA256 (CTSRD-CHERI-clang-1ab4b309c5aed3be3542b6263a8f2d5aa5f7d7e7_GH0.tar.gz) = 580737cbeb988aac16720d1564e364f727df86079a39f57674418eb49b69715f +SIZE (CTSRD-CHERI-clang-1ab4b309c5aed3be3542b6263a8f2d5aa5f7d7e7_GH0.tar.gz) = 17132975 +SHA256 (CTSRD-CHERI-lld-f105558e15f09f1957e27073229167552fb94a96_GH0.tar.gz) = 8a267f4733d4114eb7f0530f219750410069da260cda6c01321ffc80d01617ae +SIZE (CTSRD-CHERI-lld-f105558e15f09f1957e27073229167552fb94a96_GH0.tar.gz) = 4050182 Modified: head/devel/llvm-cheri/pkg-plist ============================================================================== --- head/devel/llvm-cheri/pkg-plist Mon Jun 18 21:26:36 2018 (r472717) +++ head/devel/llvm-cheri/pkg-plist Mon Jun 18 21:30:38 2018 (r472718) @@ -554,6 +554,7 @@ llvm%%LLVM_SUFFIX%%/bin/yaml2obj %%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Sema/SemaLambda.h %%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Sema/Template.h %%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Sema/TemplateDeduction.h +%%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Sema/TemplateInstCallback.h %%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Sema/TypoCorrection.h %%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Sema/Weak.h %%CLANG%%llvm%%LLVM_SUFFIX%%/include/clang/Serialization/ASTBitCodes.h @@ -1148,6 +1149,7 @@ llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/CodeView/Ty llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DIContext.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h +llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFAttribute.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFContext.h @@ -1162,6 +1164,7 @@ llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARF llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h +llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFDie.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFExpression.h llvm%%LLVM_SUFFIX%%/include/llvm/DebugInfo/DWARF/DWARFFormValue.h @@ -1445,6 +1448,7 @@ llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCAsmInfoDarwin.h llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCAsmInfoELF.h llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCAsmInfoWasm.h llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCAsmLayout.h +llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCAsmMacro.h llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCAssembler.h llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCCodeEmitter.h llvm%%LLVM_SUFFIX%%/include/llvm/MC/MCCodePadder.h @@ -1930,6 +1934,7 @@ llvm%%LLVM_SUFFIX%%/lib/LLVMHello.so %%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/bmiintrin.h %%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/cetintrin.h %%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/cheri.h +%%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/cheri_init_globals.h %%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/clflushoptintrin.h %%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/clwbintrin.h %%CLANG%%llvm%%LLVM_SUFFIX%%/lib/clang/%%LLVM_RELEASE%%.0/include/clzerointrin.h Modified: head/emulators/qemu-cheri/Makefile ============================================================================== --- head/emulators/qemu-cheri/Makefile Mon Jun 18 21:26:36 2018 (r472717) +++ head/emulators/qemu-cheri/Makefile Mon Jun 18 21:30:38 2018 (r472718) @@ -9,7 +9,8 @@ MAINTAINER= brooks@FreeBSD.org COMMENT?= QEMU emulator with CHERI CPU support # XXX: disabling gnutls doesn't work so depend on it to avoid breakage. -LIB_DEPENDS= libgnutls.so:security/gnutls \ +LIB_DEPENDS= libcapstone.so:devel/capstone3 \ + libgnutls.so:security/gnutls \ libnettle.so:security/nettle RUN_DEPENDS= qemu-system-i386:emulators/qemu @@ -18,6 +19,7 @@ LICENSE= GPLv2 USE_GITHUB= yes GH_ACCOUNT= CTSRD-CHERI GH_TAGNAME= ${QEMU_COMMIT} +GH_TUPLE= qemu:keycodemapdb:6b3d716:qemu/ui/keycodemapdb HAS_CONFIGURE= yes USES= gettext-runtime gmake libtool makeinfo pkgconfig python:2.7,build @@ -31,6 +33,7 @@ BROKEN_FreeBSD_10= Default toolchain lacks support for CONFIGURE_ARGS+= \ --target-list=cheri128-softmmu,cheri128magic-softmmu,cheri256-softmmu \ --disable-curl \ + --disable-git-update \ --disable-gtk \ --disable-libssh2 \ --disable-linux-user \ @@ -42,6 +45,7 @@ CONFIGURE_ARGS+= \ --disable-xen \ --extra-cflags="-g ${EXTRA_CFLAGS}" \ --localstatedir=/var +EXTRA_CFLAGS= -DCHERI_UNALIGNED QEMU_SYSTEM_CHERI?= qemu-system${PKGNAMESUFFIX} PLIST= /dev/null Modified: head/emulators/qemu-cheri/Makefile.snapshot ============================================================================== --- head/emulators/qemu-cheri/Makefile.snapshot Mon Jun 18 21:26:36 2018 (r472717) +++ head/emulators/qemu-cheri/Makefile.snapshot Mon Jun 18 21:30:38 2018 (r472718) @@ -4,6 +4,6 @@ # # Generated by: files/gen-Makefile.snapshot.sh. # -SNAPDATE= 20180418 +SNAPDATE= 20180614 -QEMU_COMMIT= 6d92b091e7a39ffb793e8ceecb8aac86984a27c1 +QEMU_COMMIT= e47a647e025e69212e6563b2b307a837677b9944 Modified: head/emulators/qemu-cheri/distinfo ============================================================================== --- head/emulators/qemu-cheri/distinfo Mon Jun 18 21:26:36 2018 (r472717) +++ head/emulators/qemu-cheri/distinfo Mon Jun 18 21:30:38 2018 (r472718) @@ -1,3 +1,9 @@ -TIMESTAMP = 1524157469 -SHA256 (CTSRD-CHERI-qemu-0.d20180418-6d92b091e7a39ffb793e8ceecb8aac86984a27c1_GH0.tar.gz) = 573e966fc9d344a7bab0fe3be4b2cc5804916c5d6cb13277395ea616cc015a00 -SIZE (CTSRD-CHERI-qemu-0.d20180418-6d92b091e7a39ffb793e8ceecb8aac86984a27c1_GH0.tar.gz) = 14514297 +TIMESTAMP = 1529085999 +SHA256 (CTSRD-CHERI-qemu-0.d20180614-e47a647e025e69212e6563b2b307a837677b9944_GH0.tar.gz) = d2a5e68c56e10107e212a2f9b7ae2c7c4439d562e19f3cdb54d01e4778526899 +SIZE (CTSRD-CHERI-qemu-0.d20180614-e47a647e025e69212e6563b2b307a837677b9944_GH0.tar.gz) = 16136332 +SHA256 (qemu-capstone-22ead3e_GH0.tar.gz) = c8c73aa3f38d486a1a03f117611d5a82530fd33a2ef6c343256c3a6fac9ebd04 +SIZE (qemu-capstone-22ead3e_GH0.tar.gz) = 2883987 +SHA256 (qemu-dtc-e543880_GH0.tar.gz) = 84878bdcfca30db1ad32fd60ddfd01e08fc00ff0c042d2a758e7e90c08de0b5e +SIZE (qemu-dtc-e543880_GH0.tar.gz) = 176916 +SHA256 (qemu-keycodemapdb-6b3d716_GH0.tar.gz) = c9d3412510aac999865d01aaa14b1fa8dc0385db55c5cf6c4d95d160bd0eaee9 +SIZE (qemu-keycodemapdb-6b3d716_GH0.tar.gz) = 47905 From owner-svn-ports-head@freebsd.org Mon Jun 18 21:45:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02B8010244C0; Mon, 18 Jun 2018 21:45:44 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC3FF753B0; Mon, 18 Jun 2018 21:45:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8EF111E2D; Mon, 18 Jun 2018 21:45:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5ILjhYo000883; Mon, 18 Jun 2018 21:45:43 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ILjh2Y000882; Mon, 18 Jun 2018 21:45:43 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806182145.w5ILjh2Y000882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 21:45:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472719 - head/sysutils/atf-allwinner X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/sysutils/atf-allwinner X-SVN-Commit-Revision: 472719 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 21:45:44 -0000 Author: linimon Date: Mon Jun 18 21:45:43 2018 New Revision: 472719 URL: https://svnweb.freebsd.org/changeset/ports/472719 Log: Adjust license. PR: 222557 Submitted by: maintainer Modified: head/sysutils/atf-allwinner/Makefile Modified: head/sysutils/atf-allwinner/Makefile ============================================================================== --- head/sysutils/atf-allwinner/Makefile Mon Jun 18 21:30:38 2018 (r472718) +++ head/sysutils/atf-allwinner/Makefile Mon Jun 18 21:45:43 2018 (r472719) @@ -8,7 +8,9 @@ MASTER_SITES= GH MAINTAINER= manu@freebsd.org COMMENT= Arm Trusted Framework for Allwinner SoCs -LICENSE= BSD +LICENSE= BSD2CLAUSE BSD3CLAUSE GPLv2+ +LICENSE_COMB= multi +LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/license.md BUILD_DEPENDS= aarch64-none-elf-gcc:devel/aarch64-none-elf-gcc From owner-svn-ports-head@freebsd.org Mon Jun 18 22:38:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5092710028C3; Mon, 18 Jun 2018 22:38:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 06416779B0; Mon, 18 Jun 2018 22:38:09 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D829426BA; Mon, 18 Jun 2018 22:38:08 +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 w5IMc8Cq026272; Mon, 18 Jun 2018 22:38:08 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5IMc8JA026270; Mon, 18 Jun 2018 22:38:08 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806182238.w5IMc8JA026270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 18 Jun 2018 22:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472720 - in head/sysutils: . u-boot-orangepi-pc-plus X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/sysutils: . u-boot-orangepi-pc-plus X-SVN-Commit-Revision: 472720 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 22:38:09 -0000 Author: linimon Date: Mon Jun 18 22:38:07 2018 New Revision: 472720 URL: https://svnweb.freebsd.org/changeset/ports/472720 Log: Add new u-boot port customized for the Orange Pi PC Plus. PR: 227506 Submitted by: Curtis Villamizar Added: head/sysutils/u-boot-orangepi-pc-plus/ head/sysutils/u-boot-orangepi-pc-plus/Makefile (contents, props changed) head/sysutils/u-boot-orangepi-pc-plus/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jun 18 21:45:43 2018 (r472719) +++ head/sysutils/Makefile Mon Jun 18 22:38:07 2018 (r472720) @@ -1303,6 +1303,7 @@ SUBDIR += u-boot-olinuxino-lime SUBDIR += u-boot-orangepi-one SUBDIR += u-boot-orangepi-pc + SUBDIR += u-boot-orangepi-pc-plus SUBDIR += u-boot-orangepi-pc2 SUBDIR += u-boot-orangepi-plus-2e SUBDIR += u-boot-orangepi-zero Added: head/sysutils/u-boot-orangepi-pc-plus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-pc-plus/Makefile Mon Jun 18 22:38:07 2018 (r472720) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../u-boot-master + +MODEL= orangepi-pc-plus +BOARD_CONFIG= orangepi_pc_plus_defconfig +FAMILY= allwinner + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/u-boot-orangepi-pc-plus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/u-boot-orangepi-pc-plus/pkg-descr Mon Jun 18 22:38:07 2018 (r472720) @@ -0,0 +1,13 @@ +U-Boot loader for OrangePi PC Plus. + +To install this bootloader on an sdcard just do : +dd if=/usr/local/share/u-boot/u-boot-orangepi-pc-plus/u-boot-sunxi-with-spl.bin of=/path/to/sdcarddevice bs=1k seek=8 conv=notrunc,sync + +This version is patched so that: + * API features are enabled. + * A boot.scr (U-Boot script) that loads ubldr.bin and execute it is included + +For information about running FreeBSD on Allwinner boards, see +https://wiki.freebsd.org/FreeBSD/arm/Allwinner + +WWW: http://www.denx.de/wiki/U-Boot From owner-svn-ports-head@freebsd.org Mon Jun 18 23:50:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A7AA10069D8; Mon, 18 Jun 2018 23:50:23 +0000 (UTC) (envelope-from yuri@freebsd.org) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id C9F897A3AD; Mon, 18 Jun 2018 23:50:22 +0000 (UTC) (envelope-from yuri@freebsd.org) Received: from yv.noip.me (c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id w5INoKA0074469 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Mon, 18 Jun 2018 16:50:21 -0700 (PDT) (envelope-from yuri@freebsd.org) X-Authentication-Warning: shell1.rawbw.com: Host c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132] claimed to be yv.noip.me Reply-To: yuri@freebsd.org Subject: Re: svn commit: r472505 - in head/science: . py-abipy To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201806160037.w5G0bZJp066568@repo.freebsd.org> <20180618202619.4ff3ympyappfqjcq@atuin.in.mat.cc> From: Yuri Message-ID: <0e82903e-dc32-872c-8f88-199f379a804c@freebsd.org> Date: Mon, 18 Jun 2018 16:50:19 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180618202619.4ff3ympyappfqjcq@atuin.in.mat.cc> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2018 23:50:23 -0000 On 06/18/18 13:26, Mathieu Arnold wrote: > I'm replying to one of those ports you add that nobody will probably > ever need. Could you at least do them right, like, using PY_FLAVOR in > dependency lines? You are wrong that nobody is going to use it. This port is used together with science/abinit. And Abinit is a major software for performig DFT (Density Functional Theory) computations to compute quantum electron densities in molecules. It is used in quantum chemistry, and DFT comes up in at least 10% of chemistry papers now. Walter Kohn (https://en.wikipedia.org/wiki/Walter_Kohn) got Nobel Prize for DFT in 1998. PY_FLAVOR vs. FLAVOR: you said before that you was undecided and didn't think about it. If this has changed, and PY_FLAVOR is now recommended, I will use it then. Yuri From owner-svn-ports-head@freebsd.org Tue Jun 19 00:03:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44CA710075BF; Tue, 19 Jun 2018 00:03:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E7A3D7AB6C; Tue, 19 Jun 2018 00:03:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C89083917; Tue, 19 Jun 2018 00:03:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J03bnd071664; Tue, 19 Jun 2018 00:03:37 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J03bDl071663; Tue, 19 Jun 2018 00:03:37 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190003.w5J03bDl071663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 00:03:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472721 - head/science/py-netCDF4 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-netCDF4 X-SVN-Commit-Revision: 472721 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:03:38 -0000 Author: yuri Date: Tue Jun 19 00:03:37 2018 New Revision: 472721 URL: https://svnweb.freebsd.org/changeset/ports/472721 Log: science/py-netCDF4: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/science/py-netCDF4/Makefile Modified: head/science/py-netCDF4/Makefile ============================================================================== --- head/science/py-netCDF4/Makefile Mon Jun 18 22:38:07 2018 (r472720) +++ head/science/py-netCDF4/Makefile Tue Jun 19 00:03:37 2018 (r472721) @@ -3,6 +3,7 @@ PORTNAME= netCDF4 PORTVERSION= 1.3.1 +PORTREVISION= 1 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= rel CATEGORIES= science python @@ -22,7 +23,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= DOCS EXAMPLES USES= python -USE_PYTHON= autoplist distutils cython +USE_PYTHON= autoplist concurrent distutils cython DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} From owner-svn-ports-head@freebsd.org Tue Jun 19 00:10:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CDC210079B1; Tue, 19 Jun 2018 00:10:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B2C67AD33; Tue, 19 Jun 2018 00:10:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 01A5F391D; Tue, 19 Jun 2018 00:10:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J0AGVG072059; Tue, 19 Jun 2018 00:10:16 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0AGQN072058; Tue, 19 Jun 2018 00:10:16 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190010.w5J0AGQN072058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 00:10:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472722 - head/science/py-pymatgen X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-pymatgen X-SVN-Commit-Revision: 472722 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:10:17 -0000 Author: yuri Date: Tue Jun 19 00:10:16 2018 New Revision: 472722 URL: https://svnweb.freebsd.org/changeset/ports/472722 Log: science/py-pymatgen: Add USE_PYTHON=concurrent Modified: head/science/py-pymatgen/Makefile Modified: head/science/py-pymatgen/Makefile ============================================================================== --- head/science/py-pymatgen/Makefile Tue Jun 19 00:03:37 2018 (r472721) +++ head/science/py-pymatgen/Makefile Tue Jun 19 00:10:16 2018 (r472722) @@ -2,6 +2,7 @@ PORTNAME= pymatgen DISTVERSION= 2018.6.11 +PORTREVISION= 1 CATEGORIES= science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -28,6 +29,6 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist .include From owner-svn-ports-head@freebsd.org Tue Jun 19 00:29:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 817361008D3B; Tue, 19 Jun 2018 00:29:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 30B547B87A; Tue, 19 Jun 2018 00:29:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0E2E23CDC; Tue, 19 Jun 2018 00:29:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J0TGkT082170; Tue, 19 Jun 2018 00:29:16 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0TGKC082169; Tue, 19 Jun 2018 00:29:16 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806190029.w5J0TGKC082169@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 00:29:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472723 - head/textproc/xlhtml X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/textproc/xlhtml X-SVN-Commit-Revision: 472723 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:29:17 -0000 Author: swills Date: Tue Jun 19 00:29:16 2018 New Revision: 472723 URL: https://svnweb.freebsd.org/changeset/ports/472723 Log: textproc/xlhtml: Fix build when autotools is installed While here, strip binaries PR: 226080 Submitted by: Chris Hutchinson Modified: head/textproc/xlhtml/Makefile (contents, props changed) Modified: head/textproc/xlhtml/Makefile ============================================================================== --- head/textproc/xlhtml/Makefile Tue Jun 19 00:10:16 2018 (r472722) +++ head/textproc/xlhtml/Makefile Tue Jun 19 00:29:16 2018 (r472723) @@ -3,7 +3,7 @@ PORTNAME= xlhtml PORTVERSION= 0.5 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= textproc MASTER_SITES= SF/chicago/${PORTNAME}/backend @@ -17,6 +17,11 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes USES= gmake tar:tgz +# If autotools are installed in the build environment a regeneration +# of it's build files is triggered for unknown reasons. Pretend they +# are not there. +BINARY_ALIAS= aclocal=false autoheader=false automake=false makeinfo=false + OPTIONS_DEFINE= DOCS post-install-DOCS-on: @@ -26,5 +31,9 @@ post-install-DOCS-on: ${INSTALL_DATA} ChangeLog README THANKS \ ${STAGEDIR}${DOCSDIR}/${dir} .endfor + +post-build: + @${STRIP_CMD} ${WRKSRC}/xlhtml/xlhtml + @${STRIP_CMD} ${WRKSRC}/ppthtml/ppthtml .include From owner-svn-ports-head@freebsd.org Tue Jun 19 00:37:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E06E31009509; Tue, 19 Jun 2018 00:37:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 930657BDED; Tue, 19 Jun 2018 00:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 711913E91; Tue, 19 Jun 2018 00:37:07 +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 w5J0b7Dk087156; Tue, 19 Jun 2018 00:37:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0b7HY087155; Tue, 19 Jun 2018 00:37:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806190037.w5J0b7HY087155@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Jun 2018 00:37:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472724 - head/emulators/citra X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/citra X-SVN-Commit-Revision: 472724 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:37:08 -0000 Author: jbeich Date: Tue Jun 19 00:37:06 2018 New Revision: 472724 URL: https://svnweb.freebsd.org/changeset/ports/472724 Log: emulators/citra: update to s20180617 Changes: https://github.com/citra-emu/citra/compare/cf9bfe069...574824a26 Modified: head/emulators/citra/Makefile (contents, props changed) head/emulators/citra/distinfo (contents, props changed) Modified: head/emulators/citra/Makefile ============================================================================== --- head/emulators/citra/Makefile Tue Jun 19 00:29:16 2018 (r472723) +++ head/emulators/citra/Makefile Tue Jun 19 00:37:06 2018 (r472724) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180609 +PORTVERSION= s20180617 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= cf9bfe069 +GH_TAGNAME= 574824a26 GH_TUPLE= citra-emu:ext-libressl-portable:cbb1dca:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-2-g4b350a3:dynarmic/externals/dynarmic \ Modified: head/emulators/citra/distinfo ============================================================================== --- head/emulators/citra/distinfo Tue Jun 19 00:29:16 2018 (r472723) +++ head/emulators/citra/distinfo Tue Jun 19 00:37:06 2018 (r472724) @@ -1,6 +1,6 @@ -TIMESTAMP = 1528591085 -SHA256 (citra-emu-citra-s20180609-cf9bfe069_GH0.tar.gz) = 544c367ce8af0afa1633e14deafc1137c9add582891e1ae292f3a0917020bfad -SIZE (citra-emu-citra-s20180609-cf9bfe069_GH0.tar.gz) = 2219932 +TIMESTAMP = 1529291115 +SHA256 (citra-emu-citra-s20180617-574824a26_GH0.tar.gz) = 00ac2fd58ed3cf778f5cb00ccb37cb7613ce4374a41c02c44596adc68b4b1dd3 +SIZE (citra-emu-citra-s20180617-574824a26_GH0.tar.gz) = 2230304 SHA256 (citra-emu-ext-libressl-portable-cbb1dca_GH0.tar.gz) = f3741a3bb480d9f8a817f032f59d1908e659620cbb93c0fe8289cfb46d2ab89c SIZE (citra-emu-ext-libressl-portable-cbb1dca_GH0.tar.gz) = 1761962 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-head@freebsd.org Tue Jun 19 00:37:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 013441009549; Tue, 19 Jun 2018 00:37:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ABBD97BED6; Tue, 19 Jun 2018 00:37:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D99E3E92; Tue, 19 Jun 2018 00:37:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J0bLnL087291; Tue, 19 Jun 2018 00:37:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0bL2w087289; Tue, 19 Jun 2018 00:37:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806190037.w5J0bL2w087289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Jun 2018 00:37:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472725 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 472725 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:37:22 -0000 Author: jbeich Date: Tue Jun 19 00:37:20 2018 New Revision: 472725 URL: https://svnweb.freebsd.org/changeset/ports/472725 Log: emulators/rpcs3: update to 0.0.5.510 Changes: https://github.com/RPCS3/rpcs3/compare/903da117e...392a4bdc0 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 19 00:37:06 2018 (r472724) +++ head/emulators/rpcs3/Makefile Tue Jun 19 00:37:20 2018 (r472725) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-493 -DISTVERSIONSUFFIX= -g903da117e +DISTVERSION= 0.0.5-510 +DISTVERSIONSUFFIX= -g392a4bdc0 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Tue Jun 19 00:37:06 2018 (r472724) +++ head/emulators/rpcs3/distinfo Tue Jun 19 00:37:20 2018 (r472725) @@ -1,6 +1,6 @@ -TIMESTAMP = 1529012524 -SHA256 (RPCS3-rpcs3-v0.0.5-493-g903da117e_GH0.tar.gz) = e68af0aabb3a21103670213184d85fdf7d73064783640b27524ae61e6f6f46af -SIZE (RPCS3-rpcs3-v0.0.5-493-g903da117e_GH0.tar.gz) = 4963412 +TIMESTAMP = 1529350466 +SHA256 (RPCS3-rpcs3-v0.0.5-510-g392a4bdc0_GH0.tar.gz) = f024cb80b48087939844382ca98e2831a80620d2469441d7ca08215759b1c64f +SIZE (RPCS3-rpcs3-v0.0.5-510-g392a4bdc0_GH0.tar.gz) = 4970393 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-llvm-17ec6d78a73_GH0.tar.gz) = 4567d1d946429ce55d6c0480fad3b82874aad22c2b1928ac4d4ba5ba40338604 From owner-svn-ports-head@freebsd.org Tue Jun 19 00:37:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7FF41009594; Tue, 19 Jun 2018 00:37:32 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7667D7BFB6; Tue, 19 Jun 2018 00:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 57A5E3E93; Tue, 19 Jun 2018 00:37: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 w5J0bWtv087453; Tue, 19 Jun 2018 00:37:32 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0bVMl087446; Tue, 19 Jun 2018 00:37:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806190037.w5J0bVMl087446@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Jun 2018 00:37:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472726 - in head/www/waterfox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www/waterfox: . files X-SVN-Commit-Revision: 472726 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:37:33 -0000 Author: jbeich Date: Tue Jun 19 00:37:31 2018 New Revision: 472726 URL: https://svnweb.freebsd.org/changeset/ports/472726 Log: www/waterfox: update to 56.2.1.19 - Apply some FF61 fixes Changes: https://github.com/MrAlex94/Waterfox/compare/79affc3bb939f...ff88ad0b627dc Added: head/www/waterfox/files/patch-bug1464039 (contents, props changed) head/www/waterfox/files/patch-bug1464063 (contents, props changed) Modified: head/www/waterfox/Makefile (contents, props changed) head/www/waterfox/distinfo (contents, props changed) Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Tue Jun 19 00:37:20 2018 (r472725) +++ head/www/waterfox/Makefile Tue Jun 19 00:37:31 2018 (r472726) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= waterfox -DISTVERSION= 56.2.0-53 -DISTVERSIONSUFFIX= -g79affc3bb939f +DISTVERSION= 56.2.1-19 +DISTVERSIONSUFFIX= -gff88ad0b627dc CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Modified: head/www/waterfox/distinfo ============================================================================== --- head/www/waterfox/distinfo Tue Jun 19 00:37:20 2018 (r472725) +++ head/www/waterfox/distinfo Tue Jun 19 00:37:31 2018 (r472726) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527689655 -SHA256 (MrAlex94-Waterfox-56.2.0-53-g79affc3bb939f_GH0.tar.gz) = c5c8ffa4704c122905bef92a8df78d0ca957b0f231c15f8b2dd6bd6b6ae0a3c1 -SIZE (MrAlex94-Waterfox-56.2.0-53-g79affc3bb939f_GH0.tar.gz) = 395135433 +TIMESTAMP = 1529323760 +SHA256 (MrAlex94-Waterfox-56.2.1-19-gff88ad0b627dc_GH0.tar.gz) = f94cb6a907e287fd599cbd57dd2cabc0dd9a4747dd2ec38600db7709dcd1b04b +SIZE (MrAlex94-Waterfox-56.2.1-19-gff88ad0b627dc_GH0.tar.gz) = 395126403 Added: head/www/waterfox/files/patch-bug1464039 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1464039 Tue Jun 19 00:37:31 2018 (r472726) @@ -0,0 +1,27 @@ +commit 0a234825c39a +Author: Nicolas Silva +Date: Fri Jun 15 14:01:07 2018 -0700 + + Bug 1464039 - Reject some invalid transforms in qcms. r=mwoodrow, a=RyanVM + + --HG-- + extra : source : dfcc5301e87235818394a46f80dc1c164c2ca4b3 +--- + gfx/qcms/chain.c | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git gfx/qcms/chain.c gfx/qcms/chain.c +index e382fbe001422..2b0e707c443c4 100644 +--- gfx/qcms/chain.c ++++ gfx/qcms/chain.c +@@ -972,6 +972,10 @@ static float* qcms_modular_transform_data(struct qcms_modular_transform *transfo + assert(0 && "Unsupported transform module"); + return NULL; + } ++ if (transform->grid_size <= 0) { ++ assert(0 && "Invalid transform"); ++ return NULL; ++ } + transform->transform_module_fn(transform,src,dest,len); + dest = src; + src = new_src; Added: head/www/waterfox/files/patch-bug1464063 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1464063 Tue Jun 19 00:37:31 2018 (r472726) @@ -0,0 +1,135 @@ +commit ce24f85311af +Author: Nils Ohlmeier [:drno] +Date: Wed Jun 13 14:29:20 2018 -0700 + + Bug 1464063 - Remove sdp_getchoosetok. r=bwc, a=RyanVM + + --HG-- + extra : source : 87163f9d6bc7670d074512cf96062ea01193ffb2 +--- + media/webrtc/signaling/src/sdp/sipcc/sdp_private.h | 2 - + media/webrtc/signaling/src/sdp/sipcc/sdp_token.c | 16 ++---- + media/webrtc/signaling/src/sdp/sipcc/sdp_utils.c | 63 ---------------------- + 3 files changed, 5 insertions(+), 76 deletions(-) + +diff --git media/webrtc/signaling/src/sdp/sipcc/sdp_private.h media/webrtc/signaling/src/sdp/sipcc/sdp_private.h +index a98f4b119f693..3459b0c0eb48e 100644 +--- media/webrtc/signaling/src/sdp/sipcc/sdp_private.h ++++ media/webrtc/signaling/src/sdp/sipcc/sdp_private.h +@@ -347,8 +347,6 @@ extern uint32_t sdp_getnextnumtok(const char *str, const char **str_end, + extern uint32_t sdp_getnextnumtok_or_null(const char *str, const char **str_end, + const char *delim, tinybool *null_ind, + sdp_result_e *result); +-extern tinybool sdp_getchoosetok(const char *str, const char **str_end, +- const char *delim, sdp_result_e *result); + + extern + tinybool verify_sdescriptions_mki(char *buf, char *mkiVal, uint16_t *mkiLen); +diff --git media/webrtc/signaling/src/sdp/sipcc/sdp_token.c media/webrtc/signaling/src/sdp/sipcc/sdp_token.c +index b4ad1beee3f70..54c38f08cdac0 100644 +--- media/webrtc/signaling/src/sdp/sipcc/sdp_token.c ++++ media/webrtc/signaling/src/sdp/sipcc/sdp_token.c +@@ -1162,15 +1162,11 @@ sdp_result_e sdp_parse_media (sdp_t *sdp_p, uint16_t level, const char *ptr) + } + port_ptr = port; + for (i=0; i < SDP_MAX_PORT_PARAMS; i++) { +- if (sdp_getchoosetok(port_ptr, &port_ptr, "/ \t", &result) == TRUE) { +- num[i] = SDP_CHOOSE_PARAM; +- } else { +- num[i] = sdp_getnextnumtok(port_ptr, (const char **)&port_ptr, +- "/ \t", &result); +- if (result != SDP_SUCCESS) { +- break; +- } +- } ++ num[i] = sdp_getnextnumtok(port_ptr, (const char **)&port_ptr, ++ "/ \t", &result); ++ if (result != SDP_SUCCESS) { ++ break; ++ } + num_port_params++; + } + +@@ -1401,8 +1397,6 @@ sdp_result_e sdp_parse_media (sdp_t *sdp_p, uint16_t level, const char *ptr) + return (SDP_INVALID_PARAMETER); + } + mca_p->sctp_fmt = SDP_SCTP_MEDIA_FMT_WEBRTC_DATACHANNEL; +- } else if (sdp_getchoosetok(port_ptr, &port_ptr, "/ \t", &result)) { +- sctp_port = SDP_CHOOSE_PARAM; + } else { + sctp_port = sdp_getnextnumtok(port_ptr, (const char **)&port_ptr, + "/ \t", &result); +diff --git media/webrtc/signaling/src/sdp/sipcc/sdp_utils.c media/webrtc/signaling/src/sdp/sipcc/sdp_utils.c +index e4f1b2eaf0c75..4d46115574dc9 100644 +--- media/webrtc/signaling/src/sdp/sipcc/sdp_utils.c ++++ media/webrtc/signaling/src/sdp/sipcc/sdp_utils.c +@@ -432,69 +432,6 @@ uint32_t sdp_getnextnumtok (const char *str, const char **str_end, + } + + +-/* See if the next token in a string is the choose character. The delim +- * characters are passed in as a param. The check also will not go past +- * a new line char or the end of the string. Skip any delimiters before +- * the token. +- */ +-tinybool sdp_getchoosetok (const char *str, const char **str_end, +- const char *delim, sdp_result_e *result) +-{ +- const char *b; +- int flag2moveon; +- +- if ((str == NULL) || (str_end == NULL)) { +- *result = SDP_FAILURE; +- return(FALSE); +- } +- +- /* Locate front of token, skipping any delimiters */ +- for ( ; ((*str != '\0') && (*str != '\n') && (*str != '\r')); str++) { +- flag2moveon = 1; /* Default to move on unless we find a delimiter */ +- for (b=delim; *b; b++) { +- if (*str == *b) { +- flag2moveon = 0; +- break; +- } +- } +- if( flag2moveon ) { +- break; /* We're at the beginning of the token */ +- } +- } +- +- /* Make sure there's really a token present. */ +- if ((*str == '\0') || (*str == '\n') || (*str == '\r')) { +- *result = SDP_FAILURE; +- *str_end = (char *)str; +- return(FALSE); +- } +- +- /* See if the token is '$' followed by a delimiter char or end of str. */ +- if (*str == '$') { +- str++; +- if ((*str == '\0') || (*str == '\n') || (*str == '\r')) { +- *result = SDP_SUCCESS; +- /* skip the choose char in the string. */ +- *str_end = (char *)(str+1); +- return(TRUE); +- } +- for (b=delim; *b; b++) { +- if (*str == *b) { +- *result = SDP_SUCCESS; +- /* skip the choose char in the string. */ +- *str_end = (char *)(str+1); +- return(TRUE); +- } +- } +- } +- +- /* If the token was not '$' followed by a delim, token is not choose */ +- *result = SDP_SUCCESS; +- *str_end = (char *)str; +- return(FALSE); +- +-} +- + /* + * SDP Crypto Utility Functions. + * From owner-svn-ports-head@freebsd.org Tue Jun 19 00:37:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1CF31009636; Tue, 19 Jun 2018 00:37:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8017A7C0B8; Tue, 19 Jun 2018 00:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 611253E94; Tue, 19 Jun 2018 00:37: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 w5J0bknP087883; Tue, 19 Jun 2018 00:37:46 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0bhPE087870; Tue, 19 Jun 2018 00:37:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806190037.w5J0bhPE087870@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Jun 2018 00:37:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472727 - in head: Mk Mk/Uses www/firefox www/firefox-i18n www/firefox/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: Mk Mk/Uses www/firefox www/firefox-i18n www/firefox/files X-SVN-Commit-Revision: 472727 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:37:47 -0000 Author: jbeich Date: Tue Jun 19 00:37:43 2018 New Revision: 472727 URL: https://svnweb.freebsd.org/changeset/ports/472727 Log: www/firefox: update to 61.0 - Drop DTRACE option, as it no longer builds https://bugzilla.mozilla.org/show_bug.cgi?id=1448659 https://bugzilla.mozilla.org/show_bug.cgi?id=702179#c33 - Stop using system hunspell per https://bugzilla.mozilla.org/show_bug.cgi?id=1460600 Changes: https://www.mozilla.org/firefox/61.0/releasenotes/ PR: 227850 Security: cd81806c-26e7-4d4a-8425-02724a2f48af MFH: 2018Q2 Differential Revision: https://reviews.freebsd.org/D15227 Deleted: head/www/firefox/files/patch-bug1375074 head/www/firefox/files/patch-bug1411481 head/www/firefox/files/patch-bug1435212 head/www/firefox/files/patch-bug1438678 head/www/firefox/files/patch-bug1442583 head/www/firefox/files/patch-bug1444798 head/www/firefox/files/patch-bug1445907 head/www/firefox/files/patch-bug1447359 head/www/firefox/files/patch-bug1451292 head/www/firefox/files/patch-bug1456556 head/www/firefox/files/patch-bug702179 head/www/firefox/files/patch-z-bug1436911 Modified: head/Mk/Uses/gecko.mk (contents, props changed) head/Mk/bsd.gecko.mk (contents, props changed) head/www/firefox-i18n/Makefile (contents, props changed) head/www/firefox-i18n/distinfo (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/distinfo (contents, props changed) head/www/firefox/files/patch-addon-search (contents, props changed) head/www/firefox/files/patch-bug1021761 (contents, props changed) head/www/firefox/files/patch-dom_media_flac_FlacDecoder.cpp (contents, props changed) head/www/firefox/files/patch-u2f-hid-rs62 (contents, props changed) head/www/firefox/files/patch-z-bug517422 (contents, props changed) Modified: head/Mk/Uses/gecko.mk ============================================================================== --- head/Mk/Uses/gecko.mk Tue Jun 19 00:37:31 2018 (r472726) +++ head/Mk/Uses/gecko.mk Tue Jun 19 00:37:43 2018 (r472727) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 52 -_GECKO_VERSIONS= 52 60 +_GECKO_VERSIONS= 52 61 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 52_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -60_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +61_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${PKG_QUERY} %v firefox firefox-esr Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Tue Jun 19 00:37:31 2018 (r472726) +++ head/Mk/bsd.gecko.mk Tue Jun 19 00:37:43 2018 (r472727) @@ -111,6 +111,11 @@ BUILD_DEPENDS+= llvm${MESA_LLVM_VER}>0:devel/llvm${MES MOZ_EXPORT+= LLVM_CONFIG=llvm-config${MESA_LLVM_VER} .endif +.if ${MOZILLA_VER:R:R} >= 61 +BUILD_DEPENDS+= ${LOCALBASE}/bin/python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//g} +MOZ_EXPORT+= PYTHON3="${LOCALBASE}/bin/python${PYTHON3_DEFAULT}" +.endif + .if ${OPSYS} == FreeBSD && ${OSREL} == 11.1 LLD_UNSAFE= yes .endif Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox-i18n/Makefile Tue Jun 19 00:37:43 2018 (r472727) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 60.0.2 +PORTVERSION= 61.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,60,build +USES= zip:infozip gecko:firefox,61,build USE_XPI= firefox NO_ARCH= yes Modified: head/www/firefox-i18n/distinfo ============================================================================== --- head/www/firefox-i18n/distinfo Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox-i18n/distinfo Tue Jun 19 00:37:43 2018 (r472727) @@ -1,197 +1,197 @@ -TIMESTAMP = 1528228087 -SHA256 (xpi/firefox-i18n-60.0.2/ach.xpi) = 3264cdac77964c001d27c1da36d280702c6e28bb9caedf06a7a57d2d034f5097 -SIZE (xpi/firefox-i18n-60.0.2/ach.xpi) = 496058 -SHA256 (xpi/firefox-i18n-60.0.2/af.xpi) = 46c49276255243becdddff6102bea42c4860cc3c008d4b01f8d95b91812cdfca -SIZE (xpi/firefox-i18n-60.0.2/af.xpi) = 486534 -SHA256 (xpi/firefox-i18n-60.0.2/an.xpi) = 037f8ec9d96f019059d8131eff4ab06fff8ecc657f98ea231b1e5e7bae730880 -SIZE (xpi/firefox-i18n-60.0.2/an.xpi) = 519729 -SHA256 (xpi/firefox-i18n-60.0.2/ar.xpi) = cda7d8d114da54e4ecd6a5781795ab590c3510c59ab74d1c8343a2834489fa73 -SIZE (xpi/firefox-i18n-60.0.2/ar.xpi) = 546953 -SHA256 (xpi/firefox-i18n-60.0.2/as.xpi) = b978d40a6ebe0ec9ae07fe9d0b2a24c181422c1c09939255f7984a4b153b9a26 -SIZE (xpi/firefox-i18n-60.0.2/as.xpi) = 529953 -SHA256 (xpi/firefox-i18n-60.0.2/ast.xpi) = 5be044c2ea120e039e73a33c334314ce488bc12f0d0d5605a86320a023ed3ea3 -SIZE (xpi/firefox-i18n-60.0.2/ast.xpi) = 507870 -SHA256 (xpi/firefox-i18n-60.0.2/az.xpi) = c692cc2f12e4df1b5e45a5070766e8c5cf468aeb3315180228defdc5704e61d1 -SIZE (xpi/firefox-i18n-60.0.2/az.xpi) = 523974 -SHA256 (xpi/firefox-i18n-60.0.2/be.xpi) = cc291a855dcb454f114b40c7673db18dd7c0b2962a3c11ff9c0a986e3231eaa6 -SIZE (xpi/firefox-i18n-60.0.2/be.xpi) = 579945 -SHA256 (xpi/firefox-i18n-60.0.2/bg.xpi) = 62178b8aa781941a3de9d11e597092d479f682b5c6738de010110a3b9a9a42d8 -SIZE (xpi/firefox-i18n-60.0.2/bg.xpi) = 573080 -SHA256 (xpi/firefox-i18n-60.0.2/bn-BD.xpi) = cbd8950fdab635e864c10a5358d0495210effd6160a62b9599b093338dc67a16 -SIZE (xpi/firefox-i18n-60.0.2/bn-BD.xpi) = 589638 -SHA256 (xpi/firefox-i18n-60.0.2/bn-IN.xpi) = 026b702fdec8e922e71e6a9198d42de7a615d47d9ce47d8a58fdc8c0ee4ffe5a -SIZE (xpi/firefox-i18n-60.0.2/bn-IN.xpi) = 570083 -SHA256 (xpi/firefox-i18n-60.0.2/br.xpi) = acd17442b0918ddadaa324223b70cc240e3e5f9377ee1bf966cecb6f1bd124cf -SIZE (xpi/firefox-i18n-60.0.2/br.xpi) = 511252 -SHA256 (xpi/firefox-i18n-60.0.2/bs.xpi) = 6fc982720e171f8c4e1b06eed294735a6514e3e54bb9ada39cca697315afb48f -SIZE (xpi/firefox-i18n-60.0.2/bs.xpi) = 513936 -SHA256 (xpi/firefox-i18n-60.0.2/ca.xpi) = 41f425b998c4f37c2e506d24e06ab692597d5d5f191c1042cef42b53b164377e -SIZE (xpi/firefox-i18n-60.0.2/ca.xpi) = 524484 -SHA256 (xpi/firefox-i18n-60.0.2/cak.xpi) = e511a882edb4fe78c5759c716cc5313875dde60dcb144cb19f1ff2d3dd97478d -SIZE (xpi/firefox-i18n-60.0.2/cak.xpi) = 535516 -SHA256 (xpi/firefox-i18n-60.0.2/cs.xpi) = 5bd65f390119dcd6f09be4c71a158187e3d0ce3aa775b17459c4b57b6931877b -SIZE (xpi/firefox-i18n-60.0.2/cs.xpi) = 531015 -SHA256 (xpi/firefox-i18n-60.0.2/cy.xpi) = e2c989a044c9a4af5ec60676d1e2f652d3bea657d0b51f91fe763458781d6279 -SIZE (xpi/firefox-i18n-60.0.2/cy.xpi) = 515864 -SHA256 (xpi/firefox-i18n-60.0.2/da.xpi) = fe33cf6e6b118cbd56af791fce6b57640af600f3ed483ff71b3dace8c3ec378a -SIZE (xpi/firefox-i18n-60.0.2/da.xpi) = 509975 -SHA256 (xpi/firefox-i18n-60.0.2/de.xpi) = eda7bc1cd123f24b57ce6d0fcfca3e6c0954c71a32ef610ae62dfe8ae8477140 -SIZE (xpi/firefox-i18n-60.0.2/de.xpi) = 525689 -SHA256 (xpi/firefox-i18n-60.0.2/dsb.xpi) = 73daa18ad8e7a42c781242a506587fed18158f0bf1f9f2e7e9c2c8fa4916b4a3 -SIZE (xpi/firefox-i18n-60.0.2/dsb.xpi) = 538745 -SHA256 (xpi/firefox-i18n-60.0.2/el.xpi) = c447405287531c915afde8ca535b1b812b29a4a15b8aa1bb562b26276801a371 -SIZE (xpi/firefox-i18n-60.0.2/el.xpi) = 592917 -SHA256 (xpi/firefox-i18n-60.0.2/en-GB.xpi) = fe02706b63725e0ef67d23cecae9e0a592c1b0c8bb0050773954f142793ef0d4 -SIZE (xpi/firefox-i18n-60.0.2/en-GB.xpi) = 490903 -SHA256 (xpi/firefox-i18n-60.0.2/en-US.xpi) = 3a012162ccef7068fd5b16117ede3eb8c151e99635e83c031a37f1989565f16b -SIZE (xpi/firefox-i18n-60.0.2/en-US.xpi) = 472384 -SHA256 (xpi/firefox-i18n-60.0.2/en-ZA.xpi) = 0df9291489150fa400c0927b770f5a94e7d3ad641ea59ac720cbf006f3c58e50 -SIZE (xpi/firefox-i18n-60.0.2/en-ZA.xpi) = 473896 -SHA256 (xpi/firefox-i18n-60.0.2/eo.xpi) = 05cc1895271e735fa0d4e73c0cc792de6d7bea63034777fd7facd3e45d0630da -SIZE (xpi/firefox-i18n-60.0.2/eo.xpi) = 510494 -SHA256 (xpi/firefox-i18n-60.0.2/es-AR.xpi) = 005ee9da32ea33d4f420ecbcd8add9cf2ab5bf332b0a7699ecab4ee67331a564 -SIZE (xpi/firefox-i18n-60.0.2/es-AR.xpi) = 523819 -SHA256 (xpi/firefox-i18n-60.0.2/es-CL.xpi) = f76adcbda565019c183d8a4ecb38a911a7fca78b7db158a5a1fa5402627e0566 -SIZE (xpi/firefox-i18n-60.0.2/es-CL.xpi) = 526509 -SHA256 (xpi/firefox-i18n-60.0.2/es-ES.xpi) = 76b7ab024878427cf6ea87b9a74632c667b4cdcf03bdc899f95bb802dfc304d6 -SIZE (xpi/firefox-i18n-60.0.2/es-ES.xpi) = 459139 -SHA256 (xpi/firefox-i18n-60.0.2/es-MX.xpi) = 2829924eee326add8b7f9f9dffd6a42f54e26bb573307d7655f74dff3fa4df43 -SIZE (xpi/firefox-i18n-60.0.2/es-MX.xpi) = 527838 -SHA256 (xpi/firefox-i18n-60.0.2/et.xpi) = d9f0ff92b02ae4b6674432c191950fce9d5b85307b3dd4a7b818b6c73a701271 -SIZE (xpi/firefox-i18n-60.0.2/et.xpi) = 504174 -SHA256 (xpi/firefox-i18n-60.0.2/eu.xpi) = a80e87f4151defb992312fcd143890c6b86cf5067222a2742257f12eb81fb067 -SIZE (xpi/firefox-i18n-60.0.2/eu.xpi) = 510932 -SHA256 (xpi/firefox-i18n-60.0.2/fa.xpi) = 0bf0337cbd82f45f141eeae5433b4b77da449e3077fc0b32c9a3dc511da47f93 -SIZE (xpi/firefox-i18n-60.0.2/fa.xpi) = 565489 -SHA256 (xpi/firefox-i18n-60.0.2/ff.xpi) = bcf099ecd8ad1544e7d084417d6c876f6629b2689a194d7b38a0988a528e5d15 -SIZE (xpi/firefox-i18n-60.0.2/ff.xpi) = 511432 -SHA256 (xpi/firefox-i18n-60.0.2/fi.xpi) = 657ad94dfd99269ada99636ebf7a7ee9bb7364bdcabaede2f6305bd793793f92 -SIZE (xpi/firefox-i18n-60.0.2/fi.xpi) = 505404 -SHA256 (xpi/firefox-i18n-60.0.2/fr.xpi) = 6c13eaf3cbd4ef845be167f40509e6bb1b6732a3a8f0b7dac8a4b27bb1fb5244 -SIZE (xpi/firefox-i18n-60.0.2/fr.xpi) = 535238 -SHA256 (xpi/firefox-i18n-60.0.2/fy-NL.xpi) = 2def398c510f0417922c6155a47b532a2604794aff25dfaa1a64927e5112e69c -SIZE (xpi/firefox-i18n-60.0.2/fy-NL.xpi) = 523736 -SHA256 (xpi/firefox-i18n-60.0.2/ga-IE.xpi) = a07e724a94de27dcd7efad3b518519eb2dc8fce2e6c6ad82c49d7340f1aae654 -SIZE (xpi/firefox-i18n-60.0.2/ga-IE.xpi) = 526199 -SHA256 (xpi/firefox-i18n-60.0.2/gd.xpi) = f9f60f239d7091ac4fe4e8797fe66a2cf8f1998229439b64f02d12189fc56ed8 -SIZE (xpi/firefox-i18n-60.0.2/gd.xpi) = 520093 -SHA256 (xpi/firefox-i18n-60.0.2/gl.xpi) = 8dbe92bf6e56417998bb581600f33abdc9ced8015a2f5b5404ad16331377d469 -SIZE (xpi/firefox-i18n-60.0.2/gl.xpi) = 496593 -SHA256 (xpi/firefox-i18n-60.0.2/gn.xpi) = 2f8f02fbff9dcafe6e97f56e3bb4cd30dab599cfeac5aa08176ddf115e93c230 -SIZE (xpi/firefox-i18n-60.0.2/gn.xpi) = 532439 -SHA256 (xpi/firefox-i18n-60.0.2/gu-IN.xpi) = 0d5ccd4b83d3bc510f48466b647956d356da98b2873bf324e0449f795418b83c -SIZE (xpi/firefox-i18n-60.0.2/gu-IN.xpi) = 589483 -SHA256 (xpi/firefox-i18n-60.0.2/he.xpi) = ec0799c68a0f054ec30fdf9f7b698517b12d960235dabcbfd6ea828e38647cee -SIZE (xpi/firefox-i18n-60.0.2/he.xpi) = 535211 -SHA256 (xpi/firefox-i18n-60.0.2/hi-IN.xpi) = 3fd33dabf5a465fba7983553ba89d7189cb156132bd2060932b11f1bc3efbabf -SIZE (xpi/firefox-i18n-60.0.2/hi-IN.xpi) = 590076 -SHA256 (xpi/firefox-i18n-60.0.2/hr.xpi) = be54a7a81d3d2aecd5bda7266034f2c41dd2271ca41c4a59dfc2d95ef8ef6876 -SIZE (xpi/firefox-i18n-60.0.2/hr.xpi) = 515186 -SHA256 (xpi/firefox-i18n-60.0.2/hsb.xpi) = c552a2302b5832c953db367475d9eb292e75ef3f1319e034ade05e6e5ef1f15b -SIZE (xpi/firefox-i18n-60.0.2/hsb.xpi) = 536278 -SHA256 (xpi/firefox-i18n-60.0.2/hu.xpi) = 61bb78d4604bb4f4fee525751486e6e5612c285565bb7e42f6e3b388a9dbbe31 -SIZE (xpi/firefox-i18n-60.0.2/hu.xpi) = 537587 -SHA256 (xpi/firefox-i18n-60.0.2/hy-AM.xpi) = 54deba7f2a00e48cadd99208472e467f1f78a678db91ba3fbb8ffe2d925f5dda -SIZE (xpi/firefox-i18n-60.0.2/hy-AM.xpi) = 568629 -SHA256 (xpi/firefox-i18n-60.0.2/ia.xpi) = c69a5c604f90f239a6c78de43b1f7884a5f553eaa49211f81cf76b1c256638f0 -SIZE (xpi/firefox-i18n-60.0.2/ia.xpi) = 509951 -SHA256 (xpi/firefox-i18n-60.0.2/id.xpi) = f7fb19719341975e08328270ba1f4933d589fb4d2798ef9a00965828aba55227 -SIZE (xpi/firefox-i18n-60.0.2/id.xpi) = 501449 -SHA256 (xpi/firefox-i18n-60.0.2/is.xpi) = 0164a3686761abf0be0a1d8f773762031222e22362152865c4e38ac306b0cdd3 -SIZE (xpi/firefox-i18n-60.0.2/is.xpi) = 512502 -SHA256 (xpi/firefox-i18n-60.0.2/it.xpi) = 02b80d059ae403c04b2e130f521b1d80ea71f505cfe4dbd120ea218a84bedeb0 -SIZE (xpi/firefox-i18n-60.0.2/it.xpi) = 398263 -SHA256 (xpi/firefox-i18n-60.0.2/ja.xpi) = dcb3446a228a3cde462264e0ba39c606aea4dc711919e6c7d5dae252ecdd5a67 -SIZE (xpi/firefox-i18n-60.0.2/ja.xpi) = 571244 -SHA256 (xpi/firefox-i18n-60.0.2/ka.xpi) = fcfe7fc9d2cff0399e369eaf1d8bb5d8adb73773d095858bbefd2758d69f7f27 -SIZE (xpi/firefox-i18n-60.0.2/ka.xpi) = 556072 -SHA256 (xpi/firefox-i18n-60.0.2/kab.xpi) = 049404f2dcb4d32ddcce2b36739b4301b69586906defa775fc6500c8fad678ac -SIZE (xpi/firefox-i18n-60.0.2/kab.xpi) = 519624 -SHA256 (xpi/firefox-i18n-60.0.2/kk.xpi) = ed233b274feec630f92c432ea9adf7624548c628308724aa4046baa51a9d6004 -SIZE (xpi/firefox-i18n-60.0.2/kk.xpi) = 582205 -SHA256 (xpi/firefox-i18n-60.0.2/km.xpi) = a67c04fb6437227a68ab8083491119fc0931dc8b397d605b92f804f9f2f4c710 -SIZE (xpi/firefox-i18n-60.0.2/km.xpi) = 582332 -SHA256 (xpi/firefox-i18n-60.0.2/kn.xpi) = 3427d552400dde0e3d73019cdf6d3ff7e0235d8ea0e9647b90da923c60365924 -SIZE (xpi/firefox-i18n-60.0.2/kn.xpi) = 585098 -SHA256 (xpi/firefox-i18n-60.0.2/ko.xpi) = 22eed6eba57f8cb38bda67e8a90e7bff5668f2e596869bc5a1c60c24453733d3 -SIZE (xpi/firefox-i18n-60.0.2/ko.xpi) = 547056 -SHA256 (xpi/firefox-i18n-60.0.2/lij.xpi) = d1d4e0d940eb4a19ea6ba8f4dd883c4e365d9f1ac7dfe90160764278fec29119 -SIZE (xpi/firefox-i18n-60.0.2/lij.xpi) = 512397 -SHA256 (xpi/firefox-i18n-60.0.2/lt.xpi) = 5d7a35f2890260978d0d7110e73ae2109bb3703d6cd65d36048e66e77062c7fe -SIZE (xpi/firefox-i18n-60.0.2/lt.xpi) = 535632 -SHA256 (xpi/firefox-i18n-60.0.2/lv.xpi) = 462e8d28b118e601f8eaadf7ee495fceac969e1110debe2e0b12f4afdc5b1834 -SIZE (xpi/firefox-i18n-60.0.2/lv.xpi) = 525636 -SHA256 (xpi/firefox-i18n-60.0.2/mai.xpi) = 66e8e472fcdd9532a8401a4a9bb7293fcfab4535e6129e62d0aba974753d0c0c -SIZE (xpi/firefox-i18n-60.0.2/mai.xpi) = 548471 -SHA256 (xpi/firefox-i18n-60.0.2/mk.xpi) = d752302445ac0f14496e4230c1c094d2b78fef42f3272914c3a52b72fb8dc4d3 -SIZE (xpi/firefox-i18n-60.0.2/mk.xpi) = 513025 -SHA256 (xpi/firefox-i18n-60.0.2/ml.xpi) = 0652ddfd12240e1a7a258835b6b72af06856d541c99c6a0d2275dca9157674e5 -SIZE (xpi/firefox-i18n-60.0.2/ml.xpi) = 598198 -SHA256 (xpi/firefox-i18n-60.0.2/mr.xpi) = 2a05310d226bd5be71ede145c898eeb1c2e135aefa0245254201266e0595b969 -SIZE (xpi/firefox-i18n-60.0.2/mr.xpi) = 578337 -SHA256 (xpi/firefox-i18n-60.0.2/ms.xpi) = 877a6de579035a20ff32075e5d4d36079af06c0f307428ecf508c39d2af9aab7 -SIZE (xpi/firefox-i18n-60.0.2/ms.xpi) = 508781 -SHA256 (xpi/firefox-i18n-60.0.2/my.xpi) = 6702089f2b5560f7774f6abd432cbaeb8a3364f4897dde19a158efa647bd7a0d -SIZE (xpi/firefox-i18n-60.0.2/my.xpi) = 569572 -SHA256 (xpi/firefox-i18n-60.0.2/nb-NO.xpi) = 773f9a9843c79f34bfa459829b8c9cd3546b544dccefde0e7c468098de47f383 -SIZE (xpi/firefox-i18n-60.0.2/nb-NO.xpi) = 509104 -SHA256 (xpi/firefox-i18n-60.0.2/ne-NP.xpi) = d3e33d855d4e0d0d89fda9c4cd6b1322348059e2ec378d522904f40e81a3f763 -SIZE (xpi/firefox-i18n-60.0.2/ne-NP.xpi) = 554577 -SHA256 (xpi/firefox-i18n-60.0.2/nl.xpi) = 4f419acfd5824b75e6be4a8a95645ff6bc8798fe3e54c740f8652ca7836ef539 -SIZE (xpi/firefox-i18n-60.0.2/nl.xpi) = 516653 -SHA256 (xpi/firefox-i18n-60.0.2/nn-NO.xpi) = 29aa2f24e4bdd67c58d17caecd8b2c7d81bb0bbdc682d76487614621561f1085 -SIZE (xpi/firefox-i18n-60.0.2/nn-NO.xpi) = 510621 -SHA256 (xpi/firefox-i18n-60.0.2/oc.xpi) = ec8836cd689ebb864cb994dfaee342dbcf9a5f2423f0f399ffbc1c6a118d2a7d -SIZE (xpi/firefox-i18n-60.0.2/oc.xpi) = 526207 -SHA256 (xpi/firefox-i18n-60.0.2/or.xpi) = 9da7b23e12d90aeed04e637772a0b8a3f75d7d6dd8d7cfcfc5d60a99f8d2fd19 -SIZE (xpi/firefox-i18n-60.0.2/or.xpi) = 540089 -SHA256 (xpi/firefox-i18n-60.0.2/pa-IN.xpi) = 77432ae4cf8faa53fb3aaa51749547b63205d301cc9b3cbb17cf8837589554da -SIZE (xpi/firefox-i18n-60.0.2/pa-IN.xpi) = 557086 -SHA256 (xpi/firefox-i18n-60.0.2/pl.xpi) = 6c120bfcc19c4b68b21adffdda876eec2e928509eb0441bc0f6290098e3f333c -SIZE (xpi/firefox-i18n-60.0.2/pl.xpi) = 418192 -SHA256 (xpi/firefox-i18n-60.0.2/pt-BR.xpi) = aa3613bea650524dbb7f5dd7114759df3581479602a64f57f520e267582d4987 -SIZE (xpi/firefox-i18n-60.0.2/pt-BR.xpi) = 513944 -SHA256 (xpi/firefox-i18n-60.0.2/pt-PT.xpi) = 67f4f4e4b1bf773cbe5712042fe99af140d85da9366126aa39c59798bb1dd0cf -SIZE (xpi/firefox-i18n-60.0.2/pt-PT.xpi) = 518540 -SHA256 (xpi/firefox-i18n-60.0.2/rm.xpi) = 569994da2a6f808a8d6c533b76487e19088d60085a043afb273c0cdb0f598685 -SIZE (xpi/firefox-i18n-60.0.2/rm.xpi) = 505263 -SHA256 (xpi/firefox-i18n-60.0.2/ro.xpi) = 5a97e49719592a6d5ef0f829947afb54e2e4449a89a354bcb0bced8e6594fde5 -SIZE (xpi/firefox-i18n-60.0.2/ro.xpi) = 513283 -SHA256 (xpi/firefox-i18n-60.0.2/ru.xpi) = 2ea09073bf39fd18f2257176c71044c8fb9eda6c9e7fedab8c23316f5167d9fb -SIZE (xpi/firefox-i18n-60.0.2/ru.xpi) = 590511 -SHA256 (xpi/firefox-i18n-60.0.2/si.xpi) = 200e788abd768d1ea478a341a2b9ed56b44097b36cde8d9b1818157d30c96cec -SIZE (xpi/firefox-i18n-60.0.2/si.xpi) = 544795 -SHA256 (xpi/firefox-i18n-60.0.2/sk.xpi) = f396351241475b099f7924ee78bc156be5213323789e88f013608d908b0df8f6 -SIZE (xpi/firefox-i18n-60.0.2/sk.xpi) = 540928 -SHA256 (xpi/firefox-i18n-60.0.2/sl.xpi) = b10e2296960aa0a98aaf6fecfd08ce64e223e8f7aec169b1a94d628b2c8348c1 -SIZE (xpi/firefox-i18n-60.0.2/sl.xpi) = 518573 -SHA256 (xpi/firefox-i18n-60.0.2/son.xpi) = a63256b85d637d60086cfff632957c44c45ba53c843634f252e42601d54e7abd -SIZE (xpi/firefox-i18n-60.0.2/son.xpi) = 496920 -SHA256 (xpi/firefox-i18n-60.0.2/sq.xpi) = e8b0fe2f702f3c1858adc19521a4a661275df80664303934c79e14839843f067 -SIZE (xpi/firefox-i18n-60.0.2/sq.xpi) = 520487 -SHA256 (xpi/firefox-i18n-60.0.2/sr.xpi) = 6a4e20050e2b4416ebaa35a32fe5e3ed7ac2191bbf0a5cfa7d5e1e046c1c8dfc -SIZE (xpi/firefox-i18n-60.0.2/sr.xpi) = 547998 -SHA256 (xpi/firefox-i18n-60.0.2/sv-SE.xpi) = 942d86553fe7224497e497464537fecf8de2f5fd9819330821e05b7968a4ebd2 -SIZE (xpi/firefox-i18n-60.0.2/sv-SE.xpi) = 517850 -SHA256 (xpi/firefox-i18n-60.0.2/ta.xpi) = 8c03cea19a64a176f135b6de774740292f93cfdfff262440900b3e8117b789b9 -SIZE (xpi/firefox-i18n-60.0.2/ta.xpi) = 577139 -SHA256 (xpi/firefox-i18n-60.0.2/te.xpi) = ea6dbd7a2f4379f8c980d5bdba84cfd2bcc91b81243e01d2770dd8dc238fca82 -SIZE (xpi/firefox-i18n-60.0.2/te.xpi) = 590179 -SHA256 (xpi/firefox-i18n-60.0.2/th.xpi) = be48a1f68ce337997b6b5cc5f14a44ea53c8a6f9f5fcb9bd4f037e83a5e27f3f -SIZE (xpi/firefox-i18n-60.0.2/th.xpi) = 562042 -SHA256 (xpi/firefox-i18n-60.0.2/tr.xpi) = 114102a3af7a638d2a988c97c47f95631fe9c795770db1238e8329226e6c5087 -SIZE (xpi/firefox-i18n-60.0.2/tr.xpi) = 525034 -SHA256 (xpi/firefox-i18n-60.0.2/uk.xpi) = c72bd318699dcef64d285a970850f1b2953c263033bec419a89b86d06a000ce0 -SIZE (xpi/firefox-i18n-60.0.2/uk.xpi) = 580148 -SHA256 (xpi/firefox-i18n-60.0.2/ur.xpi) = b336ad7af245f94e221d96648a0eafd186c9b0aafabdca13d9495a5a2f0f7cea -SIZE (xpi/firefox-i18n-60.0.2/ur.xpi) = 562604 -SHA256 (xpi/firefox-i18n-60.0.2/uz.xpi) = 72c1d09b935e26dd3838c8121527a768cd3518e0010452be062bd7459b84e944 -SIZE (xpi/firefox-i18n-60.0.2/uz.xpi) = 512908 -SHA256 (xpi/firefox-i18n-60.0.2/vi.xpi) = 8598e67bf41d660c443b62b1feccd8fc4904026bd26304278057028028096822 -SIZE (xpi/firefox-i18n-60.0.2/vi.xpi) = 527412 -SHA256 (xpi/firefox-i18n-60.0.2/xh.xpi) = 4fb78a9f7515ab7e3a1d1c7329a53dd91e090312ffbec6c9141454da8e24a000 -SIZE (xpi/firefox-i18n-60.0.2/xh.xpi) = 511086 -SHA256 (xpi/firefox-i18n-60.0.2/zh-CN.xpi) = 8dccc0a7ec90bd42c0beb420d8572fa591afc3deb949fdbb68a610c53949159d -SIZE (xpi/firefox-i18n-60.0.2/zh-CN.xpi) = 542797 -SHA256 (xpi/firefox-i18n-60.0.2/zh-TW.xpi) = f0d1047fcf359865b99a44f873e210cf5adcde8a9f577cb6e5c517f2bcfa84bb -SIZE (xpi/firefox-i18n-60.0.2/zh-TW.xpi) = 541123 +TIMESTAMP = 1529363060 +SHA256 (xpi/firefox-i18n-61.0/ach.xpi) = 4ff0f07119bb1a8f53293b82760d23bd001a957a6c8c21241a79f20ea689ea54 +SIZE (xpi/firefox-i18n-61.0/ach.xpi) = 468315 +SHA256 (xpi/firefox-i18n-61.0/af.xpi) = a575a9b471c911de70eba83dca6a36177b2c8d93a0820d2ce719e91c439b2166 +SIZE (xpi/firefox-i18n-61.0/af.xpi) = 458282 +SHA256 (xpi/firefox-i18n-61.0/an.xpi) = 2f2e969cbcdf8e0ffeb1446ec0d9e4399061c8a9044334f1cc91599de0579693 +SIZE (xpi/firefox-i18n-61.0/an.xpi) = 492776 +SHA256 (xpi/firefox-i18n-61.0/ar.xpi) = d1f69c6e645d4d1e2d05d4cb5613e83f77234c2c1f48a58053ebe9043ee12d3d +SIZE (xpi/firefox-i18n-61.0/ar.xpi) = 514909 +SHA256 (xpi/firefox-i18n-61.0/as.xpi) = ebb0bc6249193cf503947c536fdf66d7777538f3328476947d9eaf5b3a505c97 +SIZE (xpi/firefox-i18n-61.0/as.xpi) = 498325 +SHA256 (xpi/firefox-i18n-61.0/ast.xpi) = 0031dde4c27ae3c097a65757a97e2a418236243bd6520dd4aa13b182eb63d606 +SIZE (xpi/firefox-i18n-61.0/ast.xpi) = 478587 +SHA256 (xpi/firefox-i18n-61.0/az.xpi) = f3665e6cbc8872a917511b1de28792df8d2358e27ea48be61699b02ceb9dac30 +SIZE (xpi/firefox-i18n-61.0/az.xpi) = 494285 +SHA256 (xpi/firefox-i18n-61.0/be.xpi) = 621c76bb5412097875f8b8435a59b81f39bdcc009fdf743296a59da0884b9cb0 +SIZE (xpi/firefox-i18n-61.0/be.xpi) = 550840 +SHA256 (xpi/firefox-i18n-61.0/bg.xpi) = 967921d5d1d6d1538572cab57c732fa2aa136baf9f5ef771f5cb6e7af3b882df +SIZE (xpi/firefox-i18n-61.0/bg.xpi) = 541818 +SHA256 (xpi/firefox-i18n-61.0/bn-BD.xpi) = 299397a1c23b1ff0c00db81beef7c911908dadece988b21c06ca2677ab656f01 +SIZE (xpi/firefox-i18n-61.0/bn-BD.xpi) = 556530 +SHA256 (xpi/firefox-i18n-61.0/bn-IN.xpi) = ac7b4891cfc627fbadebaff5a968a5507ede126641ac954dbaed415887d14ee8 +SIZE (xpi/firefox-i18n-61.0/bn-IN.xpi) = 535413 +SHA256 (xpi/firefox-i18n-61.0/br.xpi) = e7320413b5314c86d50b8303fb6811d655521fc7ead452dba14fd49a583398f9 +SIZE (xpi/firefox-i18n-61.0/br.xpi) = 486575 +SHA256 (xpi/firefox-i18n-61.0/bs.xpi) = 3fc348bfd1f84ae9fddc437e47568a7d45b55ca7a66d30ca2af2632f91d054e5 +SIZE (xpi/firefox-i18n-61.0/bs.xpi) = 489126 +SHA256 (xpi/firefox-i18n-61.0/ca.xpi) = 27de4ea1d34c3f8168d4a7cecb7d231e1b7b87e89bb4038df27cfc7ef5050efd +SIZE (xpi/firefox-i18n-61.0/ca.xpi) = 497516 +SHA256 (xpi/firefox-i18n-61.0/cak.xpi) = 4816243359dfb7f583f93b36c2834c605ca0f2d45b9cbbd6a8dfdccc5e486b20 +SIZE (xpi/firefox-i18n-61.0/cak.xpi) = 509333 +SHA256 (xpi/firefox-i18n-61.0/cs.xpi) = 770ed446a0085c965d9892ac6b0ad8084972e06064fd4d198b1b099648ab29ee +SIZE (xpi/firefox-i18n-61.0/cs.xpi) = 502595 +SHA256 (xpi/firefox-i18n-61.0/cy.xpi) = bb66b94fe6187b4972d4961e62f597da5df64b5da066b6b845df9fa3d5c4ba16 +SIZE (xpi/firefox-i18n-61.0/cy.xpi) = 490414 +SHA256 (xpi/firefox-i18n-61.0/da.xpi) = 35b316521b48446779c1f2745947361bb703c822ee67fe6a74e86223e85bb67e +SIZE (xpi/firefox-i18n-61.0/da.xpi) = 483618 +SHA256 (xpi/firefox-i18n-61.0/de.xpi) = 6aadc1264f5fd8efb3694ff08a5efb75297fc294f0a680203aae74cc070f35b8 +SIZE (xpi/firefox-i18n-61.0/de.xpi) = 502283 +SHA256 (xpi/firefox-i18n-61.0/dsb.xpi) = ccbff842b6764116b47385d2287461963fb5ac7b78f1f2aae4a8e18aed78458d +SIZE (xpi/firefox-i18n-61.0/dsb.xpi) = 512450 +SHA256 (xpi/firefox-i18n-61.0/el.xpi) = edd6f8dde4981106bf737717229a03ba651f34dc425d5840837d40070e843c8b +SIZE (xpi/firefox-i18n-61.0/el.xpi) = 559690 +SHA256 (xpi/firefox-i18n-61.0/en-GB.xpi) = 9afdfac520fc213693673987a6b051822935915ad887c77119328a3e18ae8d20 +SIZE (xpi/firefox-i18n-61.0/en-GB.xpi) = 464877 +SHA256 (xpi/firefox-i18n-61.0/en-US.xpi) = 36de1f6d998c18f3bcf3ea5e7f14aaa355311fa9218a3fb4a6954f8d5dea04d4 +SIZE (xpi/firefox-i18n-61.0/en-US.xpi) = 456416 +SHA256 (xpi/firefox-i18n-61.0/en-ZA.xpi) = 1a8d3d838a06d6ed4a92c7c9a20bdeb3daa51b277b579d7d54f84cb9dc4a50f0 +SIZE (xpi/firefox-i18n-61.0/en-ZA.xpi) = 446645 +SHA256 (xpi/firefox-i18n-61.0/eo.xpi) = 3f709d3f28be0ed4cd8248a7237fcb98080a32a5f9926dc1cac1dd0e8cd2036f +SIZE (xpi/firefox-i18n-61.0/eo.xpi) = 484761 +SHA256 (xpi/firefox-i18n-61.0/es-AR.xpi) = 9e98d6f9c26ff5b9c493f1358311a61ea0b1d7bfc347acb92a0fc1a30a330268 +SIZE (xpi/firefox-i18n-61.0/es-AR.xpi) = 498194 +SHA256 (xpi/firefox-i18n-61.0/es-CL.xpi) = 772f0f0b1c819cdad977a1cc1eeb45a7e20b4cd13e565b3c009101612783647a +SIZE (xpi/firefox-i18n-61.0/es-CL.xpi) = 500856 +SHA256 (xpi/firefox-i18n-61.0/es-ES.xpi) = 478ac6255f1a78eccc84ae147ec20a04dc8b2b81da14531614f1fb5e84a53824 +SIZE (xpi/firefox-i18n-61.0/es-ES.xpi) = 435906 +SHA256 (xpi/firefox-i18n-61.0/es-MX.xpi) = ab8875565143f143c6be267f4f2ac27d93518eaacfb36207ed3a25a43bd43cc5 +SIZE (xpi/firefox-i18n-61.0/es-MX.xpi) = 500944 +SHA256 (xpi/firefox-i18n-61.0/et.xpi) = 7472975fc121194c15c5fa30374eafbced8a284cd05d1ea32f83f6b8483caf63 +SIZE (xpi/firefox-i18n-61.0/et.xpi) = 477542 +SHA256 (xpi/firefox-i18n-61.0/eu.xpi) = 5f69e9bbd37ff36807a5d70f5c8180a1776201f666ef6475fd265aad7c5c53be +SIZE (xpi/firefox-i18n-61.0/eu.xpi) = 488816 +SHA256 (xpi/firefox-i18n-61.0/fa.xpi) = 5fa1d36c12de82753062850b8a34366f237b9083a1ed029e64bbbf3fe9ef530d +SIZE (xpi/firefox-i18n-61.0/fa.xpi) = 537573 +SHA256 (xpi/firefox-i18n-61.0/ff.xpi) = 12dcc07546d56a193bed1c221f738ca5c6bf33a65de2e35bd9deeb950955c205 +SIZE (xpi/firefox-i18n-61.0/ff.xpi) = 483852 +SHA256 (xpi/firefox-i18n-61.0/fi.xpi) = de825d8efd96d3be1143d4c3c38c086303ae99b6ae6016c06743327fb53c6573 +SIZE (xpi/firefox-i18n-61.0/fi.xpi) = 479926 +SHA256 (xpi/firefox-i18n-61.0/fr.xpi) = 5a412bcb07eb0f6cc18ad261cbdb70d591bc9203ba90f9f31b82f27eb821c19e +SIZE (xpi/firefox-i18n-61.0/fr.xpi) = 507142 +SHA256 (xpi/firefox-i18n-61.0/fy-NL.xpi) = f704a7071efbec6f224eb218117caa892e3b9b7cf3e1a95059f8f8f6138b5886 +SIZE (xpi/firefox-i18n-61.0/fy-NL.xpi) = 497982 +SHA256 (xpi/firefox-i18n-61.0/ga-IE.xpi) = a1cd760b5e516c2ce49ea486abd5255134ac807b59778f6e6aa624433b9b87fc +SIZE (xpi/firefox-i18n-61.0/ga-IE.xpi) = 495805 +SHA256 (xpi/firefox-i18n-61.0/gd.xpi) = 71e64d95918a8e709fd985a2c459797529b556209b79453f3e379a1f4a8cd534 +SIZE (xpi/firefox-i18n-61.0/gd.xpi) = 497605 +SHA256 (xpi/firefox-i18n-61.0/gl.xpi) = 3f11ddedb54e3c51b9d49f931770599be7b10e7455001f84b813f156803415b2 +SIZE (xpi/firefox-i18n-61.0/gl.xpi) = 471912 +SHA256 (xpi/firefox-i18n-61.0/gn.xpi) = bfb61578ba13e7866aa952d93e2218a4efc9d8042d6eab90efef3194505bc06b +SIZE (xpi/firefox-i18n-61.0/gn.xpi) = 506407 +SHA256 (xpi/firefox-i18n-61.0/gu-IN.xpi) = 54ab192252fa174aa514c61fe2358be1c8c5be22e1c244d062eddf6ccd6046d3 +SIZE (xpi/firefox-i18n-61.0/gu-IN.xpi) = 557297 +SHA256 (xpi/firefox-i18n-61.0/he.xpi) = a8274869e11dc27b1733e9598ab316f900075aeba606ae027edfdd8047027729 +SIZE (xpi/firefox-i18n-61.0/he.xpi) = 505556 +SHA256 (xpi/firefox-i18n-61.0/hi-IN.xpi) = 4d10b16402ca6e5112ef3aa0392a695d0237450a3c2dd7a2693e6415a39f7cf5 +SIZE (xpi/firefox-i18n-61.0/hi-IN.xpi) = 559344 +SHA256 (xpi/firefox-i18n-61.0/hr.xpi) = f8a9f1bdce13901a7932fbbef0d54004f5f222e4a0c7372b48f1f3454c8aa178 +SIZE (xpi/firefox-i18n-61.0/hr.xpi) = 486045 +SHA256 (xpi/firefox-i18n-61.0/hsb.xpi) = 84082c615cbb27ab990d2e5a9c18b2ac69750ffc1bcc9b715ee91d3188c786ff +SIZE (xpi/firefox-i18n-61.0/hsb.xpi) = 510217 +SHA256 (xpi/firefox-i18n-61.0/hu.xpi) = 47d2be51c52714acc9caedfc378f5d8170bf0eb94a680d60f9d338cd0ff39e6e +SIZE (xpi/firefox-i18n-61.0/hu.xpi) = 511138 +SHA256 (xpi/firefox-i18n-61.0/hy-AM.xpi) = e0f5638f4f61781ffbdb7c2f500993f7236860a152dc0febc155417f063ddbd6 +SIZE (xpi/firefox-i18n-61.0/hy-AM.xpi) = 537823 +SHA256 (xpi/firefox-i18n-61.0/ia.xpi) = 4aa0ed2456fa982b00b6906c03f36a7de8c17f342a9fbe2a3cdaa275f7ddd7f2 +SIZE (xpi/firefox-i18n-61.0/ia.xpi) = 483841 +SHA256 (xpi/firefox-i18n-61.0/id.xpi) = b1b4f6a9d5bd4b048508973c2f2bc89cf6ec6ffc9216736eba2210281eadba8b +SIZE (xpi/firefox-i18n-61.0/id.xpi) = 476106 +SHA256 (xpi/firefox-i18n-61.0/is.xpi) = 6c72add7fa50eed39dfd3a01bba517804cac7365de4d58c40f1565c0480fb576 +SIZE (xpi/firefox-i18n-61.0/is.xpi) = 482669 +SHA256 (xpi/firefox-i18n-61.0/it.xpi) = d90b3b8da4ae296f8989ebc38a7cbdaf8a7a5bfdb996c867b99accb75c317b46 +SIZE (xpi/firefox-i18n-61.0/it.xpi) = 372491 +SHA256 (xpi/firefox-i18n-61.0/ja.xpi) = bce9e2fc73293dd74f230936df6529cbc3cde88cbb8da4f1caa47ff8b2298bbd +SIZE (xpi/firefox-i18n-61.0/ja.xpi) = 538258 +SHA256 (xpi/firefox-i18n-61.0/ka.xpi) = c4a88b5e33ab3e81334b4f75a4a3582f1b68b0ff6a6ce316f7d6aef20ff3f1d5 +SIZE (xpi/firefox-i18n-61.0/ka.xpi) = 525910 +SHA256 (xpi/firefox-i18n-61.0/kab.xpi) = dd94ef81e523077cf0f4eda7906b124d1aa8931cb4397115c36db6f7c6ecb391 +SIZE (xpi/firefox-i18n-61.0/kab.xpi) = 495569 +SHA256 (xpi/firefox-i18n-61.0/kk.xpi) = c0ae9c06aa45f3a21a97ae1474a8916de9caf64a9ea712e0c09bf48ad35c15d8 +SIZE (xpi/firefox-i18n-61.0/kk.xpi) = 553684 +SHA256 (xpi/firefox-i18n-61.0/km.xpi) = 3faa01bc4800bb5bd02a6c6dc1a22169de2e22838fbf6e8e0375dc7bf6614713 +SIZE (xpi/firefox-i18n-61.0/km.xpi) = 547198 +SHA256 (xpi/firefox-i18n-61.0/kn.xpi) = 0ee074666999e6df54324587ca5db10804d678a17b04691fecb6ad15ad19e37b +SIZE (xpi/firefox-i18n-61.0/kn.xpi) = 552594 +SHA256 (xpi/firefox-i18n-61.0/ko.xpi) = 83909986b09d95772edba3ec8dfe00ffc5e89d4efbd65e2e32b39fa530c71643 +SIZE (xpi/firefox-i18n-61.0/ko.xpi) = 519812 +SHA256 (xpi/firefox-i18n-61.0/lij.xpi) = e6b77c22576bfa8004deb1d5a0d061fe63329cededc3cfb90a52a154120841da +SIZE (xpi/firefox-i18n-61.0/lij.xpi) = 486945 +SHA256 (xpi/firefox-i18n-61.0/lt.xpi) = 7e09fe7d6558758bf0ac7f3e267f8c2b4a2cf298bde35d0f78a8de3a1db3fa65 +SIZE (xpi/firefox-i18n-61.0/lt.xpi) = 509390 +SHA256 (xpi/firefox-i18n-61.0/lv.xpi) = 2372a664eeccf2f6ec098ec77e66324bf78960987cf54a1b9c5da35806c059c1 +SIZE (xpi/firefox-i18n-61.0/lv.xpi) = 497552 +SHA256 (xpi/firefox-i18n-61.0/mai.xpi) = 248610a2c8b97b47d506ae28a182fcd39433fcf9bd8877c02b6d48b06fd05411 +SIZE (xpi/firefox-i18n-61.0/mai.xpi) = 518899 +SHA256 (xpi/firefox-i18n-61.0/mk.xpi) = d6536015b53676148a1ae7c8e486755e434c91e0943ce684619f885418847e2b +SIZE (xpi/firefox-i18n-61.0/mk.xpi) = 480669 +SHA256 (xpi/firefox-i18n-61.0/ml.xpi) = f8fe34b1a8f0644764d1be18961cf67b9e6903929453db3555af96e6b678aef1 +SIZE (xpi/firefox-i18n-61.0/ml.xpi) = 562449 +SHA256 (xpi/firefox-i18n-61.0/mr.xpi) = 9c85c36fab015a00ac8a37967e244732331a93337c819667b55931b148d77e1d +SIZE (xpi/firefox-i18n-61.0/mr.xpi) = 547457 +SHA256 (xpi/firefox-i18n-61.0/ms.xpi) = a30b9825ca7989dec5c79db7b37b71edf3a4a5dcb59841fa67ed23c54cc81d2c +SIZE (xpi/firefox-i18n-61.0/ms.xpi) = 483495 +SHA256 (xpi/firefox-i18n-61.0/my.xpi) = 0c40918cc7753227be7368975be8c3adc22737111c3b70182546ab2d63d85e7f +SIZE (xpi/firefox-i18n-61.0/my.xpi) = 536701 +SHA256 (xpi/firefox-i18n-61.0/nb-NO.xpi) = f8cb8b6085304b4fb71d00bb35b0def3992ef118593d45116167cdd198f9a8b0 +SIZE (xpi/firefox-i18n-61.0/nb-NO.xpi) = 483524 +SHA256 (xpi/firefox-i18n-61.0/ne-NP.xpi) = 9b7b57cb0f43f079f1c8cfe9512c9008d224685dafe2ea6a31315f9e65f58cfa +SIZE (xpi/firefox-i18n-61.0/ne-NP.xpi) = 523515 +SHA256 (xpi/firefox-i18n-61.0/nl.xpi) = 732f670ac95ccea8e723d2ffe45bba10061f577dbf6b0799a54641cd5118def6 +SIZE (xpi/firefox-i18n-61.0/nl.xpi) = 489007 +SHA256 (xpi/firefox-i18n-61.0/nn-NO.xpi) = ca0a7a0134a00bb4c2a7148ed4345f1a631151fed763e25c98507189765eb1dd +SIZE (xpi/firefox-i18n-61.0/nn-NO.xpi) = 483559 +SHA256 (xpi/firefox-i18n-61.0/oc.xpi) = f8430be11eb4327899ef6d512f1bc7fa98ba2db9bb2c042bc2f2cda7ca820924 +SIZE (xpi/firefox-i18n-61.0/oc.xpi) = 499696 +SHA256 (xpi/firefox-i18n-61.0/or.xpi) = 815d53ba74a731711dd851485844c64ab06c76ebb845f593dc915e34b6cd0ec9 +SIZE (xpi/firefox-i18n-61.0/or.xpi) = 508184 +SHA256 (xpi/firefox-i18n-61.0/pa-IN.xpi) = 26fe1b7f2338644ecacc4fa79b58c9695f81268e436927b9632eb3b98fb6b2a7 +SIZE (xpi/firefox-i18n-61.0/pa-IN.xpi) = 524502 +SHA256 (xpi/firefox-i18n-61.0/pl.xpi) = 42774f47652e3b8da96aac130d0b4d7ab4e47d080d1931fa0286ad24e6de7fdd +SIZE (xpi/firefox-i18n-61.0/pl.xpi) = 390903 +SHA256 (xpi/firefox-i18n-61.0/pt-BR.xpi) = bc6b9aa57bdf0e87add7b07215fc9f60c811c9a3063c25b030daebc802b76448 +SIZE (xpi/firefox-i18n-61.0/pt-BR.xpi) = 486001 +SHA256 (xpi/firefox-i18n-61.0/pt-PT.xpi) = a8e55d09ba0049dd83e80307ad6529d4e1e829b7f4e13af009bafa8058340e0b +SIZE (xpi/firefox-i18n-61.0/pt-PT.xpi) = 492103 +SHA256 (xpi/firefox-i18n-61.0/rm.xpi) = 55566c7c5bcb72192033153e41dd046fbe58460d2791240b0d7e84c7c021b3e7 +SIZE (xpi/firefox-i18n-61.0/rm.xpi) = 483850 +SHA256 (xpi/firefox-i18n-61.0/ro.xpi) = 663d073e8e9a1fffe74db40ae3a4c1d8960bc9f70b752c6659c40bb0efd53a0e +SIZE (xpi/firefox-i18n-61.0/ro.xpi) = 486750 +SHA256 (xpi/firefox-i18n-61.0/ru.xpi) = 5914d162d9bc0973268035defa38b2720d94961e0f2abc919964d8e6b6f3cc03 +SIZE (xpi/firefox-i18n-61.0/ru.xpi) = 561624 +SHA256 (xpi/firefox-i18n-61.0/si.xpi) = 3a46f3546f82d97bfe31e95068c827781f0e0d88ee1e083ae87266f722e1fae3 +SIZE (xpi/firefox-i18n-61.0/si.xpi) = 511505 +SHA256 (xpi/firefox-i18n-61.0/sk.xpi) = cf9fd3be1bcbbab92982013f96f8a0bec42f80609f9a4620f550ad7f47c182e0 +SIZE (xpi/firefox-i18n-61.0/sk.xpi) = 514224 +SHA256 (xpi/firefox-i18n-61.0/sl.xpi) = 1ca4a44c6e96e7d7359edebf35cf22808acf45bea206e0d48c834bcc5b391b75 +SIZE (xpi/firefox-i18n-61.0/sl.xpi) = 490321 +SHA256 (xpi/firefox-i18n-61.0/son.xpi) = 8766423e4748facd423ec7026a0f7aee3917ec86ddcecd149e069f9c14ea1990 +SIZE (xpi/firefox-i18n-61.0/son.xpi) = 468634 +SHA256 (xpi/firefox-i18n-61.0/sq.xpi) = 67309f9cc1841b3e9108d7975385127724450ca6c7d79b787c68393d24f4fb72 +SIZE (xpi/firefox-i18n-61.0/sq.xpi) = 496574 +SHA256 (xpi/firefox-i18n-61.0/sr.xpi) = 56cb274163b620e7e662ebe2936c5540dc17ab59038178d887cd36b673b617be +SIZE (xpi/firefox-i18n-61.0/sr.xpi) = 519557 +SHA256 (xpi/firefox-i18n-61.0/sv-SE.xpi) = be9d00b7bc5cd208e30816e3cee6cdfce61b2d9e438a2ae0d11b0583ab5104f6 +SIZE (xpi/firefox-i18n-61.0/sv-SE.xpi) = 491597 +SHA256 (xpi/firefox-i18n-61.0/ta.xpi) = 490ec1b7b8978c07e442e9e57fa3a1ad7d453d670ab5cd2968077cf1c0b7c325 +SIZE (xpi/firefox-i18n-61.0/ta.xpi) = 541874 +SHA256 (xpi/firefox-i18n-61.0/te.xpi) = 7e893fcee8c031a035f8dcd5cdb903b946f83aa5c577f1cb0911fff9753a12ad +SIZE (xpi/firefox-i18n-61.0/te.xpi) = 558639 +SHA256 (xpi/firefox-i18n-61.0/th.xpi) = 86b389a1de8921b158b6bc3fcb090cc1917c07205014089c9ee12a43bccadb08 +SIZE (xpi/firefox-i18n-61.0/th.xpi) = 531116 +SHA256 (xpi/firefox-i18n-61.0/tr.xpi) = e4e2c85df418ce35abb5de49d18abea8f923440c06a88efa5c0e61ffdf7b59da +SIZE (xpi/firefox-i18n-61.0/tr.xpi) = 498510 +SHA256 (xpi/firefox-i18n-61.0/uk.xpi) = a45318b8c3905e0357f6f222f861f14c69b9f9f496ffe3bd99d1b289f97d7f5c +SIZE (xpi/firefox-i18n-61.0/uk.xpi) = 553597 +SHA256 (xpi/firefox-i18n-61.0/ur.xpi) = 6986874021a8e79f46db9695faccf53d99c939ca6d3ea22ec35a07c973836fa8 +SIZE (xpi/firefox-i18n-61.0/ur.xpi) = 531618 +SHA256 (xpi/firefox-i18n-61.0/uz.xpi) = 3dcfb7f9fb9e90578d0c5c56b6494664bcd16da378a81a30443bbe9297434bb6 +SIZE (xpi/firefox-i18n-61.0/uz.xpi) = 482052 +SHA256 (xpi/firefox-i18n-61.0/vi.xpi) = 27f856dd839b20a05b66c37653be78c6bb7a461bba3f25340ad6d007a9500211 +SIZE (xpi/firefox-i18n-61.0/vi.xpi) = 500411 +SHA256 (xpi/firefox-i18n-61.0/xh.xpi) = 553074aefd3b5c747246683754a3f3586734d61654211c6111dc1cc65a7b2793 +SIZE (xpi/firefox-i18n-61.0/xh.xpi) = 481790 +SHA256 (xpi/firefox-i18n-61.0/zh-CN.xpi) = 47de4388fbb67520d95b86dd1daaebb4a3f7fb7877c703c1d4c5b4d08d61614f +SIZE (xpi/firefox-i18n-61.0/zh-CN.xpi) = 514399 +SHA256 (xpi/firefox-i18n-61.0/zh-TW.xpi) = 3b33af36adb7c7c070d066b81203e0ada3bef549db74c06e0d41301a47a2448f +SIZE (xpi/firefox-i18n-61.0/zh-TW.xpi) = 513546 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/Makefile Tue Jun 19 00:37:43 2018 (r472727) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.0.2 +DISTVERSION= 61.0 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ @@ -13,7 +13,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.19:devel/nspr \ - nss>=3.36.1:security/nss \ + nss>=3.37:security/nss \ icu>=59.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=1.7.6:print/harfbuzz \ @@ -21,7 +21,7 @@ BUILD_DEPENDS= nspr>=4.19:devel/nspr \ png>=1.6.34:graphics/png \ libvorbis>=1.3.6,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ - sqlite3>=3.22.0:databases/sqlite3 \ + sqlite3>=3.23.1:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ @@ -32,7 +32,7 @@ BUILD_DEPENDS= nspr>=4.19:devel/nspr \ USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -cairo -soundtouch +USE_MOZILLA= -cairo -hunspell -soundtouch USE_GL= gl USES= tar:xz @@ -43,7 +43,7 @@ FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILL MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding -OPTIONS_EXCLUDE= BUNDLED_CAIRO +OPTIONS_EXCLUDE= BUNDLED_CAIRO DTRACE .include "${.CURDIR}/../../www/firefox/Makefile.options" Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/distinfo Tue Jun 19 00:37:43 2018 (r472727) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528228087 -SHA256 (firefox-60.0.2.source.tar.xz) = 764566a06b71164e7fd20b2b0e6b08a71b4ccd4d6fd61867eb08011a551f6725 -SIZE (firefox-60.0.2.source.tar.xz) = 271930220 +TIMESTAMP = 1529363060 +SHA256 (firefox-61.0.source.tar.xz) = d1219830af3b8b64eace38cc9844bb04bf06537909e9aa1dd7682cb1b2099721 +SIZE (firefox-61.0.source.tar.xz) = 266279484 Modified: head/www/firefox/files/patch-addon-search ============================================================================== --- head/www/firefox/files/patch-addon-search Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/files/patch-addon-search Tue Jun 19 00:37:43 2018 (r472727) @@ -40,11 +40,11 @@ index f70fd8d7e3bd8..81e8cd7764fdf 100644 if (file.url) { addon.sourceURI = NetUtil.newURI(file.url); } -diff --git toolkit/mozapps/extensions/internal/XPIProvider.jsm toolkit/mozapps/extensions/internal/XPIProvider.jsm +diff --git toolkit/mozapps/extensions/internal/XPIDatabase.jsm toolkit/mozapps/extensions/internal/XPIDatabase.jsm index f70fd8d7e3bd8..81e8cd7764fdf 100644 ---- toolkit/mozapps/extensions/internal/XPIProvider.jsm -+++ toolkit/mozapps/extensions/internal/XPIProvider.jsm -@@ -4974,7 +4974,7 @@ AddonInternal.prototype = { +--- toolkit/mozapps/extensions/internal/XPIDatabase.jsm ++++ toolkit/mozapps/extensions/internal/XPIDatabase.jsm +@@ -355,7 +355,7 @@ class AddonInternal { // Something is causing errors in here try { for (let platform of this.targetPlatforms) { Modified: head/www/firefox/files/patch-bug1021761 ============================================================================== --- head/www/firefox/files/patch-bug1021761 Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/files/patch-bug1021761 Tue Jun 19 00:37:43 2018 (r472727) @@ -689,7 +689,7 @@ new file mode 100644 index 000000000000..7d96168b9ea6 --- /dev/null +++ media/libcubeb/src/cubeb_oss.c -@@ -0,0 +1,454 @@ +@@ -0,0 +1,453 @@ +/* + * Copyright © 2014 Mozilla Foundation + * @@ -1126,7 +1126,6 @@ index 000000000000..7d96168b9ea6 + .get_max_channel_count = oss_get_max_channel_count, + .get_min_latency = oss_get_min_latency, + .get_preferred_sample_rate = oss_get_preferred_sample_rate, -+ .get_preferred_channel_layout = NULL, + .enumerate_devices = NULL, + .device_collection_destroy = NULL, + .destroy = oss_destroy, @@ -1161,10 +1160,10 @@ index e1fea30ca417..a5b1100f1014 100644 if CONFIG['MOZ_PULSEAUDIO'] or CONFIG['MOZ_JACK']: SOURCES += [ 'cubeb_resampler.cpp', -@@ -88,6 +94,7 @@ if CONFIG['OS_TARGET'] == 'Android': - FINAL_LIBRARY = 'gkmedias' +@@ -89,6 +95,7 @@ FINAL_LIBRARY = 'gkmedias' CFLAGS += CONFIG['MOZ_ALSA_CFLAGS'] + CFLAGS += CONFIG['MOZ_JACK_CFLAGS'] +CFLAGS += CONFIG['MOZ_OSS_CFLAGS'] CFLAGS += CONFIG['MOZ_PULSEAUDIO_CFLAGS'] @@ -1250,9 +1249,9 @@ index 28e1a9e48d61..edacedcf6e5d 100644 +AC_SUBST_LIST(MOZ_OSS_CFLAGS) +AC_SUBST_LIST(MOZ_OSS_LIBS) + - dnl ================================== - dnl = Check alsa availability on Linux - dnl ================================== + dnl ======================================================== + dnl NegotiateAuth + dnl ======================================================== diff --git toolkit/library/moz.build toolkit/library/moz.build index e06592daa265..ce016b96c2bc 100644 --- toolkit/library/moz.build Modified: head/www/firefox/files/patch-dom_media_flac_FlacDecoder.cpp ============================================================================== --- head/www/firefox/files/patch-dom_media_flac_FlacDecoder.cpp Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/files/patch-dom_media_flac_FlacDecoder.cpp Tue Jun 19 00:37:43 2018 (r472727) @@ -7,7 +7,7 @@ index 53fc3c9937f7..b23771ab80fa 100644 @@ -7,6 +7,7 @@ #include "FlacDecoder.h" #include "MediaContainerType.h" - #include "MediaPrefs.h" + #include "mozilla/StaticPrefs.h" +#include "PDMFactory.h" namespace mozilla { @@ -15,10 +15,10 @@ index 53fc3c9937f7..b23771ab80fa 100644 @@ -15,6 +16,10 @@ FlacDecoder::IsEnabled() { #ifdef MOZ_FFVPX - return MediaPrefs::FlacEnabled(); + return StaticPrefs::MediaFlacEnabled(); +#elif defined(MOZ_FFMPEG) + RefPtr platform = new PDMFactory(); -+ return MediaPrefs::FlacEnabled() && platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/flac"), ++ return StaticPrefs::MediaFlacEnabled() && platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/flac"), + /* DecoderDoctorDiagnostics* */ nullptr); #else // Until bug 1295886 is fixed. Modified: head/www/firefox/files/patch-u2f-hid-rs62 ============================================================================== --- head/www/firefox/files/patch-u2f-hid-rs62 Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/files/patch-u2f-hid-rs62 Tue Jun 19 00:37:43 2018 (r472727) @@ -4,7 +4,7 @@ diff --git Cargo.lock Cargo.lock index 4bfba0eb2f52..cd4d80035d81 100644 --- Cargo.lock +++ Cargo.lock -@@ -486,6 +486,15 @@ dependencies = [ +@@ -552,6 +552,15 @@ dependencies = [ "unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -13,14 +13,14 @@ index 4bfba0eb2f52..cd4d80035d81 100644 +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 3.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] - name = "dtoa" - version = "0.4.2" -@@ -1170,6 +1179,14 @@ name = "nom" + name = "diff" + version = "0.1.11" +@@ -1351,6 +1360,14 @@ name = "nom" version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -35,23 +35,23 @@ index 4bfba0eb2f52..cd4d80035d81 100644 [[package]] name = "nserror" version = "0.1.0" -@@ -1863,6 +1880,7 @@ dependencies = [ +@@ -2126,6 +2143,7 @@ dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "boxfnonce 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "devd-rs 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)", "libudev 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", -@@ -2220,6 +2238,7 @@ dependencies = [ + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +@@ -2511,6 +2529,7 @@ dependencies = [ "checksum darling_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "167dd3e235c2f1da16a635c282630452cdf49191eb05711de1bcd1d3d5068c00" "checksum darling_macro 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c53edaba455f6073a10c27c72440860eb3f60444f8c8660a391032eeae744d82" "checksum debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9a032eac705ca39214d169f83e3d3da290af06d8d1d344d1baad2fd002dca4b3" +"checksum devd-rs 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e7c9ac481c38baf400d3b732e4a06850dfaa491d1b6379a249d9d40d14c2434c" + "checksum diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "3c2b69f912779fbb121ceb775d74d51e915af17aaebc38d28a592843a2dd0a3a" + "checksum docopt 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d8acd393692c503b168471874953a2531df0e9ab77d0b6bbc582395743300a4a" "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab" - "checksum dtoa-short 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "068d4026697c1a18f0b0bb8cfcad1b0c151b90d8edb9bf4c235ad68128920d1d" - "checksum dwrote 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a207eb7b40e25d1d28dc679f451d321fb6954b73ceaa47986702575865469461" -@@ -2279,6 +2298,7 @@ dependencies = [ +@@ -2581,6 +2600,7 @@ dependencies = [ "checksum net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)" = "3a80f842784ef6c9a958b68b7516bc7e35883c614004dd94959a4dca1b716c09" "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" "checksum nom 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b8c256fd9471521bcb84c3cdba98921497f1a331cbc15b8030fc63b82050ce" @@ -73,14 +73,6 @@ index a0ab8ce71067..046de1e46f15 100644 [target.'cfg(target_os = "macos")'.dependencies] core-foundation-sys = "0.5.1" -@@ -21,6 +24,6 @@ runloop = "0.1.0" - bitflags = "1.0" - - [dev-dependencies] --rust-crypto = "^0.2" -+sha2 = "^0.7" - base64 = "^0.4" - env_logger = "0.4.1" diff --git dom/webauthn/u2f-hid-rs/README.md dom/webauthn/u2f-hid-rs/README.md index 2edf412211b5..a29905832e5e 100644 --- dom/webauthn/u2f-hid-rs/README.md @@ -94,61 +86,6 @@ index 2edf412211b5..a29905832e5e 100644 * **Supported HID Transports**: USB. * **Supported Protocols**: [FIDO U2F over USB](https://fidoalliance.org/specs/fido-u2f-v1.1-id-20160915/fido-u2f-raw-message-formats-v1.1-id-20160915.html). -diff --git dom/webauthn/u2f-hid-rs/examples/main.rs dom/webauthn/u2f-hid-rs/examples/main.rs -index d0b02e61a05b..8ecf102f2136 100644 ---- dom/webauthn/u2f-hid-rs/examples/main.rs -+++ dom/webauthn/u2f-hid-rs/examples/main.rs -@@ -3,10 +3,9 @@ - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - - extern crate base64; --extern crate crypto; -+extern crate sha2; - extern crate u2fhid; --use crypto::digest::Digest; --use crypto::sha2::Sha256; -+use sha2::{Digest, Sha256}; - use std::io; - use std::sync::mpsc::channel; - use u2fhid::{AuthenticatorTransports, KeyHandle, RegisterFlags, SignFlags, U2FManager}; -@@ -17,10 +16,12 @@ extern crate log; - macro_rules! try_or { - ($val:expr, $or:expr) => { - match $val { -- Ok(v) => { v } -- Err(e) => { return $or(e); } -+ Ok(v) => v, -+ Err(e) => { -+ return $or(e); -+ } - } -- } -+ }; - } - - fn u2f_get_key_handle_from_register_response(register_response: &Vec) -> io::Result> { -@@ -46,15 +47,13 @@ fn main() { - let challenge_str = format!("{}{}", - r#"{"challenge": "1vQ9mxionq0ngCnjD-wTsv1zUSrGRtFqG2xP09SbZ70","#, - r#" "version": "U2F_V2", "appId": "http://demo.yubico.com"}"#); -- let mut challenge = Sha256::new(); -- challenge.input_str(&challenge_str); -- let mut chall_bytes: Vec = vec![0; challenge.output_bytes()]; -- challenge.result(&mut chall_bytes); -+ let mut challenge = Sha256::default(); -+ challenge.input(challenge_str.as_bytes()); -+ let chall_bytes = Vec::from(challenge.result().as_slice()); - -- let mut application = Sha256::new(); -- application.input_str("http://demo.yubico.com"); -- let mut app_bytes: Vec = vec![0; application.output_bytes()]; -- application.result(&mut app_bytes); -+ let mut application = Sha256::default(); -+ application.input("http://demo.yubico.com".as_bytes()); -+ let app_bytes = Vec::from(application.result().as_slice()); - - let manager = U2FManager::new().unwrap(); - let flags = RegisterFlags::empty(); diff --git dom/webauthn/u2f-hid-rs/src/freebsd/device.rs dom/webauthn/u2f-hid-rs/src/freebsd/device.rs new file mode 100644 index 000000000000..5b9e7f2a912e @@ -756,42 +693,6 @@ index 1307497e91ac..e0cdc5080924 100644 #[path = "stub/mod.rs"] pub mod platform; -@@ -39,8 +51,8 @@ extern crate bitflags; - - mod consts; - mod statemachine; --mod u2ftypes; - mod u2fprotocol; -+mod u2ftypes; - - mod manager; - pub use manager::U2FManager; -@@ -88,9 +100,9 @@ pub enum Error { - NotAllowed = 5, - } - -+#[cfg(fuzzing)] -+pub use consts::*; - #[cfg(fuzzing)] - pub use u2fprotocol::*; - #[cfg(fuzzing)] - pub use u2ftypes::*; --#[cfg(fuzzing)] --pub use consts::*; -diff --git dom/webauthn/u2f-hid-rs/src/linux/device.rs dom/webauthn/u2f-hid-rs/src/linux/device.rs -index 6ed57106920f..35569f88a190 100644 ---- dom/webauthn/u2f-hid-rs/src/linux/device.rs -+++ dom/webauthn/u2f-hid-rs/src/linux/device.rs -@@ -11,8 +11,8 @@ use std::os::unix::prelude::*; - - use consts::CID_BROADCAST; - use platform::hidraw; --use util::from_unix_result; - use u2ftypes::U2FDevice; -+use util::from_unix_result; - - #[derive(Debug)] - pub struct Device { diff --git dom/webauthn/u2f-hid-rs/src/linux/hidraw.rs dom/webauthn/u2f-hid-rs/src/linux/hidraw.rs index 0ce5d379c3f7..182fe0ec5f2e 100644 --- dom/webauthn/u2f-hid-rs/src/linux/hidraw.rs @@ -821,7 +722,7 @@ index 0ce5d379c3f7..182fe0ec5f2e 100644 const NRBITS: u32 = 8; const TYPEBITS: u32 = 8; -@@ -35,28 +29,15 @@ const TYPESHIFT: u32 = NRSHIFT + NRBITS as u32; +@@ -35,17 +29,6 @@ const TYPESHIFT: u32 = NRSHIFT + NRBITS as u32; const SIZESHIFT: u32 = TYPESHIFT + TYPEBITS as u32; const DIRSHIFT: u32 = SIZESHIFT + SIZEBITS as u32; @@ -839,28 +740,8 @@ index 0ce5d379c3f7..182fe0ec5f2e 100644 // https://github.com/torvalds/linux/blob/master/include/uapi/linux/hid.h const HID_MAX_DESCRIPTOR_SIZE: usize = 4096; - macro_rules! ioctl { -- ($dir:expr, $name:ident, $ioty:expr, $nr:expr; $ty:ty) => ( -+ ($dir:expr, $name:ident, $ioty:expr, $nr:expr; $ty:ty) => { - pub unsafe fn $name(fd: libc::c_int, val: *mut $ty) -> io::Result { - let size = mem::size_of::<$ty>(); -- let ioc = (($dir as u32) << DIRSHIFT) | -- (($ioty as u32) << TYPESHIFT) | -- (($nr as u32) << NRSHIFT) | -- ((size as u32) << SIZESHIFT); -+ let ioc = (($dir as u32) << DIRSHIFT) | (($ioty as u32) << TYPESHIFT) -+ | (($nr as u32) << NRSHIFT) | ((size as u32) << SIZESHIFT); +@@ -68,115 +51,7 @@ macro_rules! ioctl { - #[cfg(not(target_env = "musl"))] - type IocType = libc::c_ulong; -@@ -65,120 +46,12 @@ macro_rules! ioctl { - - from_unix_result(libc::ioctl(fd, ioc as IocType, val)) - } -- ); -+ }; - } - // https://github.com/torvalds/linux/blob/master/include/uapi/linux/hidraw.h ioctl!(READ, hidiocgrdescsize, b'H', 0x01; ::libc::c_int); -ioctl!(READ, hidiocgrdesc, b'H', 0x02; /*struct*/ ReportDescriptor); @@ -1013,126 +894,10 @@ index 0ce5d379c3f7..182fe0ec5f2e 100644 + value.truncate(desc.size as usize); + Ok(ReportDescriptor { value }) } -diff --git dom/webauthn/u2f-hid-rs/src/linux/monitor.rs dom/webauthn/u2f-hid-rs/src/linux/monitor.rs -index 47c376ba9176..408ea4b7b9ad 100644 ---- dom/webauthn/u2f-hid-rs/src/linux/monitor.rs -+++ dom/webauthn/u2f-hid-rs/src/linux/monitor.rs -@@ -65,13 +65,11 @@ where - - // Start listening for new devices. - let mut socket = monitor.listen()?; -- let mut fds = vec![ -- ::libc::pollfd { -- fd: socket.as_raw_fd(), -- events: POLLIN, -- revents: 0, -- }, -- ]; -+ let mut fds = vec![::libc::pollfd { -+ fd: socket.as_raw_fd(), -+ events: POLLIN, -+ revents: 0, -+ }]; - - while alive() { - // Wait for new events, break on failure. -diff --git dom/webauthn/u2f-hid-rs/src/macos/iokit.rs dom/webauthn/u2f-hid-rs/src/macos/iokit.rs -index 7e550af2a445..79e53599004e 100644 ---- dom/webauthn/u2f-hid-rs/src/macos/iokit.rs -+++ dom/webauthn/u2f-hid-rs/src/macos/iokit.rs -@@ -282,13 +282,13 @@ extern "C" { - - #[cfg(test)] - mod tests { -+ use super::*; - use core_foundation_sys::base::*; - use core_foundation_sys::runloop::*; - use libc::c_void; - use std::ptr; - use std::sync::mpsc::{channel, Sender}; - use std::thread; -- use super::*; - - extern "C" fn observe(_: CFRunLoopObserverRef, _: CFRunLoopActivity, context: *mut c_void) { - let tx: &Sender = unsafe { &*(context as *mut _) }; -diff --git dom/webauthn/u2f-hid-rs/src/macos/monitor.rs dom/webauthn/u2f-hid-rs/src/macos/monitor.rs -index c346fe5eff57..b971ed885d18 100644 ---- dom/webauthn/u2f-hid-rs/src/macos/monitor.rs -+++ dom/webauthn/u2f-hid-rs/src/macos/monitor.rs -@@ -10,9 +10,9 @@ use core_foundation_sys::runloop::*; - use libc::c_void; - use platform::iokit::*; - use runloop::RunLoop; --use std::{io, slice}; - use std::collections::HashMap; - use std::sync::mpsc::{channel, Receiver, Sender}; -+use std::{io, slice}; - use util::io_err; - - struct DeviceData { -diff --git dom/webauthn/u2f-hid-rs/src/manager.rs dom/webauthn/u2f-hid-rs/src/manager.rs -index c9f92bdbfad5..ca8b80a9584a 100644 ---- dom/webauthn/u2f-hid-rs/src/manager.rs -+++ dom/webauthn/u2f-hid-rs/src/manager.rs -@@ -7,8 +7,8 @@ use std::sync::mpsc::{channel, RecvTimeoutError, Sender}; - use std::time::Duration; - - use consts::PARAMETER_SIZE; --use statemachine::StateMachine; - use runloop::RunLoop; -+use statemachine::StateMachine; - use util::OnceCallback; - - enum QueueAction { -diff --git dom/webauthn/u2f-hid-rs/src/statemachine.rs dom/webauthn/u2f-hid-rs/src/statemachine.rs -index 8e4abaa7cf02..55e7d36155a3 100644 ---- dom/webauthn/u2f-hid-rs/src/statemachine.rs -+++ dom/webauthn/u2f-hid-rs/src/statemachine.rs -@@ -7,8 +7,8 @@ use platform::device::Device; - use platform::transaction::Transaction; - use std::thread; - use std::time::Duration; --use util::OnceCallback; - use u2fprotocol::{u2f_init_device, u2f_is_keyhandle_valid, u2f_register, u2f_sign}; -+use util::OnceCallback; - - fn is_valid_transport(transports: ::AuthenticatorTransports) -> bool { - transports.is_empty() || transports.contains(::AuthenticatorTransports::USB) -diff --git dom/webauthn/u2f-hid-rs/src/u2fprotocol.rs dom/webauthn/u2f-hid-rs/src/u2fprotocol.rs -index 4d6737b1289e..0b984407d873 100644 ---- dom/webauthn/u2f-hid-rs/src/u2fprotocol.rs -+++ dom/webauthn/u2f-hid-rs/src/u2fprotocol.rs -@@ -5,9 +5,9 @@ - extern crate std; - - use rand::{thread_rng, Rng}; -+use std::ffi::CString; - use std::io; - use std::io::{Read, Write}; --use std::ffi::CString; - - use consts::*; - use u2ftypes::*; diff --git dom/webauthn/u2f-hid-rs/src/util.rs dom/webauthn/u2f-hid-rs/src/util.rs index 27db864e2fcd..770e166d57d2 100644 --- dom/webauthn/u2f-hid-rs/src/util.rs +++ dom/webauthn/u2f-hid-rs/src/util.rs -@@ -12,10 +12,12 @@ use boxfnonce::SendBoxFnOnce; - macro_rules! try_or { - ($val:expr, $or:expr) => { - match $val { -- Ok(v) => { v } -- Err(e) => { return $or(e); } -+ Ok(v) => v, -+ Err(e) => { -+ return $or(e); -+ } - } -- } -+ }; - } - - pub trait Signed { @@ -44,6 +46,16 @@ pub fn from_unix_result(rv: T) -> io::Result { } } @@ -1150,33 +915,6 @@ index 27db864e2fcd..770e166d57d2 100644 pub fn io_err(msg: &str) -> io::Error { io::Error::new(io::ErrorKind::Other, msg) } -diff --git dom/webauthn/u2f-hid-rs/src/windows/device.rs dom/webauthn/u2f-hid-rs/src/windows/device.rs -index cbbe2811d672..5579cc052a6f 100644 ---- dom/webauthn/u2f-hid-rs/src/windows/device.rs -+++ dom/webauthn/u2f-hid-rs/src/windows/device.rs -@@ -7,8 +7,8 @@ use std::io; - use std::io::{Read, Write}; - use std::os::windows::io::AsRawHandle; - --use consts::{FIDO_USAGE_U2FHID, CID_BROADCAST, FIDO_USAGE_PAGE, HID_RPT_SIZE}; - use super::winapi::DeviceCapabilities; -+use consts::{FIDO_USAGE_U2FHID, CID_BROADCAST, FIDO_USAGE_PAGE, HID_RPT_SIZE}; - - use u2ftypes::U2FDevice; - -diff --git dom/webauthn/u2f-hid-rs/src/windows/winapi.rs dom/webauthn/u2f-hid-rs/src/windows/winapi.rs -index 18c6898e86ee..bd8a7e58d06a 100644 ---- dom/webauthn/u2f-hid-rs/src/windows/winapi.rs -+++ dom/webauthn/u2f-hid-rs/src/windows/winapi.rs -@@ -60,7 +60,7 @@ extern "stdcall" { - macro_rules! offset_of { - ($ty:ty, $field:ident) => { - unsafe { &(*(0 as *const $ty)).$field as *const _ as usize } -- } -+ }; - } - - fn from_wide_ptr(ptr: *const u16, len: usize) -> String { diff --git third_party/rust/devd-rs/.cargo-checksum.json third_party/rust/devd-rs/.cargo-checksum.json new file mode 100644 index 000000000000..7f8c6af3141e Modified: head/www/firefox/files/patch-z-bug517422 ============================================================================== --- head/www/firefox/files/patch-z-bug517422 Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox/files/patch-z-bug517422 Tue Jun 19 00:37:43 2018 (r472727) @@ -132,10 +132,10 @@ diff --git dom/media/AudioStream.h dom/media/AudioStre index 7dc1f60f95cc..67d402a4117f 100644 --- dom/media/AudioStream.h +++ dom/media/AudioStream.h -@@ -15,7 +15,11 @@ - #include "mozilla/TimeStamp.h" - #include "mozilla/UniquePtr.h" - #include "CubebUtils.h" +@@ -16,7 +16,11 @@ + #include "nsAutoPtr.h" + #include "nsCOMPtr.h" + #include "nsThreadUtils.h" +#ifdef MOZ_SYSTEM_SOUNDTOUCH +#include "soundtouch/SoundTouch.h" +#else From owner-svn-ports-head@freebsd.org Tue Jun 19 00:44:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49A76100A224; Tue, 19 Jun 2018 00:44:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F05607CB39; Tue, 19 Jun 2018 00:44:27 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CC3704063; Tue, 19 Jun 2018 00:44:27 +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 w5J0iRY2093265; Tue, 19 Jun 2018 00:44:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J0iRb1093264; Tue, 19 Jun 2018 00:44:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806190044.w5J0iRb1093264@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Jun 2018 00:44:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472730 - head/www/firefox X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/firefox X-SVN-Commit-Revision: 472730 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 00:44:28 -0000 Author: jbeich Date: Tue Jun 19 00:44:27 2018 New Revision: 472730 URL: https://svnweb.freebsd.org/changeset/ports/472730 Log: www/firefox: chase nss version requirement Modified: head/www/firefox/Makefile (contents, props changed) Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Tue Jun 19 00:39:21 2018 (r472729) +++ head/www/firefox/Makefile Tue Jun 19 00:44:27 2018 (r472730) @@ -13,7 +13,7 @@ MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.19:devel/nspr \ - nss>=3.37:security/nss \ + nss>=3.37.3:security/nss \ icu>=59.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=1.7.6:print/harfbuzz \ From owner-svn-ports-head@freebsd.org Tue Jun 19 01:18:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4382E100CBEE; Tue, 19 Jun 2018 01:18:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ECE4D7E50A; Tue, 19 Jun 2018 01:18:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B589545D6; Tue, 19 Jun 2018 01:18:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1I8r9008671; Tue, 19 Jun 2018 01:18:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1I88J008670; Tue, 19 Jun 2018 01:18:08 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190118.w5J1I88J008670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:18:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472731 - head/science/py-abipy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-abipy X-SVN-Commit-Revision: 472731 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:18:09 -0000 Author: yuri Date: Tue Jun 19 01:18:08 2018 New Revision: 472731 URL: https://svnweb.freebsd.org/changeset/ports/472731 Log: science/py-abipy: Change FLAVOR -> PY_FLAVOR Reported by: mat Modified: head/science/py-abipy/Makefile Modified: head/science/py-abipy/Makefile ============================================================================== --- head/science/py-abipy/Makefile Tue Jun 19 00:44:27 2018 (r472730) +++ head/science/py-abipy/Makefile Tue Jun 19 01:18:08 2018 (r472731) @@ -11,21 +11,21 @@ COMMENT= Library for analyzing the results produced by LICENSE= GPLv2 BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}apscheduler>=2.1.0:devel/py-apscheduler@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}html2text>0:textproc/py-html2text@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}netCDF4>0:science/py-netCDF4@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}prettytable>0:devel/py-prettytable@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pydispatcher>=2.0.5:devel/py-pydispatcher@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pymatgen>=2018.6.11:science/py-pymatgen@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}seaborn>0:math/py-seaborn@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}spglib>0:science/py-spglib@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tqdm>0:misc/py-tqdm@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}apscheduler>=2.1.0:devel/py-apscheduler@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}html2text>0:textproc/py-html2text@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}netCDF4>0:science/py-netCDF4@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}prettytable>0:devel/py-prettytable@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydispatcher>=2.0.5:devel/py-pydispatcher@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pymatgen>=2018.6.11:science/py-pymatgen@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}seaborn>0:math/py-seaborn@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}spglib>0:science/py-spglib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tabulate>0:devel/py-tabulate@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tqdm>0:misc/py-tqdm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${PY_FLAVOR} USES= python shebangfix USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Tue Jun 19 01:22:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97DFF100D880; Tue, 19 Jun 2018 01:22:33 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4838A7ECF1; Tue, 19 Jun 2018 01:22:33 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2AD0147A1; Tue, 19 Jun 2018 01:22:33 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1MXvE013566; Tue, 19 Jun 2018 01:22:33 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1MXhk013565; Tue, 19 Jun 2018 01:22:33 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190122.w5J1MXhk013565@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:22:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472732 - head/devel/py-Breve X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-Breve X-SVN-Commit-Revision: 472732 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:22:33 -0000 Author: yuri Date: Tue Jun 19 01:22:32 2018 New Revision: 472732 URL: https://svnweb.freebsd.org/changeset/ports/472732 Log: devel/py-Breve: Add USE_PYTHON=concurrent Also add LICENSE Approved by: portmgr blanket Modified: head/devel/py-Breve/Makefile Modified: head/devel/py-Breve/Makefile ============================================================================== --- head/devel/py-Breve/Makefile Tue Jun 19 01:18:08 2018 (r472731) +++ head/devel/py-Breve/Makefile Tue Jun 19 01:22:32 2018 (r472732) @@ -3,7 +3,7 @@ PORTNAME= Breve PORTVERSION= 1.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= http://breve.twisty-industries.com/downloads/ \ LOCAL/nivit/${PORTNAME} @@ -12,7 +12,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= nivit@FreeBSD.org COMMENT= Python s-expression style template engine +LICENSE= MIT + USES= python:2.7 -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist .include From owner-svn-ports-head@freebsd.org Tue Jun 19 01:25:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78E9F100DF05; Tue, 19 Jun 2018 01:25:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 19D647EFD7; Tue, 19 Jun 2018 01:25:26 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E968A47BA; Tue, 19 Jun 2018 01:25:25 +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 w5J1PPwj013772; Tue, 19 Jun 2018 01:25:25 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1PPNj013771; Tue, 19 Jun 2018 01:25:25 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806190125.w5J1PPNj013771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 19 Jun 2018 01:25:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472733 - head/games/armagetron X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/games/armagetron X-SVN-Commit-Revision: 472733 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:25:26 -0000 Author: linimon Date: Tue Jun 19 01:25:25 2018 New Revision: 472733 URL: https://svnweb.freebsd.org/changeset/ports/472733 Log: Fails the same way on aarch64/11 as on 12. Approved by: portmgr (tier-2 blanket) Modified: head/games/armagetron/Makefile Modified: head/games/armagetron/Makefile ============================================================================== --- head/games/armagetron/Makefile Tue Jun 19 01:22:32 2018 (r472732) +++ head/games/armagetron/Makefile Tue Jun 19 01:25:25 2018 (r472733) @@ -15,7 +15,7 @@ COMMENT= Multiplayer networked Tron clone in 3D LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_FreeBSD_12_aarch64= network/nNetObject.cpp:1533:46: error: ordered comparison between pointer and zero ('const nSocket *' and 'int') +BROKEN_aarch64= network/nNetObject.cpp:1533:46: error: ordered comparison between pointer and zero ('const nSocket *' and 'int') BROKEN_FreeBSD_12_armv6= network/nNetObject.cpp:1533:46: error: ordered comparison between pointer and zero ('const nSocket *' and 'int') BROKEN_FreeBSD_12_armv7= network/nNetObject.cpp:1533:46: error: ordered comparison between pointer and zero ('const nSocket *' and 'int') From owner-svn-ports-head@freebsd.org Tue Jun 19 01:27:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49F7D100E187; Tue, 19 Jun 2018 01:27:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EABAD7F18E; Tue, 19 Jun 2018 01:27:03 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CBD8847CB; Tue, 19 Jun 2018 01:27: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 w5J1R3nr013920; Tue, 19 Jun 2018 01:27:03 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1R3fp013919; Tue, 19 Jun 2018 01:27:03 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806190127.w5J1R3fp013919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 19 Jun 2018 01:27:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472734 - head/security/pecl-crypto X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/security/pecl-crypto X-SVN-Commit-Revision: 472734 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:27:04 -0000 Author: linimon Date: Tue Jun 19 01:27:03 2018 New Revision: 472734 URL: https://svnweb.freebsd.org/changeset/ports/472734 Log: Fails the same way on aarch64/11 as on 12. Approved by: portmgr (tier-2 blanket) Modified: head/security/pecl-crypto/Makefile Modified: head/security/pecl-crypto/Makefile ============================================================================== --- head/security/pecl-crypto/Makefile Tue Jun 19 01:25:25 2018 (r472733) +++ head/security/pecl-crypto/Makefile Tue Jun 19 01:27:03 2018 (r472734) @@ -10,7 +10,7 @@ COMMENT= Objective wrapper for OpenSSL Crypto Library LICENSE= PHP301 -BROKEN_FreeBSD_12_aarch64= fails to configure: C compiler cannot create executables +BROKEN_aarch64= fails to configure: C compiler cannot create executables BROKEN_armv6= fails to configure: C compiler cannot create executables BROKEN_armv7= fails to configure: C compiler cannot create executables BROKEN_mips= fails to configure: C compiler cannot create executables From owner-svn-ports-head@freebsd.org Tue Jun 19 01:30:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39ECC100E79C; Tue, 19 Jun 2018 01:30:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E43917F4A9; Tue, 19 Jun 2018 01:30:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C629647FF; Tue, 19 Jun 2018 01:30:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1U4eK014168; Tue, 19 Jun 2018 01:30:04 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1U4vd014167; Tue, 19 Jun 2018 01:30:04 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190130.w5J1U4vd014167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:30:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472735 - in head/graphics/py-wand: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics/py-wand: . files X-SVN-Commit-Revision: 472735 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:30:05 -0000 Author: yuri Date: Tue Jun 19 01:30:04 2018 New Revision: 472735 URL: https://svnweb.freebsd.org/changeset/ports/472735 Log: graphics/py-wand: Remove conflict between flavors README.rst was the only file installed ijnto DATADIR - removed it. Approved by: portmgr Added: head/graphics/py-wand/files/ head/graphics/py-wand/files/patch-setup.py (contents, props changed) Modified: head/graphics/py-wand/Makefile Modified: head/graphics/py-wand/Makefile ============================================================================== --- head/graphics/py-wand/Makefile Tue Jun 19 01:27:03 2018 (r472734) +++ head/graphics/py-wand/Makefile Tue Jun 19 01:30:04 2018 (r472735) @@ -2,7 +2,7 @@ PORTNAME= Wand PORTVERSION= 0.4.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Added: head/graphics/py-wand/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-wand/files/patch-setup.py Tue Jun 19 01:30:04 2018 (r472735) @@ -0,0 +1,10 @@ +--- setup.py.orig 2016-10-22 05:27:48 UTC ++++ setup.py +@@ -35,7 +35,6 @@ else: + setup( + name='Wand', + packages=['wand'], +- data_files=[('', ['README.rst'])], + version=VERSION, + description='Ctypes-based simple MagickWand API binding for Python', + long_description=readme(), From owner-svn-ports-head@freebsd.org Tue Jun 19 01:33:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAE73100EFBE; Tue, 19 Jun 2018 01:33:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 50B577FCB1; Tue, 19 Jun 2018 01:33:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 31AC949B9; Tue, 19 Jun 2018 01:33:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1XTTG019082; Tue, 19 Jun 2018 01:33:29 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1XTtT019081; Tue, 19 Jun 2018 01:33:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190133.w5J1XTtT019081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:33:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472736 - head/multimedia/py-PySceneDetect X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/multimedia/py-PySceneDetect X-SVN-Commit-Revision: 472736 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:33:29 -0000 Author: yuri Date: Tue Jun 19 01:33:28 2018 New Revision: 472736 URL: https://svnweb.freebsd.org/changeset/ports/472736 Log: multimedia/py-PySceneDetect: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/multimedia/py-PySceneDetect/Makefile Modified: head/multimedia/py-PySceneDetect/Makefile ============================================================================== --- head/multimedia/py-PySceneDetect/Makefile Tue Jun 19 01:30:04 2018 (r472735) +++ head/multimedia/py-PySceneDetect/Makefile Tue Jun 19 01:33:28 2018 (r472736) @@ -3,6 +3,7 @@ PORTNAME= PySceneDetect PORTVERSION= 0.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= multimedia python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,6 +20,6 @@ RUN_DEPENDS= ${PYNUMPY} \ USES= python:2.7 USE_GITHUB= yes GH_ACCOUNT= Breakthrough -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils .include From owner-svn-ports-head@freebsd.org Tue Jun 19 01:35:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ACD1100F48A; Tue, 19 Jun 2018 01:35:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D4F4F7FF84; Tue, 19 Jun 2018 01:35:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B689449CA; Tue, 19 Jun 2018 01:35:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1ZDXX019253; Tue, 19 Jun 2018 01:35:13 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1ZDf3019252; Tue, 19 Jun 2018 01:35:13 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190135.w5J1ZDf3019252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:35:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472737 - head/textproc/py-CommonMark X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/textproc/py-CommonMark X-SVN-Commit-Revision: 472737 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:35:14 -0000 Author: yuri Date: Tue Jun 19 01:35:13 2018 New Revision: 472737 URL: https://svnweb.freebsd.org/changeset/ports/472737 Log: textproc/py-CommonMark: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/textproc/py-CommonMark/Makefile Modified: head/textproc/py-CommonMark/Makefile ============================================================================== --- head/textproc/py-CommonMark/Makefile Tue Jun 19 01:33:28 2018 (r472736) +++ head/textproc/py-CommonMark/Makefile Tue Jun 19 01:35:13 2018 (r472737) @@ -2,7 +2,7 @@ PORTNAME= CommonMark PORTVERSION= 0.7.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Tue Jun 19 01:39:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26D79100FAA9; Tue, 19 Jun 2018 01:39:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C9B1780320; Tue, 19 Jun 2018 01:39:03 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A8FC549EE; Tue, 19 Jun 2018 01:39:03 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1d3TL019483; Tue, 19 Jun 2018 01:39:03 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1d3X2019482; Tue, 19 Jun 2018 01:39:03 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190139.w5J1d3X2019482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:39:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472738 - head/textproc/py-mistune X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/textproc/py-mistune X-SVN-Commit-Revision: 472738 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:39:04 -0000 Author: yuri Date: Tue Jun 19 01:39:03 2018 New Revision: 472738 URL: https://svnweb.freebsd.org/changeset/ports/472738 Log: textproc/py-mistune: Remove NO_ARCH=yes It has architecture-specific files. Remove USE_PYTHON=concurrent: not needed. Approved by: portmgr Modified: head/textproc/py-mistune/Makefile Modified: head/textproc/py-mistune/Makefile ============================================================================== --- head/textproc/py-mistune/Makefile Tue Jun 19 01:35:13 2018 (r472737) +++ head/textproc/py-mistune/Makefile Tue Jun 19 01:39:03 2018 (r472738) @@ -3,6 +3,7 @@ PORTNAME= mistune PORTVERSION= 0.8.3 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,9 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${FLAVOR} USES= python -USE_PYTHON= autoplist concurrent distutils - -NO_ARCH= yes +USE_PYTHON= autoplist distutils do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test From owner-svn-ports-head@freebsd.org Tue Jun 19 01:41:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD936100FFFD; Tue, 19 Jun 2018 01:41:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8C00F8062D; Tue, 19 Jun 2018 01:41:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6D1844A59; Tue, 19 Jun 2018 01:41:42 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1fgNA024288; Tue, 19 Jun 2018 01:41:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1fgaY024287; Tue, 19 Jun 2018 01:41:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190141.w5J1fgaY024287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:41:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472739 - head/www/py-scrapy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/py-scrapy X-SVN-Commit-Revision: 472739 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:41:43 -0000 Author: yuri Date: Tue Jun 19 01:41:41 2018 New Revision: 472739 URL: https://svnweb.freebsd.org/changeset/ports/472739 Log: www/py-scrapy: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/www/py-scrapy/Makefile Modified: head/www/py-scrapy/Makefile ============================================================================== --- head/www/py-scrapy/Makefile Tue Jun 19 01:39:03 2018 (r472738) +++ head/www/py-scrapy/Makefile Tue Jun 19 01:41:41 2018 (r472739) @@ -3,7 +3,7 @@ PORTNAME= Scrapy PORTVERSION= 1.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -24,7 +24,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twisted>=15.5.0:de ${PYTHON_PKGNAMEPREFIX}parsel>=1.1:textproc/py-parsel@${FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist OPTIONS_DEFINE= SSL OPTIONS_DEFAULT=SSL From owner-svn-ports-head@freebsd.org Tue Jun 19 01:43:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F9E910102F2; Tue, 19 Jun 2018 01:43:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7AC980CE9; Tue, 19 Jun 2018 01:43:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8AFC4BBB; Tue, 19 Jun 2018 01:43:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1hkLu024452; Tue, 19 Jun 2018 01:43:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1hkCD024451; Tue, 19 Jun 2018 01:43:46 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190143.w5J1hkCD024451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:43:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472740 - head/net/py-upnp-inspector X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net/py-upnp-inspector X-SVN-Commit-Revision: 472740 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:43:47 -0000 Author: yuri Date: Tue Jun 19 01:43:46 2018 New Revision: 472740 URL: https://svnweb.freebsd.org/changeset/ports/472740 Log: net/py-upnp-inspector: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/net/py-upnp-inspector/Makefile Modified: head/net/py-upnp-inspector/Makefile ============================================================================== --- head/net/py-upnp-inspector/Makefile Tue Jun 19 01:41:41 2018 (r472739) +++ head/net/py-upnp-inspector/Makefile Tue Jun 19 01:43:46 2018 (r472740) @@ -3,6 +3,7 @@ PORTNAME= UPnP-Inspector PORTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= http://coherence.beebits.net/download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Coherence>=0.6.4:net/py-coherence@${FLAVOR} USES= python:2.7 -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Tue Jun 19 01:45:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD42D101055B; Tue, 19 Jun 2018 01:45:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6299580EDE; Tue, 19 Jun 2018 01:45:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 442554BC3; Tue, 19 Jun 2018 01:45:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1jTFN024646; Tue, 19 Jun 2018 01:45:29 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1jT8M024645; Tue, 19 Jun 2018 01:45:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190145.w5J1jT8M024645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:45:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472741 - head/www/py-pywebdav X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/py-pywebdav X-SVN-Commit-Revision: 472741 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:45:29 -0000 Author: yuri Date: Tue Jun 19 01:45:28 2018 New Revision: 472741 URL: https://svnweb.freebsd.org/changeset/ports/472741 Log: www/py-pywebdav: Add USE_PYTHON=concurrent Modified: head/www/py-pywebdav/Makefile Modified: head/www/py-pywebdav/Makefile ============================================================================== --- head/www/py-pywebdav/Makefile Tue Jun 19 01:43:46 2018 (r472740) +++ head/www/py-pywebdav/Makefile Tue Jun 19 01:45:28 2018 (r472741) @@ -3,7 +3,7 @@ PORTNAME= PyWebDAV PORTVERSION= 0.9.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,6 +12,6 @@ MAINTAINER= wen@FreeBSD.org COMMENT= WebDAV Library and Server for Python USES= python:2.7 -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist .include From owner-svn-ports-head@freebsd.org Tue Jun 19 01:48:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5495E1010A42; Tue, 19 Jun 2018 01:48:23 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 055AB81204; Tue, 19 Jun 2018 01:48:23 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D9D6B4BD5; Tue, 19 Jun 2018 01:48:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1mMwN024858; Tue, 19 Jun 2018 01:48:22 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1mMBf024856; Tue, 19 Jun 2018 01:48:22 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190148.w5J1mMBf024856@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:48:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472742 - head/www/py-cachecontrol X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/py-cachecontrol X-SVN-Commit-Revision: 472742 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:48:23 -0000 Author: yuri Date: Tue Jun 19 01:48:22 2018 New Revision: 472742 URL: https://svnweb.freebsd.org/changeset/ports/472742 Log: www/py-cachecontrol: Add USE_PYTHON=concurrent Modified: head/www/py-cachecontrol/Makefile Modified: head/www/py-cachecontrol/Makefile ============================================================================== --- head/www/py-cachecontrol/Makefile Tue Jun 19 01:45:28 2018 (r472741) +++ head/www/py-cachecontrol/Makefile Tue Jun 19 01:48:22 2018 (r472742) @@ -3,6 +3,7 @@ PORTNAME= CacheControl DISTVERSION= 0.12.5 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +19,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lockfile>=0.9:deve ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes REINPLACE_ARGS= -i '' From owner-svn-ports-head@freebsd.org Tue Jun 19 01:54:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 063111011A13; Tue, 19 Jun 2018 01:54:23 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C5B4F81CF8; Tue, 19 Jun 2018 01:54:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A876C4DA4; Tue, 19 Jun 2018 01:54:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1sMeH029740; Tue, 19 Jun 2018 01:54:22 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1sMSe029739; Tue, 19 Jun 2018 01:54:22 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190154.w5J1sMSe029739@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:54:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472743 - head/www/py-HTMLgen X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/py-HTMLgen X-SVN-Commit-Revision: 472743 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:54:23 -0000 Author: yuri Date: Tue Jun 19 01:54:22 2018 New Revision: 472743 URL: https://svnweb.freebsd.org/changeset/ports/472743 Log: www/py-HTMLgen: Add USE_PYTHON=concurrent when DOCS=yes Approved by: portmgr Modified: head/www/py-HTMLgen/Makefile Modified: head/www/py-HTMLgen/Makefile ============================================================================== --- head/www/py-HTMLgen/Makefile Tue Jun 19 01:48:22 2018 (r472742) +++ head/www/py-HTMLgen/Makefile Tue Jun 19 01:54:22 2018 (r472743) @@ -3,7 +3,7 @@ PORTNAME= HTMLgen PORTVERSION= 2.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www python MASTER_SITES= LOCAL/dryice \ http://dryice.name/computer/FreeBSD/distfiles/ \ @@ -21,6 +21,7 @@ NO_ARCH= yes SHEBANG_FILES= HTMLutil.py barchart.py OPTIONS_DEFINE= DOCS +DOCS_USE= PYTHON=concurrent PORTDOCS= * From owner-svn-ports-head@freebsd.org Tue Jun 19 01:55:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B9B61011DB2; Tue, 19 Jun 2018 01:55:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D14A081F81; Tue, 19 Jun 2018 01:55:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B275C4DB7; Tue, 19 Jun 2018 01:55:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1tn14029924; Tue, 19 Jun 2018 01:55:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1tncf029923; Tue, 19 Jun 2018 01:55:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190155.w5J1tncf029923@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:55:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472744 - head/net/py-coherence X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net/py-coherence X-SVN-Commit-Revision: 472744 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:55:50 -0000 Author: yuri Date: Tue Jun 19 01:55:49 2018 New Revision: 472744 URL: https://svnweb.freebsd.org/changeset/ports/472744 Log: net/py-coherence: Add USE_PYTHON=concurrent Modified: head/net/py-coherence/Makefile Modified: head/net/py-coherence/Makefile ============================================================================== --- head/net/py-coherence/Makefile Tue Jun 19 01:54:22 2018 (r472743) +++ head/net/py-coherence/Makefile Tue Jun 19 01:55:49 2018 (r472744) @@ -3,6 +3,7 @@ PORTNAME= Coherence PORTVERSION= 0.6.6.2 +PORTREVISION= 1 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,7 +23,7 @@ GH_ACCOUNT= coherence-project GH_TAGNAME= 4d5ee5f USES= python:2.7 -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Tue Jun 19 01:58:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFF9D1012234; Tue, 19 Jun 2018 01:58:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A2EEE8222A; Tue, 19 Jun 2018 01:58:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 840264DCC; Tue, 19 Jun 2018 01:58:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J1wIn8030104; Tue, 19 Jun 2018 01:58:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J1wIBA030103; Tue, 19 Jun 2018 01:58:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190158.w5J1wIBA030103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 01:58:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472745 - head/devel/py-Faker X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-Faker X-SVN-Commit-Revision: 472745 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 01:58:19 -0000 Author: yuri Date: Tue Jun 19 01:58:17 2018 New Revision: 472745 URL: https://svnweb.freebsd.org/changeset/ports/472745 Log: devel/py-Faker: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/devel/py-Faker/Makefile Modified: head/devel/py-Faker/Makefile ============================================================================== --- head/devel/py-Faker/Makefile Tue Jun 19 01:55:49 2018 (r472744) +++ head/devel/py-Faker/Makefile Tue Jun 19 01:58:17 2018 (r472745) @@ -3,6 +3,7 @@ PORTNAME= Faker PORTVERSION= 0.8.15 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +14,6 @@ COMMENT= Generate fake data using python LICENSE= MIT USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist .include From owner-svn-ports-head@freebsd.org Tue Jun 19 02:07:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C368E1012FBD; Tue, 19 Jun 2018 02:07:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7195F82B74; Tue, 19 Jun 2018 02:07:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 533164F89; Tue, 19 Jun 2018 02:07:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J27Rjd035413; Tue, 19 Jun 2018 02:07:27 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J27R6W035412; Tue, 19 Jun 2018 02:07:27 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190207.w5J27R6W035412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:07:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472746 - head/mail/py-afew X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/mail/py-afew X-SVN-Commit-Revision: 472746 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:07:27 -0000 Author: yuri Date: Tue Jun 19 02:07:26 2018 New Revision: 472746 URL: https://svnweb.freebsd.org/changeset/ports/472746 Log: mail/py-afew: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/mail/py-afew/Makefile Modified: head/mail/py-afew/Makefile ============================================================================== --- head/mail/py-afew/Makefile Tue Jun 19 01:58:17 2018 (r472745) +++ head/mail/py-afew/Makefile Tue Jun 19 02:07:26 2018 (r472746) @@ -2,6 +2,7 @@ PORTNAME= afew DISTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= mail python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,7 +23,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc notmuch:mail/notmuch USES= python -USE_PYTHON= distutils autoplist noflavors +USE_PYTHON= distutils concurrent autoplist noflavors NO_ARCH= yes OPTIONS_DEFINE= MANPAGES DOCS From owner-svn-ports-head@freebsd.org Tue Jun 19 02:10:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8DCD10134DC; Tue, 19 Jun 2018 02:10:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E85582E87; Tue, 19 Jun 2018 02:10:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4FE754FB6; Tue, 19 Jun 2018 02:10:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2AokL036433; Tue, 19 Jun 2018 02:10:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2Ao1T036432; Tue, 19 Jun 2018 02:10:50 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190210.w5J2Ao1T036432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:10:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472747 - head/astro/py-aipy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/astro/py-aipy X-SVN-Commit-Revision: 472747 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:10:50 -0000 Author: yuri Date: Tue Jun 19 02:10:49 2018 New Revision: 472747 URL: https://svnweb.freebsd.org/changeset/ports/472747 Log: astro/py-aipy: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/astro/py-aipy/Makefile Modified: head/astro/py-aipy/Makefile ============================================================================== --- head/astro/py-aipy/Makefile Tue Jun 19 02:07:26 2018 (r472746) +++ head/astro/py-aipy/Makefile Tue Jun 19 02:10:49 2018 (r472747) @@ -3,7 +3,7 @@ PORTNAME= aipy PORTVERSION= 2.1.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= astro python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,6 +20,6 @@ BUILD_DEPENDS= ${PYNUMPY} \ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:2.7 -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist .include From owner-svn-ports-head@freebsd.org Tue Jun 19 02:14:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B23E31013AEB; Tue, 19 Jun 2018 02:14:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6077A8331F; Tue, 19 Jun 2018 02:14:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41551513D; Tue, 19 Jun 2018 02:14:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2EIdN040511; Tue, 19 Jun 2018 02:14:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2EI5H040510; Tue, 19 Jun 2018 02:14:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190214.w5J2EI5H040510@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:14:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472748 - head/science/py-PyQuante X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-PyQuante X-SVN-Commit-Revision: 472748 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:14:18 -0000 Author: yuri Date: Tue Jun 19 02:14:17 2018 New Revision: 472748 URL: https://svnweb.freebsd.org/changeset/ports/472748 Log: science/py-PyQuante: Change to USES=2.7 Reported by: mat Modified: head/science/py-PyQuante/Makefile Modified: head/science/py-PyQuante/Makefile ============================================================================== --- head/science/py-PyQuante/Makefile Tue Jun 19 02:10:49 2018 (r472747) +++ head/science/py-PyQuante/Makefile Tue Jun 19 02:14:17 2018 (r472748) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYNUMPY} -USES= python:2.7- +USES= python:2.7 USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@freebsd.org Tue Jun 19 02:15:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86DD91013C17; Tue, 19 Jun 2018 02:15:02 +0000 (UTC) (envelope-from yuri@freebsd.org) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0F22883444; Tue, 19 Jun 2018 02:15:01 +0000 (UTC) (envelope-from yuri@freebsd.org) Received: from yv.noip.me (c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id w5J2F06V089793 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Mon, 18 Jun 2018 19:15:01 -0700 (PDT) (envelope-from yuri@freebsd.org) X-Authentication-Warning: shell1.rawbw.com: Host c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132] claimed to be yv.noip.me Reply-To: yuri@freebsd.org Subject: Re: svn commit: r472501 - head/science/py-spglib To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201806152234.w5FMYTUx005541@repo.freebsd.org> <20180618202425.76wlikagjpytnafy@atuin.in.mat.cc> From: Yuri Message-ID: Date: Mon, 18 Jun 2018 19:14:59 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180618202425.76wlikagjpytnafy@atuin.in.mat.cc> Content-Language: en-US Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:15:02 -0000 On 06/18/18 13:24, Mathieu Arnold wrote: >> * Remove USES=shebangfix > Why? It was added by mistake. Yuri From owner-svn-ports-head@freebsd.org Tue Jun 19 02:19:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F0B5101418D; Tue, 19 Jun 2018 02:19:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 426DC836A6; Tue, 19 Jun 2018 02:19:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 23DB25155; Tue, 19 Jun 2018 02:19:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2JdJ2040796; Tue, 19 Jun 2018 02:19:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2JdAE040795; Tue, 19 Jun 2018 02:19:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190219.w5J2JdAE040795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:19:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472749 - head/devel/py-cmdtest X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-cmdtest X-SVN-Commit-Revision: 472749 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:19:40 -0000 Author: yuri Date: Tue Jun 19 02:19:39 2018 New Revision: 472749 URL: https://svnweb.freebsd.org/changeset/ports/472749 Log: devel/py-cmdtest: Add USE_PYTHON=concurrent Also fix manpage directory share/man -> man. Approved by: portmgr Modified: head/devel/py-cmdtest/Makefile Modified: head/devel/py-cmdtest/Makefile ============================================================================== --- head/devel/py-cmdtest/Makefile Tue Jun 19 02:14:17 2018 (r472748) +++ head/devel/py-cmdtest/Makefile Tue Jun 19 02:19:39 2018 (r472749) @@ -2,6 +2,7 @@ PORTNAME= cmdtest PORTVERSION= 0.32 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cmdtest/snapshot/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,10 +21,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}markdown>0:textpro ${PYTHON_PKGNAMEPREFIX}ttystatus>0:devel/py-ttystatus@${FLAVOR} USES= python:2.7 -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist NO_ARCH= yes post-patch: - ${REINPLACE_CMD} -e "s,python,${PYTHON_CMD},g" ${WRKSRC}/setup.py + @${REINPLACE_CMD} -e "s,python,${PYTHON_CMD},g ; s,share/man/,man/," ${WRKSRC}/setup.py .include From owner-svn-ports-head@freebsd.org Tue Jun 19 02:20:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCDD41014283; Tue, 19 Jun 2018 02:20:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7EDD6837E3; Tue, 19 Jun 2018 02:20:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 600B5516D; Tue, 19 Jun 2018 02:20:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2KhFW041749; Tue, 19 Jun 2018 02:20:43 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2Khnp041748; Tue, 19 Jun 2018 02:20:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190220.w5J2Khnp041748@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:20:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472750 - head/science/py-spglib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-spglib X-SVN-Commit-Revision: 472750 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:20:44 -0000 Author: yuri Date: Tue Jun 19 02:20:42 2018 New Revision: 472750 URL: https://svnweb.freebsd.org/changeset/ports/472750 Log: science/py-spglib: Fix typo in COMMENT Modified: head/science/py-spglib/Makefile Modified: head/science/py-spglib/Makefile ============================================================================== --- head/science/py-spglib/Makefile Tue Jun 19 02:19:39 2018 (r472749) +++ head/science/py-spglib/Makefile Tue Jun 19 02:20:42 2018 (r472750) @@ -7,7 +7,7 @@ MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org -COMMENT= Library for finding and handling crystal symmetries (pythin binding) +COMMENT= Library for finding and handling crystal symmetries (python binding) LICENSE= BSD3CLAUSE From owner-svn-ports-head@freebsd.org Tue Jun 19 02:26:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B905B1014BC0; Tue, 19 Jun 2018 02:26:55 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64A7283DF6; Tue, 19 Jun 2018 02:26:55 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 456BB531D; Tue, 19 Jun 2018 02:26:55 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2Qtja045668; Tue, 19 Jun 2018 02:26:55 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2Qtxg045667; Tue, 19 Jun 2018 02:26:55 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190226.w5J2Qtxg045667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:26:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472751 - head/devel/py-interface X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-interface X-SVN-Commit-Revision: 472751 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:26:55 -0000 Author: yuri Date: Tue Jun 19 02:26:54 2018 New Revision: 472751 URL: https://svnweb.freebsd.org/changeset/ports/472751 Log: devel/py-interface: Add USE_PYTHON=concurrent when DOCS=yes Approved by: portmgr Modified: head/devel/py-interface/Makefile Modified: head/devel/py-interface/Makefile ============================================================================== --- head/devel/py-interface/Makefile Tue Jun 19 02:20:42 2018 (r472750) +++ head/devel/py-interface/Makefile Tue Jun 19 02:26:54 2018 (r472751) @@ -3,6 +3,7 @@ PORTNAME= interface PORTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= http://www.lysator.liu.se/~tab/erlang/py_interface/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,6 +21,7 @@ DOCSDIR= ${PREFIX}/share/doc/py_${PORTNAME} # EXAMPLESDIR= ${PREFIX}/share/examples/py_${PORTNAME} OPTIONS_DEFINE= DOCS +DOCS_USE= PYTHON=concurrent PORTDOCS= README From owner-svn-ports-head@freebsd.org Tue Jun 19 02:29:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55D7B1014E68; Tue, 19 Jun 2018 02:29:19 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0717083F6F; Tue, 19 Jun 2018 02:29:19 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DD906532A; Tue, 19 Jun 2018 02:29:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2TIsX045850; Tue, 19 Jun 2018 02:29:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2TI1m045849; Tue, 19 Jun 2018 02:29:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190229.w5J2TI1m045849@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:29:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472752 - head/devel/py-flex X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-flex X-SVN-Commit-Revision: 472752 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:29:19 -0000 Author: yuri Date: Tue Jun 19 02:29:18 2018 New Revision: 472752 URL: https://svnweb.freebsd.org/changeset/ports/472752 Log: devel/py-flex: Add USE_PYTHON=concurrent Approved by: portmgr Modified: head/devel/py-flex/Makefile Modified: head/devel/py-flex/Makefile ============================================================================== --- head/devel/py-flex/Makefile Tue Jun 19 02:26:54 2018 (r472751) +++ head/devel/py-flex/Makefile Tue Jun 19 02:29:18 2018 (r472752) @@ -2,6 +2,7 @@ PORTNAME= flex DISTVERSION= 6.13.2 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,7 +23,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=3.3:devel/p ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${PY_FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils concurrent autoplist NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Tue Jun 19 02:46:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3DE110163D9; Tue, 19 Jun 2018 02:46:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 824EF84B83; Tue, 19 Jun 2018 02:46:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 60C8C5674; Tue, 19 Jun 2018 02:46:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J2ksrI056006; Tue, 19 Jun 2018 02:46:54 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J2krvL056004; Tue, 19 Jun 2018 02:46:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190246.w5J2krvL056004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 02:46:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472753 - in head/security/sssd: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security/sssd: . files X-SVN-Commit-Revision: 472753 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 02:46:55 -0000 Author: yuri Date: Tue Jun 19 02:46:53 2018 New Revision: 472753 URL: https://svnweb.freebsd.org/changeset/ports/472753 Log: security/sssd: Add 1.16 to supported krb5 versions PR: 204827 Approved by: lukas.slebodnik@intrak.sk (maintainer) Modified: head/security/sssd/Makefile head/security/sssd/files/patch-src_external_pac__responder.m4 Modified: head/security/sssd/Makefile ============================================================================== --- head/security/sssd/Makefile Tue Jun 19 02:29:18 2018 (r472752) +++ head/security/sssd/Makefile Tue Jun 19 02:46:53 2018 (r472753) @@ -3,7 +3,7 @@ PORTNAME= sssd PORTVERSION= 1.11.7 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= security MASTER_SITES= https://releases.pagure.org/SSSD/${PORTNAME}/ Modified: head/security/sssd/files/patch-src_external_pac__responder.m4 ============================================================================== --- head/security/sssd/files/patch-src_external_pac__responder.m4 Tue Jun 19 02:29:18 2018 (r472752) +++ head/security/sssd/files/patch-src_external_pac__responder.m4 Tue Jun 19 02:46:53 2018 (r472753) @@ -1,6 +1,6 @@ --- src/external/pac_responder.m4.orig 2014-09-17 13:01:37 UTC +++ src/external/pac_responder.m4 -@@ -14,14 +14,17 @@ then +@@ -14,14 +14,18 @@ then PKG_CHECK_MODULES(NDR_KRB5PAC, ndr_krb5pac, ndr_krb5pac_ok=yes, AC_MSG_WARN([Cannot build pac responder without libndr_krb5pac])) @@ -16,7 +16,8 @@ + Kerberos\ 5\ release\ 1.12* | \ + Kerberos\ 5\ release\ 1.13* | \ + Kerberos\ 5\ release\ 1.14* | \ -+ Kerberos\ 5\ release\ 1.15*) ++ Kerberos\ 5\ release\ 1.15* | \ ++ Kerberos\ 5\ release\ 1.16*) krb5_version_ok=yes AC_MSG_RESULT([yes]) ;; From owner-svn-ports-head@freebsd.org Tue Jun 19 03:40:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D4011019D8A; Tue, 19 Jun 2018 03:40:40 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F37FA8731B; Tue, 19 Jun 2018 03:40:39 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D560C5F9E; Tue, 19 Jun 2018 03:40:39 +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 w5J3edGP082456; Tue, 19 Jun 2018 03:40:39 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J3ecf8082451; Tue, 19 Jun 2018 03:40:38 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201806190340.w5J3ecf8082451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Tue, 19 Jun 2018 03:40:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472754 - in head/lang/phantomjs: . files X-SVN-Group: ports-head X-SVN-Commit-Author: loader X-SVN-Commit-Paths: in head/lang/phantomjs: . files X-SVN-Commit-Revision: 472754 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 03:40:40 -0000 Author: loader (doc committer) Date: Tue Jun 19 03:40:38 2018 New Revision: 472754 URL: https://svnweb.freebsd.org/changeset/ports/472754 Log: lang/phantomjs: Allow building on armv6 and armv7 platforms - Patches for armv6 and armv7 are obtained from www/webkit-gtk3 - Allow building with non-default LOCALBASE - Fix build with Clang 6.0.0 [0] PR: 225482 [0] Reviewed by: koobs, feld Approved by: koobs (mentor), feld (maintainner) Differential Revision: https://reviews.freebsd.org/D15850 Added: head/lang/phantomjs/files/patch-src_qt_qtbase_mkspecs_freebsd-clang_qmake.conf (contents, props changed) head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_JavaScriptCore_assembler_ARMAssembler.h (contents, props changed) head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_WTF_wtf_Platform.h (contents, props changed) head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp (contents, props changed) head/lang/phantomjs/files/patch-src_webpage.cpp (contents, props changed) Modified: head/lang/phantomjs/Makefile Modified: head/lang/phantomjs/Makefile ============================================================================== --- head/lang/phantomjs/Makefile Tue Jun 19 02:46:53 2018 (r472753) +++ head/lang/phantomjs/Makefile Tue Jun 19 03:40:38 2018 (r472754) @@ -12,8 +12,6 @@ LICENSE= BSD3CLAUSE BROKEN_powerpc64= fails to build: g++48: not found BROKEN_sparc64= does not link on sparc64 -NOT_FOR_ARCHS= armv6 armv7 -NOT_FOR_ARCHS_REASON= Platform.h: Not supported ARM architecture BROKEN_SSL= openssl-devel BROKEN_SSL_REASON_openssl-devel= error: member access into incomplete type 'X509' (aka 'x509_st') @@ -52,7 +50,7 @@ post-extract: ${MKDIR} ${WRKSRC}/src/qt/qtwebkit/.git ${RM} ${WRKSRC}/src/qt/qtwebkit/Source/WebCore/DerivedSources.cpp -_ENV= CC=${CC} CXX=${CXX} GMAKE=${GMAKE} OSTYPE=freebsd MAKEFLAGS= +_ENV= CC=${CC} CXX=${CXX} GMAKE=${GMAKE} OSTYPE=freebsd MAKEFLAGS= LOCALBASE=${LOCALBASE} _BLD= ${PYTHON_CMD} build.py --jobs ${MAKE_JOBS_NUMBER} --confirm do-build: .if defined(_PHANTOMJS_USE_QT_SYSTEM) Added: head/lang/phantomjs/files/patch-src_qt_qtbase_mkspecs_freebsd-clang_qmake.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/phantomjs/files/patch-src_qt_qtbase_mkspecs_freebsd-clang_qmake.conf Tue Jun 19 03:40:38 2018 (r472754) @@ -0,0 +1,13 @@ +--- src/qt/qtbase/mkspecs/freebsd-clang/qmake.conf.orig 2017-03-26 06:45:23 UTC ++++ src/qt/qtbase/mkspecs/freebsd-clang/qmake.conf +@@ -10,8 +10,8 @@ QMAKE_CFLAGS_THREAD = -pthread -D_TH + QMAKE_CXXFLAGS_THREAD = $$QMAKE_CFLAGS_THREAD + + # Addon software goes into /usr/local on the BSDs, by default we will look there +-QMAKE_INCDIR = /usr/local/include +-QMAKE_LIBDIR = /usr/local/lib ++QMAKE_INCDIR = $$(LOCALBASE)/include ++QMAKE_LIBDIR = $$(LOCALBASE)/lib + + QMAKE_LFLAGS_NOUNDEF = -Wl,--no-undefined + QMAKE_LFLAGS_THREAD = -pthread Added: head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_JavaScriptCore_assembler_ARMAssembler.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_JavaScriptCore_assembler_ARMAssembler.h Tue Jun 19 03:40:38 2018 (r472754) @@ -0,0 +1,17 @@ +assembler/ARMAssembler.h:1073:2: error: "The cacheFlush support is missing on this platform." +#error "The cacheFlush support is missing on this platform." + ^ + +Obtained from: www/webkit-gtk3/files/patch-Source__JavaScriptCore__assembler__ARMAssembler.h + +--- src/qt/qtwebkit/Source/JavaScriptCore/assembler/ARMAssembler.h.orig 2016-01-08 10:07:46 UTC ++++ src/qt/qtwebkit/Source/JavaScriptCore/assembler/ARMAssembler.h +@@ -1069,6 +1069,8 @@ namespace JSC { + UNUSED_PARAM(size); + #elif OS(QNX) + msync(code, size, MS_INVALIDATE_ICACHE); ++#elif CPU(ARM_TRADITIONAL) && OS(FREEBSD) && COMPILER(CLANG) ++ __clear_cache(code, reinterpret_cast(code) + size); + #else + #error "The cacheFlush support is missing on this platform." + #endif Added: head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_WTF_wtf_Platform.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_WTF_wtf_Platform.h Tue Jun 19 03:40:38 2018 (r472754) @@ -0,0 +1,19 @@ +On armv6 platform: +./wtf/Platform.h:323:6: error: "Not supported ARM architecture" +# error "Not supported ARM architecture" + ^ + +Obtained from: www/webkit-gtk3/files/patch-Source_WTF_wtf_Platform.h + +This patch reportedly fixes build for ARM. See PR 208569 + +--- src/qt/qtwebkit/Source/WTF/wtf/Platform.h.orig 2018-06-14 11:03:55 UTC ++++ src/qt/qtwebkit/Source/WTF/wtf/Platform.h +@@ -232,6 +232,7 @@ + #elif defined(__ARM_ARCH_6__) \ + || defined(__ARM_ARCH_6J__) \ + || defined(__ARM_ARCH_6K__) \ ++ || defined(__ARM_ARCH_6KZ__) \ + || defined(__ARM_ARCH_6Z__) \ + || defined(__ARM_ARCH_6ZK__) \ + || defined(__ARM_ARCH_6T2__) \ Added: head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/phantomjs/files/patch-src_qt_qtwebkit_Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp Tue Jun 19 03:40:38 2018 (r472754) @@ -0,0 +1,18 @@ +.obj/platform/graphics/cpu/arm/filters/FELightingNEON.o --- +:149:1: error: invalid instruction +vmov.u32 r2, r3, s8, s9 +^ + +Obtained from: www/webkit-gtk3/files/patch-Source_WebCore_platform_graphics_cpu_arm_filters_FELightingNEON.cpp + +--- src/qt/qtwebkit/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp.orig 2018-06-12 14:38:27 UTC ++++ src/qt/qtwebkit/Source/WebCore/platform/graphics/cpu/arm/filters/FELightingNEON.cpp +@@ -404,7 +404,7 @@ TOSTRING(neonDrawLighting) ":" NL + "vmin.f32 " TMP2_D0 ", " TMP2_D0 ", " CONST_ONE_HI_D NL + "vmul.f32 " TMP3_Q ", " COLOR_Q ", " TMP2_D0 "[1]" NL + "vcvt.u32.f32 " TMP3_Q ", " TMP3_Q NL +- "vmov.u32 r2, r3, " TMP3_S0 ", " TMP3_S1 NL ++ "vmov r2, r3, " TMP3_S0 ", " TMP3_S1 NL + // The color values are stored in-place. + "strb r2, [" PIXELS_R ", #-11]" NL + "strb r3, [" PIXELS_R ", #-10]" NL Added: head/lang/phantomjs/files/patch-src_webpage.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/phantomjs/files/patch-src_webpage.cpp Tue Jun 19 03:40:38 2018 (r472754) @@ -0,0 +1,20 @@ +webpage.cpp:80:89: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] +#define CALLBACKS_OBJECT_INJECTION INPAGE_CALL_NAME" = function() { return window."CALLBACKS_OBJECT_NAME".call.call(_phantom, Array.prototype.slice.call(arguments, 0)); };" + ^ +webpage.cpp:81:57: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] +#define CALLBACKS_OBJECT_PRESENT "typeof(window."CALLBACKS_OBJECT_NAME") !== \"undefined\";" + ^ + +--- src/webpage.cpp.orig 2018-01-26 07:17:31 UTC ++++ src/webpage.cpp +@@ -77,8 +77,8 @@ + #define BLANK_HTML "" + #define CALLBACKS_OBJECT_NAME "_phantom" + #define INPAGE_CALL_NAME "window.callPhantom" +-#define CALLBACKS_OBJECT_INJECTION INPAGE_CALL_NAME" = function() { return window."CALLBACKS_OBJECT_NAME".call.call(_phantom, Array.prototype.slice.call(arguments, 0)); };" +-#define CALLBACKS_OBJECT_PRESENT "typeof(window."CALLBACKS_OBJECT_NAME") !== \"undefined\";" ++#define CALLBACKS_OBJECT_INJECTION INPAGE_CALL_NAME" = function() { return window." CALLBACKS_OBJECT_NAME".call.call(_phantom, Array.prototype.slice.call(arguments, 0)); };" ++#define CALLBACKS_OBJECT_PRESENT "typeof(window." CALLBACKS_OBJECT_NAME") !== \"undefined\";" + + #define STDOUT_FILENAME "/dev/stdout" + #define STDERR_FILENAME "/dev/stderr" From owner-svn-ports-head@freebsd.org Tue Jun 19 05:09:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4BB6101F741; Tue, 19 Jun 2018 05:09:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 686C26A754; Tue, 19 Jun 2018 05:09:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 459B36EEF; Tue, 19 Jun 2018 05:09:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J59ZxQ028308; Tue, 19 Jun 2018 05:09:35 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J59X2C028301; Tue, 19 Jun 2018 05:09:33 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190509.w5J59X2C028301@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 05:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472755 - in head/misc: . soapysdr soapysdr/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . soapysdr soapysdr/files X-SVN-Commit-Revision: 472755 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 05:09:36 -0000 Author: yuri Date: Tue Jun 19 05:09:33 2018 New Revision: 472755 URL: https://svnweb.freebsd.org/changeset/ports/472755 Log: New port: misc/soapysdr: Vendor and platform neutral SDR support library Added: head/misc/soapysdr/ head/misc/soapysdr/Makefile (contents, props changed) head/misc/soapysdr/distinfo (contents, props changed) head/misc/soapysdr/files/ head/misc/soapysdr/files/patch-CMakeLists.txt (contents, props changed) head/misc/soapysdr/files/patch-apps_CMakeLists.txt (contents, props changed) head/misc/soapysdr/pkg-descr (contents, props changed) head/misc/soapysdr/pkg-plist (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Jun 19 03:40:38 2018 (r472754) +++ head/misc/Makefile Tue Jun 19 05:09:33 2018 (r472755) @@ -484,6 +484,7 @@ SUBDIR += sloccount SUBDIR += sls SUBDIR += smssend + SUBDIR += soapysdr SUBDIR += solarized SUBDIR += spamcalc SUBDIR += sshbuddy Added: head/misc/soapysdr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/soapysdr/Makefile Tue Jun 19 05:09:33 2018 (r472755) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= SoapySDR +DISTVERSIONPREFIX= soapy-sdr- +DISTVERSION= 0.6.1-71 +DISTVERSIONSUFFIX= -g69c16e9 +CATEGORIES= misc + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Vendor and platform neutral SDR support library + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt + +USES= cmake:outsource +USE_GITHUB= yes +GH_ACCOUNT= pothosware +USE_LDCONFIG= yes + +.include Added: head/misc/soapysdr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/soapysdr/distinfo Tue Jun 19 05:09:33 2018 (r472755) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529384177 +SHA256 (pothosware-SoapySDR-soapy-sdr-0.6.1-71-g69c16e9_GH0.tar.gz) = 308ea401054eb52bcce828012393fe143174f7b25d0e04ce189c00713645e1b5 +SIZE (pothosware-SoapySDR-soapy-sdr-0.6.1-71-g69c16e9_GH0.tar.gz) = 119259 Added: head/misc/soapysdr/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/soapysdr/files/patch-CMakeLists.txt Tue Jun 19 05:09:33 2018 (r472755) @@ -0,0 +1,19 @@ +--- CMakeLists.txt.orig 2018-06-19 05:01:37 UTC ++++ CMakeLists.txt +@@ -126,14 +126,14 @@ message(STATUS "######################## + message(STATUS "## Begin configuration for Python support...") + message(STATUS "#############################################") + message(STATUS "Enabling optional Python bindings if possible...") +-add_subdirectory(python) ++#add_subdirectory(python) + + message(STATUS "") + message(STATUS "#############################################") + message(STATUS "## Begin configuration for Python3 support...") + message(STATUS "#############################################") + message(STATUS "Enabling optional Python3 bindings if possible...") +-add_subdirectory(python3) ++#add_subdirectory(python3) + + + ######################################################################## Added: head/misc/soapysdr/files/patch-apps_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/soapysdr/files/patch-apps_CMakeLists.txt Tue Jun 19 05:09:33 2018 (r472755) @@ -0,0 +1,8 @@ +--- apps/CMakeLists.txt.orig 2018-06-19 05:02:30 UTC ++++ apps/CMakeLists.txt +@@ -17,4 +17,4 @@ target_link_libraries(SoapySDRUtil ${Soa + install(TARGETS SoapySDRUtil DESTINATION bin) + + #install man pages for the application executable +-install(FILES SoapySDRUtil.1 DESTINATION share/man/man1) ++install(FILES SoapySDRUtil.1 DESTINATION man/man1) Added: head/misc/soapysdr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/soapysdr/pkg-descr Tue Jun 19 05:09:33 2018 (r472755) @@ -0,0 +1,10 @@ +SoapySDR is an open-source generalized C/C++ API and runtime library for +interfacing with SDR devices. With SoapySDR, you can instantiate, configure, +and stream with an SDR device in a variety of environments. Both osmosdr and +uhd devices are available within SoapySDR. In addition, vendors can directly +support their hardware using SoapySDR device modules. There are wrappers for +both gr-osmosdr, uhd, and gr-uhd to bring an ecosystem of existing applications +to SoapySDR devices. And SoapySDR has support for powerful platforms like GNU +Radio and Pothos. + +WWW: https://github.com/pothosware/SoapySDR Added: head/misc/soapysdr/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/soapysdr/pkg-plist Tue Jun 19 05:09:33 2018 (r472755) @@ -0,0 +1,31 @@ +bin/SoapySDRUtil +include/SoapySDR/Config.h +include/SoapySDR/Config.hpp +include/SoapySDR/Constants.h +include/SoapySDR/ConverterPrimatives.hpp +include/SoapySDR/ConverterRegistry.hpp +include/SoapySDR/Device.h +include/SoapySDR/Device.hpp +include/SoapySDR/Errors.h +include/SoapySDR/Errors.hpp +include/SoapySDR/Formats.h +include/SoapySDR/Formats.hpp +include/SoapySDR/Logger.h +include/SoapySDR/Logger.hpp +include/SoapySDR/Modules.h +include/SoapySDR/Modules.hpp +include/SoapySDR/Registry.hpp +include/SoapySDR/Time.h +include/SoapySDR/Time.hpp +include/SoapySDR/Types.h +include/SoapySDR/Types.hpp +include/SoapySDR/Version.h +include/SoapySDR/Version.hpp +lib/libSoapySDR.so +lib/libSoapySDR.so.0.7 +lib/libSoapySDR.so.0.7.0 +libdata/pkgconfig/SoapySDR.pc +man/man1/SoapySDRUtil.1.gz +share/cmake/SoapySDR/SoapySDRConfig.cmake +share/cmake/SoapySDR/SoapySDRConfigVersion.cmake +share/cmake/SoapySDR/SoapySDRUtil.cmake From owner-svn-ports-head@freebsd.org Tue Jun 19 05:28:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB7B110209CE; Tue, 19 Jun 2018 05:28:35 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 597AF6B44A; Tue, 19 Jun 2018 05:28:35 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3AAA57242; Tue, 19 Jun 2018 05:28:35 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J5SZmS038719; Tue, 19 Jun 2018 05:28:35 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J5SYZJ038717; Tue, 19 Jun 2018 05:28:34 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190528.w5J5SYZJ038717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 05:28:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472756 - head/devel/R-cran-later X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/devel/R-cran-later X-SVN-Commit-Revision: 472756 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 05:28:35 -0000 Author: tota Date: Tue Jun 19 05:28:34 2018 New Revision: 472756 URL: https://svnweb.freebsd.org/changeset/ports/472756 Log: - Update to 0.7.3 Modified: head/devel/R-cran-later/Makefile (contents, props changed) head/devel/R-cran-later/distinfo (contents, props changed) Modified: head/devel/R-cran-later/Makefile ============================================================================== --- head/devel/R-cran-later/Makefile Tue Jun 19 05:09:33 2018 (r472755) +++ head/devel/R-cran-later/Makefile Tue Jun 19 05:28:34 2018 (r472756) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= later -PORTVERSION= 0.7.2 +PORTVERSION= 0.7.3 CATEGORIES= devel DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/devel/R-cran-later/distinfo ============================================================================== --- head/devel/R-cran-later/distinfo Tue Jun 19 05:09:33 2018 (r472755) +++ head/devel/R-cran-later/distinfo Tue Jun 19 05:28:34 2018 (r472756) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525834741 -SHA256 (later_0.7.2.tar.gz) = dc3f18320bebde1f671408a5f50bd859398aa7ef5545d4d79159442ff5b1b450 -SIZE (later_0.7.2.tar.gz) = 37257 +TIMESTAMP = 1529313584 +SHA256 (later_0.7.3.tar.gz) = 5c57148c255ee5da61cb748550b73bad7094f4e045b99b362473be5e3dbc4212 +SIZE (later_0.7.3.tar.gz) = 38192 From owner-svn-ports-head@freebsd.org Tue Jun 19 05:49:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF99C102209B; Tue, 19 Jun 2018 05:49:53 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C2F16C45B; Tue, 19 Jun 2018 05:49:53 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4B7A6759C; Tue, 19 Jun 2018 05:49:53 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J5nrTW048623; Tue, 19 Jun 2018 05:49:53 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J5nqnQ048621; Tue, 19 Jun 2018 05:49:52 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190549.w5J5nqnQ048621@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 05:49:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472757 - head/graphics/R-cran-munsell X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/graphics/R-cran-munsell X-SVN-Commit-Revision: 472757 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 05:49:53 -0000 Author: tota Date: Tue Jun 19 05:49:52 2018 New Revision: 472757 URL: https://svnweb.freebsd.org/changeset/ports/472757 Log: - Update to 0.5.0 Modified: head/graphics/R-cran-munsell/Makefile (contents, props changed) head/graphics/R-cran-munsell/distinfo (contents, props changed) Modified: head/graphics/R-cran-munsell/Makefile ============================================================================== --- head/graphics/R-cran-munsell/Makefile Tue Jun 19 05:28:34 2018 (r472756) +++ head/graphics/R-cran-munsell/Makefile Tue Jun 19 05:49:52 2018 (r472757) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= munsell -PORTVERSION= 0.4.3 -PORTREVISION= 1 +PORTVERSION= 0.5.0 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -16,7 +15,9 @@ LICENSE_NAME_CW= Charlotte Wickham COPYRIGHT LICENSE_FILE_CW= ${WRKSRC}/LICENSE LICENSE_PERMS_CW= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -RUN_DEPENDS= R-cran-colorspace>0:graphics/R-cran-colorspace +CRAN_DEPENDS= R-cran-colorspace>0:graphics/R-cran-colorspace +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} USES= cran:auto-plist Modified: head/graphics/R-cran-munsell/distinfo ============================================================================== --- head/graphics/R-cran-munsell/distinfo Tue Jun 19 05:28:34 2018 (r472756) +++ head/graphics/R-cran-munsell/distinfo Tue Jun 19 05:49:52 2018 (r472757) @@ -1,2 +1,3 @@ -SHA256 (munsell_0.4.3.tar.gz) = 397c3c90af966f48eebe8f5d9e40c41b17541f0baaa102eec3ea4faae5a2bd49 -SIZE (munsell_0.4.3.tar.gz) = 97244 +TIMESTAMP = 1529386270 +SHA256 (munsell_0.5.0.tar.gz) = d0f3a9fb30e2b5d411fa61db56d4be5733a2621c0edf017d090bdfa5e377e199 +SIZE (munsell_0.5.0.tar.gz) = 182653 From owner-svn-ports-head@freebsd.org Tue Jun 19 06:15:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7306810238F6; Tue, 19 Jun 2018 06:15:03 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 289926D46F; Tue, 19 Jun 2018 06:15:03 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 09A847A77; Tue, 19 Jun 2018 06:15:03 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J6F2OD063721; Tue, 19 Jun 2018 06:15:02 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J6F2gN063718; Tue, 19 Jun 2018 06:15:02 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190615.w5J6F2gN063718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 06:15:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472758 - head/graphics/R-cran-rgdal X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/graphics/R-cran-rgdal X-SVN-Commit-Revision: 472758 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 06:15:03 -0000 Author: tota Date: Tue Jun 19 06:15:02 2018 New Revision: 472758 URL: https://svnweb.freebsd.org/changeset/ports/472758 Log: - Update to 1.3-2 Modified: head/graphics/R-cran-rgdal/Makefile (contents, props changed) head/graphics/R-cran-rgdal/distinfo (contents, props changed) Modified: head/graphics/R-cran-rgdal/Makefile ============================================================================== --- head/graphics/R-cran-rgdal/Makefile Tue Jun 19 05:49:52 2018 (r472757) +++ head/graphics/R-cran-rgdal/Makefile Tue Jun 19 06:15:02 2018 (r472758) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rgdal -DISTVERSION= 1.3-1 +DISTVERSION= 1.3-2 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/graphics/R-cran-rgdal/distinfo ============================================================================== --- head/graphics/R-cran-rgdal/distinfo Tue Jun 19 05:49:52 2018 (r472757) +++ head/graphics/R-cran-rgdal/distinfo Tue Jun 19 06:15:02 2018 (r472758) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528097856 -SHA256 (rgdal_1.3-1.tar.gz) = dd0876deae0e639d41ec9facc08f264469c6c13e533c1a1c541318b26d39ce4e -SIZE (rgdal_1.3-1.tar.gz) = 1666361 +TIMESTAMP = 1529387498 +SHA256 (rgdal_1.3-2.tar.gz) = 94adbce3310b218fe274ea7149b6034b39e2bdf7264c7815d3f3352a5f6c9a4e +SIZE (rgdal_1.3-2.tar.gz) = 1667049 From owner-svn-ports-head@freebsd.org Tue Jun 19 06:36:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D24A210249E1; Tue, 19 Jun 2018 06:36:14 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 847E56DF47; Tue, 19 Jun 2018 06:36:14 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 662A67DCC; Tue, 19 Jun 2018 06:36:14 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J6aEk5073675; Tue, 19 Jun 2018 06:36:14 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J6aE7i073674; Tue, 19 Jun 2018 06:36:14 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190636.w5J6aE7i073674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 06:36:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472759 - head/graphics/R-cran-visNetwork X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/graphics/R-cran-visNetwork X-SVN-Commit-Revision: 472759 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 06:36:15 -0000 Author: tota Date: Tue Jun 19 06:36:13 2018 New Revision: 472759 URL: https://svnweb.freebsd.org/changeset/ports/472759 Log: - Update to 2.0.4 Modified: head/graphics/R-cran-visNetwork/Makefile (contents, props changed) head/graphics/R-cran-visNetwork/distinfo (contents, props changed) Modified: head/graphics/R-cran-visNetwork/Makefile ============================================================================== --- head/graphics/R-cran-visNetwork/Makefile Tue Jun 19 06:15:02 2018 (r472758) +++ head/graphics/R-cran-visNetwork/Makefile Tue Jun 19 06:36:13 2018 (r472759) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= visNetwork -PORTVERSION= 2.0.3 +PORTVERSION= 2.0.4 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/graphics/R-cran-visNetwork/distinfo ============================================================================== --- head/graphics/R-cran-visNetwork/distinfo Tue Jun 19 06:15:02 2018 (r472758) +++ head/graphics/R-cran-visNetwork/distinfo Tue Jun 19 06:36:13 2018 (r472759) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521102900 -SHA256 (visNetwork_2.0.3.tar.gz) = bc2e75cf4cc1410d8eb528a38870666117e674f1b9ba5fa1ff769b8ab2e2462f -SIZE (visNetwork_2.0.3.tar.gz) = 2969464 +TIMESTAMP = 1529388957 +SHA256 (visNetwork_2.0.4.tar.gz) = 0503408b195a812bcf589f8d34f5c3f9a38e92e78b699c3c7d737f7054d5ed15 +SIZE (visNetwork_2.0.4.tar.gz) = 4149299 From owner-svn-ports-head@freebsd.org Tue Jun 19 06:51:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0298100068A; Tue, 19 Jun 2018 06:51:57 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 822A16E7DF; Tue, 19 Jun 2018 06:51:57 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6339F7FDC; Tue, 19 Jun 2018 06:51:57 +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 w5J6pvtm083936; Tue, 19 Jun 2018 06:51:57 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J6putP083930; Tue, 19 Jun 2018 06:51:56 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806190651.w5J6putP083930@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 19 Jun 2018 06:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472760 - in head/security: krb5-114 krb5-114/files krb5-115 krb5-115/files krb5-116 krb5-116/files X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/security: krb5-114 krb5-114/files krb5-115 krb5-115/files krb5-116 krb5-116/files X-SVN-Commit-Revision: 472760 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 06:51:58 -0000 Author: cy Date: Tue Jun 19 06:51:55 2018 New Revision: 472760 URL: https://svnweb.freebsd.org/changeset/ports/472760 Log: While working on the ports fallout due to the private Heimdal in base project, a port (www/squid-devel) was discovered to be grumpy due to numerous errors such as below: /usr/local/include/krb5/krb5.h:3566:19: error: 'register' storage class specifier is deprecated and incompatible with C++17 [-Werror,-Wdeprecated-register] register char **name); ^~~~~~~~~ The "register" keyword is meaningless and can cause grief among ports that build against any of the krb5 ports. Added: head/security/krb5-114/files/patch-include_krb5_krb5.hin (contents, props changed) head/security/krb5-115/files/patch-include_krb5_krb5.hin (contents, props changed) head/security/krb5-116/files/patch-include_krb5_krb5.hin (contents, props changed) Modified: head/security/krb5-114/Makefile (contents, props changed) head/security/krb5-115/Makefile (contents, props changed) head/security/krb5-116/Makefile (contents, props changed) Modified: head/security/krb5-114/Makefile ============================================================================== --- head/security/krb5-114/Makefile Tue Jun 19 06:36:13 2018 (r472759) +++ head/security/krb5-114/Makefile Tue Jun 19 06:51:55 2018 (r472760) @@ -3,7 +3,7 @@ PORTNAME= krb5 PORTVERSION= 1.14.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ .if !defined(MASTERDIR) Added: head/security/krb5-114/files/patch-include_krb5_krb5.hin ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/krb5-114/files/patch-include_krb5_krb5.hin Tue Jun 19 06:51:55 2018 (r472760) @@ -0,0 +1,74 @@ +--- include/krb5/krb5.hin.orig 2017-09-25 09:29:00.000000000 -0700 ++++ include/krb5/krb5.hin 2018-06-18 22:55:26.074018000 -0700 +@@ -3542,7 +3542,7 @@ + */ + krb5_error_code KRB5_CALLCONV + krb5_unparse_name(krb5_context context, krb5_const_principal principal, +- register char **name); ++ char **name); + + /** + * Convert krb5_principal structure to string and length. +@@ -4364,7 +4364,7 @@ + */ + krb5_error_code KRB5_CALLCONV_WRONG + krb5_principal2salt(krb5_context context, +- register krb5_const_principal pr, krb5_data *ret); ++ krb5_const_principal pr, krb5_data *ret); + /* librc.spec--see rcache.h */ + + /* libcc.spec */ +@@ -4705,7 +4705,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val); ++krb5_free_error(krb5_context context, krb5_error *val); + + /** + * Free a krb5_creds structure. +@@ -4738,7 +4738,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum(krb5_context context, krb5_checksum *val); + + /** + * Free the contents of a krb5_checksum structure. +@@ -4749,7 +4749,7 @@ + * This function frees the contents of @a val, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); + + /** + * Free a krb5_keyblock structure. +@@ -4760,7 +4760,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); + + /** + * Free the contents of a krb5_keyblock structure. +@@ -4771,7 +4771,7 @@ + * This function frees the contents of @a key, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key); ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); + + /** + * Free a krb5_ap_rep_enc_part structure. +@@ -4887,7 +4887,7 @@ + * Kerberos error codes + */ + krb5_error_code KRB5_CALLCONV +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); + + /** + * Check if a timestamp is within the allowed clock skew of the current time. Modified: head/security/krb5-115/Makefile ============================================================================== --- head/security/krb5-115/Makefile Tue Jun 19 06:36:13 2018 (r472759) +++ head/security/krb5-115/Makefile Tue Jun 19 06:51:55 2018 (r472760) @@ -3,7 +3,7 @@ PORTNAME= krb5 PORTVERSION= 1.15.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ .if !defined(MASTERDIR) Added: head/security/krb5-115/files/patch-include_krb5_krb5.hin ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/krb5-115/files/patch-include_krb5_krb5.hin Tue Jun 19 06:51:55 2018 (r472760) @@ -0,0 +1,74 @@ +--- include/krb5/krb5.hin.orig 2018-05-03 11:24:57.000000000 -0700 ++++ include/krb5/krb5.hin 2018-06-18 22:52:23.012932000 -0700 +@@ -3550,7 +3550,7 @@ + */ + krb5_error_code KRB5_CALLCONV + krb5_unparse_name(krb5_context context, krb5_const_principal principal, +- register char **name); ++ char **name); + + /** + * Convert krb5_principal structure to string and length. +@@ -4373,7 +4373,7 @@ + */ + krb5_error_code KRB5_CALLCONV_WRONG + krb5_principal2salt(krb5_context context, +- register krb5_const_principal pr, krb5_data *ret); ++ krb5_const_principal pr, krb5_data *ret); + /* librc.spec--see rcache.h */ + + /* libcc.spec */ +@@ -4714,7 +4714,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val); ++krb5_free_error(krb5_context context, krb5_error *val); + + /** + * Free a krb5_creds structure. +@@ -4747,7 +4747,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum(krb5_context context, krb5_checksum *val); + + /** + * Free the contents of a krb5_checksum structure. +@@ -4758,7 +4758,7 @@ + * This function frees the contents of @a val, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); + + /** + * Free a krb5_keyblock structure. +@@ -4769,7 +4769,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); + + /** + * Free the contents of a krb5_keyblock structure. +@@ -4780,7 +4780,7 @@ + * This function frees the contents of @a key, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key); ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); + + /** + * Free a krb5_ap_rep_enc_part structure. +@@ -4896,7 +4896,7 @@ + * Kerberos error codes + */ + krb5_error_code KRB5_CALLCONV +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); + + /** + * Check if a timestamp is within the allowed clock skew of the current time. Modified: head/security/krb5-116/Makefile ============================================================================== --- head/security/krb5-116/Makefile Tue Jun 19 06:36:13 2018 (r472759) +++ head/security/krb5-116/Makefile Tue Jun 19 06:51:55 2018 (r472760) @@ -3,7 +3,7 @@ PORTNAME= krb5 PORTVERSION= 1.16.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ .if !defined(MASTERDIR) Added: head/security/krb5-116/files/patch-include_krb5_krb5.hin ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/krb5-116/files/patch-include_krb5_krb5.hin Tue Jun 19 06:51:55 2018 (r472760) @@ -0,0 +1,74 @@ +--- include/krb5/krb5.hin.orig 2018-05-03 07:34:47.000000000 -0700 ++++ include/krb5/krb5.hin 2018-06-18 22:42:49.668451000 -0700 +@@ -3560,7 +3560,7 @@ + */ + krb5_error_code KRB5_CALLCONV + krb5_unparse_name(krb5_context context, krb5_const_principal principal, +- register char **name); ++ char **name); + + /** + * Convert krb5_principal structure to string and length. +@@ -4383,7 +4383,7 @@ + */ + krb5_error_code KRB5_CALLCONV_WRONG + krb5_principal2salt(krb5_context context, +- register krb5_const_principal pr, krb5_data *ret); ++ krb5_const_principal pr, krb5_data *ret); + /* librc.spec--see rcache.h */ + + /* libcc.spec */ +@@ -4724,7 +4724,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val); ++krb5_free_error(krb5_context context, krb5_error *val); + + /** + * Free a krb5_creds structure. +@@ -4757,7 +4757,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum(krb5_context context, krb5_checksum *val); + + /** + * Free the contents of a krb5_checksum structure. +@@ -4768,7 +4768,7 @@ + * This function frees the contents of @a val, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); + + /** + * Free a krb5_keyblock structure. +@@ -4779,7 +4779,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); + + /** + * Free the contents of a krb5_keyblock structure. +@@ -4790,7 +4790,7 @@ + * This function frees the contents of @a key, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key); ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); + + /** + * Free a krb5_ap_rep_enc_part structure. +@@ -4906,7 +4906,7 @@ + * Kerberos error codes + */ + krb5_error_code KRB5_CALLCONV +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); + + /** + * Check if a timestamp is within the allowed clock skew of the current time. From owner-svn-ports-head@freebsd.org Tue Jun 19 06:52:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EEE8100076B; Tue, 19 Jun 2018 06:52:45 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 002D36E945; Tue, 19 Jun 2018 06:52:45 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D4CAC100FB; Tue, 19 Jun 2018 06:52:44 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J6qinp084094; Tue, 19 Jun 2018 06:52:44 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J6qib2084092; Tue, 19 Jun 2018 06:52:44 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190652.w5J6qib2084092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 06:52:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472761 - head/math/R-cran-MSwM X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/math/R-cran-MSwM X-SVN-Commit-Revision: 472761 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 06:52:45 -0000 Author: tota Date: Tue Jun 19 06:52:44 2018 New Revision: 472761 URL: https://svnweb.freebsd.org/changeset/ports/472761 Log: - Update to 1.3 - Fix LICENSE section Modified: head/math/R-cran-MSwM/Makefile (contents, props changed) head/math/R-cran-MSwM/distinfo (contents, props changed) Modified: head/math/R-cran-MSwM/Makefile ============================================================================== --- head/math/R-cran-MSwM/Makefile Tue Jun 19 06:51:55 2018 (r472760) +++ head/math/R-cran-MSwM/Makefile Tue Jun 19 06:52:44 2018 (r472761) @@ -2,16 +2,14 @@ # $FreeBSD$ PORTNAME= MSwM -PORTVERSION= 1.2 -PORTREVISION= 1 +PORTVERSION= 1.3 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= tota@FreeBSD.org COMMENT= Fitting Markov Switching Models -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual +LICENSE= GPLv2+ USES= cran:auto-plist Modified: head/math/R-cran-MSwM/distinfo ============================================================================== --- head/math/R-cran-MSwM/distinfo Tue Jun 19 06:51:55 2018 (r472760) +++ head/math/R-cran-MSwM/distinfo Tue Jun 19 06:52:44 2018 (r472761) @@ -1,2 +1,3 @@ -SHA256 (MSwM_1.2.tar.gz) = 0c01fd729a98b9ce142b6188fef6aaff94a3b4f99b28383d64767820541c8206 -SIZE (MSwM_1.2.tar.gz) = 326398 +TIMESTAMP = 1529390239 +SHA256 (MSwM_1.3.tar.gz) = 153f38a8e2e5333954ebeded0b8cd7241ed8f80ea5a9f123f0de7483efcfc7db +SIZE (MSwM_1.3.tar.gz) = 341415 From owner-svn-ports-head@freebsd.org Tue Jun 19 06:56:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF10A10009E8; Tue, 19 Jun 2018 06:56:13 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EB816ECA1; Tue, 19 Jun 2018 06:56:13 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40AEE10101; Tue, 19 Jun 2018 06:56:13 +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 w5J6uDWB084390; Tue, 19 Jun 2018 06:56:13 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J6uC57084388; Tue, 19 Jun 2018 06:56:12 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806190656.w5J6uC57084388@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 19 Jun 2018 06:56:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472762 - in head/security/krb5-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/security/krb5-devel: . files X-SVN-Commit-Revision: 472762 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 06:56:13 -0000 Author: cy Date: Tue Jun 19 06:56:12 2018 New Revision: 472762 URL: https://svnweb.freebsd.org/changeset/ports/472762 Log: As described in r472760, the "register" keyword is meaningless and causes at least one port some gas. Remove the keyword from krb5.h. Added: head/security/krb5-devel/files/patch-include_krb5_krb5.hin (contents, props changed) Modified: head/security/krb5-devel/Makefile Modified: head/security/krb5-devel/Makefile ============================================================================== --- head/security/krb5-devel/Makefile Tue Jun 19 06:52:44 2018 (r472761) +++ head/security/krb5-devel/Makefile Tue Jun 19 06:56:12 2018 (r472762) @@ -3,7 +3,7 @@ PORTNAME= krb5 PORTVERSION= 1.17.${MIT_COMMIT_DATE} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security .if !defined(MASTERDIR) PKGNAMESUFFIX= -devel Added: head/security/krb5-devel/files/patch-include_krb5_krb5.hin ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/krb5-devel/files/patch-include_krb5_krb5.hin Tue Jun 19 06:56:12 2018 (r472762) @@ -0,0 +1,74 @@ +--- include/krb5/krb5.hin.orig 2018-05-12 22:15:24.000000000 -0700 ++++ include/krb5/krb5.hin 2018-06-18 23:46:02.119491000 -0700 +@@ -3566,7 +3566,7 @@ + */ + krb5_error_code KRB5_CALLCONV + krb5_unparse_name(krb5_context context, krb5_const_principal principal, +- register char **name); ++ char **name); + + /** + * Convert krb5_principal structure to string and length. +@@ -4389,7 +4389,7 @@ + */ + krb5_error_code KRB5_CALLCONV_WRONG + krb5_principal2salt(krb5_context context, +- register krb5_const_principal pr, krb5_data *ret); ++ krb5_const_principal pr, krb5_data *ret); + /* librc.spec--see rcache.h */ + + /* libcc.spec */ +@@ -4730,7 +4730,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val); ++krb5_free_error(krb5_context context, krb5_error *val); + + /** + * Free a krb5_creds structure. +@@ -4763,7 +4763,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum(krb5_context context, krb5_checksum *val); + + /** + * Free the contents of a krb5_checksum structure. +@@ -4774,7 +4774,7 @@ + * This function frees the contents of @a val, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); + + /** + * Free a krb5_keyblock structure. +@@ -4785,7 +4785,7 @@ + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); + + /** + * Free the contents of a krb5_keyblock structure. +@@ -4796,7 +4796,7 @@ + * This function frees the contents of @a key, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key); ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); + + /** + * Free a krb5_ap_rep_enc_part structure. +@@ -4912,7 +4912,7 @@ + * Kerberos error codes + */ + krb5_error_code KRB5_CALLCONV +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); + + /** + * Check if a timestamp is within the allowed clock skew of the current time. From owner-svn-ports-head@freebsd.org Tue Jun 19 07:09:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEB78100176A; Tue, 19 Jun 2018 07:09:31 +0000 (UTC) (envelope-from cy.schubert@cschubert.com) Received: from smtp-out-so.shaw.ca (smtp-out-so.shaw.ca [64.59.136.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 0E9D36F675; Tue, 19 Jun 2018 07:09:30 +0000 (UTC) (envelope-from cy.schubert@cschubert.com) Received: from spqr.komquats.com ([70.67.125.17]) by shaw.ca with ESMTPA id VAlWfHhcGSzNNVAlXfNL13; Tue, 19 Jun 2018 01:09:23 -0600 X-Authority-Analysis: v=2.3 cv=KuxjJ1eN c=1 sm=1 tr=0 a=VFtTW3WuZNDh6VkGe7fA3g==:117 a=VFtTW3WuZNDh6VkGe7fA3g==:17 a=kj9zAlcOel0A:10 a=7mUfYlMuFuIA:10 a=6I5d2MoRAAAA:8 a=YxBL1-UpAAAA:8 a=kflrSwzHNs2BWWs0MjEA:9 a=NGPWxmDp93m3Zp8Z:21 a=7wwcKriNZYnhriRP:21 a=CjuIK1q_8ugA:10 a=IjZwj45LgO3ly-622nXo:22 a=Ia-lj3WSrqcvXOmTRaiG:22 Received: from slippy.cwsent.com (slippy [10.1.1.91]) by spqr.komquats.com (Postfix) with ESMTPS id 15F3F26D; Tue, 19 Jun 2018 00:09:22 -0700 (PDT) Received: from slippy.cwsent.com (localhost [127.0.0.1]) by slippy.cwsent.com (8.15.2/8.15.2) with ESMTP id w5J79LYn026010; Tue, 19 Jun 2018 00:09:21 -0700 (PDT) (envelope-from Cy.Schubert@cschubert.com) Received: from slippy (cy@localhost) by slippy.cwsent.com (8.15.2/8.15.2/Submit) with ESMTP id w5J79LOw026007; Tue, 19 Jun 2018 00:09:21 -0700 (PDT) (envelope-from Cy.Schubert@cschubert.com) Message-Id: <201806190709.w5J79LOw026007@slippy.cwsent.com> X-Authentication-Warning: slippy.cwsent.com: cy owned process doing -bs X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.7.1 Reply-to: Cy Schubert From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.cschubert.com/ To: Cy Schubert cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472762 - in head/security/krb5-devel: . files In-Reply-To: Message from Cy Schubert of "Tue, 19 Jun 2018 06:56:12 -0000." <201806190656.w5J6uC57084388@repo.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 19 Jun 2018 00:09:21 -0700 X-CMAE-Envelope: MS4wfIMeuqPXetJ6HPeVmM/AGWiqBe86Oryg+cnZF235E72Gh5dkOAeGVcbmso/+HfpQh9FEu+pP7AAPLc5ivhkaJwegxCEuE/TvlhxvAWdUKERyM0KhozpA 2aCRS3j4UJ01z5q/mgYizyXWkAYrBx3PApuIXCjGRKZqsMRDntm7MqqZc9wTxR/dnvAKoBvZ+GjuREtrKzPAepayIjwT1zdYvTsiatN3CsvYt6xmDUlt7eDC YW4aXbeok7jI4QLIaUHNIJa0sjKIxOLooU68J8hi4PzXJsO79M7l0WH1nfUadF57MlIsIOINA7Fh60Q6dZNSJw== X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:09:31 -0000 In message <201806190656.w5J6uC57084388@repo.freebsd.org>, Cy Schubert writes: > Author: cy > Date: Tue Jun 19 06:56:12 2018 > New Revision: 472762 > URL: https://svnweb.freebsd.org/changeset/ports/472762 > > Log: > As described in r472760, the "register" keyword is meaningless and > causes at least one port some gas. Remove the keyword from krb5.h. > > Added: > head/security/krb5-devel/files/patch-include_krb5_krb5.hin (contents, pro > ps changed) > Modified: > head/security/krb5-devel/Makefile > > Modified: head/security/krb5-devel/Makefile > ============================================================================= > = > --- head/security/krb5-devel/Makefile Tue Jun 19 06:52:44 2018 (r47276 > 1) > +++ head/security/krb5-devel/Makefile Tue Jun 19 06:56:12 2018 (r47276 > 2) > @@ -3,7 +3,7 @@ > > PORTNAME= krb5 > PORTVERSION= 1.17.${MIT_COMMIT_DATE} > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= security > .if !defined(MASTERDIR) > PKGNAMESUFFIX= -devel > > Added: head/security/krb5-devel/files/patch-include_krb5_krb5.hin > ============================================================================= > = > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/krb5-devel/files/patch-include_krb5_krb5.hin Tue Jun > 19 06:56:12 2018 (r472762) > @@ -0,0 +1,74 @@ > +--- include/krb5/krb5.hin.orig 2018-05-12 22:15:24.000000000 -0700 > ++++ include/krb5/krb5.hin 2018-06-18 23:46:02.119491000 -0700 > +@@ -3566,7 +3566,7 @@ > + */ > + krb5_error_code KRB5_CALLCONV > + krb5_unparse_name(krb5_context context, krb5_const_principal principal, > +- register char **name); > ++ char **name); > + > + /** > + * Convert krb5_principal structure to string and length. > +@@ -4389,7 +4389,7 @@ > + */ > + krb5_error_code KRB5_CALLCONV_WRONG > + krb5_principal2salt(krb5_context context, > +- register krb5_const_principal pr, krb5_data *ret); > ++ krb5_const_principal pr, krb5_data *ret); > + /* librc.spec--see rcache.h */ > + > + /* libcc.spec */ > +@@ -4730,7 +4730,7 @@ > + * This function frees the contents of @a val and the structure itself. > + */ > + void KRB5_CALLCONV > +-krb5_free_error(krb5_context context, register krb5_error *val); > ++krb5_free_error(krb5_context context, krb5_error *val); > + > + /** > + * Free a krb5_creds structure. > +@@ -4763,7 +4763,7 @@ > + * This function frees the contents of @a val and the structure itself. > + */ > + void KRB5_CALLCONV > +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); > ++krb5_free_checksum(krb5_context context, krb5_checksum *val); > + > + /** > + * Free the contents of a krb5_checksum structure. > +@@ -4774,7 +4774,7 @@ > + * This function frees the contents of @a val, but not the structure itself > . > + */ > + void KRB5_CALLCONV > +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *v > al); > ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); > + > + /** > + * Free a krb5_keyblock structure. > +@@ -4785,7 +4785,7 @@ > + * This function frees the contents of @a val and the structure itself. > + */ > + void KRB5_CALLCONV > +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); > ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); > + > + /** > + * Free the contents of a krb5_keyblock structure. > +@@ -4796,7 +4796,7 @@ > + * This function frees the contents of @a key, but not the structure itself > . > + */ > + void KRB5_CALLCONV > +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *k > ey); > ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); > + > + /** > + * Free a krb5_ap_rep_enc_part structure. > +@@ -4912,7 +4912,7 @@ > + * Kerberos error codes > + */ > + krb5_error_code KRB5_CALLCONV > +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); > ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); > + > + /** > + * Check if a timestamp is within the allowed clock skew of the current tim > e. Updating the -devel port to the latest commit I discovered that our upline was thinking the same. They removed the "register" keyword from krb5.h and a number of other files as well. I will backport the complete patch to the remaining krb5 ports after krb5-devel is updated (probably tomorrow). It's been serendipitous on more than one occasion today. Given that it's past midnight here, the update to krb5-devel will have to wait. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. From owner-svn-ports-head@freebsd.org Tue Jun 19 07:28:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABAE610028BC; Tue, 19 Jun 2018 07:28:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C0D47016E; Tue, 19 Jun 2018 07:28:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 201A0105EC; Tue, 19 Jun 2018 07:28:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J7Si3V099777; Tue, 19 Jun 2018 07:28:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J7Sh7X099768; Tue, 19 Jun 2018 07:28:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190728.w5J7Sh7X099768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 07:28:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472763 - in head/misc: . py-SoapySDR py-SoapySDR/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-SoapySDR py-SoapySDR/files X-SVN-Commit-Revision: 472763 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:28:45 -0000 Author: yuri Date: Tue Jun 19 07:28:42 2018 New Revision: 472763 URL: https://svnweb.freebsd.org/changeset/ports/472763 Log: New port: misc/py-SoapySDR: Vendor and platform neutral SDR support library (python binding) Added: head/misc/py-SoapySDR/ head/misc/py-SoapySDR/Makefile (contents, props changed) head/misc/py-SoapySDR/distinfo (contents, props changed) head/misc/py-SoapySDR/files/ head/misc/py-SoapySDR/files/patch-CMakeLists.txt (contents, props changed) head/misc/py-SoapySDR/files/patch-python3_CMakeLists.txt (contents, props changed) head/misc/py-SoapySDR/files/patch-python3_FindPython3Interp.cmake (contents, props changed) head/misc/py-SoapySDR/files/patch-python3_FindPython3Libs.cmake (contents, props changed) head/misc/py-SoapySDR/files/patch-python_CMakeLists.txt (contents, props changed) head/misc/py-SoapySDR/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Jun 19 06:56:12 2018 (r472762) +++ head/misc/Makefile Tue Jun 19 07:28:42 2018 (r472763) @@ -402,6 +402,7 @@ SUBDIR += pubs SUBDIR += py-PyUserInput SUBDIR += py-SimpleSoapy + SUBDIR += py-SoapySDR SUBDIR += py-YABT SUBDIR += py-cinder SUBDIR += py-colorbrewer Added: head/misc/py-SoapySDR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/Makefile Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= SoapySDR +DISTVERSIONPREFIX= soapy-sdr- +DISTVERSION= 0.6.1-71 +DISTVERSIONSUFFIX= -g69c16e9 +CATEGORIES= misc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Vendor and platform neutral SDR support library (python binding) + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt + +BROKEN_FreeBSD_10= error: redefinition of 'swig::traits' + +BUILD_DEPENDS= swig3.0:devel/swig30 +LIB_DEPENDS= libSoapySDR.so:misc/soapysdr + +USES= cmake:outsource python +USE_GITHUB= yes +GH_ACCOUNT= pothosware +USE_PYTHON= flavors + +CMAKE_ARGS= -DFREEBSD_PYTHON_VERSION:INTEGER=${PYTHON_VER:S/.//} \ + -DFREEBSD_PYTHON_VER2:STRING=${PYTHON_VER} +CMAKE_OFF= ENABLE_DOCS + +PLIST_FILES= ${PYTHON_SITELIBDIR}/SoapySDR.py \ + ${PYTHON_SITELIBDIR}/_SoapySDR.so + +post-install: # Until fixed, just delete libs: https://github.com/pothosware/SoapySDR/issues/169 + @cd ${STAGEDIR}${PREFIX} && ${RM} -r bin include lib/lib* libdata share + +.include Added: head/misc/py-SoapySDR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/distinfo Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529384177 +SHA256 (pothosware-SoapySDR-soapy-sdr-0.6.1-71-g69c16e9_GH0.tar.gz) = 308ea401054eb52bcce828012393fe143174f7b25d0e04ce189c00713645e1b5 +SIZE (pothosware-SoapySDR-soapy-sdr-0.6.1-71-g69c16e9_GH0.tar.gz) = 119259 Added: head/misc/py-SoapySDR/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/files/patch-CMakeLists.txt Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,26 @@ +--- CMakeLists.txt.orig 2018-06-19 06:16:03 UTC ++++ CMakeLists.txt +@@ -121,19 +121,23 @@ add_subdirectory(docs) + ######################################################################## + # Python support (optional) + ######################################################################## ++if (${FREEBSD_PYTHON_VERSION} LESS 30) + message(STATUS "") + message(STATUS "#############################################") + message(STATUS "## Begin configuration for Python support...") + message(STATUS "#############################################") + message(STATUS "Enabling optional Python bindings if possible...") + add_subdirectory(python) ++endif() + ++if (${FREEBSD_PYTHON_VERSION} GREATER_EQUAL 30) + message(STATUS "") + message(STATUS "#############################################") + message(STATUS "## Begin configuration for Python3 support...") + message(STATUS "#############################################") + message(STATUS "Enabling optional Python3 bindings if possible...") + add_subdirectory(python3) ++endif() + + + ######################################################################## Added: head/misc/py-SoapySDR/files/patch-python3_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/files/patch-python3_CMakeLists.txt Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,11 @@ +--- python3/CMakeLists.txt.orig 2018-05-13 06:02:48 UTC ++++ python3/CMakeLists.txt +@@ -55,7 +55,7 @@ endif() + ######################################################################## + include(FeatureSummary) + include(CMakeDependentOption) +-cmake_dependent_option(ENABLE_PYTHON3 "Enable python bindings" ON "ENABLE_LIBRARY;SWIG_FOUND;PYTHON3INTERP_FOUND;PYTHON3LIBS_FOUND;PYTHON3_DEBUG_OK;BUILD_PYTHON3" OFF) ++option(ENABLE_PYTHON3 "Enable python bindings" ON) + add_feature_info(Python3 ENABLE_PYTHON3 "python3 bindings") + if (NOT ENABLE_PYTHON3) + return() Added: head/misc/py-SoapySDR/files/patch-python3_FindPython3Interp.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/files/patch-python3_FindPython3Interp.cmake Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,20 @@ +--- python3/FindPython3Interp.cmake.orig 2018-06-19 06:38:27 UTC ++++ python3/FindPython3Interp.cmake +@@ -39,7 +39,7 @@ + # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + FIND_PROGRAM(PYTHON3_EXECUTABLE +- NAMES python3.2mu python3.2m python3.2u python3.2 python3.1 python3.0 python3 ++ NAMES python${FREEBSD_PYTHON_VER2} + PATHS + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\3.2\\InstallPath] + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\3.1\\InstallPath] +@@ -47,7 +47,7 @@ FIND_PROGRAM(PYTHON3_EXECUTABLE + ) + + FIND_PROGRAM(PYTHON3_DBG_EXECUTABLE +- NAMES python3.2dmu python3.2dm python3.2du python3.2d python3.1-dbg python3.0-dbg python3-dbg ++ NAMES python${FREEBSD_PYTHON_VER2}-dbg + PATHS + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\3.2\\InstallPath] + [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\3.1\\InstallPath] Added: head/misc/py-SoapySDR/files/patch-python3_FindPython3Libs.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/files/patch-python3_FindPython3Libs.cmake Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,11 @@ +--- python3/FindPython3Libs.cmake.orig 2018-06-19 06:36:21 UTC ++++ python3/FindPython3Libs.cmake +@@ -46,7 +46,7 @@ INCLUDE(CMakeFindFrameworks) + # Search for the python framework on Apple. + # CMAKE_FIND_FRAMEWORKS(Python) + +-FOREACH(_CURRENT_VERSION 3.5 3.4 3.3 3.2 3.1 3.0) ++FOREACH(_CURRENT_VERSION ${FREEBSD_PYTHON_VER2}) + IF(_CURRENT_VERSION GREATER 3.1) + SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "") + ELSE() Added: head/misc/py-SoapySDR/files/patch-python_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/files/patch-python_CMakeLists.txt Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,11 @@ +--- python/CMakeLists.txt.orig 2018-06-19 07:11:01 UTC ++++ python/CMakeLists.txt +@@ -121,7 +121,7 @@ set(CMAKE_SWIG_FLAGS ${CMAKE_SWIG_FLAGS} + ######################################################################## + include(FeatureSummary) + include(CMakeDependentOption) +-cmake_dependent_option(ENABLE_PYTHON "Enable python bindings" ON "ENABLE_LIBRARY;SWIG_FOUND;PYTHONINTERP_FOUND;PYTHONLIBS_FOUND;PYTHON_DEBUG_OK;PYTHON_VERSION_MATCH" OFF) ++option(ENABLE_PYTHON "Enable python bindings" ON) + add_feature_info(Python ENABLE_PYTHON "python bindings v${PYTHON_VERSION_STRING}") + if (NOT ENABLE_PYTHON) + return() Added: head/misc/py-SoapySDR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-SoapySDR/pkg-descr Tue Jun 19 07:28:42 2018 (r472763) @@ -0,0 +1,4 @@ +Python binding of SoapySDR, an open-source generalized C/C++ API and runtime +library for interfacing with SDR devices. + +WWW: https://github.com/pothosware/SoapySDR From owner-svn-ports-head@freebsd.org Tue Jun 19 07:36:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 389821002ECA; Tue, 19 Jun 2018 07:36:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA2E57069A; Tue, 19 Jun 2018 07:36:00 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B80DC10790; Tue, 19 Jun 2018 07:36:00 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J7a0ZY005017; Tue, 19 Jun 2018 07:36:00 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J7a0Lt005016; Tue, 19 Jun 2018 07:36:00 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190736.w5J7a0Lt005016@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 07:36:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472764 - head/misc/py-SimpleSoapy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/py-SimpleSoapy X-SVN-Commit-Revision: 472764 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:36:01 -0000 Author: yuri Date: Tue Jun 19 07:36:00 2018 New Revision: 472764 URL: https://svnweb.freebsd.org/changeset/ports/472764 Log: misc/py-SimpleSoapy: Add missing dependency It is missing from the requirements list in the project. Modified: head/misc/py-SimpleSoapy/Makefile Modified: head/misc/py-SimpleSoapy/Makefile ============================================================================== --- head/misc/py-SimpleSoapy/Makefile Tue Jun 19 07:28:42 2018 (r472763) +++ head/misc/py-SimpleSoapy/Makefile Tue Jun 19 07:36:00 2018 (r472764) @@ -2,6 +2,7 @@ PORTNAME= SimpleSoapy DISTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= misc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +13,8 @@ COMMENT= Simple pythonic wrapper for SoapySDR library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}SoapySDR>0:misc/py-SoapySDR@${PY_FLAVOR} USES= python:3.4+ USE_PYTHON= distutils autoplist From owner-svn-ports-head@freebsd.org Tue Jun 19 07:41:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B1BE100338F; Tue, 19 Jun 2018 07:41:20 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2BF5F709F4; Tue, 19 Jun 2018 07:41:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0CF47107CB; Tue, 19 Jun 2018 07:41:20 +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 w5J7fJNZ006833; Tue, 19 Jun 2018 07:41:19 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J7fJbY006831; Tue, 19 Jun 2018 07:41:19 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806190741.w5J7fJbY006831@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 07:41:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472765 - head/www/p5-WWW-Mechanize-PhantomJS X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/www/p5-WWW-Mechanize-PhantomJS X-SVN-Commit-Revision: 472765 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:41:20 -0000 Author: pi Date: Tue Jun 19 07:41:19 2018 New Revision: 472765 URL: https://svnweb.freebsd.org/changeset/ports/472765 Log: www/p5-WWW-Mechanize-PhantomJS: update 0.15 -> 0.18 Relnotes: https://metacpan.org/source/CORION/WWW-Mechanize-PhantomJS-0.18/Changes Modified: head/www/p5-WWW-Mechanize-PhantomJS/Makefile head/www/p5-WWW-Mechanize-PhantomJS/distinfo Modified: head/www/p5-WWW-Mechanize-PhantomJS/Makefile ============================================================================== --- head/www/p5-WWW-Mechanize-PhantomJS/Makefile Tue Jun 19 07:36:00 2018 (r472764) +++ head/www/p5-WWW-Mechanize-PhantomJS/Makefile Tue Jun 19 07:41:19 2018 (r472765) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= WWW-Mechanize-PhantomJS -PORTVERSION= 0.15 +PORTVERSION= 0.18 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,7 +11,7 @@ COMMENT= Automate interaction with javascript websites LICENSE= ARTPERL10 -BUILD_DEPENDS= ${LOCALBASE}/bin/phantomjs:lang/phantomjs \ +BUILD_DEPENDS= phantomjs:lang/phantomjs \ p5-WWW-Mechanize>=1.73:www/p5-WWW-Mechanize \ p5-Object-Import>=1.004:devel/p5-Object-Import \ p5-Selenium-Remote-Driver>=0.2202:www/p5-Selenium-Remote-Driver \ Modified: head/www/p5-WWW-Mechanize-PhantomJS/distinfo ============================================================================== --- head/www/p5-WWW-Mechanize-PhantomJS/distinfo Tue Jun 19 07:36:00 2018 (r472764) +++ head/www/p5-WWW-Mechanize-PhantomJS/distinfo Tue Jun 19 07:41:19 2018 (r472765) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492849651 -SHA256 (WWW-Mechanize-PhantomJS-0.15.tar.gz) = 005aa6203794c1183ddafeb04f9a8d88813aa07f5b8740c5f70c404ba8e6a01b -SIZE (WWW-Mechanize-PhantomJS-0.15.tar.gz) = 615035 +TIMESTAMP = 1529355502 +SHA256 (WWW-Mechanize-PhantomJS-0.18.tar.gz) = 8a86d8099fc3d51739b7650ee86c04a7c7f4f1cdb66aada0211eed70cf93a11d +SIZE (WWW-Mechanize-PhantomJS-0.18.tar.gz) = 605572 From owner-svn-ports-head@freebsd.org Tue Jun 19 07:47:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A76A81003D4B; Tue, 19 Jun 2018 07:47:45 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 54E5D70F98; Tue, 19 Jun 2018 07:47:45 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 367A710929; Tue, 19 Jun 2018 07:47:45 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J7ljU0010096; Tue, 19 Jun 2018 07:47:45 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J7ljp5010095; Tue, 19 Jun 2018 07:47:45 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201806190747.w5J7ljp5010095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 19 Jun 2018 07:47:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472766 - head/devel/critcl X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/devel/critcl X-SVN-Commit-Revision: 472766 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:47:45 -0000 Author: gahr Date: Tue Jun 19 07:47:44 2018 New Revision: 472766 URL: https://svnweb.freebsd.org/changeset/ports/472766 Log: devel/critcl: unbreak on powerpc64 Reported by: linimon Modified: head/devel/critcl/Makefile Modified: head/devel/critcl/Makefile ============================================================================== --- head/devel/critcl/Makefile Tue Jun 19 07:41:19 2018 (r472765) +++ head/devel/critcl/Makefile Tue Jun 19 07:47:44 2018 (r472766) @@ -14,8 +14,6 @@ LICENSE_NAME= Tcl/Tk License LICENSE_FILE= ${WRKSRC}/license.terms LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_powerpc64= fails to package: Unable to access file freebsd-powerpc64/md5c.so:No such file or directory - RUN_DEPENDS= ${LOCALBASE}/lib/Trf/pkgIndex.tcl:devel/tcl-trf \ ${LOCALBASE}/lib/tcllib/cmdline/pkgIndex.tcl:devel/tcllib @@ -26,7 +24,7 @@ GH_ACCOUNT= andreas-kupries TEST_TARGET= test PLIST_SUB+= VER=${PORTVERSION} \ - ARCH=${ARCH:C/arm.*/arm/:S/i386/ix86/:S/aarch64/arm/} + ARCH=${ARCH:C/arm.*/arm/:S/i386/ix86/:S/aarch64/arm/:S/powerpc64/powerpc/} PORTDOCS= * NO_BUILD= yes From owner-svn-ports-head@freebsd.org Tue Jun 19 07:47:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 965D41003D8C; Tue, 19 Jun 2018 07:47:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 448B971068; Tue, 19 Jun 2018 07:47:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 253661092A; Tue, 19 Jun 2018 07:47:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J7lr8r010293; Tue, 19 Jun 2018 07:47:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J7lqbt010289; Tue, 19 Jun 2018 07:47:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806190747.w5J7lqbt010289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 07:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472767 - in head/misc: . py-QSpectrumAnalyzer py-QSpectrumAnalyzer/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-QSpectrumAnalyzer py-QSpectrumAnalyzer/files X-SVN-Commit-Revision: 472767 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:47:53 -0000 Author: yuri Date: Tue Jun 19 07:47:51 2018 New Revision: 472767 URL: https://svnweb.freebsd.org/changeset/ports/472767 Log: New port: misc/py-QSpectrumAnalyzer: Spectrum analyzer for multiple SDR platforms Added: head/misc/py-QSpectrumAnalyzer/ head/misc/py-QSpectrumAnalyzer/Makefile (contents, props changed) head/misc/py-QSpectrumAnalyzer/distinfo (contents, props changed) head/misc/py-QSpectrumAnalyzer/files/ head/misc/py-QSpectrumAnalyzer/files/patch-setup.py (contents, props changed) head/misc/py-QSpectrumAnalyzer/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Tue Jun 19 07:47:44 2018 (r472766) +++ head/misc/Makefile Tue Jun 19 07:47:51 2018 (r472767) @@ -401,6 +401,7 @@ SUBDIR += ptsort SUBDIR += pubs SUBDIR += py-PyUserInput + SUBDIR += py-QSpectrumAnalyzer SUBDIR += py-SimpleSoapy SUBDIR += py-SoapySDR SUBDIR += py-YABT Added: head/misc/py-QSpectrumAnalyzer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-QSpectrumAnalyzer/Makefile Tue Jun 19 07:47:51 2018 (r472767) @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= QSpectrumAnalyzer +DISTVERSION= 2.1.0 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Spectrum analyzer for multiple SDR platforms + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pyqtgraph>=0.10.0:graphics/py-pyqtgraph@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}soapy_power>=1.5.0:misc/py-soapy_power@${PY_FLAVOR} + +USES= fortran python:3.4+ pyqt:5 +USE_PYQT= core gui widgets +USE_PYTHON= distutils concurrent autoplist + +PLIST_FILES= bin/${PORTNAME:tl}.shadow + +post-patch: # change from Qt.py that doesn't work to PyQt5 + @${FIND} ${WRKSRC} -name "*.py" | ${XARGS} ${REINPLACE_CMD} -i '' -e ' \ + s|from Qt import |from PyQt5 import | ; \ + s|, __binding__|| ; \ + s|QtCore.Signal|QtCore.pyqtSignal| ; \ + s|QtCore.Slot|QtCore.pyqtSlot|' + +post-install: + @${MV} ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl} ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl}.shadow + @(echo "#!/bin/sh"; \ + echo ""; \ + echo "LD_PRELOAD=${PREFIX}/lib/gcc6/libgcc_s.so ${PREFIX}/bin/${PORTNAME:tl}.shadow \"$$@\"" \ + ) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl} + @${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl} + +.include Added: head/misc/py-QSpectrumAnalyzer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-QSpectrumAnalyzer/distinfo Tue Jun 19 07:47:51 2018 (r472767) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529285292 +SHA256 (QSpectrumAnalyzer-2.1.0.tar.gz) = c042dc2530ee96052ff54a883c4dd4c59fb553dfd1d3a84a2a639f4fee4714ae +SIZE (QSpectrumAnalyzer-2.1.0.tar.gz) = 49137 Added: head/misc/py-QSpectrumAnalyzer/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-QSpectrumAnalyzer/files/patch-setup.py Tue Jun 19 07:47:51 2018 (r472767) @@ -0,0 +1,12 @@ +--- setup.py.orig 2018-06-18 03:27:59 UTC ++++ setup.py +@@ -31,8 +31,7 @@ setup( + }, + install_requires=[ + "soapy_power>=1.5.0", +- "pyqtgraph>=0.10.0", +- "Qt.py" ++ "pyqtgraph>=0.10.0" + ], + classifiers=[ + "Development Status :: 4 - Beta", Added: head/misc/py-QSpectrumAnalyzer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-QSpectrumAnalyzer/pkg-descr Tue Jun 19 07:47:51 2018 (r472767) @@ -0,0 +1,4 @@ +Spectrum analyzer for multiple SDR platforms (PyQtGraph based GUI for +soapy_power, hackrf_sweep, rtl_power, rx_power and other backends). + +WWW: https://github.com/xmikos/qspectrumanalyzer From owner-svn-ports-head@freebsd.org Tue Jun 19 07:51:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F117810042C0; Tue, 19 Jun 2018 07:51:20 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A294A71528; Tue, 19 Jun 2018 07:51:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 83AFB10A65; Tue, 19 Jun 2018 07:51:20 +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 w5J7pKSG010600; Tue, 19 Jun 2018 07:51:20 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J7pJR5010597; Tue, 19 Jun 2018 07:51:19 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806190751.w5J7pJR5010597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 07:51:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472768 - head/security/p5-Crypt-Perl X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/security/p5-Crypt-Perl X-SVN-Commit-Revision: 472768 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 07:51:21 -0000 Author: pi Date: Tue Jun 19 07:51:19 2018 New Revision: 472768 URL: https://svnweb.freebsd.org/changeset/ports/472768 Log: security/p5-Crypt-Perl: update 0.17 -> 0.19 Relnotes: https://metacpan.org/changes/distribution/Crypt-Perl Modified: head/security/p5-Crypt-Perl/Makefile head/security/p5-Crypt-Perl/distinfo head/security/p5-Crypt-Perl/pkg-plist Modified: head/security/p5-Crypt-Perl/Makefile ============================================================================== --- head/security/p5-Crypt-Perl/Makefile Tue Jun 19 07:47:51 2018 (r472767) +++ head/security/p5-Crypt-Perl/Makefile Tue Jun 19 07:51:19 2018 (r472768) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Crypt-Perl -PORTVERSION= 0.17 +PORTVERSION= 0.19 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/security/p5-Crypt-Perl/distinfo ============================================================================== --- head/security/p5-Crypt-Perl/distinfo Tue Jun 19 07:47:51 2018 (r472767) +++ head/security/p5-Crypt-Perl/distinfo Tue Jun 19 07:51:19 2018 (r472768) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526034462 -SHA256 (Crypt-Perl-0.17.tar.gz) = 26a1d4d23329716b592f1c616f935b0d0b138d4a172ed75e5acd02e16223ae63 -SIZE (Crypt-Perl-0.17.tar.gz) = 289479 +TIMESTAMP = 1529394156 +SHA256 (Crypt-Perl-0.19.tar.gz) = e14583b52d94e72c5e99756acef9156c13e9dc0acca93a451262663095d59c5f +SIZE (Crypt-Perl-0.19.tar.gz) = 308012 Modified: head/security/p5-Crypt-Perl/pkg-plist ============================================================================== --- head/security/p5-Crypt-Perl/pkg-plist Tue Jun 19 07:47:51 2018 (r472767) +++ head/security/p5-Crypt-Perl/pkg-plist Tue Jun 19 07:51:19 2018 (r472768) @@ -1,6 +1,8 @@ %%SITE_PERL%%/Crypt/Perl.pm %%SITE_PERL%%/Crypt/Perl/ASN1.pm +%%SITE_PERL%%/Crypt/Perl/ASN1/BitString.pm %%SITE_PERL%%/Crypt/Perl/ASN1/Encodee.pm +%%SITE_PERL%%/Crypt/Perl/ASN1/Signatures.pm %%SITE_PERL%%/Crypt/Perl/BigInt.pm %%SITE_PERL%%/Crypt/Perl/ECDSA.pm %%SITE_PERL%%/Crypt/Perl/ECDSA/EC/Curve.pm @@ -23,7 +25,6 @@ %%SITE_PERL%%/Crypt/Perl/Math.pm %%SITE_PERL%%/Crypt/Perl/PK.pm %%SITE_PERL%%/Crypt/Perl/PKCS10.pm -%%SITE_PERL%%/Crypt/Perl/PKCS10/ASN1.pm %%SITE_PERL%%/Crypt/Perl/PKCS10/Attribute.pm %%SITE_PERL%%/Crypt/Perl/PKCS10/Attribute/challengePassword.pm %%SITE_PERL%%/Crypt/Perl/PKCS10/Attribute/extensionRequest.pm @@ -56,8 +57,36 @@ %%SITE_PERL%%/Crypt/Perl/X/UnknownHash.pm %%SITE_PERL%%/Crypt/Perl/X/UnknownJWKkty.pm %%SITE_PERL%%/Crypt/Perl/X509/Extension.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/acmeValidation_v1.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/authorityInfoAccess.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/authorityKeyIdentifier.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/basicConstraints.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/cRLDistributionPoints.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/certificatePolicies.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/ct_precert_poison.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/ct_precert_scts.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/extKeyUsage.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/freshestCRL.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/inhibitAnyPolicy.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/issuerAltName.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/keyUsage.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/nameConstraints.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/noCheck.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/policyConstraints.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/policyMappings.pm %%SITE_PERL%%/Crypt/Perl/X509/Extension/subjectAltName.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/subjectDirectoryAttributes.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/subjectInfoAccess.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/subjectKeyIdentifier.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extension/tlsFeature.pm +%%SITE_PERL%%/Crypt/Perl/X509/Extensions.pm +%%SITE_PERL%%/Crypt/Perl/X509/GeneralName.pm +%%SITE_PERL%%/Crypt/Perl/X509/GeneralNames.pm +%%SITE_PERL%%/Crypt/Perl/X509/InfoAccessBase.pm %%SITE_PERL%%/Crypt/Perl/X509/Name.pm +%%SITE_PERL%%/Crypt/Perl/X509/RelativeDistinguishedName.pm +%%SITE_PERL%%/Crypt/Perl/X509/SCT.pm +%%SITE_PERL%%/Crypt/Perl/X509v3.pm %%PERL5_MAN3%%/Crypt::Perl.3.gz %%PERL5_MAN3%%/Crypt::Perl::ECDSA.3.gz %%PERL5_MAN3%%/Crypt::Perl::ECDSA::EC::Curve.3.gz @@ -80,5 +109,29 @@ %%PERL5_MAN3%%/Crypt::Perl::RSA::PrivateKey.3.gz %%PERL5_MAN3%%/Crypt::Perl::RSA::PublicKey.3.gz %%PERL5_MAN3%%/Crypt::Perl::X.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::acmeValidation_v1.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::authorityInfoAccess.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::authorityKeyIdentifier.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::basicConstraints.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::cRLDistributionPoints.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::certificatePolicies.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::ct_precert_poison.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::ct_precert_scts.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::extKeyUsage.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::freshestCRL.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::inhibitAnyPolicy.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::issuerAltName.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::keyUsage.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::nameConstraints.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::noCheck.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::policyConstraints.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::policyMappings.3.gz %%PERL5_MAN3%%/Crypt::Perl::X509::Extension::subjectAltName.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::subjectDirectoryAttributes.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::subjectInfoAccess.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::subjectKeyIdentifier.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extension::tlsFeature.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::Extensions.3.gz %%PERL5_MAN3%%/Crypt::Perl::X509::Name.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509::SCT.3.gz +%%PERL5_MAN3%%/Crypt::Perl::X509v3.3.gz From owner-svn-ports-head@freebsd.org Tue Jun 19 08:03:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32C831004EEF; Tue, 19 Jun 2018 08:03:47 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DC2E171ED7; Tue, 19 Jun 2018 08:03:46 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BBBF810C61; Tue, 19 Jun 2018 08:03:46 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J83k2a020716; Tue, 19 Jun 2018 08:03:46 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J83jsO020712; Tue, 19 Jun 2018 08:03:45 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190803.w5J83jsO020712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 08:03:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472769 - in head/math: . R-cran-pls X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-pls X-SVN-Commit-Revision: 472769 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 08:03:47 -0000 Author: tota Date: Tue Jun 19 08:03:45 2018 New Revision: 472769 URL: https://svnweb.freebsd.org/changeset/ports/472769 Log: - Add new port: math/R-cran-pls Multivariate regression methods Partial Least Squares Regression (PLSR), Principal Component Regression (PCR) and Canonical Powered Partial Least Squares (CPPLS). WWW: https://cran.r-project.org/web/packages/pls/ Added: head/math/R-cran-pls/ head/math/R-cran-pls/Makefile (contents, props changed) head/math/R-cran-pls/distinfo (contents, props changed) head/math/R-cran-pls/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Jun 19 07:51:19 2018 (r472768) +++ head/math/Makefile Tue Jun 19 08:03:45 2018 (r472769) @@ -76,6 +76,7 @@ SUBDIR += R-cran-numDeriv SUBDIR += R-cran-outliers SUBDIR += R-cran-pbkrtest + SUBDIR += R-cran-pls SUBDIR += R-cran-prodlim SUBDIR += R-cran-psych SUBDIR += R-cran-quadprog Added: head/math/R-cran-pls/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-pls/Makefile Tue Jun 19 08:03:45 2018 (r472769) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= pls +DISTVERSION= 2.6-0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Partial Least Squares and Principal Component Regression + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/math/R-cran-pls/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-pls/distinfo Tue Jun 19 08:03:45 2018 (r472769) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529392170 +SHA256 (pls_2.6-0.tar.gz) = 3d8708fb7f45863d3861fd231e06955e6750bcbe717e1ccfcc6d66d0cb4d4596 +SIZE (pls_2.6-0.tar.gz) = 809111 Added: head/math/R-cran-pls/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-pls/pkg-descr Tue Jun 19 08:03:45 2018 (r472769) @@ -0,0 +1,5 @@ +Multivariate regression methods Partial Least Squares Regression +(PLSR), Principal Component Regression (PCR) and Canonical Powered +Partial Least Squares (CPPLS). + +WWW: https://cran.r-project.org/web/packages/pls/ From owner-svn-ports-head@freebsd.org Tue Jun 19 08:13:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDA0A1005818; Tue, 19 Jun 2018 08:13:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7307572572; Tue, 19 Jun 2018 08:13:11 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 54F3810E18; Tue, 19 Jun 2018 08:13:11 +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 w5J8DBG1025732; Tue, 19 Jun 2018 08:13:11 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J8DAgR025731; Tue, 19 Jun 2018 08:13:10 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806190813.w5J8DAgR025731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 08:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472770 - head/x11/p5-X11-Xlib X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/x11/p5-X11-Xlib X-SVN-Commit-Revision: 472770 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 08:13:11 -0000 Author: pi Date: Tue Jun 19 08:13:10 2018 New Revision: 472770 URL: https://svnweb.freebsd.org/changeset/ports/472770 Log: x11/p5-X11-Xlib: update 0.15 -> 0.18 Relnotes: https://metacpan.org/source/NERDVANA/X11-Xlib-0.18/Changes Modified: head/x11/p5-X11-Xlib/Makefile head/x11/p5-X11-Xlib/distinfo Modified: head/x11/p5-X11-Xlib/Makefile ============================================================================== --- head/x11/p5-X11-Xlib/Makefile Tue Jun 19 08:03:45 2018 (r472769) +++ head/x11/p5-X11-Xlib/Makefile Tue Jun 19 08:13:10 2018 (r472770) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= X11-Xlib -PORTVERSION= 0.15 +PORTVERSION= 0.18 CATEGORIES= x11 perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +13,9 @@ LICENSE= ART10 GPLv1+ LICENSE_COMB= dual BUILD_DEPENDS= p5-Devel-CheckLib>=0:devel/p5-Devel-CheckLib \ - p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends + p5-ExtUtils-Depends>=0:devel/p5-ExtUtils-Depends \ + p5-Try-Tiny>=0:lang/p5-Try-Tiny + RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 Modified: head/x11/p5-X11-Xlib/distinfo ============================================================================== --- head/x11/p5-X11-Xlib/distinfo Tue Jun 19 08:03:45 2018 (r472769) +++ head/x11/p5-X11-Xlib/distinfo Tue Jun 19 08:13:10 2018 (r472770) @@ -1,3 +1,3 @@ -TIMESTAMP = 1499175631 -SHA256 (X11-Xlib-0.15.tar.gz) = 5fdcfcd15793195ada930feb1a02d9720a5522fee0b00c0036b4dceb2501cf8d -SIZE (X11-Xlib-0.15.tar.gz) = 130340 +TIMESTAMP = 1529394704 +SHA256 (X11-Xlib-0.18.tar.gz) = cc33648fb6e8390706cface93503e9b44c0ac3d271f40581741fe0c5c86f25f8 +SIZE (X11-Xlib-0.18.tar.gz) = 131447 From owner-svn-ports-head@freebsd.org Tue Jun 19 08:21:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D1D11006016; Tue, 19 Jun 2018 08:21:52 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E31D472BC7; Tue, 19 Jun 2018 08:21:51 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C598110F86; Tue, 19 Jun 2018 08:21:51 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J8LpHS029878; Tue, 19 Jun 2018 08:21:51 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J8Lpch029876; Tue, 19 Jun 2018 08:21:51 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190821.w5J8Lpch029876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 08:21:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472771 - head/math/R-cran-recipes X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/math/R-cran-recipes X-SVN-Commit-Revision: 472771 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 08:21:52 -0000 Author: tota Date: Tue Jun 19 08:21:51 2018 New Revision: 472771 URL: https://svnweb.freebsd.org/changeset/ports/472771 Log: - Update to 0.1.3 Modified: head/math/R-cran-recipes/Makefile (contents, props changed) head/math/R-cran-recipes/distinfo (contents, props changed) Modified: head/math/R-cran-recipes/Makefile ============================================================================== --- head/math/R-cran-recipes/Makefile Tue Jun 19 08:13:10 2018 (r472770) +++ head/math/R-cran-recipes/Makefile Tue Jun 19 08:21:51 2018 (r472771) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= recipes -PORTVERSION= 0.1.2 +PORTVERSION= 0.1.3 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -19,12 +19,13 @@ CRAN_DEPENDS= R-cran-dplyr>0:math/R-cran-dplyr \ R-cran-lubridate>0:devel/R-cran-lubridate \ R-cran-timeDate>0:finance/R-cran-timeDate \ R-cran-ddalpha>0:math/R-cran-ddalpha \ - R-cran-purrr>0:devel/R-cran-purrr \ + R-cran-purrr>=0.2.3:devel/R-cran-purrr \ R-cran-rlang>=0.1.1:devel/R-cran-rlang \ R-cran-gower>0:math/R-cran-gower \ R-cran-RcppRoll>0:math/R-cran-RcppRoll \ R-cran-tidyselect>=0.1.1:devel/R-cran-tidyselect \ - R-cran-magrittr>0:devel/R-cran-magrittr + R-cran-magrittr>0:devel/R-cran-magrittr \ + R-cran-pls>0:math/R-cran-pls BUILD_DEPENDS= ${CRAN_DEPENDS} RUN_DEPENDS= ${CRAN_DEPENDS} Modified: head/math/R-cran-recipes/distinfo ============================================================================== --- head/math/R-cran-recipes/distinfo Tue Jun 19 08:13:10 2018 (r472770) +++ head/math/R-cran-recipes/distinfo Tue Jun 19 08:21:51 2018 (r472771) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520498617 -SHA256 (recipes_0.1.2.tar.gz) = 891a30cce1529e29a832f3aab92b38c9a0ef959a6fb144c0bf07595c871a59b1 -SIZE (recipes_0.1.2.tar.gz) = 599460 +TIMESTAMP = 1529391265 +SHA256 (recipes_0.1.3.tar.gz) = be468f7b9b479e13785e90d239c4784679ad7648efd3d02cfc2a58a2fb1d10ef +SIZE (recipes_0.1.3.tar.gz) = 745806 From owner-svn-ports-head@freebsd.org Tue Jun 19 08:34:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF5B21006BE3; Tue, 19 Jun 2018 08:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 562EC733F6; Tue, 19 Jun 2018 08:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3172111169; Tue, 19 Jun 2018 08:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J8YbVr036020; Tue, 19 Jun 2018 08:34:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J8YbM5036019; Tue, 19 Jun 2018 08:34:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806190834.w5J8YbM5036019@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 08:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472772 - head/www/geeknote X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/www/geeknote X-SVN-Commit-Revision: 472772 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 08:34:37 -0000 Author: amdmi3 Date: Tue Jun 19 08:34:36 2018 New Revision: 472772 URL: https://svnweb.freebsd.org/changeset/ports/472772 Log: - Switch to new test framework Approved by: portmgr blanket Modified: head/www/geeknote/Makefile Modified: head/www/geeknote/Makefile ============================================================================== --- head/www/geeknote/Makefile Tue Jun 19 08:21:51 2018 (r472771) +++ head/www/geeknote/Makefile Tue Jun 19 08:34:36 2018 (r472772) @@ -25,7 +25,7 @@ USE_PYTHON= autoplist distutils GH_ACCOUNT= VitaliyRodnenko GH_TAGNAME= 7ea2255 -regression-test: build +do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include From owner-svn-ports-head@freebsd.org Tue Jun 19 08:41:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 628FB1007090; Tue, 19 Jun 2018 08:41:25 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 13E9073998; Tue, 19 Jun 2018 08:41:25 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EAAD9112B1; Tue, 19 Jun 2018 08:41:24 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J8fO20039528; Tue, 19 Jun 2018 08:41:24 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J8fOHg039526; Tue, 19 Jun 2018 08:41:24 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806190841.w5J8fOHg039526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 19 Jun 2018 08:41:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472773 - head/math/R-cran-spData X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/math/R-cran-spData X-SVN-Commit-Revision: 472773 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 08:41:25 -0000 Author: tota Date: Tue Jun 19 08:41:24 2018 New Revision: 472773 URL: https://svnweb.freebsd.org/changeset/ports/472773 Log: - Update to 0.2.9.0 Modified: head/math/R-cran-spData/Makefile (contents, props changed) head/math/R-cran-spData/distinfo (contents, props changed) Modified: head/math/R-cran-spData/Makefile ============================================================================== --- head/math/R-cran-spData/Makefile Tue Jun 19 08:34:36 2018 (r472772) +++ head/math/R-cran-spData/Makefile Tue Jun 19 08:41:24 2018 (r472773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= spData -PORTVERSION= 0.2.8.3 +PORTVERSION= 0.2.9.0 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/math/R-cran-spData/distinfo ============================================================================== --- head/math/R-cran-spData/distinfo Tue Jun 19 08:34:36 2018 (r472772) +++ head/math/R-cran-spData/distinfo Tue Jun 19 08:41:24 2018 (r472773) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522652621 -SHA256 (spData_0.2.8.3.tar.gz) = 946b86fde54607e71dacf96cedcdd0a15b472142cb2d2f6c3d5fe4f8ab43c370 -SIZE (spData_0.2.8.3.tar.gz) = 3526342 +TIMESTAMP = 1529396647 +SHA256 (spData_0.2.9.0.tar.gz) = 8c5f0baf83e45ebf17a690987489eea8a515b12eb52ac3b7903df50be372effb +SIZE (spData_0.2.9.0.tar.gz) = 3525233 From owner-svn-ports-head@freebsd.org Tue Jun 19 09:04:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89D0C1008985; Tue, 19 Jun 2018 09:04:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2FF8474836; Tue, 19 Jun 2018 09:04:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0CAD111661; Tue, 19 Jun 2018 09:04:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J94amT051478; Tue, 19 Jun 2018 09:04:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J94aHB051476; Tue, 19 Jun 2018 09:04:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806190904.w5J94aHB051476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 09:04:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472774 - head/x11/xcb-util-renderutil X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/x11/xcb-util-renderutil X-SVN-Commit-Revision: 472774 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 09:04:37 -0000 Author: amdmi3 Date: Tue Jun 19 09:04:36 2018 New Revision: 472774 URL: https://svnweb.freebsd.org/changeset/ports/472774 Log: - Add LICENSE - Update WWW Approved by: portmgr blanket Modified: head/x11/xcb-util-renderutil/Makefile head/x11/xcb-util-renderutil/pkg-descr Modified: head/x11/xcb-util-renderutil/Makefile ============================================================================== --- head/x11/xcb-util-renderutil/Makefile Tue Jun 19 08:41:24 2018 (r472773) +++ head/x11/xcb-util-renderutil/Makefile Tue Jun 19 09:04:36 2018 (r472774) @@ -9,6 +9,9 @@ MASTER_SITES= http://xcb.freedesktop.org/dist/ MAINTAINER= garga@FreeBSD.org COMMENT= Convenience functions for the Render extension +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libxcb-util.so:x11/xcb-util XORG_CAT= lib Modified: head/x11/xcb-util-renderutil/pkg-descr ============================================================================== --- head/x11/xcb-util-renderutil/pkg-descr Tue Jun 19 08:41:24 2018 (r472773) +++ head/x11/xcb-util-renderutil/pkg-descr Tue Jun 19 09:04:36 2018 (r472774) @@ -7,4 +7,4 @@ the X protocol but which have traditionally been provi Renderutil module s Convenience functions for the Render extension. -WWW: http://xcb.freedesktop.org/ +WWW: https://xcb.freedesktop.org/ From owner-svn-ports-head@freebsd.org Tue Jun 19 09:09:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C77101008D06; Tue, 19 Jun 2018 09:09:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C50874A28; Tue, 19 Jun 2018 09:09:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4B54A1166A; Tue, 19 Jun 2018 09:09:33 +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 w5J99X6M051868; Tue, 19 Jun 2018 09:09:33 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J99WHE051862; Tue, 19 Jun 2018 09:09:32 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806190909.w5J99WHE051862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 09:09:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472775 - in head: databases/sqlrelay devel/rudiments X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head: databases/sqlrelay devel/rudiments X-SVN-Commit-Revision: 472775 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 09:09:34 -0000 Author: pi Date: Tue Jun 19 09:09:31 2018 New Revision: 472775 URL: https://svnweb.freebsd.org/changeset/ports/472775 Log: devel/rudiments: update 1.0.6 -> 1.0.7 databases/sqlrelay: update 1.2.0 -> 1.3.0 http://software.firstworks.com/2018/05/rudiments-107-release-announcement.html http://software.firstworks.com/2018/05/sql-relay-130-release-announcement.html Modified: head/databases/sqlrelay/Makefile.common head/databases/sqlrelay/distinfo head/databases/sqlrelay/pkg-plist head/devel/rudiments/Makefile head/devel/rudiments/distinfo head/devel/rudiments/pkg-plist Modified: head/databases/sqlrelay/Makefile.common ============================================================================== --- head/databases/sqlrelay/Makefile.common Tue Jun 19 09:04:36 2018 (r472774) +++ head/databases/sqlrelay/Makefile.common Tue Jun 19 09:09:31 2018 (r472775) @@ -1,7 +1,7 @@ # $FreeBSD$ SQLRELAY_PORTNAME= sqlrelay -SQLRELAY_PORTVERSION= 1.2.0 +SQLRELAY_PORTVERSION= 1.3.0 SQLRELAY_PORTDIR= databases/${SQLRELAY_PORTNAME} SQLRELAY_WRKSRC_CMD= cd ${PORTSDIR}/${SQLRELAY_PORTDIR} && ${MAKE} -V WRKSRC Modified: head/databases/sqlrelay/distinfo ============================================================================== --- head/databases/sqlrelay/distinfo Tue Jun 19 09:04:36 2018 (r472774) +++ head/databases/sqlrelay/distinfo Tue Jun 19 09:09:31 2018 (r472775) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517740275 -SHA256 (sqlrelay-1.2.0.tar.gz) = 535e3c09819b48c5a5d8a51000bd8f549cfd5ee30024953d58176c1cf34a2988 -SIZE (sqlrelay-1.2.0.tar.gz) = 4421537 +TIMESTAMP = 1529397026 +SHA256 (sqlrelay-1.3.0.tar.gz) = fb06e392af2980da9f9862bcf18dc83fb62917eecc660eaf4361482ee6edcf9a +SIZE (sqlrelay-1.3.0.tar.gz) = 22126299 Modified: head/databases/sqlrelay/pkg-plist ============================================================================== --- head/databases/sqlrelay/pkg-plist Tue Jun 19 09:04:36 2018 (r472774) +++ head/databases/sqlrelay/pkg-plist Tue Jun 19 09:09:31 2018 (r472775) @@ -1,3 +1,33 @@ +%%DATADIR%%/examples/sample-mssqlserver-mysql-errors.map +%%DATADIR%%/examples/sample-oracle-mysql-errors.map +%%DATADIR%%/examples/sqlrelay.conf +%%FIREBIRD%%libexec/sqlrelay/sqlrconnection_firebird.so +%%FREETDS%%libexec/sqlrelay/sqlrconnection_freetds.so +%%MYSQL%%lib/libmysql3sqlrelay.so.5 +%%MYSQL%%lib/libmysql3sqlrelay.so.5.0.0 +%%MYSQL%%lib/libmysql40sqlrelay.so.5 +%%MYSQL%%lib/libmysql40sqlrelay.so.5.0.0 +%%MYSQL%%lib/libmysql41sqlrelay.so.5 +%%MYSQL%%lib/libmysql41sqlrelay.so.5.0.0 +%%MYSQL%%lib/libmysql50sqlrelay.so.5 +%%MYSQL%%lib/libmysql50sqlrelay.so.5.0.0 +%%MYSQL%%lib/libmysql51sqlrelay.so.5 +%%MYSQL%%lib/libmysql51sqlrelay.so.5.0.0 +%%MYSQL%%libexec/sqlrelay/sqlrconnection_mysql.so +%%ODBC%%lib/libsqlrodbc.so +%%ODBC%%lib/libsqlrodbc.so.5 +%%ODBC%%lib/libsqlrodbc.so.5.0.0 +%%ODBC%%libexec/sqlrelay/sqlrconnection_odbc.so +%%PGSQL%%lib/libpqsqlrelay.so.5 +%%PGSQL%%lib/libpqsqlrelay.so.5.0.0 +%%PGSQL%%libexec/sqlrelay/sqlrconnection_postgresql.so +%%SQLITE3%%libexec/sqlrelay/sqlrconnection_sqlite.so +@dir %%ETCDIR%% +@dir /var/cache/sqlrelay +@dir /var/log/sqlrelay +@dir /var/log/sqlrelay/debug +@dir /var/run/sqlrelay +@sample etc/sqlrelay/conf.sample bin/sqlr-cachemanager bin/sqlr-connection bin/sqlr-export @@ -14,7 +44,6 @@ bin/sqlrserver-config bin/sqlrsh etc/rc.d/sqlrcachemanager etc/rc.d/sqlrelay -@sample etc/sqlrelay/conf.sample etc/sqlrelay/sqlrelay.xsd include/sqlrelay/private/sqlrauth.h include/sqlrelay/private/sqlrauths.h @@ -23,6 +52,8 @@ include/sqlrelay/private/sqlrclientwrapper.h include/sqlrelay/private/sqlrclientwrapperincludes.h include/sqlrelay/private/sqlrconnection.h include/sqlrelay/private/sqlrcursor.h +include/sqlrelay/private/sqlrdirective.h +include/sqlrelay/private/sqlrdirectives.h include/sqlrelay/private/sqlrfilter.h include/sqlrelay/private/sqlrfilters.h include/sqlrelay/private/sqlrgsscredentials.h @@ -39,6 +70,8 @@ include/sqlrelay/private/sqlrpwdencs.h include/sqlrelay/private/sqlrqueries.h include/sqlrelay/private/sqlrquery.h include/sqlrelay/private/sqlrquerycursor.h +include/sqlrelay/private/sqlrresultsetheadertranslation.h +include/sqlrelay/private/sqlrresultsetheadertranslations.h include/sqlrelay/private/sqlrresultsetrowtranslation.h include/sqlrelay/private/sqlrresultsetrowtranslations.h include/sqlrelay/private/sqlrresultsettranslation.h @@ -64,37 +97,22 @@ include/sqlrelay/sqlrclient.h include/sqlrelay/sqlrclientwrapper.h include/sqlrelay/sqlrserver.h include/sqlrelay/sqlrutil.h -%%MYSQL%%lib/libmysql3sqlrelay.so.4 -%%MYSQL%%lib/libmysql3sqlrelay.so.4.0.0 -%%MYSQL%%lib/libmysql40sqlrelay.so.4 -%%MYSQL%%lib/libmysql40sqlrelay.so.4.0.0 -%%MYSQL%%lib/libmysql41sqlrelay.so.4 -%%MYSQL%%lib/libmysql41sqlrelay.so.4.0.0 -%%MYSQL%%lib/libmysql50sqlrelay.so.4 -%%MYSQL%%lib/libmysql50sqlrelay.so.4.0.0 -%%MYSQL%%lib/libmysql51sqlrelay.so.4 -%%MYSQL%%lib/libmysql51sqlrelay.so.4.0.0 -lib/libpqsqlrelay.so.4 -lib/libpqsqlrelay.so.4.0.0 lib/libsqlrclient.a lib/libsqlrclient.so -lib/libsqlrclient.so.4 -lib/libsqlrclient.so.4.0.0 +lib/libsqlrclient.so.5 +lib/libsqlrclient.so.5.0.0 lib/libsqlrclientwrapper.a lib/libsqlrclientwrapper.so -lib/libsqlrclientwrapper.so.4 -lib/libsqlrclientwrapper.so.4.0.0 -%%ODBC%%lib/libsqlrodbc.so -%%ODBC%%lib/libsqlrodbc.so.4 -%%ODBC%%lib/libsqlrodbc.so.4.0.0 +lib/libsqlrclientwrapper.so.5 +lib/libsqlrclientwrapper.so.5.0.0 lib/libsqlrserver.a lib/libsqlrserver.so -lib/libsqlrserver.so.6 -lib/libsqlrserver.so.6.0.0 +lib/libsqlrserver.so.7 +lib/libsqlrserver.so.7.0.0 lib/libsqlrutil.a lib/libsqlrutil.so -lib/libsqlrutil.so.6 -lib/libsqlrutil.so.6.0.0 +lib/libsqlrutil.so.7 +lib/libsqlrutil.so.7.0.0 libdata/pkgconfig/sqlrelay-c++.pc libdata/pkgconfig/sqlrelay-c.pc libexec/sqlrelay/sqlrauth_database.so @@ -103,6 +121,7 @@ libexec/sqlrelay/sqlrauth_sqlrelay.so libexec/sqlrelay/sqlrauth_userlist.so libexec/sqlrelay/sqlrconfig_xmldom.so libexec/sqlrelay/sqlrconnection_router.so +libexec/sqlrelay/sqlrdirective_custom_wf.so libexec/sqlrelay/sqlrfilter_patterns.so libexec/sqlrelay/sqlrfilter_regex.so libexec/sqlrelay/sqlrfilter_string.so @@ -118,7 +137,6 @@ libexec/sqlrelay/sqlrpwdenc_md5.so libexec/sqlrelay/sqlrpwdenc_rot.so libexec/sqlrelay/sqlrquery_sqlrcmdcstat.so libexec/sqlrelay/sqlrquery_sqlrcmdgstat.so -libexec/sqlrelay/sqlrresultsettranslation_test.so libexec/sqlrelay/sqlrresultsettranslation_reformatdatetime.so libexec/sqlrelay/sqlrrouter_clientinfolist.so libexec/sqlrelay/sqlrrouter_clientiplist.so @@ -127,12 +145,7 @@ libexec/sqlrelay/sqlrrouter_usedatabase.so libexec/sqlrelay/sqlrrouter_userlist.so libexec/sqlrelay/sqlrschedule_cron_userlist.so libexec/sqlrelay/sqlrtranslation_normalize.so -%%FIREBIRD%%libexec/sqlrelay/sqlrconnection_firebird.so -%%FREETDS%%libexec/sqlrelay/sqlrconnection_freetds.so -%%MYSQL%%libexec/sqlrelay/sqlrconnection_mysql.so -%%ODBC%%libexec/sqlrelay/sqlrconnection_odbc.so -%%PGSQL%%libexec/sqlrelay/sqlrconnection_postgresql.so -%%SQLITE3%%libexec/sqlrelay/sqlrconnection_sqlite.so +libexec/sqlrelay/sqlrtranslation_patterns.so man/man1/sqlr-export.1.gz man/man1/sqlr-import.1.gz man/man1/sqlrsh.1.gz @@ -144,11 +157,3 @@ man/man8/sqlr-scaler.8.gz man/man8/sqlr-start.8.gz man/man8/sqlr-status.8.gz man/man8/sqlr-stop.8.gz -%%DATADIR%%/examples/sqlrelay.conf -%%DATADIR%%/examples/sample-mssqlserver-mysql-errors.map -%%DATADIR%%/examples/sample-oracle-mysql-errors.map -@dir %%ETCDIR%% -@dir /var/cache/sqlrelay -@dir /var/log/sqlrelay/debug -@dir /var/log/sqlrelay -@dir /var/run/sqlrelay Modified: head/devel/rudiments/Makefile ============================================================================== --- head/devel/rudiments/Makefile Tue Jun 19 09:04:36 2018 (r472774) +++ head/devel/rudiments/Makefile Tue Jun 19 09:09:31 2018 (r472775) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rudiments -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.7 CATEGORIES= devel MASTER_SITES= SF @@ -34,6 +34,6 @@ SSL_CONFIGURE_ON= --with-ssl-includes=-I${OPENSSLINC} --with-ssl-libs=-L${OPENSSLLIB} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librudiments.so.4.0.5 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librudiments.so.3.1.5 .include Modified: head/devel/rudiments/distinfo ============================================================================== --- head/devel/rudiments/distinfo Tue Jun 19 09:04:36 2018 (r472774) +++ head/devel/rudiments/distinfo Tue Jun 19 09:09:31 2018 (r472775) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517740250 -SHA256 (rudiments-1.0.6.tar.gz) = 3a79977c8a6a1b8d29c060db03d32ad078e7f7ded9b0eb4005bbcc8925e70001 -SIZE (rudiments-1.0.6.tar.gz) = 2279310 +TIMESTAMP = 1529396407 +SHA256 (rudiments-1.0.7.tar.gz) = 354b7ff52b4df2a6efea925690f574d772e797bdbe9ab4e9e2fbe26147b319c1 +SIZE (rudiments-1.0.7.tar.gz) = 16670490 Modified: head/devel/rudiments/pkg-plist ============================================================================== --- head/devel/rudiments/pkg-plist Tue Jun 19 09:04:36 2018 (r472774) +++ head/devel/rudiments/pkg-plist Tue Jun 19 09:09:31 2018 (r472775) @@ -28,12 +28,14 @@ include/rudiments/hostentry.h include/rudiments/inetsocketclient.h include/rudiments/inetsocketserver.h include/rudiments/inetsocketutil.h +include/rudiments/input.h include/rudiments/linkedlist.h include/rudiments/listener.h include/rudiments/logger.h include/rudiments/md5.h include/rudiments/memorymap.h include/rudiments/memorypool.h +include/rudiments/output.h include/rudiments/parameterstring.h include/rudiments/permissions.h include/rudiments/private/avltree.h @@ -100,6 +102,7 @@ include/rudiments/private/inetsocketserver.h include/rudiments/private/inetsocketserverincludes.h include/rudiments/private/inetsocketutil.h include/rudiments/private/inetsocketutilincludes.h +include/rudiments/private/inputincludes.h include/rudiments/private/inttypes.h include/rudiments/private/linkedlist.h include/rudiments/private/linkedlistincludes.h @@ -118,6 +121,7 @@ include/rudiments/private/memorypool.h include/rudiments/private/memorypoolincludes.h include/rudiments/private/new.h include/rudiments/private/nodeinlines.h +include/rudiments/private/outputincludes.h include/rudiments/private/parameterstring.h include/rudiments/private/parameterstringincludes.h include/rudiments/private/permissions.h @@ -165,6 +169,8 @@ include/rudiments/private/stringbuffer.h include/rudiments/private/stringbufferincludes.h include/rudiments/private/sysincludes.h include/rudiments/private/syslogdestination.h +include/rudiments/private/templateengine.h +include/rudiments/private/templateengineincludes.h include/rudiments/private/thread.h include/rudiments/private/threadincludes.h include/rudiments/private/threadmutex.h @@ -213,6 +219,7 @@ include/rudiments/staticarray.h include/rudiments/stdio.h include/rudiments/stringbuffer.h include/rudiments/sys.h +include/rudiments/templateengine.h include/rudiments/thread.h include/rudiments/threadmutex.h include/rudiments/tls.h @@ -227,7 +234,7 @@ include/rudiments/xmldomnode.h include/rudiments/xmlsax.h lib/librudiments.a lib/librudiments.so -lib/librudiments.so.4 -lib/librudiments.so.4.0.5 +lib/librudiments.so.3 +lib/librudiments.so.3.1.5 libdata/pkgconfig/rudiments.pc man/man1/rudiments-config.1.gz From owner-svn-ports-head@freebsd.org Tue Jun 19 09:34:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51721100A949; Tue, 19 Jun 2018 09:34:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F0EB1760BA; Tue, 19 Jun 2018 09:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D0C7B11B8B; Tue, 19 Jun 2018 09:34:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5J9Yb91066747; Tue, 19 Jun 2018 09:34:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J9Ybgl066745; Tue, 19 Jun 2018 09:34:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806190934.w5J9Ybgl066745@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 09:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472776 - head/www/horde-trean X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/www/horde-trean X-SVN-Commit-Revision: 472776 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 09:34:38 -0000 Author: amdmi3 Date: Tue Jun 19 09:34:37 2018 New Revision: 472776 URL: https://svnweb.freebsd.org/changeset/ports/472776 Log: - Whitespace fix - Update WWW Approved by: portmgr blanket Modified: head/www/horde-trean/Makefile head/www/horde-trean/pkg-descr Modified: head/www/horde-trean/Makefile ============================================================================== --- head/www/horde-trean/Makefile Tue Jun 19 09:09:31 2018 (r472775) +++ head/www/horde-trean/Makefile Tue Jun 19 09:34:37 2018 (r472776) @@ -11,7 +11,7 @@ COMMENT= Horde Bookmark Manager LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= horde cpe php +USES= horde cpe php USE_PHP= gettext json USE_HORDE_BUILD= Horde_Role USE_HORDE_RUN= Horde_Role \ Modified: head/www/horde-trean/pkg-descr ============================================================================== --- head/www/horde-trean/pkg-descr Tue Jun 19 09:09:31 2018 (r472775) +++ head/www/horde-trean/pkg-descr Tue Jun 19 09:34:37 2018 (r472776) @@ -2,4 +2,4 @@ Trean is a web-based bookmarks application that provid of browser bookmarks, including support for tagging, link checking and searching bookmarks. -WWW: http://www.horde.org/apps/trean/ +WWW: https://www.horde.org/apps/trean/ From owner-svn-ports-head@freebsd.org Tue Jun 19 09:46:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43D2B100B39D; Tue, 19 Jun 2018 09:46:13 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E97BA76840; Tue, 19 Jun 2018 09:46:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CBADB11D2C; Tue, 19 Jun 2018 09:46:12 +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 w5J9kCQ9072052; Tue, 19 Jun 2018 09:46:12 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J9kCS0072048; Tue, 19 Jun 2018 09:46:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806190946.w5J9kCS0072048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 09:46:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472777 - head/lang/pbasic X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/lang/pbasic X-SVN-Commit-Revision: 472777 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 09:46:13 -0000 Author: pi Date: Tue Jun 19 09:46:11 2018 New Revision: 472777 URL: https://svnweb.freebsd.org/changeset/ports/472777 Log: lang/pbasic: update 2.0 -> 2.1, unbreak, add LICENSE PR: 218494 Submitted by: jhs@berklix.com (maintainer) Modified: head/lang/pbasic/Makefile head/lang/pbasic/distinfo head/lang/pbasic/pkg-descr Modified: head/lang/pbasic/Makefile ============================================================================== --- head/lang/pbasic/Makefile Tue Jun 19 09:34:37 2018 (r472776) +++ head/lang/pbasic/Makefile Tue Jun 19 09:46:11 2018 (r472777) @@ -1,19 +1,18 @@ -# Created by: Julian Stacey + # Created by: Julian H. Stacey # $FreeBSD$ PORTNAME= pbasic -PORTVERSION= 2.0 +PORTVERSION= 2.1 CATEGORIES= lang MASTER_SITES= ftp://ftp.berklix.org/pub/FreeBSD/ports/distfiles/ \ http://www.berklix.com/~jhs/ftp/distfiles/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-950813 +DISTNAME= ${PORTNAME}-${PORTVERSION}-2017-04-08 MAINTAINER= jhs@berklix.com COMMENT= Phil Cockroft's Basic Interpreter (previously Rabbit Basic) -# Ask maintainer if you want newer sources or author's latest e-mail -# (which is currently "phil@cockcroft.de") +# Author of generic sources: "phil@cockcroft.de" -BROKEN_aarch64= Fails to link: missing sbrk +LICENSE= PD ALL_TARGET= freebsd MAKEFILE= makefile @@ -34,3 +33,4 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/docs/basic.1 ${STAGEDIR}${PREFIX}/man/man1/pbasic.1 .include + Modified: head/lang/pbasic/distinfo ============================================================================== --- head/lang/pbasic/distinfo Tue Jun 19 09:34:37 2018 (r472776) +++ head/lang/pbasic/distinfo Tue Jun 19 09:46:11 2018 (r472777) @@ -1,2 +1,3 @@ -SHA256 (pbasic-2.0-950813.tar.gz) = 1eb9331aba18a57938e5477066fbcff654e470f4cfb5ac7cef0c719c096f40e5 -SIZE (pbasic-2.0-950813.tar.gz) = 137363 +TIMESTAMP = 1529401546 +SHA256 (pbasic-2.1-2017-04-08.tar.gz) = 8cbc306e52bbae982ce5c746e7f75002731a4411416ec85a698c5ee623c73f55 +SIZE (pbasic-2.1-2017-04-08.tar.gz) = 138529 Modified: head/lang/pbasic/pkg-descr ============================================================================== --- head/lang/pbasic/pkg-descr Tue Jun 19 09:34:37 2018 (r472776) +++ head/lang/pbasic/pkg-descr Tue Jun 19 09:46:11 2018 (r472777) @@ -1,7 +1,7 @@ -This is v2.0 of a Basic Interpreter by Phil J. A. Cockcroft +This is v2.1 of a Basic Interpreter by Phil J. A. Cockcroft earlier versions used to be known as Rabbit Basic. -According to an earlier lisencing document: +According to an earlier licensing document: === This code is being put in the Public Domain since I will soon loose From owner-svn-ports-head@freebsd.org Tue Jun 19 09:49:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4FFF100B77B; Tue, 19 Jun 2018 09:49:44 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9269276B03; Tue, 19 Jun 2018 09:49:44 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 746E611D38; Tue, 19 Jun 2018 09:49:44 +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 w5J9nime072368; Tue, 19 Jun 2018 09:49:44 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J9nh4L072366; Tue, 19 Jun 2018 09:49:43 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201806190949.w5J9nh4L072366@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Tue, 19 Jun 2018 09:49:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472778 - head/net-mgmt/icingaweb2-module-grafana X-SVN-Group: ports-head X-SVN-Commit-Author: lme X-SVN-Commit-Paths: head/net-mgmt/icingaweb2-module-grafana X-SVN-Commit-Revision: 472778 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 09:49:45 -0000 Author: lme Date: Tue Jun 19 09:49:43 2018 New Revision: 472778 URL: https://svnweb.freebsd.org/changeset/ports/472778 Log: net-mgmt/icingaweb2-module/grafana: Update to 1.2.5 Modified: head/net-mgmt/icingaweb2-module-grafana/Makefile head/net-mgmt/icingaweb2-module-grafana/distinfo head/net-mgmt/icingaweb2-module-grafana/pkg-plist Modified: head/net-mgmt/icingaweb2-module-grafana/Makefile ============================================================================== --- head/net-mgmt/icingaweb2-module-grafana/Makefile Tue Jun 19 09:46:11 2018 (r472777) +++ head/net-mgmt/icingaweb2-module-grafana/Makefile Tue Jun 19 09:49:43 2018 (r472778) @@ -2,7 +2,7 @@ PORTNAME= icingaweb2-module-grafana DISTVERSIONPREFIX= v -DISTVERSION= 1.2.4 +DISTVERSION= 1.2.5 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org Modified: head/net-mgmt/icingaweb2-module-grafana/distinfo ============================================================================== --- head/net-mgmt/icingaweb2-module-grafana/distinfo Tue Jun 19 09:46:11 2018 (r472777) +++ head/net-mgmt/icingaweb2-module-grafana/distinfo Tue Jun 19 09:49:43 2018 (r472778) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525249191 -SHA256 (mikesch-mp-icingaweb2-module-grafana-v1.2.4_GH0.tar.gz) = 38639e0d75b0fa315ee0ad7c12c1664bf6bea294f2cbd2b0efce7083e77df71e -SIZE (mikesch-mp-icingaweb2-module-grafana-v1.2.4_GH0.tar.gz) = 1693021 +TIMESTAMP = 1529401725 +SHA256 (mikesch-mp-icingaweb2-module-grafana-v1.2.5_GH0.tar.gz) = 5f42524b22939f4e29184c1ee62dae5d208ec2848e75b8851c8b261fd5efcdda +SIZE (mikesch-mp-icingaweb2-module-grafana-v1.2.5_GH0.tar.gz) = 1693913 Modified: head/net-mgmt/icingaweb2-module-grafana/pkg-plist ============================================================================== --- head/net-mgmt/icingaweb2-module-grafana/pkg-plist Tue Jun 19 09:46:11 2018 (r472777) +++ head/net-mgmt/icingaweb2-module-grafana/pkg-plist Tue Jun 19 09:49:43 2018 (r472778) @@ -38,6 +38,7 @@ %%WWWDIR%%/dashboards/graphite/template-graphite.json %%WWWDIR%%/dashboards/influxdb/auto-repeat-disk.json %%WWWDIR%%/dashboards/influxdb/base-metrics.json +%%WWWDIR%%/dashboards/influxdb/icinga2-default-test.json %%WWWDIR%%/dashboards/influxdb/icinga2-default.json %%WWWDIR%%/dashboards/influxdb/itl/disk.json %%WWWDIR%%/dashboards/influxdb/itl/hostalive.json From owner-svn-ports-head@freebsd.org Tue Jun 19 09:54:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18FD8100BEE9; Tue, 19 Jun 2018 09:54:49 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C136D7732F; Tue, 19 Jun 2018 09:54:48 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A259B11ECA; Tue, 19 Jun 2018 09:54:48 +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 w5J9smCE077246; Tue, 19 Jun 2018 09:54:48 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5J9sm2i077243; Tue, 19 Jun 2018 09:54:48 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201806190954.w5J9sm2i077243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Tue, 19 Jun 2018 09:54:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472779 - head/security/lynis X-SVN-Group: ports-head X-SVN-Commit-Author: lme X-SVN-Commit-Paths: head/security/lynis X-SVN-Commit-Revision: 472779 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 09:54:49 -0000 Author: lme Date: Tue Jun 19 09:54:47 2018 New Revision: 472779 URL: https://svnweb.freebsd.org/changeset/ports/472779 Log: security/lynis: Update to 2.6.4 Modified: head/security/lynis/Makefile head/security/lynis/distinfo head/security/lynis/pkg-plist Modified: head/security/lynis/Makefile ============================================================================== --- head/security/lynis/Makefile Tue Jun 19 09:49:43 2018 (r472778) +++ head/security/lynis/Makefile Tue Jun 19 09:54:47 2018 (r472779) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lynis -PORTVERSION= 2.6.3 +PORTVERSION= 2.6.4 CATEGORIES= security MASTER_SITES= https://cisofy.com/files/ Modified: head/security/lynis/distinfo ============================================================================== --- head/security/lynis/distinfo Tue Jun 19 09:49:43 2018 (r472778) +++ head/security/lynis/distinfo Tue Jun 19 09:54:47 2018 (r472779) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520495419 -SHA256 (lynis-2.6.3.tar.gz) = df75f39abdbcf921d949dc9b8b1348fefb2ccca27bda9089a702312b0a7c3f31 -SIZE (lynis-2.6.3.tar.gz) = 271848 +TIMESTAMP = 1529401803 +SHA256 (lynis-2.6.4.tar.gz) = 487dc69cb8c484f05b8d8dc3e425ede0af91cb3524e7e69ed6d83a675ac16e18 +SIZE (lynis-2.6.4.tar.gz) = 273031 Modified: head/security/lynis/pkg-plist ============================================================================== --- head/security/lynis/pkg-plist Tue Jun 19 09:49:43 2018 (r472778) +++ head/security/lynis/pkg-plist Tue Jun 19 09:54:47 2018 (r472779) @@ -54,6 +54,7 @@ man/man8/lynis.8.gz %%DATADIR%%/include/tests_crypto %%DATADIR%%/include/tests_custom.template %%DATADIR%%/include/tests_databases +%%DATADIR%%/include/tests_dns %%DATADIR%%/include/tests_file_integrity %%DATADIR%%/include/tests_file_permissions %%DATADIR%%/include/tests_filesystems From owner-svn-ports-head@freebsd.org Tue Jun 19 10:18:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B51BA100DAA9; Tue, 19 Jun 2018 10:18:20 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 627A278131; Tue, 19 Jun 2018 10:18:20 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 43AA112215; Tue, 19 Jun 2018 10:18:20 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JAIKL9088211; Tue, 19 Jun 2018 10:18:20 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JAIJZW088209; Tue, 19 Jun 2018 10:18:19 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201806191018.w5JAIJZW088209@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Tue, 19 Jun 2018 10:18:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472780 - in head/www/qutebrowser: . files X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: in head/www/qutebrowser: . files X-SVN-Commit-Revision: 472780 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 10:18:21 -0000 Author: novel Date: Tue Jun 19 10:18:19 2018 New Revision: 472780 URL: https://svnweb.freebsd.org/changeset/ports/472780 Log: www/qutebrowser: add workaround for missing PyQt5.QtQuickWidgets Currently there's no port that provides PyQt5.QtQuickWidgets which is used by qutebrowser. It's used only in a single place, so roll back the commit that added it. PR: 229123 Reported by: serpent7776@gmail.com Added: head/www/qutebrowser/files/ head/www/qutebrowser/files/patch-qutebrowser_browser_webengine_webview.py (contents, props changed) Modified: head/www/qutebrowser/Makefile Modified: head/www/qutebrowser/Makefile ============================================================================== --- head/www/qutebrowser/Makefile Tue Jun 19 09:54:47 2018 (r472779) +++ head/www/qutebrowser/Makefile Tue Jun 19 10:18:19 2018 (r472780) @@ -2,6 +2,7 @@ PORTNAME= qutebrowser DISTVERSION= 1.3.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= CHEESESHOP Added: head/www/qutebrowser/files/patch-qutebrowser_browser_webengine_webview.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/qutebrowser/files/patch-qutebrowser_browser_webengine_webview.py Tue Jun 19 10:18:19 2018 (r472780) @@ -0,0 +1,24 @@ +--- qutebrowser/browser/webengine/webview.py.orig 2018-06-10 13:42:47 UTC ++++ qutebrowser/browser/webengine/webview.py +@@ -24,7 +24,6 @@ import functools + import sip + from PyQt5.QtCore import pyqtSignal, pyqtSlot, QUrl, PYQT_VERSION + from PyQt5.QtGui import QPalette +-from PyQt5.QtQuickWidgets import QQuickWidget + from PyQt5.QtWebEngineWidgets import (QWebEngineView, QWebEnginePage, + QWebEngineScript) + +@@ -72,9 +71,10 @@ class WebEngineView(QWebEngineView): + if proxy is not None: + return proxy + +- # This should only find the RenderWidgetHostViewQtDelegateWidget, +- # but not e.g. a QMenu +- children = self.findChildren(QQuickWidget) ++ # We don't want e.g. a QMenu. ++ rwhv_class = 'QtWebEngineCore::RenderWidgetHostViewQtDelegateWidget' ++ children = [child for child in self.findChildren(QWidget) ++ if child.inherits(rwhv_class)] + + if not children: + return None From owner-svn-ports-head@freebsd.org Tue Jun 19 11:36:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAD431012F9C; Tue, 19 Jun 2018 11:36:04 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6708F7BB7A; Tue, 19 Jun 2018 11:36:04 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4577E12F5F; Tue, 19 Jun 2018 11:36:04 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JBa42T029174; Tue, 19 Jun 2018 11:36:04 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JBa44c029173; Tue, 19 Jun 2018 11:36:04 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201806191136.w5JBa44c029173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 19 Jun 2018 11:36:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472781 - head/astro/xearth/files X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/astro/xearth/files X-SVN-Commit-Revision: 472781 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 11:36:04 -0000 Author: gahr Date: Tue Jun 19 11:36:03 2018 New Revision: 472781 URL: https://svnweb.freebsd.org/changeset/ports/472781 Log: astro/xearth: update my location Modified: head/astro/xearth/files/freebsd.committers.markers Modified: head/astro/xearth/files/freebsd.committers.markers ============================================================================== --- head/astro/xearth/files/freebsd.committers.markers Tue Jun 19 10:18:19 2018 (r472780) +++ head/astro/xearth/files/freebsd.committers.markers Tue Jun 19 11:36:03 2018 (r472781) @@ -138,7 +138,7 @@ 45.27, 9.17, "olgeni" # Milano, Italy 45.488328, 9.164711, "ale" align=left # Milano, Italy 48.53778, 9.04111, "bz" # Baden-Wuerttemberg - 45.875896, 8.941637, "gahr" # Arzo, Switzerland + 45.95904, 8.9227105, "gahr" # Garaverio, Switzerland 52.05, 8.9, "lkoeller" # Lemgo, Germany 45.667, 8.867, "nivit" align=left # Fagnano Olona, Italy 53.0793, 8.8017, "tobik" # Bremen, Germany From owner-svn-ports-head@freebsd.org Tue Jun 19 11:36:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA9F41012FA1; Tue, 19 Jun 2018 11:36:05 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7DA6C7BB7B; Tue, 19 Jun 2018 11:36:05 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from ogg.in.absolight.net (ogg.in.absolight.net [IPv6:2a01:678:ab:50::42:42]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id C2A861BE0C; Tue, 19 Jun 2018 11:36:04 +0000 (UTC) (envelope-from mat@FreeBSD.org) Date: Tue, 19 Jun 2018 13:36:01 +0200 From: Mathieu Arnold To: Carlos Jacobo Puga Medina Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472498 - head/archivers/py-borgbackup Message-ID: <20180619113601.socvt425uqii4wrj@ogg.in.absolight.net> References: <201806152206.w5FM6dup090058@repo.freebsd.org> <20180618202251.5p2uvx6vc2bwgjx4@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="uhpu5o64lu7g5cir" Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20171215 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 11:36:06 -0000 --uhpu5o64lu7g5cir Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 18, 2018 at 10:26:42PM +0200, Carlos Jacobo Puga Medina wrote: > > Enviar: lunes 18 de junio de 2018 a las 22:22 > > De: "Mathieu Arnold" > > Para: "Carlos J. Puga Medina" > > CC:=20 > > Asunto: Re: svn commit: r472498 - head/archivers/py-borgbackup > > > > On Fri, Jun 15, 2018 at 10:06:39PM +0000, Carlos J. Puga Medina wrote: > > > - Enable FUSE option by default > >=20 > > Why? > > >=20 > The port maintainer requested this change. I'm missing something? Commit messages are the place where you explain WHY you are doing things. Rewriting the diff in plain English only adds noise and should be avoided. The maintainer is the main caretaker of the port yes, but the maintainer is not the only caretaker. The port is maintained by the community. And as such, the community needs to be able to remember, as a collective why changes are made. To be able to achieve this, writing WHY changes are made in the commit messages is paramount. Now, nobody has any idea why the option changed to default on, maybe it is because the port is mostly useless without it, or because user may need it, or because the maintainer decided he wanted to change something else in the Makefile so that it looked more real. --=20 Mathieu Arnold --uhpu5o64lu7g5cir Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAABCgBmBQJbKOqhXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IQlsQAI6oxu/jUBInIq6b3yKZItQy /c43js9x+v6ZW7thsQL2QiWDU/x4364kmDf7vdBlAyYz8CPHpZURhJhd6/nxNQXk rTqg5uf2puZvNWHN7apt+s9vGt0BmvxAUHWkHb3d6vnL5+HAh/dAlqSm42gZ7iGh wIor5iWe+aPvYq1SROxZx+tok+HqvO25f+Nj9Dw5gFleJYgUlu2L7+fNG6XF1cbQ Bj0zOPIHG588WYtRSOWtTMAx6AEjF5/FH5ZmHb7zAsmb+Ys/fyasXC0F+e8SfZY2 6/89NbrKO0jZkeI1hnQn3bmECFoi9XTo3rYQSivY/tUYhlZXVlvRHlM5r+mw9Sbr jPo0GL87MmRSa/W9/lRtoV34Yoc8KW1rOBgIAW9f87K1Q0qMckXOOvtfA6W4sQcr yvdOMQM50hYd421vxxYuHi5NdkH5k5qQvoXiUD1hSuYNiRWwuprPmXW6YuBGuvD4 Kzwxxrs7tw1izZKHfQq/ohIMTTWTRK6IESm6BUa8IDLD4T68twVbWzwUAf6yuL/J GQja3qU6jYVOTkFBVLLV9RTvKnWZF8Kg5tC/2EoVmAnWG164PBdpT7dggmAVOAWG 730lgOUHRONmqroUzsbJ75obuX9Hkt3LIL6lEP3ESrUtzQm4zkLsASX3cITsvurA aqExX1UVPadXxkOKC5zN =5yQp -----END PGP SIGNATURE----- --uhpu5o64lu7g5cir-- From owner-svn-ports-head@freebsd.org Tue Jun 19 12:35:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 831641017045; Tue, 19 Jun 2018 12:35:43 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 34FD27E646; Tue, 19 Jun 2018 12:35:43 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 15EBA13942; Tue, 19 Jun 2018 12:35:43 +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 w5JCZgkH059598; Tue, 19 Jun 2018 12:35:42 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JCZgZ5059596; Tue, 19 Jun 2018 12:35:42 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806191235.w5JCZgZ5059596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 19 Jun 2018 12:35:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472782 - in head/security/krb5-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/security/krb5-devel: . files X-SVN-Commit-Revision: 472782 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 12:35:43 -0000 Author: cy Date: Tue Jun 19 12:35:42 2018 New Revision: 472782 URL: https://svnweb.freebsd.org/changeset/ports/472782 Log: Update to the latest MIT commit. This includes MIT commit beeb2828945a41d86488e391ce440bacee0ec8a4, which removes all "register" keywords in the MIT KRB5 source tree. Deleted: head/security/krb5-devel/files/patch-include_krb5_krb5.hin Modified: head/security/krb5-devel/Makefile head/security/krb5-devel/distinfo head/security/krb5-devel/pkg-plist Modified: head/security/krb5-devel/Makefile ============================================================================== --- head/security/krb5-devel/Makefile Tue Jun 19 11:36:03 2018 (r472781) +++ head/security/krb5-devel/Makefile Tue Jun 19 12:35:42 2018 (r472782) @@ -3,13 +3,12 @@ PORTNAME= krb5 PORTVERSION= 1.17.${MIT_COMMIT_DATE} -PORTREVISION= 2 CATEGORIES= security .if !defined(MASTERDIR) PKGNAMESUFFIX= -devel .endif -HASH= 9ef59b4 -MIT_COMMIT_DATE= 2018.05.14 +HASH= beeb282 +MIT_COMMIT_DATE= 2018.06.18 PATCH_SITES= http://web.mit.edu/kerberos/advisories/ PATCH_DIST_STRIP= -p2 Modified: head/security/krb5-devel/distinfo ============================================================================== --- head/security/krb5-devel/distinfo Tue Jun 19 11:36:03 2018 (r472781) +++ head/security/krb5-devel/distinfo Tue Jun 19 12:35:42 2018 (r472782) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526301427 -SHA256 (krb5-krb5-1.17.2018.05.14-9ef59b4_GH0.tar.gz) = 925be698ab541b6f343f1b7e06f4297aff7fda7b5d1d0bbc49387d249fb1a22a -SIZE (krb5-krb5-1.17.2018.05.14-9ef59b4_GH0.tar.gz) = 6112516 +TIMESTAMP = 1529391436 +SHA256 (krb5-krb5-1.17.2018.06.18-beeb282_GH0.tar.gz) = addb9381f02a9a004d66a0f9b6e3734c71e79dd10b8c9fc3897ee8b3912f0172 +SIZE (krb5-krb5-1.17.2018.06.18-beeb282_GH0.tar.gz) = 5235060 Modified: head/security/krb5-devel/pkg-plist ============================================================================== --- head/security/krb5-devel/pkg-plist Tue Jun 19 11:36:03 2018 (r472781) +++ head/security/krb5-devel/pkg-plist Tue Jun 19 12:35:42 2018 (r472782) @@ -96,6 +96,7 @@ lib/libkrb5support.so lib/libkrb5support.so.0 lib/libkrb5support.so.0.1 lib/krb5/plugins/kdb/db2.so +lib/krb5/plugins/kdb/klmdb.so lib/krb5/plugins/tls/k5tls.so %%LDAP%%lib/krb5/plugins/kdb/kldap.so lib/krb5/plugins/preauth/otp.so From owner-svn-ports-head@freebsd.org Tue Jun 19 12:36:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2FBA1017164; Tue, 19 Jun 2018 12:36:53 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F9D07E7AA; Tue, 19 Jun 2018 12:36:53 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2B02613944; Tue, 19 Jun 2018 12:36:53 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JCarQ6059760; Tue, 19 Jun 2018 12:36:53 GMT (envelope-from br@FreeBSD.org) Received: (from br@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JCarwQ059758; Tue, 19 Jun 2018 12:36:53 GMT (envelope-from br@FreeBSD.org) Message-Id: <201806191236.w5JCarwQ059758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: br set sender to br@FreeBSD.org using -f From: Ruslan Bukin Date: Tue, 19 Jun 2018 12:36:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472783 - head/Templates X-SVN-Group: ports-head X-SVN-Commit-Author: br X-SVN-Commit-Paths: head/Templates X-SVN-Commit-Revision: 472783 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 12:36:54 -0000 Author: br (src committer) Date: Tue Jun 19 12:36:52 2018 New Revision: 472783 URL: https://svnweb.freebsd.org/changeset/ports/472783 Log: Update config.guess and config.sub to the latest version. RISC-V machine added to config.sub allowing us to build ports/packages for RISC-V. Sponsored by: DARPA, AFRL Modified: head/Templates/config.guess head/Templates/config.sub Modified: head/Templates/config.guess ============================================================================== --- head/Templates/config.guess Tue Jun 19 12:35:42 2018 (r472782) +++ head/Templates/config.guess Tue Jun 19 12:36:52 2018 (r472783) @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2015 Free Software Foundation, Inc. +# Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2015-03-04' +timestamp='2018-05-19' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ timestamp='2015-03-04' # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -27,7 +27,7 @@ timestamp='2015-03-04' # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2015 Free Software Foundation, Inc. +Copyright 1992-2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -106,10 +106,10 @@ trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; +case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in + ,,) echo "int x;" > "$dummy.c" ; for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; @@ -132,14 +132,14 @@ UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEAS UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval $set_cc_for_build - cat <<-EOF > $dummy.c + eval "$set_cc_for_build" + cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,13 +149,20 @@ Linux|GNU|GNU/*) LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -169,27 +176,30 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - /sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ echo unknown)` - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) - arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` - machine=${arch}${endian}-unknown + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in - arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build + # to ELF recently (or will in the future) and ABI. + case "$UNAME_MACHINE_ARCH" in + earm*) + os=netbsdelf + ;; + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval "$set_cc_for_build" if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -205,10 +215,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE ;; esac # Determine ABI tags. - case "${UNAME_MACHINE_ARCH}" in + case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; esac # The OS release @@ -216,39 +226,55 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in + case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}${abi}" + echo "$machine-${os}${release}${abi-}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; + *:LibertyBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" + exit ;; + *:MidnightBSD:*:*) + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" + exit ;; *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; + *:Sortix:*:*) + echo "$UNAME_MACHINE"-unknown-sortix + exit ;; + *:Redox:*:*) + echo "$UNAME_MACHINE"-unknown-redox + exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -265,63 +291,54 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; + UNAME_MACHINE=alpha ;; "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; + UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; + UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; + UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; + UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; + UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; + UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; + UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; + UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; + UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; + UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos + echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos + echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -333,7 +350,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} + echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -360,38 +377,38 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux${UNAME_RELEASE} + echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval $set_cc_for_build - SUN_ARCH="i386" + eval "$set_cc_for_build" + SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then - SUN_ARCH="x86_64" + SUN_ARCH=x86_64 fi fi - echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -400,25 +417,25 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos${UNAME_RELEASE} + echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) - echo sparc-sun-sunos${UNAME_RELEASE} + echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} + echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -429,44 +446,44 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} + echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} + echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} + echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} + echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} + echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} + echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} + echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} + echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} + echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -475,23 +492,23 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} + echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -517,17 +534,17 @@ EOF AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] then - echo m88k-dg-dgux${UNAME_RELEASE} + echo m88k-dg-dgux"$UNAME_RELEASE" else - echo m88k-dg-dguxbcs${UNAME_RELEASE} + echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else - echo i586-dg-dgux${UNAME_RELEASE} + echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -544,7 +561,7 @@ EOF echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -556,14 +573,14 @@ EOF if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include main() @@ -574,7 +591,7 @@ EOF exit(0); } EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then echo "$SYSTEM_NAME" else @@ -588,7 +605,7 @@ EOF exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -597,18 +614,18 @@ EOF IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) + ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -623,28 +640,28 @@ EOF echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in + 9000/31?) HP_ARCH=m68000 ;; + 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + case "$sc_cpu_version" in + 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 + 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + case "$sc_kernel_bits" in + 32) HP_ARCH=hppa2.0n ;; + 64) HP_ARCH=hppa2.0w ;; + '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + if [ "$HP_ARCH" = "" ]; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include @@ -677,13 +694,13 @@ EOF exit (0); } EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ ${HP_ARCH} = "hppa2.0w" ] + if [ "$HP_ARCH" = hppa2.0w ] then - eval $set_cc_for_build + eval "$set_cc_for_build" # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -694,23 +711,23 @@ EOF # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then - HP_ARCH="hppa2.0w" + HP_ARCH=hppa2.0w else - HP_ARCH="hppa64" + HP_ARCH=hppa64 fi fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #include int main () @@ -735,11 +752,11 @@ EOF exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) @@ -748,7 +765,7 @@ EOF *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) @@ -756,9 +773,9 @@ EOF exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk + echo "$UNAME_MACHINE"-unknown-osf1mk else - echo ${UNAME_MACHINE}-unknown-osf1 + echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -783,122 +800,109 @@ EOF echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} + echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + case "$UNAME_PROCESSOR" in + amd64) + UNAME_PROCESSOR=x86_64 ;; + i386) + UNAME_PROCESSOR=i586 ;; + esac + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin + echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) - echo ${UNAME_MACHINE}-pc-mingw64 + echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 + echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) - echo ${UNAME_MACHINE}-pc-msys + echo "$UNAME_MACHINE"-pc-msys exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 - exit ;; i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 + echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) - case ${UNAME_MACHINE} in + case "$UNAME_MACHINE" in x86) - echo i586-pc-interix${UNAME_RELEASE} + echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix${UNAME_RELEASE} + echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) - echo ia64-unknown-interix${UNAME_RELEASE} + echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - 8664:Windows_NT:*) - echo x86_64-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin + echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" exit ;; *:GNU:*:*) # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix + echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -911,61 +915,64 @@ EOF EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC=gnulibc1 ; fi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) - eval $set_cc_for_build + eval "$set_cc_for_build" if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else - echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) - echo ${UNAME_MACHINE}-axis-linux-${LIBC} + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) - echo ${UNAME_MACHINE}-pc-linux-${LIBC} + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; + k1om:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -979,64 +986,70 @@ EOF #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ;; + mips64el:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-${LIBC} + echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-${LIBC} + echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-${LIBC} + echo powerpc64le-unknown-linux-"$LIBC" *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Jun 19 13:38:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87D89101A575; Tue, 19 Jun 2018 13:38:36 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2580580CD3; Tue, 19 Jun 2018 13:38:36 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED9CF142F0; Tue, 19 Jun 2018 13:38: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 w5JDcZ7l090246; Tue, 19 Jun 2018 13:38:35 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JDcZtI090243; Tue, 19 Jun 2018 13:38:35 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806191338.w5JDcZtI090243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 19 Jun 2018 13:38:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472784 - in head/security: krb5-114 krb5-114/files krb5-115 krb5-115/files krb5-116 krb5-116/files X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/security: krb5-114 krb5-114/files krb5-115 krb5-115/files krb5-116 krb5-116/files X-SVN-Commit-Revision: 472784 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 13:38:37 -0000 Author: cy Date: Tue Jun 19 13:38:35 2018 New Revision: 472784 URL: https://svnweb.freebsd.org/changeset/ports/472784 Log: Revert r472760 and instead use upstream git commit beeb2828945a41d86488e391ce440bacee0ec committed to the krb5 development branch Saturday, June 16. The upstream commit message follows: Author: Thomas Sondergaard Date: Sat Jun 16 18:14:50 2018 +0200 Eliminate use of the 'register' keyword 'register' is a reserved and unused keyword in C++17 so having it present in the public headers presents a a compatibility issue. Also in C the 'register' keyword is mostly obsolete, so remove all uses of it. [ghudson@mit.edu: adjusted style of some of the affected lines] Added: head/security/krb5-114/files/patch-MIT-git-beeb2828945a41d86488e391ce440bacee0ec8a4 (contents, props changed) head/security/krb5-115/files/patch-MIT-git-beeb2828945a41d86488e391ce440bacee0ec8a4 (contents, props changed) head/security/krb5-116/files/patch-MIT-git-beeb2828945a41d86488e391ce440bacee0ec8a4 (contents, props changed) Deleted: head/security/krb5-114/files/patch-include_krb5_krb5.hin head/security/krb5-115/files/patch-include_krb5_krb5.hin head/security/krb5-116/files/patch-include_krb5_krb5.hin Modified: head/security/krb5-114/Makefile head/security/krb5-115/Makefile head/security/krb5-116/Makefile Modified: head/security/krb5-114/Makefile ============================================================================== --- head/security/krb5-114/Makefile Tue Jun 19 12:36:52 2018 (r472783) +++ head/security/krb5-114/Makefile Tue Jun 19 13:38:35 2018 (r472784) @@ -3,7 +3,7 @@ PORTNAME= krb5 PORTVERSION= 1.14.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ .if !defined(MASTERDIR) Added: head/security/krb5-114/files/patch-MIT-git-beeb2828945a41d86488e391ce440bacee0ec8a4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/krb5-114/files/patch-MIT-git-beeb2828945a41d86488e391ce440bacee0ec8a4 Tue Jun 19 13:38:35 2018 (r472784) @@ -0,0 +1,3211 @@ +diff --git appl/user_user/client.c b/src/appl/user_user/client.c +index 28901a637..34d852202 100644 +--- appl/user_user/client.c ++++ appl/user_user/client.c +@@ -36,7 +36,7 @@ + int main (int argc, char *argv[]) + { + int s; +- register int retval, i; ++ int retval, i; + char *hname; /* full name of server */ + char **srealms; /* realm(s) of server */ + char *princ; /* principal in credentials cache */ +diff --git clients/ksu/main.c b/src/clients/ksu/main.c +index 6fa74a536..d9596d948 100644 +--- clients/ksu/main.c ++++ clients/ksu/main.c +@@ -932,7 +932,7 @@ cleanup: + int standard_shell(sh) + char *sh; + { +- register char *cp; ++ char *cp; + char *getusershell(); + + while ((cp = getusershell()) != NULL) +diff --git clients/ksu/setenv.c b/src/clients/ksu/setenv.c +index a7895c6b4..c7bd369bc 100644 +--- clients/ksu/setenv.c ++++ clients/ksu/setenv.c +@@ -57,12 +57,12 @@ extern void unsetenv(char *); + #ifndef HAVE_SETENV + int + setenv(name, value, rewrite) +- register char *name, *value; ++ char *name, *value; + int rewrite; + { + extern char **environ; + static int alloced; /* if allocated space before */ +- register char *C; ++ char *C; + int l_value, offset; + + if (*value == '=') /* no `=' in value */ +@@ -77,8 +77,8 @@ setenv(name, value, rewrite) + } + } + else { /* create new slot */ +- register int cnt; +- register char **P; ++ int cnt; ++ char **P; + + for (P = environ, cnt = 0; *P; ++P, ++cnt); + if (alloced) { /* just increase size */ +@@ -119,7 +119,7 @@ unsetenv(name) + char *name; + { + extern char **environ; +- register char **P; ++ char **P; + int offset; + + while (_findenv(name, &offset)) /* if set multiple times */ +@@ -156,12 +156,12 @@ getenv(name) + */ + static char * + _findenv(name, offset) +- register char *name; ++ char *name; + int *offset; + { + extern char **environ; +- register int len; +- register char **P, *C; ++ int len; ++ char **P, *C; + + for (C = name, len = 0; *C && *C != '='; ++C, ++len); + for (P = environ; *P; ++P) +diff --git include/gssrpc/clnt.h b/src/include/gssrpc/clnt.h +index 40f7c69a4..fc6836cb5 100644 +--- include/gssrpc/clnt.h ++++ include/gssrpc/clnt.h +@@ -270,7 +270,7 @@ extern CLIENT *clnt_create(char *, rpcprog_t, rpcvers_t, char *); + * struct sockaddr_in *raddr; + * rpcprog_t prog; + * rpcvers_t version; +- * register int *sockp; ++ * int *sockp; + * u_int sendsz; + * u_int recvsz; + */ +diff --git include/krb5/krb5.hin b/src/include/krb5/krb5.hin +index 6d99de42d..384bb838f 100644 +--- include/krb5/krb5.hin ++++ include/krb5/krb5.hin +@@ -3566,7 +3566,7 @@ krb5_parse_name_flags(krb5_context context, const char *name, + */ + krb5_error_code KRB5_CALLCONV + krb5_unparse_name(krb5_context context, krb5_const_principal principal, +- register char **name); ++ char **name); + + /** + * Convert krb5_principal structure to string and length. +@@ -4389,7 +4389,7 @@ krb5_kt_add_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry + */ + krb5_error_code KRB5_CALLCONV_WRONG + krb5_principal2salt(krb5_context context, +- register krb5_const_principal pr, krb5_data *ret); ++ krb5_const_principal pr, krb5_data *ret); + /* librc.spec--see rcache.h */ + + /* libcc.spec */ +@@ -4730,7 +4730,7 @@ krb5_free_ticket(krb5_context context, krb5_ticket *val); + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val); ++krb5_free_error(krb5_context context, krb5_error *val); + + /** + * Free a krb5_creds structure. +@@ -4763,7 +4763,7 @@ krb5_free_cred_contents(krb5_context context, krb5_creds *val); + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum(krb5_context context, krb5_checksum *val); + + /** + * Free the contents of a krb5_checksum structure. +@@ -4774,7 +4774,7 @@ krb5_free_checksum(krb5_context context, register krb5_checksum *val); + * This function frees the contents of @a val, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val); + + /** + * Free a krb5_keyblock structure. +@@ -4785,7 +4785,7 @@ krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val); + * This function frees the contents of @a val and the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); ++krb5_free_keyblock(krb5_context context, krb5_keyblock *val); + + /** + * Free the contents of a krb5_keyblock structure. +@@ -4796,7 +4796,7 @@ krb5_free_keyblock(krb5_context context, register krb5_keyblock *val); + * This function frees the contents of @a key, but not the structure itself. + */ + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key); ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key); + + /** + * Free a krb5_ap_rep_enc_part structure. +@@ -4912,7 +4912,7 @@ krb5_us_timeofday(krb5_context context, + * Kerberos error codes + */ + krb5_error_code KRB5_CALLCONV +-krb5_timeofday(krb5_context context, register krb5_timestamp *timeret); ++krb5_timeofday(krb5_context context, krb5_timestamp *timeret); + + /** + * Check if a timestamp is within the allowed clock skew of the current time. +diff --git kadmin/cli/getdate.y b/src/kadmin/cli/getdate.y +index 059f112da..cb039acb3 100644 +--- kadmin/cli/getdate.y ++++ kadmin/cli/getdate.y +@@ -689,9 +689,9 @@ RelativeMonth(time_t Start, time_t RelMonth) + static int + LookupWord(char *buff) + { +- register char *p; +- register char *q; +- register const TABLE *tp; ++ char *p; ++ char *q; ++ const TABLE *tp; + int i; + int abbrev; + +@@ -786,8 +786,8 @@ LookupWord(char *buff) + static int + yylex() + { +- register char c; +- register char *p; ++ char c; ++ char *p; + char buff[20]; + int Count; + int sign; +diff --git kadmin/dbutil/strtok.c b/src/kadmin/dbutil/strtok.c +index 0640c747e..dee466aea 100644 +--- kadmin/dbutil/strtok.c ++++ kadmin/dbutil/strtok.c +@@ -51,11 +51,11 @@ + + char * + nstrtok(s, delim) +- register char *s; +- register const char *delim; ++ char *s; ++ const char *delim; + { +- register const char *spanp; +- register int c, sc; ++ const char *spanp; ++ int c, sc; + char *tok; + static char *last; + +diff --git kadmin/server/ipropd_svc.c b/src/kadmin/server/ipropd_svc.c +index e6e190136..6a21fe6de 100644 +--- kadmin/server/ipropd_svc.c ++++ kadmin/server/ipropd_svc.c +@@ -533,7 +533,7 @@ fail_name: + + void + krb5_iprop_prog_1(struct svc_req *rqstp, +- register SVCXPRT *transp) ++ SVCXPRT *transp) + { + union { + kdb_last_t iprop_get_updates_1_arg; +diff --git kadmin/server/kadm_rpc_svc.c b/src/kadmin/server/kadm_rpc_svc.c +index e43ca0d57..41fc88ac8 100644 +--- kadmin/server/kadm_rpc_svc.c ++++ kadmin/server/kadm_rpc_svc.c +@@ -38,7 +38,7 @@ static int check_rpcsec_auth(struct svc_req *); + + void kadm_1(rqstp, transp) + struct svc_req *rqstp; +- register SVCXPRT *transp; ++ SVCXPRT *transp; + { + union { + cprinc_arg create_principal_2_arg; +diff --git kdc/kdc_util.c b/src/kdc/kdc_util.c +index 13111215d..21af360cd 100644 +--- kdc/kdc_util.c ++++ kdc/kdc_util.c +@@ -87,8 +87,8 @@ concat_authorization_data(krb5_context context, + krb5_authdata **first, krb5_authdata **second, + krb5_authdata ***output) + { +- register int i, j; +- register krb5_authdata **ptr, **retdata; ++ int i, j; ++ krb5_authdata **ptr, **retdata; + + /* count up the entries */ + i = 0; +@@ -638,7 +638,7 @@ check_anon(kdc_realm_t *kdc_active_realm, + KDC_OPT_ENC_TKT_IN_SKEY | KDC_OPT_CNAME_IN_ADDL_TKT) + int + validate_as_request(kdc_realm_t *kdc_active_realm, +- register krb5_kdc_req *request, krb5_db_entry client, ++ krb5_kdc_req *request, krb5_db_entry client, + krb5_db_entry server, krb5_timestamp kdc_time, + const char **status, krb5_pa_data ***e_data) + { +diff --git kdc/tgs_policy.c b/src/kdc/tgs_policy.c +index 33cfbcd81..4c08e44e6 100644 +--- kdc/tgs_policy.c ++++ kdc/tgs_policy.c +@@ -320,7 +320,7 @@ check_tgs_tgt(kdc_realm_t *kdc_active_realm, krb5_kdc_req *req, + + int + validate_tgs_request(kdc_realm_t *kdc_active_realm, +- register krb5_kdc_req *request, krb5_db_entry server, ++ krb5_kdc_req *request, krb5_db_entry server, + krb5_ticket *ticket, krb5_timestamp kdc_time, + const char **status, krb5_pa_data ***e_data) + { +diff --git lib/apputils/net-server.c b/src/lib/apputils/net-server.c +index a40da927e..f0955c503 100644 +--- lib/apputils/net-server.c ++++ lib/apputils/net-server.c +@@ -1452,7 +1452,7 @@ accept_rpc_connection(verto_ctx *ctx, verto_ev *ev) + verto_ev_flag flags; + struct connection *conn; + fd_set fds; +- register int s; ++ int s; + + conn = verto_get_private(ev); + +diff --git lib/crypto/builtin/des/destest.c b/src/lib/crypto/builtin/des/destest.c +index dd2f68ec4..e51351c5e 100644 +--- lib/crypto/builtin/des/destest.c ++++ lib/crypto/builtin/des/destest.c +@@ -159,7 +159,7 @@ convert(text, cblock) + char *text; + unsigned char cblock[]; + { +- register int i; ++ int i; + for (i = 0; i < 8; i++) { + if (!isascii((unsigned char)text[i * 2])) + abort (); +@@ -189,7 +189,7 @@ des_cblock_print_file(x, fp) + FILE *fp; + { + unsigned char *y = (unsigned char *) x; +- register int i = 0; ++ int i = 0; + fprintf(fp," 0x { "); + + while (i++ < 8) { +@@ -212,7 +212,7 @@ des_cblock_print_file(x, fp) + */ + int + mit_des_check_key_parity(key) +- register mit_des_cblock key; ++ mit_des_cblock key; + { + unsigned int i; + +@@ -231,7 +231,7 @@ mit_des_check_key_parity(key) + + void + mit_des_fixup_key_parity(key) +- register mit_des_cblock key; ++ mit_des_cblock key; + { + unsigned int i; + for (i=0; iutf8str_t_val, (u_int *) &objp->utf8str_t_len, ~0)) + return FALSE; +@@ -52,7 +52,7 @@ xdr_utf8str_t (XDR *xdrs, utf8str_t *objp) + bool_t + xdr_kdb_sno_t (XDR *xdrs, kdb_sno_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_uint32_t (xdrs, objp)) + return FALSE; +@@ -62,7 +62,7 @@ xdr_kdb_sno_t (XDR *xdrs, kdb_sno_t *objp) + bool_t + xdr_kdbe_time_t (XDR *xdrs, kdbe_time_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_uint32_t (xdrs, &objp->seconds)) + return FALSE; +@@ -74,7 +74,7 @@ xdr_kdbe_time_t (XDR *xdrs, kdbe_time_t *objp) + bool_t + xdr_kdbe_key_t (XDR *xdrs, kdbe_key_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_int32_t (xdrs, &objp->k_ver)) + return FALSE; +@@ -92,7 +92,7 @@ xdr_kdbe_key_t (XDR *xdrs, kdbe_key_t *objp) + bool_t + xdr_kdbe_data_t (XDR *xdrs, kdbe_data_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_int32_t (xdrs, &objp->k_magic)) + return FALSE; +@@ -104,7 +104,7 @@ xdr_kdbe_data_t (XDR *xdrs, kdbe_data_t *objp) + bool_t + xdr_kdbe_princ_t (XDR *xdrs, kdbe_princ_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_utf8str_t (xdrs, &objp->k_realm)) + return FALSE; +@@ -119,7 +119,7 @@ xdr_kdbe_princ_t (XDR *xdrs, kdbe_princ_t *objp) + bool_t + xdr_kdbe_tl_t (XDR *xdrs, kdbe_tl_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_int16_t (xdrs, &objp->tl_type)) + return FALSE; +@@ -131,7 +131,7 @@ xdr_kdbe_tl_t (XDR *xdrs, kdbe_tl_t *objp) + bool_t + xdr_kdbe_pw_hist_t (XDR *xdrs, kdbe_pw_hist_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_array (xdrs, (char **)&objp->kdbe_pw_hist_t_val, (u_int *) &objp->kdbe_pw_hist_t_len, ~0, + sizeof (kdbe_key_t), (xdrproc_t) xdr_kdbe_key_t)) +@@ -142,7 +142,7 @@ xdr_kdbe_pw_hist_t (XDR *xdrs, kdbe_pw_hist_t *objp) + bool_t + xdr_kdbe_attr_type_t (XDR *xdrs, kdbe_attr_type_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_enum (xdrs, (enum_t *) objp)) + return FALSE; +@@ -152,7 +152,7 @@ xdr_kdbe_attr_type_t (XDR *xdrs, kdbe_attr_type_t *objp) + bool_t + xdr_kdbe_val_t (XDR *xdrs, kdbe_val_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_kdbe_attr_type_t (xdrs, &objp->av_type)) + return FALSE; +@@ -251,7 +251,7 @@ xdr_kdbe_val_t (XDR *xdrs, kdbe_val_t *objp) + bool_t + xdr_kdbe_t (XDR *xdrs, kdbe_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_array (xdrs, (char **)&objp->kdbe_t_val, (u_int *) &objp->kdbe_t_len, ~0, + sizeof (kdbe_val_t), (xdrproc_t) xdr_kdbe_val_t)) +@@ -262,7 +262,7 @@ xdr_kdbe_t (XDR *xdrs, kdbe_t *objp) + bool_t + xdr_kdb_incr_update_t (XDR *xdrs, kdb_incr_update_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_utf8str_t (xdrs, &objp->kdb_princ_name)) + return FALSE; +@@ -287,7 +287,7 @@ xdr_kdb_incr_update_t (XDR *xdrs, kdb_incr_update_t *objp) + bool_t + xdr_kdb_ulog_t (XDR *xdrs, kdb_ulog_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_array (xdrs, (char **)&objp->kdb_ulog_t_val, (u_int *) &objp->kdb_ulog_t_len, ~0, + sizeof (kdb_incr_update_t), (xdrproc_t) xdr_kdb_incr_update_t)) +@@ -298,7 +298,7 @@ xdr_kdb_ulog_t (XDR *xdrs, kdb_ulog_t *objp) + bool_t + xdr_update_status_t (XDR *xdrs, update_status_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_enum (xdrs, (enum_t *) objp)) + return FALSE; +@@ -308,7 +308,7 @@ xdr_update_status_t (XDR *xdrs, update_status_t *objp) + bool_t + xdr_kdb_last_t (XDR *xdrs, kdb_last_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_kdb_sno_t (xdrs, &objp->last_sno)) + return FALSE; +@@ -320,7 +320,7 @@ xdr_kdb_last_t (XDR *xdrs, kdb_last_t *objp) + bool_t + xdr_kdb_incr_result_t (XDR *xdrs, kdb_incr_result_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_kdb_last_t (xdrs, &objp->lastentry)) + return FALSE; +@@ -334,7 +334,7 @@ xdr_kdb_incr_result_t (XDR *xdrs, kdb_incr_result_t *objp) + bool_t + xdr_kdb_fullresync_result_t (XDR *xdrs, kdb_fullresync_result_t *objp) + { +- register int32_t *buf; ++ int32_t *buf; + + if (!xdr_kdb_last_t (xdrs, &objp->lastentry)) + return FALSE; +diff --git lib/krb5/ccache/cc_mslsa.c b/src/lib/krb5/ccache/cc_mslsa.c +index 030098360..0d00c86d4 100644 +--- lib/krb5/ccache/cc_mslsa.c ++++ lib/krb5/ccache/cc_mslsa.c +@@ -1638,8 +1638,8 @@ krb5_lcc_initialize(krb5_context context, krb5_ccache id, krb5_principal princ) + static krb5_error_code KRB5_CALLCONV + krb5_lcc_close(krb5_context context, krb5_ccache id) + { +- register int closeval = KRB5_OK; +- register krb5_lcc_data *data; ++ int closeval = KRB5_OK; ++ krb5_lcc_data *data; + + if (id) { + data = (krb5_lcc_data *) id->data; +@@ -1665,7 +1665,7 @@ krb5_lcc_close(krb5_context context, krb5_ccache id) + static krb5_error_code KRB5_CALLCONV + krb5_lcc_destroy(krb5_context context, krb5_ccache id) + { +- register krb5_lcc_data *data; ++ krb5_lcc_data *data; + + if (id) { + data = (krb5_lcc_data *) id->data; +diff --git lib/krb5/ccache/ccapi/stdcc_util.c b/src/lib/krb5/ccache/ccapi/stdcc_util.c +index 6092ee432..62d847c18 100644 +--- lib/krb5/ccache/ccapi/stdcc_util.c ++++ lib/krb5/ccache/ccapi/stdcc_util.c +@@ -921,8 +921,8 @@ cc_int32 krb5int_free_cc_cred_union (cred_union** creds) + */ + static krb5_boolean + times_match(t1, t2) +- register const krb5_ticket_times *t1; +- register const krb5_ticket_times *t2; ++ const krb5_ticket_times *t1; ++ const krb5_ticket_times *t2; + { + if (t1->renew_till) { + if (ts_after(t1->renew_till, t2->renew_till)) +@@ -938,7 +938,7 @@ times_match(t1, t2) + + static krb5_boolean + times_match_exact (t1, t2) +- register const krb5_ticket_times *t1, *t2; ++ const krb5_ticket_times *t1, *t2; + { + return (t1->authtime == t2->authtime + && t1->starttime == t2->starttime +@@ -949,7 +949,7 @@ times_match_exact (t1, t2) + static krb5_boolean + standard_fields_match(context, mcreds, creds) + krb5_context context; +- register const krb5_creds *mcreds, *creds; ++ const krb5_creds *mcreds, *creds; + { + return (krb5_principal_compare(context, mcreds->client,creds->client) && + krb5_principal_compare(context, mcreds->server,creds->server)); +@@ -960,7 +960,7 @@ standard_fields_match(context, mcreds, creds) + static krb5_boolean + srvname_match(context, mcreds, creds) + krb5_context context; +- register const krb5_creds *mcreds, *creds; ++ const krb5_creds *mcreds, *creds; + { + krb5_boolean retval; + krb5_principal_data p1, p2; +@@ -1008,7 +1008,7 @@ authdata_match(mdata, data) + + static krb5_boolean + data_match(data1, data2) +- register const krb5_data *data1, *data2; ++ const krb5_data *data1, *data2; + { + if (!data1) { + if (!data2) +diff --git lib/krb5/keytab/kt_file.c b/src/lib/krb5/keytab/kt_file.c +index 091f2c43f..89cb68680 100644 +--- lib/krb5/keytab/kt_file.c ++++ lib/krb5/keytab/kt_file.c +@@ -1182,7 +1182,7 @@ krb5_ktfileint_internal_read_entry(krb5_context context, krb5_keytab id, krb5_ke + unsigned int u_count, u_princ_size; + krb5_int16 enctype; + krb5_int16 princ_size; +- register int i; ++ int i; + krb5_int32 size; + krb5_int32 start_pos, pos; + krb5_error_code error; +diff --git lib/krb5/krb/addr_order.c b/src/lib/krb5/krb/addr_order.c +index e9ea0ba8c..39c9e1e69 100644 +--- lib/krb5/krb/addr_order.c ++++ lib/krb5/krb/addr_order.c +@@ -38,7 +38,7 @@ int KRB5_CALLCONV + krb5_address_order(krb5_context context, const krb5_address *addr1, const krb5_address *addr2) + { + int dir; +- register int i; ++ int i; + const int minlen = min(addr1->length, addr2->length); + + if (addr1->addrtype != addr2->addrtype) +diff --git lib/krb5/krb/authdata.c b/src/lib/krb5/krb/authdata.c +index abb2ab9e2..8fd1f0538 100644 +--- lib/krb5/krb/authdata.c ++++ lib/krb5/krb/authdata.c +@@ -1299,7 +1299,7 @@ krb5int_copy_authdatum(krb5_context context, + void KRB5_CALLCONV + krb5_free_authdata(krb5_context context, krb5_authdata **val) + { +- register krb5_authdata **temp; ++ krb5_authdata **temp; + + if (val == NULL) + return; +diff --git lib/krb5/krb/conv_princ.c b/src/lib/krb5/krb/conv_princ.c +index c33c67dda..78fc2f4c6 100644 +--- lib/krb5/krb/conv_princ.c ++++ lib/krb5/krb/conv_princ.c +@@ -130,8 +130,8 @@ static const struct krb_convert sconv_list[] = { + * This falls in the "should have been in the ANSI C library" + * category. :-) + */ +-static char *strnchr(register char *s, register int c, +- register unsigned int n) ++static char * ++strnchr(char *s, int c, unsigned int n) + { + if (n < 1) + return 0; +diff --git lib/krb5/krb/copy_addrs.c b/src/lib/krb5/krb/copy_addrs.c +index 494bccf92..9c9bc7ba3 100644 +--- lib/krb5/krb/copy_addrs.c ++++ lib/krb5/krb/copy_addrs.c +@@ -51,7 +51,7 @@ krb5_copy_addresses(krb5_context context, krb5_address *const *inaddr, krb5_addr + { + krb5_error_code retval; + krb5_address ** tempaddr; +- register unsigned int nelems = 0; ++ unsigned int nelems = 0; + + if (!inaddr) { + *outaddr = 0; +diff --git lib/krb5/krb/copy_auth.c b/src/lib/krb5/krb/copy_auth.c +index 06a06450c..ffb7ee9c6 100644 +--- lib/krb5/krb/copy_auth.c ++++ lib/krb5/krb/copy_auth.c +@@ -65,7 +65,7 @@ krb5_merge_authdata(krb5_context context, + { + krb5_error_code retval; + krb5_authdata ** tempauthdat; +- register unsigned int nelems = 0, nelems2 = 0; ++ unsigned int nelems = 0, nelems2 = 0; + + *outauthdat = NULL; + if (!inauthdat1 && !inauthdat2) { +diff --git lib/krb5/krb/copy_princ.c b/src/lib/krb5/krb/copy_princ.c +index 0d0e6a004..81b338124 100644 +--- lib/krb5/krb/copy_princ.c ++++ lib/krb5/krb/copy_princ.c +@@ -32,7 +32,7 @@ + krb5_error_code KRB5_CALLCONV + krb5_copy_principal(krb5_context context, krb5_const_principal inprinc, krb5_principal *outprinc) + { +- register krb5_principal tempprinc; ++ krb5_principal tempprinc; + krb5_int32 i; + + tempprinc = (krb5_principal)malloc(sizeof(krb5_principal_data)); +diff --git lib/krb5/krb/decrypt_tk.c b/src/lib/krb5/krb/decrypt_tk.c +index 51f9e8fdf..e848554e2 100644 +--- lib/krb5/krb/decrypt_tk.c ++++ lib/krb5/krb/decrypt_tk.c +@@ -36,7 +36,8 @@ + */ + + krb5_error_code KRB5_CALLCONV +-krb5_decrypt_tkt_part(krb5_context context, const krb5_keyblock *srv_key, register krb5_ticket *ticket) ++krb5_decrypt_tkt_part(krb5_context context, const krb5_keyblock *srv_key, ++ krb5_ticket *ticket) + { + krb5_enc_tkt_part *dec_tkt_part; + krb5_data scratch; +diff --git lib/krb5/krb/encrypt_tk.c b/src/lib/krb5/krb/encrypt_tk.c +index 7fcd0ffc8..13a774f07 100644 +--- lib/krb5/krb/encrypt_tk.c ++++ lib/krb5/krb/encrypt_tk.c +@@ -39,11 +39,12 @@ + */ + + krb5_error_code +-krb5_encrypt_tkt_part(krb5_context context, const krb5_keyblock *srv_key, register krb5_ticket *dec_ticket) ++krb5_encrypt_tkt_part(krb5_context context, const krb5_keyblock *srv_key, ++ krb5_ticket *dec_ticket) + { + krb5_data *scratch; + krb5_error_code retval; +- register krb5_enc_tkt_part *dec_tkt_part = dec_ticket->enc_part2; ++ krb5_enc_tkt_part *dec_tkt_part = dec_ticket->enc_part2; + + /* start by encoding the to-be-encrypted part. */ + if ((retval = encode_krb5_enc_tkt_part(dec_tkt_part, &scratch))) { +diff --git lib/krb5/krb/kfree.c b/src/lib/krb5/krb/kfree.c +index 71e7fcad0..ab2409f17 100644 +--- lib/krb5/krb/kfree.c ++++ lib/krb5/krb/kfree.c +@@ -66,7 +66,7 @@ krb5_free_address(krb5_context context, krb5_address *val) + void KRB5_CALLCONV + krb5_free_addresses(krb5_context context, krb5_address **val) + { +- register krb5_address **temp; ++ krb5_address **temp; + + if (val == NULL) + return; +@@ -78,7 +78,7 @@ krb5_free_addresses(krb5_context context, krb5_address **val) + } + + void KRB5_CALLCONV +-krb5_free_ap_rep(krb5_context context, register krb5_ap_rep *val) ++krb5_free_ap_rep(krb5_context context, krb5_ap_rep *val) + { + if (val == NULL) + return; +@@ -87,7 +87,7 @@ krb5_free_ap_rep(krb5_context context, register krb5_ap_rep *val) + } + + void KRB5_CALLCONV +-krb5_free_ap_req(krb5_context context, register krb5_ap_req *val) ++krb5_free_ap_req(krb5_context context, krb5_ap_req *val) + { + if (val == NULL) + return; +@@ -130,7 +130,7 @@ krb5_free_authenticator(krb5_context context, krb5_authenticator *val) + } + + void KRB5_CALLCONV +-krb5_free_checksum(krb5_context context, register krb5_checksum *val) ++krb5_free_checksum(krb5_context context, krb5_checksum *val) + { + if (val == NULL) + return; +@@ -139,7 +139,7 @@ krb5_free_checksum(krb5_context context, register krb5_checksum *val) + } + + void KRB5_CALLCONV +-krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val) ++krb5_free_checksum_contents(krb5_context context, krb5_checksum *val) + { + if (val == NULL) + return; +@@ -148,7 +148,7 @@ krb5_free_checksum_contents(krb5_context context, register krb5_checksum *val) + } + + void KRB5_CALLCONV +-krb5_free_cred(krb5_context context, register krb5_cred *val) ++krb5_free_cred(krb5_context context, krb5_cred *val) + { + if (val == NULL) + return; +@@ -183,9 +183,9 @@ krb5_free_cred_contents(krb5_context context, krb5_creds *val) + } + + void KRB5_CALLCONV +-krb5_free_cred_enc_part(krb5_context context, register krb5_cred_enc_part *val) ++krb5_free_cred_enc_part(krb5_context context, krb5_cred_enc_part *val) + { +- register krb5_cred_info **temp; ++ krb5_cred_info **temp; + + if (val == NULL) + return; +@@ -273,7 +273,7 @@ void krb5_free_etype_info(krb5_context context, krb5_etype_info info) + + + void KRB5_CALLCONV +-krb5_free_enc_kdc_rep_part(krb5_context context, register krb5_enc_kdc_rep_part *val) ++krb5_free_enc_kdc_rep_part(krb5_context context, krb5_enc_kdc_rep_part *val) + { + if (val == NULL) + return; +@@ -300,7 +300,7 @@ krb5_free_enc_tkt_part(krb5_context context, krb5_enc_tkt_part *val) + + + void KRB5_CALLCONV +-krb5_free_error(krb5_context context, register krb5_error *val) ++krb5_free_error(krb5_context context, krb5_error *val) + { + if (val == NULL) + return; +@@ -342,13 +342,13 @@ krb5_free_kdc_req(krb5_context context, krb5_kdc_req *val) + } + + void KRB5_CALLCONV +-krb5_free_keyblock_contents(krb5_context context, register krb5_keyblock *key) ++krb5_free_keyblock_contents(krb5_context context, krb5_keyblock *key) + { + krb5int_c_free_keyblock_contents (context, key); + } + + void KRB5_CALLCONV *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Jun 19 13:44:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 402EB101AA07; Tue, 19 Jun 2018 13:44:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E9455812E4; Tue, 19 Jun 2018 13:44:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CBDFB14492; Tue, 19 Jun 2018 13:44:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JDiKf1095546; Tue, 19 Jun 2018 13:44:20 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JDiKI9095544; Tue, 19 Jun 2018 13:44:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806191344.w5JDiKI9095544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 13:44:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472785 - head/devel/cppcheck/files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/cppcheck/files X-SVN-Commit-Revision: 472785 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 13:44:21 -0000 Author: amdmi3 Date: Tue Jun 19 13:44:20 2018 New Revision: 472785 URL: https://svnweb.freebsd.org/changeset/ports/472785 Log: - Regenerate patches, as patching fails in some cases (could not reproduce though) PR: 229005 Reported by: rozhuk.im@gmail.com Modified: head/devel/cppcheck/files/patch-CMakeLists.txt head/devel/cppcheck/files/patch-gui_CMakeLists.txt Modified: head/devel/cppcheck/files/patch-CMakeLists.txt ============================================================================== --- head/devel/cppcheck/files/patch-CMakeLists.txt Tue Jun 19 13:38:35 2018 (r472784) +++ head/devel/cppcheck/files/patch-CMakeLists.txt Tue Jun 19 13:44:20 2018 (r472785) @@ -1,8 +1,8 @@ ---- CMakeLists.txt.orig 2017-10-07 21:11:39 UTC +--- CMakeLists.txt.orig 2018-06-10 20:41:03 UTC +++ CMakeLists.txt @@ -1,4 +1,4 @@ -project(CppCheck) +project(cppcheck) - cmake_minimum_required(VERSION 2.8.4) + cmake_minimum_required(VERSION 2.8.11) include(GNUInstallDirs) Modified: head/devel/cppcheck/files/patch-gui_CMakeLists.txt ============================================================================== --- head/devel/cppcheck/files/patch-gui_CMakeLists.txt Tue Jun 19 13:38:35 2018 (r472784) +++ head/devel/cppcheck/files/patch-gui_CMakeLists.txt Tue Jun 19 13:44:20 2018 (r472785) @@ -1,7 +1,7 @@ ---- gui/CMakeLists.txt.orig 2017-10-07 21:11:39 UTC +--- gui/CMakeLists.txt.orig 2018-06-10 20:41:03 UTC +++ gui/CMakeLists.txt @@ -27,7 +27,7 @@ if (BUILD_GUI) - qt5_use_modules(cppcheck-gui ${GUI_QT_COMPONENTS}) + target_link_libraries(cppcheck-gui Qt5::Core Qt5::Gui Qt5::Widgets Qt5::PrintSupport) install(TARGETS cppcheck-gui RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR} COMPONENT applications) - install(FILES ${qms} DESTINATION ${CMAKE_INSTALL_FULL_BINDIR} COMPONENT applications) From owner-svn-ports-head@freebsd.org Tue Jun 19 13:46:48 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31D5D101AC08; Tue, 19 Jun 2018 13:46:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D4138814C3; Tue, 19 Jun 2018 13:46:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B167514494; Tue, 19 Jun 2018 13:46:47 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JDklfI095765; Tue, 19 Jun 2018 13:46:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JDklsn095764; Tue, 19 Jun 2018 13:46:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806191346.w5JDklsn095764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 13:46:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472786 - head/textproc/xmlcharent X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/textproc/xmlcharent X-SVN-Commit-Revision: 472786 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 13:46:48 -0000 Author: amdmi3 Date: Tue Jun 19 13:46:47 2018 New Revision: 472786 URL: https://svnweb.freebsd.org/changeset/ports/472786 Log: - Add license - Add NO_ARCH PR: 228745 Approved by: maintainer timeout (hrs, 2 weeks) Modified: head/textproc/xmlcharent/Makefile Modified: head/textproc/xmlcharent/Makefile ============================================================================== --- head/textproc/xmlcharent/Makefile Tue Jun 19 13:44:20 2018 (r472785) +++ head/textproc/xmlcharent/Makefile Tue Jun 19 13:46:47 2018 (r472786) @@ -11,16 +11,22 @@ MASTER_SITES= https://www.oasis-open.org/docbook/${POR MAINTAINER= hrs@FreeBSD.org COMMENT= XML character entities +LICENSE= OASIS +LICENSE_NAME= OASIS License +LICENSE_TEXT= License text is available in all .ent files installed by this port +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + RUN_DEPENDS= xmlcatmgr:textproc/xmlcatmgr USES= zip NO_WRKSUBDIR= yes NO_BUILD= yes +NO_ARCH= yes XMLDIR= ${PREFIX}/share/xml/${PORTNAME} do-install: - ${MKDIR} ${STAGEDIR}${XMLDIR} + @${MKDIR} ${STAGEDIR}${XMLDIR} ${INSTALL_DATA} ${WRKSRC}/*.ent \ ${FILESDIR}/catalog ${FILESDIR}/catalog.xml ${STAGEDIR}${XMLDIR} From owner-svn-ports-head@freebsd.org Tue Jun 19 13:47:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5306101AD37; Tue, 19 Jun 2018 13:47:53 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86E3581615; Tue, 19 Jun 2018 13:47: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 67F6E14497; Tue, 19 Jun 2018 13:47: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 w5JDlruc095929; Tue, 19 Jun 2018 13:47:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JDlr0w095928; Tue, 19 Jun 2018 13:47:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806191347.w5JDlr0w095928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 13:47:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472787 - head/java/javavmwrapper X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/java/javavmwrapper X-SVN-Commit-Revision: 472787 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 13:47:54 -0000 Author: amdmi3 Date: Tue Jun 19 13:47:52 2018 New Revision: 472787 URL: https://svnweb.freebsd.org/changeset/ports/472787 Log: - Add LICENSE - Add NO_ARCH PR: 228744 Approved by: maintainer timeout (glewis, 2 weeks) Modified: head/java/javavmwrapper/Makefile Modified: head/java/javavmwrapper/Makefile ============================================================================== --- head/java/javavmwrapper/Makefile Tue Jun 19 13:46:47 2018 (r472786) +++ head/java/javavmwrapper/Makefile Tue Jun 19 13:47:52 2018 (r472787) @@ -10,7 +10,14 @@ DISTFILES= # none MAINTAINER= glewis@FreeBSD.org COMMENT= Wrapper script for various Java Virtual Machines +LICENSE= BEERWARE BSD2CLAUSE +LICENSE_COMB= multi +LICENSE_NAME_BEERWARE= "THE BEER-WARE LICENSE" (Revision 42, (c) Poul-Henning Kamp) +LICENSE_TEXT_BEERWARE= See ${SRC}/javavmwrapper.sh for license text +LICENSE_PERMS_BEERWARE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + NO_BUILD= yes +NO_ARCH= yes NO_WRKSUBDIR= yes PKGINSTALL= ${WRKDIR}/pkg-install From owner-svn-ports-head@freebsd.org Tue Jun 19 13:55:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 150FC101B462; Tue, 19 Jun 2018 13:55:56 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B996A81C92; Tue, 19 Jun 2018 13:55:55 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 96FF314656; Tue, 19 Jun 2018 13:55:55 +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 w5JDttYR000963; Tue, 19 Jun 2018 13:55:55 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JDtsmb000956; Tue, 19 Jun 2018 13:55:54 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806191355.w5JDtsmb000956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 19 Jun 2018 13:55:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472788 - in head/devel: cmake cmake-doc cmake-gui X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/devel: cmake cmake-doc cmake-gui X-SVN-Commit-Revision: 472788 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 13:55:56 -0000 Author: tcberner Date: Tue Jun 19 13:55:54 2018 New Revision: 472788 URL: https://svnweb.freebsd.org/changeset/ports/472788 Log: Update devel/cmake to 3.11.4 PR: 229054 Exp-run by: antoine Modified: head/devel/cmake-doc/Makefile head/devel/cmake-gui/Makefile head/devel/cmake/Makefile head/devel/cmake/distinfo Modified: head/devel/cmake-doc/Makefile ============================================================================== --- head/devel/cmake-doc/Makefile Tue Jun 19 13:47:52 2018 (r472787) +++ head/devel/cmake-doc/Makefile Tue Jun 19 13:55:54 2018 (r472788) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cmake -DISTVERSION= 3.11.3 +DISTVERSION= 3.11.4 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ PKGNAMESUFFIX= -doc Modified: head/devel/cmake-gui/Makefile ============================================================================== --- head/devel/cmake-gui/Makefile Tue Jun 19 13:47:52 2018 (r472787) +++ head/devel/cmake-gui/Makefile Tue Jun 19 13:55:54 2018 (r472788) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cmake -DISTVERSION= 3.11.3 +DISTVERSION= 3.11.4 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ PKGNAMESUFFIX= -gui Modified: head/devel/cmake/Makefile ============================================================================== --- head/devel/cmake/Makefile Tue Jun 19 13:47:52 2018 (r472787) +++ head/devel/cmake/Makefile Tue Jun 19 13:55:54 2018 (r472788) @@ -3,7 +3,7 @@ PORTNAME= cmake # Remember to update devel/cmake-doc and devel/cmake-gui as well. -DISTVERSION= 3.11.3 +DISTVERSION= 3.11.4 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ Modified: head/devel/cmake/distinfo ============================================================================== --- head/devel/cmake/distinfo Tue Jun 19 13:47:52 2018 (r472787) +++ head/devel/cmake/distinfo Tue Jun 19 13:55:54 2018 (r472788) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527800179 -SHA256 (cmake-3.11.3.tar.gz) = 287135b6beb7ffc1ccd02707271080bbf14c21d80c067ae2c0040e5f3508c39a -SIZE (cmake-3.11.3.tar.gz) = 7954155 +TIMESTAMP = 1529041092 +SHA256 (cmake-3.11.4.tar.gz) = 8f864e9f78917de3e1483e256270daabc4a321741592c5b36af028e72bff87f5 +SIZE (cmake-3.11.4.tar.gz) = 7955301 From owner-svn-ports-head@freebsd.org Tue Jun 19 14:00:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59DE0101B6FD; Tue, 19 Jun 2018 14:00:09 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0726581FEC; Tue, 19 Jun 2018 14:00: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DC72D14662; Tue, 19 Jun 2018 14:00:08 +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 w5JE08PV001363; Tue, 19 Jun 2018 14:00:08 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JE086P001360; Tue, 19 Jun 2018 14:00:08 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806191400.w5JE086P001360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 19 Jun 2018 14:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472789 - in head/graphics/digikam: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/graphics/digikam: . files X-SVN-Commit-Revision: 472789 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:00:09 -0000 Author: tcberner Date: Tue Jun 19 14:00:07 2018 New Revision: 472789 URL: https://svnweb.freebsd.org/changeset/ports/472789 Log: graphics/digikam: fix build when not using make jobs Due to incompletely specified cmake targets the build can fail, as a generated file containging the git-version is missing -- as that is always empty in releases anyway, ignore that whole thing. Added: head/graphics/digikam/files/patch-core_app_utils_digikam__version.h.cmake.in (contents, props changed) head/graphics/digikam/files/patch-extra_kipi-plugins_common_libkipiplugins_tools_kpversion.cpp (contents, props changed) Modified: head/graphics/digikam/Makefile Modified: head/graphics/digikam/Makefile ============================================================================== --- head/graphics/digikam/Makefile Tue Jun 19 13:55:54 2018 (r472788) +++ head/graphics/digikam/Makefile Tue Jun 19 14:00:07 2018 (r472789) @@ -2,7 +2,7 @@ PORTNAME= digikam DISTVERSION= 5.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME} DIST_SUBDIR= KDE/digikam/${PORTVERSION} Added: head/graphics/digikam/files/patch-core_app_utils_digikam__version.h.cmake.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/digikam/files/patch-core_app_utils_digikam__version.h.cmake.in Tue Jun 19 14:00:07 2018 (r472789) @@ -0,0 +1,11 @@ +--- core/app/utils/digikam_version.h.cmake.in.orig 2018-06-16 08:50:14 UTC ++++ core/app/utils/digikam_version.h.cmake.in +@@ -34,7 +34,7 @@ + + // Local includes. + +-#include "gitversion.h" ++#define GITVERSION "" + + namespace Digikam + { Added: head/graphics/digikam/files/patch-extra_kipi-plugins_common_libkipiplugins_tools_kpversion.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/digikam/files/patch-extra_kipi-plugins_common_libkipiplugins_tools_kpversion.cpp Tue Jun 19 14:00:07 2018 (r472789) @@ -0,0 +1,11 @@ +--- extra/kipi-plugins/common/libkipiplugins/tools/kpversion.cpp.orig 2018-06-16 09:09:44 UTC ++++ extra/kipi-plugins/common/libkipiplugins/tools/kpversion.cpp +@@ -21,7 +21,7 @@ + * ============================================================ */ + + #include "kpversion.h" +-#include "gitversion.h" ++#define GITVERSION "" + + namespace pluginsVersion { + From owner-svn-ports-head@freebsd.org Tue Jun 19 14:07:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5709A101BE33; Tue, 19 Jun 2018 14:07:03 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 08225825ED; Tue, 19 Jun 2018 14:07:03 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DCE5A147FB; Tue, 19 Jun 2018 14:07:02 +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 w5JE72FH006438; Tue, 19 Jun 2018 14:07:02 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JE72ZV006434; Tue, 19 Jun 2018 14:07:02 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806191407.w5JE72ZV006434@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 19 Jun 2018 14:07:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472790 - in head: . x11-themes x11-themes/adwaita-common x11-themes/adwaita-qt x11-themes/adwaita-qt4 x11-themes/adwaita-qt5 X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: . x11-themes x11-themes/adwaita-common x11-themes/adwaita-qt x11-themes/adwaita-qt4 x11-themes/adwaita-qt5 X-SVN-Commit-Revision: 472790 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:07:03 -0000 Author: tcberner Date: Tue Jun 19 14:07:01 2018 New Revision: 472790 URL: https://svnweb.freebsd.org/changeset/ports/472790 Log: x11-themes/adwaita-qt[45] move to a flavored version * x11-themes/adwaita-qt4 -> adwaita-qt@qt4 * x11-themes/adwaita-qt5 -> adwaita-qt@qt5 * x11-themes/adwaita-common -> gone. Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D15228 Added: head/x11-themes/adwaita-qt/ - copied from r472789, head/x11-themes/adwaita-common/ Deleted: head/x11-themes/adwaita-common/ head/x11-themes/adwaita-qt4/ head/x11-themes/adwaita-qt5/ Modified: head/MOVED head/x11-themes/Makefile head/x11-themes/adwaita-qt/Makefile head/x11-themes/adwaita-qt/distinfo Modified: head/MOVED ============================================================================== --- head/MOVED Tue Jun 19 14:00:07 2018 (r472789) +++ head/MOVED Tue Jun 19 14:07:01 2018 (r472790) @@ -10280,3 +10280,6 @@ net-im/imspector||2018-06-16|Has expired: No active up net/syncthing-discosrv|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now net/syncthing-inotify|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now net/syncthing-cli|net/syncthing|2018-06-18|Has expired: Included in net/syncthing now +x11-themes/adwaita-common||2018-06-19|Move to flavored version +x11-themes/adwaita-qt4|x11-themes/adwaita-qt@qt4|2018-06-19|Move to flavored version +x11-themes/adwaita-qt5|x11-themes/adwaita-qt@qt5|2018-06-19|Move to flavored version Modified: head/x11-themes/Makefile ============================================================================== --- head/x11-themes/Makefile Tue Jun 19 14:00:07 2018 (r472789) +++ head/x11-themes/Makefile Tue Jun 19 14:07:01 2018 (r472790) @@ -5,10 +5,8 @@ SUBDIR += adapta-backgrounds SUBDIR += adapta-gtk-theme - SUBDIR += adwaita-common SUBDIR += adwaita-icon-theme - SUBDIR += adwaita-qt4 - SUBDIR += adwaita-qt5 + SUBDIR += adwaita-qt SUBDIR += arc-gruvbox-theme SUBDIR += audacious-skins SUBDIR += beastie Modified: head/x11-themes/adwaita-qt/Makefile ============================================================================== --- head/x11-themes/adwaita-common/Makefile Tue Jun 19 14:00:07 2018 (r472789) +++ head/x11-themes/adwaita-qt/Makefile Tue Jun 19 14:07:01 2018 (r472790) @@ -1,11 +1,9 @@ # Created by: Olivier Duchateau # $FreeBSD$ -PORTNAME= adwaita -PORTVERSION= 1.0 -PORTREVISION?= 1 +PORTNAME= adwaita-qt +DISTVERSION= 1.0 CATEGORIES= x11-themes -PKGNAMESUFFIX= -${OPTIONS_SLAVE:tl} MAINTAINER= tcberner@FreeBSD.org COMMENT= Adwaita theme for Qt applications @@ -13,28 +11,25 @@ COMMENT= Adwaita theme for Qt applications LICENSE= GPLv2 LGPL20 LICENSE_COMB= multi -OPTIONS_DEFINE= QT4 QT5 COMMON -OPTIONS_EXCLUDE=${OPTIONS_DEFINE} +FLAVORS= qt5 qt4 +FLAVOR?= ${FLAVORS:[1]} +qt4_PKGNAMESUFFIX= 4 +qt5_PKGNAMESUFFIX= 5 -OPTIONS_SLAVE?= COMMON +USES= cmake:outsource compiler:c++11-lib localbase pkgconfig +. if ${FLAVOR} == qt4 +USE_QT4= corelib dbus gui \ + moc_build rcc_build uic_build qmake_build +CMAKE_ON= USE_QT4 +. else +USE_QT5= core dbus gui widgets \ + buildtools_build qmake_build +CMAKE_OFF= USE_QT4 +. endif -COMMON_RUN_DEPENDS= adwaita-qt4>=${PORTVERSION}:x11-themes/adwaita-qt4 \ - adwaita-qt5>=${PORTVERSION}:x11-themes/adwaita-qt5 -COMMON_USES= metaport -COMMON_PLIST_FILES= # none - -# Set the values for the QT[45] slave ports -- COMMON is ignored, as it is already set. -${OPTIONS_SLAVE}_USES?= cmake:outsource compiler:c++11-lib localbase pkgconfig -${OPTIONS_SLAVE}_PLIST_FILES?= %%QT_PLUGINDIR%%/styles/adwaita.so - -QT4_USE= QT4=moc_build,rcc_build,uic_build,qmake_build,corelib,dbus,gui -QT4_CMAKE_BOOL= USE_QT4 - -QT5_USE= QT5=buildtools_build,qmake_build,core,dbus,gui,widgets -QT5_CMAKE_BOOL_OFF= USE_QT4 - USE_GITHUB= yes -GH_ACCOUNT= MartinBriza -GH_PROJECT= adwaita-qt +GH_ACCOUNT= FedoraQt + +PLIST_FILES= ${QT_PLUGINDIR}/styles/adwaita.so .include Modified: head/x11-themes/adwaita-qt/distinfo ============================================================================== --- head/x11-themes/adwaita-common/distinfo Tue Jun 19 14:00:07 2018 (r472789) +++ head/x11-themes/adwaita-qt/distinfo Tue Jun 19 14:07:01 2018 (r472790) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496037433 -SHA256 (MartinBriza-adwaita-qt-1.0_GH0.tar.gz) = c2c0c71b131d0e3e58ee108570796cf70b35dccaa64ce17915d4486de5e91513 -SIZE (MartinBriza-adwaita-qt-1.0_GH0.tar.gz) = 565625 +TIMESTAMP = 1525031614 +SHA256 (FedoraQt-adwaita-qt-1.0_GH0.tar.gz) = c2c0c71b131d0e3e58ee108570796cf70b35dccaa64ce17915d4486de5e91513 +SIZE (FedoraQt-adwaita-qt-1.0_GH0.tar.gz) = 565625 From owner-svn-ports-head@freebsd.org Tue Jun 19 14:19:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B648101C9A9; Tue, 19 Jun 2018 14:19:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AD46A830AA; Tue, 19 Jun 2018 14:19:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9006F149C3; Tue, 19 Jun 2018 14:19:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JEJ0Gc011781; Tue, 19 Jun 2018 14:19:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JEJ07w011778; Tue, 19 Jun 2018 14:19:00 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191419.w5JEJ07w011778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 14:19:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472791 - head/misc/esniper X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/misc/esniper X-SVN-Commit-Revision: 472791 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:19:01 -0000 Author: swills Date: Tue Jun 19 14:18:59 2018 New Revision: 472791 URL: https://svnweb.freebsd.org/changeset/ports/472791 Log: misc/esniper: Upgrade to 2.35.0 PR: 229117 Submitted by: Armin Gruner (maintainer) Modified: head/misc/esniper/Makefile (contents, props changed) head/misc/esniper/distinfo (contents, props changed) Modified: head/misc/esniper/Makefile ============================================================================== --- head/misc/esniper/Makefile Tue Jun 19 14:07:01 2018 (r472790) +++ head/misc/esniper/Makefile Tue Jun 19 14:18:59 2018 (r472791) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= esniper -DISTVERSION= 2-33-0 +DISTVERSION= 2-35-0 CATEGORIES= misc net MASTER_SITES= SF Modified: head/misc/esniper/distinfo ============================================================================== --- head/misc/esniper/distinfo Tue Jun 19 14:07:01 2018 (r472790) +++ head/misc/esniper/distinfo Tue Jun 19 14:18:59 2018 (r472791) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494793557 -SHA256 (esniper-2-33-0.tgz) = c9b8b10aefe5c397d7dee4c569f87f227c6710de528b1dc402379e5b4f1793dd -SIZE (esniper-2-33-0.tgz) = 133932 +TIMESTAMP = 1529342137 +SHA256 (esniper-2-35-0.tgz) = a93d4533e31640554f2e430ac76b43e73a50ed6d721511066020712ac8923c12 +SIZE (esniper-2-35-0.tgz) = 143573 From owner-svn-ports-head@freebsd.org Tue Jun 19 14:19:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01821101CADA; Tue, 19 Jun 2018 14:19:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A77B1831FE; Tue, 19 Jun 2018 14:19:41 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 894B6149D8; Tue, 19 Jun 2018 14:19:41 +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 w5JEJfip011931; Tue, 19 Jun 2018 14:19:41 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JEJfok011929; Tue, 19 Jun 2018 14:19:41 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806191419.w5JEJfok011929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 19 Jun 2018 14:19:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472792 - head/lang/perl5.28 X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/lang/perl5.28 X-SVN-Commit-Revision: 472792 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:19:42 -0000 Author: mat Date: Tue Jun 19 14:19:40 2018 New Revision: 472792 URL: https://svnweb.freebsd.org/changeset/ports/472792 Log: Update to 5.28.0-RC3. Sponsored by: Absolight Modified: head/lang/perl5.28/Makefile (contents, props changed) head/lang/perl5.28/distinfo (contents, props changed) Modified: head/lang/perl5.28/Makefile ============================================================================== --- head/lang/perl5.28/Makefile Tue Jun 19 14:18:59 2018 (r472791) +++ head/lang/perl5.28/Makefile Tue Jun 19 14:19:40 2018 (r472792) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= perl -DISTVERSION= ${PERL_VERSION}-RC2 +DISTVERSION= ${PERL_VERSION}-RC3 PORTREVISION= 0 CATEGORIES= lang devel perl5 MASTER_SITES= CPAN/../../src/5.0 CPAN/../../authors/id/X/XS/XSAWYERX/ Modified: head/lang/perl5.28/distinfo ============================================================================== --- head/lang/perl5.28/distinfo Tue Jun 19 14:18:59 2018 (r472791) +++ head/lang/perl5.28/distinfo Tue Jun 19 14:19:40 2018 (r472792) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528703414 -SHA256 (perl/perl-5.28.0-RC2.tar.xz) = e4463dfffafb0a5d98b9e7accf84286a698ee3585f0871190bcca540c3f388d5 -SIZE (perl/perl-5.28.0-RC2.tar.xz) = 12412488 +TIMESTAMP = 1529414954 +SHA256 (perl/perl-5.28.0-RC3.tar.xz) = 2086e05c9465ee97eb741ebbf0eef1154ba02b80f6ff8fdf4ddb3a54d151c2ec +SIZE (perl/perl-5.28.0-RC3.tar.xz) = 12409368 From owner-svn-ports-head@freebsd.org Tue Jun 19 14:19:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D854F101CB37; Tue, 19 Jun 2018 14:19:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 868A4832D2; Tue, 19 Jun 2018 14:19:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 67E25149DA; Tue, 19 Jun 2018 14:19:53 +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 w5JEJrem012057; Tue, 19 Jun 2018 14:19:53 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JEJr8o012055; Tue, 19 Jun 2018 14:19:53 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806191419.w5JEJr8o012055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 19 Jun 2018 14:19:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472793 - head/lang/perl5-devel X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/lang/perl5-devel X-SVN-Commit-Revision: 472793 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:19:54 -0000 Author: mat Date: Tue Jun 19 14:19:52 2018 New Revision: 472793 URL: https://svnweb.freebsd.org/changeset/ports/472793 Log: Update to v5.28.0-RC3-4-g443128e3a6. Sponsored by: Absolight Modified: head/lang/perl5-devel/Makefile (contents, props changed) head/lang/perl5-devel/distinfo (contents, props changed) Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Tue Jun 19 14:19:40 2018 (r472792) +++ head/lang/perl5-devel/Makefile Tue Jun 19 14:19:52 2018 (r472793) @@ -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.28.0-RC2-2-g197e7984e9 +GH_TAGNAME= v5.28.0-RC3-4-g443128e3a6 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 Tue Jun 19 14:19:40 2018 (r472792) +++ head/lang/perl5-devel/distinfo Tue Jun 19 14:19:52 2018 (r472793) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528703511 -SHA256 (perl/Perl-perl5-v5.28.0-RC2-2-g197e7984e9_GH0.tar.gz) = 90cc9ec0721e9fb7858cc8f1ece8468c86f34301d2ebd20d9d243b833f0240a3 -SIZE (perl/Perl-perl5-v5.28.0-RC2-2-g197e7984e9_GH0.tar.gz) = 19358760 +TIMESTAMP = 1529416547 +SHA256 (perl/Perl-perl5-v5.28.0-RC3-4-g443128e3a6_GH0.tar.gz) = bc9aded6d366ff7baf50256a4a54db3f2e7bbe8f7374afe5692e43b050c48fa9 +SIZE (perl/Perl-perl5-v5.28.0-RC3-4-g443128e3a6_GH0.tar.gz) = 19358186 From owner-svn-ports-head@freebsd.org Tue Jun 19 14:21:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D84C101CD07; Tue, 19 Jun 2018 14:21:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 17BD3834B9; Tue, 19 Jun 2018 14:21:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE3F214AFD; Tue, 19 Jun 2018 14:21:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JEL1kg013213; Tue, 19 Jun 2018 14:21:01 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JEL1We013211; Tue, 19 Jun 2018 14:21:01 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191421.w5JEL1We013211@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 14:21:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472794 - head/www/gohugo X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/www/gohugo X-SVN-Commit-Revision: 472794 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:21:02 -0000 Author: swills Date: Tue Jun 19 14:21:01 2018 New Revision: 472794 URL: https://svnweb.freebsd.org/changeset/ports/472794 Log: www/gohugo: Update to 0.42.1 PR: 229121 Submitted by: ben.lavery@hashbang0.com (maintainer) Modified: head/www/gohugo/Makefile (contents, props changed) head/www/gohugo/distinfo (contents, props changed) Modified: head/www/gohugo/Makefile ============================================================================== --- head/www/gohugo/Makefile Tue Jun 19 14:19:52 2018 (r472793) +++ head/www/gohugo/Makefile Tue Jun 19 14:21:01 2018 (r472794) @@ -2,7 +2,7 @@ PORTNAME= hugo DISTVERSIONPREFIX= v -DISTVERSION= 0.41 +DISTVERSION= 0.42.1 CATEGORIES= www PKGNAMEPREFIX= go DIST_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} @@ -20,11 +20,11 @@ GH_SUBDIR= src/github.com/${GH_ACCOUNT_DEFAULT}/${PORT GH_TUPLE= BurntSushi:toml:a368813:toml/src/github.com/BurntSushi/toml \ PuerkitoBio:purell:0bcb03f:purell/src/github.com/PuerkitoBio/purell \ PuerkitoBio:urlesc:de5bf2a:urlesc/src/github.com/PuerkitoBio/urlesc \ - alecthomas:chroma:6b1131c:chroma/src/github.com/alecthomas/chroma \ + alecthomas:chroma:1b755a9:chroma/src/github.com/alecthomas/chroma \ bep:debounce:844797f:debounce/src/github.com/bep/debounce \ bep:gitmap:012701e:gitmap/src/github.com/bep/gitmap \ chaseadamsio:goorgeous:dcf1ef8:goorgeous/src/github.com/chaseadamsio/goorgeous \ - cpuguy83:go-md2man:20f5889:go_md2man/src/github.com/cpuguy83/go-md2man \ + cpuguy83:go-md2man:a65d4d2:go_md2man/src/github.com/cpuguy83/go-md2man \ danwakefield:fnmatch:cbb64ac:fnmatch/src/github.com/danwakefield/fnmatch \ davecgh:go-spew:346938d:go_spew/src/github.com/davecgh/go-spew \ disintegration:imaging:dd50a3e:imaging/src/github.com/disintegration/imaging \ @@ -51,10 +51,10 @@ GH_TUPLE= BurntSushi:toml:a368813:toml/src/github.com/ olekukonko:tablewriter:b8a9be0:tablewriter/src/github.com/olekukonko/tablewriter \ pelletier:go-toml:acdc450:go_toml/src/github.com/pelletier/go-toml \ pmezard:go-difflib:792786c:go_difflib/src/github.com/pmezard/go-difflib \ - russross:blackfriday:55d61fa:blackfriday/src/github.com/russross/blackfriday \ + russross:blackfriday:11635eb:blackfriday/src/github.com/russross/blackfriday \ sanity-io:litter:ae543b7:litter/src/github.com/sanity-io/litter \ shurcooL:sanitized_anchor_name:86672fc:sanitized_anchor_name/src/github.com/shurcooL/sanitized_anchor_name \ - spf13:afero:6364489:afero/src/github.com/spf13/afero \ + spf13:afero:787d034:afero/src/github.com/spf13/afero \ spf13:cast:8965335:cast/src/github.com/spf13/cast \ spf13:cobra:a1f051b:cobra/src/github.com/spf13/cobra \ spf13:fsync:12a01e6:fsync/src/github.com/spf13/fsync \ Modified: head/www/gohugo/distinfo ============================================================================== --- head/www/gohugo/distinfo Tue Jun 19 14:19:52 2018 (r472793) +++ head/www/gohugo/distinfo Tue Jun 19 14:21:01 2018 (r472794) @@ -1,22 +1,22 @@ -TIMESTAMP = 1527325758 -SHA256 (gohugo/gohugoio-hugo-v0.41_GH0.tar.gz) = a5a435d352ad8df3f0dd77968e6ac21925ee006e5538a37f775d9f53b30799fc -SIZE (gohugo/gohugoio-hugo-v0.41_GH0.tar.gz) = 16385469 +TIMESTAMP = 1529095370 +SHA256 (gohugo/gohugoio-hugo-v0.42.1_GH0.tar.gz) = 4450c9434269dac75f4a6cb702d8704a49c73e17f974dc2fa15e699c03b9774b +SIZE (gohugo/gohugoio-hugo-v0.42.1_GH0.tar.gz) = 16529961 SHA256 (gohugo/BurntSushi-toml-a368813_GH0.tar.gz) = 68dc067c4105cd20a642ddf1f4acaada7474c1b58e5b249d4bd9b0d7e8edebc2 SIZE (gohugo/BurntSushi-toml-a368813_GH0.tar.gz) = 42252 SHA256 (gohugo/PuerkitoBio-purell-0bcb03f_GH0.tar.gz) = ade9e6e2a5d1d79daaf2d729f450c482ff0aa316ea0a1d9e5e3f7a753d05c49c SIZE (gohugo/PuerkitoBio-purell-0bcb03f_GH0.tar.gz) = 11654 SHA256 (gohugo/PuerkitoBio-urlesc-de5bf2a_GH0.tar.gz) = 0d4b469d8d1dfe12e740661d242df9f49779e6f07a31361231d5314979391df5 SIZE (gohugo/PuerkitoBio-urlesc-de5bf2a_GH0.tar.gz) = 6796 -SHA256 (gohugo/alecthomas-chroma-6b1131c_GH0.tar.gz) = 8051ba22e0e1bbf25765e57432ff9880124663ff184912bbc6fbd4e0adf875ef -SIZE (gohugo/alecthomas-chroma-6b1131c_GH0.tar.gz) = 299642 +SHA256 (gohugo/alecthomas-chroma-1b755a9_GH0.tar.gz) = dac50afb449ca4fb6a61f3c9866302a5d133e5fe67af7219c2356511e4724a35 +SIZE (gohugo/alecthomas-chroma-1b755a9_GH0.tar.gz) = 300880 SHA256 (gohugo/bep-debounce-844797f_GH0.tar.gz) = e957962f6cf46be644cc31c6de4c2d5dda00736a6f507bc24042235d0295c9c8 SIZE (gohugo/bep-debounce-844797f_GH0.tar.gz) = 3489 SHA256 (gohugo/bep-gitmap-012701e_GH0.tar.gz) = 6af8c509315fcaa0abc8d922009357e360d86ac419a611639ca3b67636d053c1 SIZE (gohugo/bep-gitmap-012701e_GH0.tar.gz) = 4596 SHA256 (gohugo/chaseadamsio-goorgeous-dcf1ef8_GH0.tar.gz) = 6dbf5f61257fc8c71ec6ae533f477f351c1b0fa11774cf6e8abf27edc7d90d61 SIZE (gohugo/chaseadamsio-goorgeous-dcf1ef8_GH0.tar.gz) = 34318 -SHA256 (gohugo/cpuguy83-go-md2man-20f5889_GH0.tar.gz) = bab48ebb3ef8c482ba3564020168d0fd47dd70fe87a313b4f7a6f67b692be077 -SIZE (gohugo/cpuguy83-go-md2man-20f5889_GH0.tar.gz) = 79309 +SHA256 (gohugo/cpuguy83-go-md2man-a65d4d2_GH0.tar.gz) = aa57abcc9cc5b034a91479922764bffdcd602d29c8b8ce5512f4dc6bbaab54b9 +SIZE (gohugo/cpuguy83-go-md2man-a65d4d2_GH0.tar.gz) = 40242 SHA256 (gohugo/danwakefield-fnmatch-cbb64ac_GH0.tar.gz) = e187c66e99cdae6474edc59c1a63245e8e9428c4035c36e76c2cfe0b46ca7a38 SIZE (gohugo/danwakefield-fnmatch-cbb64ac_GH0.tar.gz) = 4950 SHA256 (gohugo/davecgh-go-spew-346938d_GH0.tar.gz) = 92e706ece5da01f2c61cf632e168d8c24d44866523b25f0e8eb9d1596c5d5f79 @@ -69,14 +69,14 @@ SHA256 (gohugo/pelletier-go-toml-acdc450_GH0.tar.gz) = SIZE (gohugo/pelletier-go-toml-acdc450_GH0.tar.gz) = 56997 SHA256 (gohugo/pmezard-go-difflib-792786c_GH0.tar.gz) = 7c2a6d7ea0700411ba7d13865230c03bd6734d3ff6c213357bda121f5bb707fb SIZE (gohugo/pmezard-go-difflib-792786c_GH0.tar.gz) = 11401 -SHA256 (gohugo/russross-blackfriday-55d61fa_GH0.tar.gz) = 6bacba6f464d52bdc7d7b8638479401d1af684c38e08f90a08d651ef54eacbbd -SIZE (gohugo/russross-blackfriday-55d61fa_GH0.tar.gz) = 75050 +SHA256 (gohugo/russross-blackfriday-11635eb_GH0.tar.gz) = c82e86295781a480d8881fa0ca867e52178753a550aa662e41c076049703b0be +SIZE (gohugo/russross-blackfriday-11635eb_GH0.tar.gz) = 75168 SHA256 (gohugo/sanity-io-litter-ae543b7_GH0.tar.gz) = c92fa1e341b82514e3e88408c3701721895497e2ae88d7c165f1ce7cf6cf996f SIZE (gohugo/sanity-io-litter-ae543b7_GH0.tar.gz) = 8781 SHA256 (gohugo/shurcooL-sanitized_anchor_name-86672fc_GH0.tar.gz) = 01ba94d077da9cac1a008e46dcb77ec36b83c96712fbedfe77cdef7818899996 SIZE (gohugo/shurcooL-sanitized_anchor_name-86672fc_GH0.tar.gz) = 2059 -SHA256 (gohugo/spf13-afero-6364489_GH0.tar.gz) = e4dd6703ba9bb47e1b8ae62fa904eec827c62e7df07221040f14d57e6cfaabe7 -SIZE (gohugo/spf13-afero-6364489_GH0.tar.gz) = 45186 +SHA256 (gohugo/spf13-afero-787d034_GH0.tar.gz) = f247e0e82612887f145bd2f721096a96c9728f9f67e4ee2eb7a4c1fd3425d1bc +SIZE (gohugo/spf13-afero-787d034_GH0.tar.gz) = 45256 SHA256 (gohugo/spf13-cast-8965335_GH0.tar.gz) = b19c0f765ad78d7aefd363c57b9c4f78e6b75b079542b47922ed52c3fff07cdf SIZE (gohugo/spf13-cast-8965335_GH0.tar.gz) = 9855 SHA256 (gohugo/spf13-cobra-a1f051b_GH0.tar.gz) = 692baf59c0952d4b113a897e6556e95c65bd36998a0b19abf3453bbf87e07db9 From owner-svn-ports-head@freebsd.org Tue Jun 19 14:25:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5C9C101D22E; Tue, 19 Jun 2018 14:25:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7289F83987; Tue, 19 Jun 2018 14:25:17 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5222314B7B; Tue, 19 Jun 2018 14:25:17 +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 w5JEPHIp017288; Tue, 19 Jun 2018 14:25:17 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JEPGDq017286; Tue, 19 Jun 2018 14:25:16 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201806191425.w5JEPGDq017286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 19 Jun 2018 14:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472795 - head/net-p2p/sonarr X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: head/net-p2p/sonarr X-SVN-Commit-Revision: 472795 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 14:25:18 -0000 Author: feld Date: Tue Jun 19 14:25:16 2018 New Revision: 472795 URL: https://svnweb.freebsd.org/changeset/ports/472795 Log: net-p2p/sonarr: Update to 2.0.0.5225 Modified: head/net-p2p/sonarr/Makefile head/net-p2p/sonarr/distinfo Modified: head/net-p2p/sonarr/Makefile ============================================================================== --- head/net-p2p/sonarr/Makefile Tue Jun 19 14:21:01 2018 (r472794) +++ head/net-p2p/sonarr/Makefile Tue Jun 19 14:25:16 2018 (r472795) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sonarr -PORTVERSION= 2.0.0.5163 +PORTVERSION= 2.0.0.5225 PORTREVISION= 0 CATEGORIES= net-p2p MASTER_SITES= http://download.sonarr.tv/v2/master/mono/ Modified: head/net-p2p/sonarr/distinfo ============================================================================== --- head/net-p2p/sonarr/distinfo Tue Jun 19 14:21:01 2018 (r472794) +++ head/net-p2p/sonarr/distinfo Tue Jun 19 14:25:16 2018 (r472795) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521898287 -SHA256 (NzbDrone.master.2.0.0.5163.mono.tar.gz) = c3a7845f99cf7d76f749ea961f79e8b5a55d15a1a20be01d5dd1b5b318d0f90c -SIZE (NzbDrone.master.2.0.0.5163.mono.tar.gz) = 6933370 +TIMESTAMP = 1529418240 +SHA256 (NzbDrone.master.2.0.0.5225.mono.tar.gz) = 858ac7ddedc0379ac73063690b98c403f4fe31b24738857edc5cb63a5d69843a +SIZE (NzbDrone.master.2.0.0.5225.mono.tar.gz) = 6962346 From owner-svn-ports-head@freebsd.org Tue Jun 19 15:34:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B30D21021B0D; Tue, 19 Jun 2018 15:34:14 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6391A86D32; Tue, 19 Jun 2018 15:34:14 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 453E715732; Tue, 19 Jun 2018 15:34:14 +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 w5JFYEdq052781; Tue, 19 Jun 2018 15:34:14 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JFYEfI052780; Tue, 19 Jun 2018 15:34:14 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201806191534.w5JFYEfI052780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 19 Jun 2018 15:34:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472796 - head/security/openssh-portable/files X-SVN-Group: ports-head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: head/security/openssh-portable/files X-SVN-Commit-Revision: 472796 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 15:34:14 -0000 Author: bdrewery Date: Tue Jun 19 15:34:13 2018 New Revision: 472796 URL: https://svnweb.freebsd.org/changeset/ports/472796 Log: Add lost metadata on why this patch exists Modified: head/security/openssh-portable/files/patch-servconf.c Modified: head/security/openssh-portable/files/patch-servconf.c ============================================================================== --- head/security/openssh-portable/files/patch-servconf.c Tue Jun 19 14:25:16 2018 (r472795) +++ head/security/openssh-portable/files/patch-servconf.c Tue Jun 19 15:34:13 2018 (r472796) @@ -1,3 +1,11 @@ +r99048 | des | 2002-06-29 05:51:56 -0500 (Sat, 29 Jun 2002) | 4 lines +Changed paths: + M /head/crypto/openssh/myproposal.h + M /head/crypto/openssh/readconf.c + M /head/crypto/openssh/servconf.c + +Apply FreeBSD's configuration defaults. + --- servconf.c.orig 2015-08-17 20:37:29.913831000 UTC +++ servconf.c 2015-08-17 20:37:29.950132000 -0700 @@ -57,6 +57,7 @@ From owner-svn-ports-head@freebsd.org Tue Jun 19 15:42:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22EEE1022236; Tue, 19 Jun 2018 15:42:33 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C9303872AF; Tue, 19 Jun 2018 15:42:32 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AA4C0158E8; Tue, 19 Jun 2018 15:42:32 +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 w5JFgWxq057599; Tue, 19 Jun 2018 15:42:32 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JFgWPL057598; Tue, 19 Jun 2018 15:42:32 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201806191542.w5JFgWPL057598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 19 Jun 2018 15:42:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472797 - head/security/openssh-portable/files X-SVN-Group: ports-head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: head/security/openssh-portable/files X-SVN-Commit-Revision: 472797 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 15:42:33 -0000 Author: bdrewery Date: Tue Jun 19 15:42:32 2018 New Revision: 472797 URL: https://svnweb.freebsd.org/changeset/ports/472797 Log: Fix nologin check when PAM option is disabled in the port. PR: 229147 Submitted by: Robert Schulze Modified: head/security/openssh-portable/files/patch-servconf.c Modified: head/security/openssh-portable/files/patch-servconf.c ============================================================================== --- head/security/openssh-portable/files/patch-servconf.c Tue Jun 19 15:34:13 2018 (r472796) +++ head/security/openssh-portable/files/patch-servconf.c Tue Jun 19 15:42:32 2018 (r472797) @@ -6,26 +6,29 @@ Changed paths: Apply FreeBSD's configuration defaults. ---- servconf.c.orig 2015-08-17 20:37:29.913831000 UTC -+++ servconf.c 2015-08-17 20:37:29.950132000 -0700 -@@ -57,6 +57,7 @@ +--- servconf.c.orig 2018-06-19 09:26:26 UTC ++++ servconf.c +@@ -63,6 +63,7 @@ #include "auth.h" #include "myproposal.h" #include "digest.h" +#include "version.h" - static void add_listen_addr(ServerOptions *, char *, int); - static void add_one_listen_addr(ServerOptions *, char *, int); -@@ -193,7 +194,7 @@ fill_default_server_options(ServerOption + static void add_listen_addr(ServerOptions *, const char *, + const char *, int); +@@ -240,7 +241,11 @@ fill_default_server_options(ServerOption /* Portable-specific options */ if (options->use_pam == -1) -- options->use_pam = 0; ++#ifdef USE_PAM + options->use_pam = 1; ++#else + options->use_pam = 0; ++#endif /* Standard Options */ - if (options->protocol == SSH_PROTO_UNKNOWN) -@@ -242,7 +243,7 @@ fill_default_server_options(ServerOption + if (options->num_host_key_files == 0) { +@@ -280,7 +285,7 @@ fill_default_server_options(ServerOption if (options->print_lastlog == -1) options->print_lastlog = 1; if (options->x11_forwarding == -1) @@ -34,9 +37,9 @@ Apply FreeBSD's configuration defaults. if (options->x11_display_offset == -1) options->x11_display_offset = 10; if (options->x11_use_localhost == -1) -@@ -288,7 +289,11 @@ fill_default_server_options(ServerOption +@@ -320,7 +325,11 @@ fill_default_server_options(ServerOption if (options->gss_strict_acceptor == -1) - options->gss_strict_acceptor = 0; + options->gss_strict_acceptor = 1; if (options->password_authentication == -1) +#ifdef USE_PAM + options->password_authentication = 0; From owner-svn-ports-head@freebsd.org Tue Jun 19 15:42:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBDA6102229E; Tue, 19 Jun 2018 15:42:54 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 911BA8739C; Tue, 19 Jun 2018 15:42:54 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 72DC3158EB; Tue, 19 Jun 2018 15:42:54 +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 w5JFgs04057732; Tue, 19 Jun 2018 15:42:54 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JFgsG4057731; Tue, 19 Jun 2018 15:42:54 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201806191542.w5JFgsG4057731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 19 Jun 2018 15:42:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472798 - head/security/openssh-portable X-SVN-Group: ports-head X-SVN-Commit-Author: bdrewery X-SVN-Commit-Paths: head/security/openssh-portable X-SVN-Commit-Revision: 472798 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 15:42:55 -0000 Author: bdrewery Date: Tue Jun 19 15:42:54 2018 New Revision: 472798 URL: https://svnweb.freebsd.org/changeset/ports/472798 Log: Forgot PORTREVISION bump for r472797. PR: 229147 Modified: head/security/openssh-portable/Makefile Modified: head/security/openssh-portable/Makefile ============================================================================== --- head/security/openssh-portable/Makefile Tue Jun 19 15:42:32 2018 (r472797) +++ head/security/openssh-portable/Makefile Tue Jun 19 15:42:54 2018 (r472798) @@ -3,7 +3,7 @@ PORTNAME= openssh DISTVERSION= 7.7p1 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= security ipv6 MASTER_SITES= OPENBSD/OpenSSH/portable From owner-svn-ports-head@freebsd.org Tue Jun 19 15:43:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 638E510222E3; Tue, 19 Jun 2018 15:43:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 14EDA87468; Tue, 19 Jun 2018 15:43:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EA61C158ED; Tue, 19 Jun 2018 15:43:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JFh1LV057876; Tue, 19 Jun 2018 15:43:01 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JFh10R057874; Tue, 19 Jun 2018 15:43:01 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191543.w5JFh10R057874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 15:43:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472799 - in head/games/frogatto: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/games/frogatto: . files X-SVN-Commit-Revision: 472799 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 15:43:02 -0000 Author: swills Date: Tue Jun 19 15:43:01 2018 New Revision: 472799 URL: https://svnweb.freebsd.org/changeset/ports/472799 Log: games/frogatto: Fix line endings on patch Submitted by: Green Dog (via private email) Modified: head/games/frogatto/Makefile (contents, props changed) head/games/frogatto/files/patch-src-surface_cache.cpp (contents, props changed) Modified: head/games/frogatto/Makefile ============================================================================== --- head/games/frogatto/Makefile Tue Jun 19 15:42:54 2018 (r472798) +++ head/games/frogatto/Makefile Tue Jun 19 15:43:01 2018 (r472799) @@ -22,11 +22,12 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ USE_GITHUB= yes GH_ACCOUNT= frogatto -USES= gmake pkgconfig +USES= gmake pkgconfig dos2unix ALL_TARGET= game server USE_GL= glew glu USE_SDL= sdl image mixer ttf USE_CXXSTD= c++11 +DOS2UNIX_FILES= src/surface_cache.cpp PLIST_FILES= bin/${PORTNAME} bin/${PORTNAME}-server Modified: head/games/frogatto/files/patch-src-surface_cache.cpp ============================================================================== --- head/games/frogatto/files/patch-src-surface_cache.cpp Tue Jun 19 15:42:54 2018 (r472798) +++ head/games/frogatto/files/patch-src-surface_cache.cpp Tue Jun 19 15:43:01 2018 (r472799) @@ -1,11 +1,11 @@ --- src/surface_cache.cpp.orig 2018-06-16 13:59:29.319430000 +0300 +++ src/surface_cache.cpp 2018-06-16 14:00:09.140102000 +0300 @@ -116,7 +116,7 @@ - } - #endif // ANDROID - //std::cerr << "loading image '" << fname << "'\n"; -- if(surf.get() == false || surf->w == 0) { -+ if(surf.get() == nullptr || surf->w == 0) { - if(key != "") { - std::cerr << "failed to load image '" << key << "'\n"; - } + } + #endif // ANDROID + //std::cerr << "loading image '" << fname << "'\n"; +- if(surf.get() == false || surf->w == 0) { ++ if(surf.get() == nullptr || surf->w == 0) { + if(key != "") { + std::cerr << "failed to load image '" << key << "'\n"; + } From owner-svn-ports-head@freebsd.org Tue Jun 19 15:51:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12793102292E; Tue, 19 Jun 2018 15:51:17 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8BB487A61; Tue, 19 Jun 2018 15:51:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 99EBC15A30; Tue, 19 Jun 2018 15:51:16 +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 w5JFpGWg061646; Tue, 19 Jun 2018 15:51:16 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JFpGLx061645; Tue, 19 Jun 2018 15:51:16 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201806191551.w5JFpGLx061645@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: Tue, 19 Jun 2018 15:51:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472801 - head/net/bosh-bootloader X-SVN-Group: ports-head X-SVN-Commit-Author: dumbbell X-SVN-Commit-Paths: head/net/bosh-bootloader X-SVN-Commit-Revision: 472801 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 15:51:17 -0000 Author: dumbbell Date: Tue Jun 19 15:51:16 2018 New Revision: 472801 URL: https://svnweb.freebsd.org/changeset/ports/472801 Log: net/bosh-bootloader: Update to 6.7.10 Sponsored by: Pivotal Software, Inc Modified: head/net/bosh-bootloader/Makefile head/net/bosh-bootloader/distinfo Modified: head/net/bosh-bootloader/Makefile ============================================================================== --- head/net/bosh-bootloader/Makefile Tue Jun 19 15:44:42 2018 (r472800) +++ head/net/bosh-bootloader/Makefile Tue Jun 19 15:51:16 2018 (r472801) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bosh-bootloader -PORTVERSION= 6.7.8 +PORTVERSION= 6.7.10 CATEGORIES= net sysutils MAINTAINER= dumbbell@FreeBSD.org Modified: head/net/bosh-bootloader/distinfo ============================================================================== --- head/net/bosh-bootloader/distinfo Tue Jun 19 15:44:42 2018 (r472800) +++ head/net/bosh-bootloader/distinfo Tue Jun 19 15:51:16 2018 (r472801) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529070852 -SHA256 (cloudfoundry-bosh-bootloader-6.7.8-v6.7.8_GH0.tar.gz) = b31b18334ca275d02e083999112a39dbcfb1fe003102b2449aa81786533b5521 -SIZE (cloudfoundry-bosh-bootloader-6.7.8-v6.7.8_GH0.tar.gz) = 5455213 +TIMESTAMP = 1529422985 +SHA256 (cloudfoundry-bosh-bootloader-6.7.10-v6.7.10_GH0.tar.gz) = b17354cfd39d2e0f23848f0f1f208f42d94745fcc8ddaa40dede86bd478c0fec +SIZE (cloudfoundry-bosh-bootloader-6.7.10-v6.7.10_GH0.tar.gz) = 5457467 From owner-svn-ports-head@freebsd.org Tue Jun 19 16:24:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 875C4102493C; Tue, 19 Jun 2018 16:24:04 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 34375695B3; Tue, 19 Jun 2018 16:24:04 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1573815FAB; Tue, 19 Jun 2018 16:24:04 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JGO3Hv078721; Tue, 19 Jun 2018 16:24:03 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JGO3SY078719; Tue, 19 Jun 2018 16:24:03 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201806191624.w5JGO3SY078719@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Tue, 19 Jun 2018 16:24:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472802 - in head/x11/xscreensaver: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/x11/xscreensaver: . files X-SVN-Commit-Revision: 472802 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 16:24:04 -0000 Author: zeising Date: Tue Jun 19 16:24:03 2018 New Revision: 472802 URL: https://svnweb.freebsd.org/changeset/ports/472802 Log: Fix build without the XFT option. PR: 224731 Reported by: ml@netfence.it Added: head/x11/xscreensaver/files/patch-utils_xft.c (contents, props changed) Modified: head/x11/xscreensaver/Makefile Modified: head/x11/xscreensaver/Makefile ============================================================================== --- head/x11/xscreensaver/Makefile Tue Jun 19 15:51:16 2018 (r472801) +++ head/x11/xscreensaver/Makefile Tue Jun 19 16:24:03 2018 (r472802) @@ -3,7 +3,7 @@ PORTNAME= xscreensaver PORTVERSION= 5.39 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ Added: head/x11/xscreensaver/files/patch-utils_xft.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xscreensaver/files/patch-utils_xft.c Tue Jun 19 16:24:03 2018 (r472802) @@ -0,0 +1,21 @@ +--- utils/xft.c.orig 2018-06-17 08:45:55 UTC ++++ utils/xft.c +@@ -198,12 +198,12 @@ XftColorAllocValue (Display *dpy, + int green_shift, green_len; + int blue_shift, blue_len; + +- red_shift = maskbase (visual->rgba_masks[0]); +- red_len = masklen (visual->rgba_masks[0]); +- green_shift = maskbase (visual->rgba_masks[1]); +- green_len = masklen (visual->rgba_masks[1]); +- blue_shift = maskbase (visual->rgba_masks[2]); +- blue_len = masklen (visual->rgba_masks[2]); ++ red_shift = maskbase (visual->red_mask); ++ red_len = masklen (visual->red_mask); ++ green_shift = maskbase (visual->green_mask); ++ green_len = masklen (visual->green_mask); ++ blue_shift = maskbase (visual->blue_mask); ++ blue_len = masklen (visual->blue_mask); + result->pixel = (((color->red >> (16 - red_len)) << red_shift) | + ((color->green >> (16 - green_len)) << green_shift) | + ((color->blue >> (16 - blue_len)) << blue_shift)); From owner-svn-ports-head@freebsd.org Tue Jun 19 16:49:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AB001025C4E; Tue, 19 Jun 2018 16:49:29 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E05926A5F7; Tue, 19 Jun 2018 16:49:28 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C25B51631F; Tue, 19 Jun 2018 16:49:28 +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 w5JGnS0u089373; Tue, 19 Jun 2018 16:49:28 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JGnScl089372; Tue, 19 Jun 2018 16:49:28 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201806191649.w5JGnScl089372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Tue, 19 Jun 2018 16:49:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472803 - head/devel/aws-sdk-php X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/devel/aws-sdk-php X-SVN-Commit-Revision: 472803 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 16:49:29 -0000 Author: garga Date: Tue Jun 19 16:49:28 2018 New Revision: 472803 URL: https://svnweb.freebsd.org/changeset/ports/472803 Log: Implement flavors to devel/aws-sdk-php Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/devel/aws-sdk-php/Makefile Modified: head/devel/aws-sdk-php/Makefile ============================================================================== --- head/devel/aws-sdk-php/Makefile Tue Jun 19 16:24:03 2018 (r472802) +++ head/devel/aws-sdk-php/Makefile Tue Jun 19 16:49:28 2018 (r472803) @@ -1,11 +1,12 @@ # $FreeBSD$ -PORTNAME= aws-sdk-php +PORTNAME= aws-sdk PORTVERSION= 3.29.2 CATEGORIES= devel MASTER_SITES= https://github.com/aws/${PORTNAME}/releases/download/${PORTVERSION}/ +PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTFILES= aws.zip -DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} +DIST_SUBDIR= ${PORTNAME}-php-${PORTVERSION} MAINTAINER= garga@FreeBSD.org COMMENT= PHP interface for Amazon Web Services (AWS) @@ -13,7 +14,7 @@ COMMENT= PHP interface for Amazon Web Services (AWS) LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md -USES= php zip +USES= php:flavors zip USE_PHP= curl NO_BUILD= yes NO_WRKSUBDIR= yes From owner-svn-ports-head@freebsd.org Tue Jun 19 16:51:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB4CB1025EB7; Tue, 19 Jun 2018 16:51:43 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D9BF6A90A; Tue, 19 Jun 2018 16:51:43 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4067E16485; Tue, 19 Jun 2018 16:51:43 +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 w5JGphRq091768; Tue, 19 Jun 2018 16:51:43 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JGphE2091767; Tue, 19 Jun 2018 16:51:43 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201806191651.w5JGphE2091767@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Tue, 19 Jun 2018 16:51:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472804 - head/devel/aws-sdk-php X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/devel/aws-sdk-php X-SVN-Commit-Revision: 472804 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 16:51:43 -0000 Author: garga Date: Tue Jun 19 16:51:42 2018 New Revision: 472804 URL: https://svnweb.freebsd.org/changeset/ports/472804 Log: Fix MASTER_SITES Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/devel/aws-sdk-php/Makefile Modified: head/devel/aws-sdk-php/Makefile ============================================================================== --- head/devel/aws-sdk-php/Makefile Tue Jun 19 16:49:28 2018 (r472803) +++ head/devel/aws-sdk-php/Makefile Tue Jun 19 16:51:42 2018 (r472804) @@ -3,7 +3,7 @@ PORTNAME= aws-sdk PORTVERSION= 3.29.2 CATEGORIES= devel -MASTER_SITES= https://github.com/aws/${PORTNAME}/releases/download/${PORTVERSION}/ +MASTER_SITES= https://github.com/aws/${PORTNAME}-php/releases/download/${PORTVERSION}/ PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTFILES= aws.zip DIST_SUBDIR= ${PORTNAME}-php-${PORTVERSION} From owner-svn-ports-head@freebsd.org Tue Jun 19 16:53:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 421681025FA6; Tue, 19 Jun 2018 16:53:36 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA7B36AAA7; Tue, 19 Jun 2018 16:53:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8FB5164C4; Tue, 19 Jun 2018 16:53:35 +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 w5JGrZwq094193; Tue, 19 Jun 2018 16:53:35 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JGrZWU094190; Tue, 19 Jun 2018 16:53:35 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201806191653.w5JGrZWU094190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Tue, 19 Jun 2018 16:53:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472805 - head/devel/aws-sdk-php X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/devel/aws-sdk-php X-SVN-Commit-Revision: 472805 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 16:53:36 -0000 Author: garga Date: Tue Jun 19 16:53:34 2018 New Revision: 472805 URL: https://svnweb.freebsd.org/changeset/ports/472805 Log: Update devel/aws-sdk-php to 3.61.8 Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/devel/aws-sdk-php/Makefile head/devel/aws-sdk-php/distinfo head/devel/aws-sdk-php/pkg-plist Modified: head/devel/aws-sdk-php/Makefile ============================================================================== --- head/devel/aws-sdk-php/Makefile Tue Jun 19 16:51:42 2018 (r472804) +++ head/devel/aws-sdk-php/Makefile Tue Jun 19 16:53:34 2018 (r472805) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -PORTVERSION= 3.29.2 +PORTVERSION= 3.61.8 CATEGORIES= devel MASTER_SITES= https://github.com/aws/${PORTNAME}-php/releases/download/${PORTVERSION}/ PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} Modified: head/devel/aws-sdk-php/distinfo ============================================================================== --- head/devel/aws-sdk-php/distinfo Tue Jun 19 16:51:42 2018 (r472804) +++ head/devel/aws-sdk-php/distinfo Tue Jun 19 16:53:34 2018 (r472805) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497104847 -SHA256 (aws-sdk-php-3.29.2/aws.zip) = 878f1f9f0372a968500e7b6bbe526e80738d16191cda4d7dfdf012a6c83fbb7a -SIZE (aws-sdk-php-3.29.2/aws.zip) = 1245249 +TIMESTAMP = 1529427117 +SHA256 (aws-sdk-php-3.61.8/aws.zip) = 5cbce30371f9bbebc4c70f8164ba4b165f6432187e3c8c97085147cb886c5e0c +SIZE (aws-sdk-php-3.61.8/aws.zip) = 1662708 Modified: head/devel/aws-sdk-php/pkg-plist ============================================================================== --- head/devel/aws-sdk-php/pkg-plist Tue Jun 19 16:51:42 2018 (r472804) +++ head/devel/aws-sdk-php/pkg-plist Tue Jun 19 16:53:34 2018 (r472805) @@ -1,5 +1,9 @@ +%%WWWDIR%%/Aws/ACMPCA/ACMPCAClient.php +%%WWWDIR%%/Aws/ACMPCA/Exception/ACMPCAException.php %%WWWDIR%%/Aws/Acm/AcmClient.php %%WWWDIR%%/Aws/Acm/Exception/AcmException.php +%%WWWDIR%%/Aws/AlexaForBusiness/AlexaForBusinessClient.php +%%WWWDIR%%/Aws/AlexaForBusiness/Exception/AlexaForBusinessException.php %%WWWDIR%%/Aws/Api/AbstractModel.php %%WWWDIR%%/Aws/Api/ApiProvider.php %%WWWDIR%%/Aws/Api/DateTimeResult.php @@ -39,6 +43,8 @@ %%WWWDIR%%/Aws/Api/Validator.php %%WWWDIR%%/Aws/ApiGateway/ApiGatewayClient.php %%WWWDIR%%/Aws/ApiGateway/Exception/ApiGatewayException.php +%%WWWDIR%%/Aws/AppSync/AppSyncClient.php +%%WWWDIR%%/Aws/AppSync/Exception/AppSyncException.php %%WWWDIR%%/Aws/ApplicationAutoScaling/ApplicationAutoScalingClient.php %%WWWDIR%%/Aws/ApplicationAutoScaling/Exception/ApplicationAutoScalingException.php %%WWWDIR%%/Aws/ApplicationDiscoveryService/ApplicationDiscoveryServiceClient.php @@ -49,6 +55,8 @@ %%WWWDIR%%/Aws/Athena/Exception/AthenaException.php %%WWWDIR%%/Aws/AutoScaling/AutoScalingClient.php %%WWWDIR%%/Aws/AutoScaling/Exception/AutoScalingException.php +%%WWWDIR%%/Aws/AutoScalingPlans/AutoScalingPlansClient.php +%%WWWDIR%%/Aws/AutoScalingPlans/Exception/AutoScalingPlansException.php %%WWWDIR%%/Aws/AwsClient.php %%WWWDIR%%/Aws/AwsClientInterface.php %%WWWDIR%%/Aws/AwsClientTrait.php @@ -58,6 +66,8 @@ %%WWWDIR%%/Aws/Budgets/Exception/BudgetsException.php %%WWWDIR%%/Aws/CacheInterface.php %%WWWDIR%%/Aws/ClientResolver.php +%%WWWDIR%%/Aws/Cloud9/Cloud9Client.php +%%WWWDIR%%/Aws/Cloud9/Exception/Cloud9Exception.php %%WWWDIR%%/Aws/CloudDirectory/CloudDirectoryClient.php %%WWWDIR%%/Aws/CloudDirectory/Exception/CloudDirectoryException.php %%WWWDIR%%/Aws/CloudFormation/CloudFormationClient.php @@ -67,6 +77,8 @@ %%WWWDIR%%/Aws/CloudFront/Exception/CloudFrontException.php %%WWWDIR%%/Aws/CloudFront/Signer.php %%WWWDIR%%/Aws/CloudFront/UrlSigner.php +%%WWWDIR%%/Aws/CloudHSMV2/CloudHSMV2Client.php +%%WWWDIR%%/Aws/CloudHSMV2/Exception/CloudHSMV2Exception.php %%WWWDIR%%/Aws/CloudHsm/CloudHsmClient.php %%WWWDIR%%/Aws/CloudHsm/Exception/CloudHsmException.php %%WWWDIR%%/Aws/CloudSearch/CloudSearchClient.php @@ -104,8 +116,14 @@ %%WWWDIR%%/Aws/Command.php %%WWWDIR%%/Aws/CommandInterface.php %%WWWDIR%%/Aws/CommandPool.php +%%WWWDIR%%/Aws/Comprehend/ComprehendClient.php +%%WWWDIR%%/Aws/Comprehend/Exception/ComprehendException.php %%WWWDIR%%/Aws/ConfigService/ConfigServiceClient.php %%WWWDIR%%/Aws/ConfigService/Exception/ConfigServiceException.php +%%WWWDIR%%/Aws/Connect/ConnectClient.php +%%WWWDIR%%/Aws/Connect/Exception/ConnectException.php +%%WWWDIR%%/Aws/CostExplorer/CostExplorerClient.php +%%WWWDIR%%/Aws/CostExplorer/Exception/CostExplorerException.php %%WWWDIR%%/Aws/CostandUsageReportService/CostandUsageReportServiceClient.php %%WWWDIR%%/Aws/CostandUsageReportService/Exception/CostandUsageReportServiceException.php %%WWWDIR%%/Aws/Credentials/AssumeRoleCredentialProvider.php @@ -114,6 +132,23 @@ %%WWWDIR%%/Aws/Credentials/CredentialsInterface.php %%WWWDIR%%/Aws/Credentials/EcsCredentialProvider.php %%WWWDIR%%/Aws/Credentials/InstanceProfileProvider.php +%%WWWDIR%%/Aws/Crypto/AbstractCryptoClient.php +%%WWWDIR%%/Aws/Crypto/AesDecryptingStream.php +%%WWWDIR%%/Aws/Crypto/AesEncryptingStream.php +%%WWWDIR%%/Aws/Crypto/AesGcmDecryptingStream.php +%%WWWDIR%%/Aws/Crypto/AesGcmEncryptingStream.php +%%WWWDIR%%/Aws/Crypto/AesStreamInterface.php +%%WWWDIR%%/Aws/Crypto/Cipher/Cbc.php +%%WWWDIR%%/Aws/Crypto/Cipher/CipherBuilderTrait.php +%%WWWDIR%%/Aws/Crypto/Cipher/CipherMethod.php +%%WWWDIR%%/Aws/Crypto/DecryptionTrait.php +%%WWWDIR%%/Aws/Crypto/EncryptionTrait.php +%%WWWDIR%%/Aws/Crypto/KmsMaterialsProvider.php +%%WWWDIR%%/Aws/Crypto/MaterialsProvider.php +%%WWWDIR%%/Aws/Crypto/MetadataEnvelope.php +%%WWWDIR%%/Aws/Crypto/MetadataStrategyInterface.php +%%WWWDIR%%/Aws/DAX/DAXClient.php +%%WWWDIR%%/Aws/DAX/Exception/DAXException.php %%WWWDIR%%/Aws/DataPipeline/DataPipelineClient.php %%WWWDIR%%/Aws/DataPipeline/Exception/DataPipelineException.php %%WWWDIR%%/Aws/DatabaseMigrationService/DatabaseMigrationServiceClient.php @@ -138,6 +173,8 @@ %%WWWDIR%%/Aws/DynamoDb/WriteRequestBatch.php %%WWWDIR%%/Aws/DynamoDbStreams/DynamoDbStreamsClient.php %%WWWDIR%%/Aws/DynamoDbStreams/Exception/DynamoDbStreamsException.php +%%WWWDIR%%/Aws/EKS/EKSClient.php +%%WWWDIR%%/Aws/EKS/Exception/EKSException.php %%WWWDIR%%/Aws/Ec2/Ec2Client.php %%WWWDIR%%/Aws/Ec2/Exception/Ec2Exception.php %%WWWDIR%%/Aws/Ecr/EcrClient.php @@ -172,6 +209,8 @@ %%WWWDIR%%/Aws/Exception/UnresolvedApiException.php %%WWWDIR%%/Aws/Exception/UnresolvedEndpointException.php %%WWWDIR%%/Aws/Exception/UnresolvedSignatureException.php +%%WWWDIR%%/Aws/FMS/Exception/FMSException.php +%%WWWDIR%%/Aws/FMS/FMSClient.php %%WWWDIR%%/Aws/Firehose/Exception/FirehoseException.php %%WWWDIR%%/Aws/Firehose/FirehoseClient.php %%WWWDIR%%/Aws/GameLift/Exception/GameLiftException.php @@ -180,8 +219,12 @@ %%WWWDIR%%/Aws/Glacier/GlacierClient.php %%WWWDIR%%/Aws/Glacier/MultipartUploader.php %%WWWDIR%%/Aws/Glacier/TreeHash.php +%%WWWDIR%%/Aws/Glue/Exception/GlueException.php +%%WWWDIR%%/Aws/Glue/GlueClient.php %%WWWDIR%%/Aws/Greengrass/Exception/GreengrassException.php %%WWWDIR%%/Aws/Greengrass/GreengrassClient.php +%%WWWDIR%%/Aws/GuardDuty/Exception/GuardDutyException.php +%%WWWDIR%%/Aws/GuardDuty/GuardDutyClient.php %%WWWDIR%%/Aws/Handler/GuzzleV5/GuzzleHandler.php %%WWWDIR%%/Aws/Handler/GuzzleV5/GuzzleStream.php %%WWWDIR%%/Aws/Handler/GuzzleV5/PsrStream.php @@ -200,6 +243,14 @@ %%WWWDIR%%/Aws/ImportExport/ImportExportClient.php %%WWWDIR%%/Aws/Inspector/Exception/InspectorException.php %%WWWDIR%%/Aws/Inspector/InspectorClient.php +%%WWWDIR%%/Aws/IoT1ClickDevicesService/Exception/IoT1ClickDevicesServiceException.php +%%WWWDIR%%/Aws/IoT1ClickDevicesService/IoT1ClickDevicesServiceClient.php +%%WWWDIR%%/Aws/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php +%%WWWDIR%%/Aws/IoT1ClickProjects/IoT1ClickProjectsClient.php +%%WWWDIR%%/Aws/IoTAnalytics/Exception/IoTAnalyticsException.php +%%WWWDIR%%/Aws/IoTAnalytics/IoTAnalyticsClient.php +%%WWWDIR%%/Aws/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php +%%WWWDIR%%/Aws/IoTJobsDataPlane/IoTJobsDataPlaneClient.php %%WWWDIR%%/Aws/Iot/Exception/IotException.php %%WWWDIR%%/Aws/Iot/IotClient.php %%WWWDIR%%/Aws/IotDataPlane/Exception/IotDataPlaneException.php @@ -209,6 +260,12 @@ %%WWWDIR%%/Aws/Kinesis/KinesisClient.php %%WWWDIR%%/Aws/KinesisAnalytics/Exception/KinesisAnalyticsException.php %%WWWDIR%%/Aws/KinesisAnalytics/KinesisAnalyticsClient.php +%%WWWDIR%%/Aws/KinesisVideo/Exception/KinesisVideoException.php +%%WWWDIR%%/Aws/KinesisVideo/KinesisVideoClient.php +%%WWWDIR%%/Aws/KinesisVideoArchivedMedia/Exception/KinesisVideoArchivedMediaException.php +%%WWWDIR%%/Aws/KinesisVideoArchivedMedia/KinesisVideoArchivedMediaClient.php +%%WWWDIR%%/Aws/KinesisVideoMedia/Exception/KinesisVideoMediaException.php +%%WWWDIR%%/Aws/KinesisVideoMedia/KinesisVideoMediaClient.php %%WWWDIR%%/Aws/Kms/Exception/KmsException.php %%WWWDIR%%/Aws/Kms/KmsClient.php %%WWWDIR%%/Aws/Lambda/Exception/LambdaException.php @@ -220,6 +277,8 @@ %%WWWDIR%%/Aws/Lightsail/Exception/LightsailException.php %%WWWDIR%%/Aws/Lightsail/LightsailClient.php %%WWWDIR%%/Aws/LruArrayCache.php +%%WWWDIR%%/Aws/MQ/Exception/MQException.php +%%WWWDIR%%/Aws/MQ/MQClient.php %%WWWDIR%%/Aws/MTurk/Exception/MTurkException.php %%WWWDIR%%/Aws/MTurk/MTurkClient.php %%WWWDIR%%/Aws/MachineLearning/Exception/MachineLearningException.php @@ -230,24 +289,46 @@ %%WWWDIR%%/Aws/MarketplaceEntitlementService/MarketplaceEntitlementServiceClient.php %%WWWDIR%%/Aws/MarketplaceMetering/Exception/MarketplaceMeteringException.php %%WWWDIR%%/Aws/MarketplaceMetering/MarketplaceMeteringClient.php +%%WWWDIR%%/Aws/MediaConvert/Exception/MediaConvertException.php +%%WWWDIR%%/Aws/MediaConvert/MediaConvertClient.php +%%WWWDIR%%/Aws/MediaLive/Exception/MediaLiveException.php +%%WWWDIR%%/Aws/MediaLive/MediaLiveClient.php +%%WWWDIR%%/Aws/MediaPackage/Exception/MediaPackageException.php +%%WWWDIR%%/Aws/MediaPackage/MediaPackageClient.php +%%WWWDIR%%/Aws/MediaStore/Exception/MediaStoreException.php +%%WWWDIR%%/Aws/MediaStore/MediaStoreClient.php +%%WWWDIR%%/Aws/MediaStoreData/Exception/MediaStoreDataException.php +%%WWWDIR%%/Aws/MediaStoreData/MediaStoreDataClient.php +%%WWWDIR%%/Aws/MediaTailor/Exception/MediaTailorException.php +%%WWWDIR%%/Aws/MediaTailor/MediaTailorClient.php %%WWWDIR%%/Aws/Middleware.php +%%WWWDIR%%/Aws/MigrationHub/Exception/MigrationHubException.php +%%WWWDIR%%/Aws/MigrationHub/MigrationHubClient.php +%%WWWDIR%%/Aws/Mobile/Exception/MobileException.php +%%WWWDIR%%/Aws/Mobile/MobileClient.php %%WWWDIR%%/Aws/MockHandler.php %%WWWDIR%%/Aws/MultiRegionClient.php %%WWWDIR%%/Aws/Multipart/AbstractUploadManager.php %%WWWDIR%%/Aws/Multipart/AbstractUploader.php %%WWWDIR%%/Aws/Multipart/UploadState.php +%%WWWDIR%%/Aws/Neptune/Exception/NeptuneException.php +%%WWWDIR%%/Aws/Neptune/NeptuneClient.php %%WWWDIR%%/Aws/OpsWorks/Exception/OpsWorksException.php %%WWWDIR%%/Aws/OpsWorks/OpsWorksClient.php %%WWWDIR%%/Aws/OpsWorksCM/Exception/OpsWorksCMException.php %%WWWDIR%%/Aws/OpsWorksCM/OpsWorksCMClient.php %%WWWDIR%%/Aws/Organizations/Exception/OrganizationsException.php %%WWWDIR%%/Aws/Organizations/OrganizationsClient.php +%%WWWDIR%%/Aws/PI/Exception/PIException.php +%%WWWDIR%%/Aws/PI/PIClient.php %%WWWDIR%%/Aws/PhpHash.php %%WWWDIR%%/Aws/Pinpoint/Exception/PinpointException.php %%WWWDIR%%/Aws/Pinpoint/PinpointClient.php %%WWWDIR%%/Aws/Polly/Exception/PollyException.php %%WWWDIR%%/Aws/Polly/PollyClient.php %%WWWDIR%%/Aws/PresignUrlMiddleware.php +%%WWWDIR%%/Aws/Pricing/Exception/PricingException.php +%%WWWDIR%%/Aws/Pricing/PricingClient.php %%WWWDIR%%/Aws/PsrCacheAdapter.php %%WWWDIR%%/Aws/Rds/AuthTokenGenerator.php %%WWWDIR%%/Aws/Rds/Exception/RdsException.php @@ -256,6 +337,8 @@ %%WWWDIR%%/Aws/Redshift/RedshiftClient.php %%WWWDIR%%/Aws/Rekognition/Exception/RekognitionException.php %%WWWDIR%%/Aws/Rekognition/RekognitionClient.php +%%WWWDIR%%/Aws/ResourceGroups/Exception/ResourceGroupsException.php +%%WWWDIR%%/Aws/ResourceGroups/ResourceGroupsClient.php %%WWWDIR%%/Aws/ResourceGroupsTaggingAPI/Exception/ResourceGroupsTaggingAPIException.php %%WWWDIR%%/Aws/ResourceGroupsTaggingAPI/ResourceGroupsTaggingAPIClient.php %%WWWDIR%%/Aws/Result.php @@ -270,6 +353,11 @@ %%WWWDIR%%/Aws/S3/ApplyChecksumMiddleware.php %%WWWDIR%%/Aws/S3/BatchDelete.php %%WWWDIR%%/Aws/S3/BucketEndpointMiddleware.php +%%WWWDIR%%/Aws/S3/Crypto/CryptoParamsTrait.php +%%WWWDIR%%/Aws/S3/Crypto/HeadersMetadataStrategy.php +%%WWWDIR%%/Aws/S3/Crypto/InstructionFileMetadataStrategy.php +%%WWWDIR%%/Aws/S3/Crypto/S3EncryptionClient.php +%%WWWDIR%%/Aws/S3/Crypto/S3EncryptionMultipartUploader.php %%WWWDIR%%/Aws/S3/Exception/DeleteMultipleObjectsException.php %%WWWDIR%%/Aws/S3/Exception/PermanentRedirectException.php %%WWWDIR%%/Aws/S3/Exception/S3Exception.php @@ -294,9 +382,19 @@ %%WWWDIR%%/Aws/S3/SSECMiddleware.php %%WWWDIR%%/Aws/S3/StreamWrapper.php %%WWWDIR%%/Aws/S3/Transfer.php +%%WWWDIR%%/Aws/SageMaker/Exception/SageMakerException.php +%%WWWDIR%%/Aws/SageMaker/SageMakerClient.php +%%WWWDIR%%/Aws/SageMakerRuntime/Exception/SageMakerRuntimeException.php +%%WWWDIR%%/Aws/SageMakerRuntime/SageMakerRuntimeClient.php %%WWWDIR%%/Aws/Sdk.php +%%WWWDIR%%/Aws/SecretsManager/Exception/SecretsManagerException.php +%%WWWDIR%%/Aws/SecretsManager/SecretsManagerClient.php +%%WWWDIR%%/Aws/ServerlessApplicationRepository/Exception/ServerlessApplicationRepositoryException.php +%%WWWDIR%%/Aws/ServerlessApplicationRepository/ServerlessApplicationRepositoryClient.php %%WWWDIR%%/Aws/ServiceCatalog/Exception/ServiceCatalogException.php %%WWWDIR%%/Aws/ServiceCatalog/ServiceCatalogClient.php +%%WWWDIR%%/Aws/ServiceDiscovery/Exception/ServiceDiscoveryException.php +%%WWWDIR%%/Aws/ServiceDiscovery/ServiceDiscoveryClient.php %%WWWDIR%%/Aws/Ses/Exception/SesException.php %%WWWDIR%%/Aws/Ses/SesClient.php %%WWWDIR%%/Aws/Sfn/Exception/SfnException.php @@ -331,6 +429,10 @@ %%WWWDIR%%/Aws/Swf/Exception/SwfException.php %%WWWDIR%%/Aws/Swf/SwfClient.php %%WWWDIR%%/Aws/TraceMiddleware.php +%%WWWDIR%%/Aws/TranscribeService/Exception/TranscribeServiceException.php +%%WWWDIR%%/Aws/TranscribeService/TranscribeServiceClient.php +%%WWWDIR%%/Aws/Translate/Exception/TranslateException.php +%%WWWDIR%%/Aws/Translate/TranslateClient.php %%WWWDIR%%/Aws/Waf/Exception/WafException.php %%WWWDIR%%/Aws/Waf/WafClient.php %%WWWDIR%%/Aws/WafRegional/Exception/WafRegionalException.php @@ -338,29 +440,47 @@ %%WWWDIR%%/Aws/Waiter.php %%WWWDIR%%/Aws/WorkDocs/Exception/WorkDocsException.php %%WWWDIR%%/Aws/WorkDocs/WorkDocsClient.php +%%WWWDIR%%/Aws/WorkMail/Exception/WorkMailException.php +%%WWWDIR%%/Aws/WorkMail/WorkMailClient.php %%WWWDIR%%/Aws/WorkSpaces/Exception/WorkSpacesException.php %%WWWDIR%%/Aws/WorkSpaces/WorkSpacesClient.php %%WWWDIR%%/Aws/WrappedHttpHandler.php %%WWWDIR%%/Aws/XRay/Exception/XRayException.php %%WWWDIR%%/Aws/XRay/XRayClient.php +%%WWWDIR%%/Aws/data/acm-pca/2017-08-22/api-2.json.php +%%WWWDIR%%/Aws/data/acm-pca/2017-08-22/paginators-1.json.php %%WWWDIR%%/Aws/data/acm/2015-12-08/api-2.json.php %%WWWDIR%%/Aws/data/acm/2015-12-08/paginators-1.json.php +%%WWWDIR%%/Aws/data/acm/2015-12-08/smoke.json.php +%%WWWDIR%%/Aws/data/alexaforbusiness/2017-11-09/api-2.json.php +%%WWWDIR%%/Aws/data/alexaforbusiness/2017-11-09/paginators-1.json.php %%WWWDIR%%/Aws/data/apigateway/2015-07-09/api-2.json.php %%WWWDIR%%/Aws/data/apigateway/2015-07-09/paginators-1.json.php +%%WWWDIR%%/Aws/data/apigateway/2015-07-09/smoke.json.php %%WWWDIR%%/Aws/data/application-autoscaling/2016-02-06/api-2.json.php %%WWWDIR%%/Aws/data/application-autoscaling/2016-02-06/paginators-1.json.php +%%WWWDIR%%/Aws/data/application-autoscaling/2016-02-06/smoke.json.php %%WWWDIR%%/Aws/data/appstream/2016-12-01/api-2.json.php %%WWWDIR%%/Aws/data/appstream/2016-12-01/paginators-1.json.php %%WWWDIR%%/Aws/data/appstream/2016-12-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/appsync/2017-07-25/api-2.json.php +%%WWWDIR%%/Aws/data/appsync/2017-07-25/paginators-1.json.php %%WWWDIR%%/Aws/data/athena/2017-05-18/api-2.json.php %%WWWDIR%%/Aws/data/athena/2017-05-18/paginators-1.json.php +%%WWWDIR%%/Aws/data/autoscaling-plans/2018-01-06/api-2.json.php +%%WWWDIR%%/Aws/data/autoscaling-plans/2018-01-06/paginators-1.json.php %%WWWDIR%%/Aws/data/autoscaling/2011-01-01/api-2.json.php %%WWWDIR%%/Aws/data/autoscaling/2011-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/autoscaling/2011-01-01/waiters-2.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/api-2.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/batch/2016-08-10/smoke.json.php %%WWWDIR%%/Aws/data/budgets/2016-10-20/api-2.json.php %%WWWDIR%%/Aws/data/budgets/2016-10-20/paginators-1.json.php +%%WWWDIR%%/Aws/data/ce/2017-10-25/api-2.json.php +%%WWWDIR%%/Aws/data/ce/2017-10-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/cloud9/2017-09-23/api-2.json.php +%%WWWDIR%%/Aws/data/cloud9/2017-09-23/paginators-1.json.php %%WWWDIR%%/Aws/data/clouddirectory/2016-05-10/api-2.json.php %%WWWDIR%%/Aws/data/clouddirectory/2016-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/cloudformation/2010-05-15/api-2.json.php @@ -394,7 +514,16 @@ %%WWWDIR%%/Aws/data/cloudfront/2017-03-25/paginators-1.json.php %%WWWDIR%%/Aws/data/cloudfront/2017-03-25/waiters-1.json.php %%WWWDIR%%/Aws/data/cloudfront/2017-03-25/waiters-2.json.php +%%WWWDIR%%/Aws/data/cloudfront/2017-10-30/api-2.json.php +%%WWWDIR%%/Aws/data/cloudfront/2017-10-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/cloudfront/2017-10-30/smoke.json.php +%%WWWDIR%%/Aws/data/cloudfront/2017-10-30/waiters-1.json.php +%%WWWDIR%%/Aws/data/cloudfront/2017-10-30/waiters-2.json.php %%WWWDIR%%/Aws/data/cloudhsm/2014-05-30/api-2.json.php +%%WWWDIR%%/Aws/data/cloudhsm/2014-05-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/cloudhsmv2/2017-04-28/api-2.json.php +%%WWWDIR%%/Aws/data/cloudhsmv2/2017-04-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/cloudhsmv2/2017-04-28/smoke.json.php %%WWWDIR%%/Aws/data/cloudsearch/2013-01-01/api-2.json.php %%WWWDIR%%/Aws/data/cloudsearch/2013-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/cloudsearchdomain/2013-01-01/api-2.json.php @@ -404,11 +533,14 @@ %%WWWDIR%%/Aws/data/codebuild/2016-10-06/paginators-1.json.php %%WWWDIR%%/Aws/data/codecommit/2015-04-13/api-2.json.php %%WWWDIR%%/Aws/data/codecommit/2015-04-13/paginators-1.json.php +%%WWWDIR%%/Aws/data/codecommit/2015-04-13/smoke.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/api-2.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/paginators-1.json.php +%%WWWDIR%%/Aws/data/codedeploy/2014-10-06/smoke.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/waiters-1.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/waiters-2.json.php %%WWWDIR%%/Aws/data/codepipeline/2015-07-09/api-2.json.php +%%WWWDIR%%/Aws/data/codepipeline/2015-07-09/paginators-1.json.php %%WWWDIR%%/Aws/data/codestar/2017-04-19/api-2.json.php %%WWWDIR%%/Aws/data/codestar/2017-04-19/paginators-1.json.php %%WWWDIR%%/Aws/data/cognito-identity/2014-06-30/api-2.json.php @@ -416,22 +548,33 @@ %%WWWDIR%%/Aws/data/cognito-idp/2016-04-18/api-2.json.php %%WWWDIR%%/Aws/data/cognito-idp/2016-04-18/paginators-1.json.php %%WWWDIR%%/Aws/data/cognito-sync/2014-06-30/api-2.json.php +%%WWWDIR%%/Aws/data/comprehend/2017-11-27/api-2.json.php +%%WWWDIR%%/Aws/data/comprehend/2017-11-27/paginators-1.json.php %%WWWDIR%%/Aws/data/config/2014-11-12/api-2.json.php %%WWWDIR%%/Aws/data/config/2014-11-12/paginators-1.json.php +%%WWWDIR%%/Aws/data/config/2014-11-12/smoke.json.php +%%WWWDIR%%/Aws/data/connect/2017-08-08/api-2.json.php +%%WWWDIR%%/Aws/data/connect/2017-08-08/paginators-1.json.php %%WWWDIR%%/Aws/data/cur/2017-01-06/api-2.json.php %%WWWDIR%%/Aws/data/cur/2017-01-06/paginators-1.json.php %%WWWDIR%%/Aws/data/data.iot/2015-05-28/api-2.json.php %%WWWDIR%%/Aws/data/datapipeline/2012-10-29/api-2.json.php %%WWWDIR%%/Aws/data/datapipeline/2012-10-29/paginators-1.json.php +%%WWWDIR%%/Aws/data/dax/2017-04-19/api-2.json.php +%%WWWDIR%%/Aws/data/dax/2017-04-19/paginators-1.json.php %%WWWDIR%%/Aws/data/devicefarm/2015-06-23/api-2.json.php %%WWWDIR%%/Aws/data/devicefarm/2015-06-23/paginators-1.json.php +%%WWWDIR%%/Aws/data/devicefarm/2015-06-23/smoke.json.php %%WWWDIR%%/Aws/data/directconnect/2012-10-25/api-2.json.php %%WWWDIR%%/Aws/data/directconnect/2012-10-25/paginators-1.json.php %%WWWDIR%%/Aws/data/discovery/2015-11-01/api-2.json.php %%WWWDIR%%/Aws/data/discovery/2015-11-01/paginators-1.json.php %%WWWDIR%%/Aws/data/dms/2016-01-01/api-2.json.php %%WWWDIR%%/Aws/data/dms/2016-01-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/dms/2016-01-01/smoke.json.php %%WWWDIR%%/Aws/data/ds/2015-04-16/api-2.json.php +%%WWWDIR%%/Aws/data/ds/2015-04-16/paginators-1.json.php +%%WWWDIR%%/Aws/data/ds/2015-04-16/smoke.json.php %%WWWDIR%%/Aws/data/dynamodb/2011-12-05/api-2.json.php %%WWWDIR%%/Aws/data/dynamodb/2011-12-05/paginators-1.json.php %%WWWDIR%%/Aws/data/dynamodb/2011-12-05/waiters-1.json.php @@ -453,6 +596,7 @@ %%WWWDIR%%/Aws/data/ec2/2016-09-15/waiters-2.json.php %%WWWDIR%%/Aws/data/ec2/2016-11-15/api-2.json.php %%WWWDIR%%/Aws/data/ec2/2016-11-15/paginators-1.json.php +%%WWWDIR%%/Aws/data/ec2/2016-11-15/smoke.json.php %%WWWDIR%%/Aws/data/ec2/2016-11-15/waiters-1.json.php %%WWWDIR%%/Aws/data/ec2/2016-11-15/waiters-2.json.php %%WWWDIR%%/Aws/data/ecr/2015-09-21/api-2.json.php @@ -460,17 +604,22 @@ %%WWWDIR%%/Aws/data/ecs/2014-11-13/api-2.json.php %%WWWDIR%%/Aws/data/ecs/2014-11-13/paginators-1.json.php %%WWWDIR%%/Aws/data/ecs/2014-11-13/waiters-2.json.php +%%WWWDIR%%/Aws/data/eks/2017-11-01/api-2.json.php +%%WWWDIR%%/Aws/data/eks/2017-11-01/paginators-1.json.php %%WWWDIR%%/Aws/data/elasticache/2015-02-02/api-2.json.php %%WWWDIR%%/Aws/data/elasticache/2015-02-02/paginators-1.json.php %%WWWDIR%%/Aws/data/elasticache/2015-02-02/waiters-2.json.php %%WWWDIR%%/Aws/data/elasticbeanstalk/2010-12-01/api-2.json.php %%WWWDIR%%/Aws/data/elasticbeanstalk/2010-12-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/elasticbeanstalk/2010-12-01/smoke.json.php %%WWWDIR%%/Aws/data/elasticfilesystem/2015-02-01/api-2.json.php +%%WWWDIR%%/Aws/data/elasticfilesystem/2015-02-01/paginators-1.json.php %%WWWDIR%%/Aws/data/elasticloadbalancing/2012-06-01/api-2.json.php %%WWWDIR%%/Aws/data/elasticloadbalancing/2012-06-01/paginators-1.json.php %%WWWDIR%%/Aws/data/elasticloadbalancing/2012-06-01/waiters-2.json.php %%WWWDIR%%/Aws/data/elasticloadbalancingv2/2015-12-01/api-2.json.php %%WWWDIR%%/Aws/data/elasticloadbalancingv2/2015-12-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/elasticloadbalancingv2/2015-12-01/smoke.json.php %%WWWDIR%%/Aws/data/elasticloadbalancingv2/2015-12-01/waiters-2.json.php %%WWWDIR%%/Aws/data/elasticmapreduce/2009-03-31/api-2.json.php %%WWWDIR%%/Aws/data/elasticmapreduce/2009-03-31/paginators-1.json.php @@ -481,42 +630,71 @@ %%WWWDIR%%/Aws/data/elastictranscoder/2012-09-25/waiters-2.json.php %%WWWDIR%%/Aws/data/email/2010-12-01/api-2.json.php %%WWWDIR%%/Aws/data/email/2010-12-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/email/2010-12-01/smoke.json.php +%%WWWDIR%%/Aws/data/email/2010-12-01/waiters-1.json.php %%WWWDIR%%/Aws/data/email/2010-12-01/waiters-2.json.php %%WWWDIR%%/Aws/data/endpoints.json.php %%WWWDIR%%/Aws/data/entitlement.marketplace/2017-01-11/api-2.json.php %%WWWDIR%%/Aws/data/entitlement.marketplace/2017-01-11/paginators-1.json.php %%WWWDIR%%/Aws/data/es/2015-01-01/api-2.json.php %%WWWDIR%%/Aws/data/es/2015-01-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/es/2015-01-01/smoke.json.php %%WWWDIR%%/Aws/data/events/2015-10-07/api-2.json.php %%WWWDIR%%/Aws/data/events/2015-10-07/paginators-1.json.php +%%WWWDIR%%/Aws/data/events/2015-10-07/smoke.json.php %%WWWDIR%%/Aws/data/firehose/2015-08-04/api-2.json.php +%%WWWDIR%%/Aws/data/firehose/2015-08-04/paginators-1.json.php +%%WWWDIR%%/Aws/data/firehose/2015-08-04/smoke.json.php +%%WWWDIR%%/Aws/data/fms/2018-01-01/api-2.json.php +%%WWWDIR%%/Aws/data/fms/2018-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/gamelift/2015-10-01/api-2.json.php %%WWWDIR%%/Aws/data/gamelift/2015-10-01/paginators-1.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/api-2.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/paginators-1.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/waiters-1.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/glue/2017-03-31/api-2.json.php +%%WWWDIR%%/Aws/data/glue/2017-03-31/paginators-1.json.php %%WWWDIR%%/Aws/data/greengrass/2017-06-07/api-2.json.php +%%WWWDIR%%/Aws/data/guardduty/2017-11-28/api-2.json.php +%%WWWDIR%%/Aws/data/guardduty/2017-11-28/paginators-1.json.php %%WWWDIR%%/Aws/data/health/2016-08-04/api-2.json.php %%WWWDIR%%/Aws/data/health/2016-08-04/paginators-1.json.php %%WWWDIR%%/Aws/data/iam/2010-05-08/api-2.json.php %%WWWDIR%%/Aws/data/iam/2010-05-08/paginators-1.json.php +%%WWWDIR%%/Aws/data/iam/2010-05-08/smoke.json.php %%WWWDIR%%/Aws/data/iam/2010-05-08/waiters-2.json.php %%WWWDIR%%/Aws/data/importexport/2010-06-01/api-2.json.php %%WWWDIR%%/Aws/data/importexport/2010-06-01/paginators-1.json.php %%WWWDIR%%/Aws/data/inspector/2016-02-16/api-2.json.php %%WWWDIR%%/Aws/data/inspector/2016-02-16/paginators-1.json.php +%%WWWDIR%%/Aws/data/iot-jobs-data/2017-09-29/api-2.json.php +%%WWWDIR%%/Aws/data/iot-jobs-data/2017-09-29/paginators-1.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/api-2.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/iot1click-devices/2018-05-14/api-2.json.php +%%WWWDIR%%/Aws/data/iot1click-projects/2018-05-14/api-2.json.php +%%WWWDIR%%/Aws/data/iot1click-projects/2018-05-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/iotanalytics/2017-11-27/api-2.json.php +%%WWWDIR%%/Aws/data/iotanalytics/2017-11-27/paginators-1.json.php +%%WWWDIR%%/Aws/data/kinesis-video-archived-media/2017-09-30/api-2.json.php +%%WWWDIR%%/Aws/data/kinesis-video-archived-media/2017-09-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/kinesis-video-media/2017-09-30/api-2.json.php +%%WWWDIR%%/Aws/data/kinesis-video-media/2017-09-30/paginators-1.json.php %%WWWDIR%%/Aws/data/kinesis/2013-12-02/api-2.json.php %%WWWDIR%%/Aws/data/kinesis/2013-12-02/paginators-1.json.php +%%WWWDIR%%/Aws/data/kinesis/2013-12-02/smoke.json.php %%WWWDIR%%/Aws/data/kinesis/2013-12-02/waiters-2.json.php %%WWWDIR%%/Aws/data/kinesisanalytics/2015-08-14/api-2.json.php %%WWWDIR%%/Aws/data/kinesisanalytics/2015-08-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/kinesisvideo/2017-09-30/api-2.json.php +%%WWWDIR%%/Aws/data/kinesisvideo/2017-09-30/paginators-1.json.php %%WWWDIR%%/Aws/data/kms/2014-11-01/api-2.json.php %%WWWDIR%%/Aws/data/kms/2014-11-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/kms/2014-11-01/smoke.json.php %%WWWDIR%%/Aws/data/lambda/2015-03-31/api-2.json.php %%WWWDIR%%/Aws/data/lambda/2015-03-31/paginators-1.json.php +%%WWWDIR%%/Aws/data/lambda/2015-03-31/smoke.json.php %%WWWDIR%%/Aws/data/lex-models/2017-04-19/api-2.json.php %%WWWDIR%%/Aws/data/lex-models/2017-04-19/paginators-1.json.php %%WWWDIR%%/Aws/data/lightsail/2016-11-28/api-2.json.php @@ -529,60 +707,110 @@ %%WWWDIR%%/Aws/data/manifest.json.php %%WWWDIR%%/Aws/data/marketplacecommerceanalytics/2015-07-01/api-2.json.php %%WWWDIR%%/Aws/data/marketplacecommerceanalytics/2015-07-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/mediaconvert/2017-08-29/api-2.json.php +%%WWWDIR%%/Aws/data/medialive/2017-10-14/api-2.json.php +%%WWWDIR%%/Aws/data/medialive/2017-10-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/mediapackage/2017-10-12/api-2.json.php +%%WWWDIR%%/Aws/data/mediapackage/2017-10-12/paginators-1.json.php +%%WWWDIR%%/Aws/data/mediastore-data/2017-09-01/api-2.json.php +%%WWWDIR%%/Aws/data/mediastore-data/2017-09-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/mediastore/2017-09-01/api-2.json.php +%%WWWDIR%%/Aws/data/mediastore/2017-09-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/mediatailor/2018-04-23/api-2.json.php +%%WWWDIR%%/Aws/data/mediatailor/2018-04-23/paginators-1.json.php %%WWWDIR%%/Aws/data/metering.marketplace/2016-01-14/api-2.json.php +%%WWWDIR%%/Aws/data/mgh/2017-05-31/api-2.json.php +%%WWWDIR%%/Aws/data/mgh/2017-05-31/paginators-1.json.php +%%WWWDIR%%/Aws/data/mobile/2017-07-01/api-2.json.php +%%WWWDIR%%/Aws/data/mobile/2017-07-01/paginators-1.json.php %%WWWDIR%%/Aws/data/monitoring/2010-08-01/api-2.json.php %%WWWDIR%%/Aws/data/monitoring/2010-08-01/paginators-1.json.php %%WWWDIR%%/Aws/data/monitoring/2010-08-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/mq/2017-11-27/api-2.json.php %%WWWDIR%%/Aws/data/mturk-requester/2017-01-17/api-2.json.php %%WWWDIR%%/Aws/data/mturk-requester/2017-01-17/paginators-1.json.php +%%WWWDIR%%/Aws/data/mturk-requester/2017-01-17/smoke.json.php +%%WWWDIR%%/Aws/data/neptune/2014-10-31/api-2.json.php +%%WWWDIR%%/Aws/data/neptune/2014-10-31/paginators-1.json.php +%%WWWDIR%%/Aws/data/neptune/2014-10-31/waiters-2.json.php %%WWWDIR%%/Aws/data/opsworks/2013-02-18/api-2.json.php %%WWWDIR%%/Aws/data/opsworks/2013-02-18/paginators-1.json.php +%%WWWDIR%%/Aws/data/opsworks/2013-02-18/smoke.json.php %%WWWDIR%%/Aws/data/opsworks/2013-02-18/waiters-2.json.php %%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/api-2.json.php %%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/waiters-2.json.php %%WWWDIR%%/Aws/data/organizations/2016-11-28/api-2.json.php %%WWWDIR%%/Aws/data/organizations/2016-11-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/pi/2018-02-27/api-2.json.php +%%WWWDIR%%/Aws/data/pi/2018-02-27/paginators-1.json.php %%WWWDIR%%/Aws/data/pinpoint/2016-12-01/api-2.json.php %%WWWDIR%%/Aws/data/polly/2016-06-10/api-2.json.php %%WWWDIR%%/Aws/data/polly/2016-06-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/polly/2016-06-10/smoke.json.php +%%WWWDIR%%/Aws/data/pricing/2017-10-15/api-2.json.php +%%WWWDIR%%/Aws/data/pricing/2017-10-15/paginators-1.json.php %%WWWDIR%%/Aws/data/rds/2014-09-01/api-2.json.php %%WWWDIR%%/Aws/data/rds/2014-09-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/rds/2014-09-01/smoke.json.php %%WWWDIR%%/Aws/data/rds/2014-10-31/api-2.json.php %%WWWDIR%%/Aws/data/rds/2014-10-31/paginators-1.json.php +%%WWWDIR%%/Aws/data/rds/2014-10-31/smoke.json.php %%WWWDIR%%/Aws/data/rds/2014-10-31/waiters-1.json.php %%WWWDIR%%/Aws/data/rds/2014-10-31/waiters-2.json.php %%WWWDIR%%/Aws/data/redshift/2012-12-01/api-2.json.php %%WWWDIR%%/Aws/data/redshift/2012-12-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/redshift/2012-12-01/smoke.json.php %%WWWDIR%%/Aws/data/redshift/2012-12-01/waiters-1.json.php %%WWWDIR%%/Aws/data/redshift/2012-12-01/waiters-2.json.php %%WWWDIR%%/Aws/data/rekognition/2016-06-27/api-2.json.php %%WWWDIR%%/Aws/data/rekognition/2016-06-27/paginators-1.json.php +%%WWWDIR%%/Aws/data/resource-groups/2017-11-27/api-2.json.php +%%WWWDIR%%/Aws/data/resource-groups/2017-11-27/paginators-1.json.php %%WWWDIR%%/Aws/data/resourcegroupstaggingapi/2017-01-26/api-2.json.php %%WWWDIR%%/Aws/data/resourcegroupstaggingapi/2017-01-26/paginators-1.json.php %%WWWDIR%%/Aws/data/route53/2013-04-01/api-2.json.php %%WWWDIR%%/Aws/data/route53/2013-04-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/route53/2013-04-01/smoke.json.php %%WWWDIR%%/Aws/data/route53/2013-04-01/waiters-2.json.php %%WWWDIR%%/Aws/data/route53domains/2014-05-15/api-2.json.php %%WWWDIR%%/Aws/data/route53domains/2014-05-15/paginators-1.json.php %%WWWDIR%%/Aws/data/runtime.lex/2016-11-28/api-2.json.php %%WWWDIR%%/Aws/data/runtime.lex/2016-11-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/runtime.sagemaker/2017-05-13/api-2.json.php +%%WWWDIR%%/Aws/data/runtime.sagemaker/2017-05-13/paginators-1.json.php %%WWWDIR%%/Aws/data/s3/2006-03-01/api-2.json.php %%WWWDIR%%/Aws/data/s3/2006-03-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/s3/2006-03-01/smoke.json.php %%WWWDIR%%/Aws/data/s3/2006-03-01/waiters-1.json.php %%WWWDIR%%/Aws/data/s3/2006-03-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/sagemaker/2017-07-24/api-2.json.php +%%WWWDIR%%/Aws/data/sagemaker/2017-07-24/paginators-1.json.php +%%WWWDIR%%/Aws/data/sagemaker/2017-07-24/waiters-2.json.php +%%WWWDIR%%/Aws/data/secretsmanager/2017-10-17/api-2.json.php +%%WWWDIR%%/Aws/data/secretsmanager/2017-10-17/paginators-1.json.php +%%WWWDIR%%/Aws/data/serverlessrepo/2017-09-08/api-2.json.php +%%WWWDIR%%/Aws/data/serverlessrepo/2017-09-08/paginators-1.json.php %%WWWDIR%%/Aws/data/servicecatalog/2015-12-10/api-2.json.php +%%WWWDIR%%/Aws/data/servicecatalog/2015-12-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/servicecatalog/2015-12-10/smoke.json.php +%%WWWDIR%%/Aws/data/servicediscovery/2017-03-14/api-2.json.php +%%WWWDIR%%/Aws/data/servicediscovery/2017-03-14/paginators-1.json.php %%WWWDIR%%/Aws/data/shield/2016-06-02/api-2.json.php +%%WWWDIR%%/Aws/data/shield/2016-06-02/paginators-1.json.php %%WWWDIR%%/Aws/data/sms/2016-10-24/api-2.json.php %%WWWDIR%%/Aws/data/sms/2016-10-24/paginators-1.json.php %%WWWDIR%%/Aws/data/snowball/2016-06-30/api-2.json.php %%WWWDIR%%/Aws/data/snowball/2016-06-30/paginators-1.json.php %%WWWDIR%%/Aws/data/sns/2010-03-31/api-2.json.php %%WWWDIR%%/Aws/data/sns/2010-03-31/paginators-1.json.php +%%WWWDIR%%/Aws/data/sns/2010-03-31/smoke.json.php %%WWWDIR%%/Aws/data/sqs/2012-11-05/api-2.json.php %%WWWDIR%%/Aws/data/sqs/2012-11-05/paginators-1.json.php %%WWWDIR%%/Aws/data/sqs/2012-11-05/waiters-2.json.php %%WWWDIR%%/Aws/data/ssm/2014-11-06/api-2.json.php %%WWWDIR%%/Aws/data/ssm/2014-11-06/paginators-1.json.php +%%WWWDIR%%/Aws/data/ssm/2014-11-06/smoke.json.php %%WWWDIR%%/Aws/data/states/2016-11-23/api-2.json.php %%WWWDIR%%/Aws/data/states/2016-11-23/paginators-1.json.php %%WWWDIR%%/Aws/data/storagegateway/2013-06-30/api-2.json.php @@ -591,19 +819,30 @@ %%WWWDIR%%/Aws/data/streams.dynamodb/2012-08-10/paginators-1.json.php %%WWWDIR%%/Aws/data/sts/2011-06-15/api-2.json.php %%WWWDIR%%/Aws/data/sts/2011-06-15/paginators-1.json.php +%%WWWDIR%%/Aws/data/sts/2011-06-15/smoke.json.php %%WWWDIR%%/Aws/data/support/2013-04-15/api-2.json.php %%WWWDIR%%/Aws/data/support/2013-04-15/paginators-1.json.php %%WWWDIR%%/Aws/data/swf/2012-01-25/api-2.json.php %%WWWDIR%%/Aws/data/swf/2012-01-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/transcribe/2017-10-26/api-2.json.php +%%WWWDIR%%/Aws/data/transcribe/2017-10-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/translate/2017-07-01/api-2.json.php +%%WWWDIR%%/Aws/data/translate/2017-07-01/paginators-1.json.php %%WWWDIR%%/Aws/data/waf-regional/2016-11-28/api-2.json.php %%WWWDIR%%/Aws/data/waf-regional/2016-11-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/waf-regional/2016-11-28/smoke.json.php %%WWWDIR%%/Aws/data/waf/2015-08-24/api-2.json.php %%WWWDIR%%/Aws/data/waf/2015-08-24/paginators-1.json.php +%%WWWDIR%%/Aws/data/waf/2015-08-24/smoke.json.php %%WWWDIR%%/Aws/data/workdocs/2016-05-01/api-2.json.php %%WWWDIR%%/Aws/data/workdocs/2016-05-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/workmail/2017-10-01/api-2.json.php +%%WWWDIR%%/Aws/data/workmail/2017-10-01/paginators-1.json.php %%WWWDIR%%/Aws/data/workspaces/2015-04-08/api-2.json.php %%WWWDIR%%/Aws/data/workspaces/2015-04-08/paginators-1.json.php +%%WWWDIR%%/Aws/data/workspaces/2015-04-08/smoke.json.php %%WWWDIR%%/Aws/data/xray/2016-04-12/api-2.json.php +%%WWWDIR%%/Aws/data/xray/2016-04-12/paginators-1.json.php %%WWWDIR%%/Aws/functions.php %%WWWDIR%%/CHANGELOG.md %%WWWDIR%%/GuzzleHttp/Client.php From owner-svn-ports-head@freebsd.org Tue Jun 19 17:00:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE961100069F; Tue, 19 Jun 2018 17:00:39 +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 6288A6AFD1; Tue, 19 Jun 2018 17:00:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 53E551A313; Tue, 19 Jun 2018 17:00:39 +0000 (UTC) From: Jan Beich To: Ruslan Bukin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472783 - head/Templates References: <201806191236.w5JCarwQ059758@repo.freebsd.org> Date: Tue, 19 Jun 2018 19:00:35 +0200 In-Reply-To: <201806191236.w5JCarwQ059758@repo.freebsd.org> (Ruslan Bukin's message of "Tue, 19 Jun 2018 12:36:53 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 17:00:39 -0000 Ruslan Bukin writes: > Author: br (src committer) > Date: Tue Jun 19 12:36:52 2018 > New Revision: 472783 > URL: https://svnweb.freebsd.org/changeset/ports/472783 > > Log: > Update config.guess and config.sub to the latest version. > > RISC-V machine added to config.sub allowing us to build > ports/packages for RISC-V. > > Sponsored by: DARPA, AFRL [...] > *:FreeBSD:*:*) > UNAME_PROCESSOR=`/usr/bin/uname -p` > - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` > + case "$UNAME_PROCESSOR" in > + amd64) > + UNAME_PROCESSOR=x86_64 ;; > + i386) > + UNAME_PROCESSOR=i586 ;; > + esac > + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" > exit ;; Did you check for fallout via exp-run? See also https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208440 $ sh Templates/config.guess i386-unknown-freebsd10.4 $ svn up Templates Updating 'Templates': U Templates/config.guess U Templates/config.sub Updated to revision 472804. $ sh Templates/config.guess i586-unknown-freebsd10.4 $ sh Templates/config.guess amd64-unknown-freebsd12.0 $ svn up Templates Updating 'Templates': U Templates/config.guess U Templates/config.sub Updated to revision 472804. $ sh Templates/config.guess x86_64-unknown-freebsd12.0 From owner-svn-ports-head@freebsd.org Tue Jun 19 17:22:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B57491001C7E; Tue, 19 Jun 2018 17:22:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A3D56C002; Tue, 19 Jun 2018 17:22:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4AF20169FD; Tue, 19 Jun 2018 17:22:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JHMF5l009139; Tue, 19 Jun 2018 17:22:15 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JHMFRa009138; Tue, 19 Jun 2018 17:22:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806191722.w5JHMFRa009138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 19 Jun 2018 17:22:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472806 - head/Templates X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/Templates X-SVN-Commit-Revision: 472806 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 17:22:16 -0000 Author: antoine Date: Tue Jun 19 17:22:14 2018 New Revision: 472806 URL: https://svnweb.freebsd.org/changeset/ports/472806 Log: Revert r472783, no exp-run and no approval = no cookie With hat: portmgr Modified: head/Templates/config.guess head/Templates/config.sub Modified: head/Templates/config.guess ============================================================================== --- head/Templates/config.guess Tue Jun 19 16:53:34 2018 (r472805) +++ head/Templates/config.guess Tue Jun 19 17:22:14 2018 (r472806) @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2018 Free Software Foundation, Inc. +# Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2018-05-19' +timestamp='2015-03-04' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ timestamp='2018-05-19' # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see . +# along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -27,7 +27,7 @@ timestamp='2018-05-19' # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches to . @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Options: +Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2018 Free Software Foundation, Inc. +Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -106,10 +106,10 @@ trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in - ,,) echo "int x;" > "$dummy.c" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do - if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; @@ -132,14 +132,14 @@ UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEAS UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "$UNAME_SYSTEM" in +case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu - eval "$set_cc_for_build" - cat <<-EOF > "$dummy.c" + eval $set_cc_for_build + cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc @@ -149,20 +149,13 @@ Linux|GNU|GNU/*) LIBC=gnu #endif EOF - eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" - - # If ldd exists, use it to detect musl libc. - if command -v ldd >/dev/null && \ - ldd --version 2>&1 | grep -q ^musl - then - LIBC=musl - fi + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac # Note: order is significant - the case branches are not exclusive. -case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, @@ -176,30 +169,27 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ - "/sbin/$sysctl" 2>/dev/null || \ - "/usr/sbin/$sysctl" 2>/dev/null || \ + /sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || \ echo unknown)` - case "$UNAME_MACHINE_ARCH" in + case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) - arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` - endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` - machine="${arch}${endian}"-unknown + arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` + machine=${arch}${endian}-unknown ;; - *) machine="$UNAME_MACHINE_ARCH"-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched - # to ELF recently (or will in the future) and ABI. - case "$UNAME_MACHINE_ARCH" in - earm*) - os=netbsdelf - ;; - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval "$set_cc_for_build" + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then @@ -215,10 +205,10 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA ;; esac # Determine ABI tags. - case "$UNAME_MACHINE_ARCH" in + case "${UNAME_MACHINE_ARCH}" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' - abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` + abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` ;; esac # The OS release @@ -226,55 +216,39 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. - case "$UNAME_VERSION" in + case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) - release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "$machine-${os}${release}${abi-}" + echo "${machine}-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; - *:LibertyBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" - exit ;; - *:MidnightBSD:*:*) - echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" - exit ;; *:ekkoBSD:*:*) - echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) - echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd"$UNAME_RELEASE" + echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) - echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; - *:Sortix:*:*) - echo "$UNAME_MACHINE"-unknown-sortix - exit ;; - *:Redox:*:*) - echo "$UNAME_MACHINE"-unknown-redox - exit ;; - mips:OSF1:*.*) - echo mips-dec-osf1 - exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -291,54 +265,63 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") - UNAME_MACHINE=alpha ;; + UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") - UNAME_MACHINE=alpha ;; + UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") - UNAME_MACHINE=alpha ;; + UNAME_MACHINE="alpha" ;; "EV5 (21164)") - UNAME_MACHINE=alphaev5 ;; + UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") - UNAME_MACHINE=alphaev56 ;; + UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") - UNAME_MACHINE=alphapca56 ;; + UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") - UNAME_MACHINE=alphapca57 ;; + UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") - UNAME_MACHINE=alphaev6 ;; + UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") - UNAME_MACHINE=alphaev67 ;; + UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") - UNAME_MACHINE=alphaev68 ;; + UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") - UNAME_MACHINE=alphaev68 ;; + UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") - UNAME_MACHINE=alphaev68 ;; + UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") - UNAME_MACHINE=alphaev69 ;; + UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") - UNAME_MACHINE=alphaev7 ;; + UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") - UNAME_MACHINE=alphaev79 ;; + UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) - echo "$UNAME_MACHINE"-unknown-amigaos + echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) - echo "$UNAME_MACHINE"-unknown-morphos + echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition @@ -350,7 +333,7 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix"$UNAME_RELEASE" + echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos @@ -377,38 +360,38 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) - echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux"$UNAME_RELEASE" + echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - eval "$set_cc_for_build" - SUN_ARCH=i386 + eval $set_cc_for_build + SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. - if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then - SUN_ARCH=x86_64 + SUN_ARCH="x86_64" fi fi - echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in @@ -417,25 +400,25 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos"$UNAME_RELEASE" + echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) - echo m68k-sun-sunos"$UNAME_RELEASE" + echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) - echo sparc-sun-sunos"$UNAME_RELEASE" + echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos"$UNAME_RELEASE" + echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not @@ -446,44 +429,44 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" + echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" + echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" + echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint"$UNAME_RELEASE" + echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint"$UNAME_RELEASE" + echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint"$UNAME_RELEASE" + echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) - echo m68k-apple-machten"$UNAME_RELEASE" + echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) - echo powerpc-apple-machten"$UNAME_RELEASE" + echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix"$UNAME_RELEASE" + echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix"$UNAME_RELEASE" + echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix"$UNAME_RELEASE" + echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) - eval "$set_cc_for_build" - sed 's/^ //' << EOF > "$dummy.c" + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { @@ -492,23 +475,23 @@ case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNA #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF - $CC_FOR_BUILD -o "$dummy" "$dummy.c" && - dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`"$dummy" "$dummyarg"` && + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos"$UNAME_RELEASE" + echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax @@ -534,17 +517,17 @@ EOF AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then - if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ - [ "$TARGET_BINARY_INTERFACE"x = x ] + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] then - echo m88k-dg-dgux"$UNAME_RELEASE" + echo m88k-dg-dgux${UNAME_RELEASE} else - echo m88k-dg-dguxbcs"$UNAME_RELEASE" + echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else - echo i586-dg-dgux"$UNAME_RELEASE" + echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) @@ -561,7 +544,7 @@ EOF echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) - echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id @@ -573,14 +556,14 @@ EOF if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi - echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval "$set_cc_for_build" - sed 's/^ //' << EOF > "$dummy.c" + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c #include main() @@ -591,7 +574,7 @@ EOF exit(0); } EOF - if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else @@ -605,7 +588,7 @@ EOF exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc @@ -614,18 +597,18 @@ EOF IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi - echo "$IBM_ARCH"-ibm-aix"$IBM_REV" + echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; - ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) + ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx @@ -640,28 +623,28 @@ EOF echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` - case "$UNAME_MACHINE" in - 9000/31?) HP_ARCH=m68000 ;; - 9000/[34]??) HP_ARCH=m68k ;; + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "$sc_cpu_version" in - 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 - 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 - case "$sc_kernel_bits" in - 32) HP_ARCH=hppa2.0n ;; - 64) HP_ARCH=hppa2.0w ;; - '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi - if [ "$HP_ARCH" = "" ]; then - eval "$set_cc_for_build" - sed 's/^ //' << EOF > "$dummy.c" + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include @@ -694,13 +677,13 @@ EOF exit (0); } EOF - (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac - if [ "$HP_ARCH" = hppa2.0w ] + if [ ${HP_ARCH} = "hppa2.0w" ] then - eval "$set_cc_for_build" + eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler @@ -711,23 +694,23 @@ EOF # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 - if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then - HP_ARCH=hppa2.0w + HP_ARCH="hppa2.0w" else - HP_ARCH=hppa64 + HP_ARCH="hppa64" fi fi - echo "$HP_ARCH"-hp-hpux"$HPUX_REV" + echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) - HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux"$HPUX_REV" + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) - eval "$set_cc_for_build" - sed 's/^ //' << EOF > "$dummy.c" + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c #include int main () @@ -752,11 +735,11 @@ EOF exit (0); } EOF - $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) @@ -765,7 +748,7 @@ EOF *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) @@ -773,9 +756,9 @@ EOF exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then - echo "$UNAME_MACHINE"-unknown-osf1mk + echo ${UNAME_MACHINE}-unknown-osf1mk else - echo "$UNAME_MACHINE"-unknown-osf1 + echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) @@ -800,109 +783,122 @@ EOF echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) - echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` - FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` - FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi"$UNAME_RELEASE" + echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) - echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` - case "$UNAME_PROCESSOR" in - amd64) - UNAME_PROCESSOR=x86_64 ;; - i386) - UNAME_PROCESSOR=i586 ;; - esac - echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; i*:CYGWIN*:*) - echo "$UNAME_MACHINE"-pc-cygwin + echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) - echo "$UNAME_MACHINE"-pc-mingw64 + echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) - echo "$UNAME_MACHINE"-pc-mingw32 + echo ${UNAME_MACHINE}-pc-mingw32 exit ;; *:MSYS*:*) - echo "$UNAME_MACHINE"-pc-msys + echo ${UNAME_MACHINE}-pc-msys exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; i*:PW*:*) - echo "$UNAME_MACHINE"-pc-pw32 + echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) - case "$UNAME_MACHINE" in + case ${UNAME_MACHINE} in x86) - echo i586-pc-interix"$UNAME_RELEASE" + echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix"$UNAME_RELEASE" + echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) - echo ia64-unknown-interix"$UNAME_RELEASE" + echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; i*:UWIN*:*) - echo "$UNAME_MACHINE"-pc-uwin + echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system - echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) - echo "$UNAME_MACHINE"-pc-minix + echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -915,64 +911,61 @@ EOF EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC=gnulibc1 ; fi - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) - eval "$set_cc_for_build" + eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) - echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) - echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; e2k:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; frv:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; - k1om:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; m32r*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) - eval "$set_cc_for_build" - sed 's/^ //' << EOF > "$dummy.c" + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el @@ -986,70 +979,64 @@ EOF #endif #endif EOF - eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" - test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; - mips64el:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-"$LIBC" + echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) - echo sparc-unknown-linux-"$LIBC" + echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-"$LIBC" + echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; - PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; - *) echo hppa-unknown-linux-"$LIBC" ;; + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-"$LIBC" + echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-"$LIBC" + echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-"$LIBC" + echo powerpc64le-unknown-linux-${LIBC} *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Tue Jun 19 17:31:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E62C100267A; Tue, 19 Jun 2018 17:31:54 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D44C16C836; Tue, 19 Jun 2018 17:31:53 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9C3E016B96; Tue, 19 Jun 2018 17:31:53 +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 w5JHVrBe011240; Tue, 19 Jun 2018 17:31:53 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JHVqnm011235; Tue, 19 Jun 2018 17:31:52 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806191731.w5JHVqnm011235@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 17:31:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472807 - in head/devel: . p5-Test-UNIXSock X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Test-UNIXSock X-SVN-Commit-Revision: 472807 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 17:31:54 -0000 Author: pi Date: Tue Jun 19 17:31:52 2018 New Revision: 472807 URL: https://svnweb.freebsd.org/changeset/ports/472807 Log: New port: devel/p5-Test-UNIXSock Test utility to test UNIX domain socket server programs. It is based on Test::TCP. WWW: https://metacpan.org/pod/Test::UNIXSock PR: 229085 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Test-UNIXSock/ head/devel/p5-Test-UNIXSock/Makefile (contents, props changed) head/devel/p5-Test-UNIXSock/distinfo (contents, props changed) head/devel/p5-Test-UNIXSock/pkg-descr (contents, props changed) head/devel/p5-Test-UNIXSock/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 19 17:22:14 2018 (r472806) +++ head/devel/Makefile Tue Jun 19 17:31:52 2018 (r472807) @@ -3611,6 +3611,7 @@ SUBDIR += p5-Test-Timer SUBDIR += p5-Test-TinyMocker SUBDIR += p5-Test-Trap + SUBDIR += p5-Test-UNIXSock SUBDIR += p5-Test-Unit SUBDIR += p5-Test-UseAllModules SUBDIR += p5-Test-Version Added: head/devel/p5-Test-UNIXSock/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-UNIXSock/Makefile Tue Jun 19 17:31:52 2018 (r472807) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= Test-UNIXSock +PORTVERSION= 0.2 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Testing UNIX domain socket servers + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Module-Build-Tiny>=0.035:devel/p5-Module-Build-Tiny +RUN_DEPENDS= p5-Test-TCP>=0:devel/p5-Test-TCP \ + p5-Test-SharedFork>=0.29:devel/p5-Test-SharedFork + +USES= perl5 +USE_PERL5= modbuildtiny + +.include Added: head/devel/p5-Test-UNIXSock/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-UNIXSock/distinfo Tue Jun 19 17:31:52 2018 (r472807) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529227845 +SHA256 (Test-UNIXSock-0.2.tar.gz) = f604e9b596542eab319366127f272c57c63c310099209c447b4743d1352b69a2 +SIZE (Test-UNIXSock-0.2.tar.gz) = 11916 Added: head/devel/p5-Test-UNIXSock/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-UNIXSock/pkg-descr Tue Jun 19 17:31:52 2018 (r472807) @@ -0,0 +1,4 @@ +Test utility to test UNIX domain socket server programs. +It is based on Test::TCP. + +WWW: https://metacpan.org/pod/Test::UNIXSock Added: head/devel/p5-Test-UNIXSock/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-UNIXSock/pkg-plist Tue Jun 19 17:31:52 2018 (r472807) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Test/UNIXSock.pm +%%PERL5_MAN3%%/Test::UNIXSock.3.gz From owner-svn-ports-head@freebsd.org Tue Jun 19 17:56:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12A6B1003EDA; Tue, 19 Jun 2018 17:56:21 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B3B826DA3D; Tue, 19 Jun 2018 17:56:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9606A16F2B; Tue, 19 Jun 2018 17:56:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JHuKKE025812; Tue, 19 Jun 2018 17:56:20 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JHuJiF025807; Tue, 19 Jun 2018 17:56:19 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191756.w5JHuJiF025807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 17:56:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472808 - in head/math/openlibm: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/math/openlibm: . files X-SVN-Commit-Revision: 472808 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 17:56:21 -0000 Author: swills Date: Tue Jun 19 17:56:19 2018 New Revision: 472808 URL: https://svnweb.freebsd.org/changeset/ports/472808 Log: math/openlibm: update to 0.6.0 PR: 229134 Submitted by: Iblis Lin (maintainer) Modified: head/math/openlibm/Makefile (contents, props changed) head/math/openlibm/distinfo (contents, props changed) head/math/openlibm/files/patch-Make.inc (contents, props changed) head/math/openlibm/files/patch-Makefile (contents, props changed) head/math/openlibm/pkg-plist (contents, props changed) Modified: head/math/openlibm/Makefile ============================================================================== --- head/math/openlibm/Makefile Tue Jun 19 17:31:52 2018 (r472807) +++ head/math/openlibm/Makefile Tue Jun 19 17:56:19 2018 (r472808) @@ -3,7 +3,7 @@ PORTNAME= openlibm DISTVERSIONPREFIX= v -DISTVERSION= 0.5.5 +DISTVERSION= 0.6.0 CATEGORIES= math MASTER_SITES= GH @@ -23,7 +23,7 @@ BROKEN_powerpc64= fails to build: gmake: clang: Comman USES= gmake USE_GITHUB= yes -GH_ACCOUNT= JuliaLang +GH_ACCOUNT= JuliaMath GH_PROJECT= openlibm USE_LDCONFIG= yes Modified: head/math/openlibm/distinfo ============================================================================== --- head/math/openlibm/distinfo Tue Jun 19 17:31:52 2018 (r472807) +++ head/math/openlibm/distinfo Tue Jun 19 17:56:19 2018 (r472808) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508305920 -SHA256 (JuliaLang-openlibm-v0.5.5_GH0.tar.gz) = 07dcc5f59e695fb45167c81406b8e201c5ad91ebf24e3e55ae13298670910cfd -SIZE (JuliaLang-openlibm-v0.5.5_GH0.tar.gz) = 353637 +TIMESTAMP = 1529386396 +SHA256 (JuliaMath-openlibm-v0.6.0_GH0.tar.gz) = d45439093d1fd15e2ac3acf69955e462401c7a160d3330256cb4a86c51bdae28 +SIZE (JuliaMath-openlibm-v0.6.0_GH0.tar.gz) = 356601 Modified: head/math/openlibm/files/patch-Make.inc ============================================================================== --- head/math/openlibm/files/patch-Make.inc Tue Jun 19 17:31:52 2018 (r472807) +++ head/math/openlibm/files/patch-Make.inc Tue Jun 19 17:56:19 2018 (r472808) @@ -1,8 +1,8 @@ ---- Make.inc.orig 2016-08-06 15:00:31 UTC +--- Make.inc.orig 2018-06-18 21:22:47 UTC +++ Make.inc -@@ -7,7 +7,7 @@ VERSION = 0.5.2 +@@ -10,7 +10,7 @@ VERSION = 0.6.0 SOMAJOR = 2 - SOMINOR = 3 + SOMINOR = 5 DESTDIR = -prefix = /usr/local +prefix ?= /usr/local Modified: head/math/openlibm/files/patch-Makefile ============================================================================== --- head/math/openlibm/files/patch-Makefile Tue Jun 19 17:31:52 2018 (r472807) +++ head/math/openlibm/files/patch-Makefile Tue Jun 19 17:56:19 2018 (r472808) @@ -1,26 +1,26 @@ ---- Makefile.orig 2016-08-06 15:00:31 UTC +--- Makefile.orig 2018-06-18 21:22:47 UTC +++ Makefile -@@ -77,19 +77,19 @@ openlibm.pc: openlibm.pc.in Make.inc Mak +@@ -83,19 +83,19 @@ openlibm.pc: openlibm.pc.in Make.inc Makefile install-static: libopenlibm.a mkdir -p $(DESTDIR)$(libdir) -- cp -f -a libopenlibm.a $(DESTDIR)$(libdir)/ +- cp -RpP -f libopenlibm.a $(DESTDIR)$(libdir)/ + $(BSD_INSTALL_DATA) libopenlibm.a $(DESTDIR)$(libdir)/ install-shared: libopenlibm.$(OLM_MAJOR_MINOR_SHLIB_EXT) mkdir -p $(DESTDIR)$(shlibdir) -- cp -f -a libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ +- cp -RpP -f libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ + $(BSD_INSTALL_LIB) libopenlibm.*$(SHLIB_EXT)* $(DESTDIR)$(shlibdir)/ install-pkgconfig: openlibm.pc mkdir -p $(DESTDIR)$(pkgconfigdir) -- cp -f -a openlibm.pc $(DESTDIR)$(pkgconfigdir)/ +- cp -RpP -f openlibm.pc $(DESTDIR)$(pkgconfigdir)/ + $(BSD_INSTALL_DATA) openlibm.pc $(DESTDIR)$(pkgconfigdir)/ install-headers: mkdir -p $(DESTDIR)$(includedir)/openlibm -- cp -f -a include/*.h $(DESTDIR)$(includedir)/openlibm -- cp -f -a src/*.h $(DESTDIR)$(includedir)/openlibm +- cp -RpP -f include/*.h $(DESTDIR)$(includedir)/openlibm +- cp -RpP -f src/*.h $(DESTDIR)$(includedir)/openlibm + $(BSD_INSTALL_DATA) include/*.h $(DESTDIR)$(includedir)/openlibm + $(BSD_INSTALL_DATA) src/*.h $(DESTDIR)$(includedir)/openlibm Modified: head/math/openlibm/pkg-plist ============================================================================== --- head/math/openlibm/pkg-plist Tue Jun 19 17:31:52 2018 (r472807) +++ head/math/openlibm/pkg-plist Tue Jun 19 17:56:19 2018 (r472808) @@ -8,12 +8,14 @@ include/openlibm/k_log.h include/openlibm/k_logf.h include/openlibm/math_private.h include/openlibm/math_private_openbsd.h +include/openlibm/mips_fpmath.h include/openlibm/openlibm.h include/openlibm/openlibm_complex.h include/openlibm/openlibm_fenv.h include/openlibm/openlibm_fenv_amd64.h include/openlibm/openlibm_fenv_arm.h include/openlibm/openlibm_fenv_i387.h +include/openlibm/openlibm_fenv_mips.h include/openlibm/openlibm_fenv_powerpc.h include/openlibm/openlibm_math.h include/openlibm/powerpc_fpmath.h @@ -21,5 +23,5 @@ include/openlibm/types-compat.h lib/libopenlibm.a lib/libopenlibm.so lib/libopenlibm.so.2 -lib/libopenlibm.so.2.4 +lib/libopenlibm.so.2.5 libdata/pkgconfig/openlibm.pc From owner-svn-ports-head@freebsd.org Tue Jun 19 18:00:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3808110042E0; Tue, 19 Jun 2018 18:00:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DFE0C6DD81; Tue, 19 Jun 2018 18:00:36 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A703B16F49; Tue, 19 Jun 2018 18:00:36 +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 w5JI0a7H026917; Tue, 19 Jun 2018 18:00:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JI0Zxm026910; Tue, 19 Jun 2018 18:00:35 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806191800.w5JI0Zxm026910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 18:00:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472809 - in head/devel: . p5-Scope-Container X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Scope-Container X-SVN-Commit-Revision: 472809 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:00:37 -0000 Author: pi Date: Tue Jun 19 18:00:35 2018 New Revision: 472809 URL: https://svnweb.freebsd.org/changeset/ports/472809 Log: New port: devel/p5-Scope-Container Container object for temporary scoped items like database connections WWW: https://metacpan.org/release/Scope-Container PR: 229144 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Scope-Container/ head/devel/p5-Scope-Container/Makefile (contents, props changed) head/devel/p5-Scope-Container/distinfo (contents, props changed) head/devel/p5-Scope-Container/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 19 17:56:19 2018 (r472808) +++ head/devel/Makefile Tue Jun 19 18:00:35 2018 (r472809) @@ -3338,6 +3338,7 @@ SUBDIR += p5-Scalar-String SUBDIR += p5-Scalar-Util-LooksLikeNumber SUBDIR += p5-Scalar-Util-Numeric + SUBDIR += p5-Scope-Container SUBDIR += p5-Scope-Guard SUBDIR += p5-Scope-Upper SUBDIR += p5-Script-isAperlScript Added: head/devel/p5-Scope-Container/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Scope-Container/Makefile Tue Jun 19 18:00:35 2018 (r472809) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= Scope-Container +PORTVERSION= 0.04 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Container object for temporary scoped items like database connections + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure +PLIST_FILES= ${SITE_PERL_REL}/Scope/Container.pm \ + ${SITE_MAN3_REL}/Scope::Container.3.gz + +.include Added: head/devel/p5-Scope-Container/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Scope-Container/distinfo Tue Jun 19 18:00:35 2018 (r472809) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529430567 +SHA256 (Scope-Container-0.04.tar.gz) = 65207c3513c56a17511c78e3b8bcc3448669ddc48a39a52b8333ebaf7f976d24 +SIZE (Scope-Container-0.04.tar.gz) = 25707 Added: head/devel/p5-Scope-Container/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Scope-Container/pkg-descr Tue Jun 19 18:00:35 2018 (r472809) @@ -0,0 +1,3 @@ +Container object for temporary scoped items like database connections + +WWW: https://metacpan.org/release/Scope-Container From owner-svn-ports-head@freebsd.org Tue Jun 19 18:04:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C65E10049CC; Tue, 19 Jun 2018 18:04:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DE3E96E387; Tue, 19 Jun 2018 18:04:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF6D8170EE; Tue, 19 Jun 2018 18:04:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JI4mcV030904; Tue, 19 Jun 2018 18:04:48 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JI4m7c030902; Tue, 19 Jun 2018 18:04:48 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191804.w5JI4m7c030902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 18:04:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472810 - head/sysutils/direnv X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/sysutils/direnv X-SVN-Commit-Revision: 472810 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:04:49 -0000 Author: swills Date: Tue Jun 19 18:04:48 2018 New Revision: 472810 URL: https://svnweb.freebsd.org/changeset/ports/472810 Log: sysutils/direnv: update to 2.17.0 Modified: head/sysutils/direnv/Makefile (contents, props changed) head/sysutils/direnv/distinfo (contents, props changed) Modified: head/sysutils/direnv/Makefile ============================================================================== --- head/sysutils/direnv/Makefile Tue Jun 19 18:00:35 2018 (r472809) +++ head/sysutils/direnv/Makefile Tue Jun 19 18:04:48 2018 (r472810) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= direnv -PORTVERSION= 2.16.0 +PORTVERSION= 2.17.0 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: head/sysutils/direnv/distinfo ============================================================================== --- head/sysutils/direnv/distinfo Tue Jun 19 18:00:35 2018 (r472809) +++ head/sysutils/direnv/distinfo Tue Jun 19 18:04:48 2018 (r472810) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526397454 -SHA256 (direnv-direnv-v2.16.0_GH0.tar.gz) = a17eb4e3ba7600699541a0ac1d7e820b6faf1f2dcda02f791f6e69548d7bb0aa -SIZE (direnv-direnv-v2.16.0_GH0.tar.gz) = 92398 +TIMESTAMP = 1529431257 +SHA256 (direnv-direnv-v2.17.0_GH0.tar.gz) = 1402cfbd9988cfe86d0ded47bd9732a061581f04bdb6275f156d8654e4d09a3a +SIZE (direnv-direnv-v2.17.0_GH0.tar.gz) = 92952 From owner-svn-ports-head@freebsd.org Tue Jun 19 18:07:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 709571004C6B; Tue, 19 Jun 2018 18:07:43 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E4CE6E5C1; Tue, 19 Jun 2018 18:07:43 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F3A3E170F5; Tue, 19 Jun 2018 18:07:42 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JI7goF031190; Tue, 19 Jun 2018 18:07:42 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JI7gxB031187; Tue, 19 Jun 2018 18:07:42 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201806191807.w5JI7gxB031187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Tue, 19 Jun 2018 18:07:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472811 - in head/graphics: drm-next-kmod drm-stable-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/graphics: drm-next-kmod drm-stable-kmod X-SVN-Commit-Revision: 472811 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:07:43 -0000 Author: zeising Date: Tue Jun 19 18:07:41 2018 New Revision: 472811 URL: https://svnweb.freebsd.org/changeset/ports/472811 Log: Update drm-* kmod ports to latest snapshots Update drm-* kmod ports to latest snapshots. This just updates a typedef in preparation for MFC of r334662. Approved by: jmd (maintainer) Modified: head/graphics/drm-next-kmod/Makefile head/graphics/drm-next-kmod/distinfo head/graphics/drm-stable-kmod/Makefile head/graphics/drm-stable-kmod/distinfo Modified: head/graphics/drm-next-kmod/Makefile ============================================================================== --- head/graphics/drm-next-kmod/Makefile Tue Jun 19 18:04:48 2018 (r472810) +++ head/graphics/drm-next-kmod/Makefile Tue Jun 19 18:07:41 2018 (r472811) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-next-kmod -PORTVERSION= 4.11.g20180606 +PORTVERSION= 4.11.g20180619 CATEGORIES= graphics kld MAINTAINER= jmd@FreeBSD.org @@ -25,7 +25,7 @@ USES= kmod uidfix USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= d1f0b83 +GH_TAGNAME= a753215 .include Modified: head/graphics/drm-next-kmod/distinfo ============================================================================== --- head/graphics/drm-next-kmod/distinfo Tue Jun 19 18:04:48 2018 (r472810) +++ head/graphics/drm-next-kmod/distinfo Tue Jun 19 18:07:41 2018 (r472811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528297520 -SHA256 (FreeBSDDesktop-kms-drm-4.11.g20180606-d1f0b83_GH0.tar.gz) = 206dd8d6a5adf4762536d3eff2157c5d5e29450f02f6a0d063024bdffd8bbd27 -SIZE (FreeBSDDesktop-kms-drm-4.11.g20180606-d1f0b83_GH0.tar.gz) = 7357065 +TIMESTAMP = 1529427209 +SHA256 (FreeBSDDesktop-kms-drm-4.11.g20180619-a753215_GH0.tar.gz) = 50e1370226864cdb9f9b1b7e96f294dd142ce30d7fb375261842ed669100b027 +SIZE (FreeBSDDesktop-kms-drm-4.11.g20180619-a753215_GH0.tar.gz) = 6677986 Modified: head/graphics/drm-stable-kmod/Makefile ============================================================================== --- head/graphics/drm-stable-kmod/Makefile Tue Jun 19 18:04:48 2018 (r472810) +++ head/graphics/drm-stable-kmod/Makefile Tue Jun 19 18:07:41 2018 (r472811) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-stable-kmod -PORTVERSION= g20180606 +PORTVERSION= g20180619 CATEGORIES= graphics kld MAINTAINER= jmd@FreeBSD.org @@ -25,7 +25,7 @@ USES= kmod uidfix USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= 37ff8a1 +GH_TAGNAME= a753215 .include Modified: head/graphics/drm-stable-kmod/distinfo ============================================================================== --- head/graphics/drm-stable-kmod/distinfo Tue Jun 19 18:04:48 2018 (r472810) +++ head/graphics/drm-stable-kmod/distinfo Tue Jun 19 18:07:41 2018 (r472811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528297531 -SHA256 (FreeBSDDesktop-kms-drm-g20180606-37ff8a1_GH0.tar.gz) = 3bd9e7feb335cb43b3bd82d55f78b5a556c116404be3993547d90d3b12808dca -SIZE (FreeBSDDesktop-kms-drm-g20180606-37ff8a1_GH0.tar.gz) = 6677852 +TIMESTAMP = 1529427060 +SHA256 (FreeBSDDesktop-kms-drm-g20180619-a753215_GH0.tar.gz) = 50e1370226864cdb9f9b1b7e96f294dd142ce30d7fb375261842ed669100b027 +SIZE (FreeBSDDesktop-kms-drm-g20180619-a753215_GH0.tar.gz) = 6677986 From owner-svn-ports-head@freebsd.org Tue Jun 19 18:12:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1F7E10052C9; Tue, 19 Jun 2018 18:12:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B97196EBCF; Tue, 19 Jun 2018 18:12:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F67317272; Tue, 19 Jun 2018 18:12:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JIC8CF035646; Tue, 19 Jun 2018 18:12:08 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JIC7e7035642; Tue, 19 Jun 2018 18:12:07 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806191812.w5JIC7e7035642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 18:12:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472812 - in head/multimedia/handbrake: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/multimedia/handbrake: . files X-SVN-Commit-Revision: 472812 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:12:09 -0000 Author: pi Date: Tue Jun 19 18:12:07 2018 New Revision: 472812 URL: https://svnweb.freebsd.org/changeset/ports/472812 Log: multimedia/handbrake: update 1.1.0 -> 1.1.1 PR: 229162 Submitted by: naito.yuichiro@gmail.com (maintainer) Relnotes: https://handbrake.fr/news.php?article=40 Deleted: head/multimedia/handbrake/files/patch-contrib_libbluray_P01-freebsd-configure.patch Modified: head/multimedia/handbrake/Makefile head/multimedia/handbrake/distinfo head/multimedia/handbrake/files/patch-version.txt head/multimedia/handbrake/pkg-plist Modified: head/multimedia/handbrake/Makefile ============================================================================== --- head/multimedia/handbrake/Makefile Tue Jun 19 18:07:41 2018 (r472811) +++ head/multimedia/handbrake/Makefile Tue Jun 19 18:12:07 2018 (r472812) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= handbrake -DISTVERSION= 1.1.0 +DISTVERSION= 1.1.1 CATEGORIES= multimedia DIST_SUBDIR= ${PORTNAME} @@ -41,7 +41,7 @@ CONTRIB_FILES= fdk-aac-0.1.5.tar.gz \ libbluray-1.0.2.tar.bz2 \ libdvdnav-5.0.3.tar.bz2 \ libdvdread-5.0.3.tar.bz2 \ - libvpx-1.6.1.tar.bz2 \ + libvpx-1.7.0.tar.gz \ x265_2.6.tar.gz MASTER_SITES+= https://download.handbrake.fr/contrib/:contrib DISTFILES+= ${CONTRIB_FILES:S/$/:contrib/} Modified: head/multimedia/handbrake/distinfo ============================================================================== --- head/multimedia/handbrake/distinfo Tue Jun 19 18:07:41 2018 (r472811) +++ head/multimedia/handbrake/distinfo Tue Jun 19 18:12:07 2018 (r472812) @@ -1,4 +1,4 @@ -TIMESTAMP = 1523151983 +TIMESTAMP = 1529374276 SHA256 (handbrake/fdk-aac-0.1.5.tar.gz) = 2164592a67b467e5b20fdcdaf5bd4c50685199067391c6fcad4fa5521c9b4dd7 SIZE (handbrake/fdk-aac-0.1.5.tar.gz) = 2091081 SHA256 (handbrake/libav-12.3.tar.gz) = 115b659022dd387f662e26fbc5bc0cc14ec18daa100003ffd34f4da0479b272e @@ -9,9 +9,9 @@ SHA256 (handbrake/libdvdnav-5.0.3.tar.bz2) = 5097023e3 SIZE (handbrake/libdvdnav-5.0.3.tar.bz2) = 372203 SHA256 (handbrake/libdvdread-5.0.3.tar.bz2) = 321cdf2dbdc83c96572bc583cd27d8c660ddb540ff16672ecb28607d018ed82b SIZE (handbrake/libdvdread-5.0.3.tar.bz2) = 394885 -SHA256 (handbrake/libvpx-1.6.1.tar.bz2) = 1c2c0c2a97fba9474943be34ee39337dee756780fc12870ba1dc68372586a819 -SIZE (handbrake/libvpx-1.6.1.tar.bz2) = 1959534 +SHA256 (handbrake/libvpx-1.7.0.tar.gz) = 1fec931eb5c94279ad219a5b6e0202358e94a93a90cfb1603578c326abfc1238 +SIZE (handbrake/libvpx-1.7.0.tar.gz) = 2679797 SHA256 (handbrake/x265_2.6.tar.gz) = 1bf0036415996af841884802161065b9e6be74f5f6808ac04831363e2549cdbf SIZE (handbrake/x265_2.6.tar.gz) = 1271976 -SHA256 (handbrake/HandBrake-HandBrake-1.1.0_GH0.tar.gz) = c51f25e8fa2e979295bed281b050186d36f48d9ed0fc3cb7e4f5497985d000b0 -SIZE (handbrake/HandBrake-HandBrake-1.1.0_GH0.tar.gz) = 15797528 +SHA256 (handbrake/HandBrake-HandBrake-1.1.1_GH0.tar.gz) = c3faa7cbe84691bcecba860cbfb6536c51489301dbe444d641f9866cf9cc24fa +SIZE (handbrake/HandBrake-HandBrake-1.1.1_GH0.tar.gz) = 15798380 Modified: head/multimedia/handbrake/files/patch-version.txt ============================================================================== --- head/multimedia/handbrake/files/patch-version.txt Tue Jun 19 18:07:41 2018 (r472811) +++ head/multimedia/handbrake/files/patch-version.txt Tue Jun 19 18:12:07 2018 (r472812) @@ -2,11 +2,11 @@ +++ version.txt @@ -0,0 +1,9 @@ +URL=https://github.com/HandBrake/HandBrake.git -+HASH=b463d33a4ed4c9da5fb6432e7fb7e08422fc1aad -+SHORTHASH=b463d33 -+TAG=1.1.0 -+TAG_HASH=b463d33a4ed4c9da5fb6432e7fb7e08422fc1aad ++HASH=1bd13ba48bffa1652ad4bcf58d3a88c24bae25f8 ++SHORTHASH=1bd13ba48 ++TAG=1.1.1 ++TAG_HASH=1bd13ba48bffa1652ad4bcf58d3a88c24bae25f8 +REV=0 +BRANCH= +REMOTE=https://github.com/HandBrake/HandBrake.git -+DATE=2018-04-08 15:16:00 +0900 ++DATE=2018-06-18 15:07:09 +0100 Modified: head/multimedia/handbrake/pkg-plist ============================================================================== --- head/multimedia/handbrake/pkg-plist Tue Jun 19 18:07:41 2018 (r472811) +++ head/multimedia/handbrake/pkg-plist Tue Jun 19 18:12:07 2018 (r472812) @@ -17,3 +17,4 @@ bin/HandBrakeCLI %%X11%%share/locale/ru/LC_MESSAGES/ghb.mo %%X11%%share/locale/th/LC_MESSAGES/ghb.mo %%X11%%share/locale/zh_CN/LC_MESSAGES/ghb.mo +%%X11%%share/metainfo/fr.handbrake.ghb.appdata.xml From owner-svn-ports-head@freebsd.org Tue Jun 19 18:17:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FB4B1005A29; Tue, 19 Jun 2018 18:17:06 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 50DCD6EFB8; Tue, 19 Jun 2018 18:17:06 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 320C7172A1; Tue, 19 Jun 2018 18:17:06 +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 w5JIH651036898; Tue, 19 Jun 2018 18:17:06 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JIH6Z7036897; Tue, 19 Jun 2018 18:17:06 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806191817.w5JIH6Z7036897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Tue, 19 Jun 2018 18:17:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472813 - head/www/qt5-webkit/files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/www/qt5-webkit/files X-SVN-Commit-Revision: 472813 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:17:06 -0000 Author: tcberner Date: Tue Jun 19 18:17:05 2018 New Revision: 472813 URL: https://svnweb.freebsd.org/changeset/ports/472813 Log: www/qt5-webkit: fix "cacheFlush support is missing" for FreeBSD/arm64 Finally fix this regression. PR: 224441 Submitted by: mikael.urankar@gmail.com Added: head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARM64Assembler.h (contents, props changed) Added: head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARM64Assembler.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/qt5-webkit/files/patch-Source_JavaScriptCore_assembler_ARM64Assembler.h Tue Jun 19 18:17:05 2018 (r472813) @@ -0,0 +1,11 @@ +--- Source/JavaScriptCore/assembler/ARM64Assembler.h.orig 2018-05-28 10:30:34 UTC ++++ Source/JavaScriptCore/assembler/ARM64Assembler.h +@@ -2683,6 +2683,8 @@ class ARM64Assembler { (public) + linuxPageFlush(current, current + page); + + linuxPageFlush(current, end); ++#elif OS(FREEBSD) ++ __clear_cache(code, reinterpret_cast(code) + size); + #else + #error "The cacheFlush support is missing on this platform." + #endif From owner-svn-ports-head@freebsd.org Tue Jun 19 18:25:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CE1210062B2; Tue, 19 Jun 2018 18:25:05 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 032446F65F; Tue, 19 Jun 2018 18:25:05 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D9AEB17441; Tue, 19 Jun 2018 18:25:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JIP4IW042011; Tue, 19 Jun 2018 18:25:04 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JIP4Yx042009; Tue, 19 Jun 2018 18:25:04 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191825.w5JIP4Yx042009@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 18:25:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472814 - head/devel/p5-Date-Manip X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/p5-Date-Manip X-SVN-Commit-Revision: 472814 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:25:05 -0000 Author: swills Date: Tue Jun 19 18:25:04 2018 New Revision: 472814 URL: https://svnweb.freebsd.org/changeset/ports/472814 Log: devel/p5-Date-Manip: update to 6.72 Modified: head/devel/p5-Date-Manip/Makefile (contents, props changed) head/devel/p5-Date-Manip/distinfo (contents, props changed) Modified: head/devel/p5-Date-Manip/Makefile ============================================================================== --- head/devel/p5-Date-Manip/Makefile Tue Jun 19 18:17:05 2018 (r472813) +++ head/devel/p5-Date-Manip/Makefile Tue Jun 19 18:25:04 2018 (r472814) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Date-Manip -PORTVERSION= 6.70 +PORTVERSION= 6.72 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SBECK Modified: head/devel/p5-Date-Manip/distinfo ============================================================================== --- head/devel/p5-Date-Manip/distinfo Tue Jun 19 18:17:05 2018 (r472813) +++ head/devel/p5-Date-Manip/distinfo Tue Jun 19 18:25:04 2018 (r472814) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520999133 -SHA256 (Date-Manip-6.70.tar.gz) = 39458c602915b9eba4c1760ed42184ab0326fadd40ab66f086bc27b0ae279364 -SIZE (Date-Manip-6.70.tar.gz) = 1819230 +TIMESTAMP = 1529432472 +SHA256 (Date-Manip-6.72.tar.gz) = 38f4dd9d94b41092ca7b9da2ef72c3bb8b8c8bff6da14d785c612f3cc7a94da6 +SIZE (Date-Manip-6.72.tar.gz) = 1853750 From owner-svn-ports-head@freebsd.org Tue Jun 19 18:36:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F00D21006FE4; Tue, 19 Jun 2018 18:36:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A1CE0700EA; Tue, 19 Jun 2018 18:36:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82B99175E8; Tue, 19 Jun 2018 18:36:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JIakNk047233; Tue, 19 Jun 2018 18:36:46 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JIakbp047231; Tue, 19 Jun 2018 18:36:46 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191836.w5JIakbp047231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 18:36:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472815 - head/devel/py-jira X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/py-jira X-SVN-Commit-Revision: 472815 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 18:36:47 -0000 Author: swills Date: Tue Jun 19 18:36:45 2018 New Revision: 472815 URL: https://svnweb.freebsd.org/changeset/ports/472815 Log: devel/py-jira: update to 1.0.15 Modified: head/devel/py-jira/Makefile (contents, props changed) head/devel/py-jira/distinfo (contents, props changed) Modified: head/devel/py-jira/Makefile ============================================================================== --- head/devel/py-jira/Makefile Tue Jun 19 18:25:04 2018 (r472814) +++ head/devel/py-jira/Makefile Tue Jun 19 18:36:45 2018 (r472815) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jira -PORTVERSION= 1.0.14 +PORTVERSION= 1.0.15 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,8 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pbr>=1.9:devel/py-pbr@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pbr>=1.9:devel/py-pbr@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=1.6.5:textproc/py-sphinx@${FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=1.2.3:www/py-requests@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>=0.3.3:www/py-requests-oauthlib@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tlslite>=0.4.4:security/py-tlslite@${FLAVOR} \ Modified: head/devel/py-jira/distinfo ============================================================================== --- head/devel/py-jira/distinfo Tue Jun 19 18:25:04 2018 (r472814) +++ head/devel/py-jira/distinfo Tue Jun 19 18:36:45 2018 (r472815) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521001126 -SHA256 (jira-1.0.14.tar.gz) = a35e270c37c7f43f12bb67e4cad226e81f6bf926acfc35d4b60fc88715cbccf6 -SIZE (jira-1.0.14.tar.gz) = 151627 +TIMESTAMP = 1529432771 +SHA256 (jira-1.0.15.tar.gz) = 20108a1d5b0dd058d5d4e0047f2d09ee06aaa413b22ca4d5c249e86167417fe8 +SIZE (jira-1.0.15.tar.gz) = 95052 From owner-svn-ports-head@freebsd.org Tue Jun 19 19:11:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4BA210089D8; Tue, 19 Jun 2018 19:11:02 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 965EB71457; Tue, 19 Jun 2018 19:11:02 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 77B4317C08; Tue, 19 Jun 2018 19:11:02 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JJB26Y065370; Tue, 19 Jun 2018 19:11:02 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JJB1Zr065367; Tue, 19 Jun 2018 19:11:01 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201806191911.w5JJB1Zr065367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Tue, 19 Jun 2018 19:11:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472816 - head/dns/dnsrecon X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: head/dns/dnsrecon X-SVN-Commit-Revision: 472816 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 19:11:03 -0000 Author: arrowd Date: Tue Jun 19 19:11:01 2018 New Revision: 472816 URL: https://svnweb.freebsd.org/changeset/ports/472816 Log: dns/dnsrecon: Update to 0.8.13. Approved by: rihaz.jerrin@gmail.com (maintainer), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15824 Modified: head/dns/dnsrecon/Makefile head/dns/dnsrecon/distinfo head/dns/dnsrecon/pkg-plist Modified: head/dns/dnsrecon/Makefile ============================================================================== --- head/dns/dnsrecon/Makefile Tue Jun 19 18:36:45 2018 (r472815) +++ head/dns/dnsrecon/Makefile Tue Jun 19 19:11:01 2018 (r472816) @@ -1,9 +1,7 @@ # $FreeBSD$ PORTNAME= dnsrecon -PORTVERSION= 0.8.9 -DISTVERSIONPREFIX= v -PORTREVISION= 1 +DISTVERSION= 0.8.13 CATEGORIES= dns MAINTAINER= rihaz.jerrin@gmail.com Modified: head/dns/dnsrecon/distinfo ============================================================================== --- head/dns/dnsrecon/distinfo Tue Jun 19 18:36:45 2018 (r472815) +++ head/dns/dnsrecon/distinfo Tue Jun 19 19:11:01 2018 (r472816) @@ -1,2 +1,3 @@ -SHA256 (darkoperator-dnsrecon-v0.8.9_GH0.tar.gz) = c3b99b423919ed877dd75893212c0365c1491f2abca3de411cee04c467d8500a -SIZE (darkoperator-dnsrecon-v0.8.9_GH0.tar.gz) = 635161 +TIMESTAMP = 1529078078 +SHA256 (darkoperator-dnsrecon-0.8.13_GH0.tar.gz) = f36c5d18993eca28decdfd433bc22aea0032b8ed691c42e50ae490c0e2120a33 +SIZE (darkoperator-dnsrecon-0.8.13_GH0.tar.gz) = 637099 Modified: head/dns/dnsrecon/pkg-plist ============================================================================== --- head/dns/dnsrecon/pkg-plist Tue Jun 19 18:36:45 2018 (r472815) +++ head/dns/dnsrecon/pkg-plist Tue Jun 19 19:11:01 2018 (r472816) @@ -1,5 +1,7 @@ bin/dnsrecon %%PYTHON_SITELIBDIR%%/dnsrecon/__init__.py +%%PYTHON_SITELIBDIR%%/dnsrecon/bingenum.py +%%PYTHON_SITELIBDIR%%/dnsrecon/crtenum.py %%PYTHON_SITELIBDIR%%/dnsrecon/dnshelper.py %%PYTHON_SITELIBDIR%%/dnsrecon/gooenum.py %%PYTHON_SITELIBDIR%%/dnsrecon/mdnsenum.py From owner-svn-ports-head@freebsd.org Tue Jun 19 19:29:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19BE91009B7B; Tue, 19 Jun 2018 19:29:35 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE78872537; Tue, 19 Jun 2018 19:29:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 85CA917E43; Tue, 19 Jun 2018 19:29:34 +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 w5JJTY9a073766; Tue, 19 Jun 2018 19:29:34 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JJTWWA073758; Tue, 19 Jun 2018 19:29:32 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806191929.w5JJTWWA073758@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 19:29:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472817 - in head/mail: notmuch notmuch-emacs notmuch-emacs/files notmuch/files py-notmuch X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/mail: notmuch notmuch-emacs notmuch-emacs/files notmuch/files py-notmuch X-SVN-Commit-Revision: 472817 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 19:29:35 -0000 Author: pi Date: Tue Jun 19 19:29:32 2018 New Revision: 472817 URL: https://svnweb.freebsd.org/changeset/ports/472817 Log: mail/notmuch,mail/notmuch-emacs,mail/py-notmuch: update 0.26.2 -> 0.27 - add LICENSE to pet portlint - remove BROKEN_powerpc64 since the cause has been fixed in ports r471400 - adjust to upstream's new info page handling - fix parallel installation of flavored mail/py-notmuch PR: 229075 Submitted by: Sebastian Schwarz (maintainer) Relnotes: https://notmuchmail.org/pipermail/notmuch/2018/026684.html Added: head/mail/notmuch-emacs/files/ head/mail/notmuch-emacs/files/patch-doc_Makefile.local (contents, props changed) head/mail/notmuch-emacs/files/patch-emacs_notmuch-emacs-mua (contents, props changed) head/mail/notmuch/files/ head/mail/notmuch/files/patch-doc_Makefile.local (contents, props changed) head/mail/notmuch/files/patch-emacs_notmuch-emacs-mua (contents, props changed) Modified: head/mail/notmuch-emacs/Makefile head/mail/notmuch/Makefile head/mail/notmuch/distinfo head/mail/notmuch/pkg-plist head/mail/py-notmuch/Makefile Modified: head/mail/notmuch-emacs/Makefile ============================================================================== --- head/mail/notmuch-emacs/Makefile Tue Jun 19 19:11:01 2018 (r472816) +++ head/mail/notmuch-emacs/Makefile Tue Jun 19 19:29:32 2018 (r472817) @@ -1,17 +1,17 @@ # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= mail elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} COMMENT= Emacs major-mode for the Notmuch email search and tagging application +LICENSE= GPLv3 + RUN_DEPENDS= notmuch:mail/notmuch USES= emacs gmake INSTALL_TARGET= install-emacs -MAKE_ARGS+= subdirs+=emacs MASTERDIR= ${.CURDIR}/../notmuch NO_ARCH= yes @@ -21,15 +21,18 @@ OPTIONS_SUB= yes DESKTOP_DESC= Install .desktop file for notmuch-emacs-mua -DESKTOP_MAKE_ARGS= WITH_DESKTOP=1 +DESKTOP_CONFIGURE_ON= WITH_DESKTOP=1 DESKTOP_USES= desktop-file-utils +DOCS_ALL_TARGET= build-info DOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx +DOCS_CONFIGURE_ON= HAVE_INSTALL_INFO=1 HAVE_MAKEINFO=1 HAVE_SPHINX=1 DOCS_INFO= notmuch-emacs +DOCS_INSTALL_TARGET= install-info DOCS_USES= makeinfo MANPAGES_ALL_TARGET= build-man MANPAGES_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx +MANPAGES_CONFIGURE_ON= HAVE_SPHINX=1 MANPAGES_INSTALL_TARGET= install-man -MANPAGES_MAKE_ARGS= subdirs+=doc # fake ./configure to avoid unneeded dependencies do-configure: @@ -41,28 +44,31 @@ do-configure: emacsetcdir=${PREFIX}/${EMACS_SITE_LISPDIR} \ emacslispdir=${PREFIX}/${EMACS_SITE_LISPDIR} \ HAVE_EMACS=1 \ - HAVE_SPHINX=1 \ + infodir=${PREFIX}/${INFO_PATH} \ mandir=${MANPREFIX}/man \ + NOTMUCH_SRCDIR=${WRKSRC} \ prefix=${PREFIX} \ srcdir=. \ + subdirs='doc emacs' \ WITH_EMACS=1 \ + ${CONFIGURE_ARGS} \ > ${WRKSRC}/Makefile.config -do-build-DOCS-on: - @${MAKE_CMD} -C ${WRKSRC} subdirs=doc sphinx-texinfo - @${MAKE_CMD} -C ${WRKSRC}/doc/_build/texinfo MAKEINFO='${MAKEINFO} --no-split' info +# work around race condition in Sphinx (cf. PR-227460) +pre-build: + @${MKDIR} ${WRKSRC}/doc/_build/doctrees -do-install-DOCS-on: - ${INSTALL_MAN} ${WRKSRC}/doc/_build/texinfo/notmuch-emacs.info ${STAGEDIR}${PREFIX}/${INFO_PATH} - post-install: @${GZIP_CMD} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}/*.el # keep poudriere testport happy +post-install-DOCS-on: + @${FIND} ${STAGEDIR}${PREFIX}/${INFO_PATH} ! -type d ! -name notmuch-emacs.info -delete + post-install-MANPAGES-on: @${FIND} ${STAGEDIR}${MANPREFIX}/man ! -type d ! -name notmuch-emacs-mua.1.gz -delete -.include "${MASTERDIR}/Makefile" - # modify what Mk/Uses/emacs.mk set MAKE_ARGS+= EMACS+=--quick + +.include "${MASTERDIR}/Makefile" Added: head/mail/notmuch-emacs/files/patch-doc_Makefile.local ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/notmuch-emacs/files/patch-doc_Makefile.local Tue Jun 19 19:29:32 2018 (r472817) @@ -0,0 +1,11 @@ +--- doc/Makefile.local.orig 2018-06-16 21:06:47 UTC ++++ doc/Makefile.local +@@ -44,7 +44,7 @@ sphinx-texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(DOCBUILDDIR)/texinfo + + sphinx-info: sphinx-texinfo +- make -C $(DOCBUILDDIR)/texinfo info ++ $(MAKE) -C $(DOCBUILDDIR)/texinfo info + + # Use the man page converter that is available. We should never depend + # on MAN_ROFF_FILES if a converter is not available. Added: head/mail/notmuch-emacs/files/patch-emacs_notmuch-emacs-mua ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/notmuch-emacs/files/patch-emacs_notmuch-emacs-mua Tue Jun 19 19:29:32 2018 (r472817) @@ -0,0 +1,35 @@ +--- emacs/notmuch-emacs-mua.orig 2017-07-18 20:34:56 UTC ++++ emacs/notmuch-emacs-mua +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!/bin/sh + # + # notmuch-emacs-mua - start composing a mail on the command line + # +@@ -26,8 +26,8 @@ set -eu + # calling convention: escape -v var "$arg" (like in bash printf). + escape () + { +- local __escape_arg__=${3//\\/\\\\} +- printf -v $2 '%s' "${__escape_arg__//\"/\\\"}" ++ __escape_arg__="$(printf '%s' "$3" | sed -e 's|\\|\\\\|g' -e 's|\"|\\\"|g')" ++ eval "$2=\$__escape_arg__" + } + + EMACS=${EMACS:-emacs} +@@ -150,14 +150,14 @@ if [ -n "${MAILTO}" ]; then + exit 1 + fi + ELISP="(browse-url-mail \"${MAILTO}\")" +-elif [ -z "${ELISP}" -a -n "${HELLO}" ]; then ++elif [ -z "${ELISP}" ] && [ -n "${HELLO}" ]; then + ELISP="(notmuch)" + else + ELISP="(notmuch-mua-new-mail) ${ELISP}" + fi + + # Kill the terminal/frame if we're creating one. +-if [ -z "$USE_EMACSCLIENT" -o -n "$CREATE_FRAME" -o -n "$NO_WINDOW" ]; then ++if [ -z "$USE_EMACSCLIENT" ] || [ -n "$CREATE_FRAME" ] || [ -n "$NO_WINDOW" ]; then + ELISP="${ELISP} (message-add-action #'save-buffers-kill-terminal 'exit)" + fi Modified: head/mail/notmuch/Makefile ============================================================================== --- head/mail/notmuch/Makefile Tue Jun 19 19:11:01 2018 (r472816) +++ head/mail/notmuch/Makefile Tue Jun 19 19:29:32 2018 (r472817) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= notmuch -PORTVERSION= 0.26.2 +PORTVERSION= 0.27 CATEGORIES?= mail MASTER_SITES= https://notmuchmail.org/releases/ @@ -12,8 +12,6 @@ COMMENT?= Thread-based email index, search and tagging LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/${WRKSRC_SUBDIR:C/[^\/]+/../g}/COPYING-GPL-3 -BROKEN_powerpc64= Does not build due to databases/xapian-core - .ifndef MASTERDIR LIB_DEPENDS= libgmime-2.6.so:mail/gmime26 \ libxapian.so:databases/xapian-core \ @@ -34,7 +32,8 @@ USE_GNOME= glib20 USE_LDCONFIG= yes HAS_CONFIGURE= yes -CONFIGURE_ARGS= --mandir=${MANPREFIX}/man \ +CONFIGURE_ARGS= --infodir=${PREFIX}/${INFO_PATH} \ + --mandir=${MANPREFIX}/man \ --prefix=${PREFIX} \ --with-bash-completion \ --with-retry-lock \ @@ -48,6 +47,7 @@ TEST_ENV+= NOTMUCH_SKIP_TESTS="basic.12 count.14 inser TEST_TARGET= test .endif +PATCH_WRKSRC= ${WRKSRC}/${WRKSRC_SUBDIR:C/[^\/]+/../g} PKGDIR= ${.CURDIR} .ifndef MASTERDIR @@ -62,11 +62,15 @@ MANPAGES_CONFIGURE_WITH= docs # install completions even in absence of shells/bash-completions post-configure: - @${REINPLACE_CMD} -e '/^WITH_BASH[[:blank:]]*=/s/=.*/= 1/' ${WRKSRC}/Makefile.config + ${REINPLACE_CMD} \ + -e '/^HAVE_INSTALL_INFO[[:blank:]]*=/s/=.*/=0/' \ + -e '/^HAVE_MAKEINFO[[:blank:]]*=/s/=.*/=0/' \ + -e '/^WITH_BASH[[:blank:]]*=/s/=.*/= 1/' \ + ${WRKSRC}/Makefile.config post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.5.1.0 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.?*.?*.?* # keep poudriere testport happy post-install-MANPAGES-on: Modified: head/mail/notmuch/distinfo ============================================================================== --- head/mail/notmuch/distinfo Tue Jun 19 19:11:01 2018 (r472816) +++ head/mail/notmuch/distinfo Tue Jun 19 19:29:32 2018 (r472817) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525128779 -SHA256 (notmuch-0.26.2.tar.gz) = 109c1865db7a035d08707421d13e9b6b82ee8e9f1534db70c28c51bc39370e3b -SIZE (notmuch-0.26.2.tar.gz) = 907187 +TIMESTAMP = 1529138705 +SHA256 (notmuch-0.27.tar.gz) = 40d3192f8f130f227b511fc80be86310c7f60ccb6d043b563f201fa505de0876 +SIZE (notmuch-0.27.tar.gz) = 912583 Added: head/mail/notmuch/files/patch-doc_Makefile.local ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/notmuch/files/patch-doc_Makefile.local Tue Jun 19 19:29:32 2018 (r472817) @@ -0,0 +1,11 @@ +--- doc/Makefile.local.orig 2018-06-16 21:06:47 UTC ++++ doc/Makefile.local +@@ -44,7 +44,7 @@ sphinx-texinfo: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(DOCBUILDDIR)/texinfo + + sphinx-info: sphinx-texinfo +- make -C $(DOCBUILDDIR)/texinfo info ++ $(MAKE) -C $(DOCBUILDDIR)/texinfo info + + # Use the man page converter that is available. We should never depend + # on MAN_ROFF_FILES if a converter is not available. Added: head/mail/notmuch/files/patch-emacs_notmuch-emacs-mua ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/notmuch/files/patch-emacs_notmuch-emacs-mua Tue Jun 19 19:29:32 2018 (r472817) @@ -0,0 +1,35 @@ +--- emacs/notmuch-emacs-mua.orig 2017-07-18 20:34:56 UTC ++++ emacs/notmuch-emacs-mua +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!/bin/sh + # + # notmuch-emacs-mua - start composing a mail on the command line + # +@@ -26,8 +26,8 @@ set -eu + # calling convention: escape -v var "$arg" (like in bash printf). + escape () + { +- local __escape_arg__=${3//\\/\\\\} +- printf -v $2 '%s' "${__escape_arg__//\"/\\\"}" ++ __escape_arg__="$(printf '%s' "$3" | sed -e 's|\\|\\\\|g' -e 's|\"|\\\"|g')" ++ eval "$2=\$__escape_arg__" + } + + EMACS=${EMACS:-emacs} +@@ -150,14 +150,14 @@ if [ -n "${MAILTO}" ]; then + exit 1 + fi + ELISP="(browse-url-mail \"${MAILTO}\")" +-elif [ -z "${ELISP}" -a -n "${HELLO}" ]; then ++elif [ -z "${ELISP}" ] && [ -n "${HELLO}" ]; then + ELISP="(notmuch)" + else + ELISP="(notmuch-mua-new-mail) ${ELISP}" + fi + + # Kill the terminal/frame if we're creating one. +-if [ -z "$USE_EMACSCLIENT" -o -n "$CREATE_FRAME" -o -n "$NO_WINDOW" ]; then ++if [ -z "$USE_EMACSCLIENT" ] || [ -n "$CREATE_FRAME" ] || [ -n "$NO_WINDOW" ]; then + ELISP="${ELISP} (message-add-action #'save-buffers-kill-terminal 'exit)" + fi Modified: head/mail/notmuch/pkg-plist ============================================================================== --- head/mail/notmuch/pkg-plist Tue Jun 19 19:11:01 2018 (r472816) +++ head/mail/notmuch/pkg-plist Tue Jun 19 19:29:32 2018 (r472817) @@ -21,6 +21,6 @@ bin/notmuch include/notmuch.h lib/libnotmuch.so lib/libnotmuch.so.5 -lib/libnotmuch.so.5.1.0 +lib/libnotmuch.so.5.2.0 share/bash-completion/completions/notmuch share/zsh/functions/Completion/Unix/_notmuch Modified: head/mail/py-notmuch/Makefile ============================================================================== --- head/mail/py-notmuch/Makefile Tue Jun 19 19:11:01 2018 (r472816) +++ head/mail/py-notmuch/Makefile Tue Jun 19 19:29:32 2018 (r472817) @@ -5,14 +5,16 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} COMMENT= Python interface for the Notmuch email search and tagging library +LICENSE= GPLv3 + LIB_DEPENDS= libnotmuch.so:mail/notmuch -USES= python +USES= python uniquefiles:dirs USE_PYTHON= autoplist distutils MASTERDIR= ${.CURDIR}/../notmuch NO_ARCH= yes -PORTDOCS= python/ +PORTDOCS= * WRKSRC_SUBDIR= bindings/python OPTIONS_DEFINE= DOCS @@ -23,7 +25,7 @@ do-build-DOCS-on: @${MAKE_CMD} -C ${WRKSRC}/docs html do-install-DOCS-on: - cd ${WRKSRC}/docs/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/python - @${RM} ${STAGEDIR}${DOCSDIR}/python/.buildinfo + cd ${WRKSRC}/docs/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + @${RM} ${STAGEDIR}${DOCSDIR}/.buildinfo .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@freebsd.org Tue Jun 19 19:47:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5410B100AB3E; Tue, 19 Jun 2018 19:47:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 00B5473104; Tue, 19 Jun 2018 19:47:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D73BA1817C; Tue, 19 Jun 2018 19:47:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JJl3l4083449; Tue, 19 Jun 2018 19:47:03 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JJl3hP083447; Tue, 19 Jun 2018 19:47:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806191947.w5JJl3hP083447@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 19 Jun 2018 19:47:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472818 - head/deskutils/syncthing-gtk X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/deskutils/syncthing-gtk X-SVN-Commit-Revision: 472818 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 19:47:04 -0000 Author: swills Date: Tue Jun 19 19:47:03 2018 New Revision: 472818 URL: https://svnweb.freebsd.org/changeset/ports/472818 Log: deskutils/syncthing-gtk: update to 0.9.4 Modified: head/deskutils/syncthing-gtk/Makefile (contents, props changed) head/deskutils/syncthing-gtk/distinfo (contents, props changed) Modified: head/deskutils/syncthing-gtk/Makefile ============================================================================== --- head/deskutils/syncthing-gtk/Makefile Tue Jun 19 19:29:32 2018 (r472817) +++ head/deskutils/syncthing-gtk/Makefile Tue Jun 19 19:47:03 2018 (r472818) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= syncthing-gtk -PORTREVISION= 1 DISTVERSIONPREFIX= v -DISTVERSION= 0.9.3.1 +DISTVERSION= 0.9.4 CATEGORIES= deskutils python MAINTAINER= swills@FreeBSD.org Modified: head/deskutils/syncthing-gtk/distinfo ============================================================================== --- head/deskutils/syncthing-gtk/distinfo Tue Jun 19 19:29:32 2018 (r472817) +++ head/deskutils/syncthing-gtk/distinfo Tue Jun 19 19:47:03 2018 (r472818) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521653214 -SHA256 (syncthing-syncthing-gtk-v0.9.3.1_GH0.tar.gz) = 0adcdd4be83f2e65aeeb5250d6d4b69c12216dbd740c8051b6a434a9154bd9b4 -SIZE (syncthing-syncthing-gtk-v0.9.3.1_GH0.tar.gz) = 876194 +TIMESTAMP = 1529434009 +SHA256 (syncthing-syncthing-gtk-v0.9.4_GH0.tar.gz) = 586dc60460973c2664cee9f0fe6360b635a5b04278924f61c4bc9041723549f2 +SIZE (syncthing-syncthing-gtk-v0.9.4_GH0.tar.gz) = 872813 From owner-svn-ports-head@freebsd.org Tue Jun 19 20:25:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 504DA100CA12; Tue, 19 Jun 2018 20:25:12 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 050B4747EC; Tue, 19 Jun 2018 20:25:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DBD4718816; Tue, 19 Jun 2018 20:25:11 +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 w5JKPBLq005543; Tue, 19 Jun 2018 20:25:11 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JKPA6M005539; Tue, 19 Jun 2018 20:25:10 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806192025.w5JKPA6M005539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 19 Jun 2018 20:25:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472819 - in head/databases: . p5-CHI-Driver-Memcached X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/databases: . p5-CHI-Driver-Memcached X-SVN-Commit-Revision: 472819 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 20:25:12 -0000 Author: pi Date: Tue Jun 19 20:25:10 2018 New Revision: 472819 URL: https://svnweb.freebsd.org/changeset/ports/472819 Log: New port: databases/p5-CHI-Driver-Memcached This implements a driver for the generic cache handling interface (CHI) that uses Cache::Memcached to store data in the specified memcached server(s). WWW: https://metacpan.org/pod/CHI::Driver::Memcached PR: 229078 Submitted by: Tomohiro Hosaka Added: head/databases/p5-CHI-Driver-Memcached/ head/databases/p5-CHI-Driver-Memcached/Makefile (contents, props changed) head/databases/p5-CHI-Driver-Memcached/distinfo (contents, props changed) head/databases/p5-CHI-Driver-Memcached/pkg-descr (contents, props changed) head/databases/p5-CHI-Driver-Memcached/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Jun 19 19:47:03 2018 (r472818) +++ head/databases/Makefile Tue Jun 19 20:25:10 2018 (r472819) @@ -273,6 +273,7 @@ SUBDIR += p5-CDB_File SUBDIR += p5-CDB_File-Generator SUBDIR += p5-CGI-Session-Driver-memcached + SUBDIR += p5-CHI-Driver-Memcached SUBDIR += p5-Cache-BDB SUBDIR += p5-Cache-Memcached SUBDIR += p5-Cache-Memcached-Fast Added: head/databases/p5-CHI-Driver-Memcached/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Memcached/Makefile Tue Jun 19 20:25:10 2018 (r472819) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= CHI-Driver-Memcached +PORTVERSION= 0.16 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Memcached Driver to use with the Cache Handling Interface CHI + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= p5-CHI>=0.33:devel/p5-CHI \ + p5-Moose>=0.66:devel/p5-Moose +TEST_DEPENDS= p5-Test-Class>=0:devel/p5-Test-Class + +USES= perl5 +USE_PERL5= configure + +post-install: + @${RM} -r ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/CHI/Driver/Memcached/Test + @${RM} -r ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/CHI/Driver/Memcached/t + +.include Added: head/databases/p5-CHI-Driver-Memcached/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Memcached/distinfo Tue Jun 19 20:25:10 2018 (r472819) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529437282 +SHA256 (CHI-Driver-Memcached-0.16.tar.gz) = cff9857fbf3f83247b8fc3ab41bdbf141ea0afe23b45109ee0b415f6baadb3c6 +SIZE (CHI-Driver-Memcached-0.16.tar.gz) = 14788 Added: head/databases/p5-CHI-Driver-Memcached/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Memcached/pkg-descr Tue Jun 19 20:25:10 2018 (r472819) @@ -0,0 +1,5 @@ +This implements a driver for the generic cache handling interface (CHI) +that uses Cache::Memcached to store data in the specified memcached +server(s). + +WWW: https://metacpan.org/pod/CHI::Driver::Memcached Added: head/databases/p5-CHI-Driver-Memcached/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Memcached/pkg-plist Tue Jun 19 20:25:10 2018 (r472819) @@ -0,0 +1,7 @@ +%%SITE_PERL%%/CHI/Driver/Memcached.pm +%%SITE_PERL%%/CHI/Driver/Memcached/Base.pm +%%SITE_PERL%%/CHI/Driver/Memcached/Fast.pm +%%SITE_PERL%%/CHI/Driver/Memcached/libmemcached.pm +%%PERL5_MAN3%%/CHI::Driver::Memcached.3.gz +%%PERL5_MAN3%%/CHI::Driver::Memcached::Fast.3.gz +%%PERL5_MAN3%%/CHI::Driver::Memcached::libmemcached.3.gz From owner-svn-ports-head@freebsd.org Tue Jun 19 20:31:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CBB4C100CF17; Tue, 19 Jun 2018 20:31:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8250374A97; Tue, 19 Jun 2018 20:31: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 634ED1883C; Tue, 19 Jun 2018 20:31: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 w5JKV0i3005901; Tue, 19 Jun 2018 20:31:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JKV0MH005895; Tue, 19 Jun 2018 20:31:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806192031.w5JKV0MH005895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 19 Jun 2018 20:31:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472820 - in head/emulators: linux_base-c6 linux_base-c7 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/emulators: linux_base-c6 linux_base-c7 X-SVN-Commit-Revision: 472820 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 20:31:01 -0000 Author: amdmi3 Date: Tue Jun 19 20:30:59 2018 New Revision: 472820 URL: https://svnweb.freebsd.org/changeset/ports/472820 Log: - Fix OSVERSION conditions Approved by: portmgr blanket Modified: head/emulators/linux_base-c6/Makefile head/emulators/linux_base-c7/Makefile Modified: head/emulators/linux_base-c6/Makefile ============================================================================== --- head/emulators/linux_base-c6/Makefile Tue Jun 19 20:25:10 2018 (r472819) +++ head/emulators/linux_base-c6/Makefile Tue Jun 19 20:30:59 2018 (r472820) @@ -3,7 +3,7 @@ PORTNAME= c6 PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= emulators linux PKGNAMEPREFIX= linux_base- BIN_DISTNAMES= bash-4.1.2-48.el6 \ @@ -121,7 +121,7 @@ REMOVE_FILES= bin/df bin/su etc/exports etc/group etc/ .include -.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 11000105 +.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100105 SYSCTLMIB= kern.features.linux64 .else SYSCTLMIB= compat.linux.osrelease Modified: head/emulators/linux_base-c7/Makefile ============================================================================== --- head/emulators/linux_base-c7/Makefile Tue Jun 19 20:25:10 2018 (r472819) +++ head/emulators/linux_base-c7/Makefile Tue Jun 19 20:30:59 2018 (r472820) @@ -2,7 +2,7 @@ PORTNAME= c7 PORTVERSION= ${LINUX_DIST_VER} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= emulators linux PKGNAMEPREFIX= linux_base- BIN_DISTNAMES= centos-release-7-4.1708.el7.centos \ @@ -125,7 +125,7 @@ REMOVE_FILES= bin/df bin/su etc/exports etc/group etc/ .include -.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 11000105 +.if ${LINUX_ARCH} == x86_64 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100105 SYSCTLMIB= kern.features.linux64 .else SYSCTLMIB= compat.linux.osrelease From owner-svn-ports-head@freebsd.org Tue Jun 19 20:45:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79CB2100DE16; Tue, 19 Jun 2018 20:45:29 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2A1D3755DB; Tue, 19 Jun 2018 20:45:29 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 073E218B43; Tue, 19 Jun 2018 20:45:29 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JKjSJ2015985; Tue, 19 Jun 2018 20:45:28 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JKjSOR015983; Tue, 19 Jun 2018 20:45:28 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201806192045.w5JKjSOR015983@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Tue, 19 Jun 2018 20:45:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472821 - head/devel/py-botocore X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: head/devel/py-botocore X-SVN-Commit-Revision: 472821 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 20:45:29 -0000 Author: bhughes Date: Tue Jun 19 20:45:28 2018 New Revision: 472821 URL: https://svnweb.freebsd.org/changeset/ports/472821 Log: devel/py-botocore: Update 1.10.35 -> 1.10.40 Sponsored by: Miles AS Modified: head/devel/py-botocore/Makefile head/devel/py-botocore/distinfo Modified: head/devel/py-botocore/Makefile ============================================================================== --- head/devel/py-botocore/Makefile Tue Jun 19 20:30:59 2018 (r472820) +++ head/devel/py-botocore/Makefile Tue Jun 19 20:45:28 2018 (r472821) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= botocore -PORTVERSION= 1.10.35 +PORTVERSION= 1.10.40 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-botocore/distinfo ============================================================================== --- head/devel/py-botocore/distinfo Tue Jun 19 20:30:59 2018 (r472820) +++ head/devel/py-botocore/distinfo Tue Jun 19 20:45:28 2018 (r472821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528580920 -SHA256 (botocore-1.10.35.tar.gz) = 7529de3954989d8433d65d9c57013f2109099a1b7d64f6a6f9e53c2ad6f9a06b -SIZE (botocore-1.10.35.tar.gz) = 4451806 +TIMESTAMP = 1529438341 +SHA256 (botocore-1.10.40.tar.gz) = 8873388deff33683bc437dd615ada5862c721754accf379ebe4ce0e21cbe2544 +SIZE (botocore-1.10.40.tar.gz) = 4454282 From owner-svn-ports-head@freebsd.org Tue Jun 19 20:45:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D403A100DE91; Tue, 19 Jun 2018 20:45:55 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A1D9756C3; Tue, 19 Jun 2018 20:45:55 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6AFFA18B44; Tue, 19 Jun 2018 20:45:55 +0000 (UTC) (envelope-from bhughes@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JKjtkw016119; Tue, 19 Jun 2018 20:45:55 GMT (envelope-from bhughes@FreeBSD.org) Received: (from bhughes@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JKjt7u016117; Tue, 19 Jun 2018 20:45:55 GMT (envelope-from bhughes@FreeBSD.org) Message-Id: <201806192045.w5JKjt7u016117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bhughes set sender to bhughes@FreeBSD.org using -f From: "Bradley T. Hughes" Date: Tue, 19 Jun 2018 20:45:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472822 - head/devel/awscli X-SVN-Group: ports-head X-SVN-Commit-Author: bhughes X-SVN-Commit-Paths: head/devel/awscli X-SVN-Commit-Revision: 472822 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 20:45:56 -0000 Author: bhughes Date: Tue Jun 19 20:45:54 2018 New Revision: 472822 URL: https://svnweb.freebsd.org/changeset/ports/472822 Log: devel/awscli: Update 1.15.35 -> 1.15.40 Sponsored by: Miles AS Modified: head/devel/awscli/Makefile head/devel/awscli/distinfo Modified: head/devel/awscli/Makefile ============================================================================== --- head/devel/awscli/Makefile Tue Jun 19 20:45:28 2018 (r472821) +++ head/devel/awscli/Makefile Tue Jun 19 20:45:54 2018 (r472822) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awscli -PORTVERSION= 1.15.35 +PORTVERSION= 1.15.40 CATEGORIES= devel MASTER_SITES= CHEESESHOP @@ -12,7 +12,7 @@ COMMENT= Universal Command Line Interface for Amazon W LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.10.35:devel/py-botocore@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.10.40:devel/py-botocore@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:devel/py-colorama@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.1.12:net/py-s3transfer@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils@${PY_FLAVOR} \ Modified: head/devel/awscli/distinfo ============================================================================== --- head/devel/awscli/distinfo Tue Jun 19 20:45:28 2018 (r472821) +++ head/devel/awscli/distinfo Tue Jun 19 20:45:54 2018 (r472822) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528580935 -SHA256 (awscli-1.15.35.tar.gz) = d06f0aa24e1b671a00d108f75dfca5b052f9b4c0cafe3cc9668d63158e240b7e -SIZE (awscli-1.15.35.tar.gz) = 594079 +TIMESTAMP = 1529438367 +SHA256 (awscli-1.15.40.tar.gz) = 86f8beb07bcdc327f051c4a84fc7aed119e936cb6c2f1984f048c77d84609ae6 +SIZE (awscli-1.15.40.tar.gz) = 595280 From owner-svn-ports-head@freebsd.org Tue Jun 19 21:08:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADD92100ECF1; Tue, 19 Jun 2018 21:08:34 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64215760E0; Tue, 19 Jun 2018 21:08:34 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 455DA18E89; Tue, 19 Jun 2018 21:08:34 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JL8YuR026254; Tue, 19 Jun 2018 21:08:34 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JL8XbS026253; Tue, 19 Jun 2018 21:08:33 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806192108.w5JL8XbS026253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Tue, 19 Jun 2018 21:08:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472823 - head/games/spring/files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/games/spring/files X-SVN-Commit-Revision: 472823 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 21:08:34 -0000 Author: adridg Date: Tue Jun 19 21:08:33 2018 New Revision: 472823 URL: https://svnweb.freebsd.org/changeset/ports/472823 Log: Pre-emptively fix games/spring before CMake 3.12 arrives. file(GLOB .. FOLLOW_SYMLINKS ..) was never documented to work; in 3.12-rc1 this has become an error. That in itself is considered a regression in CMake [1], but the use is wrong anyway, so patch it away. The change has been accepted upstream [2] already. Not bumping PORTREVISION because no code actually changes, it just removes a cmake-time no-op. [1] https://gitlab.kitware.com/cmake/cmake/issues/18097 [2] https://springrts.com/mantis/view.php?id=6005 PR: 229101 Reviewed by: tcberner Differential Revision: https://reviews.freebsd.org/D15878 Added: head/games/spring/files/patch-rts-build-cmake-UtilJava (contents, props changed) Modified: head/games/spring/files/patch-rts-build-cmake-Util Modified: head/games/spring/files/patch-rts-build-cmake-Util ============================================================================== --- head/games/spring/files/patch-rts-build-cmake-Util Tue Jun 19 20:45:54 2018 (r472822) +++ head/games/spring/files/patch-rts-build-cmake-Util Tue Jun 19 21:08:33 2018 (r472823) @@ -1,3 +1,5 @@ +Modified for CMake 3.12 to drop FOLLOW_SYMLINKS in file(GLOB ...). + Obtained via: https://springrts.com/mantis/view.php?id=4679 From 9e0db5f602407de4e7875ca85761b41782c1bb9c Mon Sep 17 00:00:00 2001 @@ -10,13 +12,15 @@ I needed this when building on archlinux with cmake 3. ... ---- rts/build/cmake/Util.cmake +--- rts/build/cmake/Util.cmake.orig 2014-10-07 20:09:51 UTC +++ rts/build/cmake/Util.cmake -@@ -166,10 +166,11 @@ EndFunction (MakeGlobal) +@@ -165,11 +165,12 @@ EndFunction (MakeGlobal) + # Find all CMakeLists.txt files in sub-directories Macro (GetListOfSubModules list_var) - File(GLOB ${list_var} RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" FOLLOW_SYMLINKS "${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt") +- File(GLOB ${list_var} RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" FOLLOW_SYMLINKS "${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt") - ++ File(GLOB ${list_var} RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt") # Strip away the "/CMakeLists.txt" parts, so we end up with just a list of dirs, # for example: AAI;RAI;KAIK - String(REPLACE "//CMakeLists.txt" "" ${list_var} "${${list_var}}") Added: head/games/spring/files/patch-rts-build-cmake-UtilJava ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/spring/files/patch-rts-build-cmake-UtilJava Tue Jun 19 21:08:33 2018 (r472823) @@ -0,0 +1,16 @@ +CMake 3.12 errors on FOLLOW_SYMLINKS (which was never supported for +file(GLOB ...) anyway, but was ignored). + +See also https://springrts.com/mantis/view.php?id=6005 + +--- ./rts/build/cmake/UtilJava.cmake.bak 2014-10-07 22:09:51 UTC ++++ ./rts/build/cmake/UtilJava.cmake +@@ -45,7 +45,7 @@ + # Returns the name of the first sub-dir (in alphabetical descending order) + # under dir. + macro (GetFirstSubDirName name_var dir) +- file(GLOB dirContent RELATIVE "${dir}" FOLLOW_SYMLINKS "${dir}/*") ++ file(GLOB dirContent RELATIVE "${dir}" "${dir}/*") + foreach (dirPart ${dirContent}) + if (IS_DIRECTORY "${dir}/${dirPart}") + set(${name_var} ${dirPart}) From owner-svn-ports-head@freebsd.org Tue Jun 19 21:46:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7E521010CEE; Tue, 19 Jun 2018 21:46:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6644377800; Tue, 19 Jun 2018 21:46: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40AB719562; Tue, 19 Jun 2018 21:46: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 w5JLkQfL046352; Tue, 19 Jun 2018 21:46:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JLkQgx046351; Tue, 19 Jun 2018 21:46:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806192146.w5JLkQgx046351@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, 19 Jun 2018 21:46:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472824 - in head/lang/v8: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/lang/v8: . files X-SVN-Commit-Revision: 472824 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 21:46:27 -0000 Author: sunpoet Date: Tue Jun 19 21:46:26 2018 New Revision: 472824 URL: https://svnweb.freebsd.org/changeset/ports/472824 Log: Fix build with Clang 6 PR: 228320 Submitted by: Matthew Grooms Added: head/lang/v8/files/extra-patch-src-stub-cache.cc (contents, props changed) Modified: head/lang/v8/Makefile Modified: head/lang/v8/Makefile ============================================================================== --- head/lang/v8/Makefile Tue Jun 19 21:08:33 2018 (r472823) +++ head/lang/v8/Makefile Tue Jun 19 21:46:26 2018 (r472824) @@ -39,6 +39,10 @@ CXXFLAGS+= -Wno-unused-const-variable CXXFLAGS+= -Wno-tautological-undefined-compare .if ${COMPILER_VERSION} >= 36 CXXFLAGS+= -Wno-unused-local-typedef +.if ${COMPILER_VERSION} >= 60 +CXXFLAGS+= -Wno-null-pointer-arithmetic -Wno-vexing-parse +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src-stub-cache.cc +.endif .endif .endif .endif Added: head/lang/v8/files/extra-patch-src-stub-cache.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/v8/files/extra-patch-src-stub-cache.cc Tue Jun 19 21:46:26 2018 (r472824) @@ -0,0 +1,11 @@ +--- src/stub-cache.cc.orig 2013-05-01 12:56:29 UTC ++++ src/stub-cache.cc +@@ -1474,7 +1474,7 @@ Handle StubCompiler::GetCodeWithFl + Handle name) { + return (FLAG_print_code_stubs && !name.is_null() && name->IsString()) + ? GetCodeWithFlags(flags, *Handle::cast(name)->ToCString()) +- : GetCodeWithFlags(flags, reinterpret_cast(NULL)); ++ : GetCodeWithFlags(flags, static_cast(NULL)); + } + + From owner-svn-ports-head@freebsd.org Tue Jun 19 21:46:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F16061010D1E; Tue, 19 Jun 2018 21:46:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 37A70778B9; Tue, 19 Jun 2018 21:46: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A1C6E19564; Tue, 19 Jun 2018 21:46: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 w5JLkXGv046533; Tue, 19 Jun 2018 21:46:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JLkW3h046529; Tue, 19 Jun 2018 21:46:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806192146.w5JLkW3h046529@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, 19 Jun 2018 21:46:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472825 - in head/devel: . py-testrepository X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-testrepository X-SVN-Commit-Revision: 472825 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 21:46:35 -0000 Author: sunpoet Date: Tue Jun 19 21:46:32 2018 New Revision: 472825 URL: https://svnweb.freebsd.org/changeset/ports/472825 Log: Add py-testrepository 0.0.20 The package provides a database of test results which can be used as part of developer workflow to ensure/check things like: - No commits without having had a test failure, test fixed cycle. - No commits without new tests being added. - What tests have failed since the last commit (to run just a subset). - What tests are currently failing and need work. Test results are inserted using subunit (and thus anything that can output subunit or be converted into a subunit stream can be accepted). WWW: https://launchpad.net/testrepository PR: 228692 Submitted by: Kai Added: head/devel/py-testrepository/ head/devel/py-testrepository/Makefile (contents, props changed) head/devel/py-testrepository/distinfo (contents, props changed) head/devel/py-testrepository/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 19 21:46:26 2018 (r472824) +++ head/devel/Makefile Tue Jun 19 21:46:32 2018 (r472825) @@ -5054,6 +5054,7 @@ SUBDIR += py-testinfra SUBDIR += py-testoob SUBDIR += py-testpath + SUBDIR += py-testrepository SUBDIR += py-testresources SUBDIR += py-testscenarios SUBDIR += py-testtools Added: head/devel/py-testrepository/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-testrepository/Makefile Tue Jun 19 21:46:32 2018 (r472825) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= testrepository +DISTVERSION= 0.0.20 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= Repository of test results + +LICENSE= APACHE20 BSD3CLAUSE +LICENSE_COMB= dual +LICENSE_FILE_APACHE20= ${WRKSRC}/Apache-2.0 +LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/BSD + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fixtures>0:devel/py-fixtures@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-subunit>=0.0.18:devel/py-python-subunit@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}testtools>=0.9.30:devel/py-testtools@${PY_FLAVOR} + +USES= python shebangfix +USE_PYTHON= distutils concurrent autoplist +SHEBANG_FILES= testr + +NO_ARCH= yes + +.include Added: head/devel/py-testrepository/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-testrepository/distinfo Tue Jun 19 21:46:32 2018 (r472825) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527335603 +SHA256 (testrepository-0.0.20.tar.gz) = 752449bc98c20253ec4611c40564aea93d435a5bf3ff672208e01cc10e5858eb +SIZE (testrepository-0.0.20.tar.gz) = 84956 Added: head/devel/py-testrepository/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-testrepository/pkg-descr Tue Jun 19 21:46:32 2018 (r472825) @@ -0,0 +1,12 @@ +The package provides a database of test results which can be used as part of +developer workflow to ensure/check things like: + +- No commits without having had a test failure, test fixed cycle. +- No commits without new tests being added. +- What tests have failed since the last commit (to run just a subset). +- What tests are currently failing and need work. + +Test results are inserted using subunit (and thus anything that can output +subunit or be converted into a subunit stream can be accepted). + +WWW: https://launchpad.net/testrepository From owner-svn-ports-head@freebsd.org Tue Jun 19 21:48:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 320981010F38; Tue, 19 Jun 2018 21:48:17 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D77F877A7E; Tue, 19 Jun 2018 21:48:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BA21A19567; Tue, 19 Jun 2018 21:48:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JLmGLh046716; Tue, 19 Jun 2018 21:48:16 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JLmGZp046715; Tue, 19 Jun 2018 21:48:16 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806192148.w5JLmGZp046715@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 21:48:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472826 - head/audio/x42-plugins-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/x42-plugins-lv2 X-SVN-Commit-Revision: 472826 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 21:48:17 -0000 Author: yuri Date: Tue Jun 19 21:48:16 2018 New Revision: 472826 URL: https://svnweb.freebsd.org/changeset/ports/472826 Log: audio/x42-plugins-lv2: Switch to clang-5 to avoid regression in clang-6 Reported by: fallout Modified: head/audio/x42-plugins-lv2/Makefile Modified: head/audio/x42-plugins-lv2/Makefile ============================================================================== --- head/audio/x42-plugins-lv2/Makefile Tue Jun 19 21:46:32 2018 (r472825) +++ head/audio/x42-plugins-lv2/Makefile Tue Jun 19 21:48:16 2018 (r472826) @@ -3,7 +3,7 @@ PORTNAME= x42-plugins DISTVERSION= 20180320 # the version is published here: http://gareus.org/misc/x42-plugins.php -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://gareus.org/misc/x42-plugins/ PKGNAMESUFFIX= -lv2 @@ -42,6 +42,13 @@ OPTIONS_DEFAULT_amd64= SSE OPTIONS_DEFAULT_i386= SSE SSE_MAKE_ARGS= PORT_SIMD_FLAGS="-msse -msse2 -mfpmath=sse" + +# It suffers from the regression in clang-6: https://bugs.llvm.org/show_bug.cgi?id=36915 +LLVM_VER= 50 +BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER} +CPP= clang-cpp${LLVM_VER} +CC= clang${LLVM_VER} +CXX= clang++${LLVM_VER} post-patch: @${REINPLACE_CMD} 's| -O3||' \ From owner-svn-ports-head@freebsd.org Tue Jun 19 22:30:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACB311012E85; Tue, 19 Jun 2018 22:30:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5EA7A7911C; Tue, 19 Jun 2018 22:30:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A8DC19BDE; Tue, 19 Jun 2018 22:30:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JMU8Aj067002; Tue, 19 Jun 2018 22:30:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JMU8hP067001; Tue, 19 Jun 2018 22:30:08 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806192230.w5JMU8hP067001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 19 Jun 2018 22:30:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472827 - head/audio/caps-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/caps-lv2 X-SVN-Commit-Revision: 472827 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 22:30:08 -0000 Author: yuri Date: Tue Jun 19 22:30:07 2018 New Revision: 472827 URL: https://svnweb.freebsd.org/changeset/ports/472827 Log: audio/caps-lv2: Switch to clang-5 to avoid the regression in clang-6. Remove BROKEN statements which have this regression as a reason. Reported by: fallout Modified: head/audio/caps-lv2/Makefile Modified: head/audio/caps-lv2/Makefile ============================================================================== --- head/audio/caps-lv2/Makefile Tue Jun 19 21:48:16 2018 (r472826) +++ head/audio/caps-lv2/Makefile Tue Jun 19 22:30:07 2018 (r472827) @@ -3,6 +3,7 @@ PORTNAME= caps-lv2 PORTVERSION= g20170626 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org @@ -11,8 +12,6 @@ COMMENT= LV2 version of the C* Audio Plugin Suite LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_armv6= fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map -BROKEN_armv7= fails to build: dsp/v4f.h:153:12: no matching function for call to v4f_map BROKEN_powerpc64= fails to build: cc1plus: unrecognized command line option -std=c++11 BUILD_DEPENDS= lv2>0:audio/lv2 @@ -21,6 +20,13 @@ USES= gmake localbase USE_GITHUB= yes GH_ACCOUNT= moddevices GH_TAGNAME= 072e2fe + +# It suffers from the regression in clang-6: https://bugs.llvm.org/show_bug.cgi?id=36916 +LLVM_VER= 50 +BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER} +CPP= clang-cpp${LLVM_VER} +CC= clang${LLVM_VER} +CXX= clang++${LLVM_VER} post-patch: @${REINPLACE_CMD} -e "s|__APPLE__|__FreeBSD__|" \ From owner-svn-ports-head@freebsd.org Tue Jun 19 22:55:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFC6A10142FE; Tue, 19 Jun 2018 22:55:52 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65CC879DFD; Tue, 19 Jun 2018 22:55:52 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C7071A099; Tue, 19 Jun 2018 22:55:52 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JMtqFn081884; Tue, 19 Jun 2018 22:55:52 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JMtpgt081881; Tue, 19 Jun 2018 22:55:51 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201806192255.w5JMtpgt081881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Tue, 19 Jun 2018 22:55:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472828 - head/databases/redis X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: head/databases/redis X-SVN-Commit-Revision: 472828 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 22:55:53 -0000 Author: osa Date: Tue Jun 19 22:55:51 2018 New Revision: 472828 URL: https://svnweb.freebsd.org/changeset/ports/472828 Log: Upgrade from 4.0.9 to 4.0.10. Update CONFLICTS. Redis 4.0.10 fixes a number of important issues: * Important security issues related to the Lua scripting engine. Please check https://github.com/antirez/redis/issues/5017 for more information. * A bug with SCAN, SSCAN, HSCAN and ZSCAN, that may not return all the elements. We also add a regression test that can trigger the issue often when present, and may in theory be able to find unrelated regressions. * A PSYNC2 bug is fixed: Redis should not expire keys when saving RDB files because otherwise it is no longer possible to use such RDB file as a base for partial resynchronization. It no longer represents the right state. * Compatibility of AOF with RDB preamble when the RDB checksum is disabled. * Sentinel bug that in some cases prevented Sentinel to detect that the master was down immediately. A delay was added to the detection. * Other minor issues. Modified: head/databases/redis/Makefile head/databases/redis/distinfo Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Tue Jun 19 22:30:07 2018 (r472827) +++ head/databases/redis/Makefile Tue Jun 19 22:55:51 2018 (r472828) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 4.0.9 -PORTREVISION= 1 +DISTVERSION= 4.0.10 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ @@ -56,7 +55,7 @@ USES+= tcl:build LDFLAGS+= -lpthread -lm -lexecinfo -CONFLICTS?= redis-devel-4.* +CONFLICTS?= redis-devel-5.* USES+= gmake MAKE_ENV= "V=yo" Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Tue Jun 19 22:30:07 2018 (r472827) +++ head/databases/redis/distinfo Tue Jun 19 22:55:51 2018 (r472828) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523918138 -SHA256 (redis-4.0.9.tar.gz) = df4f73bc318e2f9ffb2d169a922dec57ec7c73dd07bccf875695dbeecd5ec510 -SIZE (redis-4.0.9.tar.gz) = 1737022 +TIMESTAMP = 1529448276 +SHA256 (redis-4.0.10.tar.gz) = 1db67435a704f8d18aec9b9637b373c34aa233d65b6e174bdac4c1b161f38ca4 +SIZE (redis-4.0.10.tar.gz) = 1738465 From owner-svn-ports-head@freebsd.org Tue Jun 19 23:00:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C678F10146F9; Tue, 19 Jun 2018 23:00:47 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 78F9079F92; Tue, 19 Jun 2018 23:00:47 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5A3DA1A1A8; Tue, 19 Jun 2018 23:00:47 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5JN0lKa084465; Tue, 19 Jun 2018 23:00:47 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JN0kHC084463; Tue, 19 Jun 2018 23:00:47 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201806192300.w5JN0kHC084463@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Tue, 19 Jun 2018 23:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472829 - head/databases/redis-devel X-SVN-Group: ports-head X-SVN-Commit-Author: osa X-SVN-Commit-Paths: head/databases/redis-devel X-SVN-Commit-Revision: 472829 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 23:00:48 -0000 Author: osa Date: Tue Jun 19 23:00:46 2018 New Revision: 472829 URL: https://svnweb.freebsd.org/changeset/ports/472829 Log: Upgrade from 5.0-rc1 to 5.0-rc3. Add experimental support for jemalloc. (*) Requested by: farrokhi (*) Modified: head/databases/redis-devel/Makefile head/databases/redis-devel/distinfo Modified: head/databases/redis-devel/Makefile ============================================================================== --- head/databases/redis-devel/Makefile Tue Jun 19 22:55:51 2018 (r472828) +++ head/databases/redis-devel/Makefile Tue Jun 19 23:00:46 2018 (r472829) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 5.0-rc1 +DISTVERSION= 5.0-rc3 CATEGORIES= databases PKGNAMESUFFIX= -devel @@ -14,10 +14,11 @@ LICENSE= BSD3CLAUSE USE_GITHUB= yes GH_ACCOUNT= antirez -OPTIONS_DEFINE= TESTS TRIB +OPTIONS_DEFINE= JEMALLOC TESTS TRIB OPTIONS_RADIO= EXTLUA OPTIONS_RADIO_EXTLUA= LUA LUAJIT OPTIONS_SUB= yes +JEMALLOC_DESC= Use jemalloc LUA_DESC= Use lang/lua instead of builtin lua LUAJIT_DESC= Use lang/luajit instead of builtin lua TESTS_DESC= Install lang/tcl for redis unit tests @@ -31,6 +32,10 @@ USE_GCC= yes CFLAGS+= -march=i586 .endif +.if ${PORT_OPTIONS:MJEMALLOC} +MAKE_ENV= "USE_JEMALLOC=yes" +.endif + .if ${PORT_OPTIONS:MTRIB} CATEGORIES+= ruby USE_RUBY= yes @@ -86,8 +91,11 @@ PLIST_SUB+= REDIS_USER=${USERS} \ REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} -.if ${PORT_OPTIONS:MLUAJIT} || ${PORT_OPTIONS:MLUA} post-patch: +.if ${PORT_OPTIONS:MJEMALLOC} + @${REINPLACE_CMD} '35s!Linux!FreeBSD!g' ${WRKSRC}/src/Makefile +.endif +.if ${PORT_OPTIONS:MLUAJIT} || ${PORT_OPTIONS:MLUA} @cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/ .endif Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Tue Jun 19 22:55:51 2018 (r472828) +++ head/databases/redis-devel/distinfo Tue Jun 19 23:00:46 2018 (r472829) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528123672 -SHA256 (antirez-redis-5.0-rc1_GH0.tar.gz) = b5b1abcd3e7594085fed85376e2bc0368bf60dd88afcc28cb0cc2250a6d798a0 -SIZE (antirez-redis-5.0-rc1_GH0.tar.gz) = 1918431 +TIMESTAMP = 1529067158 +SHA256 (antirez-redis-5.0-rc3_GH0.tar.gz) = 4bb2eeef3695d66d8b64767825acfeeb157d64536233eac7eae71b236fd6554f +SIZE (antirez-redis-5.0-rc3_GH0.tar.gz) = 1925158 From owner-svn-ports-head@freebsd.org Tue Jun 19 23:33:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A23F81015BC2; Tue, 19 Jun 2018 23:33:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FF417B0F1; Tue, 19 Jun 2018 23:33: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3158A1A6F5; Tue, 19 Jun 2018 23:33: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 w5JNXEU0002240; Tue, 19 Jun 2018 23:33:14 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5JNXDlx002237; Tue, 19 Jun 2018 23:33:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806192333.w5JNXDlx002237@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 19 Jun 2018 23:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472830 - in head/www: firefox-esr firefox-esr-i18n X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www: firefox-esr firefox-esr-i18n X-SVN-Commit-Revision: 472830 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jun 2018 23:33:15 -0000 Author: jbeich Date: Tue Jun 19 23:33:13 2018 New Revision: 472830 URL: https://svnweb.freebsd.org/changeset/ports/472830 Log: www/firefox-esr: update to 52.9.0 Changes: https://www.mozilla.org/firefox/52.9.0/releasenotes/ Security: cd81806c-26e7-4d4a-8425-02724a2f48af Modified: head/www/firefox-esr-i18n/Makefile (contents, props changed) head/www/firefox-esr-i18n/distinfo (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox-esr/distinfo (contents, props changed) Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-esr-i18n/Makefile Tue Jun 19 23:00:46 2018 (r472829) +++ head/www/firefox-esr-i18n/Makefile Tue Jun 19 23:33:13 2018 (r472830) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 52.8.1 +PORTVERSION= 52.9.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi Modified: head/www/firefox-esr-i18n/distinfo ============================================================================== --- head/www/firefox-esr-i18n/distinfo Tue Jun 19 23:00:46 2018 (r472829) +++ head/www/firefox-esr-i18n/distinfo Tue Jun 19 23:33:13 2018 (r472830) @@ -1,185 +1,185 @@ -TIMESTAMP = 1528258751 -SHA256 (xpi/firefox-52.8.1/ach.xpi) = 632b6e2b6317144071f983eccdbc4ae1d5ab188b80b05f855862ade0fe366663 -SIZE (xpi/firefox-52.8.1/ach.xpi) = 420286 -SHA256 (xpi/firefox-52.8.1/af.xpi) = 95fc20ba901f3e0f5d2072c428a224bbc6de87fe0035ce583861b1e8ae12a2c4 -SIZE (xpi/firefox-52.8.1/af.xpi) = 429469 -SHA256 (xpi/firefox-52.8.1/an.xpi) = 0811504b05656977f29fa260d75b523fbe3535c7928238dbb96b6acf4f963a18 -SIZE (xpi/firefox-52.8.1/an.xpi) = 437887 -SHA256 (xpi/firefox-52.8.1/ar.xpi) = 2124be48e91dcec4234c0e4a51d69b908d8498b0914a41d3eccf30358430f10b -SIZE (xpi/firefox-52.8.1/ar.xpi) = 466027 -SHA256 (xpi/firefox-52.8.1/as.xpi) = 784248bc17afaae43f5e95932f160cb050df4faa7049ea85446f82815d6a9e45 -SIZE (xpi/firefox-52.8.1/as.xpi) = 479634 -SHA256 (xpi/firefox-52.8.1/ast.xpi) = e82d1aa69411cb2dd44fd7f7b87a45e7b12f521740d6fd24f86633d1d4ff3bc3 -SIZE (xpi/firefox-52.8.1/ast.xpi) = 432775 -SHA256 (xpi/firefox-52.8.1/az.xpi) = 283a67e5bdd93b2dca0cf85ab9605bfa69d992329fb526d6cb745fc9c7953cb3 -SIZE (xpi/firefox-52.8.1/az.xpi) = 454923 -SHA256 (xpi/firefox-52.8.1/bg.xpi) = f43c8f670535743f7ca6d26b21092b906beb5b095f5e5f3461457af074ea1420 -SIZE (xpi/firefox-52.8.1/bg.xpi) = 487892 -SHA256 (xpi/firefox-52.8.1/bn-BD.xpi) = 4ac981e2276a1cb6c61cb68f15524c73a8d9d964b7dac61aba1a4fbec8677135 -SIZE (xpi/firefox-52.8.1/bn-BD.xpi) = 504634 -SHA256 (xpi/firefox-52.8.1/bn-IN.xpi) = f30011faf1a7f37c96934000b92c76b41bf6a9f5499233bdea063e92554c193b -SIZE (xpi/firefox-52.8.1/bn-IN.xpi) = 502114 -SHA256 (xpi/firefox-52.8.1/br.xpi) = 46fbc45894a97214b30a09919befab900a9aae5890ff7e7802c188cf036ab713 -SIZE (xpi/firefox-52.8.1/br.xpi) = 428216 -SHA256 (xpi/firefox-52.8.1/bs.xpi) = ecca1b9fc44507a168e86e523f72078a1e88e7192df955911266840c4628d208 -SIZE (xpi/firefox-52.8.1/bs.xpi) = 434429 -SHA256 (xpi/firefox-52.8.1/ca.xpi) = cf1d1ac0cdc75281c5a7bee8b228a44a34afcfbd83213a23e744877dc6f262d2 -SIZE (xpi/firefox-52.8.1/ca.xpi) = 443304 -SHA256 (xpi/firefox-52.8.1/cak.xpi) = 062b5905c03f4ea78dcae8f0c50cf0a2cdbdccd1ad612f77a763ba0aa200f7be -SIZE (xpi/firefox-52.8.1/cak.xpi) = 451910 -SHA256 (xpi/firefox-52.8.1/cs.xpi) = a3128b01325bd9e39dcf0f98198096c0ed255a600c170dea0307a8f4faf2c0be -SIZE (xpi/firefox-52.8.1/cs.xpi) = 444075 -SHA256 (xpi/firefox-52.8.1/cy.xpi) = 58ac90b38650ab4b9e448d1a07b6272346185c0ff797a107f1438fac4980e343 -SIZE (xpi/firefox-52.8.1/cy.xpi) = 429300 -SHA256 (xpi/firefox-52.8.1/da.xpi) = d18513821ddb69e7dd8d5f65e5f0a73b562a98bfe725afd53ab12b40c1719d50 -SIZE (xpi/firefox-52.8.1/da.xpi) = 424394 -SHA256 (xpi/firefox-52.8.1/de.xpi) = 3f08a3e68059373f6f42540ada840550f6a10a4aeebcee013fb4c4294be0e7d7 -SIZE (xpi/firefox-52.8.1/de.xpi) = 435228 -SHA256 (xpi/firefox-52.8.1/dsb.xpi) = 7e203d64c3f1171e49af45d1f7fe6e0ff1a551564fe7815b8e98050efbaa1b4f -SIZE (xpi/firefox-52.8.1/dsb.xpi) = 452167 -SHA256 (xpi/firefox-52.8.1/el.xpi) = a95bc7e9bb9b2a6bb4020c95d938315ae747f529714d164ef4020b9bc4fb26ba -SIZE (xpi/firefox-52.8.1/el.xpi) = 509237 -SHA256 (xpi/firefox-52.8.1/en-GB.xpi) = 5376b09cd3b4b6dc7cb192b6db4cc40cb5fe3f9131ebaed8a7ceb32f0874587f -SIZE (xpi/firefox-52.8.1/en-GB.xpi) = 412039 -SHA256 (xpi/firefox-52.8.1/en-US.xpi) = 52eff45deaed0c3f4702b7c38c95ad06630387725bad3a0f4656759475748115 -SIZE (xpi/firefox-52.8.1/en-US.xpi) = 413901 -SHA256 (xpi/firefox-52.8.1/en-ZA.xpi) = b480a33a10a103cb49e958c282def98c1a0f3f61dc8901ce358a14ea7a258e11 -SIZE (xpi/firefox-52.8.1/en-ZA.xpi) = 412212 -SHA256 (xpi/firefox-52.8.1/eo.xpi) = 0a7dfad99076966f0a2a74eada5fda422b7fc57b12b1cf127bb0f9f5f55d00f6 -SIZE (xpi/firefox-52.8.1/eo.xpi) = 430117 -SHA256 (xpi/firefox-52.8.1/es-AR.xpi) = 66f7a36ca1749241589355cc5b8c30b5db81a2c2eecbe50f77b94ee257e56103 -SIZE (xpi/firefox-52.8.1/es-AR.xpi) = 438659 -SHA256 (xpi/firefox-52.8.1/es-CL.xpi) = 2bc3335d68004688845d76f19de5deb40de5169704dcf0a8bef660e608b37c10 -SIZE (xpi/firefox-52.8.1/es-CL.xpi) = 438407 -SHA256 (xpi/firefox-52.8.1/es-ES.xpi) = 321db5bad9f491f5928875830ebae1c1f6084bb0acddf4f76b3998a641f04f3d -SIZE (xpi/firefox-52.8.1/es-ES.xpi) = 337614 -SHA256 (xpi/firefox-52.8.1/es-MX.xpi) = d14ab4075bf8a659f86910db024ad7141ed6b27e4487664845f60e2e39afb351 -SIZE (xpi/firefox-52.8.1/es-MX.xpi) = 441126 -SHA256 (xpi/firefox-52.8.1/et.xpi) = c87bbbb92dd7fe3c3b3755a7d10fd46f6ca57cfdefd00ba69291504df7c60d69 -SIZE (xpi/firefox-52.8.1/et.xpi) = 425113 -SHA256 (xpi/firefox-52.8.1/eu.xpi) = 43a22c7b625f59b8347140b4378e8cb999dfdadedbe7b565ab45ff32ed10ead0 -SIZE (xpi/firefox-52.8.1/eu.xpi) = 431124 -SHA256 (xpi/firefox-52.8.1/fa.xpi) = 66e8d0298fe9d186c2bd0a2b7e4d782d0dff07e2ac1e65b4d0132a6326640c35 -SIZE (xpi/firefox-52.8.1/fa.xpi) = 483990 -SHA256 (xpi/firefox-52.8.1/ff.xpi) = 6bc2bd872aa51dc7fab669c17acdbf035891e6f357661bdf99897ca725750753 -SIZE (xpi/firefox-52.8.1/ff.xpi) = 433662 -SHA256 (xpi/firefox-52.8.1/fi.xpi) = 814eabae8b31084dbf5c4a4c0f85e59daaaf61447714d799f5a9dd8cce5d8761 -SIZE (xpi/firefox-52.8.1/fi.xpi) = 422807 -SHA256 (xpi/firefox-52.8.1/fr.xpi) = 7caf043b2186db59edd483035c148686fc9d26bf2e635f709668905a09f76cf3 -SIZE (xpi/firefox-52.8.1/fr.xpi) = 442944 -SHA256 (xpi/firefox-52.8.1/fy-NL.xpi) = 3169a8bc2bb3665edff1e6704f86a0cf253f7e5a2a501eebb0380526bc93181c -SIZE (xpi/firefox-52.8.1/fy-NL.xpi) = 437702 -SHA256 (xpi/firefox-52.8.1/ga-IE.xpi) = e2dec620cd330af4b98e8d12f7651f0bb479bfb75ce62a1f2e3ffde6f23968bb -SIZE (xpi/firefox-52.8.1/ga-IE.xpi) = 450875 -SHA256 (xpi/firefox-52.8.1/gd.xpi) = 8fbceed4ae372bd4cdd2082ff61f5cd3f9b1405ef22cc0ac5dbffd6f88f1e38a -SIZE (xpi/firefox-52.8.1/gd.xpi) = 439988 -SHA256 (xpi/firefox-52.8.1/gl.xpi) = 1dfb325255088041b17932db0da0075e26ebeae304eaeae6b2b98d95b06d4495 -SIZE (xpi/firefox-52.8.1/gl.xpi) = 440039 -SHA256 (xpi/firefox-52.8.1/gn.xpi) = 56071566f440bc2508d90962c3236b6e78fe81158c9c26db0e30af1f35b34683 -SIZE (xpi/firefox-52.8.1/gn.xpi) = 448957 -SHA256 (xpi/firefox-52.8.1/gu-IN.xpi) = a0a71f63dcb977bacd20552986b180bd1737ae50aa3be81a9de1177d760277f2 -SIZE (xpi/firefox-52.8.1/gu-IN.xpi) = 482103 -SHA256 (xpi/firefox-52.8.1/he.xpi) = ecae086f96f78153b71fb519e9cf3938fa8adad9f9d305858bbd579927edc264 -SIZE (xpi/firefox-52.8.1/he.xpi) = 447927 -SHA256 (xpi/firefox-52.8.1/hi-IN.xpi) = 45c9d6414e360ff8d9250d790b534ec3a53a4073406fa46ec0bb4e86ffd33b70 -SIZE (xpi/firefox-52.8.1/hi-IN.xpi) = 499257 -SHA256 (xpi/firefox-52.8.1/hr.xpi) = fdb0ef19ea743e969dfee5003e3ad6d11effab45e7e8c21c9748fccb674c1104 -SIZE (xpi/firefox-52.8.1/hr.xpi) = 440148 -SHA256 (xpi/firefox-52.8.1/hsb.xpi) = 2de89d29b86a4bc26bb0b9c2015e8c2f23eec78703f759009f39126afe77f703 -SIZE (xpi/firefox-52.8.1/hsb.xpi) = 450002 -SHA256 (xpi/firefox-52.8.1/hu.xpi) = e51f468caa1788778c3bcd4129445206e5d30d950b27895c71902b59eac0e19b -SIZE (xpi/firefox-52.8.1/hu.xpi) = 451496 -SHA256 (xpi/firefox-52.8.1/hy-AM.xpi) = 9ee65e2fdb96517b78bc726a91db6734edb07c9119b2a7caedd7f0b7ff27edef -SIZE (xpi/firefox-52.8.1/hy-AM.xpi) = 488414 -SHA256 (xpi/firefox-52.8.1/id.xpi) = 16232e27f3401f0b0f32140a1df10789552de350075ec805e3fd25851d302242 -SIZE (xpi/firefox-52.8.1/id.xpi) = 418764 -SHA256 (xpi/firefox-52.8.1/is.xpi) = c424af7cde25bb2e85beda699fd795e791c06591ee12083fc89b3906d5cb5e78 -SIZE (xpi/firefox-52.8.1/is.xpi) = 435338 -SHA256 (xpi/firefox-52.8.1/it.xpi) = 378c435ae58b915e8de92b4957cb9bb7a8ce05c61978477561da483facc099a1 -SIZE (xpi/firefox-52.8.1/it.xpi) = 331969 -SHA256 (xpi/firefox-52.8.1/ja.xpi) = 7ba26e286a54fe7789ce6b8218ed8656c3b171a9ad1d3d42498064cb858081fb -SIZE (xpi/firefox-52.8.1/ja.xpi) = 488343 -SHA256 (xpi/firefox-52.8.1/ka.xpi) = 47edcc6ce5221110c1263eeae00ccc684b2e89f9941ae6840a2367f36451b3b1 -SIZE (xpi/firefox-52.8.1/ka.xpi) = 468023 -SHA256 (xpi/firefox-52.8.1/kab.xpi) = 38358026a0cfe02cba41e71089a4cf165a86481469cd6918763b0a073354c047 -SIZE (xpi/firefox-52.8.1/kab.xpi) = 437246 -SHA256 (xpi/firefox-52.8.1/kk.xpi) = 8320d43b219d9f6d3c5dc66235d1942901aaf576c3ec4ac2fbaffc4cf4228211 -SIZE (xpi/firefox-52.8.1/kk.xpi) = 496939 -SHA256 (xpi/firefox-52.8.1/km.xpi) = 42f3c388e6b25b2c3af92a881c980476e53d0e4f05cfa0721de2def3b7667efa -SIZE (xpi/firefox-52.8.1/km.xpi) = 512988 -SHA256 (xpi/firefox-52.8.1/kn.xpi) = b62ea2f7ccb0ba081d28d447feed6d656907ed806e27c8e9b32b96930592e1a9 -SIZE (xpi/firefox-52.8.1/kn.xpi) = 512199 -SHA256 (xpi/firefox-52.8.1/ko.xpi) = 2f671ad06b15921869e0f73c863cb20532349f97f6c1b9821a5a1513e643ec27 -SIZE (xpi/firefox-52.8.1/ko.xpi) = 463630 -SHA256 (xpi/firefox-52.8.1/lij.xpi) = 4c23b76cf4e49401ca2eefb3e72cf89f32076e25866e5bb75582a189a54098ab -SIZE (xpi/firefox-52.8.1/lij.xpi) = 413816 -SHA256 (xpi/firefox-52.8.1/lt.xpi) = 73700ad9b92a57fa56ce2d38ebe9353cfd38594fe5ee438b8d67d92cbe790dec -SIZE (xpi/firefox-52.8.1/lt.xpi) = 452235 -SHA256 (xpi/firefox-52.8.1/lv.xpi) = 145ba020a416c5af0782d48771ad0362856656553bc26f90a20df2ae20cfc74f -SIZE (xpi/firefox-52.8.1/lv.xpi) = 441096 -SHA256 (xpi/firefox-52.8.1/mai.xpi) = 8f7ed993a8875d93b47c4a92cab06438689a058231d37fd635b6a9675bcbdf4c -SIZE (xpi/firefox-52.8.1/mai.xpi) = 492585 -SHA256 (xpi/firefox-52.8.1/mk.xpi) = 07eb181ee7d6f2760d9f46d2c7f60943128779e8aab90225d988269c6fb64b1d -SIZE (xpi/firefox-52.8.1/mk.xpi) = 488846 -SHA256 (xpi/firefox-52.8.1/ml.xpi) = d67896d54365c7a3eac5b4c9c3e3ff59804f31cdeedead9348f32834cb0f7caf -SIZE (xpi/firefox-52.8.1/ml.xpi) = 516486 -SHA256 (xpi/firefox-52.8.1/mr.xpi) = d2b5e7c07a6a1f8ef103be144a40dcccf127bd02a0ecc83f2d8e7237dd4b4481 -SIZE (xpi/firefox-52.8.1/mr.xpi) = 495178 -SHA256 (xpi/firefox-52.8.1/ms.xpi) = 09da219a8c38d71a9a1a83ca8282779d28542b25493a766b2d2b077994ba3e65 -SIZE (xpi/firefox-52.8.1/ms.xpi) = 428635 -SHA256 (xpi/firefox-52.8.1/nb-NO.xpi) = a36926083ec566c395599643de82928948aac42bf0d01170ae61dce64b578303 -SIZE (xpi/firefox-52.8.1/nb-NO.xpi) = 427148 -SHA256 (xpi/firefox-52.8.1/nl.xpi) = 6afbb9148a02506ed27d290c8607196b928fad0247763a4323d392fcd4aefbc8 -SIZE (xpi/firefox-52.8.1/nl.xpi) = 432007 -SHA256 (xpi/firefox-52.8.1/nn-NO.xpi) = 175b3feda8cba01d15f0f643bc36eb5ec68f9f87db2eca121266e23432f5355a -SIZE (xpi/firefox-52.8.1/nn-NO.xpi) = 428645 -SHA256 (xpi/firefox-52.8.1/or.xpi) = 1b2d3ead83c1191056d7a913e452149e526452c696e465ee91cbee71c4590203 -SIZE (xpi/firefox-52.8.1/or.xpi) = 489664 -SHA256 (xpi/firefox-52.8.1/pa-IN.xpi) = a5f04dcf0381246c5327e12f147eefa030a9e9a93aaa650aee17148a0e1f7a8a -SIZE (xpi/firefox-52.8.1/pa-IN.xpi) = 469325 -SHA256 (xpi/firefox-52.8.1/pl.xpi) = 3d409c919b6a5fc3d1c937fb42eddece2a5fcfa98c878cb69160dc6aad6e104f -SIZE (xpi/firefox-52.8.1/pl.xpi) = 352851 -SHA256 (xpi/firefox-52.8.1/pt-BR.xpi) = c8978edceb8d31e7ddee3e68c99eaa3c67efd12e8f1e53eb8089749ae4ddb326 -SIZE (xpi/firefox-52.8.1/pt-BR.xpi) = 430903 -SHA256 (xpi/firefox-52.8.1/pt-PT.xpi) = f4f17bed7e66b09728072f34b62b6523e0d05e04b83014299ffaf610e731058e -SIZE (xpi/firefox-52.8.1/pt-PT.xpi) = 436727 -SHA256 (xpi/firefox-52.8.1/rm.xpi) = c2c78c21c5215478501a0fa57e7b903568609b17dc2c6a80ffe98ff76cb4a527 -SIZE (xpi/firefox-52.8.1/rm.xpi) = 427341 -SHA256 (xpi/firefox-52.8.1/ro.xpi) = 92a5017fb0c1080ce65b95048a4725041479faabab81290afc53a75c54837d17 -SIZE (xpi/firefox-52.8.1/ro.xpi) = 442585 -SHA256 (xpi/firefox-52.8.1/ru.xpi) = 22ee5cc68c6b0b96e8a39b194c571d96f37f74a70739b0d69005442a3fdd63fd -SIZE (xpi/firefox-52.8.1/ru.xpi) = 395364 -SHA256 (xpi/firefox-52.8.1/si.xpi) = 35289fe1110076233906539c8880b69f2aeaea4d0d12cc5698edea5e6e269710 -SIZE (xpi/firefox-52.8.1/si.xpi) = 484604 -SHA256 (xpi/firefox-52.8.1/sk.xpi) = fdf3108e0af60562c0faa66cd1949a64597431251ea415bc66f478e282804c24 -SIZE (xpi/firefox-52.8.1/sk.xpi) = 455820 -SHA256 (xpi/firefox-52.8.1/sl.xpi) = d9d2ab4e10b02b580d4d921fbbf6ca9d60b6b5e03553b9357e13798e8c7c77e7 -SIZE (xpi/firefox-52.8.1/sl.xpi) = 433482 -SHA256 (xpi/firefox-52.8.1/son.xpi) = f1fb1490e9fa89575d612c5ceb98a44a7bf5a222c2c95f6e12d86930076d246a -SIZE (xpi/firefox-52.8.1/son.xpi) = 427859 -SHA256 (xpi/firefox-52.8.1/sq.xpi) = 60c3816f4fc6a92c7e244368eb4f702287b5745fe6ccc7ca5cf84d559cb44cd6 -SIZE (xpi/firefox-52.8.1/sq.xpi) = 440802 -SHA256 (xpi/firefox-52.8.1/sr.xpi) = 9a8429db94323a1bcfcd53c29dc77b1c36006c25ac0810a4c38d688d5518b0df -SIZE (xpi/firefox-52.8.1/sr.xpi) = 463394 -SHA256 (xpi/firefox-52.8.1/sv-SE.xpi) = bd2244bc00bfc38fec5eb9ed04e597dea391a6519942451ec2a4023504359a16 -SIZE (xpi/firefox-52.8.1/sv-SE.xpi) = 433910 -SHA256 (xpi/firefox-52.8.1/ta.xpi) = 833bbc95cdb6ee9dcc47c5dfcd769dc81fe298da8933261ba7808e69825c2e5f -SIZE (xpi/firefox-52.8.1/ta.xpi) = 487542 -SHA256 (xpi/firefox-52.8.1/te.xpi) = d235650a27e2278a6dc23c5beb624f1b19882dcaf1300366654f786b978b65a3 -SIZE (xpi/firefox-52.8.1/te.xpi) = 507988 -SHA256 (xpi/firefox-52.8.1/th.xpi) = 1d66ad725fd3590ed53c586499d2273aeaccb5de1fa55c9a1f1e833ac862b657 -SIZE (xpi/firefox-52.8.1/th.xpi) = 482022 -SHA256 (xpi/firefox-52.8.1/tr.xpi) = cbc575ed5673066f3700dfe60194cb437cb4218e8cdf4e070b787dd9b5554b71 -SIZE (xpi/firefox-52.8.1/tr.xpi) = 443673 -SHA256 (xpi/firefox-52.8.1/uk.xpi) = 319e9a47bf54214d88e9f94200f907d56cfd2877fc7959e4a1c7f20410c07ca2 -SIZE (xpi/firefox-52.8.1/uk.xpi) = 495095 -SHA256 (xpi/firefox-52.8.1/uz.xpi) = 9eb7a5a39428d9ff751a555cbf28c0148ad3d81ba63e20ad09aea880d96584c8 -SIZE (xpi/firefox-52.8.1/uz.xpi) = 440564 -SHA256 (xpi/firefox-52.8.1/vi.xpi) = 3830fe2cfcb78012b3283539739563977c9b49bac85274b34cda98996301ecc3 -SIZE (xpi/firefox-52.8.1/vi.xpi) = 450805 -SHA256 (xpi/firefox-52.8.1/xh.xpi) = 79139bac850fcb2c35f0abb466c82540efa742624b4a8ee90858b3ab7e704b65 -SIZE (xpi/firefox-52.8.1/xh.xpi) = 441173 -SHA256 (xpi/firefox-52.8.1/zh-CN.xpi) = 0f7d582a2dcd54c6c226e6c20f7dbb61636db1f1b292bf5735f4aa9004a9e803 -SIZE (xpi/firefox-52.8.1/zh-CN.xpi) = 461678 -SHA256 (xpi/firefox-52.8.1/zh-TW.xpi) = 64d83824bce780a32107a7f4886a40305e1abccecf229431722426244ce72dc5 -SIZE (xpi/firefox-52.8.1/zh-TW.xpi) = 453068 +TIMESTAMP = 1529363060 +SHA256 (xpi/firefox-52.9.0/ach.xpi) = f0430c3a56a450f4bf5c21caf847a279cb19e8a5373939a13f537f8b7bab7367 +SIZE (xpi/firefox-52.9.0/ach.xpi) = 420286 +SHA256 (xpi/firefox-52.9.0/af.xpi) = e271fa624527ff760878cd420942c704077fecbf723de22d3dd9287a60e076af +SIZE (xpi/firefox-52.9.0/af.xpi) = 429469 +SHA256 (xpi/firefox-52.9.0/an.xpi) = 0d58ab44168656d85fc4d2a726ab39f7a79a5e3d161cd21c32b190bbae05e560 +SIZE (xpi/firefox-52.9.0/an.xpi) = 437887 +SHA256 (xpi/firefox-52.9.0/ar.xpi) = 1658b2782ff9ba538f9215d1214be2d201293739fba29cade86205506465aab4 +SIZE (xpi/firefox-52.9.0/ar.xpi) = 466028 +SHA256 (xpi/firefox-52.9.0/as.xpi) = bb14fbbd04c85f4ad09c98afe27a8eccfc86b965e269c6599cbb76507e1018d7 +SIZE (xpi/firefox-52.9.0/as.xpi) = 479635 +SHA256 (xpi/firefox-52.9.0/ast.xpi) = 0a9fb3717235352a72ba21707dc5bf15337e16a7cf16ebe72a9695a238d26648 +SIZE (xpi/firefox-52.9.0/ast.xpi) = 432775 +SHA256 (xpi/firefox-52.9.0/az.xpi) = 9eb05526f4e3fe539d3c756d617cd50780116bbd87a3eda5817f156c30bfa286 +SIZE (xpi/firefox-52.9.0/az.xpi) = 454923 +SHA256 (xpi/firefox-52.9.0/bg.xpi) = dabfefa33d774e99047e30fd1ca2bd6049ed98d8ed7f1e70d92573b9c5ec8dd5 +SIZE (xpi/firefox-52.9.0/bg.xpi) = 487891 +SHA256 (xpi/firefox-52.9.0/bn-BD.xpi) = 4ba54f6692543397f7694169dba0568331ef60cb09b9a5b08e8170a7bf6a75fe +SIZE (xpi/firefox-52.9.0/bn-BD.xpi) = 504634 +SHA256 (xpi/firefox-52.9.0/bn-IN.xpi) = 11e44f831003ed4cfb929cbbe7c7a9a80830b9d3e0da29cb2f40e8f042fd6ffb +SIZE (xpi/firefox-52.9.0/bn-IN.xpi) = 502114 +SHA256 (xpi/firefox-52.9.0/br.xpi) = fe9d9df8b4437d3bb9b160dfef6e908bb88ae99546a6a05691ea68417dd96816 +SIZE (xpi/firefox-52.9.0/br.xpi) = 428216 +SHA256 (xpi/firefox-52.9.0/bs.xpi) = 8d2074da2ddece656e1b65a957cb1ffc027ce21df62e83acaf57deb37c0481ab +SIZE (xpi/firefox-52.9.0/bs.xpi) = 434428 +SHA256 (xpi/firefox-52.9.0/ca.xpi) = 66a1d3ba08d4324706763eaebbe4b4d60b02fb6710187681100c342d7d4b5ad8 +SIZE (xpi/firefox-52.9.0/ca.xpi) = 443304 +SHA256 (xpi/firefox-52.9.0/cak.xpi) = 324e161c85f2287502e04abab1de88e8b4c0924a30996aa848f859d2d1d556e3 +SIZE (xpi/firefox-52.9.0/cak.xpi) = 451911 +SHA256 (xpi/firefox-52.9.0/cs.xpi) = 8ea19529b0536099bee5ad65799bb422a6e9460fe9670c951e8609eef54133d6 +SIZE (xpi/firefox-52.9.0/cs.xpi) = 444075 +SHA256 (xpi/firefox-52.9.0/cy.xpi) = 0e5f8613768bfa6456b781effb1982bd78f8405c30ee3e763d95ed5cae0de97f +SIZE (xpi/firefox-52.9.0/cy.xpi) = 429300 +SHA256 (xpi/firefox-52.9.0/da.xpi) = b50c30e90580b0c8bc6871dae8639a01019618caf713c1b8bae32485f0e8b167 +SIZE (xpi/firefox-52.9.0/da.xpi) = 424394 +SHA256 (xpi/firefox-52.9.0/de.xpi) = f59ed6f6466815a47ba0e62bee6f589c851f1d6248df0ad0b439e31929e61338 +SIZE (xpi/firefox-52.9.0/de.xpi) = 435228 +SHA256 (xpi/firefox-52.9.0/dsb.xpi) = c8f57aec50a10b6475ef4d06d7c2de794918c1ee17596a80445cf90c1e450082 +SIZE (xpi/firefox-52.9.0/dsb.xpi) = 452168 +SHA256 (xpi/firefox-52.9.0/el.xpi) = c3bcece23d752bc3bb6bf36f135354f6abaa244bdd82a37ebdef2024b97efd65 +SIZE (xpi/firefox-52.9.0/el.xpi) = 509237 +SHA256 (xpi/firefox-52.9.0/en-GB.xpi) = 2d0c00c47132e19c470c23758df33d0fa5583efab1a3b5648b18148dded4e7f7 +SIZE (xpi/firefox-52.9.0/en-GB.xpi) = 412038 +SHA256 (xpi/firefox-52.9.0/en-US.xpi) = 55586600fa4bcb6223998639116e47a0ecadde8278fc8db54bfe7f1deecd839b +SIZE (xpi/firefox-52.9.0/en-US.xpi) = 413902 +SHA256 (xpi/firefox-52.9.0/en-ZA.xpi) = f76a6b8ccaaffbbeade411976d71176dd598c30a0fc576caef7b8e2140e7e8ea +SIZE (xpi/firefox-52.9.0/en-ZA.xpi) = 412212 +SHA256 (xpi/firefox-52.9.0/eo.xpi) = e81a9b48b0c87944de07a2cb7bb3b1329137f283c5dd0d81b05ed8b5e62e66f0 +SIZE (xpi/firefox-52.9.0/eo.xpi) = 430117 +SHA256 (xpi/firefox-52.9.0/es-AR.xpi) = 3567cddae4a303042938d2a2d744dade06ab77831816c0f32295cbebe79c75ca +SIZE (xpi/firefox-52.9.0/es-AR.xpi) = 438659 +SHA256 (xpi/firefox-52.9.0/es-CL.xpi) = 657225821c9c37fdfe12d09ac561d2702f20b2d17c9141f7e7bbcf7a1d7494e4 +SIZE (xpi/firefox-52.9.0/es-CL.xpi) = 438407 +SHA256 (xpi/firefox-52.9.0/es-ES.xpi) = 9b67115c23cebe3e3ce57c3a19dd7a5afaaf98e18e06357c4eace53b4808f302 +SIZE (xpi/firefox-52.9.0/es-ES.xpi) = 337614 +SHA256 (xpi/firefox-52.9.0/es-MX.xpi) = 348b9a59d5c621e807c002be4f57f616ed51da2d6e750611bb18da9081a61b42 +SIZE (xpi/firefox-52.9.0/es-MX.xpi) = 441127 +SHA256 (xpi/firefox-52.9.0/et.xpi) = 487f6643e335e8a9cec42f14d50140de2f0a3b6d55af87aa123c432fd5f5eda1 +SIZE (xpi/firefox-52.9.0/et.xpi) = 425113 +SHA256 (xpi/firefox-52.9.0/eu.xpi) = 63aac2681aae850d61b69c0411013ce2ae2c56bc428f174934668a3affd5f3fa +SIZE (xpi/firefox-52.9.0/eu.xpi) = 431124 +SHA256 (xpi/firefox-52.9.0/fa.xpi) = b8799469657e5c39cea9ecb034db50bd0cd28a8ce146d5335a14ba22245291b7 +SIZE (xpi/firefox-52.9.0/fa.xpi) = 483990 +SHA256 (xpi/firefox-52.9.0/ff.xpi) = 2e794d017814967a4a142d53c8d6004d8f15f85d42b1d9d31bef989f1ee147f3 +SIZE (xpi/firefox-52.9.0/ff.xpi) = 433662 +SHA256 (xpi/firefox-52.9.0/fi.xpi) = d8570f7716ad0b1e9fd59dc731f972b0518dd2dcaa1e41014ee6ce1de24795c1 +SIZE (xpi/firefox-52.9.0/fi.xpi) = 422807 +SHA256 (xpi/firefox-52.9.0/fr.xpi) = d57f183a96c7d57502a884458839518b20b183afcf88662c5a3fac4198afa320 +SIZE (xpi/firefox-52.9.0/fr.xpi) = 442944 +SHA256 (xpi/firefox-52.9.0/fy-NL.xpi) = c00ec788d868a77fe1b6fa1532ededef75b1339c803b7b6ba75e5029c0d8a4e9 +SIZE (xpi/firefox-52.9.0/fy-NL.xpi) = 437699 +SHA256 (xpi/firefox-52.9.0/ga-IE.xpi) = 19fd25e53641298c2d726cda6ed60a1bf978813331405b04adecb101213c545b +SIZE (xpi/firefox-52.9.0/ga-IE.xpi) = 450875 +SHA256 (xpi/firefox-52.9.0/gd.xpi) = 14291f4955b8d24f01586c4e2b46ef00cf2b684f83fdb2f62ee4a5eea8fac8a3 +SIZE (xpi/firefox-52.9.0/gd.xpi) = 439988 +SHA256 (xpi/firefox-52.9.0/gl.xpi) = aa5b1ab335018aa7e45ef7274fa37807a4a7999224aa6632a19f18e50a6558d4 +SIZE (xpi/firefox-52.9.0/gl.xpi) = 440039 +SHA256 (xpi/firefox-52.9.0/gn.xpi) = bb5829ca7512341d4d5c395ecfda75e1d8a1f66725032f09533c60bfa7c32efe +SIZE (xpi/firefox-52.9.0/gn.xpi) = 448957 +SHA256 (xpi/firefox-52.9.0/gu-IN.xpi) = b0b7ffdc54d1067f4405f33a568941d738dcc0ad9a045b66fc50ca4e05a25f2d +SIZE (xpi/firefox-52.9.0/gu-IN.xpi) = 482104 +SHA256 (xpi/firefox-52.9.0/he.xpi) = 5054a5f1071c926290dbffd5820ff19214e22ad6a63662bc93a5c1af885d14e7 +SIZE (xpi/firefox-52.9.0/he.xpi) = 447928 +SHA256 (xpi/firefox-52.9.0/hi-IN.xpi) = 444a522fdcac5ce9d4901de58fa6e6fa9c5b8a772755c6d1eec120e22aa5c964 +SIZE (xpi/firefox-52.9.0/hi-IN.xpi) = 499257 +SHA256 (xpi/firefox-52.9.0/hr.xpi) = 553bdf6a60bded015ceeef002db99028c9334a4fc2825f9f147ac922f923b1e2 +SIZE (xpi/firefox-52.9.0/hr.xpi) = 440149 +SHA256 (xpi/firefox-52.9.0/hsb.xpi) = 4838a040484a5e06e641c05f04f83c3f69b8e6c214e38589e154d53d61e96004 +SIZE (xpi/firefox-52.9.0/hsb.xpi) = 450002 +SHA256 (xpi/firefox-52.9.0/hu.xpi) = 2d1a34a83c15f87c05c5be22dd48fd447e1d0772843e4ae3fbd64f17a6660acc +SIZE (xpi/firefox-52.9.0/hu.xpi) = 451496 +SHA256 (xpi/firefox-52.9.0/hy-AM.xpi) = 818c2dbfdc5900391e8aab5d27418bdc88959b66164e0a57890cff5ae56d5b9d +SIZE (xpi/firefox-52.9.0/hy-AM.xpi) = 488414 +SHA256 (xpi/firefox-52.9.0/id.xpi) = 1c6a6c1c5024a81df3f858ab8038c4228630d9a4eca073cabbe35fb884503ec7 +SIZE (xpi/firefox-52.9.0/id.xpi) = 418764 +SHA256 (xpi/firefox-52.9.0/is.xpi) = c85bb05e1e43bb34a469423efd70d4b3d0bd0266d8f851c959687d2ba346f197 +SIZE (xpi/firefox-52.9.0/is.xpi) = 435339 +SHA256 (xpi/firefox-52.9.0/it.xpi) = 5b4a5350d9f44cc9535987c50da886b52922402d1d607008239aa289f23f9a34 +SIZE (xpi/firefox-52.9.0/it.xpi) = 331969 +SHA256 (xpi/firefox-52.9.0/ja.xpi) = aaed4fa95b9f1766f4a2e2537b15554b7a8821d105f27254c4bbb23cef22cb47 +SIZE (xpi/firefox-52.9.0/ja.xpi) = 488343 +SHA256 (xpi/firefox-52.9.0/ka.xpi) = c1aa4b8781925a68975a0e4a7ea419a8c2c8312fc5d81f2b35f5aabfa0a379a5 +SIZE (xpi/firefox-52.9.0/ka.xpi) = 468023 +SHA256 (xpi/firefox-52.9.0/kab.xpi) = 13a4f598164775e3a5fcffcca073460c5760294c54bf8d3b86c4d3e6354bac42 +SIZE (xpi/firefox-52.9.0/kab.xpi) = 437247 +SHA256 (xpi/firefox-52.9.0/kk.xpi) = c07c624b39f030e2b670c7b95df82ce3118af2a46c9a4ce2bd4d24c3405a1104 +SIZE (xpi/firefox-52.9.0/kk.xpi) = 496939 +SHA256 (xpi/firefox-52.9.0/km.xpi) = 207736a063247eddb70838c1b8101c2b6fa8e4b8fff55447378780af6c2a5646 +SIZE (xpi/firefox-52.9.0/km.xpi) = 512989 +SHA256 (xpi/firefox-52.9.0/kn.xpi) = ebffd88e898ad8aedefeb15d85628ecc02014ba17578fa01347e536c16eba46a +SIZE (xpi/firefox-52.9.0/kn.xpi) = 512200 +SHA256 (xpi/firefox-52.9.0/ko.xpi) = 465c5cf939297ea1a4b2725ac6b647f084a34000990f0c6bc2e755313c57691a +SIZE (xpi/firefox-52.9.0/ko.xpi) = 463630 +SHA256 (xpi/firefox-52.9.0/lij.xpi) = 8c38efcfb7b55a05c8435a175b08f3f040b9ba670e658b3c010c71aa758242f4 +SIZE (xpi/firefox-52.9.0/lij.xpi) = 413817 +SHA256 (xpi/firefox-52.9.0/lt.xpi) = 74ea5a3e367d775ebd31eeba01650d8d380ac2dc863aa26eafe17e431b0b40be +SIZE (xpi/firefox-52.9.0/lt.xpi) = 452235 +SHA256 (xpi/firefox-52.9.0/lv.xpi) = 107e399c050de243083d4d05a184de9ceb645fba067bd6c97ac6ba692f3cbc9a +SIZE (xpi/firefox-52.9.0/lv.xpi) = 441096 +SHA256 (xpi/firefox-52.9.0/mai.xpi) = 5904ecb6bee710f6a25eb9eb4a70ce3b32cc921545f4d3aae089573a8ced89c7 +SIZE (xpi/firefox-52.9.0/mai.xpi) = 492585 +SHA256 (xpi/firefox-52.9.0/mk.xpi) = 071310d0e7c2b0fdfbdc8f2646660383ec590f933d2f72a6464414976d873b21 +SIZE (xpi/firefox-52.9.0/mk.xpi) = 488846 +SHA256 (xpi/firefox-52.9.0/ml.xpi) = 5da1ac0f791df172435fe6e9dc0f8fed5a54bec5bcc219380718b6dec0739a56 +SIZE (xpi/firefox-52.9.0/ml.xpi) = 516487 +SHA256 (xpi/firefox-52.9.0/mr.xpi) = dd9da1a0f0a33c2fcc6a9a149c97314478d62471c33aec00f0324836b894748a +SIZE (xpi/firefox-52.9.0/mr.xpi) = 495178 +SHA256 (xpi/firefox-52.9.0/ms.xpi) = 76905cf4d180915ab1dd8ce07acc618ee0a8f32e25245aa193a0285c39181ae6 +SIZE (xpi/firefox-52.9.0/ms.xpi) = 428635 +SHA256 (xpi/firefox-52.9.0/nb-NO.xpi) = badc78dfdc174feb0b3c360ff6f087aeac2c00ab177768f5fc3d9db37eb03265 +SIZE (xpi/firefox-52.9.0/nb-NO.xpi) = 427148 +SHA256 (xpi/firefox-52.9.0/nl.xpi) = e87999ef3c49563295fe7229127c5c32b2a1deaed77d142923a1c02f1eacdceb +SIZE (xpi/firefox-52.9.0/nl.xpi) = 432007 +SHA256 (xpi/firefox-52.9.0/nn-NO.xpi) = 65be2e545586bda4c63a4ea17f904cd93e8a5ab69e8f692dfdb03e4348ca22ae +SIZE (xpi/firefox-52.9.0/nn-NO.xpi) = 428645 +SHA256 (xpi/firefox-52.9.0/or.xpi) = e6d616793b35f5a3ec08eaf21a58fde941f4e704478ad728e754d3b9db6a9df6 +SIZE (xpi/firefox-52.9.0/or.xpi) = 489664 +SHA256 (xpi/firefox-52.9.0/pa-IN.xpi) = 15705ba576cc09df020e02b5fa1e98039e6438daffaf44ef169dbc3da352eba7 +SIZE (xpi/firefox-52.9.0/pa-IN.xpi) = 469325 +SHA256 (xpi/firefox-52.9.0/pl.xpi) = a3431256dc89be10524babf7243ef48b366348166f8c6f3b33e7ab3dad8f6fa9 +SIZE (xpi/firefox-52.9.0/pl.xpi) = 352851 +SHA256 (xpi/firefox-52.9.0/pt-BR.xpi) = 15b2d810761ea44828d5166588143b631a8341414a35742c2985142260464faa +SIZE (xpi/firefox-52.9.0/pt-BR.xpi) = 430903 +SHA256 (xpi/firefox-52.9.0/pt-PT.xpi) = 7fe472ee9817615a200326c14556281b75a1190b5918725251f6b5b48793979e +SIZE (xpi/firefox-52.9.0/pt-PT.xpi) = 436727 +SHA256 (xpi/firefox-52.9.0/rm.xpi) = 12206fb5285cd7d2b1125a6c372b05591e7beec37bbd05c3e0fafd900af70cfe +SIZE (xpi/firefox-52.9.0/rm.xpi) = 427342 +SHA256 (xpi/firefox-52.9.0/ro.xpi) = 7d7311b5c059d86f5db629d7bb2fdd88232c138f911076f9533d144c139fd2cf +SIZE (xpi/firefox-52.9.0/ro.xpi) = 442585 +SHA256 (xpi/firefox-52.9.0/ru.xpi) = 3baf8d0aa2769c76e548ff41dbd11dea6796ef0a25558c9aa3c9447ad7ba3fd6 +SIZE (xpi/firefox-52.9.0/ru.xpi) = 395364 +SHA256 (xpi/firefox-52.9.0/si.xpi) = a05cf9bef043afebabf9b7db194706288a3d73eaf1007f4ce6d96a0084b2d441 +SIZE (xpi/firefox-52.9.0/si.xpi) = 484605 +SHA256 (xpi/firefox-52.9.0/sk.xpi) = ba88eec4cd462d636662529ed5757c359d9a684b3659dfcfc899b5863c07a552 +SIZE (xpi/firefox-52.9.0/sk.xpi) = 455820 +SHA256 (xpi/firefox-52.9.0/sl.xpi) = 99746474185eb6090a3cfc5917166da3a598007f0dd9a4d864483938c2f1786d +SIZE (xpi/firefox-52.9.0/sl.xpi) = 433482 +SHA256 (xpi/firefox-52.9.0/son.xpi) = 5a9a0ff096f06f5885f0f3b95825fece99c9bffa340d51c2eecf76c6a710e4f9 +SIZE (xpi/firefox-52.9.0/son.xpi) = 427860 +SHA256 (xpi/firefox-52.9.0/sq.xpi) = 7300854b0367c3569bccba4552f94ab948dbba28e4b407a1919cc509dc6e9224 +SIZE (xpi/firefox-52.9.0/sq.xpi) = 440802 +SHA256 (xpi/firefox-52.9.0/sr.xpi) = ba95f83cd63abf7518e98ec71eed90a47f4fe43e1ce1215ef047663935543d43 +SIZE (xpi/firefox-52.9.0/sr.xpi) = 463395 +SHA256 (xpi/firefox-52.9.0/sv-SE.xpi) = e427833cf0985c680732d5ff6c98e34d0c86caa4ed8363f822bfadc291d24f3f +SIZE (xpi/firefox-52.9.0/sv-SE.xpi) = 433908 +SHA256 (xpi/firefox-52.9.0/ta.xpi) = 66bfb2dcbe11b41207e81e1d259f0a0783dd7425c26f1c97f02df4e275c9d50f +SIZE (xpi/firefox-52.9.0/ta.xpi) = 487541 +SHA256 (xpi/firefox-52.9.0/te.xpi) = a9be8bbaffbf17dc64ef42de29de38b61b3acf493141de9f462161afc7fbe8ba +SIZE (xpi/firefox-52.9.0/te.xpi) = 507988 +SHA256 (xpi/firefox-52.9.0/th.xpi) = 24daaab49e4b71be426ef7276d556edb22fb8c53bb20f684fae1985fedbe2ba4 +SIZE (xpi/firefox-52.9.0/th.xpi) = 482022 +SHA256 (xpi/firefox-52.9.0/tr.xpi) = 52cc765c308a4f1bc9d99396784da84fd4405c6e571b4911f36f34bc5aa94735 +SIZE (xpi/firefox-52.9.0/tr.xpi) = 443673 +SHA256 (xpi/firefox-52.9.0/uk.xpi) = 43a2b0033269aa6bce8699ef9cff2407fda2cc0ad56b924d0fb110cccbe5125a +SIZE (xpi/firefox-52.9.0/uk.xpi) = 495095 +SHA256 (xpi/firefox-52.9.0/uz.xpi) = 4bc7a88ffa5a025f1eeb2533ede56e1b76259df57cba6bfb30acc82b48ed5a7b +SIZE (xpi/firefox-52.9.0/uz.xpi) = 440565 +SHA256 (xpi/firefox-52.9.0/vi.xpi) = 844dfecaf0156967b6c8ca031e1782f2afbfc7c057d15f3ed47ae3962f0dfca7 +SIZE (xpi/firefox-52.9.0/vi.xpi) = 450805 +SHA256 (xpi/firefox-52.9.0/xh.xpi) = 693a74d9a97667fbd741f5db3ff3ee2648eefddb41fe53b0fb7a91300022d4c1 +SIZE (xpi/firefox-52.9.0/xh.xpi) = 441173 +SHA256 (xpi/firefox-52.9.0/zh-CN.xpi) = 3f77022c3669c5d2c8a728c2027bd515263361cc7722c546662a56e9c63ed788 +SIZE (xpi/firefox-52.9.0/zh-CN.xpi) = 461679 +SHA256 (xpi/firefox-52.9.0/zh-TW.xpi) = b029a2c9828c8f7fa4161bc7d0280ceed8ae23a1fd1f85e8052dfaa288b60bfd +SIZE (xpi/firefox-52.9.0/zh-TW.xpi) = 453068 Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Tue Jun 19 23:00:46 2018 (r472829) +++ head/www/firefox-esr/Makefile Tue Jun 19 23:33:13 2018 (r472830) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 52.8.1 +DISTVERSION= 52.9.0 DISTVERSIONSUFFIX=esr PORTEPOCH= 1 CATEGORIES= www ipv6 Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Tue Jun 19 23:00:46 2018 (r472829) +++ head/www/firefox-esr/distinfo Tue Jun 19 23:33:13 2018 (r472830) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528258751 -SHA256 (firefox-52.8.1esr.source.tar.xz) = 487b4b7fe9a4aeb4dfd63991030b5df47d73f7a17ef917ba1036055f0049cf7b -SIZE (firefox-52.8.1esr.source.tar.xz) = 212869324 +TIMESTAMP = 1529442190 +SHA256 (firefox-52.9.0esr.source.tar.xz) = 2bed1a436bc86a482ccf9e2e35fc826106412a93a3916cfac1d5a672928c5ca7 +SIZE (firefox-52.9.0esr.source.tar.xz) = 213794748 From owner-svn-ports-head@freebsd.org Wed Jun 20 00:19:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3ED35101838A; Wed, 20 Jun 2018 00:19:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DD0F67D1A4; Wed, 20 Jun 2018 00: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BD5F51AD7A; Wed, 20 Jun 2018 00: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 w5K0JTAX023491; Wed, 20 Jun 2018 00:19:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K0JTbM023490; Wed, 20 Jun 2018 00:19:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806200019.w5K0JTbM023490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 20 Jun 2018 00:19:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472832 - in head/www: firefox-esr firefox-esr-i18n X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www: firefox-esr firefox-esr-i18n X-SVN-Commit-Revision: 472832 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 00:19:30 -0000 Author: jbeich Date: Wed Jun 20 00:19:29 2018 New Revision: 472832 URL: https://svnweb.freebsd.org/changeset/ports/472832 Log: www/firefox-esr: remove in preparation for update $ svn ci Sending Mk/Uses/gecko.mk Replacing www/firefox-esr Sending www/firefox-esr/Makefile Deleting www/firefox-esr/Makefile.options Sending www/firefox-esr/distinfo Deleting www/firefox-esr/files/patch-bug1435212 Sending www/firefox-esr/files/patch-z-bug1436911 Deleting www/firefox-esr/files/pkg-deinstall.in Deleting www/firefox-esr/files/pkg-install.in Replacing www/firefox-esr-i18n Sending www/firefox-esr-i18n/Makefile Sending www/firefox-esr-i18n/distinfo Transmitting file data ......done Committing transaction... svn: E165001: Commit failed (details follow): svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output: Do not replace a file. This can lose history. Path: "/head/www/firefox-esr" == Additional errors may compound and may not be accurate == Do not replace a file. This can lose history. Path: "/head/www/firefox-esr-i18n" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr-i18n" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr-i18n" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr-i18n" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr-i18n" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr" Do not replace a file. This can lose history. Path: "/head/www/firefox-esr-i18n" == Pre-commit problem count: 12 svn: E165001: Your commit message was left in a temporary file: svn: E165001: '/path/to/head/svn-commit.tmp' Deleted: head/www/firefox-esr/ head/www/firefox-esr-i18n/ From owner-svn-ports-head@freebsd.org Wed Jun 20 00:22:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 508D21018614; Wed, 20 Jun 2018 00:22:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 029E07D4D4; Wed, 20 Jun 2018 00:22: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7CE01AEE5; Wed, 20 Jun 2018 00:22: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 w5K0M6sC026444; Wed, 20 Jun 2018 00:22:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K0M5rb026437; Wed, 20 Jun 2018 00:22:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806200022.w5K0M5rb026437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 20 Jun 2018 00:22:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472833 - in head: Mk/Uses www/firefox-esr www/firefox-esr-i18n www/firefox-esr/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: Mk/Uses www/firefox-esr www/firefox-esr-i18n www/firefox-esr/files X-SVN-Commit-Revision: 472833 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 00:22:07 -0000 Author: jbeich Date: Wed Jun 20 00:22:05 2018 New Revision: 472833 URL: https://svnweb.freebsd.org/changeset/ports/472833 Log: www/firefox-esr: update to 60.1.0 Changes: https://www.mozilla.org/firefox/60.1.0/releasenotes/ Added: head/www/firefox-esr/ - copied from r472726, head/www/firefox/ head/www/firefox-esr-i18n/ - copied from r472726, head/www/firefox-i18n/ Deleted: head/www/firefox-esr/Makefile.options head/www/firefox-esr/files/patch-bug1435212 head/www/firefox-esr/files/pkg-deinstall.in head/www/firefox-esr/files/pkg-install.in Modified: head/Mk/Uses/gecko.mk head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/distinfo head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo head/www/firefox-esr/files/patch-z-bug1436911 Modified: head/Mk/Uses/gecko.mk ============================================================================== --- head/Mk/Uses/gecko.mk Wed Jun 20 00:19:29 2018 (r472832) +++ head/Mk/Uses/gecko.mk Wed Jun 20 00:22:05 2018 (r472833) @@ -36,12 +36,12 @@ RUN_DEPENDS+= libxul>=45:www/libxul .elif ${gecko_ARGS:Mfirefox} -_GECKO_DEFAULT_VERSION= 52 -_GECKO_VERSIONS= 52 61 +_GECKO_DEFAULT_VERSION= 60 +_GECKO_VERSIONS= 60 61 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions -52_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr +60_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr 61_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox-esr-i18n/Makefile Wed Jun 20 00:22:05 2018 (r472833) @@ -2,11 +2,12 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 60.0.2 +PORTVERSION= 60.1.0 CATEGORIES= www -MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi +MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi PKGNAMEPREFIX= +PKGNAMESUFFIX= -esr-i18n DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} @@ -15,7 +16,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,60,build +USES= zip:infozip gecko:firefox,build USE_XPI= firefox NO_ARCH= yes @@ -80,7 +81,7 @@ post-patch: ${XARGS} -0L1 ${REINPLACE_CMD} -i '' -e '/=4.19:devel/nspr \ # soundtouch>=1.9.0:audio/soundtouch \ USE_GECKO= gecko -CONFLICTS_INSTALL= firefox-esr +CPE_PRODUCT= ${PORTNAME}_esr +CONFLICTS_INSTALL= firefox MOZ_PKGCONFIG_FILES= # empty USE_MOZILLA= -cairo -soundtouch Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox/distinfo Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox-esr/distinfo Wed Jun 20 00:22:05 2018 (r472833) @@ -1,3 +1,3 @@ TIMESTAMP = 1528228087 -SHA256 (firefox-60.0.2.source.tar.xz) = 764566a06b71164e7fd20b2b0e6b08a71b4ccd4d6fd61867eb08011a551f6725 -SIZE (firefox-60.0.2.source.tar.xz) = 271930220 +SHA256 (firefox-60.1.0esr.source.tar.xz) = 6c6247b6fd63b4b08b85d3a7a536ce9238c3ce84de6c62ca0a5fdd2643d0cd1b +SIZE (firefox-60.1.0esr.source.tar.xz) = 267439036 Modified: head/www/firefox-esr/files/patch-z-bug1436911 ============================================================================== --- head/www/firefox/files/patch-z-bug1436911 Tue Jun 19 00:37:31 2018 (r472726) +++ head/www/firefox-esr/files/patch-z-bug1436911 Wed Jun 20 00:22:05 2018 (r472833) @@ -81,7 +81,7 @@ deleted file mode 100644 index 808b797d9bee..000000000000 --- dom/ipc/ContentPrefs.cpp +++ /dev/null -@@ -1,360 +0,0 @@ +@@ -1,361 +0,0 @@ -/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ -/* This Source Code Form is subject to the terms of the Mozilla Public @@ -353,6 +353,7 @@ index 808b797d9bee..000000000000 - "network.cookie.lifetimePolicy", - "network.dns.disablePrefetch", - "network.dns.disablePrefetchFromHTTPS", +- "network.file.disable_unc_paths", - "network.http.tailing.enabled", - "network.jar.block-remote-files", - "network.loadinfo.skip_type_assertion", From owner-svn-ports-head@freebsd.org Wed Jun 20 00:25:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA95610187F4; Wed, 20 Jun 2018 00:25:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6FB907D680; Wed, 20 Jun 2018 00:25: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4D8F71AF0E; Wed, 20 Jun 2018 00:25: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 w5K0PHea029093; Wed, 20 Jun 2018 00:25:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K0PGwj029091; Wed, 20 Jun 2018 00:25:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806200025.w5K0PGwj029091@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 20 Jun 2018 00:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472834 - in head/www: firefox-esr firefox-esr-i18n X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www: firefox-esr firefox-esr-i18n X-SVN-Commit-Revision: 472834 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 00:25:17 -0000 Author: jbeich Date: Wed Jun 20 00:25:16 2018 New Revision: 472834 URL: https://svnweb.freebsd.org/changeset/ports/472834 Log: www/firefox-esr: bump TIMESTAMP in distinfo Modified: head/www/firefox-esr-i18n/distinfo head/www/firefox-esr/distinfo Modified: head/www/firefox-esr-i18n/distinfo ============================================================================== --- head/www/firefox-esr-i18n/distinfo Wed Jun 20 00:22:05 2018 (r472833) +++ head/www/firefox-esr-i18n/distinfo Wed Jun 20 00:25:16 2018 (r472834) @@ -1,4 +1,4 @@ -TIMESTAMP = 1528228087 +TIMESTAMP = 1529440553 SHA256 (xpi/firefox-i18n-60.1.0/ach.xpi) = 5e26041e4a6bf3d602b00c5990238676d5747f3265dac5552b71859c61bc272c SIZE (xpi/firefox-i18n-60.1.0/ach.xpi) = 496061 SHA256 (xpi/firefox-i18n-60.1.0/af.xpi) = c9f675656e0934c4459c86556debf08b1c9306f8466593713875e5c30e67428f Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Wed Jun 20 00:22:05 2018 (r472833) +++ head/www/firefox-esr/distinfo Wed Jun 20 00:25:16 2018 (r472834) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528228087 +TIMESTAMP = 1529440553 SHA256 (firefox-60.1.0esr.source.tar.xz) = 6c6247b6fd63b4b08b85d3a7a536ce9238c3ce84de6c62ca0a5fdd2643d0cd1b SIZE (firefox-60.1.0esr.source.tar.xz) = 267439036 From owner-svn-ports-head@freebsd.org Wed Jun 20 00:41:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8EC0101949F; Wed, 20 Jun 2018 00:41:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7B73E7DDF2; Wed, 20 Jun 2018 00:41:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 422101B0FE; Wed, 20 Jun 2018 00:41:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K0fM57035803; Wed, 20 Jun 2018 00:41:22 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K0fLrU035801; Wed, 20 Jun 2018 00:41:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806200041.w5K0fLrU035801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 20 Jun 2018 00:41:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472835 - head/www/firefox-esr-i18n X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/firefox-esr-i18n X-SVN-Commit-Revision: 472835 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 00:41:23 -0000 Author: jbeich Date: Wed Jun 20 00:41:21 2018 New Revision: 472835 URL: https://svnweb.freebsd.org/changeset/ports/472835 Log: www/firefox-esr-i18n: drop extra -i18n suffix after r472833 Modified: head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/distinfo Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-esr-i18n/Makefile Wed Jun 20 00:25:16 2018 (r472834) +++ head/www/firefox-esr-i18n/Makefile Wed Jun 20 00:41:21 2018 (r472835) @@ -1,7 +1,7 @@ # Created by: Andrew Pantyukhin # $FreeBSD$ -PORTNAME= firefox-i18n +PORTNAME= firefox PORTVERSION= 60.1.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ Modified: head/www/firefox-esr-i18n/distinfo ============================================================================== --- head/www/firefox-esr-i18n/distinfo Wed Jun 20 00:25:16 2018 (r472834) +++ head/www/firefox-esr-i18n/distinfo Wed Jun 20 00:41:21 2018 (r472835) @@ -1,197 +1,197 @@ TIMESTAMP = 1529440553 -SHA256 (xpi/firefox-i18n-60.1.0/ach.xpi) = 5e26041e4a6bf3d602b00c5990238676d5747f3265dac5552b71859c61bc272c -SIZE (xpi/firefox-i18n-60.1.0/ach.xpi) = 496061 -SHA256 (xpi/firefox-i18n-60.1.0/af.xpi) = c9f675656e0934c4459c86556debf08b1c9306f8466593713875e5c30e67428f -SIZE (xpi/firefox-i18n-60.1.0/af.xpi) = 486533 -SHA256 (xpi/firefox-i18n-60.1.0/an.xpi) = d645b169c68c3cd34d1cd33dd84912c8f0bb46ed3650434b092a250a8e97f547 -SIZE (xpi/firefox-i18n-60.1.0/an.xpi) = 519726 -SHA256 (xpi/firefox-i18n-60.1.0/ar.xpi) = 15e4f2833734bcab82a9b7421bfc87b424f7b40e8f05caf98f0122988e13d97a -SIZE (xpi/firefox-i18n-60.1.0/ar.xpi) = 546953 -SHA256 (xpi/firefox-i18n-60.1.0/as.xpi) = 34a5908ce9bedb219cf89bbca86585f11a8c6260ee74253be8d7cbc8c9646ece -SIZE (xpi/firefox-i18n-60.1.0/as.xpi) = 529944 -SHA256 (xpi/firefox-i18n-60.1.0/ast.xpi) = 93b838cf4dfeebaffdea93a66f86932d94c1550cee00770dcaaefb567618e880 -SIZE (xpi/firefox-i18n-60.1.0/ast.xpi) = 507869 -SHA256 (xpi/firefox-i18n-60.1.0/az.xpi) = 7056cbeb3d7eda3aa42fc0217257ad897daf729f5e04708b695cebb53f7fbee0 -SIZE (xpi/firefox-i18n-60.1.0/az.xpi) = 523969 -SHA256 (xpi/firefox-i18n-60.1.0/be.xpi) = ad5ab678b7b6ac74a93b6dc4aef25fb2f7583966808569fb2cda7833cef1e603 -SIZE (xpi/firefox-i18n-60.1.0/be.xpi) = 579949 -SHA256 (xpi/firefox-i18n-60.1.0/bg.xpi) = c8f43529614faf19faf331d154bd1ffe25fb2b896b82d99cd4597bfdfa33b1b4 -SIZE (xpi/firefox-i18n-60.1.0/bg.xpi) = 573074 -SHA256 (xpi/firefox-i18n-60.1.0/bn-BD.xpi) = 1626e73b4dab81a13b5b11c1820396077bca065f45a7bb0cc6d4f8593f6410e3 -SIZE (xpi/firefox-i18n-60.1.0/bn-BD.xpi) = 589631 -SHA256 (xpi/firefox-i18n-60.1.0/bn-IN.xpi) = dfc6431a6a2ea504abe26dbf73bd889507ba351afcf51d7384119514b4ad5bd3 -SIZE (xpi/firefox-i18n-60.1.0/bn-IN.xpi) = 570077 -SHA256 (xpi/firefox-i18n-60.1.0/br.xpi) = cf7635d6456286ee278c60818a9ffe195f104010e36d1ce83e0b47a6df4fc718 -SIZE (xpi/firefox-i18n-60.1.0/br.xpi) = 511254 -SHA256 (xpi/firefox-i18n-60.1.0/bs.xpi) = 2916fd5b52f39ca7efcecdaed7f9769abbb1a196d982837351d0f9522860b1b6 -SIZE (xpi/firefox-i18n-60.1.0/bs.xpi) = 513932 -SHA256 (xpi/firefox-i18n-60.1.0/ca.xpi) = 2986fd0d15201d6ac3e1d84d0b8e80e600d6039e0b4c3495138083011ad038e3 -SIZE (xpi/firefox-i18n-60.1.0/ca.xpi) = 524475 -SHA256 (xpi/firefox-i18n-60.1.0/cak.xpi) = f02921d89d2b77d03ed20ca9573ab7a203fd6f2eb098313d84b65475b5e27278 -SIZE (xpi/firefox-i18n-60.1.0/cak.xpi) = 535514 -SHA256 (xpi/firefox-i18n-60.1.0/cs.xpi) = e7a6a9a75599fd90fa3c556c820cad7bda7472b21c7bbbff3474abe196dd3fd6 -SIZE (xpi/firefox-i18n-60.1.0/cs.xpi) = 531022 -SHA256 (xpi/firefox-i18n-60.1.0/cy.xpi) = 93d722576846a2bf49250fc3ef7fef2111dbf34d3b7d946b3946da9add85706c -SIZE (xpi/firefox-i18n-60.1.0/cy.xpi) = 515862 -SHA256 (xpi/firefox-i18n-60.1.0/da.xpi) = d74f2f8727e0b899c769778bf9364e9afe3c314d17c3a71d35c6eb48519f1ac6 -SIZE (xpi/firefox-i18n-60.1.0/da.xpi) = 509980 -SHA256 (xpi/firefox-i18n-60.1.0/de.xpi) = 771d8320cae87d125b924dccb6d77a2a44e02a380b52553fca9b989b46419e2c -SIZE (xpi/firefox-i18n-60.1.0/de.xpi) = 525695 -SHA256 (xpi/firefox-i18n-60.1.0/dsb.xpi) = cb1c6d535f741a73b0325e4581b4ef1b9d390b38dacd0a202499ff80a8d58b47 -SIZE (xpi/firefox-i18n-60.1.0/dsb.xpi) = 538750 -SHA256 (xpi/firefox-i18n-60.1.0/el.xpi) = a67d8ecefb33ed4dcb7a455e05a46bc2675fda1c9068001ec1e8184d528198d0 -SIZE (xpi/firefox-i18n-60.1.0/el.xpi) = 592912 -SHA256 (xpi/firefox-i18n-60.1.0/en-GB.xpi) = 7254855553747f27a7521249980a740ad528f305fdb5a2951d5b5cc95d5c55d3 -SIZE (xpi/firefox-i18n-60.1.0/en-GB.xpi) = 490906 -SHA256 (xpi/firefox-i18n-60.1.0/en-US.xpi) = 2b5ef8252b9a773eddc891a58b9ddd192f641380924615a0b6fd5077dc48e6f6 -SIZE (xpi/firefox-i18n-60.1.0/en-US.xpi) = 472388 -SHA256 (xpi/firefox-i18n-60.1.0/en-ZA.xpi) = 8bad395bccc349070da0817dabe381b30a1be380f5a19d76312ef62e3a8e68e6 -SIZE (xpi/firefox-i18n-60.1.0/en-ZA.xpi) = 473899 -SHA256 (xpi/firefox-i18n-60.1.0/eo.xpi) = b332eb5f1f7cb4a24ad0cc034672b5ad0d723c6a0e5b1e416af22311dc92a9e4 -SIZE (xpi/firefox-i18n-60.1.0/eo.xpi) = 510489 -SHA256 (xpi/firefox-i18n-60.1.0/es-AR.xpi) = 0d00f6d5ef54660eb5670e08dd2a87ae43e6d98ce7e0b2f60f5b3b2661cca6f4 -SIZE (xpi/firefox-i18n-60.1.0/es-AR.xpi) = 523825 -SHA256 (xpi/firefox-i18n-60.1.0/es-CL.xpi) = c7f5d24bb145cbe79bb1edcb7691f0d60d2bf127b683da11d05b48dc1fb2d0bd -SIZE (xpi/firefox-i18n-60.1.0/es-CL.xpi) = 526509 -SHA256 (xpi/firefox-i18n-60.1.0/es-ES.xpi) = d94773baa6ad16cd833a568502ca2b0130caed03ae4c6e653597d29e1a7da82c -SIZE (xpi/firefox-i18n-60.1.0/es-ES.xpi) = 459139 -SHA256 (xpi/firefox-i18n-60.1.0/es-MX.xpi) = 5587089caa97dbbbcf7e30831df73c17db157f5172fb82ba82722f4d92db27aa -SIZE (xpi/firefox-i18n-60.1.0/es-MX.xpi) = 527842 -SHA256 (xpi/firefox-i18n-60.1.0/et.xpi) = 99cbab52e159b5b5ff7ec3569968a89d369727095a247f0a5fd089c0dcf1b401 -SIZE (xpi/firefox-i18n-60.1.0/et.xpi) = 504172 -SHA256 (xpi/firefox-i18n-60.1.0/eu.xpi) = 718212dfd3c6d4efd63afc7bca0eadb6b72f23e026a86b7f4fe6f6f27dded0d1 -SIZE (xpi/firefox-i18n-60.1.0/eu.xpi) = 510938 -SHA256 (xpi/firefox-i18n-60.1.0/fa.xpi) = a106e50ac0139d7d5aea786a98f55ea4f8fb2aeadd06106447b97470a51b9c19 -SIZE (xpi/firefox-i18n-60.1.0/fa.xpi) = 565490 -SHA256 (xpi/firefox-i18n-60.1.0/ff.xpi) = 748fe1a9c451097656cd85a190e9d355afb3243333e31fbc4bb8d607d506dba9 -SIZE (xpi/firefox-i18n-60.1.0/ff.xpi) = 511435 -SHA256 (xpi/firefox-i18n-60.1.0/fi.xpi) = f8f17d3c181efdeb363b2d055bd8c0d9ca41fdc4cd0ea773e5841b0cb23e4f71 -SIZE (xpi/firefox-i18n-60.1.0/fi.xpi) = 505409 -SHA256 (xpi/firefox-i18n-60.1.0/fr.xpi) = 2e436b9daa98a28705a4b4d8ce760da70ca13e53bc39fedc0ab125d99075d90f -SIZE (xpi/firefox-i18n-60.1.0/fr.xpi) = 535234 -SHA256 (xpi/firefox-i18n-60.1.0/fy-NL.xpi) = 886c528e010fc6b0f800d13de7e55adebb3ced580e4f94d911f0340d26011039 -SIZE (xpi/firefox-i18n-60.1.0/fy-NL.xpi) = 523740 -SHA256 (xpi/firefox-i18n-60.1.0/ga-IE.xpi) = b18291cca9f22bec9acc063a827226d6f08d5adc94bfc0b49d3153decb87d53b -SIZE (xpi/firefox-i18n-60.1.0/ga-IE.xpi) = 526204 -SHA256 (xpi/firefox-i18n-60.1.0/gd.xpi) = db77b0608fc6e0f0b749ff92ef0907d42753e3932c90cce94fca51a4679cbfec -SIZE (xpi/firefox-i18n-60.1.0/gd.xpi) = 520093 -SHA256 (xpi/firefox-i18n-60.1.0/gl.xpi) = 6dd68657f6f37e8ed369cd0ec5f7b3436ca97b15ed31c00d203274b5a111ceeb -SIZE (xpi/firefox-i18n-60.1.0/gl.xpi) = 496589 -SHA256 (xpi/firefox-i18n-60.1.0/gn.xpi) = 25c8af49d1142db5b1aee183d82781f087c8abcc0e0cc94d58491d79b8ee3e9a -SIZE (xpi/firefox-i18n-60.1.0/gn.xpi) = 532446 -SHA256 (xpi/firefox-i18n-60.1.0/gu-IN.xpi) = 635d57fb3e1735953f77e79b8444f453eb12b36ddc07f18350ebd36e3e793c4e -SIZE (xpi/firefox-i18n-60.1.0/gu-IN.xpi) = 589482 -SHA256 (xpi/firefox-i18n-60.1.0/he.xpi) = 7c9c15653d4a30099c7039e6a66c126934a8b7fc30e70aee93b4e3f090e01d69 -SIZE (xpi/firefox-i18n-60.1.0/he.xpi) = 535210 -SHA256 (xpi/firefox-i18n-60.1.0/hi-IN.xpi) = 173eab4fed5d24f0c2f997dc7ad6ef8eb4f1b08ecfb60559c91d621336ef848c -SIZE (xpi/firefox-i18n-60.1.0/hi-IN.xpi) = 590079 -SHA256 (xpi/firefox-i18n-60.1.0/hr.xpi) = 3ec839fae3bb316f54cdc59d7ccf81f6ed74a2722c6b00ca92c6e0a307065f7d -SIZE (xpi/firefox-i18n-60.1.0/hr.xpi) = 515188 -SHA256 (xpi/firefox-i18n-60.1.0/hsb.xpi) = 7436c701e004a6b720bd997a096f19072f98a9320ea91511cf45c540caa2c902 -SIZE (xpi/firefox-i18n-60.1.0/hsb.xpi) = 536281 -SHA256 (xpi/firefox-i18n-60.1.0/hu.xpi) = 60b0363b5c9070b8225077badae42db0097c9bd02015ee073e740be0d1845ee8 -SIZE (xpi/firefox-i18n-60.1.0/hu.xpi) = 537576 -SHA256 (xpi/firefox-i18n-60.1.0/hy-AM.xpi) = 6a447a0fd2f6e15ba87596cbb1a9469932e3e6a2a2f9f8625dc3b566a9dda8bd -SIZE (xpi/firefox-i18n-60.1.0/hy-AM.xpi) = 568635 -SHA256 (xpi/firefox-i18n-60.1.0/ia.xpi) = ebc8bc6af5aa3c0ac5203c8b3539ac814d7187b5b14b2d1ac238dc4e4c55f3e9 -SIZE (xpi/firefox-i18n-60.1.0/ia.xpi) = 509960 -SHA256 (xpi/firefox-i18n-60.1.0/id.xpi) = b2ce847635a01a3f3270fc3803146e1846e74377d0b769f82b0637339236968f -SIZE (xpi/firefox-i18n-60.1.0/id.xpi) = 501445 -SHA256 (xpi/firefox-i18n-60.1.0/is.xpi) = 377a3b6e10c95a94764c0ee61616a5a2508c67aacde6c6e320b4a1006cb03c78 -SIZE (xpi/firefox-i18n-60.1.0/is.xpi) = 512502 -SHA256 (xpi/firefox-i18n-60.1.0/it.xpi) = 3e7b55c2b4a99ba900730c072c668f4de3b95e05cf4bb78414648e7239a13f68 -SIZE (xpi/firefox-i18n-60.1.0/it.xpi) = 398261 -SHA256 (xpi/firefox-i18n-60.1.0/ja.xpi) = 103d545d2f279ffdedf074027511ed0ad36fcce396224f90851333b522d7fdde -SIZE (xpi/firefox-i18n-60.1.0/ja.xpi) = 571240 -SHA256 (xpi/firefox-i18n-60.1.0/ka.xpi) = f3cb7cccee49a2d444226b6ecb1962c4c67ce075bb573dfb31fa0378a3713221 -SIZE (xpi/firefox-i18n-60.1.0/ka.xpi) = 556073 -SHA256 (xpi/firefox-i18n-60.1.0/kab.xpi) = 721c28ce53f174e084ebc9fe2bb0c01d6118dc4a6f0c01f8c373e2979ad89c3d -SIZE (xpi/firefox-i18n-60.1.0/kab.xpi) = 519626 -SHA256 (xpi/firefox-i18n-60.1.0/kk.xpi) = 13486d47e84d6da4e21edf699c9eefa0a918f7f3c9cedb17e4a29502e92014eb -SIZE (xpi/firefox-i18n-60.1.0/kk.xpi) = 582205 -SHA256 (xpi/firefox-i18n-60.1.0/km.xpi) = 2f2ff12d12cfdf6cbe916fcfe2961f17c5e03f7215f8e3e6c3da120078f5a252 -SIZE (xpi/firefox-i18n-60.1.0/km.xpi) = 582334 -SHA256 (xpi/firefox-i18n-60.1.0/kn.xpi) = 06b1d0665ca39ba00a9623142b749713cc8706dc2174e6457d56d212b5cc1cb7 -SIZE (xpi/firefox-i18n-60.1.0/kn.xpi) = 585096 -SHA256 (xpi/firefox-i18n-60.1.0/ko.xpi) = 6b4e294f09726deb59ba00a0b3fdcda7257ae10159d1bf1cace532042840b543 -SIZE (xpi/firefox-i18n-60.1.0/ko.xpi) = 547046 -SHA256 (xpi/firefox-i18n-60.1.0/lij.xpi) = db4ad9772cf45751f26d9366a530a861998f294a225ee978b7fd95d86df81b57 -SIZE (xpi/firefox-i18n-60.1.0/lij.xpi) = 512399 -SHA256 (xpi/firefox-i18n-60.1.0/lt.xpi) = 302b586fcf05cd5cf927eb7083d10b9a81b9ca8f0bf96dfef5a6099f344e40cb -SIZE (xpi/firefox-i18n-60.1.0/lt.xpi) = 535630 -SHA256 (xpi/firefox-i18n-60.1.0/lv.xpi) = eb6714574cea1c2cab5de1c0a39edc8d66ccbb4e8c1d984c63adfd4e4ba5c04a -SIZE (xpi/firefox-i18n-60.1.0/lv.xpi) = 525645 -SHA256 (xpi/firefox-i18n-60.1.0/mai.xpi) = 0dc6b4f64f6f70c68bc02f64849092570e85cc98e2e34db5fea37283030caeaa -SIZE (xpi/firefox-i18n-60.1.0/mai.xpi) = 548474 -SHA256 (xpi/firefox-i18n-60.1.0/mk.xpi) = ad906c47ec3d50cd443a776dbaf8c3b365a8c1c01d9e9b64f4960398229f9ea0 -SIZE (xpi/firefox-i18n-60.1.0/mk.xpi) = 513026 -SHA256 (xpi/firefox-i18n-60.1.0/ml.xpi) = 1eaf9ec1b5a47b57f716d27ebd358117e5f71a324e8b731c68d1510d9f6a0a92 -SIZE (xpi/firefox-i18n-60.1.0/ml.xpi) = 598192 -SHA256 (xpi/firefox-i18n-60.1.0/mr.xpi) = 91539ad08fad6c5d8201bbee618f251a7f224d145539c36c16003d1ab9129e7a -SIZE (xpi/firefox-i18n-60.1.0/mr.xpi) = 578342 -SHA256 (xpi/firefox-i18n-60.1.0/ms.xpi) = 84993cd8a3343c9c0acca15b53efda6bda19d25cf69b6c6eedcbd4d19d6464f4 -SIZE (xpi/firefox-i18n-60.1.0/ms.xpi) = 508780 -SHA256 (xpi/firefox-i18n-60.1.0/my.xpi) = d0210c2480d51cfb6af0f169aa9fd6a8c241e23cb8f3c28bb5405ff2f217236b -SIZE (xpi/firefox-i18n-60.1.0/my.xpi) = 569574 -SHA256 (xpi/firefox-i18n-60.1.0/nb-NO.xpi) = f171fd05cd390091122cb4f36e80e933deb9f7d8580963878740bddda1be4071 -SIZE (xpi/firefox-i18n-60.1.0/nb-NO.xpi) = 509103 -SHA256 (xpi/firefox-i18n-60.1.0/ne-NP.xpi) = 5c285fbfff385942b2b5d220fe86840cf25511c9d9cd9e9d2b583a02b965704d -SIZE (xpi/firefox-i18n-60.1.0/ne-NP.xpi) = 554585 -SHA256 (xpi/firefox-i18n-60.1.0/nl.xpi) = accbcb416a44cf7294b2ad3549f5519dfa813ba1eb957eefb93b129c5f06c3f8 -SIZE (xpi/firefox-i18n-60.1.0/nl.xpi) = 516658 -SHA256 (xpi/firefox-i18n-60.1.0/nn-NO.xpi) = e12b6c982fdc46ac80a00e323e1cf4cbd9a4b9439d66461a75a7f9bb8a18dafd -SIZE (xpi/firefox-i18n-60.1.0/nn-NO.xpi) = 510615 -SHA256 (xpi/firefox-i18n-60.1.0/oc.xpi) = 19e77dbaba2134edcfe715651e78cd161c4aee08d5b3099387e3a561dd4c5bb5 -SIZE (xpi/firefox-i18n-60.1.0/oc.xpi) = 526210 -SHA256 (xpi/firefox-i18n-60.1.0/or.xpi) = 93767d4e45b297adec5419c4a105764c32154b56c0c7a2a6ef1212a3d74ffd4f -SIZE (xpi/firefox-i18n-60.1.0/or.xpi) = 540091 -SHA256 (xpi/firefox-i18n-60.1.0/pa-IN.xpi) = 0b560eb40d9f8321a9423b97418b3d459287db012238fdbf656e7aadfcfc0875 -SIZE (xpi/firefox-i18n-60.1.0/pa-IN.xpi) = 557084 -SHA256 (xpi/firefox-i18n-60.1.0/pl.xpi) = 7b037320a9fd035a2a82018cddfb91d5101eb8af507089e47b2b1f85b9ae1387 -SIZE (xpi/firefox-i18n-60.1.0/pl.xpi) = 418199 -SHA256 (xpi/firefox-i18n-60.1.0/pt-BR.xpi) = df1cb8f6dccae58889b36e09b9bd203c772bd4c6aa9d9c21d2aa2acd355af9a1 -SIZE (xpi/firefox-i18n-60.1.0/pt-BR.xpi) = 513939 -SHA256 (xpi/firefox-i18n-60.1.0/pt-PT.xpi) = 417b825da5d7228f9d0d6555f5194f8fe43b9cf066430a62e25304220a43c0a1 -SIZE (xpi/firefox-i18n-60.1.0/pt-PT.xpi) = 518536 -SHA256 (xpi/firefox-i18n-60.1.0/rm.xpi) = d577804b30fe636159d14ec3d4072ee2a383691b3684b37dccacc4d74432ceae -SIZE (xpi/firefox-i18n-60.1.0/rm.xpi) = 505264 -SHA256 (xpi/firefox-i18n-60.1.0/ro.xpi) = 7fa2d7db5bbdb7a39e855628cb8303d8633a67fae136c43ebf07d3264375d70b -SIZE (xpi/firefox-i18n-60.1.0/ro.xpi) = 513284 -SHA256 (xpi/firefox-i18n-60.1.0/ru.xpi) = a045fa459b42020cb681175517405d9426e609b73959f9ec9b0ddd98578e6e15 -SIZE (xpi/firefox-i18n-60.1.0/ru.xpi) = 590513 -SHA256 (xpi/firefox-i18n-60.1.0/si.xpi) = 155a453ea78cbdf6c7be75a5bbc78a84a4208d5bc010b65f9621546056d8ecf6 -SIZE (xpi/firefox-i18n-60.1.0/si.xpi) = 544796 -SHA256 (xpi/firefox-i18n-60.1.0/sk.xpi) = 8e782b3bb378c11c36758d8645ea365ca92091a1b1b055bc2c086606b109219f -SIZE (xpi/firefox-i18n-60.1.0/sk.xpi) = 540926 -SHA256 (xpi/firefox-i18n-60.1.0/sl.xpi) = f94d25e47191b76cbe73a0a97143e1dfb07ed77aff45ce007216dd95e6b270cf -SIZE (xpi/firefox-i18n-60.1.0/sl.xpi) = 518579 -SHA256 (xpi/firefox-i18n-60.1.0/son.xpi) = a34bbaad893cd4f829c712d8cdb564a38f76a3c8f0ee0231e928dd2827ea5015 -SIZE (xpi/firefox-i18n-60.1.0/son.xpi) = 496920 -SHA256 (xpi/firefox-i18n-60.1.0/sq.xpi) = 16a852e9119d8d0fa97ee6c35ca94b669b049347e732eea12ddb474155dbd697 -SIZE (xpi/firefox-i18n-60.1.0/sq.xpi) = 520486 -SHA256 (xpi/firefox-i18n-60.1.0/sr.xpi) = f90e67c38f43d12aa7702a03ee36fc51f54c3493095d6e47907e1639ae3b7a6c -SIZE (xpi/firefox-i18n-60.1.0/sr.xpi) = 547997 -SHA256 (xpi/firefox-i18n-60.1.0/sv-SE.xpi) = a622eaba072867ccf67f63ab1e18f1ff9fc9846e5bbe30fb6746789c3ece5e7d -SIZE (xpi/firefox-i18n-60.1.0/sv-SE.xpi) = 517849 -SHA256 (xpi/firefox-i18n-60.1.0/ta.xpi) = 75edb2dcf5a9f9b0db4312460b4e877b675f47e165df67b3452ac307fec8c8d1 -SIZE (xpi/firefox-i18n-60.1.0/ta.xpi) = 577139 -SHA256 (xpi/firefox-i18n-60.1.0/te.xpi) = f3e390f930fdfade07cc51b3f3748b249377248a812a61b1e7426f545e4527c6 -SIZE (xpi/firefox-i18n-60.1.0/te.xpi) = 590183 -SHA256 (xpi/firefox-i18n-60.1.0/th.xpi) = 22085314a0cbc7af8a0da02c09dceec1e9d1ed390ea8d6ef994f0f95d603bc92 -SIZE (xpi/firefox-i18n-60.1.0/th.xpi) = 562043 -SHA256 (xpi/firefox-i18n-60.1.0/tr.xpi) = 29a9b015b9ad77105839e99209d4ce9762e6a8fad46bf557bb0b8cee01a5ab4c -SIZE (xpi/firefox-i18n-60.1.0/tr.xpi) = 525041 -SHA256 (xpi/firefox-i18n-60.1.0/uk.xpi) = 9b6e64d61d540f267ea786a5cf7e87d19c702aff9e8e538870a19d72996ff93e -SIZE (xpi/firefox-i18n-60.1.0/uk.xpi) = 580142 -SHA256 (xpi/firefox-i18n-60.1.0/ur.xpi) = 6feaabb90c30e04001981e68a3b218f2da325200555e78bdc2c9d8850e2fc69f -SIZE (xpi/firefox-i18n-60.1.0/ur.xpi) = 562606 -SHA256 (xpi/firefox-i18n-60.1.0/uz.xpi) = e1356213b3d2af00e873b4e9d2e625f037d98687f04eaff3bd53f8b7cc15fda2 -SIZE (xpi/firefox-i18n-60.1.0/uz.xpi) = 512905 -SHA256 (xpi/firefox-i18n-60.1.0/vi.xpi) = 9226d9d530fa40a4ed6217e335508d7f67ff7cbbe8cfcba31c4a0f8d21614a8b -SIZE (xpi/firefox-i18n-60.1.0/vi.xpi) = 527416 -SHA256 (xpi/firefox-i18n-60.1.0/xh.xpi) = bb867d93d090f6ae7ff8ce860fb3ff49cc70766dfd6116ed05048eb9cf493072 -SIZE (xpi/firefox-i18n-60.1.0/xh.xpi) = 511083 -SHA256 (xpi/firefox-i18n-60.1.0/zh-CN.xpi) = b22b63acf29357ed765523715ba4f0c2371767c075e922638f80eae52799715f -SIZE (xpi/firefox-i18n-60.1.0/zh-CN.xpi) = 542803 -SHA256 (xpi/firefox-i18n-60.1.0/zh-TW.xpi) = c39e4d114603e95b815755aee4713081d4262a7fee96ba55f0321d15584ff30a -SIZE (xpi/firefox-i18n-60.1.0/zh-TW.xpi) = 541120 +SHA256 (xpi/firefox-60.1.0/ach.xpi) = 5e26041e4a6bf3d602b00c5990238676d5747f3265dac5552b71859c61bc272c +SIZE (xpi/firefox-60.1.0/ach.xpi) = 496061 +SHA256 (xpi/firefox-60.1.0/af.xpi) = c9f675656e0934c4459c86556debf08b1c9306f8466593713875e5c30e67428f +SIZE (xpi/firefox-60.1.0/af.xpi) = 486533 +SHA256 (xpi/firefox-60.1.0/an.xpi) = d645b169c68c3cd34d1cd33dd84912c8f0bb46ed3650434b092a250a8e97f547 +SIZE (xpi/firefox-60.1.0/an.xpi) = 519726 +SHA256 (xpi/firefox-60.1.0/ar.xpi) = 15e4f2833734bcab82a9b7421bfc87b424f7b40e8f05caf98f0122988e13d97a +SIZE (xpi/firefox-60.1.0/ar.xpi) = 546953 +SHA256 (xpi/firefox-60.1.0/as.xpi) = 34a5908ce9bedb219cf89bbca86585f11a8c6260ee74253be8d7cbc8c9646ece +SIZE (xpi/firefox-60.1.0/as.xpi) = 529944 +SHA256 (xpi/firefox-60.1.0/ast.xpi) = 93b838cf4dfeebaffdea93a66f86932d94c1550cee00770dcaaefb567618e880 +SIZE (xpi/firefox-60.1.0/ast.xpi) = 507869 +SHA256 (xpi/firefox-60.1.0/az.xpi) = 7056cbeb3d7eda3aa42fc0217257ad897daf729f5e04708b695cebb53f7fbee0 +SIZE (xpi/firefox-60.1.0/az.xpi) = 523969 +SHA256 (xpi/firefox-60.1.0/be.xpi) = ad5ab678b7b6ac74a93b6dc4aef25fb2f7583966808569fb2cda7833cef1e603 +SIZE (xpi/firefox-60.1.0/be.xpi) = 579949 +SHA256 (xpi/firefox-60.1.0/bg.xpi) = c8f43529614faf19faf331d154bd1ffe25fb2b896b82d99cd4597bfdfa33b1b4 +SIZE (xpi/firefox-60.1.0/bg.xpi) = 573074 +SHA256 (xpi/firefox-60.1.0/bn-BD.xpi) = 1626e73b4dab81a13b5b11c1820396077bca065f45a7bb0cc6d4f8593f6410e3 +SIZE (xpi/firefox-60.1.0/bn-BD.xpi) = 589631 +SHA256 (xpi/firefox-60.1.0/bn-IN.xpi) = dfc6431a6a2ea504abe26dbf73bd889507ba351afcf51d7384119514b4ad5bd3 +SIZE (xpi/firefox-60.1.0/bn-IN.xpi) = 570077 +SHA256 (xpi/firefox-60.1.0/br.xpi) = cf7635d6456286ee278c60818a9ffe195f104010e36d1ce83e0b47a6df4fc718 +SIZE (xpi/firefox-60.1.0/br.xpi) = 511254 +SHA256 (xpi/firefox-60.1.0/bs.xpi) = 2916fd5b52f39ca7efcecdaed7f9769abbb1a196d982837351d0f9522860b1b6 +SIZE (xpi/firefox-60.1.0/bs.xpi) = 513932 +SHA256 (xpi/firefox-60.1.0/ca.xpi) = 2986fd0d15201d6ac3e1d84d0b8e80e600d6039e0b4c3495138083011ad038e3 +SIZE (xpi/firefox-60.1.0/ca.xpi) = 524475 +SHA256 (xpi/firefox-60.1.0/cak.xpi) = f02921d89d2b77d03ed20ca9573ab7a203fd6f2eb098313d84b65475b5e27278 +SIZE (xpi/firefox-60.1.0/cak.xpi) = 535514 +SHA256 (xpi/firefox-60.1.0/cs.xpi) = e7a6a9a75599fd90fa3c556c820cad7bda7472b21c7bbbff3474abe196dd3fd6 +SIZE (xpi/firefox-60.1.0/cs.xpi) = 531022 +SHA256 (xpi/firefox-60.1.0/cy.xpi) = 93d722576846a2bf49250fc3ef7fef2111dbf34d3b7d946b3946da9add85706c +SIZE (xpi/firefox-60.1.0/cy.xpi) = 515862 +SHA256 (xpi/firefox-60.1.0/da.xpi) = d74f2f8727e0b899c769778bf9364e9afe3c314d17c3a71d35c6eb48519f1ac6 +SIZE (xpi/firefox-60.1.0/da.xpi) = 509980 +SHA256 (xpi/firefox-60.1.0/de.xpi) = 771d8320cae87d125b924dccb6d77a2a44e02a380b52553fca9b989b46419e2c +SIZE (xpi/firefox-60.1.0/de.xpi) = 525695 +SHA256 (xpi/firefox-60.1.0/dsb.xpi) = cb1c6d535f741a73b0325e4581b4ef1b9d390b38dacd0a202499ff80a8d58b47 +SIZE (xpi/firefox-60.1.0/dsb.xpi) = 538750 +SHA256 (xpi/firefox-60.1.0/el.xpi) = a67d8ecefb33ed4dcb7a455e05a46bc2675fda1c9068001ec1e8184d528198d0 +SIZE (xpi/firefox-60.1.0/el.xpi) = 592912 +SHA256 (xpi/firefox-60.1.0/en-GB.xpi) = 7254855553747f27a7521249980a740ad528f305fdb5a2951d5b5cc95d5c55d3 +SIZE (xpi/firefox-60.1.0/en-GB.xpi) = 490906 +SHA256 (xpi/firefox-60.1.0/en-US.xpi) = 2b5ef8252b9a773eddc891a58b9ddd192f641380924615a0b6fd5077dc48e6f6 +SIZE (xpi/firefox-60.1.0/en-US.xpi) = 472388 +SHA256 (xpi/firefox-60.1.0/en-ZA.xpi) = 8bad395bccc349070da0817dabe381b30a1be380f5a19d76312ef62e3a8e68e6 +SIZE (xpi/firefox-60.1.0/en-ZA.xpi) = 473899 +SHA256 (xpi/firefox-60.1.0/eo.xpi) = b332eb5f1f7cb4a24ad0cc034672b5ad0d723c6a0e5b1e416af22311dc92a9e4 +SIZE (xpi/firefox-60.1.0/eo.xpi) = 510489 +SHA256 (xpi/firefox-60.1.0/es-AR.xpi) = 0d00f6d5ef54660eb5670e08dd2a87ae43e6d98ce7e0b2f60f5b3b2661cca6f4 +SIZE (xpi/firefox-60.1.0/es-AR.xpi) = 523825 +SHA256 (xpi/firefox-60.1.0/es-CL.xpi) = c7f5d24bb145cbe79bb1edcb7691f0d60d2bf127b683da11d05b48dc1fb2d0bd +SIZE (xpi/firefox-60.1.0/es-CL.xpi) = 526509 +SHA256 (xpi/firefox-60.1.0/es-ES.xpi) = d94773baa6ad16cd833a568502ca2b0130caed03ae4c6e653597d29e1a7da82c +SIZE (xpi/firefox-60.1.0/es-ES.xpi) = 459139 +SHA256 (xpi/firefox-60.1.0/es-MX.xpi) = 5587089caa97dbbbcf7e30831df73c17db157f5172fb82ba82722f4d92db27aa +SIZE (xpi/firefox-60.1.0/es-MX.xpi) = 527842 +SHA256 (xpi/firefox-60.1.0/et.xpi) = 99cbab52e159b5b5ff7ec3569968a89d369727095a247f0a5fd089c0dcf1b401 +SIZE (xpi/firefox-60.1.0/et.xpi) = 504172 +SHA256 (xpi/firefox-60.1.0/eu.xpi) = 718212dfd3c6d4efd63afc7bca0eadb6b72f23e026a86b7f4fe6f6f27dded0d1 +SIZE (xpi/firefox-60.1.0/eu.xpi) = 510938 +SHA256 (xpi/firefox-60.1.0/fa.xpi) = a106e50ac0139d7d5aea786a98f55ea4f8fb2aeadd06106447b97470a51b9c19 +SIZE (xpi/firefox-60.1.0/fa.xpi) = 565490 +SHA256 (xpi/firefox-60.1.0/ff.xpi) = 748fe1a9c451097656cd85a190e9d355afb3243333e31fbc4bb8d607d506dba9 +SIZE (xpi/firefox-60.1.0/ff.xpi) = 511435 +SHA256 (xpi/firefox-60.1.0/fi.xpi) = f8f17d3c181efdeb363b2d055bd8c0d9ca41fdc4cd0ea773e5841b0cb23e4f71 +SIZE (xpi/firefox-60.1.0/fi.xpi) = 505409 +SHA256 (xpi/firefox-60.1.0/fr.xpi) = 2e436b9daa98a28705a4b4d8ce760da70ca13e53bc39fedc0ab125d99075d90f +SIZE (xpi/firefox-60.1.0/fr.xpi) = 535234 +SHA256 (xpi/firefox-60.1.0/fy-NL.xpi) = 886c528e010fc6b0f800d13de7e55adebb3ced580e4f94d911f0340d26011039 +SIZE (xpi/firefox-60.1.0/fy-NL.xpi) = 523740 +SHA256 (xpi/firefox-60.1.0/ga-IE.xpi) = b18291cca9f22bec9acc063a827226d6f08d5adc94bfc0b49d3153decb87d53b +SIZE (xpi/firefox-60.1.0/ga-IE.xpi) = 526204 +SHA256 (xpi/firefox-60.1.0/gd.xpi) = db77b0608fc6e0f0b749ff92ef0907d42753e3932c90cce94fca51a4679cbfec +SIZE (xpi/firefox-60.1.0/gd.xpi) = 520093 +SHA256 (xpi/firefox-60.1.0/gl.xpi) = 6dd68657f6f37e8ed369cd0ec5f7b3436ca97b15ed31c00d203274b5a111ceeb +SIZE (xpi/firefox-60.1.0/gl.xpi) = 496589 +SHA256 (xpi/firefox-60.1.0/gn.xpi) = 25c8af49d1142db5b1aee183d82781f087c8abcc0e0cc94d58491d79b8ee3e9a +SIZE (xpi/firefox-60.1.0/gn.xpi) = 532446 +SHA256 (xpi/firefox-60.1.0/gu-IN.xpi) = 635d57fb3e1735953f77e79b8444f453eb12b36ddc07f18350ebd36e3e793c4e +SIZE (xpi/firefox-60.1.0/gu-IN.xpi) = 589482 +SHA256 (xpi/firefox-60.1.0/he.xpi) = 7c9c15653d4a30099c7039e6a66c126934a8b7fc30e70aee93b4e3f090e01d69 +SIZE (xpi/firefox-60.1.0/he.xpi) = 535210 +SHA256 (xpi/firefox-60.1.0/hi-IN.xpi) = 173eab4fed5d24f0c2f997dc7ad6ef8eb4f1b08ecfb60559c91d621336ef848c +SIZE (xpi/firefox-60.1.0/hi-IN.xpi) = 590079 +SHA256 (xpi/firefox-60.1.0/hr.xpi) = 3ec839fae3bb316f54cdc59d7ccf81f6ed74a2722c6b00ca92c6e0a307065f7d +SIZE (xpi/firefox-60.1.0/hr.xpi) = 515188 +SHA256 (xpi/firefox-60.1.0/hsb.xpi) = 7436c701e004a6b720bd997a096f19072f98a9320ea91511cf45c540caa2c902 +SIZE (xpi/firefox-60.1.0/hsb.xpi) = 536281 +SHA256 (xpi/firefox-60.1.0/hu.xpi) = 60b0363b5c9070b8225077badae42db0097c9bd02015ee073e740be0d1845ee8 +SIZE (xpi/firefox-60.1.0/hu.xpi) = 537576 +SHA256 (xpi/firefox-60.1.0/hy-AM.xpi) = 6a447a0fd2f6e15ba87596cbb1a9469932e3e6a2a2f9f8625dc3b566a9dda8bd +SIZE (xpi/firefox-60.1.0/hy-AM.xpi) = 568635 +SHA256 (xpi/firefox-60.1.0/ia.xpi) = ebc8bc6af5aa3c0ac5203c8b3539ac814d7187b5b14b2d1ac238dc4e4c55f3e9 +SIZE (xpi/firefox-60.1.0/ia.xpi) = 509960 +SHA256 (xpi/firefox-60.1.0/id.xpi) = b2ce847635a01a3f3270fc3803146e1846e74377d0b769f82b0637339236968f +SIZE (xpi/firefox-60.1.0/id.xpi) = 501445 +SHA256 (xpi/firefox-60.1.0/is.xpi) = 377a3b6e10c95a94764c0ee61616a5a2508c67aacde6c6e320b4a1006cb03c78 +SIZE (xpi/firefox-60.1.0/is.xpi) = 512502 +SHA256 (xpi/firefox-60.1.0/it.xpi) = 3e7b55c2b4a99ba900730c072c668f4de3b95e05cf4bb78414648e7239a13f68 +SIZE (xpi/firefox-60.1.0/it.xpi) = 398261 +SHA256 (xpi/firefox-60.1.0/ja.xpi) = 103d545d2f279ffdedf074027511ed0ad36fcce396224f90851333b522d7fdde +SIZE (xpi/firefox-60.1.0/ja.xpi) = 571240 +SHA256 (xpi/firefox-60.1.0/ka.xpi) = f3cb7cccee49a2d444226b6ecb1962c4c67ce075bb573dfb31fa0378a3713221 +SIZE (xpi/firefox-60.1.0/ka.xpi) = 556073 +SHA256 (xpi/firefox-60.1.0/kab.xpi) = 721c28ce53f174e084ebc9fe2bb0c01d6118dc4a6f0c01f8c373e2979ad89c3d +SIZE (xpi/firefox-60.1.0/kab.xpi) = 519626 +SHA256 (xpi/firefox-60.1.0/kk.xpi) = 13486d47e84d6da4e21edf699c9eefa0a918f7f3c9cedb17e4a29502e92014eb +SIZE (xpi/firefox-60.1.0/kk.xpi) = 582205 +SHA256 (xpi/firefox-60.1.0/km.xpi) = 2f2ff12d12cfdf6cbe916fcfe2961f17c5e03f7215f8e3e6c3da120078f5a252 +SIZE (xpi/firefox-60.1.0/km.xpi) = 582334 +SHA256 (xpi/firefox-60.1.0/kn.xpi) = 06b1d0665ca39ba00a9623142b749713cc8706dc2174e6457d56d212b5cc1cb7 +SIZE (xpi/firefox-60.1.0/kn.xpi) = 585096 +SHA256 (xpi/firefox-60.1.0/ko.xpi) = 6b4e294f09726deb59ba00a0b3fdcda7257ae10159d1bf1cace532042840b543 +SIZE (xpi/firefox-60.1.0/ko.xpi) = 547046 +SHA256 (xpi/firefox-60.1.0/lij.xpi) = db4ad9772cf45751f26d9366a530a861998f294a225ee978b7fd95d86df81b57 +SIZE (xpi/firefox-60.1.0/lij.xpi) = 512399 +SHA256 (xpi/firefox-60.1.0/lt.xpi) = 302b586fcf05cd5cf927eb7083d10b9a81b9ca8f0bf96dfef5a6099f344e40cb +SIZE (xpi/firefox-60.1.0/lt.xpi) = 535630 +SHA256 (xpi/firefox-60.1.0/lv.xpi) = eb6714574cea1c2cab5de1c0a39edc8d66ccbb4e8c1d984c63adfd4e4ba5c04a +SIZE (xpi/firefox-60.1.0/lv.xpi) = 525645 +SHA256 (xpi/firefox-60.1.0/mai.xpi) = 0dc6b4f64f6f70c68bc02f64849092570e85cc98e2e34db5fea37283030caeaa +SIZE (xpi/firefox-60.1.0/mai.xpi) = 548474 +SHA256 (xpi/firefox-60.1.0/mk.xpi) = ad906c47ec3d50cd443a776dbaf8c3b365a8c1c01d9e9b64f4960398229f9ea0 +SIZE (xpi/firefox-60.1.0/mk.xpi) = 513026 +SHA256 (xpi/firefox-60.1.0/ml.xpi) = 1eaf9ec1b5a47b57f716d27ebd358117e5f71a324e8b731c68d1510d9f6a0a92 +SIZE (xpi/firefox-60.1.0/ml.xpi) = 598192 +SHA256 (xpi/firefox-60.1.0/mr.xpi) = 91539ad08fad6c5d8201bbee618f251a7f224d145539c36c16003d1ab9129e7a +SIZE (xpi/firefox-60.1.0/mr.xpi) = 578342 +SHA256 (xpi/firefox-60.1.0/ms.xpi) = 84993cd8a3343c9c0acca15b53efda6bda19d25cf69b6c6eedcbd4d19d6464f4 +SIZE (xpi/firefox-60.1.0/ms.xpi) = 508780 +SHA256 (xpi/firefox-60.1.0/my.xpi) = d0210c2480d51cfb6af0f169aa9fd6a8c241e23cb8f3c28bb5405ff2f217236b +SIZE (xpi/firefox-60.1.0/my.xpi) = 569574 +SHA256 (xpi/firefox-60.1.0/nb-NO.xpi) = f171fd05cd390091122cb4f36e80e933deb9f7d8580963878740bddda1be4071 +SIZE (xpi/firefox-60.1.0/nb-NO.xpi) = 509103 +SHA256 (xpi/firefox-60.1.0/ne-NP.xpi) = 5c285fbfff385942b2b5d220fe86840cf25511c9d9cd9e9d2b583a02b965704d +SIZE (xpi/firefox-60.1.0/ne-NP.xpi) = 554585 +SHA256 (xpi/firefox-60.1.0/nl.xpi) = accbcb416a44cf7294b2ad3549f5519dfa813ba1eb957eefb93b129c5f06c3f8 +SIZE (xpi/firefox-60.1.0/nl.xpi) = 516658 +SHA256 (xpi/firefox-60.1.0/nn-NO.xpi) = e12b6c982fdc46ac80a00e323e1cf4cbd9a4b9439d66461a75a7f9bb8a18dafd +SIZE (xpi/firefox-60.1.0/nn-NO.xpi) = 510615 +SHA256 (xpi/firefox-60.1.0/oc.xpi) = 19e77dbaba2134edcfe715651e78cd161c4aee08d5b3099387e3a561dd4c5bb5 +SIZE (xpi/firefox-60.1.0/oc.xpi) = 526210 +SHA256 (xpi/firefox-60.1.0/or.xpi) = 93767d4e45b297adec5419c4a105764c32154b56c0c7a2a6ef1212a3d74ffd4f +SIZE (xpi/firefox-60.1.0/or.xpi) = 540091 +SHA256 (xpi/firefox-60.1.0/pa-IN.xpi) = 0b560eb40d9f8321a9423b97418b3d459287db012238fdbf656e7aadfcfc0875 +SIZE (xpi/firefox-60.1.0/pa-IN.xpi) = 557084 +SHA256 (xpi/firefox-60.1.0/pl.xpi) = 7b037320a9fd035a2a82018cddfb91d5101eb8af507089e47b2b1f85b9ae1387 +SIZE (xpi/firefox-60.1.0/pl.xpi) = 418199 +SHA256 (xpi/firefox-60.1.0/pt-BR.xpi) = df1cb8f6dccae58889b36e09b9bd203c772bd4c6aa9d9c21d2aa2acd355af9a1 +SIZE (xpi/firefox-60.1.0/pt-BR.xpi) = 513939 +SHA256 (xpi/firefox-60.1.0/pt-PT.xpi) = 417b825da5d7228f9d0d6555f5194f8fe43b9cf066430a62e25304220a43c0a1 +SIZE (xpi/firefox-60.1.0/pt-PT.xpi) = 518536 +SHA256 (xpi/firefox-60.1.0/rm.xpi) = d577804b30fe636159d14ec3d4072ee2a383691b3684b37dccacc4d74432ceae +SIZE (xpi/firefox-60.1.0/rm.xpi) = 505264 +SHA256 (xpi/firefox-60.1.0/ro.xpi) = 7fa2d7db5bbdb7a39e855628cb8303d8633a67fae136c43ebf07d3264375d70b +SIZE (xpi/firefox-60.1.0/ro.xpi) = 513284 +SHA256 (xpi/firefox-60.1.0/ru.xpi) = a045fa459b42020cb681175517405d9426e609b73959f9ec9b0ddd98578e6e15 +SIZE (xpi/firefox-60.1.0/ru.xpi) = 590513 +SHA256 (xpi/firefox-60.1.0/si.xpi) = 155a453ea78cbdf6c7be75a5bbc78a84a4208d5bc010b65f9621546056d8ecf6 +SIZE (xpi/firefox-60.1.0/si.xpi) = 544796 +SHA256 (xpi/firefox-60.1.0/sk.xpi) = 8e782b3bb378c11c36758d8645ea365ca92091a1b1b055bc2c086606b109219f +SIZE (xpi/firefox-60.1.0/sk.xpi) = 540926 +SHA256 (xpi/firefox-60.1.0/sl.xpi) = f94d25e47191b76cbe73a0a97143e1dfb07ed77aff45ce007216dd95e6b270cf +SIZE (xpi/firefox-60.1.0/sl.xpi) = 518579 +SHA256 (xpi/firefox-60.1.0/son.xpi) = a34bbaad893cd4f829c712d8cdb564a38f76a3c8f0ee0231e928dd2827ea5015 +SIZE (xpi/firefox-60.1.0/son.xpi) = 496920 +SHA256 (xpi/firefox-60.1.0/sq.xpi) = 16a852e9119d8d0fa97ee6c35ca94b669b049347e732eea12ddb474155dbd697 +SIZE (xpi/firefox-60.1.0/sq.xpi) = 520486 +SHA256 (xpi/firefox-60.1.0/sr.xpi) = f90e67c38f43d12aa7702a03ee36fc51f54c3493095d6e47907e1639ae3b7a6c +SIZE (xpi/firefox-60.1.0/sr.xpi) = 547997 +SHA256 (xpi/firefox-60.1.0/sv-SE.xpi) = a622eaba072867ccf67f63ab1e18f1ff9fc9846e5bbe30fb6746789c3ece5e7d +SIZE (xpi/firefox-60.1.0/sv-SE.xpi) = 517849 +SHA256 (xpi/firefox-60.1.0/ta.xpi) = 75edb2dcf5a9f9b0db4312460b4e877b675f47e165df67b3452ac307fec8c8d1 +SIZE (xpi/firefox-60.1.0/ta.xpi) = 577139 +SHA256 (xpi/firefox-60.1.0/te.xpi) = f3e390f930fdfade07cc51b3f3748b249377248a812a61b1e7426f545e4527c6 +SIZE (xpi/firefox-60.1.0/te.xpi) = 590183 +SHA256 (xpi/firefox-60.1.0/th.xpi) = 22085314a0cbc7af8a0da02c09dceec1e9d1ed390ea8d6ef994f0f95d603bc92 +SIZE (xpi/firefox-60.1.0/th.xpi) = 562043 +SHA256 (xpi/firefox-60.1.0/tr.xpi) = 29a9b015b9ad77105839e99209d4ce9762e6a8fad46bf557bb0b8cee01a5ab4c +SIZE (xpi/firefox-60.1.0/tr.xpi) = 525041 +SHA256 (xpi/firefox-60.1.0/uk.xpi) = 9b6e64d61d540f267ea786a5cf7e87d19c702aff9e8e538870a19d72996ff93e +SIZE (xpi/firefox-60.1.0/uk.xpi) = 580142 +SHA256 (xpi/firefox-60.1.0/ur.xpi) = 6feaabb90c30e04001981e68a3b218f2da325200555e78bdc2c9d8850e2fc69f +SIZE (xpi/firefox-60.1.0/ur.xpi) = 562606 +SHA256 (xpi/firefox-60.1.0/uz.xpi) = e1356213b3d2af00e873b4e9d2e625f037d98687f04eaff3bd53f8b7cc15fda2 +SIZE (xpi/firefox-60.1.0/uz.xpi) = 512905 +SHA256 (xpi/firefox-60.1.0/vi.xpi) = 9226d9d530fa40a4ed6217e335508d7f67ff7cbbe8cfcba31c4a0f8d21614a8b +SIZE (xpi/firefox-60.1.0/vi.xpi) = 527416 +SHA256 (xpi/firefox-60.1.0/xh.xpi) = bb867d93d090f6ae7ff8ce860fb3ff49cc70766dfd6116ed05048eb9cf493072 +SIZE (xpi/firefox-60.1.0/xh.xpi) = 511083 +SHA256 (xpi/firefox-60.1.0/zh-CN.xpi) = b22b63acf29357ed765523715ba4f0c2371767c075e922638f80eae52799715f +SIZE (xpi/firefox-60.1.0/zh-CN.xpi) = 542803 +SHA256 (xpi/firefox-60.1.0/zh-TW.xpi) = c39e4d114603e95b815755aee4713081d4262a7fee96ba55f0321d15584ff30a +SIZE (xpi/firefox-60.1.0/zh-TW.xpi) = 541120 From owner-svn-ports-head@freebsd.org Wed Jun 20 00:53:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 108EA1019D8A; Wed, 20 Jun 2018 00:53:03 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A58037E747; Wed, 20 Jun 2018 00:53:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 80F7D1B3F4; Wed, 20 Jun 2018 00:53:02 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K0r2Gi044581; Wed, 20 Jun 2018 00:53:02 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K0qxvT044562; Wed, 20 Jun 2018 00:52:59 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201806200052.w5K0qxvT044562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Wed, 20 Jun 2018 00:52:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472836 - in head/security: py-acme py-certbot py-certbot-apache py-certbot-dns-cloudflare py-certbot-dns-cloudxns py-certbot-dns-digitalocean py-certbot-dns-dnsimple py-certbot-dns-dns... X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/security: py-acme py-certbot py-certbot-apache py-certbot-dns-cloudflare py-certbot-dns-cloudxns py-certbot-dns-digitalocean py-certbot-dns-dnsimple py-certbot-dns-dnsmadeeasy py-certbot-dns-g... X-SVN-Commit-Revision: 472836 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 00:53:03 -0000 Author: miwi Date: Wed Jun 20 00:52:59 2018 New Revision: 472836 URL: https://svnweb.freebsd.org/changeset/ports/472836 Log: - Update to 0.25.1 PR: 229131 Sponsored by: iXsystems Inc. Modified: head/security/py-acme/Makefile head/security/py-acme/distinfo head/security/py-acme/version.mk head/security/py-certbot-apache/distinfo head/security/py-certbot-dns-cloudflare/distinfo head/security/py-certbot-dns-cloudxns/distinfo head/security/py-certbot-dns-digitalocean/distinfo head/security/py-certbot-dns-dnsimple/distinfo head/security/py-certbot-dns-dnsmadeeasy/distinfo head/security/py-certbot-dns-google/distinfo head/security/py-certbot-dns-luadns/distinfo head/security/py-certbot-dns-nsone/distinfo head/security/py-certbot-dns-rfc2136/distinfo head/security/py-certbot-dns-route53/distinfo head/security/py-certbot-nginx/distinfo head/security/py-certbot/distinfo Modified: head/security/py-acme/Makefile ============================================================================== --- head/security/py-acme/Makefile Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-acme/Makefile Wed Jun 20 00:52:59 2018 (r472836) @@ -3,7 +3,6 @@ PORTNAME= acme PORTVERSION= ${ACME_VERSION} -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP Modified: head/security/py-acme/distinfo ============================================================================== --- head/security/py-acme/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-acme/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489292 -SHA256 (acme-0.25.0.tar.gz) = 78c72b37d9ebc16ceb21df7f6b1037e80297abd61d0555c9d11f219a7118cef2 -SIZE (acme-0.25.0.tar.gz) = 82481 +TIMESTAMP = 1529370482 +SHA256 (acme-0.25.1.tar.gz) = 47b5f3f73d69b7b1d13f918aa2cd75a8093069a68becf4af38e428e4613b2734 +SIZE (acme-0.25.1.tar.gz) = 79987 Modified: head/security/py-acme/version.mk ============================================================================== --- head/security/py-acme/version.mk Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-acme/version.mk Wed Jun 20 00:52:59 2018 (r472836) @@ -1 +1 @@ -ACME_VERSION= 0.25.0 +ACME_VERSION= 0.25.1 Modified: head/security/py-certbot-apache/distinfo ============================================================================== --- head/security/py-certbot-apache/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-apache/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489365 -SHA256 (certbot-apache-0.25.0.tar.gz) = ca660d10e1945a78e0a00fd2be330be5acef97f215d3b03cb72cb0a996d63a64 -SIZE (certbot-apache-0.25.0.tar.gz) = 161178 +TIMESTAMP = 1529370486 +SHA256 (certbot-apache-0.25.1.tar.gz) = ed012465617073a0f1057fe854dc8d1eb6d2dd7ede1fb2eee765129fed2a095a +SIZE (certbot-apache-0.25.1.tar.gz) = 161165 Modified: head/security/py-certbot-dns-cloudflare/distinfo ============================================================================== --- head/security/py-certbot-dns-cloudflare/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-cloudflare/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489412 -SHA256 (certbot-dns-cloudflare-0.25.0.tar.gz) = 4a0c3c1002449763707b1b993146cadecd7e10668d23b0d4d3f476fbb4398f7d -SIZE (certbot-dns-cloudflare-0.25.0.tar.gz) = 12929 +TIMESTAMP = 1529370487 +SHA256 (certbot-dns-cloudflare-0.25.1.tar.gz) = c18f6d3c2552dffc01eedf65f317a08c9831b2af36b9504a0407b18603532863 +SIZE (certbot-dns-cloudflare-0.25.1.tar.gz) = 12932 Modified: head/security/py-certbot-dns-cloudxns/distinfo ============================================================================== --- head/security/py-certbot-dns-cloudxns/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-cloudxns/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489459 -SHA256 (certbot-dns-cloudxns-0.25.0.tar.gz) = 88540e1e0310a380aa232edc7859eb1c77e24c081266afe3e2140034e696f79a -SIZE (certbot-dns-cloudxns-0.25.0.tar.gz) = 11385 +TIMESTAMP = 1529370489 +SHA256 (certbot-dns-cloudxns-0.25.1.tar.gz) = 3e94f6990bf3b8efad197b8a7fa5f862930036f7efd82bcc12d282c649298898 +SIZE (certbot-dns-cloudxns-0.25.1.tar.gz) = 11385 Modified: head/security/py-certbot-dns-digitalocean/distinfo ============================================================================== --- head/security/py-certbot-dns-digitalocean/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-digitalocean/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489506 -SHA256 (certbot-dns-digitalocean-0.25.0.tar.gz) = ebae8922d9539f6127c927500ef56fb90b03b9a418e791d2ea187583d0ca228e -SIZE (certbot-dns-digitalocean-0.25.0.tar.gz) = 12698 +TIMESTAMP = 1529370490 +SHA256 (certbot-dns-digitalocean-0.25.1.tar.gz) = 3c6cd07a38447fab39013d421e661e3faa20a15755d5145910d5ea1203829ecd +SIZE (certbot-dns-digitalocean-0.25.1.tar.gz) = 12698 Modified: head/security/py-certbot-dns-dnsimple/distinfo ============================================================================== --- head/security/py-certbot-dns-dnsimple/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-dnsimple/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489551 -SHA256 (certbot-dns-dnsimple-0.25.0.tar.gz) = 1a95a87ba9e97dfc847efe1cfd3ac64e91edabd5f14e02aa92b7eceaef8e87e6 -SIZE (certbot-dns-dnsimple-0.25.0.tar.gz) = 11459 +TIMESTAMP = 1529370491 +SHA256 (certbot-dns-dnsimple-0.25.1.tar.gz) = 6660e446ae60acd2da4e97a1ef183ee05e20783d8136353e5e5cfd765d7ea075 +SIZE (certbot-dns-dnsimple-0.25.1.tar.gz) = 11454 Modified: head/security/py-certbot-dns-dnsmadeeasy/distinfo ============================================================================== --- head/security/py-certbot-dns-dnsmadeeasy/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-dnsmadeeasy/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489591 -SHA256 (certbot-dns-dnsmadeeasy-0.25.0.tar.gz) = 86335c07508f4ef84c4f448d2cf5bc3a12f201e1d12c70039a784752a8004b1c -SIZE (certbot-dns-dnsmadeeasy-0.25.0.tar.gz) = 11454 +TIMESTAMP = 1529370493 +SHA256 (certbot-dns-dnsmadeeasy-0.25.1.tar.gz) = 2647c4babb65b91c2630f760fafebcd7266bb784ed0d51bc104ddf14fd8e53fb +SIZE (certbot-dns-dnsmadeeasy-0.25.1.tar.gz) = 11455 Modified: head/security/py-certbot-dns-google/distinfo ============================================================================== --- head/security/py-certbot-dns-google/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-google/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489654 -SHA256 (certbot-dns-google-0.25.0.tar.gz) = 85c5f099fce325a8554674bfcc52ae21e4242273b4837c6f94beb9bc8fadadb4 -SIZE (certbot-dns-google-0.25.0.tar.gz) = 22091 +TIMESTAMP = 1529370494 +SHA256 (certbot-dns-google-0.25.1.tar.gz) = 5f8f3dc46947f0f10a726f8d7f7656781a73ca340f89f5f64f8ec8c9e00e6640 +SIZE (certbot-dns-google-0.25.1.tar.gz) = 22093 Modified: head/security/py-certbot-dns-luadns/distinfo ============================================================================== --- head/security/py-certbot-dns-luadns/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-luadns/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489696 -SHA256 (certbot-dns-luadns-0.25.0.tar.gz) = 6394ec97fa9f8a1fbdf0d06283f2373e3f9f9835a52ed7116f94705d2e192fe5 -SIZE (certbot-dns-luadns-0.25.0.tar.gz) = 11552 +TIMESTAMP = 1529370495 +SHA256 (certbot-dns-luadns-0.25.1.tar.gz) = 2b37ea6481c02d97edcb05a51d7e70d1df1223a3f0401308fa8a59d339c3bf18 +SIZE (certbot-dns-luadns-0.25.1.tar.gz) = 11554 Modified: head/security/py-certbot-dns-nsone/distinfo ============================================================================== --- head/security/py-certbot-dns-nsone/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-nsone/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489812 -SHA256 (certbot-dns-nsone-0.25.0.tar.gz) = 3dd9999edbdb3ee59709dbbd29ee81e56e2af820e68114dc95f7e466e679fc29 -SIZE (certbot-dns-nsone-0.25.0.tar.gz) = 11332 +TIMESTAMP = 1529370497 +SHA256 (certbot-dns-nsone-0.25.1.tar.gz) = fb0dd5b6d8af85b7d5feb60d05c4eb7765b54c0460d704a022bfae642ab4a072 +SIZE (certbot-dns-nsone-0.25.1.tar.gz) = 11331 Modified: head/security/py-certbot-dns-rfc2136/distinfo ============================================================================== --- head/security/py-certbot-dns-rfc2136/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-rfc2136/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489846 -SHA256 (certbot-dns-rfc2136-0.25.0.tar.gz) = 798cf05e50ce0059d03deeb2067faeb97a188a276dfde69a6f2a8560cecd53a4 -SIZE (certbot-dns-rfc2136-0.25.0.tar.gz) = 13667 +TIMESTAMP = 1529370498 +SHA256 (certbot-dns-rfc2136-0.25.1.tar.gz) = 7f716ef9d23e4d315498db60626384fcf86f4eb6947f022fba599734e0fb310d +SIZE (certbot-dns-rfc2136-0.25.1.tar.gz) = 13667 Modified: head/security/py-certbot-dns-route53/distinfo ============================================================================== --- head/security/py-certbot-dns-route53/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-dns-route53/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489888 -SHA256 (certbot-dns-route53-0.25.0.tar.gz) = 7cab7d735bcb3a66974cc5b55d2e4bf15b2599ee4eb738b215583da9724e8435 -SIZE (certbot-dns-route53-0.25.0.tar.gz) = 14390 +TIMESTAMP = 1529370499 +SHA256 (certbot-dns-route53-0.25.1.tar.gz) = 198fa4dc03ab7444fd1349696a88eecf76e6586e2f87220842eb4a4bbadd2b43 +SIZE (certbot-dns-route53-0.25.1.tar.gz) = 14389 Modified: head/security/py-certbot-nginx/distinfo ============================================================================== --- head/security/py-certbot-nginx/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot-nginx/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489937 -SHA256 (certbot-nginx-0.25.0.tar.gz) = 0848642c28f3fad9759309f3e78652d8dd68062e068844a74f828155d2fda416 -SIZE (certbot-nginx-0.25.0.tar.gz) = 71826 +TIMESTAMP = 1529370501 +SHA256 (certbot-nginx-0.25.1.tar.gz) = 68f98b41c54e0bf4218ef293079597176617bee3837ae3aa6528ce2ff0bf4f9c +SIZE (certbot-nginx-0.25.1.tar.gz) = 71723 Modified: head/security/py-certbot/distinfo ============================================================================== --- head/security/py-certbot/distinfo Wed Jun 20 00:41:21 2018 (r472835) +++ head/security/py-certbot/distinfo Wed Jun 20 00:52:59 2018 (r472836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528489329 -SHA256 (certbot-0.25.0.tar.gz) = bfdf0e2fe67f48034fa9a9bc16b12dd23ef3ac8bbac4e15ece876cd764eb40f8 -SIZE (certbot-0.25.0.tar.gz) = 305194 +TIMESTAMP = 1529370484 +SHA256 (certbot-0.25.1.tar.gz) = 5c23e5186133bb1afd805be5e0cd2fb7b95862a8b0459c9ecad4ae60f933e54e +SIZE (certbot-0.25.1.tar.gz) = 305393 From owner-svn-ports-head@freebsd.org Wed Jun 20 01:38:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D188101C8FD; Wed, 20 Jun 2018 01:38:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BD6380512; Wed, 20 Jun 2018 01:38:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E5D31BA7E; Wed, 20 Jun 2018 01:38:59 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K1cxAW065536; Wed, 20 Jun 2018 01:38:59 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K1cwY0065529; Wed, 20 Jun 2018 01:38:58 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201806200138.w5K1cwY0065529@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Wed, 20 Jun 2018 01:38:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472837 - in head/security: . py-gssapi X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/security: . py-gssapi X-SVN-Commit-Revision: 472837 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 01:38:59 -0000 Author: miwi Date: Wed Jun 20 01:38:58 2018 New Revision: 472837 URL: https://svnweb.freebsd.org/changeset/ports/472837 Log: Python-GSSAPI provides both low-level and high level wrappers around the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it should also be usable with other GSSAPI mechanisms. WWW: https://github.com/pythongssapi/python-gssapi PR: 228523 Submitted by: john@saltant.com Added: head/security/py-gssapi/ head/security/py-gssapi/Makefile (contents, props changed) head/security/py-gssapi/distinfo (contents, props changed) head/security/py-gssapi/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jun 20 00:52:59 2018 (r472836) +++ head/security/Makefile Wed Jun 20 01:38:58 2018 (r472837) @@ -945,6 +945,7 @@ SUBDIR += py-google-auth SUBDIR += py-gpgme SUBDIR += py-gpsoauth + SUBDIR += py-gssapi SUBDIR += py-halberd SUBDIR += py-hkdf SUBDIR += py-htpasswd Added: head/security/py-gssapi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-gssapi/Makefile Wed Jun 20 01:38:58 2018 (r472837) @@ -0,0 +1,32 @@ +# $FreeBSD$ + +PORTNAME= gssapi +DISTVERSION= 1.5.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= john@saltant.com +COMMENT= High-level and low-level Python bindings to GSSAPI C libraries + +LICENSE= ISCL + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator@${PY_FLAVOR} \ + ${PY_ENUM34} + +OPTIONS_RADIO= GSSAPI +OPTIONS_RADIO_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT +OPTIONS_DEFAULT= GSSAPI_BASE + +GSSAPI_BASE_USES= gssapi +GSSAPI_HEIMDAL_USES= gssapi:heimdal +GSSAPI_MIT_USES= gssapi:mit + +USES= python +USE_PYTHON= distutils autoplist + +post-patch: + ${REINPLACE_CMD} -e 's|%%KRB5CONFIG%%|${KRB5CONFIG}|' ${WRKSRC}/setup.py + +.include Added: head/security/py-gssapi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-gssapi/distinfo Wed Jun 20 01:38:58 2018 (r472837) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527359672 +SHA256 (gssapi-1.5.0.tar.gz) = be715cb74ac56db2dd888b016097aaa29ab7d7d34c1f8c706ff63f76b3553f71 +SIZE (gssapi-1.5.0.tar.gz) = 958382 Added: head/security/py-gssapi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-gssapi/pkg-descr Wed Jun 20 01:38:58 2018 (r472837) @@ -0,0 +1,5 @@ +Python-GSSAPI provides both low-level and high level wrappers around +the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it +should also be usable with other GSSAPI mechanisms. + +WWW: https://github.com/pythongssapi/python-gssapi From owner-svn-ports-head@freebsd.org Wed Jun 20 02:23:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED9F5101EC27; Wed, 20 Jun 2018 02:23:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8979D81945; Wed, 20 Jun 2018 02:23:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6B9281C27A; Wed, 20 Jun 2018 02:23:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K2NIBT090802; Wed, 20 Jun 2018 02:23:18 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K2NILA090800; Wed, 20 Jun 2018 02:23:18 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200223.w5K2NILA090800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 02:23:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472838 - head/math/R-cran-units X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/math/R-cran-units X-SVN-Commit-Revision: 472838 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 02:23:19 -0000 Author: tota Date: Wed Jun 20 02:23:17 2018 New Revision: 472838 URL: https://svnweb.freebsd.org/changeset/ports/472838 Log: - Update to 0.6-0 Modified: head/math/R-cran-units/Makefile (contents, props changed) head/math/R-cran-units/distinfo (contents, props changed) Modified: head/math/R-cran-units/Makefile ============================================================================== --- head/math/R-cran-units/Makefile Wed Jun 20 01:38:58 2018 (r472837) +++ head/math/R-cran-units/Makefile Wed Jun 20 02:23:17 2018 (r472838) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= units -DISTVERSION= 0.5-1 +DISTVERSION= 0.6-0 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,10 +11,11 @@ COMMENT= Measurement Units for R Vectors LICENSE= GPLv2 -CRAN_DEPENDS= R-cran-udunits2>=0.13:science/R-cran-udunits2 +CRAN_DEPENDS= R-cran-Rcpp>0:devel/R-cran-Rcpp +LIB_DEPENDS= libudunits2.so:science/udunits BUILD_DEPENDS= ${CRAN_DEPENDS} RUN_DEPENDS= ${CRAN_DEPENDS} -USES= cran:auto-plist +USES= cran:auto-plist,compiles .include Modified: head/math/R-cran-units/distinfo ============================================================================== --- head/math/R-cran-units/distinfo Wed Jun 20 01:38:58 2018 (r472837) +++ head/math/R-cran-units/distinfo Wed Jun 20 02:23:17 2018 (r472838) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522656165 -SHA256 (units_0.5-1.tar.gz) = 749bc6b81d623d27e6a8784eff34526aa4e371ce4880e91f49cbdd7de6830b1e -SIZE (units_0.5-1.tar.gz) = 836705 +TIMESTAMP = 1529396929 +SHA256 (units_0.6-0.tar.gz) = 56f08a0e420b3e20b1e19dc983abfaa8b90245b3df86f6916889b1dd218ce419 +SIZE (units_0.6-0.tar.gz) = 912393 From owner-svn-ports-head@freebsd.org Wed Jun 20 03:09:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E4D31020D3B; Wed, 20 Jun 2018 03:09:01 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A12B383077; Wed, 20 Jun 2018 03:09:00 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id E043F24933; Wed, 20 Jun 2018 03:08:53 +0000 (UTC) Date: Wed, 20 Jun 2018 03:08:52 +0000 From: Mark Linimon To: Antoine Brodin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472806 - head/Templates Message-ID: <20180620030843.GA29485@lonesome.com> References: <201806191722.w5JHMFRa009138@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201806191722.w5JHMFRa009138@repo.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:09:01 -0000 On Tue, Jun 19, 2018 at 05:22:15PM +0000, Antoine Brodin wrote: > Revert r472783, no exp-run and no approval = no cookie Thank you. I was just about to complain about this. mcl From owner-svn-ports-head@freebsd.org Wed Jun 20 03:11:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A64E1020FAE; Wed, 20 Jun 2018 03:11:18 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B1B94834AA; Wed, 20 Jun 2018 03:11:17 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id ECF4224933; Wed, 20 Jun 2018 03:11:16 +0000 (UTC) Date: Wed, 20 Jun 2018 03:11:15 +0000 From: Mark Linimon To: "Tobias C. Berner" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472813 - head/www/qt5-webkit/files Message-ID: <20180620031115.GB29485@lonesome.com> References: <201806191817.w5JIH6Z7036897@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201806191817.w5JIH6Z7036897@repo.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:11:18 -0000 On Tue, Jun 19, 2018 at 06:17:06PM +0000, Tobias C. Berner wrote: > www/qt5-webkit: fix "cacheFlush support is missing" for FreeBSD/arm64 Great news! mcl From owner-svn-ports-head@freebsd.org Wed Jun 20 03:12:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAEC510212BD; Wed, 20 Jun 2018 03:12:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5AF5F8383C; Wed, 20 Jun 2018 03:12:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B9EF1CAD2; Wed, 20 Jun 2018 03:12:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K3CwLE017419; Wed, 20 Jun 2018 03:12:58 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K3CvJZ017417; Wed, 20 Jun 2018 03:12:57 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200312.w5K3CvJZ017417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 03:12:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472839 - head/math/R-cran-zoo X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/math/R-cran-zoo X-SVN-Commit-Revision: 472839 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:12:58 -0000 Author: tota Date: Wed Jun 20 03:12:57 2018 New Revision: 472839 URL: https://svnweb.freebsd.org/changeset/ports/472839 Log: - Update to 1.8-2 Modified: head/math/R-cran-zoo/Makefile (contents, props changed) head/math/R-cran-zoo/distinfo (contents, props changed) Modified: head/math/R-cran-zoo/Makefile ============================================================================== --- head/math/R-cran-zoo/Makefile Wed Jun 20 02:23:17 2018 (r472838) +++ head/math/R-cran-zoo/Makefile Wed Jun 20 03:12:57 2018 (r472839) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zoo -DISTVERSION= 1.8-1 +DISTVERSION= 1.8-2 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/math/R-cran-zoo/distinfo ============================================================================== --- head/math/R-cran-zoo/distinfo Wed Jun 20 02:23:17 2018 (r472838) +++ head/math/R-cran-zoo/distinfo Wed Jun 20 03:12:57 2018 (r472839) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521630506 -SHA256 (zoo_1.8-1.tar.gz) = d93d88500374fce7f5c047f25240ac60483bcfd6fadf81df4eb2b879ad2ccc9a -SIZE (zoo_1.8-1.tar.gz) = 852331 +TIMESTAMP = 1529461617 +SHA256 (zoo_1.8-2.tar.gz) = 7dd315290def0ea6b6f127290d9e769e54cd98668f2898fb104c9758fb8bfcd2 +SIZE (zoo_1.8-2.tar.gz) = 856091 From owner-svn-ports-head@freebsd.org Wed Jun 20 03:30:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57C791021DCA; Wed, 20 Jun 2018 03:30:01 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 086BB83F24; Wed, 20 Jun 2018 03:30:01 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DDFEC1CC79; Wed, 20 Jun 2018 03:30:00 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K3U0kL023020; Wed, 20 Jun 2018 03:30:00 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K3U005023018; Wed, 20 Jun 2018 03:30:00 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201806200330.w5K3U005023018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Wed, 20 Jun 2018 03:30:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472840 - head/www/mini_httpd X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: head/www/mini_httpd X-SVN-Commit-Revision: 472840 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:30:01 -0000 Author: leres Date: Wed Jun 20 03:30:00 2018 New Revision: 472840 URL: https://svnweb.freebsd.org/changeset/ports/472840 Log: Update to 1.29: - Allow CGI to handle HTTP methods besides GET/HEAD/POST. Reviewed by: ler (mentor) Approved by: ler (mentor) Differential Revision: https://reviews.freebsd.org/D15918 Modified: head/www/mini_httpd/Makefile head/www/mini_httpd/distinfo Modified: head/www/mini_httpd/Makefile ============================================================================== --- head/www/mini_httpd/Makefile Wed Jun 20 03:12:57 2018 (r472839) +++ head/www/mini_httpd/Makefile Wed Jun 20 03:30:00 2018 (r472840) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mini_httpd -PORTVERSION= 1.28 +PORTVERSION= 1.29 CATEGORIES= www ipv6 MASTER_SITES= https://www.acme.com/software/mini_httpd/ Modified: head/www/mini_httpd/distinfo ============================================================================== --- head/www/mini_httpd/distinfo Wed Jun 20 03:12:57 2018 (r472839) +++ head/www/mini_httpd/distinfo Wed Jun 20 03:30:00 2018 (r472840) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517878208 -SHA256 (mini_httpd-1.28.tar.gz) = d4ea88a0493a2794ea62ac5a2aaf6825c8b064405959a22af3c04b587e87d971 -SIZE (mini_httpd-1.28.tar.gz) = 43759 +TIMESTAMP = 1529456298 +SHA256 (mini_httpd-1.29.tar.gz) = bdbd6226cbd105f537f67b5ad93ea69856426274bc5ada5124cca2785592ea6e +SIZE (mini_httpd-1.29.tar.gz) = 43830 From owner-svn-ports-head@freebsd.org Wed Jun 20 03:34:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3C3A102235C; Wed, 20 Jun 2018 03:34:56 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A52A88462B; Wed, 20 Jun 2018 03:34:56 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 85A1B1CE2B; Wed, 20 Jun 2018 03:34:56 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K3Yule027986; Wed, 20 Jun 2018 03:34:56 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K3Yudg027984; Wed, 20 Jun 2018 03:34:56 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200334.w5K3Yudg027984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 03:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472841 - head/science/R-cran-etm X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/science/R-cran-etm X-SVN-Commit-Revision: 472841 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:34:57 -0000 Author: tota Date: Wed Jun 20 03:34:55 2018 New Revision: 472841 URL: https://svnweb.freebsd.org/changeset/ports/472841 Log: - Update to 0.6-2.1 - Fix LICENSE section Modified: head/science/R-cran-etm/Makefile (contents, props changed) head/science/R-cran-etm/distinfo (contents, props changed) Modified: head/science/R-cran-etm/Makefile ============================================================================== --- head/science/R-cran-etm/Makefile Wed Jun 20 03:30:00 2018 (r472840) +++ head/science/R-cran-etm/Makefile Wed Jun 20 03:34:55 2018 (r472841) @@ -2,16 +2,14 @@ # $FreeBSD$ PORTNAME= etm -PORTREVISION= 2 -DISTVERSION= 0.6-2 +DISTVERSION= 0.6-2.1 CATEGORIES= science DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= tota@FreeBSD.org COMMENT= Empirical Transition Matrix -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual +LICENSE= GPLv2+ USES= cran:auto-plist,compiles Modified: head/science/R-cran-etm/distinfo ============================================================================== --- head/science/R-cran-etm/distinfo Wed Jun 20 03:30:00 2018 (r472840) +++ head/science/R-cran-etm/distinfo Wed Jun 20 03:34:55 2018 (r472841) @@ -1,2 +1,3 @@ -SHA256 (etm_0.6-2.tar.gz) = 05010aadc957907214d4a56c35e08e9f493cf384ba369558cf730950a0a9ba69 -SIZE (etm_0.6-2.tar.gz) = 242123 +TIMESTAMP = 1529462527 +SHA256 (etm_0.6-2.1.tar.gz) = 0ba3e3f4e6603d3e42a95f6b9012de141f0d07084b5bf1c63105095035df2ee3 +SIZE (etm_0.6-2.1.tar.gz) = 242366 From owner-svn-ports-head@freebsd.org Wed Jun 20 03:49:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 287C21022B78; Wed, 20 Jun 2018 03:49:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCE5984B77; Wed, 20 Jun 2018 03:49:21 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 841F81CFCD; Wed, 20 Jun 2018 03:49:21 +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 w5K3nLop033122; Wed, 20 Jun 2018 03:49:21 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K3nKYX033119; Wed, 20 Jun 2018 03:49:20 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806200349.w5K3nKYX033119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 20 Jun 2018 03:49:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472842 - in head/dns/knot-resolver: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/dns/knot-resolver: . files X-SVN-Commit-Revision: 472842 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:49:22 -0000 Author: pi Date: Wed Jun 20 03:49:20 2018 New Revision: 472842 URL: https://svnweb.freebsd.org/changeset/ports/472842 Log: dns/knot-resolver: update 2.1.1 -> 2.3.0, fixing CVE-2018-1110 PR: 229040 Reported by: freebsd-vheg@riseup.net Approved by: Leo Vandewoestijne (maintainer) MFH: 2018Q2 Relnotes: https://www.knot-resolver.cz/2018-04-23-knot-resolver-2.3.0.html Security: CVE-2018-1110 Deleted: head/dns/knot-resolver/files/patch-contrib_ucw_mempool-fmt.c Modified: head/dns/knot-resolver/Makefile head/dns/knot-resolver/distinfo head/dns/knot-resolver/pkg-plist Modified: head/dns/knot-resolver/Makefile ============================================================================== --- head/dns/knot-resolver/Makefile Wed Jun 20 03:34:55 2018 (r472841) +++ head/dns/knot-resolver/Makefile Wed Jun 20 03:49:20 2018 (r472842) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= knot-resolver -DISTVERSION= 2.1.1 +DISTVERSION= 2.3.0 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-resolver/ \ https://dns.company/downloads/knot-resolver/ @@ -86,7 +86,7 @@ PORTDOCS= AUTHORS COPYING CodingStyle README.md STRIP_TARGETS= sbin/kresd \ sbin/kresc \ - lib/libkres.so.6 \ + lib/libkres.so.7 \ lib/kdns_modules/ahocorasick.so \ lib/kdns_modules/cookies.so \ lib/kdns_modules/dnstap.so \ Modified: head/dns/knot-resolver/distinfo ============================================================================== --- head/dns/knot-resolver/distinfo Wed Jun 20 03:34:55 2018 (r472841) +++ head/dns/knot-resolver/distinfo Wed Jun 20 03:49:20 2018 (r472842) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520372546 -SHA256 (knot-resolver-2.1.1.tar.xz) = 0b9caee03d7cd30e1dc8fa0ce5fafade31fc1785314986bbf77cad446522a1b3 -SIZE (knot-resolver-2.1.1.tar.xz) = 1490064 +TIMESTAMP = 1529357112 +SHA256 (knot-resolver-2.3.0.tar.xz) = 2d19c5daf8440bd3d2acd1886b9ede65f04f7753c6fd4618a92a1a4ba3b27a9b +SIZE (knot-resolver-2.3.0.tar.xz) = 1522788 Modified: head/dns/knot-resolver/pkg-plist ============================================================================== --- head/dns/knot-resolver/pkg-plist Wed Jun 20 03:34:55 2018 (r472841) +++ head/dns/knot-resolver/pkg-plist Wed Jun 20 03:49:20 2018 (r472842) @@ -22,9 +22,9 @@ include/libkres/nsrep.h include/libkres/pack.h include/libkres/resolve.h include/libkres/rplan.h -include/libkres/set.h include/libkres/signature.h include/libkres/ta.h +include/libkres/trie.h include/libkres/utils.h include/libkres/zonecut.h lib/kdns_modules/ahocorasick.so @@ -61,6 +61,7 @@ lib/kdns_modules/kres.lua lib/kdns_modules/kres-gen.lua lib/kdns_modules/policy.lua lib/kdns_modules/predict.lua +lib/kdns_modules/prefill.lua lib/kdns_modules/priming.lua lib/kdns_modules/prometheus.lua lib/kdns_modules/renumber.lua @@ -74,7 +75,7 @@ lib/kdns_modules/view.lua lib/kdns_modules/workarounds.lua lib/kdns_modules/zonefile.lua lib/libkres.so -lib/libkres.so.6 +lib/libkres.so.7 libdata/pkgconfig/libkres.pc man/man8/kresd.8.gz sbin/kresc From owner-svn-ports-head@freebsd.org Wed Jun 20 03:59:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1B6C10232CC; Wed, 20 Jun 2018 03:59:10 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F82C85265; Wed, 20 Jun 2018 03:59:10 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 28C4F1D164; Wed, 20 Jun 2018 03:59:10 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K3x9j2038480; Wed, 20 Jun 2018 03:59:09 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K3x9lx038478; Wed, 20 Jun 2018 03:59:09 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200359.w5K3x9lx038478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 03:59:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472843 - head/textproc/R-cran-highr X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/textproc/R-cran-highr X-SVN-Commit-Revision: 472843 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 03:59:10 -0000 Author: tota Date: Wed Jun 20 03:59:09 2018 New Revision: 472843 URL: https://svnweb.freebsd.org/changeset/ports/472843 Log: - Update to 0.7 - Fix LICENSE section Modified: head/textproc/R-cran-highr/Makefile (contents, props changed) head/textproc/R-cran-highr/distinfo (contents, props changed) Modified: head/textproc/R-cran-highr/Makefile ============================================================================== --- head/textproc/R-cran-highr/Makefile Wed Jun 20 03:49:20 2018 (r472842) +++ head/textproc/R-cran-highr/Makefile Wed Jun 20 03:59:09 2018 (r472843) @@ -2,16 +2,14 @@ # $FreeBSD$ PORTNAME= highr -PORTVERSION= 0.6 -PORTREVISION= 1 +PORTVERSION= 0.7 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= tota@FreeBSD.org COMMENT= Syntax Highlighting for R Source Code -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual +LICENSE= GPLv2+ USES= cran:auto-plist Modified: head/textproc/R-cran-highr/distinfo ============================================================================== --- head/textproc/R-cran-highr/distinfo Wed Jun 20 03:49:20 2018 (r472842) +++ head/textproc/R-cran-highr/distinfo Wed Jun 20 03:59:09 2018 (r472843) @@ -1,2 +1,3 @@ -SHA256 (highr_0.6.tar.gz) = 43e152b2dea596df6e14c44398c74fcd438ece15eaae5bdb84aef8d61b213b59 -SIZE (highr_0.6.tar.gz) = 17294 +TIMESTAMP = 1529463388 +SHA256 (highr_0.7.tar.gz) = cabba5b6f2ea82024a49c5ced5f1aa476f864bc52bc129038e319e4e26b6f3b7 +SIZE (highr_0.7.tar.gz) = 17505 From owner-svn-ports-head@freebsd.org Wed Jun 20 04:12:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77F3F1023B05; Wed, 20 Jun 2018 04:12:18 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 25C1F85AEE; Wed, 20 Jun 2018 04:12:18 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 06E641D48E; Wed, 20 Jun 2018 04:12:18 +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 w5K4CH49048412; Wed, 20 Jun 2018 04:12:17 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K4CH9T048410; Wed, 20 Jun 2018 04:12:17 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201806200412.w5K4CH9T048410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Wed, 20 Jun 2018 04:12:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472844 - in head/sysutils/packer: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: in head/sysutils/packer: . files X-SVN-Commit-Revision: 472844 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 04:12:18 -0000 Author: lifanov Date: Wed Jun 20 04:12:17 2018 New Revision: 472844 URL: https://svnweb.freebsd.org/changeset/ports/472844 Log: unbreak sysutils/packer on i386 no revision bump because no package change Added: head/sysutils/packer/files/ head/sysutils/packer/files/extra-patch-i386 (contents, props changed) Modified: head/sysutils/packer/Makefile Modified: head/sysutils/packer/Makefile ============================================================================== --- head/sysutils/packer/Makefile Wed Jun 20 03:59:09 2018 (r472843) +++ head/sysutils/packer/Makefile Wed Jun 20 04:12:17 2018 (r472844) @@ -13,11 +13,17 @@ LICENSE_FILE= ${WRKSRC}/LICENSE PLIST_FILES= bin/${PORTNAME} +USES= go + USE_GITHUB= yes GH_ACCOUNT= hashicorp -USES= go - GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} -.include +.include + +.if ${ARCH} == "i386" +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-i386 +.endif + +.include Added: head/sysutils/packer/files/extra-patch-i386 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/packer/files/extra-patch-i386 Wed Jun 20 04:12:17 2018 (r472844) @@ -0,0 +1,11 @@ +--- vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-01-01/network/expressroutecircuitpeerings.go.orig 2018-06-20 03:54:26 UTC ++++ vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-01-01/network/expressroutecircuitpeerings.go +@@ -50,7 +50,7 @@ func (client ExpressRouteCircuitPeerings + {TargetValue: peeringParameters, + Constraints: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat", Name: validation.Null, Rule: false, + Chain: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.Null, Rule: false, +- Chain: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.InclusiveMaximum, Rule: 4294967295, Chain: nil}, ++ Chain: []validation.Constraint{{Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.InclusiveMaximum, Rule: 2147483647, Chain: nil}, + {Target: "peeringParameters.ExpressRouteCircuitPeeringPropertiesFormat.PeerASN", Name: validation.InclusiveMinimum, Rule: 1, Chain: nil}, + }}, + }}}}}); err != nil { From owner-svn-ports-head@freebsd.org Wed Jun 20 05:26:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14A761000F1D; Wed, 20 Jun 2018 05:26:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B54BE87ECD; Wed, 20 Jun 2018 05:26:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 965A81DFC2; Wed, 20 Jun 2018 05:26:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K5QvtQ084335; Wed, 20 Jun 2018 05:26:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K5Qu3U084329; Wed, 20 Jun 2018 05:26:56 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806200526.w5K5Qu3U084329@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 05:26:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472845 - in head/graphics: . engauge-digitizer X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . engauge-digitizer X-SVN-Commit-Revision: 472845 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 05:26:58 -0000 Author: yuri Date: Wed Jun 20 05:26:56 2018 New Revision: 472845 URL: https://svnweb.freebsd.org/changeset/ports/472845 Log: New port: graphics/engauge-digitizer: Extract data points from images of graphs Added: head/graphics/engauge-digitizer/ head/graphics/engauge-digitizer/Makefile (contents, props changed) head/graphics/engauge-digitizer/distinfo (contents, props changed) head/graphics/engauge-digitizer/pkg-descr (contents, props changed) head/graphics/engauge-digitizer/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Jun 20 04:12:17 2018 (r472844) +++ head/graphics/Makefile Wed Jun 20 05:26:56 2018 (r472845) @@ -161,6 +161,7 @@ SUBDIR += electrix SUBDIR += embree SUBDIR += enblend + SUBDIR += engauge-digitizer SUBDIR += entangle SUBDIR += eog SUBDIR += eog-plugins Added: head/graphics/engauge-digitizer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/engauge-digitizer/Makefile Wed Jun 20 05:26:56 2018 (r472845) @@ -0,0 +1,45 @@ +# $FreeBSD$ + +PORTNAME= engauge-digitizer +DISTVERSIONPREFIX= v +DISTVERSION= 10.7.6-2 +DISTVERSIONSUFFIX= -g7ce911c2 +CATEGORIES= graphics math science + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Extract data points from images of graphs + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libfftw3.so:math/fftw3 \ + liblog4cpp.so:devel/log4cpp \ + libopenjp2.so:graphics/openjpeg \ + libpoppler-qt5.so:graphics/poppler-qt5 + +USES= desktop-file-utils qmake +USE_GITHUB= yes +GH_ACCOUNT= markummitchell +USE_QT5= core gui help printsupport sql xml widgets buildtools_build linguist_build +USE_GL= gl +CONFIGURE_ENV= OPENJPEG_INCLUDE=${PREFIX}/include/openjpeg-2.3 OPENJPEG_LIB=${PREFIX}/lib \ + POPPLER_INCLUDE=${PREFIX}/include/poppler/qt5 POPPLER_LIB=${PREFIX}/lib +QMAKE_ARGS= "CONFIG+=jpeg2000 pdf" + +OPTIONS_DEFINE= DOCS + +post-build: + @cd ${WRKSRC}/help && ./build + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/engauge ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps + ${GZIP_CMD} < ${WRKSRC}/src/img/${PORTNAME}.svg > ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/${PORTNAME}.svgz + ${INSTALL_DATA} ${WRKSRC}/dev/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications/${PORTNAME}.desktop + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/documentation/engauge.qch ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/documentation/engauge.qhc ${STAGEDIR}${DOCSDIR} + +.include Added: head/graphics/engauge-digitizer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/engauge-digitizer/distinfo Wed Jun 20 05:26:56 2018 (r472845) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529465389 +SHA256 (markummitchell-engauge-digitizer-v10.7.6-2-g7ce911c2_GH0.tar.gz) = ce1ca9a91a4505adf91150c2abb037d1642558b1b02b2035a4e623dad7867647 +SIZE (markummitchell-engauge-digitizer-v10.7.6-2-g7ce911c2_GH0.tar.gz) = 68504322 Added: head/graphics/engauge-digitizer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/engauge-digitizer/pkg-descr Wed Jun 20 05:26:56 2018 (r472845) @@ -0,0 +1,9 @@ +The Engauge Digitizer tool accepts image files (like PNG, JPEG and TIFF) +containing graphs, and recovers the data points from those graphs. The resulting +data points are usually used as input to other software applications. +Conceptually, Engauge Digitizer is the opposite of a graphing tool that converts +data points to graphs. The process is shown below - an image file is imported, +digitized within Engauge, and exported as a table of numeric data to a text +file. Work can be saved into an Engauge DIG file. + +WWW: http://markummitchell.github.io/engauge-digitizer/ Added: head/graphics/engauge-digitizer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/engauge-digitizer/pkg-plist Wed Jun 20 05:26:56 2018 (r472845) @@ -0,0 +1,5 @@ +bin/engauge +share/icons/hicolor/scalable/apps/engauge-digitizer.svgz +share/applications/engauge-digitizer.desktop +%%PORTDOCS%%%%DOCSDIR%%/engauge.qch +%%PORTDOCS%%%%DOCSDIR%%/engauge.qhc From owner-svn-ports-head@freebsd.org Wed Jun 20 06:08:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E43EF1002E8A; Wed, 20 Jun 2018 06:08:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9284C6967E; Wed, 20 Jun 2018 06:08:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 700E91E614; Wed, 20 Jun 2018 06:08:09 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K6892d005123; Wed, 20 Jun 2018 06:08:09 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K688Ir005119; Wed, 20 Jun 2018 06:08:08 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806200608.w5K688Ir005119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 06:08:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472846 - in head/devel: . py-jupyterlab_launcher X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-jupyterlab_launcher X-SVN-Commit-Revision: 472846 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 06:08:10 -0000 Author: yuri Date: Wed Jun 20 06:08:08 2018 New Revision: 472846 URL: https://svnweb.freebsd.org/changeset/ports/472846 Log: New port: devel/py-jupyterlab_launcher: Jupyter Launcher (launcher for the JupiterLab environment) Added: head/devel/py-jupyterlab_launcher/ head/devel/py-jupyterlab_launcher/Makefile (contents, props changed) head/devel/py-jupyterlab_launcher/distinfo (contents, props changed) head/devel/py-jupyterlab_launcher/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 20 05:26:56 2018 (r472845) +++ head/devel/Makefile Wed Jun 20 06:08:08 2018 (r472846) @@ -4637,6 +4637,7 @@ SUBDIR += py-jupyter_client SUBDIR += py-jupyter_console SUBDIR += py-jupyter_core + SUBDIR += py-jupyterlab_launcher SUBDIR += py-kaitaistruct SUBDIR += py-kaptan SUBDIR += py-kayako Added: head/devel/py-jupyterlab_launcher/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyterlab_launcher/Makefile Wed Jun 20 06:08:08 2018 (r472846) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= jupyterlab_launcher +DISTVERSION= 0.11.0 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Jupyter Launcher (launcher for the JupiterLab environment) + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jsonschema>=2.6.0:devel/py-jsonschema@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}notebook>=4.2.0:www/py-notebook@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-jupyterlab_launcher/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyterlab_launcher/distinfo Wed Jun 20 06:08:08 2018 (r472846) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529473624 +SHA256 (jupyterlab_launcher-0.11.0.tar.gz) = 2eea0cc95b312e136e6e5abc64e2e62baaeca493cd32f553c2205f79e01c0423 +SIZE (jupyterlab_launcher-0.11.0.tar.gz) = 18412 Added: head/devel/py-jupyterlab_launcher/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-jupyterlab_launcher/pkg-descr Wed Jun 20 06:08:08 2018 (r472846) @@ -0,0 +1,6 @@ +Launcher is useful in the context of the Jupyter Project. + +Project Jupyter exists to develop open-source software, open-standards, and +services for interactive computing across dozens of programming languages. + +WWW: http://jupyter.org/ From owner-svn-ports-head@freebsd.org Wed Jun 20 06:17:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F58810036BC; Wed, 20 Jun 2018 06:17:37 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AA8E169D3D; Wed, 20 Jun 2018 06:17:36 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 80EA11E7BA; Wed, 20 Jun 2018 06:17:36 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K6HaoJ010086; Wed, 20 Jun 2018 06:17:36 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K6HZmj010084; Wed, 20 Jun 2018 06:17:35 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200617.w5K6HZmj010084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 06:17:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472847 - head/textproc/R-cran-stringi X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/textproc/R-cran-stringi X-SVN-Commit-Revision: 472847 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 06:17:37 -0000 Author: tota Date: Wed Jun 20 06:17:35 2018 New Revision: 472847 URL: https://svnweb.freebsd.org/changeset/ports/472847 Log: - Update to 1.2.3 Modified: head/textproc/R-cran-stringi/Makefile (contents, props changed) head/textproc/R-cran-stringi/distinfo (contents, props changed) Modified: head/textproc/R-cran-stringi/Makefile ============================================================================== --- head/textproc/R-cran-stringi/Makefile Wed Jun 20 06:08:08 2018 (r472846) +++ head/textproc/R-cran-stringi/Makefile Wed Jun 20 06:17:35 2018 (r472847) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= stringi -DISTVERSION= 1.2.2 +DISTVERSION= 1.2.3 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/textproc/R-cran-stringi/distinfo ============================================================================== --- head/textproc/R-cran-stringi/distinfo Wed Jun 20 06:08:08 2018 (r472846) +++ head/textproc/R-cran-stringi/distinfo Wed Jun 20 06:17:35 2018 (r472847) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525934415 -SHA256 (stringi_1.2.2.tar.gz) = 1979b3a402a9a2d3a83be0ab6ab61a4ed723e873719ff363ee005335a0c51efd -SIZE (stringi_1.2.2.tar.gz) = 7270627 +TIMESTAMP = 1529474294 +SHA256 (stringi_1.2.3.tar.gz) = 1d1bdc338858ba0b2ec54170d0787c67be271b503ef2466cf8130fc0f324efe9 +SIZE (stringi_1.2.3.tar.gz) = 7270993 From owner-svn-ports-head@freebsd.org Wed Jun 20 06:50:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AF7310054AC; Wed, 20 Jun 2018 06:50:07 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E90E6C09E; Wed, 20 Jun 2018 06:50:07 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F3C831ECCD; Wed, 20 Jun 2018 06:50:06 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K6o6K4026652; Wed, 20 Jun 2018 06:50:06 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K6o6xM026648; Wed, 20 Jun 2018 06:50:06 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200650.w5K6o6xM026648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 06:50:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472848 - head/www/R-cran-RgoogleMaps X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/www/R-cran-RgoogleMaps X-SVN-Commit-Revision: 472848 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 06:50:07 -0000 Author: tota Date: Wed Jun 20 06:50:06 2018 New Revision: 472848 URL: https://svnweb.freebsd.org/changeset/ports/472848 Log: - Update to 1.4.2 Modified: head/www/R-cran-RgoogleMaps/Makefile (contents, props changed) head/www/R-cran-RgoogleMaps/distinfo (contents, props changed) Modified: head/www/R-cran-RgoogleMaps/Makefile ============================================================================== --- head/www/R-cran-RgoogleMaps/Makefile Wed Jun 20 06:17:35 2018 (r472847) +++ head/www/R-cran-RgoogleMaps/Makefile Wed Jun 20 06:50:06 2018 (r472848) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= RgoogleMaps -PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTVERSION= 1.4.2 CATEGORIES= www DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/www/R-cran-RgoogleMaps/distinfo ============================================================================== --- head/www/R-cran-RgoogleMaps/distinfo Wed Jun 20 06:17:35 2018 (r472847) +++ head/www/R-cran-RgoogleMaps/distinfo Wed Jun 20 06:50:06 2018 (r472848) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474366540 -SHA256 (RgoogleMaps_1.4.1.tar.gz) = 5831cac4affa5e6f1ee25ebf92ccfc164a9bf8b7ca4d711291824f42a1a5553b -SIZE (RgoogleMaps_1.4.1.tar.gz) = 875028 +TIMESTAMP = 1529474768 +SHA256 (RgoogleMaps_1.4.2.tar.gz) = b479996fcb72f067644a7ea7f00325e44e76efd202e84aaab022753c4a6d5584 +SIZE (RgoogleMaps_1.4.2.tar.gz) = 794533 From owner-svn-ports-head@freebsd.org Wed Jun 20 06:53:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B6521005A09; Wed, 20 Jun 2018 06:53:31 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E68536C980; Wed, 20 Jun 2018 06:53:30 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C77D01EE5F; Wed, 20 Jun 2018 06:53:30 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K6rUpk031616; Wed, 20 Jun 2018 06:53:30 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K6rTVj031610; Wed, 20 Jun 2018 06:53:29 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806200653.w5K6rTVj031610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Wed, 20 Jun 2018 06:53:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472849 - in head/devel: libgit2 libgit2-glib libgit2/files py-pygit2 rubygem-rugged X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/devel: libgit2 libgit2-glib libgit2/files py-pygit2 rubygem-rugged X-SVN-Commit-Revision: 472849 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 06:53:31 -0000 Author: mfechner Date: Wed Jun 20 06:53:29 2018 New Revision: 472849 URL: https://svnweb.freebsd.org/changeset/ports/472849 Log: Update libgit2 to 0.27.2 and removed obsolete patches from it as it is fixed upstream now. Update devel/rubygem-rugged to 0.27.2 and took maintainer-ship for it as it is a core module required for gitlab. Added comment suggest by mat that some ports should be updated together. Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15901 Deleted: head/devel/libgit2/files/ Modified: head/devel/libgit2-glib/Makefile head/devel/libgit2/Makefile head/devel/libgit2/distinfo head/devel/py-pygit2/Makefile head/devel/rubygem-rugged/Makefile head/devel/rubygem-rugged/distinfo Modified: head/devel/libgit2-glib/Makefile ============================================================================== --- head/devel/libgit2-glib/Makefile Wed Jun 20 06:50:06 2018 (r472848) +++ head/devel/libgit2-glib/Makefile Wed Jun 20 06:53:29 2018 (r472849) @@ -1,6 +1,8 @@ # Created by: Gustau Perez # $FreeBSD$ +# Also update devel/libgit2, devel/rubygem-rugged, devel/py-pygit2 + PORTNAME= libgit2-glib PORTVERSION= 0.26.0 CATEGORIES= devel gnome Modified: head/devel/libgit2/Makefile ============================================================================== --- head/devel/libgit2/Makefile Wed Jun 20 06:50:06 2018 (r472848) +++ head/devel/libgit2/Makefile Wed Jun 20 06:53:29 2018 (r472849) @@ -1,7 +1,9 @@ # $FreeBSD$ +# Also update devel/libgit2-glib, devel/rubygem-rugged, devel/py-pygit2 + PORTNAME= libgit2 -PORTVERSION= 0.27.1 +PORTVERSION= 0.27.2 DISTVERSIONPREFIX= v CATEGORIES= devel Modified: head/devel/libgit2/distinfo ============================================================================== --- head/devel/libgit2/distinfo Wed Jun 20 06:50:06 2018 (r472848) +++ head/devel/libgit2/distinfo Wed Jun 20 06:53:29 2018 (r472849) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528010397 -SHA256 (libgit2-libgit2-v0.27.1_GH0.tar.gz) = 837b11927bc5f64e7f9ab0376f57cfe3ca5aa52ffd2007ac41184b21124fb086 -SIZE (libgit2-libgit2-v0.27.1_GH0.tar.gz) = 4765926 +TIMESTAMP = 1529407675 +SHA256 (libgit2-libgit2-v0.27.2_GH0.tar.gz) = ffacdbd5588aeb03e98e3866a7e2ceace468723a439bdc9bb01362fe140fa9e5 +SIZE (libgit2-libgit2-v0.27.2_GH0.tar.gz) = 4770842 Modified: head/devel/py-pygit2/Makefile ============================================================================== --- head/devel/py-pygit2/Makefile Wed Jun 20 06:50:06 2018 (r472848) +++ head/devel/py-pygit2/Makefile Wed Jun 20 06:53:29 2018 (r472849) @@ -1,6 +1,8 @@ # Created by: William Grzybowski # $FreeBSD$ +# Also update devel/libgit2, devel/libgit2-glib, devel/rubygem-rugged + PORTNAME= pygit2 PORTVERSION= 0.27.1 CATEGORIES= devel python Modified: head/devel/rubygem-rugged/Makefile ============================================================================== --- head/devel/rubygem-rugged/Makefile Wed Jun 20 06:50:06 2018 (r472848) +++ head/devel/rubygem-rugged/Makefile Wed Jun 20 06:53:29 2018 (r472849) @@ -1,12 +1,14 @@ # Created by: Steve Wills # $FreeBSD$ +# Also update devel/libgit2, devel/libgit2-glib, devel/py-pygit2 + PORTNAME= rugged -PORTVERSION= 0.27.1 +PORTVERSION= 0.27.2 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Rugged is a Ruby binding to the libgit2 linkable library LICENSE= MIT @@ -17,7 +19,7 @@ LIB_DEPENDS= libgit2.so:devel/libgit2 \ libgmp.so:math/gmp CONFIGURE_ARGS= --use-system-libraries -USE_RUBY= yes USES= gem pkgconfig +USE_RUBY= yes .include Modified: head/devel/rubygem-rugged/distinfo ============================================================================== --- head/devel/rubygem-rugged/distinfo Wed Jun 20 06:50:06 2018 (r472848) +++ head/devel/rubygem-rugged/distinfo Wed Jun 20 06:53:29 2018 (r472849) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527701777 -SHA256 (rubygem/rugged-0.27.1.gem) = ca301d5696f75c08a60e77b9f7a75249e77fee617e4be90898f7f957b54c586f -SIZE (rubygem/rugged-0.27.1.gem) = 1155072 +TIMESTAMP = 1529408232 +SHA256 (rubygem/rugged-0.27.2.gem) = 796de849f14aa5fb30f02c686d39ff38d234a72919c854124f3ddaaca80d50f4 +SIZE (rubygem/rugged-0.27.2.gem) = 1156608 From owner-svn-ports-head@freebsd.org Wed Jun 20 07:31:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 730E210078FE; Wed, 20 Jun 2018 07:31:13 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D3E16E066; Wed, 20 Jun 2018 07:31:13 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2A6D1F35B; Wed, 20 Jun 2018 07:31:12 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K7VCHY051359; Wed, 20 Jun 2018 07:31:12 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K7VCmv051357; Wed, 20 Jun 2018 07:31:12 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806200731.w5K7VCmv051357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 20 Jun 2018 07:31:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472850 - head/www/R-cran-httpuv X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/www/R-cran-httpuv X-SVN-Commit-Revision: 472850 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 07:31:13 -0000 Author: tota Date: Wed Jun 20 07:31:12 2018 New Revision: 472850 URL: https://svnweb.freebsd.org/changeset/ports/472850 Log: - Update to 1.4.4.1 Modified: head/www/R-cran-httpuv/Makefile (contents, props changed) head/www/R-cran-httpuv/distinfo (contents, props changed) Modified: head/www/R-cran-httpuv/Makefile ============================================================================== --- head/www/R-cran-httpuv/Makefile Wed Jun 20 06:53:29 2018 (r472849) +++ head/www/R-cran-httpuv/Makefile Wed Jun 20 07:31:12 2018 (r472850) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= httpuv -PORTVERSION= 1.4.3 +PORTVERSION= 1.4.4.1 CATEGORIES= www DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -13,7 +13,7 @@ LICENSE= GPLv2+ CRAN_DEPENDS= R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp \ R-cran-promises>0:devel/R-cran-promises \ - R-cran-later>=0.7.2:devel/R-cran-later \ + R-cran-later>=0.7.3:devel/R-cran-later \ R-cran-BH>0:devel/R-cran-BH BUILD_DEPENDS= ${CRAN_DEPENDS} RUN_DEPENDS= ${CRAN_DEPENDS} Modified: head/www/R-cran-httpuv/distinfo ============================================================================== --- head/www/R-cran-httpuv/distinfo Wed Jun 20 06:53:29 2018 (r472849) +++ head/www/R-cran-httpuv/distinfo Wed Jun 20 07:31:12 2018 (r472850) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526352921 -SHA256 (httpuv_1.4.3.tar.gz) = c6e91ac3396a102deabd9a63b5a786f1ae1f87b5ee1ce0f1501fc0f43cebf095 -SIZE (httpuv_1.4.3.tar.gz) = 1673359 +TIMESTAMP = 1529474955 +SHA256 (httpuv_1.4.4.1.tar.gz) = c6a44f262df83bae0fcf808a07c0b3da5f0bc9ea29aa7c6eccf421d541c07c8a +SIZE (httpuv_1.4.4.1.tar.gz) = 1675566 From owner-svn-ports-head@freebsd.org Wed Jun 20 07:55:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89AFF1008E88; Wed, 20 Jun 2018 07:55:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 315B86F1A2; Wed, 20 Jun 2018 07:55:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0980F1F7D4; Wed, 20 Jun 2018 07:55:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K7tUpI062778; Wed, 20 Jun 2018 07:55:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K7tUjP062776; Wed, 20 Jun 2018 07:55:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806200755.w5K7tUjP062776@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 07:55:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472851 - head/graphics/engauge-digitizer X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/graphics/engauge-digitizer X-SVN-Commit-Revision: 472851 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 07:55:31 -0000 Author: yuri Date: Wed Jun 20 07:55:30 2018 New Revision: 472851 URL: https://svnweb.freebsd.org/changeset/ports/472851 Log: graphics/engauge-digitizer: Add translations Port changes: * Add the NLS option * Build and install translations * Make help to build only when DOCS=on * Limit USE_QT5=help to DOCS=on Modified: head/graphics/engauge-digitizer/Makefile head/graphics/engauge-digitizer/pkg-plist Modified: head/graphics/engauge-digitizer/Makefile ============================================================================== --- head/graphics/engauge-digitizer/Makefile Wed Jun 20 07:31:12 2018 (r472850) +++ head/graphics/engauge-digitizer/Makefile Wed Jun 20 07:55:30 2018 (r472851) @@ -4,6 +4,7 @@ PORTNAME= engauge-digitizer DISTVERSIONPREFIX= v DISTVERSION= 10.7.6-2 DISTVERSIONSUFFIX= -g7ce911c2 +PORTREVISION= 1 CATEGORIES= graphics math science MAINTAINER= yuri@FreeBSD.org @@ -20,15 +21,24 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ USES= desktop-file-utils qmake USE_GITHUB= yes GH_ACCOUNT= markummitchell -USE_QT5= core gui help printsupport sql xml widgets buildtools_build linguist_build +USE_QT5= core gui printsupport sql xml widgets buildtools_build linguist_build USE_GL= gl CONFIGURE_ENV= OPENJPEG_INCLUDE=${PREFIX}/include/openjpeg-2.3 OPENJPEG_LIB=${PREFIX}/lib \ POPPLER_INCLUDE=${PREFIX}/include/poppler/qt5 POPPLER_LIB=${PREFIX}/lib QMAKE_ARGS= "CONFIG+=jpeg2000 pdf" -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= NLS DOCS +OPTIONS_SUB= yes -post-build: +DOCS_USE= QT5=help + +do-patch-NLS-on: + @${REINPLACE_CMD} -e 's|QCoreApplication::applicationDirPath () + "/translations",|"${DATADIR}/translations",|' ${WRKSRC}/src/Translator/TranslatorContainer.cpp + +post-build-NLS-on: + @cd ${WRKSRC} && lrelease engauge.pro + +post-build-DOCS-on: @cd ${WRKSRC}/help && ./build do-install: @@ -36,6 +46,10 @@ do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps ${GZIP_CMD} < ${WRKSRC}/src/img/${PORTNAME}.svg > ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/${PORTNAME}.svgz ${INSTALL_DATA} ${WRKSRC}/dev/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications/${PORTNAME}.desktop + +do-install-NLS-on: + @${MKDIR} ${STAGEDIR}${DATADIR}/translations + ${INSTALL_DATA} ${WRKSRC}/translations/*.qm ${STAGEDIR}${DATADIR}/translations do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/graphics/engauge-digitizer/pkg-plist ============================================================================== --- head/graphics/engauge-digitizer/pkg-plist Wed Jun 20 07:31:12 2018 (r472850) +++ head/graphics/engauge-digitizer/pkg-plist Wed Jun 20 07:55:30 2018 (r472851) @@ -1,5 +1,19 @@ bin/engauge -share/icons/hicolor/scalable/apps/engauge-digitizer.svgz share/applications/engauge-digitizer.desktop %%PORTDOCS%%%%DOCSDIR%%/engauge.qch %%PORTDOCS%%%%DOCSDIR%%/engauge.qhc +%%NLS%%%%DATADIR%%/translations/engauge_ar.qm +%%NLS%%%%DATADIR%%/translations/engauge_cs.qm +%%NLS%%%%DATADIR%%/translations/engauge_de.qm +%%NLS%%%%DATADIR%%/translations/engauge_en.qm +%%NLS%%%%DATADIR%%/translations/engauge_es.qm +%%NLS%%%%DATADIR%%/translations/engauge_fr.qm +%%NLS%%%%DATADIR%%/translations/engauge_hi.qm +%%NLS%%%%DATADIR%%/translations/engauge_it.qm +%%NLS%%%%DATADIR%%/translations/engauge_ja.qm +%%NLS%%%%DATADIR%%/translations/engauge_kk.qm +%%NLS%%%%DATADIR%%/translations/engauge_ko.qm +%%NLS%%%%DATADIR%%/translations/engauge_pt.qm +%%NLS%%%%DATADIR%%/translations/engauge_ru.qm +%%NLS%%%%DATADIR%%/translations/engauge_zh.qm +share/icons/hicolor/scalable/apps/engauge-digitizer.svgz From owner-svn-ports-head@freebsd.org Wed Jun 20 07:57:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B031B1009005; Wed, 20 Jun 2018 07:57:35 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 624036F2B2; Wed, 20 Jun 2018 07:57:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 407A41F7D5; Wed, 20 Jun 2018 07:57:35 +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 w5K7vZD6063008; Wed, 20 Jun 2018 07:57:35 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K7vYDn063003; Wed, 20 Jun 2018 07:57:34 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806200757.w5K7vYDn063003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 20 Jun 2018 07:57:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472852 - head/net/p5-Net-SFTP-Foreign X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/net/p5-Net-SFTP-Foreign X-SVN-Commit-Revision: 472852 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 07:57:36 -0000 Author: pi Date: Wed Jun 20 07:57:34 2018 New Revision: 472852 URL: https://svnweb.freebsd.org/changeset/ports/472852 Log: net/p5-Net-SFTP-Foreign: update 1.73 -> 1.89 - added LICENSE, LICENSE_COMB and LICENSE_FILE_* - removed BUILD_DEPENDS (it's not required for building) - changed RUN_DEPENDS (assigned devel/p5-Sort-Key explicitly to it instead of BUILD_DEPENDS) - added NO_ARCH - added EXAMPLES option with appropriate target and variables PR: 229161 Submitted by: freebsd_ports@k-worx.org Approved by: Simun Mikecin (maintainer) Relnotes: https://metacpan.org/changes/distribution/Net-SFTP-Foreign Modified: head/net/p5-Net-SFTP-Foreign/Makefile head/net/p5-Net-SFTP-Foreign/distinfo head/net/p5-Net-SFTP-Foreign/pkg-descr head/net/p5-Net-SFTP-Foreign/pkg-plist Modified: head/net/p5-Net-SFTP-Foreign/Makefile ============================================================================== --- head/net/p5-Net-SFTP-Foreign/Makefile Wed Jun 20 07:55:30 2018 (r472851) +++ head/net/p5-Net-SFTP-Foreign/Makefile Wed Jun 20 07:57:34 2018 (r472852) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Net-SFTP-Foreign -PORTVERSION= 1.73 -PORTREVISION= 1 +PORTVERSION= 1.89 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,12 +10,25 @@ PKGNAMEPREFIX= p5- MAINTAINER= numisemis@yahoo.com COMMENT= Net::SFTP::Foreign - Secure File Transfer Protocol client -BUILD_DEPENDS= p5-Sort-Key>=0:devel/p5-Sort-Key -RUN_DEPENDS:= ${BUILD_DEPENDS} +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE_ART10= ${WRKSRC}/LICENSE +LICENSE_FILE_GPLv1= ${WRKSRC}/LICENSE +RUN_DEPENDS= p5-Sort-Key>=0:devel/p5-Sort-Key TEST_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which USES= perl5 USE_PERL5= configure + +NO_ARCH= yes +PORTEXAMPLES= samples/* + +OPTIONS_DEFINE= EXAMPLES +OPTIONS_SUB= yes + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}) .include Modified: head/net/p5-Net-SFTP-Foreign/distinfo ============================================================================== --- head/net/p5-Net-SFTP-Foreign/distinfo Wed Jun 20 07:55:30 2018 (r472851) +++ head/net/p5-Net-SFTP-Foreign/distinfo Wed Jun 20 07:57:34 2018 (r472852) @@ -1,2 +1,3 @@ -SHA256 (Net-SFTP-Foreign-1.73.tar.gz) = 97330ca61ce26bac0050271f40ca7667eaf9a2ea3ef11677b6bf0ca149833fb2 -SIZE (Net-SFTP-Foreign-1.73.tar.gz) = 156888 +TIMESTAMP = 1529417458 +SHA256 (Net-SFTP-Foreign-1.89.tar.gz) = 9bd33e130581c1fc3eb6108eaf9056c1507428cace04a572f7afe816d83b08a7 +SIZE (Net-SFTP-Foreign-1.89.tar.gz) = 168865 Modified: head/net/p5-Net-SFTP-Foreign/pkg-descr ============================================================================== --- head/net/p5-Net-SFTP-Foreign/pkg-descr Wed Jun 20 07:55:30 2018 (r472851) +++ head/net/p5-Net-SFTP-Foreign/pkg-descr Wed Jun 20 07:57:34 2018 (r472852) @@ -1,3 +1,4 @@ -Net::SFTP::Foreign - Secure File Transfer Protocol client +Net::SFTP::Foreign implements an SFTP client in Perl using the native SSH client +application to establish the connection to the remote host. WWW: https://metacpan.org/release/Net-SFTP-Foreign Modified: head/net/p5-Net-SFTP-Foreign/pkg-plist ============================================================================== --- head/net/p5-Net-SFTP-Foreign/pkg-plist Wed Jun 20 07:55:30 2018 (r472851) +++ head/net/p5-Net-SFTP-Foreign/pkg-plist Wed Jun 20 07:57:34 2018 (r472852) @@ -16,3 +16,8 @@ %%PERL5_MAN3%%/Net::SFTP::Foreign::Compat.3.gz %%PERL5_MAN3%%/Net::SFTP::Foreign::Constants.3.gz %%PERL5_MAN3%%/Net::SFTP::Foreign::Local.3.gz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/capture_stderr.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/passwd_conn.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/psftp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resume_put.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sftp_tail.pl From owner-svn-ports-head@freebsd.org Wed Jun 20 08:37:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09A98100B28F; Wed, 20 Jun 2018 08:37:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AB86370A5A; Wed, 20 Jun 2018 08:37:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8CA781FE43; Wed, 20 Jun 2018 08:37:16 +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 w5K8bGec083184; Wed, 20 Jun 2018 08:37:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K8bGnW083183; Wed, 20 Jun 2018 08:37:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806200837.w5K8bGnW083183@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 20 Jun 2018 08:37:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472853 - head/devel/llvm40 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/llvm40 X-SVN-Commit-Revision: 472853 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 08:37:17 -0000 Author: amdmi3 Date: Wed Jun 20 08:37:16 2018 New Revision: 472853 URL: https://svnweb.freebsd.org/changeset/ports/472853 Log: - Switch to new test framework Approved by: portmgr blanket Modified: head/devel/llvm40/Makefile Modified: head/devel/llvm40/Makefile ============================================================================== --- head/devel/llvm40/Makefile Wed Jun 20 07:57:34 2018 (r472852) +++ head/devel/llvm40/Makefile Wed Jun 20 08:37:16 2018 (r472853) @@ -449,7 +449,7 @@ post-install-LIT-on: ${STAGEDIR}${PREFIX}/bin/FileCheck${LLVM_SUFFIX} TEST_CMD= '(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} LD_LIBRARY_PATH=${WRKSRC}/Release/lib ${MAKE_CMD} check-local-lit)' -regression-test: ${BUILD_COOKIE} +do-test: if [ `${ID} -u` = 0 ]; then \ ${CHOWN} -R nobody ${WRKSRC}/test; \ su -m nobody -c ${TEST_CMD}; \ From owner-svn-ports-head@freebsd.org Wed Jun 20 08:48:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 307A0100B9F2; Wed, 20 Jun 2018 08:48:21 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D39E270F88; Wed, 20 Jun 2018 08:48:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B4BFA1FFFF; Wed, 20 Jun 2018 08:48:20 +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 w5K8mKm7088219; Wed, 20 Jun 2018 08:48:20 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K8mJMZ088215; Wed, 20 Jun 2018 08:48:19 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201806200848.w5K8mJMZ088215@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, 20 Jun 2018 08:48:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472854 - in head/www/chromium: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in head/www/chromium: . files X-SVN-Commit-Revision: 472854 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 08:48:21 -0000 Author: cpm Date: Wed Jun 20 08:48:19 2018 New Revision: 472854 URL: https://svnweb.freebsd.org/changeset/ports/472854 Log: - Add patch to build chromium with native LLVM 6.0 on FreeBSD >= 1101513 - Disable use_gold flag. If lld is disabled, chromium uses the gold linker instead of lld of bfd. We do not want this to happen. - Bump PORTREVISION Added: head/www/chromium/files/extra-patch-llvm-base (contents, props changed) head/www/chromium/files/extra-patch-llvm-port (contents, props changed) head/www/chromium/files/patch-build_config_compiler_compiler.gni (contents, props changed) Deleted: head/www/chromium/files/patch-build_toolchain_gcc__toolchain.gni Modified: head/www/chromium/Makefile Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Jun 20 08:37:16 2018 (r472853) +++ head/www/chromium/Makefile Wed Jun 20 08:48:19 2018 (r472854) @@ -3,7 +3,7 @@ PORTNAME= chromium PORTVERSION= 65.0.3325.181 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -20,7 +20,6 @@ BUILD_DEPENDS= bash:shells/bash \ .if !defined(GN_ONLY) BUILD_DEPENDS+= gperf:devel/gperf \ - clang60:devel/llvm60 \ yasm:devel/yasm \ ffmpeg>=3.2.2,1:multimedia/ffmpeg \ flock:sysutils/flock \ @@ -91,8 +90,6 @@ SHEBANG_FILES= chrome/tools/build/linux/chrome-wrapper ALL_TARGET= chrome INSTALLS_ICONS= yes -CC= clang60 -CXX= clang++60 .endif EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang @@ -205,6 +202,16 @@ TEST_ALL_TARGET= ${TEST_TARGETS} TEST_DISTFILES= ${PORTNAME}-${DISTVERSION}-testdata${EXTRACT_SUFX} .include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1101513 +BUILD_DEPENDS+= clang60:devel/llvm60 +CC= clang60 +CXX= clang++60 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-llvm-port +.else +BUILD_DEPENDS+= ${LOCALBASE}/bin/ar:devel/binutils +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-llvm-base +.endif # TODO: -isystem, would be just as ugly as this approach, but more reliably # build would fail without C_INCLUDE_PATH/CPLUS_INCLUDE_PATH env var set. Added: head/www/chromium/files/extra-patch-llvm-base ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/extra-patch-llvm-base Wed Jun 20 08:48:19 2018 (r472854) @@ -0,0 +1,45 @@ +--- build/toolchain/gcc_toolchain.gni.orig 2018-03-20 23:05:14.000000000 +0100 ++++ build/toolchain/gcc_toolchain.gni 2018-06-18 20:55:17.080248000 +0200 +@@ -25,6 +25,11 @@ + rebase_path("//build/toolchain/clang_static_analyzer_wrapper.py", + root_build_dir) + " --mode=clang" + ++declare_args() { ++ extra_cxxflags = "" ++ extra_ldflags = "" ++} ++ + # This template defines a toolchain for something that works like gcc + # (including clang). + # +@@ -596,13 +601,23 @@ + } + + gcc_toolchain(target_name) { +- prefix = rebase_path("$clang_base_path/bin", root_build_dir) +- cc = "$prefix/clang" +- cxx = "$prefix/clang++" +- ld = cxx +- readelf = "${toolprefix}readelf" +- ar = "${prefix}/llvm-ar" +- nm = "${toolprefix}nm" ++ if (is_bsd) { ++ prefix = "/usr/local/bin" ++ cc = "cc" ++ cxx = "c++" ++ ld = cxx ++ readelf = "readelf" ++ ar = "${prefix}/ar" ++ nm = "${toolprefix}nm" ++ } else { ++ prefix = rebase_path("$clang_base_path/bin", root_build_dir) ++ cc = "$prefix/clang" ++ cxx = "$prefix/clang++" ++ ld = cxx ++ readelf = "${toolprefix}readelf" ++ ar = "${prefix}/llvm-ar" ++ nm = "${toolprefix}nm" ++ } + + forward_variables_from(invoker, + [ Added: head/www/chromium/files/extra-patch-llvm-port ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/extra-patch-llvm-port Wed Jun 20 08:48:19 2018 (r472854) @@ -0,0 +1,44 @@ +--- build/toolchain/gcc_toolchain.gni.orig 2017-06-05 19:03:01 UTC ++++ build/toolchain/gcc_toolchain.gni +@@ -19,6 +19,11 @@ analyzer_wrapper = + rebase_path("//build/toolchain/clang_static_analyzer_wrapper.py", + root_build_dir) + " --mode=clang" + ++declare_args() { ++ extra_cxxflags = "" ++ extra_ldflags = "" ++} ++ + # This template defines a toolchain for something that works like gcc + # (including clang). + # +@@ -548,13 +553,22 @@ template("clang_toolchain") { + } + + gcc_toolchain(target_name) { +- prefix = rebase_path("$clang_base_path/bin", root_build_dir) +- cc = "$prefix/clang" +- cxx = "$prefix/clang++" +- ld = cxx +- readelf = "${toolprefix}readelf" +- ar = "${prefix}/llvm-ar" +- nm = "${toolprefix}nm" ++ if (is_bsd) { ++ cc = "${toolprefix}clang60" ++ cxx = "${toolprefix}clang++60" ++ ld = cxx ++ readelf = "readelf" ++ ar = "${toolprefix}llvm-ar60" ++ nm = "${toolprefix}llvm-nm60" ++ } else { ++ prefix = rebase_path("$clang_base_path/bin", root_build_dir) ++ cc = "$prefix/clang" ++ cxx = "$prefix/clang++" ++ ld = cxx ++ readelf = "${toolprefix}readelf" ++ ar = "${prefix}/llvm-ar" ++ nm = "${toolprefix}nm" ++ } + + forward_variables_from(invoker, + [ Added: head/www/chromium/files/patch-build_config_compiler_compiler.gni ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-build_config_compiler_compiler.gni Wed Jun 20 08:48:19 2018 (r472854) @@ -0,0 +1,11 @@ +--- build/config/compiler/compiler.gni.orig 2018-06-19 18:20:54.692104000 +0200 ++++ build/config/compiler/compiler.gni 2018-06-19 18:21:18.098165000 +0200 +@@ -164,7 +164,7 @@ + + declare_args() { + # Whether to use the gold linker from binutils instead of lld or bfd. +- use_gold = ++ use_gold = !is_bsd && + (!use_lld && !(is_chromecast && is_linux && + (current_cpu == "arm" || current_cpu == "mipsel")) && + (is_linux && (current_cpu == "x64" || current_cpu == "x86" || From owner-svn-ports-head@freebsd.org Wed Jun 20 08:53:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38446100BED7; Wed, 20 Jun 2018 08:53:12 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D16E8714B8; Wed, 20 Jun 2018 08:53:11 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AFEE420195; Wed, 20 Jun 2018 08:53: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 w5K8rBnK093404; Wed, 20 Jun 2018 08:53:11 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K8rBVa093402; Wed, 20 Jun 2018 08:53:11 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201806200853.w5K8rBVa093402@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, 20 Jun 2018 08:53:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472855 - in head/www/iridium: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in head/www/iridium: . files X-SVN-Commit-Revision: 472855 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 08:53:12 -0000 Author: cpm Date: Wed Jun 20 08:53:10 2018 New Revision: 472855 URL: https://svnweb.freebsd.org/changeset/ports/472855 Log: - Add patch to build iridium with native LLVM 6.0 on FreeBSD >= 1101513 - Disable use_gold flag. If lld is enabled, iridium uses the gold linker instead of lld or bfd. We do not want this to happen - Drop FreeBSD 10.3 support - Bump PORTREVISION Added: head/www/iridium/files/extra-patch-llvm-base (contents, props changed) head/www/iridium/files/extra-patch-llvm-port (contents, props changed) Deleted: head/www/iridium/files/patch-build_toolchain_gcc__toolchain.gni Modified: head/www/iridium/Makefile Modified: head/www/iridium/Makefile ============================================================================== --- head/www/iridium/Makefile Wed Jun 20 08:48:19 2018 (r472854) +++ head/www/iridium/Makefile Wed Jun 20 08:53:10 2018 (r472855) @@ -3,7 +3,7 @@ PORTNAME= iridium PORTVERSION= 58.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= www MASTER_SITES= https://downloads.iridiumbrowser.de/source/ PKGNAMESUFFIX= -browser @@ -16,7 +16,6 @@ LICENSE= BSD3CLAUSE LGPL21 MPL11 LICENSE_COMB= multi BUILD_DEPENDS= gperf:devel/gperf \ - clang60:devel/llvm60 \ yasm:devel/yasm \ ffmpeg>=3.2.2,1:multimedia/ffmpeg \ bash:shells/bash \ @@ -71,8 +70,6 @@ ALL_TARGET= chrome INSTALLS_ICONS= yes BINARY_ALIAS= python=${PYTHON_CMD} -CC= clang60 -CXX= clang++60 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang # Run "./out/${BUILDTYPE}/gn args out/${BUILDTYPE} --list" for all variables. @@ -158,15 +155,20 @@ SNDIO_VARS_OFF= GN_ARGS+=use_sndio=false .include +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1101513 +BUILD_DEPENDS+= clang60:devel/llvm60 +CC= clang60 +CXX= clang++60 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-llvm-port +.else +BUILD_DEPENDS+= ${LOCALBASE}/bin/ar:devel/binutils +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-llvm-base +.endif + # TODO: -isystem, would be just as ugly as this approach, but more reliably # build would fail without C_INCLUDE_PATH/CPLUS_INCLUDE_PATH env var set. MAKE_ENV+= C_INCLUDE_PATH=${LOCALBASE}/include \ CPLUS_INCLUDE_PATH=${LOCALBASE}/include - -# Work around base r261801 -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100508 -GN_ARGS+= extra_cxxflags="-D_LIBCPP_TRIVIAL_PAIR_COPY_CTOR=1" -.endif pre-everything:: @${ECHO_MSG} Added: head/www/iridium/files/extra-patch-llvm-base ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/extra-patch-llvm-base Wed Jun 20 08:53:10 2018 (r472855) @@ -0,0 +1,53 @@ +--- build/toolchain/gcc_toolchain.gni.orig 2017-04-19 21:06:28.000000000 +0200 ++++ build/toolchain/gcc_toolchain.gni 2018-06-19 17:35:48.967441000 +0200 +@@ -12,6 +12,11 @@ + import("//build/toolchain/goma.gni") + import("//build/toolchain/toolchain.gni") + ++declare_args() { ++ extra_cxxflags = "" ++ extra_ldflags = "" ++} ++ + # This template defines a toolchain for something that works like gcc + # (including clang). + # +@@ -483,10 +488,23 @@ + } + + gcc_toolchain(target_name) { +- prefix = rebase_path("$clang_base_path/bin", root_build_dir) +- cc = "$prefix/clang" +- cxx = "$prefix/clang++" +- ld = cxx ++ if (is_bsd) { ++ prefix = "/usr/local/bin" ++ cc = "cc" ++ cxx = "c++" ++ ld = cxx ++ readelf = "readelf" ++ ar = "${prefix}/ar" ++ nm = "${toolprefix}nm" ++ } else { ++ prefix = rebase_path("$clang_base_path/bin", root_build_dir) ++ cc = "$prefix/clang" ++ cxx = "$prefix/clang++" ++ ld = cxx ++ readelf = "${toolprefix}readelf" ++ ar = "${toolprefix}ar" ++ nm = "${toolprefix}nm" ++ } + + if (use_clang_static_analyzer) { + # Static analysis isn't supported under GOMA. See crbug.com/687245 +@@ -506,10 +524,6 @@ + rebase_path("//third_party/scan-build/src/libexec/c++-analyzer", + root_build_dir) + } +- +- readelf = "${toolprefix}readelf" +- ar = "${toolprefix}ar" +- nm = "${toolprefix}nm" + + forward_variables_from(invoker, [ "strip" ]) + Added: head/www/iridium/files/extra-patch-llvm-port ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/extra-patch-llvm-port Wed Jun 20 08:53:10 2018 (r472855) @@ -0,0 +1,52 @@ +--- build/toolchain/gcc_toolchain.gni.orig 2017-04-19 19:06:28 UTC ++++ build/toolchain/gcc_toolchain.gni +@@ -12,6 +12,11 @@ import("//build/toolchain/clang_static_a + import("//build/toolchain/goma.gni") + import("//build/toolchain/toolchain.gni") + ++declare_args() { ++ extra_cxxflags = "" ++ extra_ldflags = "" ++} ++ + # This template defines a toolchain for something that works like gcc + # (including clang). + # +@@ -483,10 +488,22 @@ template("clang_toolchain") { + } + + gcc_toolchain(target_name) { +- prefix = rebase_path("$clang_base_path/bin", root_build_dir) +- cc = "$prefix/clang" +- cxx = "$prefix/clang++" +- ld = cxx ++ if (is_bsd) { ++ cc = "${toolprefix}clang60" ++ cxx = "${toolprefix}clang++60" ++ ld = cxx ++ readelf = "readelf" ++ ar = "${toolprefix}llvm-ar60" ++ nm = "${toolprefix}llvm-nm60" ++ } else { ++ prefix = rebase_path("$clang_base_path/bin", root_build_dir) ++ cc = "$prefix/clang" ++ cxx = "$prefix/clang++" ++ ld = cxx ++ readelf = "${toolprefix}readelf" ++ ar = "${toolprefix}ar" ++ nm = "${toolprefix}nm" ++ } + + if (use_clang_static_analyzer) { + # Static analysis isn't supported under GOMA. See crbug.com/687245 +@@ -507,10 +524,6 @@ template("clang_toolchain") { + root_build_dir) + } + +- readelf = "${toolprefix}readelf" +- ar = "${toolprefix}ar" +- nm = "${toolprefix}nm" +- + forward_variables_from(invoker, [ "strip" ]) + + toolchain_args = { From owner-svn-ports-head@freebsd.org Wed Jun 20 08:56:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BF5D100C06C; Wed, 20 Jun 2018 08:56:06 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DDB487160C; Wed, 20 Jun 2018 08:56:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B6C2620197; Wed, 20 Jun 2018 08:56:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K8u5bE093708; Wed, 20 Jun 2018 08:56:05 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K8u4ow093699; Wed, 20 Jun 2018 08:56:04 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806200856.w5K8u4ow093699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 08:56:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472856 - in head: . net-p2p net-p2p/qbittorrent net-p2p/qbittorrent-nox11 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: . net-p2p net-p2p/qbittorrent net-p2p/qbittorrent-nox11 X-SVN-Commit-Revision: 472856 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 08:56:06 -0000 Author: yuri Date: Wed Jun 20 08:56:04 2018 New Revision: 472856 URL: https://svnweb.freebsd.org/changeset/ports/472856 Log: net-p2p/qbittorrent: Update 3.3.16 -> 4.1.1 net-p2p/qbittorrent-nox11 is flavorized in net-p2p/qbittorrent and removed. Approved by: portmgr Differential Revision: D13416 Deleted: head/net-p2p/qbittorrent-nox11/ Modified: head/MOVED head/net-p2p/Makefile head/net-p2p/qbittorrent/Makefile head/net-p2p/qbittorrent/distinfo head/net-p2p/qbittorrent/pkg-descr head/net-p2p/qbittorrent/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Wed Jun 20 08:53:10 2018 (r472855) +++ head/MOVED Wed Jun 20 08:56:04 2018 (r472856) @@ -10283,3 +10283,4 @@ net/syncthing-cli|net/syncthing|2018-06-18|Has expired x11-themes/adwaita-common||2018-06-19|Move to flavored version x11-themes/adwaita-qt4|x11-themes/adwaita-qt@qt4|2018-06-19|Move to flavored version x11-themes/adwaita-qt5|x11-themes/adwaita-qt@qt5|2018-06-19|Move to flavored version +net-p2p/qbittorrent-nox11|net-p2p/qbittorrent@nox|2018-06-20|Moved to a flavored version Modified: head/net-p2p/Makefile ============================================================================== --- head/net-p2p/Makefile Wed Jun 20 08:53:10 2018 (r472855) +++ head/net-p2p/Makefile Wed Jun 20 08:56:04 2018 (r472856) @@ -77,7 +77,6 @@ SUBDIR += py-tremc SUBDIR += py-vertex SUBDIR += qbittorrent - SUBDIR += qbittorrent-nox11 SUBDIR += qtum SUBDIR += radarr SUBDIR += retroshare Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Wed Jun 20 08:53:10 2018 (r472855) +++ head/net-p2p/qbittorrent/Makefile Wed Jun 20 08:56:04 2018 (r472856) @@ -2,61 +2,64 @@ # $FreeBSD$ PORTNAME= qbittorrent -DISTVERSION= 3.3.16 -PORTREVISION= 2 +DISTVERSION= 4.1.1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= yuri@FreeBSD.org -COMMENT?= Bittorrent client using Qt4/5 and libtorrent-rasterbar +COMMENT= Bittorrent client using Qt4/5 and libtorrent-rasterbar LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_FreeBSD_10= error: no matching constructor for initialization of 'const QString' + LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorrent-rasterbar \ libboost_system.so:devel/boost-libs -USES= compiler:c++11-lib pkgconfig tar:xz -GNU_CONFIGURE= yes -USE_QT5= core network xml qmake_build buildtools_build linguisttools_build -QT_NONSTANDARD= yes -DESTDIRNAME= INSTALL_ROOT +FLAVORS= default nox +default_LIB_DEPENDS= libGeoIP.so:net/GeoIP +nox_PKGNAMESUFFIX= -nox +nox_PLIST= ${NONEXISTENT} -PORTDOCS= AUTHORS Changelog README.md +USES= compiler:c++11-lib pkgconfig tar:xz +GNU_CONFIGURE= yes +USE_QT5= core network svg xml buildtools_build linguisttools_build qmake_build +CONFIGURE_ARGS= CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" +QT_NONSTANDARD= yes +DESTDIRNAME= INSTALL_ROOT -.if !defined(SLAVE_PORT) || ${SLAVE_PORT:tl} == "no" -WITH_GUI:= yes -.else -WITH_GUI:= no -SUFFIX:= -nox +.if ${FLAVOR:Udefault} == default +USES+= desktop-file-utils +USE_QT5+= concurrent gui widgets +USE_GL= gl .endif +.if ${FLAVOR:U} == nox +SUFFIX= -nox +COMMENT+= (web UI version) +CONFIGURE_ARGS+= --disable-gui +PLIST_FILES= bin/qbittorrent${SUFFIX} \ + man/man1/qbittorrent${SUFFIX}.1.gz +.endif + OPTIONS_DEFINE= DBUS DEBUG DOCS +OPTIONS_DEFAULT= DBUS DEBUG_CONFIGURE_ENABLE= debug DBUS_CONFIGURE_ENABLE= qt-dbus DBUS_USE= qt5=dbus -.if ${WITH_GUI} == "yes" -LIB_DEPENDS+= libGeoIP.so:net/GeoIP -USES+= desktop-file-utils -USE_QT5+= concurrent gui widgets -USE_GL+= gl -OPTIONS_DEFAULT+= DBUS -.else -CONFIGURE_ARGS+= --disable-gui -.endif +PORTDOCS= AUTHORS Changelog README.md -CONFIGURE_ARGS+= CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" - post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qbittorrent${SUFFIX} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qbittorrent${SUFFIX} ${INSTALL_MAN} ${WRKSRC}/doc/qbittorrent${SUFFIX}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1/ - ${RM} -r ${STAGEDIR}${PREFIX}/share/man + @${RM} -r ${STAGEDIR}${PREFIX}/share/man post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Modified: head/net-p2p/qbittorrent/distinfo ============================================================================== --- head/net-p2p/qbittorrent/distinfo Wed Jun 20 08:53:10 2018 (r472855) +++ head/net-p2p/qbittorrent/distinfo Wed Jun 20 08:56:04 2018 (r472856) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508414513 -SHA256 (qbittorrent-3.3.16.tar.xz) = ea08a61872c397258c2627780f6e09fe777189d9a57cc5e02a656da9aeb0be57 -SIZE (qbittorrent-3.3.16.tar.xz) = 2961420 +TIMESTAMP = 1529203767 +SHA256 (qbittorrent-4.1.1.tar.xz) = 8edc7a7fff8aa45e7bf763c91f30e064e1d7acd3f6efecb12fee420b75457ee7 +SIZE (qbittorrent-4.1.1.tar.xz) = 4333588 Modified: head/net-p2p/qbittorrent/pkg-descr ============================================================================== --- head/net-p2p/qbittorrent/pkg-descr Wed Jun 20 08:53:10 2018 (r472855) +++ head/net-p2p/qbittorrent/pkg-descr Wed Jun 20 08:56:04 2018 (r472856) @@ -20,4 +20,4 @@ Features: - Advanced RSS support with download filters (inc. regex) - IP Filtering (eMule and PeerGuardian compatible) -WWW: http://www.qbittorrent.org/ +WWW: https://www.qbittorrent.org/ Modified: head/net-p2p/qbittorrent/pkg-plist ============================================================================== --- head/net-p2p/qbittorrent/pkg-plist Wed Jun 20 08:53:10 2018 (r472855) +++ head/net-p2p/qbittorrent/pkg-plist Wed Jun 20 08:56:04 2018 (r472856) @@ -24,4 +24,7 @@ share/icons/hicolor/72x72/apps/qbittorrent.png share/icons/hicolor/72x72/status/qbittorrent-tray.png share/icons/hicolor/96x96/apps/qbittorrent.png share/icons/hicolor/96x96/status/qbittorrent-tray.png +share/icons/hicolor/scalable/status/qbittorrent-tray-dark.svg +share/icons/hicolor/scalable/status/qbittorrent-tray-light.svg +share/icons/hicolor/scalable/status/qbittorrent-tray.svg share/pixmaps/qbittorrent.png From owner-svn-ports-head@freebsd.org Wed Jun 20 09:00:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BBFB100C513; Wed, 20 Jun 2018 09:00:55 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 006727180A; Wed, 20 Jun 2018 09:00:55 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D58C1201C0; Wed, 20 Jun 2018 09:00:54 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K90swk094771; Wed, 20 Jun 2018 09:00:54 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K90s0m094768; Wed, 20 Jun 2018 09:00:54 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806200900.w5K90s0m094768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Wed, 20 Jun 2018 09:00:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472857 - in head/devel/cmake: . files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: in head/devel/cmake: . files X-SVN-Commit-Revision: 472857 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:00:55 -0000 Author: adridg Date: Wed Jun 20 09:00:53 2018 New Revision: 472857 URL: https://svnweb.freebsd.org/changeset/ports/472857 Log: ntroduce OPTION for devel/cmake to generate packages The generator causes segfaults because it doesn't call pkg_init() (see https://gitlab.kitware.com/cmake/cmake/issues/18031). This feature was briefly enabled by default for 3.11.0, between r467437 (added) and r467620 (removed), but causes problems with stage-qa (PR 227372). Hide it behind an OPTION for people who want it and don't worry about stage-qa. The patch to CPack source will be submitted upstream once some corner cases are ironed out. Reported by: upstream Approved by: tcberner Differential Revision: https://reviews.freebsd.org/D15900 Added: head/devel/cmake/files/patch-Source_CPack_cmCPackFreeBSDGenerator.cxx (contents, props changed) Modified: head/devel/cmake/Makefile head/devel/cmake/files/InitialCache.cmake Modified: head/devel/cmake/Makefile ============================================================================== --- head/devel/cmake/Makefile Wed Jun 20 08:56:04 2018 (r472856) +++ head/devel/cmake/Makefile Wed Jun 20 09:00:53 2018 (r472857) @@ -4,6 +4,7 @@ PORTNAME= cmake # Remember to update devel/cmake-doc and devel/cmake-gui as well. DISTVERSION= 3.11.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ @@ -19,7 +20,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libuv.so:devel/libuv \ librhash.so:security/rhash -USES= compiler:c++11-lang libarchive ncurses +USES= compiler:c++11-lang ncurses HAS_CONFIGURE= yes CONFIGURE_ENV= MAKE=make @@ -28,9 +29,9 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ --docdir="/${DOCSDIR_REL}" \ --system-libs \ --parallel=${MAKE_JOBS_NUMBER} \ - --init="${PATCHDIR}/InitialCache.cmake" + --init="${WRKSRC}/InitialCache.cmake" -OPTIONS_DEFINE= DOCS MANPAGES +OPTIONS_DEFINE= DOCS MANPAGES CPACK OPTIONS_DEFAULT=MANPAGES OPTIONS_SUB= yes @@ -38,6 +39,11 @@ MANPAGES_USES= python:env MANPAGES_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} MANPAGES_CONFIGURE_ON= --sphinx-man +CPACK_DESC= Enable FreeBSD generator in CPack (experimental) +CPACK_LIB_DEPENDS= libpkg.so:ports-mgmt/pkg +CPACK_USES_OFF= libarchive +# When CPACK is on, uses base libarchive and won't pass stage-qa + CONFLICTS_INSTALL= cmake-modules-* .include @@ -45,6 +51,25 @@ CONFLICTS_INSTALL= cmake-modules-* .if defined(STRIP) && ${STRIP} != "" && !defined(WITH_DEBUG) INSTALL_TARGET= install/strip .endif + +# Before running configure, substitute in the values of options +# for the build. CMake's configure doesn't accept --with-foo +# or similar options: it expects them to be set in CMake-style +# syntax in the initial cache. +pre-configure: + @${CP} "${FILESDIR}/InitialCache.cmake" "${WRKSRC}/InitialCache.cmake" + +pre-configure-CPACK-on: + @${REINPLACE_CMD} \ + -e 's/@@CPACK_OPTION_VALUE@@/ON/' \ + -e 's/@@CPACK_OPTION_COMMENT@@//' \ + "${WRKSRC}/InitialCache.cmake" + +pre-configure-CPACK-off: + @${REINPLACE_CMD} \ + -e 's/@@CPACK_OPTION_VALUE@@/OFF/' \ + -e 's/@@CPACK_OPTION_COMMENT@@/# /' \ + "${WRKSRC}/InitialCache.cmake" post-patch: @(${FIND} ${WRKSRC}/Modules -name "*.cmake" -print0; \ Modified: head/devel/cmake/files/InitialCache.cmake ============================================================================== --- head/devel/cmake/files/InitialCache.cmake Wed Jun 20 08:56:04 2018 (r472856) +++ head/devel/cmake/files/InitialCache.cmake Wed Jun 20 09:00:53 2018 (r472857) @@ -15,5 +15,15 @@ set(LIBLZMA_INCLUDE_DIR "/usr/include" CACHE PATH set(LIBLZMA_LIBRARY "/usr/lib/liblzma.so" CACHE PATH "LibLZMA library to link against.") -# Don't even try -set(CPACK_ENABLE_FREEBSD_PKG OFF CACHE BOOL "Enable pkg(8) generator in CPack") +# Set (or not) by the CPACK option by replacing @@CPACK_OPTION_VALUE@@ +# with the value of the option itself. +# +set(CPACK_ENABLE_FREEBSD_PKG @@CPACK_OPTION_VALUE@@ CACHE BOOL "Enable pkg(8) generator in CPack") +# Use base libarchive instead of ports, because libpkg uses base +@@CPACK_OPTION_COMMENT@@set(LibArchive_INCLUDE_DIR "/usr/include" CACHE PATH +@@CPACK_OPTION_COMMENT@@ "Directory where LibArchive headers are located.") +# Hack to (a) prevent using either ports libarchive or the bundled version +# and (b) libpkg links to base libarchive. +@@CPACK_OPTION_COMMENT@@set(LibArchive_LIBRARY "/usr/lib/libthr.so;/usr/lib/libarchive.so" CACHE PATH +@@CPACK_OPTION_COMMENT@@ "LibArchive library to link against.") + Added: head/devel/cmake/files/patch-Source_CPack_cmCPackFreeBSDGenerator.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cmake/files/patch-Source_CPack_cmCPackFreeBSDGenerator.cxx Wed Jun 20 09:00:53 2018 (r472857) @@ -0,0 +1,18 @@ +diff --git Source/CPack/cmCPackFreeBSDGenerator.cxx Source/CPack/cmCPackFreeBSDGenerator.cxx +index 91ae1a23f..a676302e7 100644 +--- Source/CPack/cmCPackFreeBSDGenerator.cxx ++++ Source/CPack/cmCPackFreeBSDGenerator.cxx +@@ -339,6 +339,13 @@ int cmCPackFreeBSDGenerator::PackageFiles() + + std::string output_dir = + cmSystemTools::CollapseCombinedPath(toplevel, "../"); ++ if (!pkg_initialized() && pkg_init(NULL, NULL) != EPKG_OK) ++ { ++ cmCPackLogger(cmCPackLog::LOG_ERROR, ++ "Can not initialize libpkg." << std::endl); ++ return 0; ++ } ++ + pkg_create_from_manifest(output_dir.c_str(), ::TXZ, toplevel.c_str(), + manifestname.c_str(), NULL); + From owner-svn-ports-head@freebsd.org Wed Jun 20 09:07:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 651AC100CA7E; Wed, 20 Jun 2018 09:07:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1753F71D8B; Wed, 20 Jun 2018 09:07:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E87D720333; Wed, 20 Jun 2018 09:07:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K97CEq099104; Wed, 20 Jun 2018 09:07:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K97CBX099103; Wed, 20 Jun 2018 09:07:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806200907.w5K97CBX099103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 20 Jun 2018 09:07:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472858 - head/devel/p5-Curses X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/p5-Curses X-SVN-Commit-Revision: 472858 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:07:13 -0000 Author: amdmi3 Date: Wed Jun 20 09:07:12 2018 New Revision: 472858 URL: https://svnweb.freebsd.org/changeset/ports/472858 Log: - Add LICENSE Approved by: portmgr blanket Modified: head/devel/p5-Curses/Makefile Modified: head/devel/p5-Curses/Makefile ============================================================================== --- head/devel/p5-Curses/Makefile Wed Jun 20 09:00:53 2018 (r472857) +++ head/devel/p5-Curses/Makefile Wed Jun 20 09:07:12 2018 (r472858) @@ -10,6 +10,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module for terminal screen handling and optimization +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE_ART10= ${WRKSRC}/Artistic +LICENSE_FILE_GPLv1+ = ${WRKSRC}/Copying + USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 20 09:17:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27C7F100D426; Wed, 20 Jun 2018 09:17:40 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDF4F72574; Wed, 20 Jun 2018 09:17:39 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AB7E3204E0; Wed, 20 Jun 2018 09:17:39 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K9HdKc004175; Wed, 20 Jun 2018 09:17:39 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K9HdK9004173; Wed, 20 Jun 2018 09:17:39 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201806200917.w5K9HdK9004173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 20 Jun 2018 09:17:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472859 - head/net-im/openfire X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/net-im/openfire X-SVN-Commit-Revision: 472859 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:17:40 -0000 Author: gahr Date: Wed Jun 20 09:17:38 2018 New Revision: 472859 URL: https://svnweb.freebsd.org/changeset/ports/472859 Log: net-im/openfire: update to 4.2.3 Changelog: http://download.igniterealtime.org/openfire/docs/4.2.3/changelog.html PR: 229165 Submitted by: dougs@dawnsign.com Modified: head/net-im/openfire/Makefile head/net-im/openfire/distinfo Modified: head/net-im/openfire/Makefile ============================================================================== --- head/net-im/openfire/Makefile Wed Jun 20 09:07:12 2018 (r472858) +++ head/net-im/openfire/Makefile Wed Jun 20 09:17:38 2018 (r472859) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openfire -PORTVERSION= 4.2.2 +PORTVERSION= 4.2.3 PORTREVISION= 0 PORTEPOCH= 1 CATEGORIES= net-im java Modified: head/net-im/openfire/distinfo ============================================================================== --- head/net-im/openfire/distinfo Wed Jun 20 09:07:12 2018 (r472858) +++ head/net-im/openfire/distinfo Wed Jun 20 09:17:38 2018 (r472859) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518606031 -SHA256 (openfire_src_4_2_2.tar.gz) = a9fa56332cec9437c751644bf23dbbf65a332605493d4780b97b0da4a5febe7d -SIZE (openfire_src_4_2_2.tar.gz) = 110865419 +TIMESTAMP = 1529481893 +SHA256 (openfire_src_4_2_3.tar.gz) = 9a901bcd06920ccb5b417517db029a4a20b775d49aa39d918a996d4aaf47430c +SIZE (openfire_src_4_2_3.tar.gz) = 113557155 From owner-svn-ports-head@freebsd.org Wed Jun 20 09:27:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 108AC100DBDA; Wed, 20 Jun 2018 09:27:55 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0072B72C33; Wed, 20 Jun 2018 09:27:52 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 21F182066E; Wed, 20 Jun 2018 09:27:52 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K9Rp8Y009101; Wed, 20 Jun 2018 09:27:51 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K9Rp9Q009100; Wed, 20 Jun 2018 09:27:51 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806200927.w5K9Rp9Q009100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Wed, 20 Jun 2018 09:27:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472860 - head/math/vtk6/files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/math/vtk6/files X-SVN-Commit-Revision: 472860 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:27:55 -0000 Author: adridg Date: Wed Jun 20 09:27:51 2018 New Revision: 472860 URL: https://svnweb.freebsd.org/changeset/ports/472860 Log: Fix build of math/vtk6 with Clang6 on -CURRENT. The definition of NULL has changed in C++, and conversions have gotten stricter, so using NULL where you mean 0 (or false) is no longer an option. Detected by fallout from updating CMake 3.12. No PORTREVISION bump because everywhere where it compiled previously sees no change, and where it didn't compile before it does now with the same result. Reported by: tcberner Added: head/math/vtk6/files/patch-Rendering_OpenGL_vtkXOpenGLRenderWindow.cxx (contents, props changed) Added: head/math/vtk6/files/patch-Rendering_OpenGL_vtkXOpenGLRenderWindow.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/files/patch-Rendering_OpenGL_vtkXOpenGLRenderWindow.cxx Wed Jun 20 09:27:51 2018 (r472860) @@ -0,0 +1,40 @@ +--- Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx.orig 2015-03-03 20:37:14 UTC ++++ Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx +@@ -386,7 +386,7 @@ XVisualInfo *vtkXOpenGLRenderWindow::Get + + vtkXOpenGLRenderWindow::vtkXOpenGLRenderWindow() + { +- this->ParentId = static_cast(NULL); ++ this->ParentId = static_cast(0); + this->ScreenSize[0] = 0; + this->ScreenSize[1] = 0; + this->OwnDisplay = 0; +@@ -394,8 +394,8 @@ vtkXOpenGLRenderWindow::vtkXOpenGLRender + this->ForceMakeCurrent = 0; + this->UsingHardware = 0; + this->DisplayId = static_cast(NULL); +- this->WindowId = static_cast(NULL); +- this->NextWindowId = static_cast(NULL); ++ this->WindowId = static_cast(0); ++ this->NextWindowId = static_cast(0); + this->ColorMap = static_cast(0); + this->OwnWindow = 0; + +@@ -776,7 +776,7 @@ void vtkXOpenGLRenderWindow::DestroyWind + if (this->OwnWindow && this->DisplayId && this->WindowId) + { + XDestroyWindow(this->DisplayId,this->WindowId); +- this->WindowId = static_cast(NULL); ++ this->WindowId = static_cast(0); + } + + // if we create the display, we'll delete it +@@ -1168,7 +1168,7 @@ void vtkXOpenGLRenderWindow::WindowRemap + + // set the default windowid + this->WindowId = this->NextWindowId; +- this->NextWindowId = static_cast(NULL); ++ this->NextWindowId = static_cast(0); + + // set everything up again + this->Initialize(); From owner-svn-ports-head@freebsd.org Wed Jun 20 09:37:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10974100E28E; Wed, 20 Jun 2018 09:37:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B38D873202; Wed, 20 Jun 2018 09:37:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91A78207FC; Wed, 20 Jun 2018 09:37:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5K9bCWZ014565; Wed, 20 Jun 2018 09:37:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K9bCsZ014563; Wed, 20 Jun 2018 09:37:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806200937.w5K9bCsZ014563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 20 Jun 2018 09:37:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472861 - head/devel/websocketpp X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/websocketpp X-SVN-Commit-Revision: 472861 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:37:13 -0000 Author: amdmi3 Date: Wed Jun 20 09:37:11 2018 New Revision: 472861 URL: https://svnweb.freebsd.org/changeset/ports/472861 Log: - Fix LICENSE - Update WWW Approved by: portmgr blanket Modified: head/devel/websocketpp/Makefile head/devel/websocketpp/pkg-descr Modified: head/devel/websocketpp/Makefile ============================================================================== --- head/devel/websocketpp/Makefile Wed Jun 20 09:27:51 2018 (r472860) +++ head/devel/websocketpp/Makefile Wed Jun 20 09:37:11 2018 (r472861) @@ -7,7 +7,8 @@ CATEGORIES= devel MAINTAINER= arved@FreeBSD.org COMMENT= Header only implementation of the WebSocket protocol -LICENSE= MIT +LICENSE= MIT BSD3CLAUSE ZLIB +LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes Modified: head/devel/websocketpp/pkg-descr ============================================================================== --- head/devel/websocketpp/pkg-descr Wed Jun 20 09:27:51 2018 (r472860) +++ head/devel/websocketpp/pkg-descr Wed Jun 20 09:37:11 2018 (r472861) @@ -5,4 +5,4 @@ It allows integrating WebSocket client and server func C++ programs. It uses interchangable network transport modules including one based on C++ iostreams and one based on Boost Asio. -WWW: http://www.zaphoyd.com/websocketpp/ +WWW: https://www.zaphoyd.com/websocketpp/ From owner-svn-ports-head@freebsd.org Wed Jun 20 09:38:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62E4E100E628; Wed, 20 Jun 2018 09:38:19 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 107F673420; Wed, 20 Jun 2018 09:38:19 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E5D9B207FD; Wed, 20 Jun 2018 09:38:18 +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 w5K9cIdQ014706; Wed, 20 Jun 2018 09:38:18 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5K9cIC3014705; Wed, 20 Jun 2018 09:38:18 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201806200938.w5K9cIC3014705@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, 20 Jun 2018 09:38:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472862 - head/www/iridium/files X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: head/www/iridium/files X-SVN-Commit-Revision: 472862 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:38:19 -0000 Author: cpm Date: Wed Jun 20 09:38:18 2018 New Revision: 472862 URL: https://svnweb.freebsd.org/changeset/ports/472862 Log: - Add missing patch after r472855 Added: head/www/iridium/files/patch-build_config_compiler_compiler.gni (contents, props changed) Added: head/www/iridium/files/patch-build_config_compiler_compiler.gni ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-build_config_compiler_compiler.gni Wed Jun 20 09:38:18 2018 (r472862) @@ -0,0 +1,11 @@ +--- build/config/compiler/compiler.gni.orig 2018-06-19 18:30:17.888048000 +0200 ++++ build/config/compiler/compiler.gni 2018-06-19 18:32:11.279335000 +0200 +@@ -72,7 +72,7 @@ + + declare_args() { + # Whether to use the gold linker from binutils instead of lld or bfd. +- use_gold = !use_lld && !(is_chromecast && is_linux && ++ use_gold = !is_bsd && !use_lld && !(is_chromecast && is_linux && + (current_cpu == "arm" || current_cpu == "mipsel")) && + ((is_linux && (current_cpu == "x64" || current_cpu == "x86" || + current_cpu == "arm" || current_cpu == "mipsel")) || From owner-svn-ports-head@freebsd.org Wed Jun 20 09:46:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABA5E100EC40; Wed, 20 Jun 2018 09:46:02 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) Received: from ppsw-30.csi.cam.ac.uk (ppsw-30.csi.cam.ac.uk [131.111.8.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F03273934; Wed, 20 Jun 2018 09:46:02 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) X-Cam-AntiVirus: no malware found X-Cam-ScannerInfo: http://help.uis.cam.ac.uk/email-scanner-virus Received: from sc1.bsdpad.com ([163.172.212.18]:56045) by ppsw-30.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.156]:587) with esmtpsa (LOGIN:rb743) (TLSv1:ECDHE-RSA-AES256-SHA:256) id 1fVZgf-000qLZ-dA (Exim 4.91) (return-path ); Wed, 20 Jun 2018 10:46:01 +0100 Date: Wed, 20 Jun 2018 10:35:29 +0100 From: Ruslan Bukin To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472783 - head/Templates Message-ID: <20180620093529.GA8916@bsdpad.com> References: <201806191236.w5JCarwQ059758@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.1 (2016-04-27) Sender: "R. Bukin" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 09:46:02 -0000 Will take a look. Sorry and thanks :) Ruslan On Tue, Jun 19, 2018 at 07:00:35PM +0200, Jan Beich wrote: > Ruslan Bukin writes: > > > Author: br (src committer) > > Date: Tue Jun 19 12:36:52 2018 > > New Revision: 472783 > > URL: https://svnweb.freebsd.org/changeset/ports/472783 > > > > Log: > > Update config.guess and config.sub to the latest version. > > > > RISC-V machine added to config.sub allowing us to build > > ports/packages for RISC-V. > > > > Sponsored by: DARPA, AFRL > [...] > > *:FreeBSD:*:*) > > UNAME_PROCESSOR=`/usr/bin/uname -p` > > - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` > > + case "$UNAME_PROCESSOR" in > > + amd64) > > + UNAME_PROCESSOR=x86_64 ;; > > + i386) > > + UNAME_PROCESSOR=i586 ;; > > + esac > > + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" > > exit ;; > > Did you check for fallout via exp-run? See also > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208440 > > $ sh Templates/config.guess > i386-unknown-freebsd10.4 > > $ svn up Templates > Updating 'Templates': > U Templates/config.guess > U Templates/config.sub > Updated to revision 472804. > > $ sh Templates/config.guess > i586-unknown-freebsd10.4 > > > > $ sh Templates/config.guess > amd64-unknown-freebsd12.0 > > $ svn up Templates > Updating 'Templates': > U Templates/config.guess > U Templates/config.sub > Updated to revision 472804. > > $ sh Templates/config.guess > x86_64-unknown-freebsd12.0 From owner-svn-ports-head@freebsd.org Wed Jun 20 10:08:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16F4D100FB10; Wed, 20 Jun 2018 10:08:11 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BD0657447B; Wed, 20 Jun 2018 10:08:10 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 99BE820CDB; Wed, 20 Jun 2018 10:08:10 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KA8AwT029475; Wed, 20 Jun 2018 10:08:10 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KA8AHt029473; Wed, 20 Jun 2018 10:08:10 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201806201008.w5KA8AHt029473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Wed, 20 Jun 2018 10:08:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472863 - head/games/openjazz X-SVN-Group: ports-head X-SVN-Commit-Author: martymac X-SVN-Commit-Paths: head/games/openjazz X-SVN-Commit-Revision: 472863 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 10:08:11 -0000 Author: martymac Date: Wed Jun 20 10:08:09 2018 New Revision: 472863 URL: https://svnweb.freebsd.org/changeset/ports/472863 Log: Update to 20180522 Modified: head/games/openjazz/Makefile head/games/openjazz/distinfo Modified: head/games/openjazz/Makefile ============================================================================== --- head/games/openjazz/Makefile Wed Jun 20 09:38:18 2018 (r472862) +++ head/games/openjazz/Makefile Wed Jun 20 10:08:09 2018 (r472863) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openjazz -PORTVERSION= 20180329 +PORTVERSION= 20180522 CATEGORIES= games MAINTAINER= martymac@FreeBSD.org @@ -14,7 +14,6 @@ USES= dos2unix gmake USE_GITHUB= yes GH_ACCOUNT= AlisterT -GH_TAGNAME= 2c4d351 DOS2UNIX_REGEX= .*\.(h|cpp) ALL_TARGET= OpenJazz Modified: head/games/openjazz/distinfo ============================================================================== --- head/games/openjazz/distinfo Wed Jun 20 09:38:18 2018 (r472862) +++ head/games/openjazz/distinfo Wed Jun 20 10:08:09 2018 (r472863) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526327052 -SHA256 (AlisterT-openjazz-20180329-2c4d351_GH0.tar.gz) = 3792df90c4d50d62bbddd1796a536efab6b06c02a75675e5a78e335fba730b1b -SIZE (AlisterT-openjazz-20180329-2c4d351_GH0.tar.gz) = 211150 +TIMESTAMP = 1529439641 +SHA256 (AlisterT-openjazz-20180522_GH0.tar.gz) = 4dd02c83418749904977df40b5de55c4482cf6636433c99c992b64824b7f10d9 +SIZE (AlisterT-openjazz-20180522_GH0.tar.gz) = 213388 From owner-svn-ports-head@freebsd.org Wed Jun 20 10:26:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A67110106D4; Wed, 20 Jun 2018 10:26:35 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) Received: from ppsw-30.csi.cam.ac.uk (ppsw-30.csi.cam.ac.uk [131.111.8.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF3BD74CA9; Wed, 20 Jun 2018 10:26:34 +0000 (UTC) (envelope-from rb743@hermes.cam.ac.uk) X-Cam-AntiVirus: no malware found X-Cam-ScannerInfo: http://help.uis.cam.ac.uk/email-scanner-virus Received: from sc1.bsdpad.com ([163.172.212.18]:59476) by ppsw-30.csi.cam.ac.uk (smtp.hermes.cam.ac.uk [131.111.8.156]:587) with esmtpsa (LOGIN:rb743) (TLSv1:ECDHE-RSA-AES256-SHA:256) id 1fVaJt-000KRe-eq (Exim 4.91) (return-path ); Wed, 20 Jun 2018 11:26:33 +0100 Date: Wed, 20 Jun 2018 11:15:59 +0100 From: Ruslan Bukin To: Jan Beich Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r472783 - head/Templates Message-ID: <20180620101559.GA9393@bsdpad.com> References: <201806191236.w5JCarwQ059758@repo.freebsd.org> <20180620093529.GA8916@bsdpad.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20180620093529.GA8916@bsdpad.com> User-Agent: Mutt/1.6.1 (2016-04-27) Sender: "R. Bukin" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 10:26:35 -0000 Hi Jan I made required changes (based on previous updates to these scripts): https://reviews.freebsd.org/D15925 So I wonder how to exp-run these now ? I did a try to build few ports on amd64, riscv and it works. Also config.guess now guessing correctly: br@qemu:/usr/ports/Templates % sh config.guess riscv64-unknown-freebsd12.0 0 pie:/usr/ports/Templates >sh config.guess amd64-unknown-freebsd11.2 Ruslan On Wed, Jun 20, 2018 at 10:35:29AM +0100, Ruslan Bukin wrote: > Will take a look. > Sorry and thanks :) > > Ruslan > > On Tue, Jun 19, 2018 at 07:00:35PM +0200, Jan Beich wrote: > > Ruslan Bukin writes: > > > > > Author: br (src committer) > > > Date: Tue Jun 19 12:36:52 2018 > > > New Revision: 472783 > > > URL: https://svnweb.freebsd.org/changeset/ports/472783 > > > > > > Log: > > > Update config.guess and config.sub to the latest version. > > > > > > RISC-V machine added to config.sub allowing us to build > > > ports/packages for RISC-V. > > > > > > Sponsored by: DARPA, AFRL > > [...] > > > *:FreeBSD:*:*) > > > UNAME_PROCESSOR=`/usr/bin/uname -p` > > > - echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` > > > + case "$UNAME_PROCESSOR" in > > > + amd64) > > > + UNAME_PROCESSOR=x86_64 ;; > > > + i386) > > > + UNAME_PROCESSOR=i586 ;; > > > + esac > > > + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" > > > exit ;; > > > > Did you check for fallout via exp-run? See also > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208440 > > > > $ sh Templates/config.guess > > i386-unknown-freebsd10.4 > > > > $ svn up Templates > > Updating 'Templates': > > U Templates/config.guess > > U Templates/config.sub > > Updated to revision 472804. > > > > $ sh Templates/config.guess > > i586-unknown-freebsd10.4 > > > > > > > > $ sh Templates/config.guess > > amd64-unknown-freebsd12.0 > > > > $ svn up Templates > > Updating 'Templates': > > U Templates/config.guess > > U Templates/config.sub > > Updated to revision 472804. > > > > $ sh Templates/config.guess > > x86_64-unknown-freebsd12.0 > _______________________________________________ > svn-ports-head@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-head > To unsubscribe, send any mail to "svn-ports-head-unsubscribe@freebsd.org" From owner-svn-ports-head@freebsd.org Wed Jun 20 10:35:48 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7D111010D02; Wed, 20 Jun 2018 10:35:48 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 873517512D; Wed, 20 Jun 2018 10:35:48 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 655292119A; Wed, 20 Jun 2018 10:35:48 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KAZmVN044801; Wed, 20 Jun 2018 10:35:48 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KAZlD2044799; Wed, 20 Jun 2018 10:35:47 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201806201035.w5KAZlD2044799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 20 Jun 2018 10:35:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472864 - head/sysutils/iocell X-SVN-Group: ports-head X-SVN-Commit-Author: robak X-SVN-Commit-Paths: head/sysutils/iocell X-SVN-Commit-Revision: 472864 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 10:35:49 -0000 Author: robak Date: Wed Jun 20 10:35:47 2018 New Revision: 472864 URL: https://svnweb.freebsd.org/changeset/ports/472864 Log: sysutils/iocell: update 2.1.1 -> 2.1.2 Submitted by: Bartek Rutkowski Sponsored by: Pixeware LTD Modified: head/sysutils/iocell/Makefile head/sysutils/iocell/distinfo Modified: head/sysutils/iocell/Makefile ============================================================================== --- head/sysutils/iocell/Makefile Wed Jun 20 10:08:09 2018 (r472863) +++ head/sysutils/iocell/Makefile Wed Jun 20 10:35:47 2018 (r472864) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iocell -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 DISTVERSIONPREFIX=v CATEGORIES= sysutils Modified: head/sysutils/iocell/distinfo ============================================================================== --- head/sysutils/iocell/distinfo Wed Jun 20 10:08:09 2018 (r472863) +++ head/sysutils/iocell/distinfo Wed Jun 20 10:35:47 2018 (r472864) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495880411 -SHA256 (bartekrutkowski-iocell-v2.1.1_GH0.tar.gz) = 6098ef6aa04514711470d15d5f9357de8311e20e171422aae0b00b138a1a2bb9 -SIZE (bartekrutkowski-iocell-v2.1.1_GH0.tar.gz) = 372728 +TIMESTAMP = 1529540233 +SHA256 (bartekrutkowski-iocell-v2.1.2_GH0.tar.gz) = 36f98ec1f55f444913bb5154b51549e85fb34e04e372d4fe34bb8be2c5f7ed36 +SIZE (bartekrutkowski-iocell-v2.1.2_GH0.tar.gz) = 372737 From owner-svn-ports-head@freebsd.org Wed Jun 20 10:46:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88FAF1011428; Wed, 20 Jun 2018 10:46:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39A0F7566C; Wed, 20 Jun 2018 10:46:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from ogg.in.absolight.net (ogg.in.absolight.net [IPv6:2a01:678:ab:50::42:42]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 7579624AC5; Wed, 20 Jun 2018 10:46:31 +0000 (UTC) (envelope-from mat@FreeBSD.org) Date: Wed, 20 Jun 2018 12:46:30 +0200 From: Mathieu Arnold To: Ruslan Bukin Cc: Jan Beich , svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r472783 - head/Templates Message-ID: <20180620104629.6s2xy5tshjabhiux@ogg.in.absolight.net> References: <201806191236.w5JCarwQ059758@repo.freebsd.org> <20180620093529.GA8916@bsdpad.com> <20180620101559.GA9393@bsdpad.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ynmj5lauplsqlqky" Content-Disposition: inline In-Reply-To: <20180620101559.GA9393@bsdpad.com> User-Agent: NeoMutt/20171215 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 10:46:32 -0000 --ynmj5lauplsqlqky Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 20, 2018 at 11:15:59AM +0100, Ruslan Bukin wrote: > Hi Jan >=20 > I made required changes (based on previous updates to these scripts): > https://reviews.freebsd.org/D15925 >=20 > So I wonder how to exp-run these now ? Like everythuing you need to know as a committer, it is in the Committer's Guide: https://www.freebsd.org/doc/en/articles/committers-guide/ports.html#ports-e= xp-run Note that you may want to wait from someone from portmgr to review it first. --=20 Mathieu Arnold --ynmj5lauplsqlqky Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAABCgBmBQJbKjCFXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I5iQQAJ06+bojO9nYEVcr0Efs+FW1 cR7iLMPnwNg3Ts7ppx4jGdnrVliQ5Ph0jGJQ8SHEX8IoGqMyQMsXR0fMyU2cQfOH 15Gwje1+dSAxmdij0dNaNsvwrOGrHhDFDxoIS7tDIMZPiaz3QXDnQzhCrPXJpoKN b515WBdsJq6gsP8pSsyo3AFIIXl9Btk5WqgBSebmbSLu3XJ4/cyN99uVD20rtPjM HnLmltYtX4681tif8gltRdWYi+wUdR9WABHho43Q6G+rknjfFH4fxas9+NNw4wYG I7jvpCSt5iV6oqkRlNX+/sxUJ0W38WmGt3vTbvS8AuUNXCwXis1INLFdYQy/r+Bg jVJtLprR4s5AadM3C/pRjabzAaIMHb4F5bmHmM/84EKIdc2mFrCSlKzaqTzkwpEb mk8GrgJ+Xd6q4s6g0u5iwGztnQigV1NW3E3hvLopWorWcK2L7qHRWd1Yky9bP6Oe dowbdtD/zWws9oZ04yfUgDTvdhypmr5BXRuRqZAQjdlHYURAYB7bJhRN+6Jc/0zj ExTShh9FfYCA7sL/5anRBss0qCCoO5FgpRgk91CMHbbuB6EXvqA8wcrOfPXmLT/b uJMHWK1vrC1jL1YW5J6Yyp/HLbSq6PGKurR0LNzeZfj3KHKTzI0PegSYFpXx9FbC 0Ta4tR5HNU2BbZgeyt/I =bHcJ -----END PGP SIGNATURE----- --ynmj5lauplsqlqky-- From owner-svn-ports-head@freebsd.org Wed Jun 20 11:19:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B15B31012F44; Wed, 20 Jun 2018 11:19:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F916768FC; Wed, 20 Jun 2018 11:19:14 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C7BA2180A; Wed, 20 Jun 2018 11:19:14 +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 w5KBJDPf065929; Wed, 20 Jun 2018 11:19:13 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KBJDN8065924; Wed, 20 Jun 2018 11:19:13 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806201119.w5KBJDN8065924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 20 Jun 2018 11:19:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472865 - in head/databases: . p5-Redis-Fast p5-Redis-Fast/files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/databases: . p5-Redis-Fast p5-Redis-Fast/files X-SVN-Commit-Revision: 472865 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 11:19:14 -0000 Author: pi Date: Wed Jun 20 11:19:12 2018 New Revision: 472865 URL: https://svnweb.freebsd.org/changeset/ports/472865 Log: New port: databases/p5-Redis-Fast Perl binding for Redis database. Redis::Fast is 4x faster than Redis.pm in pipeline mode. WWW: https://metacpan.org/release/Redis-Fast PR: 229141 Submitted by: Tomohiro Hosaka Added: head/databases/p5-Redis-Fast/ head/databases/p5-Redis-Fast/Makefile (contents, props changed) head/databases/p5-Redis-Fast/distinfo (contents, props changed) head/databases/p5-Redis-Fast/files/ head/databases/p5-Redis-Fast/files/patch-deps_hiredis_Makefile (contents, props changed) head/databases/p5-Redis-Fast/pkg-descr (contents, props changed) head/databases/p5-Redis-Fast/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Jun 20 10:35:47 2018 (r472864) +++ head/databases/Makefile Wed Jun 20 11:19:12 2018 (r472865) @@ -473,6 +473,7 @@ SUBDIR += p5-Protocol-CassandraCQL SUBDIR += p5-RRD-Simple SUBDIR += p5-Redis + SUBDIR += p5-Redis-Fast SUBDIR += p5-Redis-hiredis SUBDIR += p5-RedisDB SUBDIR += p5-RedisDB-Parser Added: head/databases/p5-Redis-Fast/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-Fast/Makefile Wed Jun 20 11:19:12 2018 (r472865) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= Redis-Fast +PORTVERSION= 0.21 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Perl binding for Redis database + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ + p5-Module-Build>=0.4005:devel/p5-Module-Build \ + p5-Module-Build-XSUtil>=0.02:devel/p5-Module-Build-XSUtil \ + gmake:devel/gmake +RUN_DEPENDS= p5-Try-Tiny>=0:lang/p5-Try-Tiny +TEST_DEPENDS= p5-Parallel-ForkManager>=0:devel/p5-Parallel-ForkManager \ + p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Test-Fatal>=0:devel/p5-Test-Fatal \ + p5-Test-LeakTrace>=0:devel/p5-Test-LeakTrace \ + p5-Test-SharedFork>=0:devel/p5-Test-SharedFork \ + p5-Test-TCP>=0:devel/p5-Test-TCP \ + p5-Test-UNIXSock>=0:devel/p5-Test-UNIXSock \ + redis>=0:databases/redis + +USES= perl5 +USE_PERL5= modbuild + +.include Added: head/databases/p5-Redis-Fast/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-Fast/distinfo Wed Jun 20 11:19:12 2018 (r472865) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529459970 +SHA256 (Redis-Fast-0.21.tar.gz) = 02fea8928075fdb8b0de4882b3f455b2af74106d9d73c1b080fec45b2e2ad986 +SIZE (Redis-Fast-0.21.tar.gz) = 106672 Added: head/databases/p5-Redis-Fast/files/patch-deps_hiredis_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-Fast/files/patch-deps_hiredis_Makefile Wed Jun 20 11:19:12 2018 (r472865) @@ -0,0 +1,11 @@ +--- deps/hiredis/Makefile.orig 2016-01-26 13:11:38 UTC ++++ deps/hiredis/Makefile +@@ -41,7 +41,7 @@ CXX:=$(shell sh -c 'type $(CXX) >/dev/nu + OPTIMIZATION?=-O3 + WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings + DEBUG?= -g -ggdb +-REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG) $(ARCH) ++REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG) + REAL_LDFLAGS=$(LDFLAGS) $(ARCH) + + DYLIBSUFFIX=so Added: head/databases/p5-Redis-Fast/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-Fast/pkg-descr Wed Jun 20 11:19:12 2018 (r472865) @@ -0,0 +1,4 @@ +Perl binding for Redis database. +Redis::Fast is 4x faster than Redis.pm in pipeline mode. + +WWW: https://metacpan.org/release/Redis-Fast Added: head/databases/p5-Redis-Fast/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Redis-Fast/pkg-plist Wed Jun 20 11:19:12 2018 (r472865) @@ -0,0 +1,9 @@ +%%SITE_ARCH%%/Redis/Fast.pm +%%SITE_ARCH%%/Redis/Fast/Hash.pm +%%SITE_ARCH%%/Redis/Fast/List.pm +%%SITE_ARCH%%/Redis/Fast/Sentinel.pm +%%SITE_ARCH%%/auto/Redis/Fast/Fast.so +%%PERL5_MAN3%%/Redis::Fast.3.gz +%%PERL5_MAN3%%/Redis::Fast::Hash.3.gz +%%PERL5_MAN3%%/Redis::Fast::List.3.gz +%%PERL5_MAN3%%/Redis::Fast::Sentinel.3.gz From owner-svn-ports-head@freebsd.org Wed Jun 20 11:44:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08068101436D; Wed, 20 Jun 2018 11:44:36 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACDCE775DF; Wed, 20 Jun 2018 11:44:35 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82B5B21CCF; Wed, 20 Jun 2018 11:44:35 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KBiZkC080819; Wed, 20 Jun 2018 11:44:35 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KBiX9x080810; Wed, 20 Jun 2018 11:44:33 GMT (envelope-from db@FreeBSD.org) Message-Id: <201806201144.w5KBiX9x080810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Wed, 20 Jun 2018 11:44:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472866 - in head/comms/gnuradio: . files X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/comms/gnuradio: . files X-SVN-Commit-Revision: 472866 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 11:44:36 -0000 Author: db Date: Wed Jun 20 11:44:33 2018 New Revision: 472866 URL: https://svnweb.freebsd.org/changeset/ports/472866 Log: Removed dependancy on uneeded git Left the README files at all times # Changelog All notable changes to GNU Radio will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html), starting with version 3.7.12.0. Older Logs can be found in `docs/RELEASE-NOTES-*`. ## [3.7.13.3] - 2018-06-13 ### Fixed #### Project Scope - For non-C++11 compilers, the new cstdint include doesn't work out; conditionalized it. ## [3.7.13.2] - 2018-05-31 ### Fixed #### Project Scope - Actually bumped version in CMakeLists.txt to 3.7.13.2; the 3.7.13.1 tag was tagged off-branch; maintainer failure to simultaneously push a commit that raises the internal version number to 3.7.14.0: this had to be reverted ASAP. ## [3.7.13.1] - 2018-05-31 ### Fixed #### Project Scope - Actually bumped version in CMakeLists.txt ## [3.7.13.0] - 2018-05-31 ### Fixed #### Project Scope - `boost::posix_time::[milli]second` takes integer numbers, and we now at least cast the floats to integers, as Boost 1.67 forced us to realize we're (incorrectly) using floating point her - CMake: using regex to match compiler against "Clang" now enables correct build on OS X #### GRC - Fixed GRC bug which broke WX and Qt (by altering the template code), in multiple (less than awesome) steps #### gr-blocks - `float_array_to_int`: int32 limits were wrongly hardcoded. - Fixed the undefined behaviour happening in `float_to_complex` when accessing the second input_items element in the single-input case ## [3.7.12.0] - 2018-04-01 ### Software Engineering - Changed Changelog format - Introducing Semantic Versioning - Change of development model: Rather than merging bugfixes to maint, merging maint to master, and next, if applicable, we'll be moving forward more in a typical management model: Development happens on master, and bugfixes are cherrypicked onto the maint-${RELEASE} branch. More info: http://lists.gnu.org/archive/html/discuss-gnuradio/2018-02/msg00133.html - First attempt at having a .clang-format file to improve code contribution style quality. This is Work In Progress. ### Fixed #### Project Scope - Buildability on systems where custom CMake command would try to find "" (empty string) as executable - Buildable with C++11 compilers (though deprecation warning-rich, due to `unique_ptr`) - several previously improperly handled include directories now actually included in individual lib/CMakeLists - Unit test/QA now parallelizable - Logger works with log4cpp <= 1.1.2 both in and out of tree - Python linkage under MinGW64 - Documentation Directory now uniformly "docs/" (instead of sometimes "doc/") - `log` vs `logf` performance bugs - on-time `pmt::mp("string")` calls (instead of cached PMTs) performance bug - Doxygen build now reproducible #### GRC - Dialogs' parent windows - Embedded Python Blocks now work in hierarchical GRC flow graphs #### gnuradio-runtime - `random.h`: Uniform integer Generation depended on Boost version > min version - `random.h`: time-dependency when seeding with `0` replaced with actual standard seed - block startup now synchronized via barrier - New tag propagation policy "custom" for own implementation - `get_tags_in_range` used `v.resize(0)` to clear vectors, which lead to unnecessary memory reallocations - `logger_ptr` now always a pointer, no matter whether logging is enabled; fixes heap corruption bug - `buffer[_reader]_sptr` superfluous grab/release performance bug - BSD threading and shared mem compatibility - PMT: `equal()` comparison #### gr-utils - Sorted files in `gr_modtool` makexml processing, leading to improved reproducibility of builds #### gr-audio - OS X: memcpy bug - OS X: debug mode - Non-Linux ALSA compatibibilty #### gr-analog - `fmdet_cf` now has GRC file - `fastnoise_source`: non-threadsafe `libc` `rand()` replaced by XOROSHIRO128+ #### gr-blocks - `simple_copy` Ctrlport example - Metadata sink/source not closing file on `close()` - `multiply_matrix` formerly used "magic int" value where its API expected enum (and that int wasn't covered) - TCP connection ASIO bug - `tags_strobe`: superfluous tags addition - `vector_sink`: multithreading hazards on `data` access - `tuntap_pdu`: MTU-sized IP packet reception - `socket_pdu`: Garbage Collect closed TCP connections #### gr-channels - IQ imbalance block formula now mathematically correct now mathematically correct - `selective_fading_model`: proper scaling of path length #### gr-digital - `additive_scrambler_bb`: tag triggered reset - `stream_to_tagged_stream`: tag offset after `unlock()` - `blks2/packet.py`: Flushing for small packets - `interpolating_resampler`: GCC 4.0 compile error - `constellation`: 16QAM demapper was wrong for one constellation point - `chunks_to_symbols`: mutex-guard LUT against modification during use - MSVC compatibility throug `and` -> `&&` etc - `crc32_bb`: handle unpacked bytes correctly - `ofdm_carrier_allocator`: catching wrong allocations instead of crashing #### gr-dtv - All examples now are installed - DVB-T2: Removed L1 post scrambling in spec v1.1.1 mode #### gr-fcd - Building on non-Linux systems - Extended symbol bug in Reed-Solomon encoder - DVB-T Cell identifier #### gr-fcd - Building on non-Linux systems #### gr-fec - `channel_construction.py`: return int frozen bit output - `GSL_LDFLAGS` propagation - `polar_decoder` used to be flaky #### gr-fft - locking of fftw wisdom - `window.cc`: removed NaN due to FP math - compilation under MinGW - `logpwrfft.py` reference scaling integer division bug #### gr-filter - Simpson's rule code removed in favor of GSL call #### gr-qtgui - Time sink: Segfault with tag trigger #### gr-uhd - Antenna selection in UHD apps - `uhd_fft` scalar gain-capability - Device selection for multi-device operations in UHD apps - TX streamer creation #### gr-zeromq - Multi-part messages reception ### Added #### Project Scope - Ninja (https://ninja-build.org) now a supported build system #### gnuradio-runtime - Python can now get `gr.WORK_CALLED_PRODUCE` and `gr.DONE` #### gr-utils - `gr_modtool`: Autocompletion, line editing - `gr_modtool`: `copyrightholder` option #### GRC - "Create Duplicate" - "Save a copy" - BokehGUI #### gr-blocks - New `tag_share` block: take tags from one two input streams to one output stream - `tag_gate`: tag filtering - `file_source`: configurable `file_begin` stream tag - `moving_average`: Vector mode (with element-wise MA) - `plateau_detector`: threshold get/set #### gr-digital - `costas_loop_cc`: Optional loop variable outputs - New `correlate_access_code_tag` block - `glfsr` exposed through Python #### gr-dtv - 256QAM mode for ITU-T J.83B transmitter #### gr-fec - negative Polynomials in `cc_encoder` #### gr-filter - `symbol_sync_{cc|ff}` #### gr-uhd - `uhd_app.py`: selectable time/clock sources - make `recv()` call's timeout parameterizable - message-based RX tuning through sink, TX through source ### Changed #### Project Scope - VOLK version requirement: 1.4.0 - Minimal required SWIG version now 2.0.4 - GSL optional dependency - Threw out completely unused `gr_??int` types - Doxygen build no longer contains timestamps - Doxygen build now reproducible - Though factually before, now officially include ZeroMQ and Sphinx as optional dependencies in docs #### gnuradio-runtime - Python gateway allows variable number of ports #### gr-utils - `gr_modtool`: Block template now uses `numpy.float32` instead of float. 32bit float is actually the default GNU Radio type.e. #### gr-blocks - `vector_sink` can preallocate memory for desired amount of items #### gr-digital - `header_format_default` now sps>1-capable - `correlate_acces_code` uses `GR_LOG` #### gr-uhd - `uhd_fft`: respect `lo_offset` in `set_bandwidth` - `usrp_source`: freq tag now actually reflects last set frequency, even on multiple channels #### gr-qtgui - Labels: now with 98.121212388% improved floating point formatting - Time Sink: Stem plot option exposed ### Deprecated #### gnuradio-runtime - `gr::sys_pri` Reviewed by: martymac Added: head/comms/gnuradio/files/patch-gr-uhd_examples_c++_CMakeLists.txt (contents, props changed) Deleted: head/comms/gnuradio/files/patch-cmake_Modules_GrBoost.cmake head/comms/gnuradio/files/patch-gr-audio_doc_CMakeLists.txt head/comms/gnuradio/files/patch-gr-digital_doc_CMakeLists.txt head/comms/gnuradio/files/patch-gr-fcd_doc_CMakeLists.txt Modified: head/comms/gnuradio/Makefile head/comms/gnuradio/distinfo head/comms/gnuradio/files/patch-CMakeLists.txt head/comms/gnuradio/files/patch-cmake_Modules_FindUSB.cmake head/comms/gnuradio/files/patch-cmake_Modules_GrMiscUtils.cmake head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in head/comms/gnuradio/files/patch-gr-fcd_lib_CMakeLists.txt head/comms/gnuradio/files/patch-volk_CMakeLists.txt head/comms/gnuradio/pkg-plist Modified: head/comms/gnuradio/Makefile ============================================================================== --- head/comms/gnuradio/Makefile Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/Makefile Wed Jun 20 11:44:33 2018 (r472866) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gnuradio -PORTVERSION= 3.7.11 -PORTREVISION= 2 +PORTVERSION= 3.7.13.3 CATEGORIES= comms astro hamradio MASTER_SITES= http://gnuradio.org/releases/gnuradio/ \ LOCAL/db @@ -19,9 +18,10 @@ BROKEN_armv7= fails to compile: /usr/lib/clang/5.0.0/ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \ ${PYNUMPY} \ ${PYTHON_SITELIBDIR}/ephem/__init__.py:astro/pyephem@${PY_FLAVOR} \ + ${PYTHON_SITELIBDIR}/mako/__init__.py:textproc/py-mako@${PY_FLAVOR} \ + ${PYTHON_SITELIBDIR}/six.py:devel/py-six@${PY_FLAVOR} \ aconnect:audio/alsa-utils \ cheetah:devel/py-cheetah@${PY_FLAVOR} \ - git:devel/git \ guile:lang/guile \ minixmlto:textproc/minixmlto \ sdl-config:devel/sdl12 \ @@ -74,7 +74,7 @@ LIBSTRIP_FILES= analog atsc audio blocks channels digi filter noaa pager pmt qtgui runtime trellis video-sdl\ vocoder wavelet wxgui -OPTIONS_DEFINE= UHD TESTING DOXYGEN +OPTIONS_DEFINE= DOCS UHD TESTING DOXYGEN # Unfortunately building docs on i386 fails ##OPTIONS_EXCLUDE_${i386}= DOXYGEN # Yay. building docs is broken on 10 and HEAD too so turn them all off Modified: head/comms/gnuradio/distinfo ============================================================================== --- head/comms/gnuradio/distinfo Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/distinfo Wed Jun 20 11:44:33 2018 (r472866) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516377322 -SHA256 (gnuradio-3.7.11.tar.gz) = 87d9ba3183858efdbb237add3f9de40f7d65f25e16904a9bc8d764a7287252d4 -SIZE (gnuradio-3.7.11.tar.gz) = 4357123 +TIMESTAMP = 1529253899 +SHA256 (gnuradio-3.7.13.3.tar.gz) = 1e07ce40fa3c3eede1fb54e320dad8a221a3c01de341e9cef2d7b265ed06a6e9 +SIZE (gnuradio-3.7.13.3.tar.gz) = 4544605 Modified: head/comms/gnuradio/files/patch-CMakeLists.txt ============================================================================== --- head/comms/gnuradio/files/patch-CMakeLists.txt Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/files/patch-CMakeLists.txt Wed Jun 20 11:44:33 2018 (r472866) @@ -1,19 +1,6 @@ ---- CMakeLists.txt.orig 2016-09-02 04:16:14 UTC +--- CMakeLists.txt.orig 2018-06-13 21:42:48 UTC +++ CMakeLists.txt -@@ -29,6 +29,12 @@ cmake_minimum_required(VERSION 2.6) - project(gnuradio CXX C) - enable_testing() - -+cmake_policy(SET CMP0026 OLD) -+cmake_policy(SET CMP0043 OLD) -+cmake_policy(SET CMP0045 OLD) -+cmake_policy(SET CMP0046 OLD) -+cmake_policy(SET CMP0056 OLD) -+ - #make sure our local CMake Modules path comes first - list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules) - -@@ -70,6 +76,10 @@ ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "M +@@ -144,6 +144,10 @@ ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") ELSE() message(warning "C++ standard could not be set because compiler is not GNU, Clang or MSVC.") ENDIF() @@ -24,7 +11,7 @@ IF(CMAKE_C_COMPILER_ID STREQUAL "GNU") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99") -@@ -191,6 +201,14 @@ string(REPLACE "\n" " \\n" COMPILER_INFO +@@ -264,6 +268,14 @@ string(REPLACE "\n" " \\n" COMPILER_INFO ${COMPILER_IN ######################################################################## include(GrPlatform) #define LIB_SUFFIX set(GR_RUNTIME_DIR bin CACHE PATH "Path to install all binaries") @@ -39,7 +26,7 @@ set(GR_LIBRARY_DIR lib${LIB_SUFFIX} CACHE PATH "Path to install libraries") set(GR_INCLUDE_DIR include CACHE PATH "Path to install header files") set(GR_DATA_DIR share CACHE PATH "Base location for data") -@@ -276,6 +294,42 @@ add_custom_target(uninstall +@@ -349,6 +361,42 @@ add_custom_target(uninstall include(GrBoost) ######################################################################## @@ -81,14 +68,14 @@ +######################################################################## # Enable python component ######################################################################## - find_package(PythonLibs 2) -@@ -407,11 +461,13 @@ GR_LOGGING() + find_package(PythonLibs ${GR_PYTHON_MIN_VERSION}) +@@ -500,11 +548,13 @@ GR_LOGGING() ######################################################################## # Distribute the README file ######################################################################## +if(ENABLE_DOCS) install( - FILES README README.hacking + FILES README.md README.hacking CHANGELOG.md DESTINATION ${GR_PKG_DOC_DIR} COMPONENT "docs" ) Modified: head/comms/gnuradio/files/patch-cmake_Modules_FindUSB.cmake ============================================================================== --- head/comms/gnuradio/files/patch-cmake_Modules_FindUSB.cmake Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/files/patch-cmake_Modules_FindUSB.cmake Wed Jun 20 11:44:33 2018 (r472866) @@ -1,6 +1,6 @@ ---- cmake/Modules/FindUSB.cmake.orig 2016-09-02 04:16:12 UTC +--- cmake/Modules/FindUSB.cmake.orig 2018-06-13 21:42:48 UTC +++ cmake/Modules/FindUSB.cmake -@@ -22,6 +22,19 @@ else(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRA +@@ -22,6 +22,19 @@ else(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) set(LIBUSB_FOUND FALSE CACHE INTERNAL "libusb-1.0 found") message(STATUS "libusb-1.0 not found.") endif(LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES) Modified: head/comms/gnuradio/files/patch-cmake_Modules_GrMiscUtils.cmake ============================================================================== --- head/comms/gnuradio/files/patch-cmake_Modules_GrMiscUtils.cmake Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/files/patch-cmake_Modules_GrMiscUtils.cmake Wed Jun 20 11:44:33 2018 (r472866) @@ -1,11 +1,11 @@ ---- cmake/Modules/GrMiscUtils.cmake.orig 2016-09-02 04:16:12 UTC +--- cmake/Modules/GrMiscUtils.cmake.orig 2018-06-13 21:42:48 UTC +++ cmake/Modules/GrMiscUtils.cmake @@ -148,7 +148,31 @@ function(GR_LIBRARY_FOO target) ARCHIVE DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_DEVEL_COMPONENT} # .lib file RUNTIME DESTINATION ${GR_RUNTIME_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT} # .dll file ) + -+ + + if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") + #create .la file + GR_LIBTOOL(TARGET ${target} DESTINATION ${GR_LIBRARY_DIR}) @@ -20,7 +20,7 @@ + COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} "${CMAKE_CURRENT_BINARY_DIR}/lib${target}.so.${MAJOR_VERSION}" + COMMAND ${CMAKE_COMMAND} -E touch ${target_name} #so the symlinks point to something valid so cmake 2.6 will install + ) - ++ + #and install the extra symlinks + install( + FILES Modified: head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in ============================================================================== --- head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in Wed Jun 20 11:44:33 2018 (r472866) @@ -1,6 +1,6 @@ ---- docs/doxygen/Doxyfile.in.orig 2016-09-02 04:16:12 UTC +--- docs/doxygen/Doxyfile.in.orig 2018-06-13 21:42:48 UTC +++ docs/doxygen/Doxyfile.in -@@ -1891,7 +1891,7 @@ DOT_FONTSIZE = 10 +@@ -1880,7 +1880,7 @@ DOT_FONTSIZE = 10 # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. Modified: head/comms/gnuradio/files/patch-gr-fcd_lib_CMakeLists.txt ============================================================================== --- head/comms/gnuradio/files/patch-gr-fcd_lib_CMakeLists.txt Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/files/patch-gr-fcd_lib_CMakeLists.txt Wed Jun 20 11:44:33 2018 (r472866) @@ -1,4 +1,4 @@ ---- gr-fcd/lib/CMakeLists.txt.orig 2016-09-02 04:16:14 UTC +--- gr-fcd/lib/CMakeLists.txt.orig 2018-06-17 18:02:35 UTC +++ gr-fcd/lib/CMakeLists.txt @@ -32,6 +32,7 @@ include_directories( ${GNURADIO_RUNTIME_INCLUDE_DIRS} @@ -8,14 +8,14 @@ ) link_directories( -@@ -90,6 +91,10 @@ add_library(gnuradio-fcd SHARED ${gr_fcd +@@ -91,6 +92,10 @@ endif() + add_library(gnuradio-fcd SHARED ${gr_fcd_sources}) if (LINUX) list(APPEND fcd_libs rt) - endif() ++endif() +if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") + message( "--- Adding iconv library for FreeBSD") + list(APPEND fcd_libs ${ICONV_LIBRARY}) -+endif() + endif() target_link_libraries(gnuradio-fcd ${fcd_libs} ${LOG4CPP_LIBRARIES}) - Added: head/comms/gnuradio/files/patch-gr-uhd_examples_c++_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/gnuradio/files/patch-gr-uhd_examples_c++_CMakeLists.txt Wed Jun 20 11:44:33 2018 (r472866) @@ -0,0 +1,11 @@ +--- gr-uhd/examples/c++/CMakeLists.txt.orig 2018-06-13 21:42:48 UTC ++++ gr-uhd/examples/c++/CMakeLists.txt +@@ -35,7 +35,7 @@ link_directories(${Boost_LIBRARY_DIRS}) + # Build executable + ######################################################################## + add_executable(tags_demo tags_demo.cc) +-target_link_libraries(tags_demo gnuradio-uhd) ++target_link_libraries(tags_demo gnuradio-uhd -lpthread) + + INSTALL(TARGETS + tags_demo Modified: head/comms/gnuradio/files/patch-volk_CMakeLists.txt ============================================================================== --- head/comms/gnuradio/files/patch-volk_CMakeLists.txt Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/files/patch-volk_CMakeLists.txt Wed Jun 20 11:44:33 2018 (r472866) @@ -1,6 +1,6 @@ ---- volk/CMakeLists.txt.orig 2016-09-02 04:16:13 UTC +--- volk/CMakeLists.txt.orig 2018-06-13 21:42:48 UTC +++ volk/CMakeLists.txt -@@ -140,7 +140,7 @@ configure_file( +@@ -153,7 +153,7 @@ configure_file( install( FILES ${CMAKE_CURRENT_BINARY_DIR}/volk.pc Modified: head/comms/gnuradio/pkg-plist ============================================================================== --- head/comms/gnuradio/pkg-plist Wed Jun 20 11:19:12 2018 (r472865) +++ head/comms/gnuradio/pkg-plist Wed Jun 20 11:44:33 2018 (r472866) @@ -229,6 +229,7 @@ include/gnuradio/blocks/divide_ff.h include/gnuradio/blocks/divide_ii.h include/gnuradio/blocks/divide_ss.h include/gnuradio/blocks/endian_swap.h +include/gnuradio/blocks/exponentiate_const_cci.h include/gnuradio/blocks/file_descriptor_sink.h include/gnuradio/blocks/file_descriptor_source.h include/gnuradio/blocks/file_meta_sink.h @@ -359,6 +360,7 @@ include/gnuradio/blocks/sub_ii.h include/gnuradio/blocks/sub_ss.h include/gnuradio/blocks/tag_debug.h include/gnuradio/blocks/tag_gate.h +include/gnuradio/blocks/tag_share.h include/gnuradio/blocks/tagged_file_sink.h include/gnuradio/blocks/tagged_stream_align.h include/gnuradio/blocks/tagged_stream_multiply_length.h @@ -441,6 +443,7 @@ include/gnuradio/digital/correlate_access_code_bb.h include/gnuradio/digital/correlate_access_code_bb_ts.h include/gnuradio/digital/correlate_access_code_ff_ts.h include/gnuradio/digital/correlate_access_code_tag_bb.h +include/gnuradio/digital/correlate_access_code_tag_ff.h include/gnuradio/digital/correlate_and_sync_cc.h include/gnuradio/digital/costas_loop_cc.h include/gnuradio/digital/cpmmod_bc.h @@ -465,6 +468,7 @@ include/gnuradio/digital/header_format_crc.h include/gnuradio/digital/header_format_default.h include/gnuradio/digital/header_format_ofdm.h include/gnuradio/digital/header_payload_demux.h +include/gnuradio/digital/interpolating_resampler_type.h include/gnuradio/digital/kurtotic_equalizer_cc.h include/gnuradio/digital/lfsr.h include/gnuradio/digital/lms_dd_equalizer_cc.h @@ -506,6 +510,9 @@ include/gnuradio/digital/scrambler_bb.h include/gnuradio/digital/simple_correlator.h include/gnuradio/digital/simple_framer.h include/gnuradio/digital/simple_framer_sync.h +include/gnuradio/digital/symbol_sync_cc.h +include/gnuradio/digital/symbol_sync_ff.h +include/gnuradio/digital/timing_error_detector_type.h include/gnuradio/dtv/api.h include/gnuradio/dtv/atsc_consts.h include/gnuradio/dtv/atsc_deinterleaver.h @@ -523,6 +530,7 @@ include/gnuradio/dtv/atsc_rs_encoder.h include/gnuradio/dtv/atsc_sync.h include/gnuradio/dtv/atsc_trellis_encoder.h include/gnuradio/dtv/atsc_viterbi_decoder.h +include/gnuradio/dtv/catv_config.h include/gnuradio/dtv/catv_frame_sync_enc_bb.h include/gnuradio/dtv/catv_randomizer_bb.h include/gnuradio/dtv/catv_reed_solomon_enc_bb.h @@ -672,6 +680,8 @@ include/gnuradio/filter/interp_fir_filter_scc.h include/gnuradio/filter/interpolator_taps.h include/gnuradio/filter/mmse_fir_interpolator_cc.h include/gnuradio/filter/mmse_fir_interpolator_ff.h +include/gnuradio/filter/mmse_interp_differentiator_cc.h +include/gnuradio/filter/mmse_interp_differentiator_ff.h include/gnuradio/filter/pfb_arb_resampler.h include/gnuradio/filter/pfb_arb_resampler_ccc.h include/gnuradio/filter/pfb_arb_resampler_ccf.h @@ -800,6 +810,8 @@ include/gnuradio/swig/block_gateway.i include/gnuradio/swig/blocks_swig0.i include/gnuradio/swig/blocks_swig0_doc.i include/gnuradio/swig/blocks_swig1.i +include/gnuradio/swig/blocks_swig10.i +include/gnuradio/swig/blocks_swig10_doc.i include/gnuradio/swig/blocks_swig1_doc.i include/gnuradio/swig/blocks_swig2.i include/gnuradio/swig/blocks_swig2_doc.i @@ -809,6 +821,14 @@ include/gnuradio/swig/blocks_swig4.i include/gnuradio/swig/blocks_swig4_doc.i include/gnuradio/swig/blocks_swig5.i include/gnuradio/swig/blocks_swig5_doc.i +include/gnuradio/swig/blocks_swig6.i +include/gnuradio/swig/blocks_swig6_doc.i +include/gnuradio/swig/blocks_swig7.i +include/gnuradio/swig/blocks_swig7_doc.i +include/gnuradio/swig/blocks_swig8.i +include/gnuradio/swig/blocks_swig8_doc.i +include/gnuradio/swig/blocks_swig9.i +include/gnuradio/swig/blocks_swig9_doc.i include/gnuradio/swig/buffer.i include/gnuradio/swig/channels_swig.i include/gnuradio/swig/channels_swig_doc.i @@ -1001,6 +1021,7 @@ include/pmt/pmt.h include/pmt/pmt_pool.h include/pmt/pmt_serial_tags.h include/pmt/pmt_sugar.h +include/volk/saturation_arithmetic.h include/volk/volk.h include/volk/volk_16i_%%MAJOR_VERSION%%2fc_dot_prod_%%MAJOR_VERSION%%2fc.h include/volk/volk_16i_branch_4_state_8.h @@ -1023,6 +1044,8 @@ include/volk/volk_16ic_x2_dot_prod_16ic.h include/volk/volk_16ic_x2_multiply_16ic.h include/volk/volk_16u_byteswap.h include/volk/volk_16u_byteswappuppet_16u.h +include/volk/volk_%%MAJOR_VERSION%%2f_64f_add_64f.h +include/volk/volk_%%MAJOR_VERSION%%2f_64f_multiply_64f.h include/volk/volk_%%MAJOR_VERSION%%2f_8u_polarbutterfly_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_8u_polarbutterflypuppet_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_accumulator_s%%MAJOR_VERSION%%2f.h @@ -1044,9 +1067,11 @@ include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_16i.h include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2i.h include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_8i.h +include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_mod_rangepuppet_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_multiply_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_normalize.h include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_power_%%MAJOR_VERSION%%2f.h +include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_mod_range_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_stddev_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_sin_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_sqrt_%%MAJOR_VERSION%%2f.h @@ -1066,6 +1091,7 @@ include/volk/volk_%%MAJOR_VERSION%%2f_x2_pow_%%MAJOR_V include/volk/volk_%%MAJOR_VERSION%%2f_x2_s%%MAJOR_VERSION%%2f_interleave_16ic.h include/volk/volk_%%MAJOR_VERSION%%2f_x2_subtract_%%MAJOR_VERSION%%2f.h include/volk/volk_%%MAJOR_VERSION%%2f_x%%MAJOR_VERSION%%_sum_of_poly_%%MAJOR_VERSION%%2f.h +include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_add_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_dot_prod_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_multiply_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_conjugate_%%MAJOR_VERSION%%2fc.h @@ -1088,6 +1114,7 @@ include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSIO include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_multiply_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_rotatorpuppet_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_x2_rotator_%%MAJOR_VERSION%%2fc.h +include/volk/volk_%%MAJOR_VERSION%%2fc_x2_add_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_x2_conjugate_dot_prod_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_x2_divide_%%MAJOR_VERSION%%2fc.h include/volk/volk_%%MAJOR_VERSION%%2fc_x2_dot_prod_%%MAJOR_VERSION%%2fc.h @@ -1102,9 +1129,12 @@ include/volk/volk_%%MAJOR_VERSION%%2u_byteswap.h include/volk/volk_%%MAJOR_VERSION%%2u_byteswappuppet_%%MAJOR_VERSION%%2u.h include/volk/volk_%%MAJOR_VERSION%%2u_popcnt.h include/volk/volk_%%MAJOR_VERSION%%2u_popcntpuppet_%%MAJOR_VERSION%%2u.h +include/volk/volk_%%MAJOR_VERSION%%2u_reverse_%%MAJOR_VERSION%%2u.h include/volk/volk_64f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_64f_x2_add_64f.h include/volk/volk_64f_x2_max_64f.h include/volk/volk_64f_x2_min_64f.h +include/volk/volk_64f_x2_multiply_64f.h include/volk/volk_64u_byteswap.h include/volk/volk_64u_byteswappuppet_64u.h include/volk/volk_64u_popcnt.h @@ -1132,9 +1162,12 @@ include/volk/volk_malloc.h include/volk/volk_neon_intrinsics.h include/volk/volk_prefs.h include/volk/volk_sse%%MAJOR_VERSION%%_intrinsics.h +include/volk/volk_sse_intrinsics.h include/volk/volk_typedefs.h lib/cmake/gnuradio/CMakeMacroLibtoolFile.cmake +lib/cmake/gnuradio/CMakeOverloads.cmake lib/cmake/gnuradio/CMakeParseArgumentsCopy.cmake +lib/cmake/gnuradio/CodeCoverage.cmake lib/cmake/gnuradio/FindALSA.cmake lib/cmake/gnuradio/FindCppUnit.cmake lib/cmake/gnuradio/FindFFTW%%MAJOR_VERSION%%f.cmake @@ -1235,7 +1268,7 @@ lib/libgnuradio-wxgui.so lib/libgnuradio-wxgui.so.%%MAJOR_VERSION%% lib/libgnuradio-wxgui.so.%%PORTVERSION%% lib/libvolk.so -lib/libvolk.so.1.%%MAJOR_VERSION%% +lib/libvolk.so.1.4 %%PYTHON_SITELIBDIR%%/gnuradio/__init__.py %%PYTHON_SITELIBDIR%%/gnuradio/__init__.pyc %%PYTHON_SITELIBDIR%%/gnuradio/__init__.%%PYTHON_PYOEXTENSION%% @@ -1298,10 +1331,15 @@ lib/libvolk.so.1.%%MAJOR_VERSION%% %%PYTHON_SITELIBDIR%%/gnuradio/blocks/__init__.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig0.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig1.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig10.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig2.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig%%MAJOR_VERSION%%.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig4.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig5.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig6.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig7.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig8.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig9.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig.%%PYTHON_PYOEXTENSION%% @@ -1311,6 +1349,9 @@ lib/libvolk.so.1.%%MAJOR_VERSION%% %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig1.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig1.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig1.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig10.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig10.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig10.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.%%PYTHON_PYOEXTENSION%% @@ -1323,6 +1364,18 @@ lib/libvolk.so.1.%%MAJOR_VERSION%% %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig5.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig5.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig5.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig6.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig6.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig6.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig7.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig7.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig7.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig8.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig8.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig8.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig9.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig9.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig9.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gnuradio/blocks/parse_file_metadata.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/parse_file_metadata.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/parse_file_metadata.%%PYTHON_PYOEXTENSION%% @@ -1754,6 +1807,9 @@ lib/libvolk.so.1.%%MAJOR_VERSION%% %%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/extract_docs.py %%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/extract_docs.pyc %%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/extract_docs.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/hide_bokeh_gui_options_if_not_installed.py +%%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/hide_bokeh_gui_options_if_not_installed.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/hide_bokeh_gui_options_if_not_installed.%%PYTHON_PYOEXTENSION%% %%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/odict.py %%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/odict.pyc %%PYTHON_SITELIBDIR%%/gnuradio/grc/core/utils/odict.%%PYTHON_PYOEXTENSION%% @@ -1841,6 +1897,7 @@ lib/libvolk.so.1.%%MAJOR_VERSION%% %%PYTHON_SITELIBDIR%%/gnuradio/grc/gui/external_editor.py %%PYTHON_SITELIBDIR%%/gnuradio/grc/gui/external_editor.pyc %%PYTHON_SITELIBDIR%%/gnuradio/grc/gui/external_editor.%%PYTHON_PYOEXTENSION%% +%%PYTHON_SITELIBDIR%%/gnuradio/grc/gui/icon.png %%PYTHON_SITELIBDIR%%/gnuradio/grc/main.py %%PYTHON_SITELIBDIR%%/gnuradio/grc/main.pyc %%PYTHON_SITELIBDIR%%/gnuradio/grc/main.%%PYTHON_PYOEXTENSION%% @@ -2257,9 +2314,12 @@ libdata/pkgconfig/gr-wxgui.pc libdata/pkgconfig/volk.pc libexec/gnuradio/grc_setup_freedesktop %%PORTDOCS%%%%DOCSDIR%%/README.analog +%%PORTDOCS%%%%DOCSDIR%%/README.audio %%PORTDOCS%%%%DOCSDIR%%/README.blocks %%PORTDOCS%%%%DOCSDIR%%/README.channels +%%PORTDOCS%%%%DOCSDIR%%/README.digital %%PORTDOCS%%%%DOCSDIR%%/README.dtv +%%PORTDOCS%%%%DOCSDIR%%/README.fcd %%PORTDOCS%%%%DOCSDIR%%/README.fec %%PORTDOCS%%%%DOCSDIR%%/README.fft %%PORTDOCS%%%%DOCSDIR%%/README.filter @@ -2314,6 +2374,9 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/digital/demod/mpsk_demod.grc %%DATADIR%%/examples/digital/demod/pam_sync.grc %%DATADIR%%/examples/digital/demod/pam_timing.grc +%%DATADIR%%/examples/digital/demod/symbol_sync_test_complex.grc +%%DATADIR%%/examples/digital/demod/symbol_sync_test_float.grc +%%DATADIR%%/examples/digital/demod/symbol_sync_test_float_ted_gain.m %%DATADIR%%/examples/digital/demod/test_corr_and_sync.grc %%DATADIR%%/examples/digital/demod/test_corr_est.grc %%DATADIR%%/examples/digital/demod/uhd_corr_and_sync_rx.grc @@ -2368,6 +2431,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/digital/packet/uhd_packet_tx_tun.grc %%DATADIR%%/examples/digital/run_length.py %%DATADIR%%/examples/digital/snr_estimators.py +%%DATADIR%%/examples/dtv/README.atsc %%DATADIR%%/examples/dtv/README.catv %%DATADIR%%/examples/dtv/README.dvbs %%DATADIR%%/examples/dtv/README.dvbs2 @@ -2382,11 +2446,39 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/dtv/dvbt_tx_8k.grc %%DATADIR%%/examples/dtv/file_atsc_rx.grc %%DATADIR%%/examples/dtv/file_atsc_tx.grc +%%DATADIR%%/examples/dtv/germany-g1.grc +%%DATADIR%%/examples/dtv/germany-g10.grc +%%DATADIR%%/examples/dtv/germany-g2.grc +%%DATADIR%%/examples/dtv/germany-g%%MAJOR_VERSION%%.grc +%%DATADIR%%/examples/dtv/germany-g4.grc +%%DATADIR%%/examples/dtv/germany-g5.grc +%%DATADIR%%/examples/dtv/germany-g6.grc +%%DATADIR%%/examples/dtv/germany-g7.grc +%%DATADIR%%/examples/dtv/germany-g8.grc +%%DATADIR%%/examples/dtv/germany-g9.grc %%DATADIR%%/examples/dtv/uhd_atsc_capture.grc +%%DATADIR%%/examples/dtv/uhd_atsc_tx.grc %%DATADIR%%/examples/dtv/uhd_rx_atsc.grc +%%DATADIR%%/examples/dtv/vv001-cr%%MAJOR_VERSION%%5.grc %%DATADIR%%/examples/dtv/vv00%%MAJOR_VERSION%%-cr2%%MAJOR_VERSION%%.grc +%%DATADIR%%/examples/dtv/vv004-8kfft.grc +%%DATADIR%%/examples/dtv/vv005-8kfft.grc +%%DATADIR%%/examples/dtv/vv007-16kfft.grc +%%DATADIR%%/examples/dtv/vv008-16kfft.grc %%DATADIR%%/examples/dtv/vv009-4kfft.grc +%%DATADIR%%/examples/dtv/vv010-2kfft.grc +%%DATADIR%%/examples/dtv/vv011-1kfft.grc +%%DATADIR%%/examples/dtv/vv012-64qam45.grc +%%DATADIR%%/examples/dtv/vv01%%MAJOR_VERSION%%-64qam56.grc +%%DATADIR%%/examples/dtv/vv014-64qam%%MAJOR_VERSION%%4.grc +%%DATADIR%%/examples/dtv/vv015-8kfft.grc +%%DATADIR%%/examples/dtv/vv016-256qam%%MAJOR_VERSION%%4.grc +%%DATADIR%%/examples/dtv/vv017-paprtr.grc %%DATADIR%%/examples/dtv/vv018-miso.grc +%%DATADIR%%/examples/dtv/vv019-norot.grc +%%DATADIR%%/examples/dtv/vv0%%MAJOR_VERSION%%4-dtg016.grc +%%DATADIR%%/examples/dtv/vv0%%MAJOR_VERSION%%5-dtg052.grc +%%DATADIR%%/examples/dtv/vv0%%MAJOR_VERSION%%6-dtg091.grc %%DATADIR%%/examples/fcd/fcd_apt_rx.grc %%DATADIR%%/examples/fcd/fcd_fft.grc %%DATADIR%%/examples/fcd/fcd_nfm_rx @@ -2590,6 +2682,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/grc/blocks/analog_fm_deemph.xml %%DATADIR%%/grc/blocks/analog_fm_demod_cf.xml %%DATADIR%%/grc/blocks/analog_fm_preemph.xml +%%DATADIR%%/grc/blocks/analog_fmdet_cf.xml %%DATADIR%%/grc/blocks/analog_frequency_modulator_fc.xml %%DATADIR%%/grc/blocks/analog_nbfm_rx.xml %%DATADIR%%/grc/blocks/analog_nbfm_tx.xml @@ -2650,6 +2743,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/grc/blocks/blocks_delay.xml %%DATADIR%%/grc/blocks/blocks_divide_XX.xml %%DATADIR%%/grc/blocks/blocks_endian_swap.xml +%%DATADIR%%/grc/blocks/blocks_exponentiate_const_cci.xml %%DATADIR%%/grc/blocks/blocks_file_descriptor_sink.xml %%DATADIR%%/grc/blocks/blocks_file_descriptor_source.xml %%DATADIR%%/grc/blocks/blocks_file_meta_sink.xml @@ -2728,6 +2822,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/grc/blocks/blocks_tag_debug.xml %%DATADIR%%/grc/blocks/blocks_tag_gate.xml %%DATADIR%%/grc/blocks/blocks_tag_object.xml +%%DATADIR%%/grc/blocks/blocks_tag_share.xml %%DATADIR%%/grc/blocks/blocks_tagged_file_sink.xml %%DATADIR%%/grc/blocks/blocks_tagged_stream_align.xml %%DATADIR%%/grc/blocks/blocks_tagged_stream_multiply_length.xml @@ -2791,7 +2886,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/grc/blocks/digital_constellation_soft_decoder_cf.xml %%DATADIR%%/grc/blocks/digital_corr_est_cc.xml %%DATADIR%%/grc/blocks/digital_correlate_access_code_bb.xml -%%DATADIR%%/grc/blocks/digital_correlate_access_code_tag_bb.xml +%%DATADIR%%/grc/blocks/digital_correlate_access_code_tag_xx.xml %%DATADIR%%/grc/blocks/digital_correlate_access_code_xx_ts.xml %%DATADIR%%/grc/blocks/digital_correlate_and_sync_cc.xml %%DATADIR%%/grc/blocks/digital_costas_loop_cc.xml @@ -2856,6 +2951,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/grc/blocks/digital_scrambler_bb.xml %%DATADIR%%/grc/blocks/digital_simple_correlator.xml %%DATADIR%%/grc/blocks/digital_simple_framer.xml +%%DATADIR%%/grc/blocks/digital_symbol_sync_xx.xml %%DATADIR%%/grc/blocks/dtv_atsc_deinterleaver.xml %%DATADIR%%/grc/blocks/dtv_atsc_depad.xml %%DATADIR%%/grc/blocks/dtv_atsc_derandomizer.xml From owner-svn-ports-head@freebsd.org Wed Jun 20 12:25:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 690181016C73; Wed, 20 Jun 2018 12:25:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D8DD78AFD; Wed, 20 Jun 2018 12:25:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2C7B22330; Wed, 20 Jun 2018 12:25:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KCPJT9001596; Wed, 20 Jun 2018 12:25:19 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KCPJgb001593; Wed, 20 Jun 2018 12:25:19 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806201225.w5KCPJgb001593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 20 Jun 2018 12:25:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472867 - head/mail/c-sig X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/mail/c-sig X-SVN-Commit-Revision: 472867 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 12:25:20 -0000 Author: swills Date: Wed Jun 20 12:25:18 2018 New Revision: 472867 URL: https://svnweb.freebsd.org/changeset/ports/472867 Log: mail/c-sig: update to 3.8.0.1 Also, switch MASTER_SITE to GitHub, add NO_ARCH, remove DOCS option and add WWW to pkg-descr. PR: 229152 Submitted by: Yasuhiro KIMURA (maintainer) Modified: head/mail/c-sig/Makefile (contents, props changed) head/mail/c-sig/distinfo (contents, props changed) head/mail/c-sig/pkg-descr (contents, props changed) head/mail/c-sig/pkg-plist (contents, props changed) Modified: head/mail/c-sig/Makefile ============================================================================== --- head/mail/c-sig/Makefile Wed Jun 20 11:44:33 2018 (r472866) +++ head/mail/c-sig/Makefile Wed Jun 20 12:25:18 2018 (r472867) @@ -2,12 +2,9 @@ # $FreeBSD$ PORTNAME= c-sig -PORTVERSION= 3.8 -PORTREVISION= 20 +PORTVERSION= 3.8.0.1 CATEGORIES= mail elisp -MASTER_SITES= LOCAL/tota/${PORTNAME} PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} -DISTNAME= ${PORTNAME}.${PORTVERSION} MAINTAINER= yasu@utahime.org COMMENT= Signature insertion tool for Emacs @@ -15,19 +12,14 @@ COMMENT= Signature insertion tool for Emacs LICENSE= GPLv2+ USES= emacs +USE_GITHUB= yes +GH_ACCOUNT= yasuhirokimura +NO_ARCH= yes -NO_WRKSUBDIR= yes - -OPTIONS_DEFINE= DOCS - +MAKE_ENV+= EMACS=${EMACS_CMD} LISPDIR=${LISPDIR} LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} -do-build: - cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile c-sig.el - -do-install: - @${MKDIR} ${STAGEDIR}${LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${STAGEDIR}${LISPDIR} +post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man ${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} Modified: head/mail/c-sig/distinfo ============================================================================== --- head/mail/c-sig/distinfo Wed Jun 20 11:44:33 2018 (r472866) +++ head/mail/c-sig/distinfo Wed Jun 20 12:25:18 2018 (r472867) @@ -1,2 +1,3 @@ -SHA256 (c-sig.3.8.tar.gz) = cb035108a6b1006a2c3bcf7e6b9d759c826d54966b345728e24fb73dd88db3fa -SIZE (c-sig.3.8.tar.gz) = 21827 +TIMESTAMP = 1529399373 +SHA256 (yasuhirokimura-c-sig-3.8.0.1_GH0.tar.gz) = e4d89193dd179710c72240e2d8e658078cdaf4b87408d505cd376d3eeab0dea8 +SIZE (yasuhirokimura-c-sig-3.8.0.1_GH0.tar.gz) = 24931 Modified: head/mail/c-sig/pkg-descr ============================================================================== --- head/mail/c-sig/pkg-descr Wed Jun 20 11:44:33 2018 (r472866) +++ head/mail/c-sig/pkg-descr Wed Jun 20 12:25:18 2018 (r472867) @@ -6,3 +6,5 @@ features: - Powerful retrieval and learning function. - c-sig can convert text automatically when insertion. - signatures can be modified by emacs lisp. + +WWW: https://github.com/yasuhirokimura/c-sig Modified: head/mail/c-sig/pkg-plist ============================================================================== --- head/mail/c-sig/pkg-plist Wed Jun 20 11:44:33 2018 (r472866) +++ head/mail/c-sig/pkg-plist Wed Jun 20 12:25:18 2018 (r472867) @@ -1,6 +1,6 @@ %%EMACS_VERSION_SITE_LISPDIR%%/c-sig/c-sig.el %%EMACS_VERSION_SITE_LISPDIR%%/c-sig/c-sig.elc -%%PORTDOCS%%%%DOCSDIR%%/c-sig-eng.faq -%%PORTDOCS%%%%DOCSDIR%%/c-sig-eng.man -%%PORTDOCS%%%%DOCSDIR%%/c-sig-jp.faq -%%PORTDOCS%%%%DOCSDIR%%/c-sig-jp.man +%%DOCSDIR%%/c-sig-eng.faq +%%DOCSDIR%%/c-sig-eng.man +%%DOCSDIR%%/c-sig-jp.faq +%%DOCSDIR%%/c-sig-jp.man From owner-svn-ports-head@freebsd.org Wed Jun 20 12:37:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54D64101741A; Wed, 20 Jun 2018 12:37:23 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3253790CC; Wed, 20 Jun 2018 12:37:22 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C99F2224F5; Wed, 20 Jun 2018 12:37:22 +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 w5KCbMlb006850; Wed, 20 Jun 2018 12:37:22 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KCbMsm006849; Wed, 20 Jun 2018 12:37:22 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201806201237.w5KCbMsm006849@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Wed, 20 Jun 2018 12:37:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472868 - head/www/p5-Mojolicious X-SVN-Group: ports-head X-SVN-Commit-Author: adamw X-SVN-Commit-Paths: head/www/p5-Mojolicious X-SVN-Commit-Revision: 472868 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 12:37:23 -0000 Author: adamw Date: Wed Jun 20 12:37:22 2018 New Revision: 472868 URL: https://svnweb.freebsd.org/changeset/ports/472868 Log: Update Mojolicious to 7.85 Modified: head/www/p5-Mojolicious/Makefile head/www/p5-Mojolicious/distinfo Modified: head/www/p5-Mojolicious/Makefile ============================================================================== --- head/www/p5-Mojolicious/Makefile Wed Jun 20 12:25:18 2018 (r472867) +++ head/www/p5-Mojolicious/Makefile Wed Jun 20 12:37:22 2018 (r472868) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojolicious -PORTVERSION= 7.84 +PORTVERSION= 7.85 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Mojolicious/distinfo ============================================================================== --- head/www/p5-Mojolicious/distinfo Wed Jun 20 12:25:18 2018 (r472867) +++ head/www/p5-Mojolicious/distinfo Wed Jun 20 12:37:22 2018 (r472868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528335136 -SHA256 (Mojolicious-7.84.tar.gz) = 7461a27e8e8665b436a60c708cf6ce4164b84dfb1b2435480a65597085d26ebc -SIZE (Mojolicious-7.84.tar.gz) = 723096 +TIMESTAMP = 1529498173 +SHA256 (Mojolicious-7.85.tar.gz) = b4c6109597bfe29261fe2861a93247cde22e1894f092b2984ecf2092610e6758 +SIZE (Mojolicious-7.85.tar.gz) = 723325 From owner-svn-ports-head@freebsd.org Wed Jun 20 12:38:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1AD910174D4; Wed, 20 Jun 2018 12:38:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 87B26791DA; Wed, 20 Jun 2018 12:38:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 64284224F6; Wed, 20 Jun 2018 12:38:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KCcieg007022; Wed, 20 Jun 2018 12:38:44 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KCci6L007020; Wed, 20 Jun 2018 12:38:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806201238.w5KCci6L007020@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 20 Jun 2018 12:38:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472869 - head/sysutils/neofetch X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/sysutils/neofetch X-SVN-Commit-Revision: 472869 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 12:38:45 -0000 Author: swills Date: Wed Jun 20 12:38:43 2018 New Revision: 472869 URL: https://svnweb.freebsd.org/changeset/ports/472869 Log: sysutils/neofetch: update to 5.0.0 PR: 229154 Submitted by: Piotr Kubaj (maintainer) Modified: head/sysutils/neofetch/Makefile (contents, props changed) head/sysutils/neofetch/distinfo (contents, props changed) Modified: head/sysutils/neofetch/Makefile ============================================================================== --- head/sysutils/neofetch/Makefile Wed Jun 20 12:37:22 2018 (r472868) +++ head/sysutils/neofetch/Makefile Wed Jun 20 12:38:43 2018 (r472869) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= neofetch -DISTVERSION= 4.0.2 +DISTVERSION= 5.0.0 CATEGORIES= sysutils MAINTAINER= pkubaj@anongoth.pl Modified: head/sysutils/neofetch/distinfo ============================================================================== --- head/sysutils/neofetch/distinfo Wed Jun 20 12:37:22 2018 (r472868) +++ head/sysutils/neofetch/distinfo Wed Jun 20 12:38:43 2018 (r472869) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526815836 -SHA256 (dylanaraps-neofetch-4.0.2_GH0.tar.gz) = 3cd4db97d732dd91424b357166d38edccec236c21612b392318b48a3ffa29004 -SIZE (dylanaraps-neofetch-4.0.2_GH0.tar.gz) = 111792 +TIMESTAMP = 1529418546 +SHA256 (dylanaraps-neofetch-5.0.0_GH0.tar.gz) = 2a4f4853bf83b88a037994dbc53a90c8bd5708f5eeb3392f56d4e49c49d995b3 +SIZE (dylanaraps-neofetch-5.0.0_GH0.tar.gz) = 110526 From owner-svn-ports-head@freebsd.org Wed Jun 20 13:35:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A8D81019DD6; Wed, 20 Jun 2018 13:35:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C8697AFCD; Wed, 20 Jun 2018 13:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2146322E84; Wed, 20 Jun 2018 13:35: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 w5KDZNj7036933; Wed, 20 Jun 2018 13:35:23 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KDZNl6036932; Wed, 20 Jun 2018 13:35:23 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201335.w5KDZNl6036932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 13:35:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472870 - head/net-p2p/qbittorrent X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/net-p2p/qbittorrent X-SVN-Commit-Revision: 472870 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 13:35:24 -0000 Author: mat Date: Wed Jun 20 13:35:23 2018 New Revision: 472870 URL: https://svnweb.freebsd.org/changeset/ports/472870 Log: Better use flavors. Sponsored by: Absolight Modified: head/net-p2p/qbittorrent/Makefile (contents, props changed) Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Wed Jun 20 12:38:43 2018 (r472869) +++ head/net-p2p/qbittorrent/Makefile Wed Jun 20 13:35:23 2018 (r472870) @@ -18,6 +18,7 @@ LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorren libboost_system.so:devel/boost-libs FLAVORS= default nox +FLAVOR= ${FLAVORS:[1]} default_LIB_DEPENDS= libGeoIP.so:net/GeoIP nox_PKGNAMESUFFIX= -nox nox_PLIST= ${NONEXISTENT} @@ -29,13 +30,13 @@ CONFIGURE_ARGS= CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLA QT_NONSTANDARD= yes DESTDIRNAME= INSTALL_ROOT -.if ${FLAVOR:Udefault} == default +.if ${FLAVOR} == default USES+= desktop-file-utils USE_QT5+= concurrent gui widgets USE_GL= gl .endif -.if ${FLAVOR:U} == nox +.if ${FLAVOR} == nox SUFFIX= -nox COMMENT+= (web UI version) CONFIGURE_ARGS+= --disable-gui From owner-svn-ports-head@freebsd.org Wed Jun 20 13:37:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A93BB1019FCE; Wed, 20 Jun 2018 13:37:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5BE357B10E; Wed, 20 Jun 2018 13:37:43 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 388E622E85; Wed, 20 Jun 2018 13:37:43 +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 w5KDbhVc037128; Wed, 20 Jun 2018 13:37:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KDbhJM037127; Wed, 20 Jun 2018 13:37:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201337.w5KDbhJM037127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 13:37:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472871 - head/net-p2p/qbittorrent X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/net-p2p/qbittorrent X-SVN-Commit-Revision: 472871 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 13:37:43 -0000 Author: mat Date: Wed Jun 20 13:37:42 2018 New Revision: 472871 URL: https://svnweb.freebsd.org/changeset/ports/472871 Log: Really clean flavors up. Sponsored by: Absolight Modified: head/net-p2p/qbittorrent/Makefile (contents, props changed) Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Wed Jun 20 13:35:23 2018 (r472870) +++ head/net-p2p/qbittorrent/Makefile Wed Jun 20 13:37:42 2018 (r472871) @@ -18,7 +18,7 @@ LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorren libboost_system.so:devel/boost-libs FLAVORS= default nox -FLAVOR= ${FLAVORS:[1]} +FLAVOR?= ${FLAVORS:[1]} default_LIB_DEPENDS= libGeoIP.so:net/GeoIP nox_PKGNAMESUFFIX= -nox nox_PLIST= ${NONEXISTENT} From owner-svn-ports-head@freebsd.org Wed Jun 20 15:01:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73578101D901; Wed, 20 Jun 2018 15:01:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 255F67DDF7; Wed, 20 Jun 2018 15:01:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 067A323D4F; Wed, 20 Jun 2018 15:01:43 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KF1gLv079232; Wed, 20 Jun 2018 15:01:42 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KF1g1B079231; Wed, 20 Jun 2018 15:01:42 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806201501.w5KF1g1B079231@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 20 Jun 2018 15:01:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472872 - head/net/frr4 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/net/frr4 X-SVN-Commit-Revision: 472872 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 15:01:43 -0000 Author: linimon Date: Wed Jun 20 15:01:42 2018 New Revision: 472872 URL: https://svnweb.freebsd.org/changeset/ports/472872 Log: Fix mis-merge in previous commit. Reported by: olivier Pointy hat to: linimon Modified: head/net/frr4/Makefile Modified: head/net/frr4/Makefile ============================================================================== --- head/net/frr4/Makefile Wed Jun 20 13:37:42 2018 (r472871) +++ head/net/frr4/Makefile Wed Jun 20 15:01:42 2018 (r472872) @@ -18,7 +18,7 @@ LIB_DEPENDS= libjson-c.so:devel/json-c CONFLICTS= openbgpd openospfd zebra quagga frr3 -USES= autoreconf bison compiler:c++11-lang gmake pkgconfig libtool makeinfo readline +USES= autoreconf bison compiler:c++11-lang gmake pkgconfig libtool makeinfo python:2.7,build readline GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes From owner-svn-ports-head@freebsd.org Wed Jun 20 15:03:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57A9B101DA38; Wed, 20 Jun 2018 15:03:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 01D387E0C6; Wed, 20 Jun 2018 15:03: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D6FBE23D9D; Wed, 20 Jun 2018 15:03: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 w5KF33Fx082522; Wed, 20 Jun 2018 15:03:03 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KF33kx082521; Wed, 20 Jun 2018 15:03:03 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806201503.w5KF33kx082521@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 20 Jun 2018 15:03:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472873 - head/net/frr4 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/net/frr4 X-SVN-Commit-Revision: 472873 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 15:03:04 -0000 Author: linimon Date: Wed Jun 20 15:03:03 2018 New Revision: 472873 URL: https://svnweb.freebsd.org/changeset/ports/472873 Log: Re-format USES line for readability, after previous commit. Modified: head/net/frr4/Makefile Modified: head/net/frr4/Makefile ============================================================================== --- head/net/frr4/Makefile Wed Jun 20 15:01:42 2018 (r472872) +++ head/net/frr4/Makefile Wed Jun 20 15:03:03 2018 (r472873) @@ -18,7 +18,8 @@ LIB_DEPENDS= libjson-c.so:devel/json-c CONFLICTS= openbgpd openospfd zebra quagga frr3 -USES= autoreconf bison compiler:c++11-lang gmake pkgconfig libtool makeinfo python:2.7,build readline +USES= autoreconf bison compiler:c++11-lang gmake pkgconfig libtool \ + makeinfo python:2.7,build readline GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes From owner-svn-ports-head@freebsd.org Wed Jun 20 15:15:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78CA5101E78D; Wed, 20 Jun 2018 15:15:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B31C7F229; Wed, 20 Jun 2018 15:15: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0563323F3D; Wed, 20 Jun 2018 15:15: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 w5KFFN2H087839; Wed, 20 Jun 2018 15:15:23 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KFFNW3087838; Wed, 20 Jun 2018 15:15:23 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201515.w5KFFNW3087838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 15:15:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472875 - head/Mk X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/Mk X-SVN-Commit-Revision: 472875 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 15:15:24 -0000 Author: mat Date: Wed Jun 20 15:15:23 2018 New Revision: 472875 URL: https://svnweb.freebsd.org/changeset/ports/472875 Log: Sort ONLY_FOR_ARCHS and NOT_FOR_ARCHS on display. This is so that all IGNORE message end up looking the same, and grep'ing and sorting them is easier. Reported by: linimon Sponsored by: Absolight Modified: head/Mk/bsd.port.mk (contents, props changed) Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Jun 20 15:06:52 2018 (r472874) +++ head/Mk/bsd.port.mk Wed Jun 20 15:15:23 2018 (r472875) @@ -2774,9 +2774,9 @@ __ARCH_OK?= 1 .if !defined(__ARCH_OK) .if defined(ONLY_FOR_ARCHS) -IGNORE= is only for ${ONLY_FOR_ARCHS}, +IGNORE= is only for ${ONLY_FOR_ARCHS:O}, .else # defined(NOT_FOR_ARCHS) -IGNORE= does not run on ${NOT_FOR_ARCHS}, +IGNORE= does not run on ${NOT_FOR_ARCHS:O}, .endif IGNORE+= while you are running ${ARCH} From owner-svn-ports-head@freebsd.org Wed Jun 20 15:40:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3BD1101FF03; Wed, 20 Jun 2018 15:40:26 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 74BFA8069B; Wed, 20 Jun 2018 15:40:26 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 55DC624279; Wed, 20 Jun 2018 15:40:26 +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 w5KFeQNo098547; Wed, 20 Jun 2018 15:40:26 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KFeQrN098545; Wed, 20 Jun 2018 15:40:26 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201806201540.w5KFeQrN098545@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: Wed, 20 Jun 2018 15:40:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472876 - head/net/cf X-SVN-Group: ports-head X-SVN-Commit-Author: dumbbell X-SVN-Commit-Paths: head/net/cf X-SVN-Commit-Revision: 472876 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 15:40:26 -0000 Author: dumbbell Date: Wed Jun 20 15:40:25 2018 New Revision: 472876 URL: https://svnweb.freebsd.org/changeset/ports/472876 Log: net/cf: Update to 6.37.0 Submitted by: swills Approved by: swills Sponsored by: Pivotal Software, Inc Modified: head/net/cf/Makefile head/net/cf/distinfo Modified: head/net/cf/Makefile ============================================================================== --- head/net/cf/Makefile Wed Jun 20 15:15:23 2018 (r472875) +++ head/net/cf/Makefile Wed Jun 20 15:40:25 2018 (r472876) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cf -PORTVERSION= 6.34.1 +PORTVERSION= 6.37.0 DISTVERSIONPREFIX= v CATEGORIES= net Modified: head/net/cf/distinfo ============================================================================== --- head/net/cf/distinfo Wed Jun 20 15:15:23 2018 (r472875) +++ head/net/cf/distinfo Wed Jun 20 15:40:25 2018 (r472876) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517078215 -SHA256 (cloudfoundry-cli-v6.34.1_GH0.tar.gz) = 6eac22c6b59904bba8351c280624207d402af14118850d674c31ff7d07aa9442 -SIZE (cloudfoundry-cli-v6.34.1_GH0.tar.gz) = 26497502 +TIMESTAMP = 1529438034 +SHA256 (cloudfoundry-cli-v6.37.0_GH0.tar.gz) = 10af90aa3c09fc1a512a8b33adc9ca1fe27a8d9c70454c3e0fe179ab4c779429 +SIZE (cloudfoundry-cli-v6.37.0_GH0.tar.gz) = 8331325 From owner-svn-ports-head@freebsd.org Wed Jun 20 15:41:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 065ED101FFE7; Wed, 20 Jun 2018 15:41:10 +0000 (UTC) (envelope-from dumbbell@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A626780932; Wed, 20 Jun 2018 15:41:09 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 880F524398; Wed, 20 Jun 2018 15:41:09 +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 w5KFf9Qw099466; Wed, 20 Jun 2018 15:41:09 GMT (envelope-from dumbbell@FreeBSD.org) Received: (from dumbbell@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KFf9bY099465; Wed, 20 Jun 2018 15:41:09 GMT (envelope-from dumbbell@FreeBSD.org) Message-Id: <201806201541.w5KFf9bY099465@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: Wed, 20 Jun 2018 15:41:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472877 - head/net/cf X-SVN-Group: ports-head X-SVN-Commit-Author: dumbbell X-SVN-Commit-Paths: head/net/cf X-SVN-Commit-Revision: 472877 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 15:41:10 -0000 Author: dumbbell Date: Wed Jun 20 15:41:09 2018 New Revision: 472877 URL: https://svnweb.freebsd.org/changeset/ports/472877 Log: net/cf: Take maintainership Approved by: swills Sponsored by: Pivotal Software, Inc Modified: head/net/cf/Makefile Modified: head/net/cf/Makefile ============================================================================== --- head/net/cf/Makefile Wed Jun 20 15:40:25 2018 (r472876) +++ head/net/cf/Makefile Wed Jun 20 15:41:09 2018 (r472877) @@ -5,7 +5,7 @@ PORTVERSION= 6.37.0 DISTVERSIONPREFIX= v CATEGORIES= net -MAINTAINER= swills@FreeBSD.org +MAINTAINER= dumbbell@FreeBSD.org COMMENT= CLI for Cloud Foundry written in Go LICENSE= APACHE20 From owner-svn-ports-head@freebsd.org Wed Jun 20 16:28:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CE3F10228AA; Wed, 20 Jun 2018 16:28:34 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C407983388; Wed, 20 Jun 2018 16:28:33 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A521F24AC7; Wed, 20 Jun 2018 16:28:33 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KGSXbZ024081; Wed, 20 Jun 2018 16:28:33 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGSXLs024079; Wed, 20 Jun 2018 16:28:33 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201806201628.w5KGSXLs024079@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Wed, 20 Jun 2018 16:28:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472878 - head/sysutils/osinfo-db-tools X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: head/sysutils/osinfo-db-tools X-SVN-Commit-Revision: 472878 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:28:34 -0000 Author: novel Date: Wed Jun 20 16:28:32 2018 New Revision: 472878 URL: https://svnweb.freebsd.org/changeset/ports/472878 Log: sysutils/osinfo-db-tools: update to 1.2.0 Also set LICENSE. Modified: head/sysutils/osinfo-db-tools/Makefile head/sysutils/osinfo-db-tools/distinfo Modified: head/sysutils/osinfo-db-tools/Makefile ============================================================================== --- head/sysutils/osinfo-db-tools/Makefile Wed Jun 20 15:41:09 2018 (r472877) +++ head/sysutils/osinfo-db-tools/Makefile Wed Jun 20 16:28:32 2018 (r472878) @@ -2,13 +2,15 @@ # $FreeBSD$ PORTNAME= osinfo-db-tools -PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTVERSION= 1.2.0 CATEGORIES= sysutils MASTER_SITES= https://releases.pagure.org/libosinfo/ MAINTAINER= novel@FreeBSD.org COMMENT= Tools for managing the osinfo database + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING USES= gettext gmake libarchive pkgconfig USE_GNOME= glib20 intltool libxml2 libxslt Modified: head/sysutils/osinfo-db-tools/distinfo ============================================================================== --- head/sysutils/osinfo-db-tools/distinfo Wed Jun 20 15:41:09 2018 (r472877) +++ head/sysutils/osinfo-db-tools/distinfo Wed Jun 20 16:28:32 2018 (r472878) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479312040 -SHA256 (osinfo-db-tools-1.1.0.tar.gz) = a141cd2fc07c30d84801b5dbf6b11f2c2e708b0e81216277d052ac0b57fe546b -SIZE (osinfo-db-tools-1.1.0.tar.gz) = 481935 +TIMESTAMP = 1529508058 +SHA256 (osinfo-db-tools-1.2.0.tar.gz) = 3b50829e5b58db15fe9fc8caf005aa18300262fea4562da0c2dfbe56355ff81f +SIZE (osinfo-db-tools-1.2.0.tar.gz) = 447185 From owner-svn-ports-head@freebsd.org Wed Jun 20 16:29:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C342A1022927; Wed, 20 Jun 2018 16:29:07 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6016683473; Wed, 20 Jun 2018 16:29:07 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F0DD24AC8; Wed, 20 Jun 2018 16:29:07 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KGT7gt024229; Wed, 20 Jun 2018 16:29:07 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGT6Ml024228; Wed, 20 Jun 2018 16:29:06 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201806201629.w5KGT6Ml024228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Wed, 20 Jun 2018 16:29:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472879 - head/devel/libosinfo X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: head/devel/libosinfo X-SVN-Commit-Revision: 472879 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:29:07 -0000 Author: novel Date: Wed Jun 20 16:29:06 2018 New Revision: 472879 URL: https://svnweb.freebsd.org/changeset/ports/472879 Log: devel/libosinfo: update to 1.2.0 Modified: head/devel/libosinfo/Makefile head/devel/libosinfo/distinfo Modified: head/devel/libosinfo/Makefile ============================================================================== --- head/devel/libosinfo/Makefile Wed Jun 20 16:28:32 2018 (r472878) +++ head/devel/libosinfo/Makefile Wed Jun 20 16:29:06 2018 (r472879) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libosinfo -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.0 CATEGORIES= devel MASTER_SITES= https://releases.pagure.org/libosinfo/ Modified: head/devel/libosinfo/distinfo ============================================================================== --- head/devel/libosinfo/distinfo Wed Jun 20 16:28:32 2018 (r472878) +++ head/devel/libosinfo/distinfo Wed Jun 20 16:29:06 2018 (r472879) @@ -1,3 +1,3 @@ -TIMESTAMP = 1503205580 -SHA256 (libosinfo-1.1.0.tar.gz) = 600f43a4a8dae5086a01a3d44bcac2092b5fa1695121289806d544fb287d3136 -SIZE (libosinfo-1.1.0.tar.gz) = 904154 +TIMESTAMP = 1529507897 +SHA256 (libosinfo-1.2.0.tar.gz) = ee254fcf3f92447787a87b3f6df190c694a787de46348c45101e8dc7b29b5a78 +SIZE (libosinfo-1.2.0.tar.gz) = 916787 From owner-svn-ports-head@freebsd.org Wed Jun 20 16:45:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E83F0102396E; Wed, 20 Jun 2018 16:45:12 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9CDCF84435; Wed, 20 Jun 2018 16:45:12 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7955224E42; Wed, 20 Jun 2018 16:45:12 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KGjCD8034268; Wed, 20 Jun 2018 16:45:12 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGjChN034266; Wed, 20 Jun 2018 16:45:12 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806201645.w5KGjChN034266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 20 Jun 2018 16:45:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472880 - head/games/py-mnemosyne X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/games/py-mnemosyne X-SVN-Commit-Revision: 472880 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:45:13 -0000 Author: swills Date: Wed Jun 20 16:45:11 2018 New Revision: 472880 URL: https://svnweb.freebsd.org/changeset/ports/472880 Log: games/py-mnemosyne: Update to 2.6 PR: 229169 Submitted by: Kai Modified: head/games/py-mnemosyne/Makefile (contents, props changed) head/games/py-mnemosyne/distinfo (contents, props changed) Modified: head/games/py-mnemosyne/Makefile ============================================================================== --- head/games/py-mnemosyne/Makefile Wed Jun 20 16:29:06 2018 (r472879) +++ head/games/py-mnemosyne/Makefile Wed Jun 20 16:45:11 2018 (r472880) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mnemosyne -PORTVERSION= 2.3.6 -PORTREVISION= 4 +PORTVERSION= 2.6 PORTEPOCH= 1 CATEGORIES= games python MASTER_SITES= SF/mnemosyne-proj/${PORTNAME}/${PORTNAME}-${DISTVERSION} @@ -15,40 +14,20 @@ COMMENT= Flash-card tool which optimises your learning LICENSE= LGPL3 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.2.0:math/py-matplotlib@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}cherrypy>=3.2:www/py-cherrypy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}webob>=1.2.2:www/py-webob@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}PyOpenGL>=0:graphics/py-PyOpenGL@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=0:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}webob>=1.4:www/py-webob@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cheroot>=0:www/py-cheroot@${PY_FLAVOR} -USES= fortran pyqt:4 python:2.7 -USE_PYQT= gui_run network_run sql_run webkit_run +USES= pyqt:5 python:3.5+ +USE_PYQT= gui_run network_run printsupport_run sip_run sql_run webengine_run USE_PYTHON= distutils autoplist + NO_ARCH= yes -PLIST_FILES= bin/mnemosyne - -_GCC_LD_PATH= ${LOCALBASE}/lib/gcc${GCC_DEFAULT:S/.//} - -.include - -post-extract: - @${LN} -sf mnemosyne ${WRKSRC}/mnemosyne/pyqt_ui/mnemosyne.exec - post-patch: - @${REINPLACE_CMD} -e 's|\(pyqt_ui/mnemosyne\)"|\1.exec"| ; \ - s|\(share/\)icons|\1pixmaps|' ${WRKSRC}/setup.py + @${REINPLACE_CMD} -e 's|\(share/\)icons|\1pixmaps|' ${WRKSRC}/setup.py -post-build: - @${MKDIR} ${WRKDIR}/wrappers - @${ECHO_CMD} '#!${SH}' > ${WRKDIR}/wrappers/mnemosyne -.if ${OPSYS} == FreeBSD && ${fortran_ARGS} == gcc - @${ECHO_CMD} 'LD_LIBRARY_PATH="${_GCC_LD_PATH}:$$LD_LIBRARY_PATH"' \ - >> ${WRKDIR}/wrappers/mnemosyne - @${ECHO_CMD} 'export LD_LIBRARY_PATH' >> ${WRKDIR}/wrappers/mnemosyne -.endif - @${ECHO_CMD} 'exec ${PREFIX}/bin/mnemosyne.exec "$$@"' >> ${WRKDIR}/wrappers/mnemosyne - -post-install: - ${INSTALL_SCRIPT} ${WRKDIR}/wrappers/mnemosyne ${STAGEDIR}${PREFIX}/bin - -.include +.include Modified: head/games/py-mnemosyne/distinfo ============================================================================== --- head/games/py-mnemosyne/distinfo Wed Jun 20 16:29:06 2018 (r472879) +++ head/games/py-mnemosyne/distinfo Wed Jun 20 16:45:11 2018 (r472880) @@ -1,2 +1,3 @@ -SHA256 (Mnemosyne-2.3.6.tar.gz) = b163ae308c6ad78bc977f1c781f114f3c0934341e8199d51257e312c7bc4b5aa -SIZE (Mnemosyne-2.3.6.tar.gz) = 1396685 +TIMESTAMP = 1529233511 +SHA256 (Mnemosyne-2.6.tar.gz) = e4e90cda5490dabe28a7c06a38c73e45f09f782f7b2eef59797ab955a62eeb2c +SIZE (Mnemosyne-2.6.tar.gz) = 1271314 From owner-svn-ports-head@freebsd.org Wed Jun 20 16:58:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6552810243F8; Wed, 20 Jun 2018 16:58:35 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1422A84C7C; Wed, 20 Jun 2018 16:58:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E50F324FE4; Wed, 20 Jun 2018 16:58:34 +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 w5KGwYZq040102; Wed, 20 Jun 2018 16:58:34 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGwUFi040073; Wed, 20 Jun 2018 16:58:30 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201658.w5KGwUFi040073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 16:58:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472881 - in head: astro/py-astLib devel/py-Jinja2 devel/py-jenkins-job-builder devel/py-oslo.i18n devel/py-pathtools devel/py-stevedore devel/py-watchdog graphics/py-actdiag graphics/p... X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: astro/py-astLib devel/py-Jinja2 devel/py-jenkins-job-builder devel/py-oslo.i18n devel/py-pathtools devel/py-stevedore devel/py-watchdog graphics/py-actdiag graphics/py-blockdiag graphics/py-b... X-SVN-Commit-Revision: 472881 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:58:35 -0000 Author: mat Date: Wed Jun 20 16:58:29 2018 New Revision: 472881 URL: https://svnweb.freebsd.org/changeset/ports/472881 Log: Use the correct variable for dependency lines. PKGNAMEPREFIX the name of the current package prefix, it is not correct to use it for other package names. Sponsored by: Absolight Modified: head/astro/py-astLib/Makefile (contents, props changed) head/devel/py-Jinja2/Makefile (contents, props changed) head/devel/py-jenkins-job-builder/Makefile (contents, props changed) head/devel/py-oslo.i18n/Makefile (contents, props changed) head/devel/py-pathtools/Makefile (contents, props changed) head/devel/py-stevedore/Makefile (contents, props changed) head/devel/py-watchdog/Makefile (contents, props changed) head/graphics/py-actdiag/Makefile (contents, props changed) head/graphics/py-blockdiag/Makefile (contents, props changed) head/graphics/py-blockdiagcontrib-cisco/Makefile (contents, props changed) head/graphics/py-gdal/Makefile (contents, props changed) head/graphics/py-nwdiag/Makefile (contents, props changed) head/graphics/py-seqdiag/Makefile (contents, props changed) head/textproc/py-genshi/Makefile (contents, props changed) head/textproc/py-sphinx-intl/Makefile (contents, props changed) head/textproc/py-sphinx_numfig/Makefile (contents, props changed) head/textproc/py-sphinx_wikipedia/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-adadomain/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-bitbucket/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-fulltoc/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-httpdomain/Makefile (contents, props changed) head/www/py-py-restclient/Makefile (contents, props changed) head/www/py-pywikibot/Makefile (contents, props changed) head/www/py-qt5-webkit/Makefile (contents, props changed) head/www/py-restclient/Makefile (contents, props changed) Modified: head/astro/py-astLib/Makefile ============================================================================== --- head/astro/py-astLib/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/astro/py-astLib/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,11 +13,11 @@ COMMENT= Astronomy modules for Python LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${FLAVOR} \ - ${PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} \ ${PYNUMPY} \ - ${PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} PORTSCOUT= skipv:0.15,0.17,0.17.1 # incorrect versioning upstream Modified: head/devel/py-Jinja2/Makefile ============================================================================== --- head/devel/py-Jinja2/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-Jinja2/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -40,7 +40,7 @@ PY2TO3_ARGS= --fix=all --no-diffs --nobackups --verbos .include .if ${PKGNAMESUFFIX} == "-doc" -BUILD_DEPENDS+= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} PORTDOCS= * PORT_OPTIONS:= ${PORT_OPTIONS:NEXAMPLES} Modified: head/devel/py-jenkins-job-builder/Makefile ============================================================================== --- head/devel/py-jenkins-job-builder/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-jenkins-job-builder/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,15 +12,15 @@ COMMENT= Manage Jenkins jobs with YAML LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} \ - ${PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} \ - ${PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ - ${PKGNAMEPREFIX}stevedore>0:devel/py-stevedore@${FLAVOR} \ - ${PKGNAMEPREFIX}python-jenkins>0:devel/py-python-jenkins@${FLAVOR} \ - ${PKGNAMEPREFIX}fasteners>0:devel/py-fasteners@${FLAVOR} \ - ${PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${FLAVOR} \ - ${PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stevedore>0:devel/py-stevedore@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-jenkins>0:devel/py-python-jenkins@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}fasteners>0:devel/py-fasteners@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} USES= python USE_PYTHON= autoplist distutils Modified: head/devel/py-oslo.i18n/Makefile ============================================================================== --- head/devel/py-oslo.i18n/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-oslo.i18n/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,7 +12,7 @@ COMMENT= Oslo i18n library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=2.3.4:devel/py-babel@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} Modified: head/devel/py-pathtools/Makefile ============================================================================== --- head/devel/py-pathtools/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-pathtools/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -20,7 +20,7 @@ USE_PYTHON= distutils autoplist .include .if ${PORT_OPTIONS:MDOCS} -BUILD_DEPENDS+= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} post-build: Modified: head/devel/py-stevedore/Makefile ============================================================================== --- head/devel/py-stevedore/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-stevedore/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,8 +13,8 @@ COMMENT= Manage dynamic plugins for Python application LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} NO_ARCH= yes USES= python Modified: head/devel/py-watchdog/Makefile ============================================================================== --- head/devel/py-watchdog/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/devel/py-watchdog/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,12 +12,12 @@ COMMENT= Python API library to monitor file system eve LICENSE= APACHE20 -RUN_DEPENDS= ${PKGNAMEPREFIX}argh>=0.26.1:devel/py-argh@${FLAVOR} \ - ${PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ - ${PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argh>=0.26.1:devel/py-argh@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${FLAVOR} -DOCS_BUILD_DEPENDS= ${PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ - ${PKGNAMEPREFIX}sphinx>=1.4.4:textproc/py-sphinx@${FLAVOR} +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pathtools>=0.1.2:devel/py-pathtools@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=1.4.4:textproc/py-sphinx@${FLAVOR} DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} GH_ACCOUNT= gorakhargosh Modified: head/graphics/py-actdiag/Makefile ============================================================================== --- head/graphics/py-actdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-actdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple activity-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils Modified: head/graphics/py-blockdiag/Makefile ============================================================================== --- head/graphics/py-blockdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-blockdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple block-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ - ${PKGNAMEPREFIX}webcolors>=0:graphics/py-webcolors@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}webcolors>=0:graphics/py-webcolors@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils @@ -33,7 +33,7 @@ PDF_DESC= Enable PDF output OPTIONS_DEFAULT= PDF IPAFONT_RUN_DEPENDS= ${LOCALBASE}/share/font-ipa/ipag.otf:japanese/font-ipa -PDF_RUN_DEPENDS= ${PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${FLAVOR} +PDF_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${FLAVOR} post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/src/blockdiag/utils/bootstrap.py Modified: head/graphics/py-blockdiagcontrib-cisco/Makefile ============================================================================== --- head/graphics/py-blockdiagcontrib-cisco/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-blockdiagcontrib-cisco/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= kuriyama@FreeBSD.org COMMENT= Networking shapes for blockdiag designed by Cisco -RUN_DEPENDS= ${PKGNAMEPREFIX}blockdiag>=0.8.0:graphics/py-blockdiag@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}blockdiag>=0.8.0:graphics/py-blockdiag@${FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist Modified: head/graphics/py-gdal/Makefile ============================================================================== --- head/graphics/py-gdal/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-gdal/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -27,8 +27,8 @@ WRKSRC_SUBDIR= swig/python SHEBANG_FILES= scripts/*.py -NUMPY_BUILD_DEPENDS= ${PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} -NUMPY_RUN_DEPENDS= ${PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} +NUMPY_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} +NUMPY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.0.0,1:math/py-numpy@${FLAVOR} NUMPY_USES= fortran post-install: Modified: head/graphics/py-nwdiag/Makefile ============================================================================== --- head/graphics/py-nwdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-nwdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple network-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ - ${PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils Modified: head/graphics/py-seqdiag/Makefile ============================================================================== --- head/graphics/py-seqdiag/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/graphics/py-seqdiag/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,9 +13,9 @@ COMMENT= Simple sequence-diagram image generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ - ${PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ - ${PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=2.2.1:graphics/py-pillow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}funcparserlib>=0.3.6:devel/py-funcparserlib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}blockdiag>=1.5.0:graphics/py-blockdiag@${FLAVOR} USES= python:-3.4 USE_PYTHON= autoplist distutils Modified: head/textproc/py-genshi/Makefile ============================================================================== --- head/textproc/py-genshi/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-genshi/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -20,6 +20,6 @@ BABEL_DESC= I18n support through the Babel plugin USES= python USE_PYTHON= distutils autoplist -BABEL_RUN_DEPENDS= ${PKGNAMEPREFIX}Babel>=0.9.6:devel/py-babel@${FLAVOR} +BABEL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=0.9.6:devel/py-babel@${FLAVOR} .include Modified: head/textproc/py-sphinx-intl/Makefile ============================================================================== --- head/textproc/py-sphinx-intl/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinx-intl/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -14,9 +14,9 @@ COMMENT= Sphinx-intl translation features LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} \ - ${PKGNAMEPREFIX}polib>=1.0.6:devel/py-polib@${FLAVOR} \ - ${PKGNAMEPREFIX}six>=1.8.0:devel/py-six@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}polib>=1.0.6:devel/py-polib@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.8.0:devel/py-six@${FLAVOR} USES= python USE_PYTHON= autoplist distutils Modified: head/textproc/py-sphinx_numfig/Makefile ============================================================================== --- head/textproc/py-sphinx_numfig/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinx_numfig/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,7 +12,7 @@ COMMENT= Autonumbering figures in Sphinx LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} USES= python:2.7 tar:tgz USE_PYTHON= flavors Modified: head/textproc/py-sphinx_wikipedia/Makefile ============================================================================== --- head/textproc/py-sphinx_wikipedia/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinx_wikipedia/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -11,7 +11,7 @@ COMMENT= Sphinx extension which adds role to create li LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.3.1:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= flavors Modified: head/textproc/py-sphinxcontrib-adadomain/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-adadomain/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-adadomain/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -14,7 +14,7 @@ COMMENT= Sphinx Adadomain Extension LICENSE= BSD2CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/textproc/py-sphinxcontrib-bitbucket/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-bitbucket/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-bitbucket/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= nivit@FreeBSD.org COMMENT= Sphinx/BitBucket integration -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/textproc/py-sphinxcontrib-fulltoc/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-fulltoc/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-fulltoc/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,8 +12,8 @@ COMMENT= Sphinx Fulltoc Extension LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=1.8.1:devel/py-pbr@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.8.1:devel/py-pbr@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/textproc/py-sphinxcontrib-httpdomain/Makefile ============================================================================== --- head/textproc/py-sphinxcontrib-httpdomain/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/textproc/py-sphinxcontrib-httpdomain/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wg@FreeBSD.org COMMENT= Sphinx domain for HTTP APIs -RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=1.1.3:textproc/py-sphinx@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/www/py-py-restclient/Makefile ============================================================================== --- head/www/py-py-restclient/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-py-restclient/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= Python REST Client -RUN_DEPENDS= ${PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/www/py-pywikibot/Makefile ============================================================================== --- head/www/py-pywikibot/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-pywikibot/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -12,7 +12,7 @@ COMMENT= Wikipedia bot for Python LICENSE= MIT -RUN_DEPENDS= ${PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} USES= dos2unix python USE_PYTHON= autoplist distutils Modified: head/www/py-qt5-webkit/Makefile ============================================================================== --- head/www/py-qt5-webkit/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-qt5-webkit/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -8,7 +8,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:devel/py-sip@${FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${FLAVOR} CONFIGURE_ARGS= --enable QtWebKit PYQT_DIST= yes Modified: head/www/py-restclient/Makefile ============================================================================== --- head/www/py-restclient/Makefile Wed Jun 20 16:45:11 2018 (r472880) +++ head/www/py-restclient/Makefile Wed Jun 20 16:58:29 2018 (r472881) @@ -13,7 +13,7 @@ COMMENT= Convenient library for writing REST clients LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${FLAVOR} USES= python USE_PYTHON= distutils autoplist From owner-svn-ports-head@freebsd.org Wed Jun 20 16:59:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C830710244A4; Wed, 20 Jun 2018 16:59:33 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7650984D6F; Wed, 20 Jun 2018 16:59:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 55D7B24FE5; Wed, 20 Jun 2018 16:59:33 +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 w5KGxXkT040401; Wed, 20 Jun 2018 16:59:33 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGxVPD040388; Wed, 20 Jun 2018 16:59:31 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201659.w5KGxVPD040388@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 16:59:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472882 - in head: deskutils/gtg devel/hgview devel/py-buildbot-worker games/balazar net-im/papyon net/splatd sysutils/mog www/feedjack X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: deskutils/gtg devel/hgview devel/py-buildbot-worker games/balazar net-im/papyon net/splatd sysutils/mog www/feedjack X-SVN-Commit-Revision: 472882 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:59:34 -0000 Author: mat Date: Wed Jun 20 16:59:31 2018 New Revision: 472882 URL: https://svnweb.freebsd.org/changeset/ports/472882 Log: Correctly depend on those Python ports. - py-qt have their framework - depending on a single file breaks with multiple flavors. Sponsored by: Absolight Modified: head/deskutils/gtg/Makefile (contents, props changed) head/devel/hgview/Makefile (contents, props changed) head/devel/py-buildbot-worker/Makefile (contents, props changed) head/games/balazar/Makefile (contents, props changed) head/net-im/papyon/Makefile (contents, props changed) head/net/splatd/Makefile (contents, props changed) head/sysutils/mog/Makefile (contents, props changed) head/www/feedjack/Makefile (contents, props changed) Modified: head/deskutils/gtg/Makefile ============================================================================== --- head/deskutils/gtg/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/deskutils/gtg/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -25,7 +25,7 @@ USE_PYTHON= distutils autoplist OPTIONS_DEFINE= CHEETAH CHEETAH_DESC= Needed for export plugin to work OPTIONS_EXCLUDE= NLS DOCS -CHEETAH_RUN_DEPENDS= ${LOCALBASE}/bin/cheetah:devel/py-cheetah@${FLAVOR} +CHEETAH_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cheetah>0:devel/py-cheetah@${FLAVOR} .include Modified: head/devel/hgview/Makefile ============================================================================== --- head/devel/hgview/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/devel/hgview/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -17,13 +17,12 @@ RUN_DEPENDS= hg:devel/mercurial \ ${PYTHON_PKGNAMEPREFIX}mx-base>0:lang/py-mx-base@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${FLAVOR} BUILD_DEPENDS= hg:devel/mercurial \ - pyrcc4:textproc/py-qt4-xml@${FLAVOR} \ xmlto:textproc/xmlto \ asciidoc:textproc/asciidoc NO_ARCH= yes USES= gmake pyqt:4 python:2.7 -USE_PYQT= gui_run qscintilla2_run +USE_PYQT= gui_run qscintilla2_run xml_run USE_PYTHON= distutils PORTDOCS= * Modified: head/devel/py-buildbot-worker/Makefile ============================================================================== --- head/devel/py-buildbot-worker/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/devel/py-buildbot-worker/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}twisted>=14.0.1:devel/py-twisted@${FLAVOR} -TEST_DEPENDS= trial:devel/py-twisted@${FLAVOR} \ +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twisted>0:devel/py-twisted@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${FLAVOR} USES= python Modified: head/games/balazar/Makefile ============================================================================== --- head/games/balazar/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/games/balazar/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -15,7 +15,7 @@ LICENSE= GPLv2+ LIB_DEPENDS= libcal3d.so:graphics/cal3d \ libfreetype.so:print/freetype2 -RUN_DEPENDS= soya_editor:graphics/py-soya3d@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}soya3d>0:graphics/py-soya3d@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openal>0:audio/py-openal@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}vorbis>0:audio/py-vorbis@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tofu>0:net/py-tofu@${FLAVOR} \ Modified: head/net-im/papyon/Makefile ============================================================================== --- head/net-im/papyon/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/net-im/papyon/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -11,15 +11,15 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= gnome@FreeBSD.org COMMENT= Fork of pymsn to support the telepathy MSN connection manager -BUILD_DEPENDS= py*-openssl>0:security/py-openssl@${FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${FLAVOR} \ ${PY_ENUM34} \ ${PYTHON_SITELIBDIR}/Crypto/Hash/SHA.py:security/py-pycrypto@${FLAVOR} \ - ${LOCALBASE}/lib/gstreamer-0.10/libgstpython.so:multimedia/py-gstreamer@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gstreamer>0:multimedia/py-gstreamer@${FLAVOR} \ ${PYTHON_SITELIBDIR}/farsight.so:net-im/farsight2 -RUN_DEPENDS= py*-openssl>0:security/py-openssl@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${FLAVOR} \ ${PY_ENUM34} \ ${PYTHON_SITELIBDIR}/Crypto/Hash/SHA.py:security/py-pycrypto@${FLAVOR} \ - ${LOCALBASE}/lib/gstreamer-0.10/libgstpython.so:multimedia/py-gstreamer@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gstreamer>0:multimedia/py-gstreamer@${FLAVOR} \ ${PYTHON_SITELIBDIR}/farsight.so:net-im/farsight2 USE_GNOME= pygobject Modified: head/net/splatd/Makefile ============================================================================== --- head/net/splatd/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/net/splatd/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -13,9 +13,9 @@ COMMENT= Splat is the Scalable Periodic LDAP Attribute LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${LOCALBASE}/bin/zconfig:devel/py-zconfig@${FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zconfig>0:devel/py-zconfig@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ldap>=2.3.1:net/py-ldap@${FLAVOR} -RUN_DEPENDS= ${LOCALBASE}/bin/zconfig:devel/py-zconfig@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zconfig>0:devel/py-zconfig@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ldap>=2.3.1:net/py-ldap@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${FLAVOR} Modified: head/sysutils/mog/Makefile ============================================================================== --- head/sysutils/mog/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/sysutils/mog/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -12,7 +12,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${FLAVOR} \ - mdv:devel/py-mdv@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}mdv>0:devel/py-mdv@${FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python Modified: head/www/feedjack/Makefile ============================================================================== --- head/www/feedjack/Makefile Wed Jun 20 16:58:29 2018 (r472881) +++ head/www/feedjack/Makefile Wed Jun 20 16:59:31 2018 (r472882) @@ -11,7 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Feed aggregator written in Python using the Django framework RUN_DEPENDS= ${PYTHON_SITELIBDIR}/feedparser.py:textproc/py-feedparser@${FLAVOR} \ - django-admin.py:www/py-django18@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}django18>0:www/py-django18@${FLAVOR} DIST_SUBDIR= python USES= python:2.7 From owner-svn-ports-head@freebsd.org Wed Jun 20 16:59:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBDDD10244C9; Wed, 20 Jun 2018 16:59:39 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 03B0C84DBD; Wed, 20 Jun 2018 16:59:37 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AADC924FE6; Wed, 20 Jun 2018 16:59:37 +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 w5KGxb03040505; Wed, 20 Jun 2018 16:59:37 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KGxbkG040504; Wed, 20 Jun 2018 16:59:37 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201659.w5KGxbkG040504@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 16:59:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472883 - head/cad/dinotrace X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/cad/dinotrace X-SVN-Commit-Revision: 472883 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 16:59:40 -0000 Author: mat Date: Wed Jun 20 16:59:37 2018 New Revision: 472883 URL: https://svnweb.freebsd.org/changeset/ports/472883 Log: Use EMACS_FLAVOR for dependencies. FLAVOR is the flavor of the current port, and it should not trickle down. Sponsored by: Absolight Modified: head/cad/dinotrace/Makefile (contents, props changed) Modified: head/cad/dinotrace/Makefile ============================================================================== --- head/cad/dinotrace/Makefile Wed Jun 20 16:59:31 2018 (r472882) +++ head/cad/dinotrace/Makefile Wed Jun 20 16:59:37 2018 (r472883) @@ -27,7 +27,7 @@ OPTIONS_DEFAULT= EMACS EMACS_DESC= Install Emacs supplimentary files EMACS_USES= emacs:run -EMACS_RUN_DEPENDS= verilog-mode.el${EMACS_PKGNAMESUFFIX}>0:cad/verilog-mode.el@${FLAVOR} +EMACS_RUN_DEPENDS= verilog-mode.el${EMACS_PKGNAMESUFFIX}>0:cad/verilog-mode.el@${EMACS_FLAVOR} EMACS_PLIST_FILES= ${EMACS_SITE_LISPDIR}/dinotrace.el ${EMACS_SITE_LISPDIR}/sim-log.el post-patch: From owner-svn-ports-head@freebsd.org Wed Jun 20 17:05:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDB911024932; Wed, 20 Jun 2018 17:05:57 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A1AF853EE; Wed, 20 Jun 2018 17:05:57 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5773325173; Wed, 20 Jun 2018 17:05:57 +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 w5KH5vJb079395; Wed, 20 Jun 2018 17:05:57 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KH5ixe079331; Wed, 20 Jun 2018 17:05:44 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201705.w5KH5ixe079331@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 17:05:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472884 - in head: accessibility/speech-dispatcher archivers/py-attic archivers/py-libarchive-c archivers/py-lz4 archivers/py-zstandard astro/gpsd astro/py-RO astro/py-aipy astro/py-ast... X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: accessibility/speech-dispatcher archivers/py-attic archivers/py-libarchive-c archivers/py-lz4 archivers/py-zstandard astro/gpsd astro/py-RO astro/py-aipy astro/py-astLib astro/py-horoscopegen... X-SVN-Commit-Revision: 472884 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:05:58 -0000 Author: mat Date: Wed Jun 20 17:05:41 2018 New Revision: 472884 URL: https://svnweb.freebsd.org/changeset/ports/472884 Log: Use PY_FLAVOR for dependencies. FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight Modified: head/accessibility/speech-dispatcher/Makefile (contents, props changed) head/archivers/py-attic/Makefile (contents, props changed) head/archivers/py-libarchive-c/Makefile (contents, props changed) head/archivers/py-lz4/Makefile (contents, props changed) head/archivers/py-zstandard/Makefile (contents, props changed) head/astro/gpsd/Makefile (contents, props changed) head/astro/py-RO/Makefile (contents, props changed) head/astro/py-aipy/Makefile (contents, props changed) head/astro/py-astLib/Makefile (contents, props changed) head/astro/py-horoscopegenerator/Makefile (contents, props changed) head/astro/py-metpy/Makefile (contents, props changed) head/audio/beets/Makefile (contents, props changed) head/audio/mbox/Makefile (contents, props changed) head/audio/mpdbrowser/Makefile (contents, props changed) head/audio/picard/Makefile (contents, props changed) head/audio/pithos/Makefile (contents, props changed) head/audio/puddletag/Makefile (contents, props changed) head/audio/py-SoundFile/Makefile (contents, props changed) head/audio/py-aubio/Makefile (contents, props changed) head/audio/py-discogs-client/Makefile (contents, props changed) head/audio/py-gmusicapi/Makefile (contents, props changed) head/audio/py-gmusicproxy/Makefile (contents, props changed) head/audio/py-karaoke/Makefile (contents, props changed) head/audio/py-py-jack/Makefile (contents, props changed) head/audio/py-pylast/Makefile (contents, props changed) head/audio/py-soundcloud/Makefile (contents, props changed) head/audio/py-sounddevice/Makefile (contents, props changed) head/audio/py-soundscrape/Makefile (contents, props changed) head/audio/py-speechrecognition/Makefile (contents, props changed) head/audio/py-speex/Makefile (contents, props changed) head/audio/py-vorbis/Makefile (contents, props changed) head/audio/py-xmms2/Makefile (contents, props changed) head/audio/pytone/Makefile (contents, props changed) head/audio/sonata/Makefile (contents, props changed) head/benchmarks/py-naarad/Makefile (contents, props changed) head/benchmarks/py-zopkio/Makefile (contents, props changed) head/biology/py-Genesis-PyAPI/Makefile (contents, props changed) head/biology/py-biom-format/Makefile (contents, props changed) head/biology/py-biopython/Makefile (contents, props changed) head/biology/py-bx-python/Makefile (contents, props changed) head/biology/py-cutadapt/Makefile (contents, props changed) head/biology/pycogent/Makefile (contents, props changed) head/cad/py-gdspy/Makefile (contents, props changed) head/cad/py-lcapy/Makefile (contents, props changed) head/cad/py-pycam/Makefile (contents, props changed) head/cad/py-pyfda/Makefile (contents, props changed) head/cad/python-gdsii/Makefile (contents, props changed) head/cad/pythoncad/Makefile (contents, props changed) head/comms/chirp/Makefile (contents, props changed) head/comms/py-libimobiledevice/Makefile (contents, props changed) head/converters/py-bencode.py/Makefile (contents, props changed) head/converters/py-zfec/Makefile (contents, props changed) head/converters/zbase32/Makefile (contents, props changed) head/databases/emma/Makefile (contents, props changed) head/databases/gadfly/Makefile (contents, props changed) head/databases/mtools-mongodb/Makefile (contents, props changed) head/databases/mydbf2mysql/Makefile (contents, props changed) head/databases/openark-kit/Makefile (contents, props changed) head/databases/pg_activity/Makefile (contents, props changed) head/databases/pgworksheet/Makefile (contents, props changed) head/databases/powa-web/Makefile (contents, props changed) head/databases/py-Elixir/Makefile (contents, props changed) head/databases/py-Pyrseas/Makefile (contents, props changed) head/databases/py-agate-sql/Makefile (contents, props changed) head/databases/py-alembic/Makefile (contents, props changed) head/databases/py-carbon/Makefile (contents, props changed) head/databases/py-couchdb/Makefile (contents, props changed) head/databases/py-cql/Makefile (contents, props changed) head/databases/py-django-transaction-hooks/Makefile (contents, props changed) head/databases/py-fakeredis/Makefile (contents, props changed) head/databases/py-flask-sqlalchemy/Makefile (contents, props changed) head/databases/py-forgetsql/Makefile (contents, props changed) head/databases/py-geoalchemy/Makefile (contents, props changed) head/databases/py-geoalchemy2/Makefile (contents, props changed) head/databases/py-htsql-mysql/Makefile (contents, props changed) head/databases/py-htsql-pgsql/Makefile (contents, props changed) head/databases/py-htsql/Makefile (contents, props changed) head/databases/py-influxdb/Makefile (contents, props changed) head/databases/py-lmdb/Makefile (contents, props changed) head/databases/py-marshmallow-sqlalchemy/Makefile (contents, props changed) head/databases/py-motor/Makefile (contents, props changed) head/databases/py-mycli/Makefile (contents, props changed) head/databases/py-mysql2pgsql/Makefile (contents, props changed) head/databases/py-peewee/Makefile (contents, props changed) head/databases/py-pgcli/Makefile (contents, props changed) head/databases/py-pgspecial/Makefile (contents, props changed) head/databases/py-pickledb/Makefile (contents, props changed) head/databases/py-pickleshare/Makefile (contents, props changed) head/databases/py-psycopg2cffi/Makefile (contents, props changed) head/databases/py-pum/Makefile (contents, props changed) head/databases/py-pymssql/Makefile (contents, props changed) head/databases/py-python-arango/Makefile (contents, props changed) head/databases/py-python-memcached/Makefile (contents, props changed) head/databases/py-python-swiftclient/Makefile (contents, props changed) head/databases/py-queries/Makefile (contents, props changed) head/databases/py-rb/Makefile (contents, props changed) head/databases/py-redis/Makefile (contents, props changed) head/databases/py-riak/Makefile (contents, props changed) head/databases/py-sispy/Makefile (contents, props changed) head/databases/py-sqlalchemy-migrate/Makefile (contents, props changed) head/databases/py-sqlalchemy10/Makefile (contents, props changed) head/databases/py-sqlalchemy11/Makefile (contents, props changed) head/databases/py-sqlalchemy12/Makefile (contents, props changed) head/databases/py-sqlite3dbm/Makefile (contents, props changed) head/databases/py-sqlobject/Makefile (contents, props changed) head/databases/py-swift/Makefile (contents, props changed) head/databases/py-tarantool/Makefile (contents, props changed) head/databases/py-whisper/Makefile (contents, props changed) head/databases/py-xapian/Makefile (contents, props changed) head/databases/zodb3/Makefile (contents, props changed) head/deskutils/dosage/Makefile (contents, props changed) head/deskutils/gourmet/Makefile (contents, props changed) head/deskutils/gtg/Makefile (contents, props changed) head/deskutils/py-bugwarrior/Makefile (contents, props changed) head/deskutils/py-khal/Makefile (contents, props changed) head/deskutils/py-pystash/Makefile (contents, props changed) head/deskutils/py-taskw/Makefile (contents, props changed) head/deskutils/py-vdirsyncer/Makefile (contents, props changed) head/deskutils/py-vobject/Makefile (contents, props changed) head/deskutils/pybookreader/Makefile (contents, props changed) head/deskutils/pypanel/Makefile (contents, props changed) head/deskutils/rednotebook/Makefile (contents, props changed) head/deskutils/syncthing-gtk/Makefile (contents, props changed) head/deskutils/taskcoach/Makefile (contents, props changed) head/deskutils/virt-manager/Makefile (contents, props changed) head/deskutils/zim/Makefile (contents, props changed) head/devel/b2/Makefile (contents, props changed) head/devel/bbfreeze/Makefile (contents, props changed) head/devel/bpython/Makefile (contents, props changed) head/devel/bzr-explorer/Makefile (contents, props changed) head/devel/bzr-fastimport/Makefile (contents, props changed) head/devel/bzr-git/Makefile (contents, props changed) head/devel/bzr-gtk/Makefile (contents, props changed) head/devel/bzr-svn/Makefile (contents, props changed) head/devel/bzr/Makefile (contents, props changed) head/devel/cram/Makefile (contents, props changed) head/devel/cvs2svn/Makefile (contents, props changed) head/devel/dissy/Makefile (contents, props changed) head/devel/drpython/Makefile (contents, props changed) head/devel/euca2ools/Makefile (contents, props changed) head/devel/fnorb/Makefile (contents, props changed) head/devel/gazpacho/Makefile (contents, props changed) head/devel/git-cvs/Makefile (contents, props changed) head/devel/git-review/Makefile (contents, props changed) head/devel/hg-git/Makefile (contents, props changed) head/devel/hgview/Makefile (contents, props changed) head/devel/ipython/Makefile (contents, props changed) head/devel/osc/Makefile (contents, props changed) head/devel/plasma/Makefile (contents, props changed) head/devel/py-Acquisition/Makefile (contents, props changed) head/devel/py-AddOns/Makefile (contents, props changed) head/devel/py-Automat/Makefile (contents, props changed) head/devel/py-BytecodeAssembler/Makefile (contents, props changed) head/devel/py-DateTime/Makefile (contents, props changed) head/devel/py-DocumentTemplate/Makefile (contents, props changed) head/devel/py-IBMQuantumExperience/Makefile (contents, props changed) head/devel/py-Jinja2/Makefile (contents, props changed) head/devel/py-Missing/Makefile (contents, props changed) head/devel/py-MultiMapping/Makefile (contents, props changed) head/devel/py-PEAK-Rules/Makefile (contents, props changed) head/devel/py-Persistence/Makefile (contents, props changed) head/devel/py-Products.ATContentTypes/Makefile (contents, props changed) head/devel/py-Products.ATReferenceBrowserWidget/Makefile (contents, props changed) head/devel/py-Products.Archetypes/Makefile (contents, props changed) head/devel/py-Products.BTreeFolder2/Makefile (contents, props changed) head/devel/py-Products.CMFActionIcons/Makefile (contents, props changed) head/devel/py-Products.CMFCalendar/Makefile (contents, props changed) head/devel/py-Products.CMFCore/Makefile (contents, props changed) head/devel/py-Products.CMFDefault/Makefile (contents, props changed) head/devel/py-Products.CMFDiffTool/Makefile (contents, props changed) head/devel/py-Products.CMFDynamicViewFTI/Makefile (contents, props changed) head/devel/py-Products.CMFEditions/Makefile (contents, props changed) head/devel/py-Products.CMFFormController/Makefile (contents, props changed) head/devel/py-Products.CMFPlacefulWorkflow/Makefile (contents, props changed) head/devel/py-Products.CMFQuickInstallerTool/Makefile (contents, props changed) head/devel/py-Products.CMFTestCase/Makefile (contents, props changed) head/devel/py-Products.CMFUid/Makefile (contents, props changed) head/devel/py-Products.DCWorkflow/Makefile (contents, props changed) head/devel/py-Products.ExtendedPathIndex/Makefile (contents, props changed) head/devel/py-Products.ExternalMethod/Makefile (contents, props changed) head/devel/py-Products.GenericSetup/Makefile (contents, props changed) head/devel/py-Products.LDAPMultiPlugins/Makefile (contents, props changed) head/devel/py-Products.LDAPUserFolder/Makefile (contents, props changed) head/devel/py-Products.MIMETools/Makefile (contents, props changed) head/devel/py-Products.Marshall/Makefile (contents, props changed) head/devel/py-Products.MimetypesRegistry/Makefile (contents, props changed) head/devel/py-Products.OFSP/Makefile (contents, props changed) head/devel/py-Products.PasswordResetTool/Makefile (contents, props changed) head/devel/py-Products.PlacelessTranslationService/Makefile (contents, props changed) head/devel/py-Products.PloneTestCase/Makefile (contents, props changed) head/devel/py-Products.PluginRegistry/Makefile (contents, props changed) head/devel/py-Products.PortalTransforms/Makefile (contents, props changed) head/devel/py-Products.PythonScripts/Makefile (contents, props changed) head/devel/py-Products.ResourceRegistries/Makefile (contents, props changed) head/devel/py-Products.StandardCacheManagers/Makefile (contents, props changed) head/devel/py-Products.ZCTextIndex/Makefile (contents, props changed) head/devel/py-Products.ZCatalog/Makefile (contents, props changed) head/devel/py-Products.ZSQLMethods/Makefile (contents, props changed) head/devel/py-Products.ZopeVersionControl/Makefile (contents, props changed) head/devel/py-Products.statusmessages/Makefile (contents, props changed) head/devel/py-Products.validation/Makefile (contents, props changed) head/devel/py-PyUtilib/Makefile (contents, props changed) head/devel/py-RPyC/Makefile (contents, props changed) head/devel/py-Record/Makefile (contents, props changed) head/devel/py-ToscaWidgets/Makefile (contents, props changed) head/devel/py-XStatic-Angular-Bootstrap/Makefile (contents, props changed) head/devel/py-XStatic-Angular-FileUpload/Makefile (contents, props changed) head/devel/py-XStatic-Angular-Gettext/Makefile (contents, props changed) head/devel/py-XStatic-Angular-Schema-Form/Makefile (contents, props changed) head/devel/py-XStatic-Angular-lrdragndrop/Makefile (contents, props changed) head/devel/py-XStatic-Angular/Makefile (contents, props changed) head/devel/py-XStatic-Bootstrap-Datepicker/Makefile (contents, props changed) head/devel/py-XStatic-Bootstrap-SCSS/Makefile (contents, props changed) head/devel/py-XStatic-D3/Makefile (contents, props changed) head/devel/py-XStatic-Font-Awesome/Makefile (contents, props changed) head/devel/py-XStatic-Hogan/Makefile (contents, props changed) head/devel/py-XStatic-JQuery-Migrate/Makefile (contents, props changed) head/devel/py-XStatic-JQuery.TableSorter/Makefile (contents, props changed) head/devel/py-XStatic-JQuery.quicksearch/Makefile (contents, props changed) head/devel/py-XStatic-JSEncrypt/Makefile (contents, props changed) head/devel/py-XStatic-Jasmine/Makefile (contents, props changed) head/devel/py-XStatic-Rickshaw/Makefile (contents, props changed) head/devel/py-XStatic-Spin/Makefile (contents, props changed) head/devel/py-XStatic-bootswatch/Makefile (contents, props changed) head/devel/py-XStatic-jQuery/Makefile (contents, props changed) head/devel/py-XStatic-jquery-ui/Makefile (contents, props changed) head/devel/py-XStatic-mdi/Makefile (contents, props changed) head/devel/py-XStatic-objectpath/Makefile (contents, props changed) head/devel/py-XStatic-roboto-fontface/Makefile (contents, props changed) head/devel/py-XStatic-smart-table/Makefile (contents, props changed) head/devel/py-XStatic-term.js/Makefile (contents, props changed) head/devel/py-XStatic-tv4/Makefile (contents, props changed) head/devel/py-adb/Makefile (contents, props changed) head/devel/py-aniso8601/Makefile (contents, props changed) head/devel/py-apns2/Makefile (contents, props changed) head/devel/py-apptools/Makefile (contents, props changed) head/devel/py-apscheduler/Makefile (contents, props changed) head/devel/py-archetypes.querywidget/Makefile (contents, props changed) head/devel/py-archetypes.referencebrowserwidget/Makefile (contents, props changed) head/devel/py-archetypes.schemaextender/Makefile (contents, props changed) head/devel/py-argcomplete/Makefile (contents, props changed) head/devel/py-arrow/Makefile (contents, props changed) head/devel/py-astroid/Makefile (contents, props changed) head/devel/py-asttokens/Makefile (contents, props changed) head/devel/py-atomiclong/Makefile (contents, props changed) head/devel/py-automaton/Makefile (contents, props changed) head/devel/py-avro/Makefile (contents, props changed) head/devel/py-babel/Makefile (contents, props changed) head/devel/py-backports.functools_lru_cache/Makefile (contents, props changed) head/devel/py-backports.shutil_get_terminal_size/Makefile (contents, props changed) head/devel/py-backports.tempfile/Makefile (contents, props changed) head/devel/py-backports.weakref/Makefile (contents, props changed) head/devel/py-bandit/Makefile (contents, props changed) head/devel/py-bcdoc/Makefile (contents, props changed) head/devel/py-bidict/Makefile (contents, props changed) head/devel/py-binplist/Makefile (contents, props changed) head/devel/py-biplist/Makefile (contents, props changed) head/devel/py-bison/Makefile (contents, props changed) head/devel/py-black/Makefile (contents, props changed) head/devel/py-blinker/Makefile (contents, props changed) head/devel/py-botocore/Makefile (contents, props changed) head/devel/py-bsd/Makefile (contents, props changed) head/devel/py-buildbot-console-view/Makefile (contents, props changed) head/devel/py-buildbot-grid-view/Makefile (contents, props changed) head/devel/py-buildbot-waterfall-view/Makefile (contents, props changed) head/devel/py-buildbot-worker/Makefile (contents, props changed) head/devel/py-buildbot-www/Makefile (contents, props changed) head/devel/py-buildbot/Makefile (contents, props changed) head/devel/py-canonicaljson/Makefile (contents, props changed) head/devel/py-castellan/Makefile (contents, props changed) head/devel/py-cdg/Makefile (contents, props changed) head/devel/py-celery/Makefile (contents, props changed) head/devel/py-cffi/Makefile (contents, props changed) head/devel/py-check-manifest/Makefile (contents, props changed) head/devel/py-cheetah/Makefile (contents, props changed) head/devel/py-circuits/Makefile (contents, props changed) head/devel/py-cli-helpers/Makefile (contents, props changed) head/devel/py-cliapp/Makefile (contents, props changed) head/devel/py-click-log/Makefile (contents, props changed) head/devel/py-click-plugins/Makefile (contents, props changed) head/devel/py-click-threading/Makefile (contents, props changed) head/devel/py-cliff/Makefile (contents, props changed) head/devel/py-cligj/Makefile (contents, props changed) head/devel/py-clint/Makefile (contents, props changed) head/devel/py-cloudpickle/Makefile (contents, props changed) head/devel/py-cmdtest/Makefile (contents, props changed) head/devel/py-codecov/Makefile (contents, props changed) head/devel/py-collective.z3cform.datetimewidget/Makefile (contents, props changed) head/devel/py-coloredlogs/Makefile (contents, props changed) head/devel/py-columnize/Makefile (contents, props changed) head/devel/py-configargparse/Makefile (contents, props changed) head/devel/py-configobj/Makefile (contents, props changed) head/devel/py-confusable_homoglyphs/Makefile (contents, props changed) head/devel/py-construct/Makefile (contents, props changed) head/devel/py-construct28/Makefile (contents, props changed) head/devel/py-cov-core/Makefile (contents, props changed) head/devel/py-cuisine/Makefile (contents, props changed) head/devel/py-cursive/Makefile (contents, props changed) head/devel/py-curtsies/Makefile (contents, props changed) head/devel/py-cycler/Makefile (contents, props changed) head/devel/py-d2to1/Makefile (contents, props changed) head/devel/py-daemon-runner/Makefile (contents, props changed) head/devel/py-daemon/Makefile (contents, props changed) head/devel/py-dateutil/Makefile (contents, props changed) head/devel/py-dateutils/Makefile (contents, props changed) head/devel/py-ddt/Makefile (contents, props changed) head/devel/py-debtcollector/Makefile (contents, props changed) head/devel/py-delfick_error/Makefile (contents, props changed) head/devel/py-deliciousapi/Makefile (contents, props changed) head/devel/py-deprecation/Makefile (contents, props changed) head/devel/py-diazo/Makefile (contents, props changed) head/devel/py-django-rq-dashboard/Makefile (contents, props changed) head/devel/py-django-rq/Makefile (contents, props changed) head/devel/py-django-tastypie-mongoengine/Makefile (contents, props changed) head/devel/py-docker-py/Makefile (contents, props changed) head/devel/py-dockerpty/Makefile (contents, props changed) head/devel/py-dogpile.cache/Makefile (contents, props changed) head/devel/py-doit/Makefile (contents, props changed) head/devel/py-easyprocess/Makefile (contents, props changed) head/devel/py-efilter/Makefile (contents, props changed) head/devel/py-efl/Makefile (contents, props changed) head/devel/py-ejson/Makefile (contents, props changed) head/devel/py-entrypoints/Makefile (contents, props changed) head/devel/py-envisage/Makefile (contents, props changed) head/devel/py-epsilon/Makefile (contents, props changed) head/devel/py-eventlib/Makefile (contents, props changed) head/devel/py-extras/Makefile (contents, props changed) head/devel/py-fabric/Makefile (contents, props changed) head/devel/py-fasteners/Makefile (contents, props changed) head/devel/py-filemagic/Makefile (contents, props changed) head/devel/py-five.customerize/Makefile (contents, props changed) head/devel/py-five.formlib/Makefile (contents, props changed) head/devel/py-five.globalrequest/Makefile (contents, props changed) head/devel/py-five.localsitemanager/Makefile (contents, props changed) head/devel/py-fixtures/Makefile (contents, props changed) head/devel/py-flake8-builtins/Makefile (contents, props changed) head/devel/py-flake8-docstrings/Makefile (contents, props changed) head/devel/py-flake8-import-order/Makefile (contents, props changed) head/devel/py-flake8-polyfill/Makefile (contents, props changed) head/devel/py-flake8-quotes/Makefile (contents, props changed) head/devel/py-flake8/Makefile (contents, props changed) head/devel/py-flask-babel/Makefile (contents, props changed) head/devel/py-fluent-logger/Makefile (contents, props changed) head/devel/py-flufl.i18n/Makefile (contents, props changed) head/devel/py-flufl.lock/Makefile (contents, props changed) head/devel/py-foolscap/Makefile (contents, props changed) head/devel/py-fortran/Makefile (contents, props changed) head/devel/py-freenas.dispatcher/Makefile (contents, props changed) head/devel/py-freenas.utils/Makefile (contents, props changed) head/devel/py-freezegun/Makefile (contents, props changed) head/devel/py-fsm/Makefile (contents, props changed) head/devel/py-futurist/Makefile (contents, props changed) head/devel/py-fuzzywuzzy/Makefile (contents, props changed) head/devel/py-gdata/Makefile (contents, props changed) head/devel/py-gdbgui/Makefile (contents, props changed) head/devel/py-geojson/Makefile (contents, props changed) head/devel/py-gevent/Makefile (contents, props changed) head/devel/py-git-up/Makefile (contents, props changed) head/devel/py-git_semver/Makefile (contents, props changed) head/devel/py-gitdb2/Makefile (contents, props changed) head/devel/py-gitless/Makefile (contents, props changed) head/devel/py-glance-store/Makefile (contents, props changed) head/devel/py-glob2/Makefile (contents, props changed) head/devel/py-google-apputils/Makefile (contents, props changed) head/devel/py-googleapis-common-protos/Makefile (contents, props changed) head/devel/py-grab/Makefile (contents, props changed) head/devel/py-grpcio-tools/Makefile (contents, props changed) head/devel/py-grpcio/Makefile (contents, props changed) head/devel/py-gtfslib/Makefile (contents, props changed) head/devel/py-hash_ring/Makefile (contents, props changed) head/devel/py-hgsubversion/Makefile (contents, props changed) head/devel/py-http-prompt/Makefile (contents, props changed) head/devel/py-hypothesis/Makefile (contents, props changed) head/devel/py-icalendar/Makefile (contents, props changed) head/devel/py-intervaltree/Makefile (contents, props changed) head/devel/py-invoke/Makefile (contents, props changed) head/devel/py-ipdb/Makefile (contents, props changed) head/devel/py-ipykernel/Makefile (contents, props changed) head/devel/py-ipyparallel/Makefile (contents, props changed) head/devel/py-ipywidgets/Makefile (contents, props changed) head/devel/py-iso8601/Makefile (contents, props changed) head/devel/py-isodate/Makefile (contents, props changed) head/devel/py-isort/Makefile (contents, props changed) head/devel/py-jaraco.classes/Makefile (contents, props changed) head/devel/py-jaraco.functools/Makefile (contents, props changed) head/devel/py-jaraco.itertools/Makefile (contents, props changed) head/devel/py-jaraco.logging/Makefile (contents, props changed) head/devel/py-jaraco.timing/Makefile (contents, props changed) head/devel/py-jaraco.util/Makefile (contents, props changed) head/devel/py-jdcal/Makefile (contents, props changed) head/devel/py-jedi/Makefile (contents, props changed) head/devel/py-jenkins-job-builder/Makefile (contents, props changed) head/devel/py-jira/Makefile (contents, props changed) head/devel/py-jsbeautifier/Makefile (contents, props changed) head/devel/py-jsonlines/Makefile (contents, props changed) head/devel/py-jsonpatch/Makefile (contents, props changed) head/devel/py-jsonref/Makefile (contents, props changed) head/devel/py-jsonrpclib/Makefile (contents, props changed) head/devel/py-jsonschema/Makefile (contents, props changed) head/devel/py-jupyter_client/Makefile (contents, props changed) head/devel/py-jupyter_console/Makefile (contents, props changed) head/devel/py-jupyter_core/Makefile (contents, props changed) head/devel/py-kaptan/Makefile (contents, props changed) head/devel/py-kayako/Makefile (contents, props changed) head/devel/py-kazoo/Makefile (contents, props changed) head/devel/py-keystoneauth1/Makefile (contents, props changed) head/devel/py-keystonemiddleware/Makefile (contents, props changed) head/devel/py-lazr.config/Makefile (contents, props changed) head/devel/py-lazr.delegates/Makefile (contents, props changed) head/devel/py-libtaxii/Makefile (contents, props changed) head/devel/py-linecache2/Makefile (contents, props changed) head/devel/py-llvmcpy/Makefile (contents, props changed) head/devel/py-lockfile/Makefile (contents, props changed) head/devel/py-logan/Makefile (contents, props changed) head/devel/py-logfury/Makefile (contents, props changed) head/devel/py-logilab-common/Makefile (contents, props changed) head/devel/py-louie/Makefile (contents, props changed) head/devel/py-manuel/Makefile (contents, props changed) head/devel/py-mccabe/Makefile (contents, props changed) head/devel/py-mdv/Makefile (contents, props changed) head/devel/py-medikit/Makefile (contents, props changed) head/devel/py-memory_profiler/Makefile (contents, props changed) head/devel/py-microversion-parse/Makefile (contents, props changed) head/devel/py-minimongo/Makefile (contents, props changed) head/devel/py-minio/Makefile (contents, props changed) head/devel/py-mock/Makefile (contents, props changed) head/devel/py-mondrian/Makefile (contents, props changed) head/devel/py-mongoengine/Makefile (contents, props changed) head/devel/py-mongokit/Makefile (contents, props changed) head/devel/py-monty/Makefile (contents, props changed) head/devel/py-munch/Makefile (contents, props changed) head/devel/py-mwlib.rl/Makefile (contents, props changed) head/devel/py-mwlib/Makefile (contents, props changed) head/devel/py-mx-experimental/Makefile (contents, props changed) head/devel/py-mypy/Makefile (contents, props changed) head/devel/py-natsort/Makefile (contents, props changed) head/devel/py-nbconvert/Makefile (contents, props changed) head/devel/py-nbformat/Makefile (contents, props changed) head/devel/py-nose-cov/Makefile (contents, props changed) head/devel/py-nose2/Makefile (contents, props changed) head/devel/py-noseofyeti/Makefile (contents, props changed) head/devel/py-notify2/Makefile (contents, props changed) head/devel/py-numba/Makefile (contents, props changed) head/devel/py-oletools/Makefile (contents, props changed) head/devel/py-omnijson/Makefile (contents, props changed) head/devel/py-openstacksdk/Makefile (contents, props changed) head/devel/py-option_merge/Makefile (contents, props changed) head/devel/py-ordered-set/Makefile (contents, props changed) head/devel/py-os-brick/Makefile (contents, props changed) head/devel/py-os-client-config/Makefile (contents, props changed) head/devel/py-os-vif/Makefile (contents, props changed) head/devel/py-os-win/Makefile (contents, props changed) head/devel/py-osc-lib/Makefile (contents, props changed) head/devel/py-oslo.cache/Makefile (contents, props changed) head/devel/py-oslo.concurrency/Makefile (contents, props changed) head/devel/py-oslo.config/Makefile (contents, props changed) head/devel/py-oslo.context/Makefile (contents, props changed) head/devel/py-oslo.db/Makefile (contents, props changed) head/devel/py-oslo.i18n/Makefile (contents, props changed) head/devel/py-oslo.log/Makefile (contents, props changed) head/devel/py-oslo.messaging/Makefile (contents, props changed) head/devel/py-oslo.middleware/Makefile (contents, props changed) head/devel/py-oslo.policy/Makefile (contents, props changed) head/devel/py-oslo.privsep/Makefile (contents, props changed) head/devel/py-oslo.reports/Makefile (contents, props changed) head/devel/py-oslo.rootwrap/Makefile (contents, props changed) head/devel/py-oslo.serialization/Makefile (contents, props changed) head/devel/py-oslo.service/Makefile (contents, props changed) head/devel/py-oslo.utils/Makefile (contents, props changed) head/devel/py-oslo.versionedobjects/Makefile (contents, props changed) head/devel/py-oslo.vmware/Makefile (contents, props changed) head/devel/py-osprofiler/Makefile (contents, props changed) head/devel/py-packaging/Makefile (contents, props changed) head/devel/py-palm/Makefile (contents, props changed) head/devel/py-pathlib/Makefile (contents, props changed) head/devel/py-pathlib2/Makefile (contents, props changed) head/devel/py-pathtools/Makefile (contents, props changed) head/devel/py-pbr/Makefile (contents, props changed) head/devel/py-pefile/Makefile (contents, props changed) head/devel/py-pep8-naming/Makefile (contents, props changed) head/devel/py-period/Makefile (contents, props changed) head/devel/py-pew/Makefile (contents, props changed) head/devel/py-pex/Makefile (contents, props changed) head/devel/py-phabricator/Makefile (contents, props changed) head/devel/py-phply/Makefile (contents, props changed) head/devel/py-pid/Makefile (contents, props changed) head/devel/py-pika-pool/Makefile (contents, props changed) head/devel/py-pinocchio/Makefile (contents, props changed) head/devel/py-pip-tools/Makefile (contents, props changed) head/devel/py-pip/Makefile (contents, props changed) head/devel/py-pipenv/Makefile (contents, props changed) head/devel/py-pkgconfig/Makefile (contents, props changed) head/devel/py-plan/Makefile (contents, props changed) head/devel/py-positional/Makefile (contents, props changed) head/devel/py-pretend/Makefile (contents, props changed) head/devel/py-prioritized_methods/Makefile (contents, props changed) head/devel/py-prompt_toolkit/Makefile (contents, props changed) head/devel/py-protobuf/Makefile (contents, props changed) head/devel/py-ptrace/Makefile (contents, props changed) head/devel/py-pudb/Makefile (contents, props changed) head/devel/py-py/Makefile (contents, props changed) head/devel/py-pyasn1-modules/Makefile (contents, props changed) head/devel/py-pycadf/Makefile (contents, props changed) head/devel/py-pycmd/Makefile (contents, props changed) head/devel/py-pydenticon/Makefile (contents, props changed) head/devel/py-pydocstyle/Makefile (contents, props changed) head/devel/py-pydrive/Makefile (contents, props changed) head/devel/py-pyface/Makefile (contents, props changed) head/devel/py-pyfcm/Makefile (contents, props changed) head/devel/py-pyformance/Makefile (contents, props changed) head/devel/py-pygit2/Makefile (contents, props changed) head/devel/py-pyke/Makefile (contents, props changed) head/devel/py-pymarc/Makefile (contents, props changed) head/devel/py-pyopencl/Makefile (contents, props changed) head/devel/py-pyral/Makefile (contents, props changed) head/devel/py-pyrfc3339/Makefile (contents, props changed) head/devel/py-pyro/Makefile (contents, props changed) head/devel/py-pystorm/Makefile (contents, props changed) head/devel/py-pyte/Makefile (contents, props changed) head/devel/py-pytest-asyncio/Makefile (contents, props changed) head/devel/py-pytest-cache/Makefile (contents, props changed) head/devel/py-pytest-capturelog/Makefile (contents, props changed) head/devel/py-pytest-cov/Makefile (contents, props changed) head/devel/py-pytest-flake8/Makefile (contents, props changed) head/devel/py-pytest-localserver/Makefile (contents, props changed) head/devel/py-pytest-mock/Makefile (contents, props changed) head/devel/py-pytest-runner/Makefile (contents, props changed) head/devel/py-pytest-sugar/Makefile (contents, props changed) head/devel/py-pytest-timeout/Makefile (contents, props changed) head/devel/py-pytest-tornado/Makefile (contents, props changed) head/devel/py-pytest-xdist/Makefile (contents, props changed) head/devel/py-pytest/Makefile (contents, props changed) head/devel/py-python-bugzilla/Makefile (contents, props changed) head/devel/py-python-gist/Makefile (contents, props changed) head/devel/py-python-gitlab/Makefile (contents, props changed) head/devel/py-python-jenkins/Makefile (contents, props changed) head/devel/py-pytools/Makefile (contents, props changed) head/devel/py-pyutil/Makefile (contents, props changed) head/devel/py-pyvalid/Makefile (contents, props changed) head/devel/py-pyvisa-py/Makefile (contents, props changed) head/devel/py-pyvisa/Makefile (contents, props changed) head/devel/py-pyxb/Makefile (contents, props changed) head/devel/py-qt4-dbussupport/Makefile (contents, props changed) head/devel/py-qt5-dbussupport/Makefile (contents, props changed) head/devel/py-qtconsole/Makefile (contents, props changed) head/devel/py-ramlfications/Makefile (contents, props changed) head/devel/py-rauth/Makefile (contents, props changed) head/devel/py-raven/Makefile (contents, props changed) head/devel/py-rebulk/Makefile (contents, props changed) head/devel/py-rednose/Makefile (contents, props changed) head/devel/py-repoze.tm2/Makefile (contents, props changed) head/devel/py-repoze.what-pylons/Makefile (contents, props changed) head/devel/py-repoze.what/Makefile (contents, props changed) head/devel/py-repoze.who-friendlyform/Makefile (contents, props changed) head/devel/py-repoze.who-testutil/Makefile (contents, props changed) head/devel/py-repoze.who/Makefile (contents, props changed) head/devel/py-repoze.xmliter/Makefile (contents, props changed) head/devel/py-requestsexceptions/Makefile (contents, props changed) head/devel/py-responses/Makefile (contents, props changed) head/devel/py-retrying/Makefile (contents, props changed) head/devel/py-riak_pb/Makefile (contents, props changed) head/devel/py-robotframework-databaselibrary/Makefile (contents, props changed) head/devel/py-robotframework-pabot/Makefile (contents, props changed) head/devel/py-robotframework-ride/Makefile (contents, props changed) head/devel/py-robotframework-selenium2library/Makefile (contents, props changed) head/devel/py-robotremoteserver/Makefile (contents, props changed) head/devel/py-rply/Makefile (contents, props changed) head/devel/py-rq/Makefile (contents, props changed) head/devel/py-rwt/Makefile (contents, props changed) head/devel/py-sanetime/Makefile (contents, props changed) head/devel/py-scripttest/Makefile (contents, props changed) head/devel/py-selection/Makefile (contents, props changed) head/devel/py-selectors34/Makefile (contents, props changed) head/devel/py-semantic_version/Makefile (contents, props changed) head/devel/py-setuptools-pkg/Makefile (contents, props changed) head/devel/py-setuptools/Makefile (contents, props changed) head/devel/py-simpy/Makefile (contents, props changed) head/devel/py-singledispatch/Makefile (contents, props changed) head/devel/py-six/Makefile (contents, props changed) head/devel/py-smmap2/Makefile (contents, props changed) head/devel/py-sortedcontainers/Makefile (contents, props changed) head/devel/py-sqlcc/Makefile (contents, props changed) head/devel/py-stackexchange/Makefile (contents, props changed) head/devel/py-stevedore/Makefile (contents, props changed) head/devel/py-strategies/Makefile (contents, props changed) head/devel/py-streamparse/Makefile (contents, props changed) head/devel/py-structlog/Makefile (contents, props changed) head/devel/py-stsci.distutils/Makefile (contents, props changed) head/devel/py-sure/Makefile (contents, props changed) head/devel/py-tables/Makefile (contents, props changed) head/devel/py-tarantool-queue/Makefile (contents, props changed) head/devel/py-taskflow/Makefile (contents, props changed) head/devel/py-tempora/Makefile (contents, props changed) head/devel/py-tempstorage/Makefile (contents, props changed) head/devel/py-tenacity/Makefile (contents, props changed) head/devel/py-testinfra/Makefile (contents, props changed) head/devel/py-testoob/Makefile (contents, props changed) head/devel/py-testpath/Makefile (contents, props changed) head/devel/py-testresources/Makefile (contents, props changed) head/devel/py-testscenarios/Makefile (contents, props changed) head/devel/py-testtools/Makefile (contents, props changed) head/devel/py-threema-msgapi/Makefile (contents, props changed) head/devel/py-tinyarray/Makefile (contents, props changed) head/devel/py-tinyrpc/Makefile (contents, props changed) head/devel/py-tooz/Makefile (contents, props changed) head/devel/py-traceback2/Makefile (contents, props changed) head/devel/py-traitlets/Makefile (contents, props changed) head/devel/py-transaction/Makefile (contents, props changed) head/devel/py-trollius/Makefile (contents, props changed) head/devel/py-tw.forms/Makefile (contents, props changed) head/devel/py-twext/Makefile (contents, props changed) head/devel/py-twiggy/Makefile (contents, props changed) head/devel/py-twilio/Makefile (contents, props changed) head/devel/py-twisted/Makefile (contents, props changed) head/devel/py-txaio/Makefile (contents, props changed) head/devel/py-tzlocal/Makefile (contents, props changed) head/devel/py-ua_parser/Makefile (contents, props changed) head/devel/py-unittest2/Makefile (contents, props changed) head/devel/py-unpaddedbase64/Makefile (contents, props changed) head/devel/py-update_checker/Makefile (contents, props changed) head/devel/py-urwidtrees/Makefile (contents, props changed) head/devel/py-user_agents/Makefile (contents, props changed) head/devel/py-validators/Makefile (contents, props changed) head/devel/py-vcrpy/Makefile (contents, props changed) head/devel/py-virtualenv/Makefile (contents, props changed) head/devel/py-virtualenvwrapper/Makefile (contents, props changed) head/devel/py-warlock/Makefile (contents, props changed) head/devel/py-watchdog/Makefile (contents, props changed) head/devel/py-weblib/Makefile (contents, props changed) head/devel/py-wheel/Makefile (contents, props changed) head/devel/py-widgetsnbextension/Makefile (contents, props changed) head/devel/py-wsme/Makefile (contents, props changed) head/devel/py-xarray/Makefile (contents, props changed) head/devel/py-xattr/Makefile (contents, props changed) head/devel/py-xcaplib/Makefile (contents, props changed) head/devel/py-xdis/Makefile (contents, props changed) head/devel/py-xmltodict/Makefile (contents, props changed) head/devel/py-xxhash/Makefile (contents, props changed) head/devel/py-yandex-money-sdk/Makefile (contents, props changed) head/devel/py-z3c.autoinclude/Makefile (contents, props changed) head/devel/py-z3c.batching/Makefile (contents, props changed) head/devel/py-z3c.caching/Makefile (contents, props changed) head/devel/py-z3c.form/Makefile (contents, props changed) head/devel/py-z3c.formwidget.query/Makefile (contents, props changed) head/devel/py-z3c.zcmlhook/Makefile (contents, props changed) head/devel/py-zExceptions/Makefile (contents, props changed) head/devel/py-zLOG/Makefile (contents, props changed) head/devel/py-zope.annotation/Makefile (contents, props changed) head/devel/py-zope.app.applicationcontrol/Makefile (contents, props changed) head/devel/py-zope.app.appsetup/Makefile (contents, props changed) head/devel/py-zope.app.basicskin/Makefile (contents, props changed) head/devel/py-zope.app.broken/Makefile (contents, props changed) head/devel/py-zope.app.cache/Makefile (contents, props changed) head/devel/py-zope.app.component/Makefile (contents, props changed) head/devel/py-zope.app.container/Makefile (contents, props changed) head/devel/py-zope.app.content/Makefile (contents, props changed) head/devel/py-zope.app.debug/Makefile (contents, props changed) head/devel/py-zope.app.dependable/Makefile (contents, props changed) head/devel/py-zope.app.error/Makefile (contents, props changed) head/devel/py-zope.app.exception/Makefile (contents, props changed) head/devel/py-zope.app.file/Makefile (contents, props changed) head/devel/py-zope.app.folder/Makefile (contents, props changed) head/devel/py-zope.app.form/Makefile (contents, props changed) head/devel/py-zope.app.generations/Makefile (contents, props changed) head/devel/py-zope.app.http/Makefile (contents, props changed) head/devel/py-zope.app.pagetemplate/Makefile (contents, props changed) head/devel/py-zope.app.publication/Makefile (contents, props changed) head/devel/py-zope.app.publisher/Makefile (contents, props changed) head/devel/py-zope.app.renderer/Makefile (contents, props changed) head/devel/py-zope.app.rotterdam/Makefile (contents, props changed) head/devel/py-zope.app.schema/Makefile (contents, props changed) head/devel/py-zope.app.testing/Makefile (contents, props changed) head/devel/py-zope.app.zcmlfiles/Makefile (contents, props changed) head/devel/py-zope.app.zopeappgenerations/Makefile (contents, props changed) head/devel/py-zope.applicationcontrol/Makefile (contents, props changed) head/devel/py-zope.broken/Makefile (contents, props changed) head/devel/py-zope.browser/Makefile (contents, props changed) head/devel/py-zope.browsermenu/Makefile (contents, props changed) head/devel/py-zope.browserpage/Makefile (contents, props changed) head/devel/py-zope.browserresource/Makefile (contents, props changed) head/devel/py-zope.component/Makefile (contents, props changed) head/devel/py-zope.componentvocabulary/Makefile (contents, props changed) head/devel/py-zope.configuration/Makefile (contents, props changed) head/devel/py-zope.container/Makefile (contents, props changed) head/devel/py-zope.contentprovider/Makefile (contents, props changed) head/devel/py-zope.copy/Makefile (contents, props changed) head/devel/py-zope.copypastemove/Makefile (contents, props changed) head/devel/py-zope.deferredimport/Makefile (contents, props changed) head/devel/py-zope.dublincore/Makefile (contents, props changed) head/devel/py-zope.error/Makefile (contents, props changed) head/devel/py-zope.exceptions/Makefile (contents, props changed) head/devel/py-zope.filerepresentation/Makefile (contents, props changed) head/devel/py-zope.formlib/Makefile (contents, props changed) head/devel/py-zope.generations/Makefile (contents, props changed) head/devel/py-zope.globalrequest/Makefile (contents, props changed) head/devel/py-zope.i18n/Makefile (contents, props changed) head/devel/py-zope.lifecycleevent/Makefile (contents, props changed) head/devel/py-zope.location/Makefile (contents, props changed) head/devel/py-zope.minmax/Makefile (contents, props changed) head/devel/py-zope.pagetemplate/Makefile (contents, props changed) head/devel/py-zope.processlifetime/Makefile (contents, props changed) head/devel/py-zope.ptresource/Makefile (contents, props changed) head/devel/py-zope.publisher/Makefile (contents, props changed) head/devel/py-zope.ramcache/Makefile (contents, props changed) head/devel/py-zope.schema/Makefile (contents, props changed) head/devel/py-zope.site/Makefile (contents, props changed) head/devel/py-zope.size/Makefile (contents, props changed) head/devel/py-zope.tales/Makefile (contents, props changed) head/devel/py-zope.testbrowser/Makefile (contents, props changed) head/devel/py-zope.testing/Makefile (contents, props changed) head/devel/py-zope.traversing/Makefile (contents, props changed) head/devel/py-zope.viewlet/Makefile (contents, props changed) head/devel/py_static_check/Makefile (contents, props changed) head/devel/pygobject3-common/Makefile (contents, props changed) head/devel/pylint/Makefile (contents, props changed) head/devel/qbzr/Makefile (contents, props changed) head/devel/rbtools/Makefile (contents, props changed) head/devel/renpy/Makefile (contents, props changed) head/devel/runsnakerun/Makefile (contents, props changed) head/devel/tortoisehg/Makefile (contents, props changed) head/dns/dnsviz/Makefile (contents, props changed) head/dns/py-cloudflare/Makefile (contents, props changed) head/dns/py-dns-lexicon/Makefile (contents, props changed) head/dns/py-dnspython/Makefile (contents, props changed) head/dns/py-easyzone/Makefile (contents, props changed) head/dns/py-idna_ssl/Makefile (contents, props changed) head/dns/py-namebench/Makefile (contents, props changed) head/dns/py-py3dns/Makefile (contents, props changed) head/dns/py-tld/Makefile (contents, props changed) head/dns/py-tldextract/Makefile (contents, props changed) head/dns/sshfp/Makefile (contents, props changed) head/editors/gwrite/Makefile (contents, props changed) head/editors/leo/Makefile (contents, props changed) head/editors/py-room/Makefile (contents, props changed) head/emulators/dynagen/Makefile (contents, props changed) head/emulators/gns3/Makefile (contents, props changed) head/emulators/py-nova/Makefile (contents, props changed) head/finance/electrum/Makefile (contents, props changed) head/finance/py-python-obelisk/Makefile (contents, props changed) head/finance/py-stripe/Makefile (contents, props changed) head/finance/py-vatnumber/Makefile (contents, props changed) head/finance/sabernetdcs-client/Makefile (contents, props changed) head/finance/tryton28/Makefile (contents, props changed) head/finance/trytond28/Makefile (contents, props changed) head/finance/trytond28_account/Makefile (contents, props changed) head/finance/trytond28_calendar/Makefile (contents, props changed) head/finance/trytond28_ldap_connection/Makefile (contents, props changed) head/finance/trytond28_party/Makefile (contents, props changed) head/finance/trytond28_party_vcarddav/Makefile (contents, props changed) head/finance/trytond28_stock_forecast/Makefile (contents, props changed) head/ftp/py-pyftpdlib/Makefile (contents, props changed) head/ftp/py-sftp/Makefile (contents, props changed) head/games/balazar/Makefile (contents, props changed) head/games/glchess/Makefile (contents, props changed) head/games/hypatia_engine/Makefile (contents, props changed) head/games/poker-engine/Makefile (contents, props changed) head/games/py-sgfsummary/Makefile (contents, props changed) head/games/pythonsudoku/Makefile (contents, props changed) head/games/slune/Makefile (contents, props changed) head/games/unknown-horizons/Makefile (contents, props changed) head/graphics/caffe/Makefile (contents, props changed) head/graphics/imgtops/Makefile (contents, props changed) head/graphics/py-PyOpenGL/Makefile (contents, props changed) head/graphics/py-actdiag/Makefile (contents, props changed) head/graphics/py-blockdiag/Makefile (contents, props changed) head/graphics/py-blockdiagcontrib-cisco/Makefile (contents, props changed) head/graphics/py-cairocffi/Makefile (contents, props changed) head/graphics/py-cartopy/Makefile (contents, props changed) head/graphics/py-gdal/Makefile (contents, props changed) head/graphics/py-gizeh/Makefile (contents, props changed) head/graphics/py-glewpy/Makefile (contents, props changed) head/graphics/py-graphviz/Makefile (contents, props changed) head/graphics/py-imageio/Makefile (contents, props changed) head/graphics/py-imgurpython/Makefile (contents, props changed) head/graphics/py-leather/Makefile (contents, props changed) head/graphics/py-mcomix/Makefile (contents, props changed) head/graphics/py-nwdiag/Makefile (contents, props changed) head/graphics/py-photocollage/Makefile (contents, props changed) head/graphics/py-pillow/Makefile (contents, props changed) head/graphics/py-plotly/Makefile (contents, props changed) head/graphics/py-pycha/Makefile (contents, props changed) head/graphics/py-pycollada/Makefile (contents, props changed) head/graphics/py-pydot/Makefile (contents, props changed) head/graphics/py-pygal/Makefile (contents, props changed) head/graphics/py-pygraphviz/Makefile (contents, props changed) head/graphics/py-sane/Makefile (contents, props changed) head/graphics/py-scikit-image/Makefile (contents, props changed) head/graphics/py-seqdiag/Makefile (contents, props changed) head/graphics/py-sk1/Makefile (contents, props changed) head/graphics/py-soya3d/Makefile (contents, props changed) head/graphics/py-stltools/Makefile (contents, props changed) head/graphics/py-toyplot/Makefile (contents, props changed) head/graphics/py-traitsui/Makefile (contents, props changed) head/graphics/tilecache/Makefile (contents, props changed) head/graphics/uniconvertor/Makefile (contents, props changed) head/graphics/uniconvw/Makefile (contents, props changed) head/graphics/variety/Makefile (contents, props changed) head/irc/py-fishcrypt/Makefile (contents, props changed) head/irc/py-irc/Makefile (contents, props changed) head/irc/py-limnoria/Makefile (contents, props changed) head/japanese/py-tegaki-gtk/Makefile (contents, props changed) head/japanese/py-tegaki/Makefile (contents, props changed) head/japanese/tegaki-recognize/Makefile (contents, props changed) head/lang/cdent/Makefile (contents, props changed) head/lang/py-hy/Makefile (contents, props changed) head/mail/courier-pythonfilter/Makefile (contents, props changed) head/mail/isbg/Makefile (contents, props changed) head/mail/mailpile/Makefile (contents, props changed) head/mail/postfix-policyd-spf-python/Makefile (contents, props changed) head/mail/py-Products.MailHost/Makefile (contents, props changed) head/mail/py-alot/Makefile (contents, props changed) head/mail/py-apolicy/Makefile (contents, props changed) head/mail/py-dkimpy/Makefile (contents, props changed) head/mail/py-flask-mail/Makefile (contents, props changed) head/mail/py-flufl.bounce/Makefile (contents, props changed) head/mail/py-fuglu/Makefile (contents, props changed) head/mail/py-ppolicy/Makefile (contents, props changed) head/mail/py-premailer/Makefile (contents, props changed) head/mail/py-pyspf/Makefile (contents, props changed) head/mail/py-spambayes/Makefile (contents, props changed) head/mail/py-zope.sendmail/Makefile (contents, props changed) head/mail/pyzor/Makefile (contents, props changed) head/mail/rss2email3/Makefile (contents, props changed) head/mail/svnmailer/Makefile (contents, props changed) head/math/gracetmpl/Makefile (contents, props changed) head/math/py-Diofant/Makefile (contents, props changed) head/math/py-GridDataFormats/Makefile (contents, props changed) head/math/py-PyMetis/Makefile (contents, props changed) head/math/py-PyWavelets/Makefile (contents, props changed) head/math/py-Pyomo/Makefile (contents, props changed) head/math/py-apgl/Makefile (contents, props changed) head/math/py-basemap/Makefile (contents, props changed) head/math/py-bitmath/Makefile (contents, props changed) head/math/py-bottleneck/Makefile (contents, props changed) head/math/py-colormath/Makefile (contents, props changed) head/math/py-cyipopt/Makefile (contents, props changed) head/math/py-fastcluster/Makefile (contents, props changed) head/math/py-fiat/Makefile (contents, props changed) head/math/py-gato/Makefile (contents, props changed) head/math/py-keras/Makefile (contents, props changed) head/math/py-levmar/Makefile (contents, props changed) head/math/py-luminol/Makefile (contents, props changed) head/math/py-mathdom/Makefile (contents, props changed) head/math/py-matplotlib/Makefile (contents, props changed) head/math/py-mpmath/Makefile (contents, props changed) head/math/py-networkx/Makefile (contents, props changed) head/math/py-numexpr/Makefile (contents, props changed) head/math/py-numpy/Makefile (contents, props changed) head/math/py-pandas/Makefile (contents, props changed) head/math/py-patsy/Makefile (contents, props changed) head/math/py-plastex/Makefile (contents, props changed) head/math/py-pybloom/Makefile (contents, props changed) head/math/py-pymc/Makefile (contents, props changed) head/math/py-pymc3/Makefile (contents, props changed) head/math/py-pyneqsys/Makefile (contents, props changed) head/math/py-pyodesys/Makefile (contents, props changed) head/math/py-pysparse/Makefile (contents, props changed) head/math/py-pysym/Makefile (contents, props changed) head/math/py-scikit-umfpack/Makefile (contents, props changed) head/math/py-secp256k1/Makefile (contents, props changed) head/math/py-statsmodels/Makefile (contents, props changed) head/math/py-sympy/Makefile (contents, props changed) head/math/py-theano/Makefile (contents, props changed) head/math/py-yt/Makefile (contents, props changed) head/misc/py-PyUserInput/Makefile (contents, props changed) head/misc/py-cinder/Makefile (contents, props changed) head/misc/py-crudini/Makefile (contents, props changed) head/misc/py-fuzzy/Makefile (contents, props changed) head/misc/py-glance/Makefile (contents, props changed) head/misc/py-orange3-datafusion/Makefile (contents, props changed) head/misc/py-orange3-network/Makefile (contents, props changed) head/misc/py-orange3-timeseries/Makefile (contents, props changed) head/misc/py-osd/Makefile (contents, props changed) head/misc/py-pexpect/Makefile (contents, props changed) head/misc/py-progressbar2/Makefile (contents, props changed) head/misc/py-pyprind/Makefile (contents, props changed) head/misc/py-python-utils/Makefile (contents, props changed) head/misc/py-scikit-fusion/Makefile (contents, props changed) head/misc/py-serverfiles/Makefile (contents, props changed) head/misc/py-soapy_power/Makefile (contents, props changed) head/misc/py-socli/Makefile (contents, props changed) head/misc/py-spdx-lookup/Makefile (contents, props changed) head/misc/pylize/Makefile (contents, props changed) head/multimedia/freevo/Makefile (contents, props changed) head/multimedia/gaupol/Makefile (contents, props changed) head/multimedia/livestreamer/Makefile (contents, props changed) head/multimedia/miro/Makefile (contents, props changed) head/multimedia/mps-youtube/Makefile (contents, props changed) head/multimedia/openshot/Makefile (contents, props changed) head/multimedia/photofilmstrip/Makefile (contents, props changed) head/multimedia/py-gstreamer/Makefile (contents, props changed) head/multimedia/py-guessit/Makefile (contents, props changed) head/multimedia/py-kaa-base/Makefile (contents, props changed) head/multimedia/py-kaa-imlib2/Makefile (contents, props changed) head/multimedia/py-kaa-metadata/Makefile (contents, props changed) head/multimedia/py-librtmp/Makefile (contents, props changed) head/multimedia/py-moviepy/Makefile (contents, props changed) head/multimedia/py-openlp/Makefile (contents, props changed) head/multimedia/py-periscope/Makefile (contents, props changed) head/multimedia/py-pretty_midi/Makefile (contents, props changed) head/multimedia/py-soco/Makefile (contents, props changed) head/multimedia/py-subliminal/Makefile (contents, props changed) head/multimedia/py-tvnamer/Makefile (contents, props changed) head/multimedia/quodlibet/Makefile (contents, props changed) head/multimedia/tovid/Makefile (contents, props changed) head/net-im/fugu/Makefile (contents, props changed) head/net-im/papyon/Makefile (contents, props changed) head/net-im/poezio/Makefile (contents, props changed) head/net-im/proxy65/Makefile (contents, props changed) head/net-im/py-fbmq/Makefile (contents, props changed) head/net-im/py-jabberbot/Makefile (contents, props changed) head/net-im/py-libturpial/Makefile (contents, props changed) head/net-im/py-matrix-synapse/Makefile (contents, props changed) head/net-im/py-nbxmpp/Makefile (contents, props changed) head/net-im/py-punjab/Makefile (contents, props changed) head/net-im/py-python-telegram-bot/Makefile (contents, props changed) head/net-im/py-slackclient/Makefile (contents, props changed) head/net-im/py-sleekxmpp/Makefile (contents, props changed) head/net-im/py-telepot/Makefile (contents, props changed) head/net-im/py-unmessage/Makefile (contents, props changed) head/net-im/py-xmpppy-irc/Makefile (contents, props changed) head/net-im/py-xmpppy/Makefile (contents, props changed) head/net-im/toot/Makefile (contents, props changed) head/net-im/turpial/Makefile (contents, props changed) head/net-mgmt/nagstamon/Makefile (contents, props changed) head/net-mgmt/onionlauncher/Makefile (contents, props changed) head/net-mgmt/py-adal/Makefile (contents, props changed) head/net-mgmt/py-dnsdiag/Makefile (contents, props changed) head/net-mgmt/py-junos-eznc/Makefile (contents, props changed) head/net-mgmt/py-msrest/Makefile (contents, props changed) head/net-mgmt/py-msrestazure/Makefile (contents, props changed) head/net-mgmt/py-napalm/Makefile (contents, props changed) head/net-mgmt/py-ncclient/Makefile (contents, props changed) head/net-mgmt/py-prometheus-client/Makefile (contents, props changed) head/net-mgmt/py-pyeapi/Makefile (contents, props changed) head/net-mgmt/py-pynsca/Makefile (contents, props changed) head/net-mgmt/py-pynxos/Makefile (contents, props changed) head/net-mgmt/py-pysmi/Makefile (contents, props changed) head/net-mgmt/py-pyzabbix/Makefile (contents, props changed) head/net-mgmt/py-snmp4-apps/Makefile (contents, props changed) head/net-mgmt/py-snmp4-mibs/Makefile (contents, props changed) head/net-mgmt/py-snmp4/Makefile (contents, props changed) head/net-mgmt/tornova/Makefile (contents, props changed) head/net-p2p/deluge-cli/Makefile (contents, props changed) head/net-p2p/py-transmissionrpc/Makefile (contents, props changed) head/net-p2p/py-vertex/Makefile (contents, props changed) head/net/cloud-init-azure/Makefile (contents, props changed) head/net/cloud-init/Makefile (contents, props changed) head/net/googlecl/Makefile (contents, props changed) head/net/nsscache/Makefile (contents, props changed) head/net/pdb/Makefile (contents, props changed) head/net/py-GeoIP2/Makefile (contents, props changed) head/net/py-amqp/Makefile (contents, props changed) head/net/py-avahi/Makefile (contents, props changed) head/net/py-beanstalkc/Makefile (contents, props changed) head/net/py-cjdns/Makefile (contents, props changed) head/net/py-cloudflare-scrape/Makefile (contents, props changed) head/net/py-coherence/Makefile (contents, props changed) head/net/py-ec2-cli-tools/Makefile (contents, props changed) head/net/py-eventlet/Makefile (contents, props changed) head/net/py-flask-xml-rpc/Makefile (contents, props changed) head/net/py-gntp/Makefile (contents, props changed) head/net/py-gspread/Makefile (contents, props changed) head/net/py-gspreadsheet/Makefile (contents, props changed) head/net/py-haproxyctl/Makefile (contents, props changed) head/net/py-impacket/Makefile (contents, props changed) head/net/py-kombu/Makefile (contents, props changed) head/net/py-ldap/Makefile (contents, props changed) head/net/py-ldap3/Makefile (contents, props changed) head/net/py-ldaptor/Makefile (contents, props changed) head/net/py-libcloud/Makefile (contents, props changed) head/net/py-libfte/Makefile (contents, props changed) head/net/py-magic-wormhole/Makefile (contents, props changed) head/net/py-matrix-synapse-ldap3/Makefile (contents, props changed) head/net/py-maxminddb/Makefile (contents, props changed) head/net/py-msrplib/Makefile (contents, props changed) head/net/py-ndg_httpsclient/Makefile (contents, props changed) head/net/py-netaddr/Makefile (contents, props changed) head/net/py-netif/Makefile (contents, props changed) head/net/py-netlib/Makefile (contents, props changed) head/net/py-nnpy/Makefile (contents, props changed) head/net/py-oauth2/Makefile (contents, props changed) head/net/py-port-for/Makefile (contents, props changed) head/net/py-portend/Makefile (contents, props changed) head/net/py-pynsq/Makefile (contents, props changed) head/net/py-pyshark/Makefile (contents, props changed) head/net/py-pysmb/Makefile (contents, props changed) head/net/py-python-barbicanclient/Makefile (contents, props changed) head/net/py-python-ceilometerclient/Makefile (contents, props changed) head/net/py-python-cinderclient/Makefile (contents, props changed) head/net/py-python-designateclient/Makefile (contents, props changed) head/net/py-python-glanceclient/Makefile (contents, props changed) head/net/py-python-heatclient/Makefile (contents, props changed) head/net/py-python-keystoneclient/Makefile (contents, props changed) head/net/py-python-neutronclient/Makefile (contents, props changed) head/net/py-python-novaclient/Makefile (contents, props changed) head/net/py-python-openstackclient/Makefile (contents, props changed) head/net/py-pyvmomi/Makefile (contents, props changed) head/net/py-pyzmq/Makefile (contents, props changed) head/net/py-rabbitpy/Makefile (contents, props changed) head/net/py-rainbowstream/Makefile (contents, props changed) head/net/py-ripe.atlas.cousteau/Makefile (contents, props changed) head/net/py-ripe.atlas.sagan/Makefile (contents, props changed) head/net/py-ripe.atlas.tools/Makefile (contents, props changed) head/net/py-s3cmd/Makefile (contents, props changed) head/net/py-s3transfer/Makefile (contents, props changed) head/net/py-shodan/Makefile (contents, props changed) head/net/py-smart_open/Makefile (contents, props changed) head/net/py-soappy/Makefile (contents, props changed) head/net/py-socketio-client/Makefile (contents, props changed) head/net/py-softlayer/Makefile (contents, props changed) head/net/py-sshuttle/Makefile (contents, props changed) head/net/py-stomp.py/Makefile (contents, props changed) head/net/py-terminado/Makefile (contents, props changed) head/net/py-tofu/Makefile (contents, props changed) head/net/py-tweepy/Makefile (contents, props changed) head/net/py-twitter-tools/Makefile (contents, props changed) head/net/py-txamqp/Makefile (contents, props changed) head/net/py-upnp-inspector/Makefile (contents, props changed) head/net/py-urllib3/Makefile (contents, props changed) head/net/py-wmi-query/Makefile (contents, props changed) head/net/py-wolframalpha/Makefile (contents, props changed) head/net/py-zeroconf/Makefile (contents, props changed) head/net/py-zope.proxy/Makefile (contents, props changed) head/net/pythondirector/Makefile (contents, props changed) head/net/s3ql/Makefile (contents, props changed) head/net/scapy/Makefile (contents, props changed) head/net/sippy_b2bua/Makefile (contents, props changed) head/net/splatd/Makefile (contents, props changed) head/net/tcpwatch/Makefile (contents, props changed) head/net/turses/Makefile (contents, props changed) head/news/hellanzb/Makefile (contents, props changed) head/news/py-pynzb/Makefile (contents, props changed) head/news/rawdog/Makefile (contents, props changed) head/ports-mgmt/py-pytoport/Makefile (contents, props changed) head/print/cloudprint/Makefile (contents, props changed) head/print/dot2tex/Makefile (contents, props changed) head/print/frescobaldi/Makefile (contents, props changed) head/print/pkpgcounter/Makefile (contents, props changed) head/print/py-pollyreports/Makefile (contents, props changed) head/print/py-relatorio/Makefile (contents, props changed) head/print/py-reportlab/Makefile (contents, props changed) head/print/py-stapler/Makefile (contents, props changed) head/print/py-trml2pdf/Makefile (contents, props changed) head/print/ttfquery/Makefile (contents, props changed) head/science/brian/Makefile (contents, props changed) head/science/psychopy/Makefile (contents, props changed) head/science/py-MDAnalysis/Makefile (contents, props changed) head/science/py-MDAnalysisTests/Makefile (contents, props changed) head/science/py-OpenFermion/Makefile (contents, props changed) head/science/py-cdo/Makefile (contents, props changed) head/science/py-h5py/Makefile (contents, props changed) head/science/py-hcluster/Makefile (contents, props changed) head/science/py-mdp/Makefile (contents, props changed) head/science/py-mmtf-python/Makefile (contents, props changed) head/science/py-obspy/Makefile (contents, props changed) head/science/py-openpiv/Makefile (contents, props changed) head/science/py-paida/Makefile (contents, props changed) head/science/py-pymatgen/Makefile (contents, props changed) head/science/py-pymol/Makefile (contents, props changed) head/science/py-pyosf/Makefile (contents, props changed) head/science/py-pysal/Makefile (contents, props changed) head/science/py-pyteomics/Makefile (contents, props changed) head/science/py-scikit-fuzzy/Makefile (contents, props changed) head/science/py-scikit-learn/Makefile (contents, props changed) head/science/py-scikit-sparse/Makefile (contents, props changed) head/science/py-scimath/Makefile (contents, props changed) head/science/py-scoria/Makefile (contents, props changed) head/science/py-tensorflow/Makefile (contents, props changed) head/science/pybrain/Makefile (contents, props changed) head/security/gpgme/Makefile (contents, props changed) head/security/kedpm/Makefile (contents, props changed) head/security/nyx/Makefile (contents, props changed) head/security/pwman3/Makefile (contents, props changed) head/security/py-AccessControl/Makefile (contents, props changed) head/security/py-Products.PlonePAS/Makefile (contents, props changed) head/security/py-Products.PluggableAuthService/Makefile (contents, props changed) head/security/py-SecretStorage/Makefile (contents, props changed) head/security/py-YubiOTP/Makefile (contents, props changed) head/security/py-artifacts/Makefile (contents, props changed) head/security/py-asyncssh/Makefile (contents, props changed) head/security/py-backports.ssl_match_hostname/Makefile (contents, props changed) head/security/py-bcrypt/Makefile (contents, props changed) head/security/py-borg.localrole/Makefile (contents, props changed) head/security/py-btchip-python/Makefile (contents, props changed) head/security/py-certbot-nginx/Makefile (contents, props changed) head/security/py-cryptography/Makefile (contents, props changed) head/security/py-cybox/Makefile (contents, props changed) head/security/py-docker-pycreds/Makefile (contents, props changed) head/security/py-fail2ban/Makefile (contents, props changed) head/security/py-first-server/Makefile (contents, props changed) head/security/py-flask-httpauth/Makefile (contents, props changed) head/security/py-flask-kerberos/Makefile (contents, props changed) head/security/py-flask-saml/Makefile (contents, props changed) head/security/py-gixy/Makefile (contents, props changed) head/security/py-gnupg/Makefile (contents, props changed) head/security/py-google-auth/Makefile (contents, props changed) head/security/py-gpsoauth/Makefile (contents, props changed) head/security/py-itsdangerous/Makefile (contents, props changed) head/security/py-josepy/Makefile (contents, props changed) head/security/py-keyczar/Makefile (contents, props changed) head/security/py-keyring/Makefile (contents, props changed) head/security/py-keyrings.alt/Makefile (contents, props changed) head/security/py-keystone/Makefile (contents, props changed) head/security/py-m2crypto/Makefile (contents, props changed) head/security/py-maec/Makefile (contents, props changed) head/security/py-mixbox/Makefile (contents, props changed) head/security/py-mnemonic/Makefile (contents, props changed) head/security/py-netmiko/Makefile (contents, props changed) head/security/py-oauth2client/Makefile (contents, props changed) head/security/py-oauthlib/Makefile (contents, props changed) head/security/py-obfsproxy-tor/Makefile (contents, props changed) head/security/py-openssl/Makefile (contents, props changed) head/security/py-paramiko/Makefile (contents, props changed) head/security/py-paramiko1/Makefile (contents, props changed) head/security/py-passlib/Makefile (contents, props changed) head/security/py-plone.app.openid/Makefile (contents, props changed) head/security/py-plone.keyring/Makefile (contents, props changed) head/security/py-plone.openid/Makefile (contents, props changed) head/security/py-plone.protect/Makefile (contents, props changed) head/security/py-plone.session/Makefile (contents, props changed) head/security/py-potr/Makefile (contents, props changed) head/security/py-pyaxo/Makefile (contents, props changed) head/security/py-pycryptopp/Makefile (contents, props changed) head/security/py-pyelliptic/Makefile (contents, props changed) head/security/py-pymacaroons-pynacl/Makefile (contents, props changed) head/security/py-pynacl/Makefile (contents, props changed) head/security/py-pysaml2/Makefile (contents, props changed) head/security/py-python-social-auth/Makefile (contents, props changed) head/security/py-python3-openid/Makefile (contents, props changed) head/security/py-pywinrm/Makefile (contents, props changed) head/security/py-requests-credssp/Makefile (contents, props changed) head/security/py-requests-kerberos/Makefile (contents, props changed) head/security/py-rsa/Makefile (contents, props changed) head/security/py-scp/Makefile (contents, props changed) head/security/py-service_identity/Makefile (contents, props changed) head/security/py-signedjson/Makefile (contents, props changed) head/security/py-ssh/Makefile (contents, props changed) head/security/py-sslstrip/Makefile (contents, props changed) head/security/py-stem/Makefile (contents, props changed) head/security/py-stix/Makefile (contents, props changed) head/security/py-trezor/Makefile (contents, props changed) head/security/py-tuf/Makefile (contents, props changed) head/security/py-txtorcon/Makefile (contents, props changed) head/security/py-volatility/Makefile (contents, props changed) head/security/py-vulndb/Makefile (contents, props changed) head/security/py-yubikey-manager/Makefile (contents, props changed) head/security/py-yubioath-desktop/Makefile (contents, props changed) head/security/py-zope.app.authentication/Makefile (contents, props changed) head/security/py-zope.app.localpermission/Makefile (contents, props changed) head/security/py-zope.app.principalannotation/Makefile (contents, props changed) head/security/py-zope.app.security/Makefile (contents, props changed) head/security/py-zope.app.securitypolicy/Makefile (contents, props changed) head/security/py-zope.authentication/Makefile (contents, props changed) head/security/py-zope.login/Makefile (contents, props changed) head/security/py-zope.password/Makefile (contents, props changed) head/security/py-zope.pluggableauth/Makefile (contents, props changed) head/security/py-zope.principalannotation/Makefile (contents, props changed) head/security/py-zope.principalregistry/Makefile (contents, props changed) head/security/py-zope.security/Makefile (contents, props changed) head/security/py-zope.securitypolicy/Makefile (contents, props changed) head/security/py-zope.session/Makefile (contents, props changed) head/security/umit/Makefile (contents, props changed) head/security/vinetto/Makefile (contents, props changed) head/security/w3af/Makefile (contents, props changed) head/security/wapiti/Makefile (contents, props changed) head/security/yubikey-piv-manager/Makefile (contents, props changed) head/security/zenmap/Makefile (contents, props changed) head/shells/xonsh/Makefile (contents, props changed) head/sysutils/azure-agent/Makefile (contents, props changed) head/sysutils/bsdploy/Makefile (contents, props changed) head/sysutils/catfish/Makefile (contents, props changed) head/sysutils/createrepo/Makefile (contents, props changed) head/sysutils/docker-compose/Makefile (contents, props changed) head/sysutils/duplicity/Makefile (contents, props changed) head/sysutils/farbot/Makefile (contents, props changed) head/sysutils/fusefs-gitfs/Makefile (contents, props changed) head/sysutils/fusefs-wikipediafs/Makefile (contents, props changed) head/sysutils/hachoir-urwid/Makefile (contents, props changed) head/sysutils/jadm/Makefile (contents, props changed) head/sysutils/mog/Makefile (contents, props changed) head/sysutils/ohmu/Makefile (contents, props changed) head/sysutils/py-bcfg2/Makefile (contents, props changed) head/sysutils/py-cdmi/Makefile (contents, props changed) head/sysutils/py-consul/Makefile (contents, props changed) head/sysutils/py-croniter/Makefile (contents, props changed) head/sysutils/py-crontab/Makefile (contents, props changed) head/sysutils/py-diffoscope/Makefile (contents, props changed) head/sysutils/py-dlipower/Makefile (contents, props changed) head/sysutils/py-docker/Makefile (contents, props changed) head/sysutils/py-execnet/Makefile (contents, props changed) head/sysutils/py-ezjailremote/Makefile (contents, props changed) head/sysutils/py-freenas.cli/Makefile (contents, props changed) head/sysutils/py-glances/Makefile (contents, props changed) head/sysutils/py-gmailfs-fuse/Makefile (contents, props changed) head/sysutils/py-google-compute-engine/Makefile (contents, props changed) head/sysutils/py-halite/Makefile (contents, props changed) head/sysutils/py-honcho/Makefile (contents, props changed) head/sysutils/py-mqttwarn/Makefile (contents, props changed) head/sysutils/py-ploy/Makefile (contents, props changed) head/sysutils/py-ploy_ansible/Makefile (contents, props changed) head/sysutils/py-ploy_ec2/Makefile (contents, props changed) head/sysutils/py-ploy_ezjail/Makefile (contents, props changed) head/sysutils/py-ploy_fabric/Makefile (contents, props changed) head/sysutils/py-plumbum/Makefile (contents, props changed) head/sysutils/py-psutil/Makefile (contents, props changed) head/sysutils/py-salt/Makefile (contents, props changed) head/sysutils/py-shutilwhich/Makefile (contents, props changed) head/sysutils/py-superlance/Makefile (contents, props changed) head/sysutils/py-supervisor/Makefile (contents, props changed) head/sysutils/py-tmuxp/Makefile (contents, props changed) head/sysutils/py-zdaemon/Makefile (contents, props changed) head/sysutils/yum/Makefile (contents, props changed) head/textproc/archmage/Makefile (contents, props changed) head/textproc/plover/Makefile (contents, props changed) head/textproc/pootle/Makefile (contents, props changed) head/textproc/py-CommonMark/Makefile (contents, props changed) head/textproc/py-agate-dbf/Makefile (contents, props changed) head/textproc/py-agate-excel/Makefile (contents, props changed) head/textproc/py-agate/Makefile (contents, props changed) head/textproc/py-autopep8/Makefile (contents, props changed) head/textproc/py-awesome-slugify/Makefile (contents, props changed) head/textproc/py-bibtexparser/Makefile (contents, props changed) head/textproc/py-chardet/Makefile (contents, props changed) head/textproc/py-citeproc-py-styles/Makefile (contents, props changed) head/textproc/py-citeproc-py/Makefile (contents, props changed) head/textproc/py-cloud_sptheme/Makefile (contents, props changed) head/textproc/py-creole/Makefile (contents, props changed) head/textproc/py-csvkit/Makefile (contents, props changed) head/textproc/py-docutils/Makefile (contents, props changed) head/textproc/py-duecredit/Makefile (contents, props changed) head/textproc/py-elasticsearch-async/Makefile (contents, props changed) head/textproc/py-elasticsearch-dsl/Makefile (contents, props changed) head/textproc/py-elasticsearch/Makefile (contents, props changed) head/textproc/py-elasticsearch5/Makefile (contents, props changed) head/textproc/py-genshi/Makefile (contents, props changed) head/textproc/py-gensim/Makefile (contents, props changed) head/textproc/py-humanfriendly/Makefile (contents, props changed) head/textproc/py-m2r/Makefile (contents, props changed) head/textproc/py-mako/Makefile (contents, props changed) head/textproc/py-markdown/Makefile (contents, props changed) head/textproc/py-mistune/Makefile (contents, props changed) head/textproc/py-mkdocs-nature/Makefile (contents, props changed) head/textproc/py-mkdocs/Makefile (contents, props changed) head/textproc/py-nltk/Makefile (contents, props changed) head/textproc/py-numpydoc/Makefile (contents, props changed) head/textproc/py-openpyxl/Makefile (contents, props changed) head/textproc/py-orange3-text/Makefile (contents, props changed) head/textproc/py-paragrep/Makefile (contents, props changed) head/textproc/py-parsel/Makefile (contents, props changed) head/textproc/py-parsimonious/Makefile (contents, props changed) head/textproc/py-parso/Makefile (contents, props changed) head/textproc/py-pdfminer3k/Makefile (contents, props changed) head/textproc/py-pyes/Makefile (contents, props changed) head/textproc/py-pyhamcrest/Makefile (contents, props changed) head/textproc/py-pyhwp/Makefile (contents, props changed) head/textproc/py-pyscss/Makefile (contents, props changed) head/textproc/py-pysrt/Makefile (contents, props changed) head/textproc/py-python-augeas/Makefile (contents, props changed) head/textproc/py-python-docx/Makefile (contents, props changed) head/textproc/py-python-slugify/Makefile (contents, props changed) head/textproc/py-qrcode/Makefile (contents, props changed) head/textproc/py-rdflib/Makefile (contents, props changed) head/textproc/py-rnc2rng/Makefile (contents, props changed) head/textproc/py-rstyoutube/Makefile (contents, props changed) head/textproc/py-scour/Makefile (contents, props changed) head/textproc/py-snowballstemmer/Makefile (contents, props changed) head/textproc/py-sphinx-hieroglyph/Makefile (contents, props changed) head/textproc/py-sphinx-intl/Makefile (contents, props changed) head/textproc/py-sphinx/Makefile (contents, props changed) head/textproc/py-sphinx_numfig/Makefile (contents, props changed) head/textproc/py-sphinx_wikipedia/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-adadomain/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-bitbucket/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-fulltoc/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-httpdomain/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-programoutput/Makefile (contents, props changed) head/textproc/py-texttable/Makefile (contents, props changed) head/textproc/py-toronado/Makefile (contents, props changed) head/textproc/py-transifex-client/Makefile (contents, props changed) head/textproc/py-wicked/Makefile (contents, props changed) head/textproc/py-wstools/Makefile (contents, props changed) head/textproc/py-wtforms/Makefile (contents, props changed) head/textproc/py-xlutils/Makefile (contents, props changed) head/textproc/py-zope.app.i18n/Makefile (contents, props changed) head/textproc/py-zope.app.locales/Makefile (contents, props changed) head/textproc/py-zope.tal/Makefile (contents, props changed) head/textproc/translate-toolkit/Makefile (contents, props changed) head/textproc/xml2rfc/Makefile (contents, props changed) head/textproc/xsv/Makefile (contents, props changed) head/www/butterfly/Makefile (contents, props changed) head/www/calendarserver/Makefile (contents, props changed) head/www/feedjack/Makefile (contents, props changed) head/www/geeknote/Makefile (contents, props changed) head/www/jtoolkit/Makefile (contents, props changed) head/www/linkchecker/Makefile (contents, props changed) head/www/mitmproxy/Makefile (contents, props changed) head/www/plone/Makefile (contents, props changed) head/www/py-MechanicalSoup/Makefile (contents, props changed) head/www/py-Products.CMFPlone/Makefile (contents, props changed) head/www/py-Products.PloneLDAP/Makefile (contents, props changed) head/www/py-Products.TinyMCE/Makefile (contents, props changed) head/www/py-WebError/Makefile (contents, props changed) head/www/py-WebTest/Makefile (contents, props changed) head/www/py-aiohttp-wsgi/Makefile (contents, props changed) head/www/py-aiohttp/Makefile (contents, props changed) head/www/py-arxiv/Makefile (contents, props changed) head/www/py-autobahn/Makefile (contents, props changed) head/www/py-aws-requests-auth/Makefile (contents, props changed) head/www/py-azure-storage/Makefile (contents, props changed) head/www/py-beaker/Makefile (contents, props changed) head/www/py-bleach/Makefile (contents, props changed) head/www/py-blogofile/Makefile (contents, props changed) head/www/py-bokeh/Makefile (contents, props changed) head/www/py-boto3/Makefile (contents, props changed) head/www/py-bottle-cork/Makefile (contents, props changed) head/www/py-branca/Makefile (contents, props changed) head/www/py-buku/Makefile (contents, props changed) head/www/py-cachecontrol/Makefile (contents, props changed) head/www/py-caldav/Makefile (contents, props changed) head/www/py-cheroot/Makefile (contents, props changed) head/www/py-cherrypy/Makefile (contents, props changed) head/www/py-collective.easytemplate/Makefile (contents, props changed) head/www/py-collective.templateengines/Makefile (contents, props changed) head/www/py-cookies/Makefile (contents, props changed) head/www/py-ddgr/Makefile (contents, props changed) head/www/py-django-allauth/Makefile (contents, props changed) head/www/py-django-appconf/Makefile (contents, props changed) head/www/py-django-appmedia/Makefile (contents, props changed) head/www/py-django-assets/Makefile (contents, props changed) head/www/py-django-babel/Makefile (contents, props changed) head/www/py-django-bitfield/Makefile (contents, props changed) head/www/py-django-bootstrap-form/Makefile (contents, props changed) head/www/py-django-braces/Makefile (contents, props changed) head/www/py-django-bulk-update/Makefile (contents, props changed) head/www/py-django-caching-app-plugins/Makefile (contents, props changed) head/www/py-django-contact-form/Makefile (contents, props changed) head/www/py-django-contrib-comments/Makefile (contents, props changed) head/www/py-django-crispy-forms/Makefile (contents, props changed) head/www/py-django-datetime-widget/Makefile (contents, props changed) head/www/py-django-debug-toolbar/Makefile (contents, props changed) head/www/py-django-evolution/Makefile (contents, props changed) head/www/py-django-extensions/Makefile (contents, props changed) head/www/py-django-guardian/Makefile (contents, props changed) head/www/py-django-happenings/Makefile (contents, props changed) head/www/py-django-hijack/Makefile (contents, props changed) head/www/py-django-htmlmin/Makefile (contents, props changed) head/www/py-django-js-asset/Makefile (contents, props changed) head/www/py-django-json-rpc/Makefile (contents, props changed) head/www/py-django-jsonfield2/Makefile (contents, props changed) head/www/py-django-keyedcache/Makefile (contents, props changed) head/www/py-django-livesettings/Makefile (contents, props changed) head/www/py-django-mezzanine/Makefile (contents, props changed) head/www/py-django-model-utils/Makefile (contents, props changed) head/www/py-django-mptt/Makefile (contents, props changed) head/www/py-django-netfields/Makefile (contents, props changed) head/www/py-django-otp-yubikey/Makefile (contents, props changed) head/www/py-django-overextends/Makefile (contents, props changed) head/www/py-django-paging/Makefile (contents, props changed) head/www/py-django-photologue/Makefile (contents, props changed) head/www/py-django-profiles/Makefile (contents, props changed) head/www/py-django-pyscss/Makefile (contents, props changed) head/www/py-django-redis/Makefile (contents, props changed) head/www/py-django-registration-defaults/Makefile (contents, props changed) head/www/py-django-registration-redux/Makefile (contents, props changed) head/www/py-django-registration/Makefile (contents, props changed) head/www/py-django-signals-ahoy/Makefile (contents, props changed) head/www/py-django-social-auth/Makefile (contents, props changed) head/www/py-django-solo/Makefile (contents, props changed) head/www/py-django-sortedm2m/Makefile (contents, props changed) head/www/py-django-star-ratings/Makefile (contents, props changed) head/www/py-django-subdomains/Makefile (contents, props changed) head/www/py-django-sudo/Makefile (contents, props changed) head/www/py-django-tables2/Makefile (contents, props changed) head/www/py-django-tagging/Makefile (contents, props changed) head/www/py-django-taggit/Makefile (contents, props changed) head/www/py-django-tastypie/Makefile (contents, props changed) head/www/py-django-templatetag-sugar/Makefile (contents, props changed) head/www/py-django-threaded-multihost/Makefile (contents, props changed) head/www/py-django-tinymce/Makefile (contents, props changed) head/www/py-django-widget-tweaks/Makefile (contents, props changed) head/www/py-django/Makefile (contents, props changed) head/www/py-django111/Makefile (contents, props changed) head/www/py-django18/Makefile (contents, props changed) head/www/py-django20/Makefile (contents, props changed) head/www/py-django_compressor/Makefile (contents, props changed) head/www/py-django_openstack_auth/Makefile (contents, props changed) head/www/py-django_polymorphic/Makefile (contents, props changed) head/www/py-djangotoolbox/Makefile (contents, props changed) head/www/py-dojango/Makefile (contents, props changed) head/www/py-evernote/Makefile (contents, props changed) head/www/py-falcon/Makefile (contents, props changed) head/www/py-fedex/Makefile (contents, props changed) head/www/py-feedgenerator/Makefile (contents, props changed) head/www/py-flask-admin/Makefile (contents, props changed) head/www/py-flask-api/Makefile (contents, props changed) head/www/py-flask-apscheduler/Makefile (contents, props changed) head/www/py-flask-assets/Makefile (contents, props changed) head/www/py-flask-bootstrap/Makefile (contents, props changed) head/www/py-flask-cache/Makefile (contents, props changed) head/www/py-flask-compress/Makefile (contents, props changed) head/www/py-flask-cors/Makefile (contents, props changed) head/www/py-flask-flatpages/Makefile (contents, props changed) head/www/py-flask-login/Makefile (contents, props changed) head/www/py-flask-marshmallow/Makefile (contents, props changed) head/www/py-flask-migrate/Makefile (contents, props changed) head/www/py-flask-moment/Makefile (contents, props changed) head/www/py-flask-oauthlib/Makefile (contents, props changed) head/www/py-flask-principal/Makefile (contents, props changed) head/www/py-flask-restful/Makefile (contents, props changed) head/www/py-flask-restplus/Makefile (contents, props changed) head/www/py-flask-script/Makefile (contents, props changed) head/www/py-flask-socketio/Makefile (contents, props changed) head/www/py-flask-sockets/Makefile (contents, props changed) head/www/py-flask-uploads/Makefile (contents, props changed) head/www/py-flask-wtf/Makefile (contents, props changed) head/www/py-flask/Makefile (contents, props changed) head/www/py-flexget/Makefile (contents, props changed) head/www/py-folium/Makefile (contents, props changed) head/www/py-formalchemy/Makefile (contents, props changed) head/www/py-frappe-bench/Makefile (contents, props changed) head/www/py-frozen-flask/Makefile (contents, props changed) head/www/py-funkload/Makefile (contents, props changed) head/www/py-gandi.cli/Makefile (contents, props changed) head/www/py-gevent-websocket/Makefile (contents, props changed) head/www/py-goobook/Makefile (contents, props changed) head/www/py-google-api-core/Makefile (contents, props changed) head/www/py-google-cloud-core/Makefile (contents, props changed) head/www/py-google-cloud-storage/Makefile (contents, props changed) head/www/py-google-resumable-media/Makefile (contents, props changed) head/www/py-google/Makefile (contents, props changed) head/www/py-graphite-api/Makefile (contents, props changed) head/www/py-graphite-web/Makefile (contents, props changed) head/www/py-grequests/Makefile (contents, props changed) head/www/py-gunicorn/Makefile (contents, props changed) head/www/py-h2/Makefile (contents, props changed) head/www/py-horizon/Makefile (contents, props changed) head/www/py-html5-parser/Makefile (contents, props changed) head/www/py-html5lib/Makefile (contents, props changed) head/www/py-httmock/Makefile (contents, props changed) head/www/py-httpie/Makefile (contents, props changed) head/www/py-hyper/Makefile (contents, props changed) head/www/py-hyperlink/Makefile (contents, props changed) head/www/py-imdbpy/Makefile (contents, props changed) head/www/py-internetarchive/Makefile (contents, props changed) head/www/py-jsonfield/Makefile (contents, props changed) head/www/py-kallithea/Makefile (contents, props changed) head/www/py-lesscpy/Makefile (contents, props changed) head/www/py-libsass/Makefile (contents, props changed) head/www/py-livereload/Makefile (contents, props changed) head/www/py-mwoauth/Makefile (contents, props changed) head/www/py-nevow/Makefile (contents, props changed) head/www/py-notebook/Makefile (contents, props changed) head/www/py-paste/Makefile (contents, props changed) head/www/py-pastedeploy/Makefile (contents, props changed) head/www/py-pastescript/Makefile (contents, props changed) head/www/py-pelican/Makefile (contents, props changed) head/www/py-planet/Makefile (contents, props changed) head/www/py-plone.app.blob/Makefile (contents, props changed) head/www/py-plone.app.caching/Makefile (contents, props changed) head/www/py-plone.app.collection/Makefile (contents, props changed) head/www/py-plone.app.content/Makefile (contents, props changed) head/www/py-plone.app.contentlisting/Makefile (contents, props changed) head/www/py-plone.app.contentmenu/Makefile (contents, props changed) head/www/py-plone.app.contentrules/Makefile (contents, props changed) head/www/py-plone.app.controlpanel/Makefile (contents, props changed) head/www/py-plone.app.customerize/Makefile (contents, props changed) head/www/py-plone.app.dexterity/Makefile (contents, props changed) head/www/py-plone.app.discussion/Makefile (contents, props changed) head/www/py-plone.app.folder/Makefile (contents, props changed) head/www/py-plone.app.form/Makefile (contents, props changed) head/www/py-plone.app.imaging/Makefile (contents, props changed) head/www/py-plone.app.iterate/Makefile (contents, props changed) head/www/py-plone.app.jquery/Makefile (contents, props changed) head/www/py-plone.app.jquerytools/Makefile (contents, props changed) head/www/py-plone.app.layout/Makefile (contents, props changed) head/www/py-plone.app.ldap/Makefile (contents, props changed) head/www/py-plone.app.linkintegrity/Makefile (contents, props changed) head/www/py-plone.app.portlets/Makefile (contents, props changed) head/www/py-plone.app.querystring/Makefile (contents, props changed) head/www/py-plone.app.redirector/Makefile (contents, props changed) head/www/py-plone.app.registry/Makefile (contents, props changed) head/www/py-plone.app.search/Makefile (contents, props changed) head/www/py-plone.app.testing/Makefile (contents, props changed) head/www/py-plone.app.textfield/Makefile (contents, props changed) head/www/py-plone.app.theming/Makefile (contents, props changed) head/www/py-plone.app.upgrade/Makefile (contents, props changed) head/www/py-plone.app.users/Makefile (contents, props changed) head/www/py-plone.app.uuid/Makefile (contents, props changed) head/www/py-plone.app.viewletmanager/Makefile (contents, props changed) head/www/py-plone.app.vocabularies/Makefile (contents, props changed) head/www/py-plone.app.workflow/Makefile (contents, props changed) head/www/py-plone.app.z3cform/Makefile (contents, props changed) head/www/py-plone.autoform/Makefile (contents, props changed) head/www/py-plone.behavior/Makefile (contents, props changed) head/www/py-plone.browserlayer/Makefile (contents, props changed) head/www/py-plone.cachepurging/Makefile (contents, props changed) head/www/py-plone.caching/Makefile (contents, props changed) head/www/py-plone.contentrules/Makefile (contents, props changed) head/www/py-plone.dexterity/Makefile (contents, props changed) head/www/py-plone.fieldsets/Makefile (contents, props changed) head/www/py-plone.folder/Makefile (contents, props changed) head/www/py-plone.formwidget.namedfile/Makefile (contents, props changed) head/www/py-plone.i18n/Makefile (contents, props changed) head/www/py-plone.indexer/Makefile (contents, props changed) head/www/py-plone.locking/Makefile (contents, props changed) head/www/py-plone.memoize/Makefile (contents, props changed) head/www/py-plone.namedfile/Makefile (contents, props changed) head/www/py-plone.outputfilters/Makefile (contents, props changed) head/www/py-plone.portlet.collection/Makefile (contents, props changed) head/www/py-plone.portlet.static/Makefile (contents, props changed) head/www/py-plone.portlets/Makefile (contents, props changed) head/www/py-plone.registry/Makefile (contents, props changed) head/www/py-plone.resource/Makefile (contents, props changed) head/www/py-plone.resourceeditor/Makefile (contents, props changed) head/www/py-plone.rfc822/Makefile (contents, props changed) head/www/py-plone.scale/Makefile (contents, props changed) head/www/py-plone.schemaeditor/Makefile (contents, props changed) head/www/py-plone.stringinterp/Makefile (contents, props changed) head/www/py-plone.subrequest/Makefile (contents, props changed) head/www/py-plone.supermodel/Makefile (contents, props changed) head/www/py-plone.testing/Makefile (contents, props changed) head/www/py-plone.theme/Makefile (contents, props changed) head/www/py-plone.transformchain/Makefile (contents, props changed) head/www/py-plone.uuid/Makefile (contents, props changed) head/www/py-plone.z3cform/Makefile (contents, props changed) head/www/py-praw/Makefile (contents, props changed) head/www/py-puppetboard/Makefile (contents, props changed) head/www/py-puppetboard02/Makefile (contents, props changed) head/www/py-puppetboard03/Makefile (contents, props changed) head/www/py-py-restclient/Makefile (contents, props changed) head/www/py-pyjwt/Makefile (contents, props changed) head/www/py-pylons/Makefile (contents, props changed) head/www/py-pyocclient/Makefile (contents, props changed) head/www/py-pyquery/Makefile (contents, props changed) head/www/py-pyramid/Makefile (contents, props changed) head/www/py-pyramid_rpc/Makefile (contents, props changed) head/www/py-python-digitalocean/Makefile (contents, props changed) head/www/py-python-dotenv/Makefile (contents, props changed) head/www/py-pywikibot/Makefile (contents, props changed) head/www/py-qp/Makefile (contents, props changed) head/www/py-qt5-webkit/Makefile (contents, props changed) head/www/py-rackspace-monitoring/Makefile (contents, props changed) head/www/py-requestbuilder/Makefile (contents, props changed) head/www/py-requests-cache/Makefile (contents, props changed) head/www/py-requests-file/Makefile (contents, props changed) head/www/py-requests-futures/Makefile (contents, props changed) head/www/py-requests-mock/Makefile (contents, props changed) head/www/py-requests-oauthlib/Makefile (contents, props changed) head/www/py-requests/Makefile (contents, props changed) head/www/py-requests_ntlm/Makefile (contents, props changed) head/www/py-restclient/Makefile (contents, props changed) head/www/py-rhodecode/Makefile (contents, props changed) head/www/py-rollbar/Makefile (contents, props changed) head/www/py-routes/Makefile (contents, props changed) head/www/py-scrapy/Makefile (contents, props changed) head/www/py-selector/Makefile (contents, props changed) head/www/py-slimit/Makefile (contents, props changed) head/www/py-slumber/Makefile (contents, props changed) head/www/py-sockjs-tornado/Makefile (contents, props changed) head/www/py-splinter/Makefile (contents, props changed) head/www/py-spyne/Makefile (contents, props changed) head/www/py-sseclient/Makefile (contents, props changed) head/www/py-swapper/Makefile (contents, props changed) head/www/py-textile/Makefile (contents, props changed) head/www/py-tornado/Makefile (contents, props changed) head/www/py-tornado4/Makefile (contents, props changed) head/www/py-trello/Makefile (contents, props changed) head/www/py-treq/Makefile (contents, props changed) head/www/py-turbogears2/Makefile (contents, props changed) head/www/py-tvdb_api/Makefile (contents, props changed) head/www/py-txrequests/Makefile (contents, props changed) head/www/py-urlgrabber/Makefile (contents, props changed) head/www/py-user_agent/Makefile (contents, props changed) head/www/py-w3lib/Makefile (contents, props changed) head/www/py-webhelpers/Makefile (contents, props changed) head/www/py-webob/Makefile (contents, props changed) head/www/py-websocket-client/Makefile (contents, props changed) head/www/py-werkzeug/Makefile (contents, props changed) head/www/py-wikipedia/Makefile (contents, props changed) head/www/py-ws4py/Makefile (contents, props changed) head/www/py-wsgidav/Makefile (contents, props changed) head/www/py-yarl/Makefile (contents, props changed) head/www/py-zope.app.wsgi/Makefile (contents, props changed) head/www/pycarddav/Makefile (contents, props changed) head/www/radicale/Makefile (contents, props changed) head/www/radicale2/Makefile (contents, props changed) head/www/roundup/Makefile (contents, props changed) head/www/rtv/Makefile (contents, props changed) head/www/trac-OhlohWidgetsMacro/Makefile (contents, props changed) head/www/trac-TracGoogleAnalytics/Makefile (contents, props changed) head/www/trac-devel/Makefile (contents, props changed) head/www/trac-ldapauthstore/Makefile (contents, props changed) head/www/trac-ticketimport/Makefile (contents, props changed) head/www/trac/Makefile (contents, props changed) head/www/web2ldap/Makefile (contents, props changed) head/www/zope213/Makefile (contents, props changed) head/x11-fonts/py-QtAwesome/Makefile (contents, props changed) head/x11-toolkits/py-Pmw/Makefile (contents, props changed) head/x11-toolkits/py-gnome2/Makefile (contents, props changed) head/x11-toolkits/py-gtk2/Makefile (contents, props changed) head/x11-toolkits/py-gtkglext/Makefile (contents, props changed) head/x11-toolkits/py-gui/Makefile (contents, props changed) head/x11-toolkits/py-kivy/Makefile (contents, props changed) head/x11-toolkits/py-tktreectrl/Makefile (contents, props changed) head/x11-toolkits/py-wxPython28/Makefile (contents, props changed) head/x11-toolkits/py-wxPython30/Makefile (contents, props changed) head/x11-toolkits/py-xlib/Makefile (contents, props changed) head/x11-wm/compizconfig-python/Makefile (contents, props changed) head/x11-wm/obapps/Makefile (contents, props changed) head/x11-wm/plwm/Makefile (contents, props changed) head/x11-wm/qtile/Makefile (contents, props changed) head/x11/arandr/Makefile (contents, props changed) head/x11/menulibre/Makefile (contents, props changed) head/x11/py-pyvirtualdisplay/Makefile (contents, props changed) head/x11/terminator/Makefile (contents, props changed) head/x11/xpra/Makefile (contents, props changed) Modified: head/accessibility/speech-dispatcher/Makefile ============================================================================== --- head/accessibility/speech-dispatcher/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/accessibility/speech-dispatcher/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -95,7 +95,7 @@ USES+= python:3.3+ shebangfix SHEBANG_FILES= src/api/python/speechd_config/spd-conf USE_PYTHON= flavors LIB_DEPENDS+= libspeechd.so:accessibility/speech-dispatcher -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg@${FLAVOR} +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg@${PY_FLAVOR} .endif Modified: head/archivers/py-attic/Makefile ============================================================================== --- head/archivers/py-attic/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/archivers/py-attic/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -15,8 +15,8 @@ COMMENT= Deduplicating backup program LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.10:devel/py-msgpack@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.10:devel/py-msgpack@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.10:devel/py-msgpack@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.10:devel/py-msgpack@${PY_FLAVOR} USES= python:3.3+ ssl USE_PYTHON= autoplist distutils Modified: head/archivers/py-libarchive-c/Makefile ============================================================================== --- head/archivers/py-libarchive-c/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/archivers/py-libarchive-c/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ COMMENT= Python interface to libarchive LICENSE= LGPL20+ -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} USES= python USE_GITHUB= yes Modified: head/archivers/py-lz4/Makefile ============================================================================== --- head/archivers/py-lz4/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/archivers/py-lz4/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,11 +13,11 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= liblz4>=1.7.5:archivers/liblz4 \ - ${PYTHON_PKGNAMEPREFIX}pkgconfig>=0:devel/py-pkgconfig@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pkgconfig>=0:devel/py-pkgconfig@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} LIB_DEPENDS= liblz4.so:archivers/liblz4 -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} USE_PYTHON= distutils py3kplist USES= python @@ -30,7 +30,7 @@ post-install: .include .if ${PYTHON_REL} < 3000 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} .endif .include Modified: head/archivers/py-zstandard/Makefile ============================================================================== --- head/archivers/py-zstandard/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/archivers/py-zstandard/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ COMMENT= Zstandard bindings for Python, a full-feature LICENSE= BSD2CLAUSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.8.0:devel/py-cffi@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.8.0:devel/py-cffi@${PY_FLAVOR} LIB_DEPENDS= libzstd.so:archivers/zstd USES= localbase python Modified: head/astro/gpsd/Makefile ============================================================================== --- head/astro/gpsd/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/astro/gpsd/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -138,9 +138,9 @@ QTBIND_PLIST_SUB= QTBIND="" QTBIND_PLIST_SUB_OFF= QTBIND="@comment " RECONFIGURE_MAKE_ARGS_OFF= reconfigure=no CPPBIND_MAKE_ARGS_OFF= libgpsmm=no -X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gobject3>=0:devel/py-gobject3@${FLAVOR} -#X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${FLAVOR} +X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gobject3>=0:devel/py-gobject3@${PY_FLAVOR} +#X11_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} X11_USE= GNOME=gtk30 # Build control Modified: head/astro/py-RO/Makefile ============================================================================== --- head/astro/py-RO/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/astro/py-RO/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,7 +13,7 @@ COMMENT= Package of Python astronomical utilities LICENSE= MIT -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/numpy/core/numeric.py:math/py-numpy@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/numpy/core/numeric.py:math/py-numpy@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= ASTROPY MATPLOTLIB PYGAME @@ -27,8 +27,8 @@ NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils -ASTROPY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astropy>=0:astro/py-astropy@${FLAVOR} -MATPLOTLIB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} -PYGAME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>=1.8.1:devel/py-game@${FLAVOR} +ASTROPY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astropy>=0:astro/py-astropy@${PY_FLAVOR} +MATPLOTLIB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${PY_FLAVOR} +PYGAME_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}game>=1.8.1:devel/py-game@${PY_FLAVOR} .include Modified: head/astro/py-aipy/Makefile ============================================================================== --- head/astro/py-aipy/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/astro/py-aipy/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,9 +14,9 @@ COMMENT= Astronomical Interferometry in PYthon LICENSE= GPLv2+ BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}pyephem>=0:astro/pyephem@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}astropy>=1.0:astro/py-astropy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pyephem>=0:astro/pyephem@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}astropy>=1.0:astro/py-astropy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:2.7 Modified: head/astro/py-astLib/Makefile ============================================================================== --- head/astro/py-astLib/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/astro/py-astLib/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,11 +13,11 @@ COMMENT= Astronomy modules for Python LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astropy>=1.1:astro/py-astropy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.98:math/py-matplotlib@${PY_FLAVOR} \ ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.7.0:science/py-scipy@${PY_FLAVOR} PORTSCOUT= skipv:0.15,0.17,0.17.1 # incorrect versioning upstream Modified: head/astro/py-horoscopegenerator/Makefile ============================================================================== --- head/astro/py-horoscopegenerator/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/astro/py-horoscopegenerator/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -16,6 +16,6 @@ NO_ARCH= yes USES= python USE_PYTHON= distutils autoplist -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nltk>0:textproc/py-nltk@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nltk>0:textproc/py-nltk@${PY_FLAVOR} .include Modified: head/astro/py-metpy/Makefile ============================================================================== --- head/astro/py-metpy/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/astro/py-metpy/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -15,12 +15,12 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${ENUM34} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.4:math/py-matplotlib@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}numpy>=1.10.0:math/py-numpy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pint>=0.8:converters/py-pint@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.4:graphics/py-pyproj@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>=0.14:science/py-scipy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}xarray>=0.9.6:devel/py-xarray@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}matplotlib>=1.4:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>=1.10.0:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pint>=0.8:converters/py-pint@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.4:graphics/py-pyproj@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.14:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}xarray>=0.9.6:devel/py-xarray@${PY_FLAVOR} NO_ARCH= yes USE_PYTHON= autoplist concurrent distutils Modified: head/audio/beets/Makefile ============================================================================== --- head/audio/beets/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/beets/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,14 +13,14 @@ COMMENT= Media library management system for obsessive LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jellyfish>=0:devel/py-jellyfish@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}munkres>=0:math/py-munkres@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}musicbrainzngs>=0.4:audio/py-musicbrainzngs@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mutagen>=1.33:audio/py-mutagen@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>=1.9:devel/py-six@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}unidecode>=0:converters/py-unidecode@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jellyfish>=0:devel/py-jellyfish@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}munkres>=0:math/py-munkres@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}musicbrainzngs>=0.4:audio/py-musicbrainzngs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mutagen>=1.33:audio/py-mutagen@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}unidecode>=0:converters/py-unidecode@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \ ${PY_ENUM34} USES= python @@ -61,36 +61,36 @@ THUMBNAILS_DESC= Thumbnails for freedesktop.org-compli WEB_DESC= Web plugin for querying, browsing and playing music WEB_CORS_DESC= Cross-origin resource sharing for the Web plugin -ACOUSTICBRAINZ_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} +ACOUSTICBRAINZ_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} BADFILES_RUN_DEPENDS= flac:audio/flac \ mp3val:audio/mp3val -BEATPORT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>=0.6.1:www/py-requests-oauthlib@${FLAVOR} -BPD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gstreamer1>=0:multimedia/py-gstreamer1@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gobject>=0:devel/py-gobject@${FLAVOR} -CHROMA_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyacoustid>=0:audio/py-pyacoustid@${FLAVOR} -DISCOGS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}discogs-client>=2.2.1:audio/py-discogs-client@${FLAVOR} -EMBYUPDATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} -FETCHART_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} +BEATPORT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>=0.6.1:www/py-requests-oauthlib@${PY_FLAVOR} +BPD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gstreamer1>=0:multimedia/py-gstreamer1@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gobject>=0:devel/py-gobject@${PY_FLAVOR} +CHROMA_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyacoustid>=0:audio/py-pyacoustid@${PY_FLAVOR} +DISCOGS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}discogs-client>=2.2.1:audio/py-discogs-client@${PY_FLAVOR} +EMBYUPDATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +FETCHART_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} FFMPEG_RUN_DEPENDS= ffmpeg>=2:multimedia/ffmpeg -GMUSIC_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gmusicapi>=0:audio/py-gmusicapi@${FLAVOR} +GMUSIC_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gmusicapi>=0:audio/py-gmusicapi@${PY_FLAVOR} IMAGEMAGICK_RUN_DEPENDS= convert:graphics/ImageMagick IPFS_RUN_DEPENDS= ipfs-go:sysutils/ipfs-go -KODIUPDATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} -LASTFM_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pylast>=0:audio/py-pylast@${FLAVOR} -LASTIMPORT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} -LYRICS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} -LYRICS_GOOGLE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4:www/py-beautifulsoup@${FLAVOR} -METASYNC_DBUS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0:devel/py-dbus@${FLAVOR} -MPDSTATS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd2>=0.4.2:audio/py-mpd2@${FLAVOR} -PLEXUPDATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} +KODIUPDATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +LASTFM_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pylast>=0:audio/py-pylast@${PY_FLAVOR} +LASTIMPORT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +LYRICS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +LYRICS_GOOGLE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4:www/py-beautifulsoup@${PY_FLAVOR} +METASYNC_DBUS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0:devel/py-dbus@${PY_FLAVOR} +MPDSTATS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd2>=0.4.2:audio/py-mpd2@${PY_FLAVOR} +PLEXUPDATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} REPLAYGAIN_RUN_DEPENDS= mp3gain>=0:audio/mp3gain REPLAYGAIN_RUN_DEPENDS+= aacgain>=0:audio/aacgain -SPOTIFY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${FLAVOR} -THUMBNAILS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>=0:devel/py-xdg@${FLAVOR} +SPOTIFY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +THUMBNAILS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>=0:devel/py-xdg@${PY_FLAVOR} THUMBNAILS_RUN_DEPENDS+= ${PY_PATHLIB} -WEB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-flask@${FLAVOR} -WEB_CORS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask-Cors>=0:www/py-flask-cors@${FLAVOR} +WEB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-flask@${PY_FLAVOR} +WEB_CORS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask-Cors>=0:www/py-flask-cors@${PY_FLAVOR} post-install: ${INSTALL} ${WRKSRC}/man/beet.1 ${STAGEDIR}${PREFIX}/man/man1/ Modified: head/audio/mbox/Makefile ============================================================================== --- head/audio/mbox/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/mbox/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,8 +12,8 @@ COMMENT= Program intended to help with organizing your LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ogg>0:audio/py-ogg@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}vorbis>0:audio/py-vorbis@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ogg>0:audio/py-ogg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}vorbis>0:audio/py-vorbis@${PY_FLAVOR} \ lame:audio/lame \ oggenc:audio/vorbis-tools \ mplayer:multimedia/mplayer Modified: head/audio/mpdbrowser/Makefile ============================================================================== --- head/audio/mpdbrowser/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/mpdbrowser/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,7 +14,7 @@ COMMENT= GTK+ client for the Music Player Daemon (MPD) LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd>=0.2.0:audio/py-mpd@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd>=0.2.0:audio/py-mpd@${PY_FLAVOR} USES= gettext iconv python:2.7 tar:tgz USE_GNOME= intltool pygtk2 Modified: head/audio/picard/Makefile ============================================================================== --- head/audio/picard/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/picard/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -15,8 +15,8 @@ COMMENT= Next generation MusicBrainz Tagger LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}discid>=0.5.2:audio/py-discid@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mutagen>=1.23:audio/py-mutagen@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}discid>=0.5.2:audio/py-discid@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mutagen>=1.23:audio/py-mutagen@${PY_FLAVOR} USES= gettext pyqt:4 python:2.7 desktop-file-utils USE_PYQT= core_run gui_run network_run xml_run sip Modified: head/audio/pithos/Makefile ============================================================================== --- head/audio/pithos/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/pithos/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,10 +13,10 @@ LICENSE= GPLv3 USE_GITHUB= yes -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg@${FLAVOR} \ - ${PYTHON_SITELIBDIR}/dbus/__init__.py:devel/py-dbus@${FLAVOR} \ - ${PYTHON_SITELIBDIR}/gi/overrides/Gst.py:multimedia/py-gstreamer1@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pylast>0:audio/py-pylast@${FLAVOR} \ +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/__init__.py:devel/py-xdg@${PY_FLAVOR} \ + ${PYTHON_SITELIBDIR}/dbus/__init__.py:devel/py-dbus@${PY_FLAVOR} \ + ${PYTHON_SITELIBDIR}/gi/overrides/Gst.py:multimedia/py-gstreamer1@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pylast>0:audio/py-pylast@${PY_FLAVOR} \ git:devel/git USE_GNOME= gtk30 pygobject3 Modified: head/audio/puddletag/Makefile ============================================================================== --- head/audio/puddletag/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/puddletag/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,10 +13,10 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= chromaprint>=0.4:audio/chromaprint \ - ${PYTHON_PKGNAMEPREFIX}musicbrainz2>=0:audio/py-musicbrainz2@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mutagen>=1.14:audio/py-mutagen@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}configobj>=4.5.0:devel/py-configobj@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyparsing>=1.5.1:devel/py-pyparsing@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}musicbrainz2>=0:audio/py-musicbrainz2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mutagen>=1.14:audio/py-mutagen@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}configobj>=4.5.0:devel/py-configobj@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyparsing>=1.5.1:devel/py-pyparsing@${PY_FLAVOR} USE_GITHUB= yes GH_ACCOUNT= keithgg Modified: head/audio/py-SoundFile/Makefile ============================================================================== --- head/audio/py-SoundFile/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-SoundFile/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,7 +14,7 @@ COMMENT= Audio library based on libsndfile, CFFI and N LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0.6:devel/py-cffi@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0.6:devel/py-cffi@${PY_FLAVOR} \ ${PYNUMPY} \ ${PREFIX}/lib/libsndfile.so:audio/libsndfile Modified: head/audio/py-aubio/Makefile ============================================================================== --- head/audio/py-aubio/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-aubio/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ LIB_DEPENDS= libaubio.so:audio/aubio BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS= ${PYNUMPY} TEST_DEPENDS= sox:audio/sox \ - ${PYTHON_PKGNAMEPREFIX}nose2>=0.6.5:devel/py-nose2@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}nose2>=0.6.5:devel/py-nose2@${PY_FLAVOR} USES+= python USE_PYTHON= autoplist distutils Modified: head/audio/py-discogs-client/Makefile ============================================================================== --- head/audio/py-discogs-client/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-discogs-client/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,9 +12,9 @@ COMMENT= Python interface to Discogs website LICENSE= BSD2CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}oauthlib>=0:security/py-oauthlib@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}oauthlib>=0:security/py-oauthlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/audio/py-gmusicapi/Makefile ============================================================================== --- head/audio/py-gmusicapi/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-gmusicapi/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,21 +12,21 @@ COMMENT= Unofficial Python API for Google Play Music LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=1.3.0:devel/py-appdirs@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dateutil>=2.2:devel/py-dateutil@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}decorator>=3.4.0:devel/py-decorator@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}future>=0.0:devel/py-future@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mock>=1.0.1:devel/py-mock@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mutagen>=1.18:audio/py-mutagen@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}oauth2client>=1.2:security/py-oauth2client@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gpsoauth>=0.0:security/py-gpsoauth@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}protobuf>=2.5.0:devel/py-protobuf@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>=2.3.0:www/py-requests@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}validictory>=0.9.3:devel/py-validictory@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ndg_httpsclient>0:net/py-ndg_httpsclient@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}MechanicalSoup>0:www/py-MechanicalSoup@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyasn1>0:devel/py-pyasn1@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=1.3.0:devel/py-appdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.2:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}decorator>=3.4.0:devel/py-decorator@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}future>=0.0:devel/py-future@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mock>=1.0.1:devel/py-mock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mutagen>=1.18:audio/py-mutagen@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}oauth2client>=1.2:security/py-oauth2client@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gpsoauth>=0.0:security/py-gpsoauth@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=2.5.0:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.3.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}validictory>=0.9.3:devel/py-validictory@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ndg_httpsclient>0:net/py-ndg_httpsclient@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}MechanicalSoup>0:www/py-MechanicalSoup@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyasn1>0:devel/py-pyasn1@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/audio/py-gmusicproxy/Makefile ============================================================================== --- head/audio/py-gmusicproxy/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-gmusicproxy/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,12 +13,12 @@ COMMENT= Proxy for streaming Google Play Music using a LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=1.3.0:devel/py-appdirs@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gmusicapi>=10.1.0:audio/py-gmusicapi@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}netifaces>=-0.10.4:net/py-netifaces@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}xdg>=0.25:devel/py-xdg@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}eyed3>=0.7.8:audio/py-eyed3@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}daemon>=2.0.5:devel/py-daemon@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=1.3.0:devel/py-appdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gmusicapi>=10.1.0:audio/py-gmusicapi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}netifaces>=-0.10.4:net/py-netifaces@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}xdg>=0.25:devel/py-xdg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}eyed3>=0.7.8:audio/py-eyed3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}daemon>=2.0.5:devel/py-daemon@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist Modified: head/audio/py-karaoke/Makefile ============================================================================== --- head/audio/py-karaoke/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-karaoke/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -39,7 +39,7 @@ PLIST_FILES= ${BIN_SCRIPTS:S,^,bin/,} \ OPTIONS_DEFINE= MUTAGEN MUTAGEN_DESC= Mutagen support -MUTAGEN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>0:audio/py-mutagen@${FLAVOR} +MUTAGEN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>0:audio/py-mutagen@${PY_FLAVOR} BIN_SCRIPTS= cdg2mpg pycdg pykar pykaraoke pykaraoke_mini pympg DATA_FONTS= DejaVuSans.ttf DejaVuSansCondensed.ttf \ Modified: head/audio/py-py-jack/Makefile ============================================================================== --- head/audio/py-py-jack/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-py-jack/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,7 +14,7 @@ COMMENT= Python bindings for the Jack Audio Server LICENSE= GPLv2 LIB_DEPENDS= libjack.so:audio/jack -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} USES= python:-2.7 localbase USE_PYTHON= distutils autoplist Modified: head/audio/py-pylast/Makefile ============================================================================== --- head/audio/py-pylast/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-pylast/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,7 +13,7 @@ COMMENT= Python interface to Last.fm and Libre.fm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/audio/py-soundcloud/Makefile ============================================================================== --- head/audio/py-soundcloud/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-soundcloud/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,7 +13,7 @@ COMMENT= Friendly wrapper library for the Soundcloud A LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=1.1.2:devel/py-nose@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=1.1.2:devel/py-nose@${PY_FLAVOR} USES= python USE_PYTHON= autoplist distutils Modified: head/audio/py-sounddevice/Makefile ============================================================================== --- head/audio/py-sounddevice/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-sounddevice/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,8 +12,8 @@ COMMENT= Play and record sound through OSS in python p LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR} \ ${PYNUMPY} \ portaudio>0:audio/portaudio Modified: head/audio/py-soundscrape/Makefile ============================================================================== --- head/audio/py-soundscrape/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-soundscrape/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,16 +12,16 @@ COMMENT= SoundCloud downloader in python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>=1.31.0:audio/py-mutagen@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}soundcloud>=0.4.1:audio/py-soundcloud@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}args>=0.1.0:devel/py-args@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}clint>=0.3.2:devel/py-clint@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}demjson>=2.2.2:devel/py-demjson@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}fudge>=1.0.3:devel/py-fudge@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}simplejson>=3.3.1:devel/py-simplejson@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>=0.24.0:devel/py-wheel@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>=2.9.0:www/py-requests@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mutagen>=1.31.0:audio/py-mutagen@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}soundcloud>=0.4.1:audio/py-soundcloud@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}args>=0.1.0:devel/py-args@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}clint>=0.3.2:devel/py-clint@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}demjson>=2.2.2:devel/py-demjson@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}fudge>=1.0.3:devel/py-fudge@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}nose>=1.3.7:devel/py-nose@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}simplejson>=3.3.1:devel/py-simplejson@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0.24.0:devel/py-wheel@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.9.0:www/py-requests@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/audio/py-speechrecognition/Makefile ============================================================================== --- head/audio/py-speechrecognition/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-speechrecognition/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -16,7 +16,7 @@ GH_ACCOUNT= Uberi GH_PROJECT= speech_recognition RUN_DEPENDS= flac:audio/flac \ - ${PYTHON_PKGNAMEPREFIX}pyaudio>0:audio/py-pyaudio@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pyaudio>0:audio/py-pyaudio@${PY_FLAVOR} NO_ARCH= yes USES= python @@ -28,7 +28,7 @@ post-extract: .include .if ${PYTHON_REL} < 3000 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}monotonic>=0.3:devel/py-monotonic@${FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}monotonic>=0.3:devel/py-monotonic@${PY_FLAVOR} .endif .include Modified: head/audio/py-speex/Makefile ============================================================================== --- head/audio/py-speex/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-speex/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,7 +13,7 @@ DIST_SUBDIR= python MAINTAINER= ports@FreeBSD.org COMMENT= Python bindings for the Speex compressor/decompressor audio codec -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyrex>=0.9.6.2:devel/pyrex@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyrex>=0.9.6.2:devel/pyrex@${PY_FLAVOR} LIB_DEPENDS= libspeex.so:audio/speex USES= python:2.7 Modified: head/audio/py-vorbis/Makefile ============================================================================== --- head/audio/py-vorbis/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-vorbis/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -15,8 +15,8 @@ COMMENT= Object-oriented Python bindings for the vorbi LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/ogg/_ogg.so:audio/py-ogg@${FLAVOR} -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/ogg/_ogg.so:audio/py-ogg@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/ogg/_ogg.so:audio/py-ogg@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/ogg/_ogg.so:audio/py-ogg@${PY_FLAVOR} LIB_DEPENDS= libvorbis.so:audio/libvorbis USES= python:2.7 Modified: head/audio/py-xmms2/Makefile ============================================================================== --- head/audio/py-xmms2/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/py-xmms2/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -9,7 +9,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= madpilot@FreeBSD.org COMMENT= Python Bindings for XMMS2 -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyrex>0:devel/pyrex@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyrex>0:devel/pyrex@${PY_FLAVOR} LIB_DEPENDS+= libxmmsclient.so:audio/xmms2 MASTERDIR= ${.CURDIR}/../xmms2 Modified: head/audio/pytone/Makefile ============================================================================== --- head/audio/pytone/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/pytone/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -15,8 +15,8 @@ COMMENT= Music jukebox written in Python with a curses LICENSE= GPLv2 LIB_DEPENDS= libao.so:audio/libao -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mutagen>0:audio/py-mutagen@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mutagen>0:audio/py-mutagen@${PY_FLAVOR} USES= ncurses python:2.7 USE_PYTHON= autoplist distutils @@ -30,11 +30,11 @@ PLIST_FILES= etc/pytonerc.sample OPTIONS_DEFINE= MAD MPG123 MPG321 VORBIS OPTIONS_DEFAULT= MAD VORBIS -MAD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymad>0:audio/py-pymad@${FLAVOR} +MAD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymad>0:audio/py-pymad@${PY_FLAVOR} MPG123_RUN_DEPENDS= mpg123:audio/mpg123 MPG321_DESC= MP3 decoding support via mpg321 MPG321_RUN_DEPENDS= mpg321:audio/mpg321 -VORBIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vorbis>0:audio/py-vorbis@${FLAVOR} +VORBIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vorbis>0:audio/py-vorbis@${PY_FLAVOR} post-patch: .for i in pytone pytonectl Modified: head/audio/sonata/Makefile ============================================================================== --- head/audio/sonata/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/audio/sonata/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,7 +12,7 @@ COMMENT= Elegant music player for MPD LICENSE= GPLv3 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd>=0.2.0:audio/py-mpd@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd>=0.2.0:audio/py-mpd@${PY_FLAVOR} USES= gettext pkgconfig python:2.7 USE_GNOME= pygtk2 @@ -30,11 +30,11 @@ OPTIONS_SUB= yes MANPAGES_MAKE_ENV_OFF= NO_INSTALL_MANPAGES=yes DOCS_MAKE_ENV= NOPORTDOCS=${NOPORTDOCS} MPD_RUN_DEPENDS+= musicpd:audio/musicpd -MMKEYS_RUN_DEPENDS=${PYTHON_PKGNAMEPREFIX}dbus>=0.82.4:devel/py-dbus@${FLAVOR} -PYGNOMEEXTRAS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gnome-extras>=2.25.3_4:x11-toolkits/py-gnome-extras@${FLAVOR} +MMKEYS_RUN_DEPENDS=${PYTHON_PKGNAMEPREFIX}dbus>=0.82.4:devel/py-dbus@${PY_FLAVOR} +PYGNOMEEXTRAS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gnome-extras>=2.25.3_4:x11-toolkits/py-gnome-extras@${PY_FLAVOR} PYGNOMEEXTRAS_IGNORE= Dependency py-gnome-extras gone. -TAGLIB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tagpy>=0.94.5:audio/py-tagpy@${FLAVOR} -ZSI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zsi>=2.0,1:net/py-zsi@${FLAVOR} +TAGLIB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tagpy>=0.94.5:audio/py-tagpy@${PY_FLAVOR} +ZSI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zsi>=2.0,1:net/py-zsi@${PY_FLAVOR} post-patch: @${REINPLACE_CMD} -e 's,%%DOCSDIR%%,${DOCSDIR},' \ Modified: head/benchmarks/py-naarad/Makefile ============================================================================== --- head/benchmarks/py-naarad/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/benchmarks/py-naarad/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,9 +13,9 @@ COMMENT= Framework for performance analysis LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=2013.8,1:devel/py-pytz@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}luminol>0:math/py-luminol@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=2013.8,1:devel/py-pytz@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}luminol>0:math/py-luminol@${PY_FLAVOR} \ bash:shells/bash \ gawk:lang/gawk Modified: head/benchmarks/py-zopkio/Makefile ============================================================================== --- head/benchmarks/py-zopkio/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/benchmarks/py-zopkio/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,11 +12,11 @@ COMMENT= Functional and Performance Test Framework LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}naarad>=1.0.15:benchmarks/py-naarad@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}kazoo>=1.1:devel/py-kazoo@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}paramiko>=1.10.1:security/py-paramiko@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}junit-xml>0:textproc/py-junit-xml@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}naarad>=1.0.15:benchmarks/py-naarad@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}kazoo>=1.1:devel/py-kazoo@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}paramiko>=1.10.1:security/py-paramiko@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}junit-xml>0:textproc/py-junit-xml@${PY_FLAVOR} \ USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/biology/py-Genesis-PyAPI/Makefile ============================================================================== --- head/biology/py-Genesis-PyAPI/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/biology/py-Genesis-PyAPI/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,8 +12,8 @@ COMMENT= API for the Genesis platform for genetics inf LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.6.0:www/py-requests@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}slumber>=0.7.1:www/py-slumber@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.6.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}slumber>=0.7.1:www/py-slumber@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/biology/py-biom-format/Makefile ============================================================================== --- head/biology/py-biom-format/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/biology/py-biom-format/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,11 +13,11 @@ LICENSE= BSD3CLAUSE BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}click>=6.6:devel/py-click@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}h5py>=2.6.0:science/py-h5py@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>=0.16.1:science/py-scipy@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}click>=6.6:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}future>=0.15.2:devel/py-future@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}h5py>=2.6.0:science/py-h5py@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.16.1:science/py-scipy@${PY_FLAVOR} USE_GITHUB= yes GH_ACCOUNT= biocore @@ -28,7 +28,7 @@ USE_PYTHON= autoplist distutils .include .if ${PYTHON_REL} < 3000 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pyqi>=0.2.0:devel/py-pyqi@${FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pyqi>=0.2.0:devel/py-pyqi@${PY_FLAVOR} .endif post-extract: Modified: head/biology/py-biopython/Makefile ============================================================================== --- head/biology/py-biopython/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/biology/py-biopython/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -24,7 +24,7 @@ OPTIONS_DEFINE= REPORTLAB OPTIONS_DEFAULT= REPORTLAB REPORTLAB_DESC= PDF support in Bio.Graphics module -REPORTLAB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${FLAVOR} +REPORTLAB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}reportlab>0:print/py-reportlab@${PY_FLAVOR} pre-configure: # unbreak for python3: README.rst can't be decoded with the ascii codec: https://github.com/biopython/biopython/issues/1649 @truncate -s 0 ${WRKSRC}/README.rst Modified: head/biology/py-bx-python/Makefile ============================================================================== --- head/biology/py-bx-python/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/biology/py-bx-python/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,7 +14,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}python-lzo>0:archivers/py-python-lzo@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}python-lzo>0:archivers/py-python-lzo@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= compiler python Modified: head/biology/py-cutadapt/Makefile ============================================================================== --- head/biology/py-cutadapt/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/biology/py-cutadapt/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ COMMENT= Finds and removes adapter sequences, primers, LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xopen>0:archivers/py-xopen@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xopen>0:archivers/py-xopen@${PY_FLAVOR} USES= python USE_PYTHON= distutils py3kplist Modified: head/biology/pycogent/Makefile ============================================================================== --- head/biology/pycogent/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/biology/pycogent/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,8 +12,8 @@ COMMENT= Toolkit for statistical analysis of biologica LICENSE= GPLv2 BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy10@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0.13:databases/py-sqlalchemy10@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:-2.7 Modified: head/cad/py-gdspy/Makefile ============================================================================== --- head/cad/py-gdspy/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/cad/py-gdspy/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,7 +12,7 @@ COMMENT= Python module for creating GDSII stream files LICENSE= GPLv3 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/cad/py-lcapy/Makefile ============================================================================== --- head/cad/py-lcapy/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/cad/py-lcapy/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,10 +12,10 @@ COMMENT= Symbolic MDA Analysis Package for Linear Circ LICENSE= LGPL21 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} USES= python USE_PYTHON= distutils concurrent autoplist Modified: head/cad/py-pycam/Makefile ============================================================================== --- head/cad/py-pycam/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/cad/py-pycam/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,9 +13,9 @@ COMMENT= Toolpath generator for 3-axis CNC machining LICENSE= GPLv3 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:x11-toolkits/py-gtk2@${FLAVOR} \ - ${PYTHON_SITELIBDIR}/OpenGL/__init__.py:graphics/py-PyOpenGL@${FLAVOR} \ - ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/gdkgl/__init__.py:x11-toolkits/py-gtkglext@${FLAVOR} +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:x11-toolkits/py-gtk2@${PY_FLAVOR} \ + ${PYTHON_SITELIBDIR}/OpenGL/__init__.py:graphics/py-PyOpenGL@${PY_FLAVOR} \ + ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/gdkgl/__init__.py:x11-toolkits/py-gtkglext@${PY_FLAVOR} USES= python:-2.7 USE_PYTHON= distutils autoplist Modified: head/cad/py-pyfda/Makefile ============================================================================== --- head/cad/py-pyfda/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/cad/py-pyfda/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,10 +14,10 @@ COMMENT= GUI tool for designing and analysing discrete LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} \ ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} USES= python:3.4+ pyqt:5 USE_PYTHON= distutils autoplist Modified: head/cad/python-gdsii/Makefile ============================================================================== --- head/cad/python-gdsii/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/cad/python-gdsii/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ COMMENT= GDSII manipulation library LICENSE= LGPL3 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/cad/pythoncad/Makefile ============================================================================== --- head/cad/pythoncad/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/cad/pythoncad/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,7 +14,7 @@ COMMENT= Open-source CAD package built designed around LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:x11-toolkits/py-gtk2@${FLAVOR} +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:x11-toolkits/py-gtk2@${PY_FLAVOR} USES= python:2.7 shebangfix USE_PYTHON= distutils Modified: head/comms/chirp/Makefile ============================================================================== --- head/comms/chirp/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/comms/chirp/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -15,9 +15,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${CHIRP_DEPENDS} RUN_DEPENDS= ${CHIRP_DEPENDS} -CHIRP_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libxml2>0:textproc/py-libxml2@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}serial>0:comms/py-serial@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gtk2>0:x11-toolkits/py-gtk2@${FLAVOR} +CHIRP_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libxml2>0:textproc/py-libxml2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}serial>0:comms/py-serial@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gtk2>0:x11-toolkits/py-gtk2@${PY_FLAVOR} USES= desktop-file-utils gettext python:2.7 USE_PYTHON= distutils autoplist Modified: head/comms/py-libimobiledevice/Makefile ============================================================================== --- head/comms/py-libimobiledevice/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/comms/py-libimobiledevice/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -8,8 +8,8 @@ MAINTAINER= avilla@FreeBSD.org COMMENT= Python bindings for libimobiledevice LIB_DEPENDS= libimobiledevice.so:${MASTER_PORT} -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libplist>0:devel/py-libplist@${FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libplist>0:devel/py-libplist@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libplist>0:devel/py-libplist@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libplist>0:devel/py-libplist@${PY_FLAVOR} PORTSCOUT= ignore:1 Modified: head/converters/py-bencode.py/Makefile ============================================================================== --- head/converters/py-bencode.py/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/converters/py-bencode.py/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,8 +14,8 @@ LICENSE_NAME= BitTorrent Open Source License LICENSE_TEXT= See http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.9:devel/py-pbr@${FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.9:devel/py-pbr@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} NO_ARCH= yes USES= python Modified: head/converters/py-zfec/Makefile ============================================================================== --- head/converters/py-zfec/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/converters/py-zfec/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -13,8 +13,8 @@ COMMENT= Fast erasure codec for Python LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING.GPL -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>=0:devel/py-argparse@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyutil>=0:devel/py-pyutil@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>=0:devel/py-argparse@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyutil>=0:devel/py-pyutil@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist concurrent Modified: head/converters/zbase32/Makefile ============================================================================== --- head/converters/zbase32/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/converters/zbase32/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= Base32 Encoder/Decoder -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_darcs>=1.2.11:devel/py-setuptools_darcs@${FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_darcs>=1.2.11:devel/py-setuptools_darcs@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:2.7 Modified: head/databases/emma/Makefile ============================================================================== --- head/databases/emma/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/emma/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -10,7 +10,7 @@ MASTER_SITES= http://www.fastflo.de/files/emma/downloa MAINTAINER= jun-g@daemonfreaks.com COMMENT= Extendable MySQL managing assistant -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.3:databases/py-MySQLdb@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.3:databases/py-MySQLdb@${PY_FLAVOR} USES= python:2.7 USE_GNOME= pygtk2 Modified: head/databases/gadfly/Makefile ============================================================================== --- head/databases/gadfly/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/gadfly/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -10,7 +10,7 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= SQL database written in Python -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/kjbuckets.so:devel/py-kjbuckets@${FLAVOR} +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/kjbuckets.so:devel/py-kjbuckets@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist Modified: head/databases/mtools-mongodb/Makefile ============================================================================== --- head/databases/mtools-mongodb/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/mtools-mongodb/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,9 +14,9 @@ COMMENT= Setup test environments; parse, filter and vi LICENSE= APACHE20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=2.0:sysutils/py-psutil@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pymongo>0:databases/pymongo@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=2.0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pymongo>0:databases/pymongo@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} USE_PYTHON= autoplist distutils USES= python:2.7 Modified: head/databases/mydbf2mysql/Makefile ============================================================================== --- head/databases/mydbf2mysql/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/mydbf2mysql/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,8 +11,8 @@ DISTNAME= MyDBF2MySQL-${PORTVERSION} MAINTAINER= andrey.polyakov@unix.net COMMENT= Flexible tool for DBF import into MySQL -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:databases/py-MySQLdb@${FLAVOR} -RUN_DEPENDS+= ydbf>=0.0.1:devel/py-ydbf@${FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:databases/py-MySQLdb@${PY_FLAVOR} +RUN_DEPENDS+= ydbf>=0.0.1:devel/py-ydbf@${PY_FLAVOR} USES= python:2.7 tar:bzip2 USE_PYTHON= distutils autoplist Modified: head/databases/openark-kit/Makefile ============================================================================== --- head/databases/openark-kit/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/openark-kit/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,7 +11,7 @@ COMMENT= Common utilities for MySQL LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:databases/py-MySQLdb@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:databases/py-MySQLdb@${PY_FLAVOR} NO_ARCH= yes USES= python:2.7 Modified: head/databases/pg_activity/Makefile ============================================================================== --- head/databases/pg_activity/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/pg_activity/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -11,8 +11,8 @@ COMMENT= Htop like application for PostgreSQL server a LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>=0:databases/py-psycopg2@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>=0:databases/py-psycopg2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} OPTIONS_DEFINE= DOCS Modified: head/databases/pgworksheet/Makefile ============================================================================== --- head/databases/pgworksheet/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/pgworksheet/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,7 +12,7 @@ COMMENT= Simple PostreSQL GUI front end LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pyPgSQL/libpq/__init__.py:databases/py-pyPgSQL@${FLAVOR} +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pyPgSQL/libpq/__init__.py:databases/py-pyPgSQL@${PY_FLAVOR} USES= pgsql python:2.7 tar:bzip2 USE_GNOME= pygtk2 Modified: head/databases/powa-web/Makefile ============================================================================== --- head/databases/powa-web/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/powa-web/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -12,9 +12,9 @@ COMMENT= PostgreSQL Workload Analyzer is a performance LICENSE= PostgreSQL -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0:databases/py-sqlalchemy10@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tornado>=2.0:www/py-tornado@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=1.0:databases/py-sqlalchemy10@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tornado>=2.0:www/py-tornado@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist Modified: head/databases/py-Elixir/Makefile ============================================================================== --- head/databases/py-Elixir/Makefile Wed Jun 20 16:59:37 2018 (r472883) +++ head/databases/py-Elixir/Makefile Wed Jun 20 17:05:41 2018 (r472884) @@ -14,7 +14,7 @@ COMMENT= Declarative Mapper for SQLAlchemy LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.4.0:databases/py-sqlalchemy10@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy10>=0.4.0:databases/py-sqlalchemy10@${PY_FLAVOR} USES= python USE_PYTHON= distutils autoplist *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Wed Jun 20 17:11:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 896DD1024E59; Wed, 20 Jun 2018 17:11:49 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3650985B73; Wed, 20 Jun 2018 17:11:49 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 177E0251F0; Wed, 20 Jun 2018 17:11:49 +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 w5KHBmft081977; Wed, 20 Jun 2018 17:11:48 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHBmpi081975; Wed, 20 Jun 2018 17:11:48 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806201711.w5KHBmpi081975@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 20 Jun 2018 17:11:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472885 - head/www/p5-Selenium-Remote-Driver X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/www/p5-Selenium-Remote-Driver X-SVN-Commit-Revision: 472885 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:11:49 -0000 Author: pi Date: Wed Jun 20 17:11:48 2018 New Revision: 472885 URL: https://svnweb.freebsd.org/changeset/ports/472885 Log: www/p5-Selenium-Remote-Driver: update 1.20 -> 1.28 PR: 229185 Submitted by: Tomohiro Hosaka Relnotes: https://metacpan.org/changes/distribution/Selenium-Remote-Driver Modified: head/www/p5-Selenium-Remote-Driver/Makefile head/www/p5-Selenium-Remote-Driver/distinfo head/www/p5-Selenium-Remote-Driver/pkg-plist Modified: head/www/p5-Selenium-Remote-Driver/Makefile ============================================================================== --- head/www/p5-Selenium-Remote-Driver/Makefile Wed Jun 20 17:05:41 2018 (r472884) +++ head/www/p5-Selenium-Remote-Driver/Makefile Wed Jun 20 17:11:48 2018 (r472885) @@ -1,36 +1,36 @@ # $FreeBSD$ PORTNAME= Selenium-Remote-Driver -PORTVERSION= 1.20 +PORTVERSION= 1.28 CATEGORIES= www perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:GEMPESAW +MASTER_SITE_SUBDIR= CPAN:TEODESIAN PKGNAMEPREFIX= p5- -#DISTFILES= ${PORTNAME}-0.23${EXTRACT_SUFX} -#WRKSRC= ${WRKDIR}/${PORTNAME}-0.23 MAINTAINER= pi@FreeBSD.org COMMENT= Perl Interface for Selenium Remote Driver LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE -TEST_DEPENDS= p5-Test-Time>=0:devel/p5-Test-Time \ - p5-Test-Warn>=0:devel/p5-Test-Warn -BUILD_DEPENDS= p5-Archive-Extract>=0.74:archivers/p5-Archive-Extract \ - p5-Archive-Zip>=1.39:archivers/p5-Archive-Zip \ +RUN_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ + p5-Clone>=0:devel/p5-Clone \ p5-File-Which>=0:sysutils/p5-File-Which \ + p5-HTTP-Message>=0:www/p5-HTTP-Message \ p5-IO-String>=0:devel/p5-IO-String \ - p5-List-MoreUtils>=0:lang/p5-List-MoreUtils \ + p5-JSON>=0:converters/p5-JSON \ + p5-libwww>=0:www/p5-libwww \ + p5-Moo>=1.005:devel/p5-Moo \ + p5-Sub-Install>=0:devel/p5-Sub-Install \ + p5-Test-LongString>=0:devel/p5-Test-LongString \ + p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-XML-Simple>=0:textproc/p5-XML-Simple \ - p5-HTTP-Message>=6.06:www/p5-HTTP-Message \ - p5-JSON>=2.90:converters/p5-JSON \ - p5-libwww>=5.829:www/p5-libwww \ - p5-Moo>=1:devel/p5-Moo \ - p5-Sub-Install>=0.928:devel/p5-Sub-Install \ - p5-Test-LongString>=0.17:devel/p5-Test-LongString \ - p5-Try-Tiny>=0.18:lang/p5-Try-Tiny \ - p5-namespace-clean>=0.25:devel/p5-namespace-clean -RUN_DEPENDS:= ${BUILD_DEPENDS} + p5-namespace-clean>=0:devel/p5-namespace-clean +TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Test-Fatal>=0:devel/p5-Test-Fatal \ + p5-Test-LWP-UserAgent>=0:www/p5-Test-LWP-UserAgent \ + p5-Test-Time>=0:devel/p5-Test-Time \ + p5-Test-Warn>=0:devel/p5-Test-Warn USES= perl5 shebangfix SHEBANG_FILES= driver-example.pl Modified: head/www/p5-Selenium-Remote-Driver/distinfo ============================================================================== --- head/www/p5-Selenium-Remote-Driver/distinfo Wed Jun 20 17:05:41 2018 (r472884) +++ head/www/p5-Selenium-Remote-Driver/distinfo Wed Jun 20 17:11:48 2018 (r472885) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495819186 -SHA256 (Selenium-Remote-Driver-1.20.tar.gz) = c8b0aec6352e86948420b1c72f990b8ddf4c5c598ca64479d768503926f8c3e9 -SIZE (Selenium-Remote-Driver-1.20.tar.gz) = 4216110 +TIMESTAMP = 1529511157 +SHA256 (Selenium-Remote-Driver-1.28.tar.gz) = fc715bf86a691bfb7c6110ea2aa188a6ed70c6fd1146b7e2f179500a19dee918 +SIZE (Selenium-Remote-Driver-1.28.tar.gz) = 4214769 Modified: head/www/p5-Selenium-Remote-Driver/pkg-plist ============================================================================== --- head/www/p5-Selenium-Remote-Driver/pkg-plist Wed Jun 20 17:05:41 2018 (r472884) +++ head/www/p5-Selenium-Remote-Driver/pkg-plist Wed Jun 20 17:11:48 2018 (r472885) @@ -17,6 +17,7 @@ %%PERL5_MAN3%%/Selenium::Remote::Mock::Commands.3.gz %%PERL5_MAN3%%/Selenium::Remote::Mock::RemoteConnection.3.gz %%PERL5_MAN3%%/Selenium::Remote::RemoteConnection.3.gz +%%PERL5_MAN3%%/Selenium::Remote::Spec.3.gz %%PERL5_MAN3%%/Selenium::Remote::WDKeys.3.gz %%PERL5_MAN3%%/Selenium::Remote::WebElement.3.gz %%PERL5_MAN3%%/Selenium::Waiter.3.gz @@ -52,6 +53,7 @@ %%SITE_PERL%%/Selenium/Remote/Mock/Commands.pm %%SITE_PERL%%/Selenium/Remote/Mock/RemoteConnection.pm %%SITE_PERL%%/Selenium/Remote/RemoteConnection.pm +%%SITE_PERL%%/Selenium/Remote/Spec.pm %%SITE_PERL%%/Selenium/Remote/WDKeys.pm %%SITE_PERL%%/Selenium/Remote/WebElement.pm %%SITE_PERL%%/Selenium/Remote/driver-example.pl From owner-svn-ports-head@freebsd.org Wed Jun 20 17:22:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F53C10254D9; Wed, 20 Jun 2018 17:22:42 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from edna.lautre.net (edna.lautre.net [80.67.160.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.lautre.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3692F862D6; Wed, 20 Jun 2018 17:22:41 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (graf.pompo.net [78.225.128.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by edna.lautre.net (Postfix) with ESMTPSA id 0164E4505A; Wed, 20 Jun 2018 19:22:31 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id 1823F2413D5; Wed, 20 Jun 2018 19:22:31 +0200 (CEST) Date: Wed, 20 Jun 2018 19:22:31 +0200 From: Thierry Thomas To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472845 - in head/graphics: . engauge-digitizer Message-ID: <20180620172231.GQ64408@graf.pompo.net> Mail-Followup-To: Yuri Victorovich , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201806200526.w5K5Qu3U084329@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="Fba/0zbH8Xs+Fj9o" Content-Disposition: inline In-Reply-To: <201806200526.w5K5Qu3U084329@repo.freebsd.org> X-Operating-System: FreeBSD 11.1-STABLE amd64 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xF1C516B3C8359753 User-Agent: Mutt/1.10.0 (2018-05-17) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:22:42 -0000 --Fba/0zbH8Xs+Fj9o Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le mer. 20 juin 18 =E0 7:26:56 +0200, Yuri Victorovich =E9crivait=A0: > Author: yuri > Date: Wed Jun 20 05:26:56 2018 > New Revision: 472845 > URL: https://svnweb.freebsd.org/changeset/ports/472845 >=20 > Log: > New port: graphics/engauge-digitizer: Extract data points from images o= f graphs This is a revival of math/digitizer $ grep digitizer /usr/ports/MOVED math/digitizer||2013-07-26|Has expired: Depends on Qt 3.x It is still listed at . Regards --=20 Th. Thomas. --Fba/0zbH8Xs+Fj9o Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJ8BAEBCgBmBQJbKo1WXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRFNTM2QkU4NTM4NTM5OUQwMEI2RkFBNzZG MUM1MTZCM0M4MzU5NzUzAAoJEPHFFrPINZdTJLcQALdRDwIWK1u7bkzc3DpdRmed OhM77zF4/AD+tpUuSob8MECehKgM9DC2OBIpmEnAT0Jq6VEscUurgBschn22Wayu vjxMPe7AuE6Q3eknPGQJjxdSgDKhiBQUtha23YjieP9K4Fdd7KtoZxHxKOyq5U4Z nxHjjAyfpn0XQl9oi/zkqTSi5QP3JFH3qJ3g8JxbZDVu5I/N91WOdh6jQ+UUbuVD dW4w8bGIwGa9LgGT9+FKxyBxFCDo8dwhrTfCGYVj2x15eYJJ1PWvvvY9HWlelRlm ZmyAxx6n9ZV1QTXUrAnhXs1kCJsvyXy5YV7j16EusZJuIUvlwxTPbNiJa2RyV3H+ nnglVgGKkKOqTeJQegyNX8/ROB5e3D/MhLCqJ1ziyksClssSAWZCCmL0ufOr3q0B 1Yinp1xXxcGDDyuhNMf2IiQeGvHsP1eidYhPHiUCUcTQpjgUvnNvifgRZpSxVulY dCIQlQQjZaFinCgOHTMZe8kja0JB7/HledMut3mI+7h3gCBH0iPm4sQD/hev+XTb N6Bh61/Gi6QJylxpYyuMF87CrD5wczqpmIMYzWb7NdfAKQFXsr01fK3FtwU8cLhr kksxFeGNphvJXOjeWE4s9RHZuk83YLgR2/KYEejmC9Sj6x8zVHS9z5o7kg+RvE8C QP8dw25zwLN87NeHggsy =TI3h -----END PGP SIGNATURE----- --Fba/0zbH8Xs+Fj9o-- From owner-svn-ports-head@freebsd.org Wed Jun 20 17:23:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B31E61025565; Wed, 20 Jun 2018 17:23:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 614D6863D9; Wed, 20 Jun 2018 17:23:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 421DA254C8; Wed, 20 Jun 2018 17:23:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KHNbhX089770; Wed, 20 Jun 2018 17:23:37 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHNa2O089766; Wed, 20 Jun 2018 17:23:36 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201806201723.w5KHNa2O089766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Wed, 20 Jun 2018 17:23:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472886 - head/devel/mdb X-SVN-Group: ports-head X-SVN-Commit-Author: jhb X-SVN-Commit-Paths: head/devel/mdb X-SVN-Commit-Revision: 472886 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:23:37 -0000 Author: jhb (src,doc committer) Date: Wed Jun 20 17:23:36 2018 New Revision: 472886 URL: https://svnweb.freebsd.org/changeset/ports/472886 Log: Update mdb for kernels with PTI. Recognize fast_syscall_common as a trapframe generator. The 'syscall' entry points now use this symbol in kernels with PTI. Reviewed by: bdrewery Differential Revision: https://reviews.freebsd.org/D15828 Modified: head/devel/mdb/Makefile head/devel/mdb/distinfo Modified: head/devel/mdb/Makefile ============================================================================== --- head/devel/mdb/Makefile Wed Jun 20 17:11:48 2018 (r472885) +++ head/devel/mdb/Makefile Wed Jun 20 17:23:36 2018 (r472886) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mdb -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= devel MAINTAINER= jhb@FreeBSD.org @@ -14,7 +14,7 @@ USES= uidfix USE_GITHUB= yes GH_ACCOUNT= bsdjhb GH_PROJECT= illumos-gate -GH_TAGNAME= 291c37a43d +GH_TAGNAME= fc55b6de75 ONLY_FOR_ARCHS= amd64 Modified: head/devel/mdb/distinfo ============================================================================== --- head/devel/mdb/distinfo Wed Jun 20 17:11:48 2018 (r472885) +++ head/devel/mdb/distinfo Wed Jun 20 17:23:36 2018 (r472886) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516319136 -SHA256 (bsdjhb-illumos-gate-0.2-291c37a43d_GH0.tar.gz) = e155a771d37a1e597cd783f4977734361c18b89456947a5a6ce44e5d2faf087f -SIZE (bsdjhb-illumos-gate-0.2-291c37a43d_GH0.tar.gz) = 115105258 +TIMESTAMP = 1520637045 +SHA256 (bsdjhb-illumos-gate-0.3-fc55b6de75_GH0.tar.gz) = d60ab54561e1f1b06568d1303e75077808508611f4455638d59f6708ee027db5 +SIZE (bsdjhb-illumos-gate-0.3-fc55b6de75_GH0.tar.gz) = 115106753 From owner-svn-ports-head@freebsd.org Wed Jun 20 17:28:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C46091025777; Wed, 20 Jun 2018 17:28:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 748A0865D4; Wed, 20 Jun 2018 17:28:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 517F6254CC; Wed, 20 Jun 2018 17:28:06 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KHS6Yj090074; Wed, 20 Jun 2018 17:28:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHS6IO090073; Wed, 20 Jun 2018 17:28:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806201728.w5KHS6IO090073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 20 Jun 2018 17:28:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472887 - head/www/py-qt5-webkit X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/www/py-qt5-webkit X-SVN-Commit-Revision: 472887 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:28:06 -0000 Author: antoine Date: Wed Jun 20 17:28:05 2018 New Revision: 472887 URL: https://svnweb.freebsd.org/changeset/ports/472887 Log: Fix depends Modified: head/www/py-qt5-webkit/Makefile Modified: head/www/py-qt5-webkit/Makefile ============================================================================== --- head/www/py-qt5-webkit/Makefile Wed Jun 20 17:23:36 2018 (r472886) +++ head/www/py-qt5-webkit/Makefile Wed Jun 20 17:28:05 2018 (r472887) @@ -8,7 +8,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:devel/py-sip@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${PY_FLAVOR} +RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${PY_FLAVOR} CONFIGURE_ARGS= --enable QtWebKit PYQT_DIST= yes From owner-svn-ports-head@freebsd.org Wed Jun 20 17:29:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBC7A1025871; Wed, 20 Jun 2018 17:29:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 996C186727; Wed, 20 Jun 2018 17:29:04 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7C121254CF; Wed, 20 Jun 2018 17:29:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KHT4PT090223; Wed, 20 Jun 2018 17:29:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHT4gG090222; Wed, 20 Jun 2018 17:29:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806201729.w5KHT4gG090222@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 20 Jun 2018 17:29:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472888 - head/devel/hgview X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/devel/hgview X-SVN-Commit-Revision: 472888 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:29:05 -0000 Author: antoine Date: Wed Jun 20 17:29:04 2018 New Revision: 472888 URL: https://svnweb.freebsd.org/changeset/ports/472888 Log: Fix build Modified: head/devel/hgview/Makefile Modified: head/devel/hgview/Makefile ============================================================================== --- head/devel/hgview/Makefile Wed Jun 20 17:28:05 2018 (r472887) +++ head/devel/hgview/Makefile Wed Jun 20 17:29:04 2018 (r472888) @@ -22,7 +22,7 @@ BUILD_DEPENDS= hg:devel/mercurial \ NO_ARCH= yes USES= gmake pyqt:4 python:2.7 -USE_PYQT= gui_run qscintilla2_run xml_run +USE_PYQT= gui_run qscintilla2_run xml_build USE_PYTHON= distutils PORTDOCS= * From owner-svn-ports-head@freebsd.org Wed Jun 20 17:31:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0CE01025A45; Wed, 20 Jun 2018 17:31:28 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 71CE48695C; Wed, 20 Jun 2018 17:31:28 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5432D25510; Wed, 20 Jun 2018 17:31:28 +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 w5KHVSvv091954; Wed, 20 Jun 2018 17:31:28 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHVRfO091953; Wed, 20 Jun 2018 17:31:27 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201806201731.w5KHVRfO091953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 20 Jun 2018 17:31:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472889 - head/korean/aleefonts-ttf X-SVN-Group: ports-head X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: head/korean/aleefonts-ttf X-SVN-Commit-Revision: 472889 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:31:28 -0000 Author: jkim Date: Wed Jun 20 17:31:27 2018 New Revision: 472889 URL: https://svnweb.freebsd.org/changeset/ports/472889 Log: Update to 13.3. Note there is no functional change in font files. Modified: head/korean/aleefonts-ttf/Makefile head/korean/aleefonts-ttf/distinfo Modified: head/korean/aleefonts-ttf/Makefile ============================================================================== --- head/korean/aleefonts-ttf/Makefile Wed Jun 20 17:29:04 2018 (r472888) +++ head/korean/aleefonts-ttf/Makefile Wed Jun 20 17:31:27 2018 (r472889) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= aleefonts -PORTVERSION= 13.1 +PORTVERSION= 13.3 CATEGORIES= korean x11-fonts MASTER_SITES= DEBIAN/pool/main/f/fonts-alee PKGNAMESUFFIX= -ttf Modified: head/korean/aleefonts-ttf/distinfo ============================================================================== --- head/korean/aleefonts-ttf/distinfo Wed Jun 20 17:29:04 2018 (r472888) +++ head/korean/aleefonts-ttf/distinfo Wed Jun 20 17:31:27 2018 (r472889) @@ -1,2 +1,3 @@ -SHA256 (fonts-alee_13.1.tar.xz) = 84eb87d0c2463dea2cc64fce1532ce641cc26bf12a88a62092267951281417dc -SIZE (fonts-alee_13.1.tar.xz) = 210564 +TIMESTAMP = 1529515203 +SHA256 (fonts-alee_13.3.tar.xz) = 130170f3e3fc2696bc74aa1111066c2e08e7e0c0dc19fa0984f46fad7d8b6cb1 +SIZE (fonts-alee_13.3.tar.xz) = 213160 From owner-svn-ports-head@freebsd.org Wed Jun 20 17:33:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC48C1025C99; Wed, 20 Jun 2018 17:33:40 +0000 (UTC) (envelope-from yuri@freebsd.org) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5AC4986C54; Wed, 20 Jun 2018 17:33:40 +0000 (UTC) (envelope-from yuri@freebsd.org) Received: from yv.noip.me (c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id w5KHXWmL049486 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Wed, 20 Jun 2018 10:33:32 -0700 (PDT) (envelope-from yuri@freebsd.org) X-Authentication-Warning: shell1.rawbw.com: Host c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132] claimed to be yv.noip.me Reply-To: yuri@freebsd.org Subject: Re: svn commit: r472845 - in head/graphics: . engauge-digitizer To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201806200526.w5K5Qu3U084329@repo.freebsd.org> <20180620172231.GQ64408@graf.pompo.net> From: Yuri Message-ID: Date: Wed, 20 Jun 2018 10:33:31 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180620172231.GQ64408@graf.pompo.net> Content-Language: en-US Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:33:41 -0000 On 06/20/18 10:22, Thierry Thomas wrote: > This is a revival of math/digitizer > > $ grep digitizer /usr/ports/MOVED > math/digitizer||2013-07-26|Has expired: Depends on Qt 3.x > > It is still listed at. Ok, thanks! I will replace with the restored version. Yuri From owner-svn-ports-head@freebsd.org Wed Jun 20 17:42:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E89221000503; Wed, 20 Jun 2018 17:42:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 983EB87494; Wed, 20 Jun 2018 17:42:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7986B25811; Wed, 20 Jun 2018 17:42:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KHgZNq000352; Wed, 20 Jun 2018 17:42:35 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHgZiD000351; Wed, 20 Jun 2018 17:42:35 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201806201742.w5KHgZiD000351@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Wed, 20 Jun 2018 17:42:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472890 - head/Mk X-SVN-Group: ports-head X-SVN-Commit-Author: jhb X-SVN-Commit-Paths: head/Mk X-SVN-Commit-Revision: 472890 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:42:36 -0000 Author: jhb (src,doc committer) Date: Wed Jun 20 17:42:35 2018 New Revision: 472890 URL: https://svnweb.freebsd.org/changeset/ports/472890 Log: Set OS versions to target system versions for CROSS_SYSROOT. When cross-building a package via a CROSS_SYSROOT, set OSVERSION, _OSRELEASE, and OSREL to the target OS version. OSVERSION is derived from the header in the sysroot. _OSRELEASE cannot be easily derived from a sysroot as it is a property of a kernel, so instead generate a "fake" _OSRELEASE from the OSVERSION, but use a "-CROSS" branch name that will hopefully fail in any places that make assumptions about branch names. Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D15812 Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Jun 20 17:31:27 2018 (r472889) +++ head/Mk/bsd.port.mk Wed Jun 20 17:42:35 2018 (r472890) @@ -1148,6 +1148,15 @@ ARCH= ${CROSS_TOOLCHAIN:C,-.*$,,} .endif _EXPORTED_VARS+= ARCH +# Get operating system versions for a cross build +.if defined(CROSS_SYSROOT) +.if !exists(${CROSS_SYSROOT}/usr/include/sys/param.h) +.error CROSS_SYSROOT does not include /usr/include/sys/param.h. +.endif +OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < ${CROSS_SYSROOT}/usr/include/sys/param.h +_OSRELEASE!= ${AWK} -v version=${OSVERSION} 'END { printf("%d.%d-CROSS", version / 100000, version / 1000 % 100) }' < /dev/null +.endif + # Get the operating system type .if !defined(OPSYS) OPSYS!= ${UNAME} -s From owner-svn-ports-head@freebsd.org Wed Jun 20 17:42:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 167CA1000529; Wed, 20 Jun 2018 17:42:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B61638755F; Wed, 20 Jun 2018 17:42:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 964D025813; Wed, 20 Jun 2018 17:42:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KHgiqD000484; Wed, 20 Jun 2018 17:42:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHgiom000482; Wed, 20 Jun 2018 17:42:44 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806201742.w5KHgiom000482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 17:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472891 - in head: . graphics graphics/engauge-digitizer X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: . graphics graphics/engauge-digitizer X-SVN-Commit-Revision: 472891 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:42:45 -0000 Author: yuri Date: Wed Jun 20 17:42:43 2018 New Revision: 472891 URL: https://svnweb.freebsd.org/changeset/ports/472891 Log: Remove graphics/engauge-digitizer to be re-added from math/digitizer Deleted: head/graphics/engauge-digitizer/ Modified: head/MOVED head/graphics/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Wed Jun 20 17:42:35 2018 (r472890) +++ head/MOVED Wed Jun 20 17:42:43 2018 (r472891) @@ -10284,3 +10284,4 @@ x11-themes/adwaita-common||2018-06-19|Move to flavored x11-themes/adwaita-qt4|x11-themes/adwaita-qt@qt4|2018-06-19|Move to flavored version x11-themes/adwaita-qt5|x11-themes/adwaita-qt@qt5|2018-06-19|Move to flavored version net-p2p/qbittorrent-nox11|net-p2p/qbittorrent@nox|2018-06-20|Moved to a flavored version +graphics/engauge-digitizer||2018-06-20|Delete to be re-added from math/digitizer Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Jun 20 17:42:35 2018 (r472890) +++ head/graphics/Makefile Wed Jun 20 17:42:43 2018 (r472891) @@ -161,7 +161,6 @@ SUBDIR += electrix SUBDIR += embree SUBDIR += enblend - SUBDIR += engauge-digitizer SUBDIR += entangle SUBDIR += eog SUBDIR += eog-plugins From owner-svn-ports-head@freebsd.org Wed Jun 20 17:49:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1C841000DAC; Wed, 20 Jun 2018 17:49:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 824156A55C; Wed, 20 Jun 2018 17:49:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5CCBA2581F; Wed, 20 Jun 2018 17:49:23 +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 w5KHnN1L000950; Wed, 20 Jun 2018 17:49:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KHnN8I000949; Wed, 20 Jun 2018 17:49:23 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806201749.w5KHnN8I000949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 20 Jun 2018 17:49:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472892 - head/www/py-qt5-webkit X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/www/py-qt5-webkit X-SVN-Commit-Revision: 472892 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 17:49:24 -0000 Author: antoine Date: Wed Jun 20 17:49:22 2018 New Revision: 472892 URL: https://svnweb.freebsd.org/changeset/ports/472892 Log: Remove redundant depend, there is already USE_PYQT Modified: head/www/py-qt5-webkit/Makefile Modified: head/www/py-qt5-webkit/Makefile ============================================================================== --- head/www/py-qt5-webkit/Makefile Wed Jun 20 17:42:43 2018 (r472891) +++ head/www/py-qt5-webkit/Makefile Wed Jun 20 17:49:22 2018 (r472892) @@ -8,7 +8,6 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt5 toolkit, QtWebKit module BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:devel/py-sip@${PY_FLAVOR} -RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT5_VERSION}:x11-toolkits/py-qt5-gui@${PY_FLAVOR} CONFIGURE_ARGS= --enable QtWebKit PYQT_DIST= yes From owner-svn-ports-head@freebsd.org Wed Jun 20 18:08:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 582121001C12; Wed, 20 Jun 2018 18:08:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F29146B2DA; Wed, 20 Jun 2018 18:08:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D356225BD2; Wed, 20 Jun 2018 18:08:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KI8V13011635; Wed, 20 Jun 2018 18:08:31 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KI8UCV011629; Wed, 20 Jun 2018 18:08:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806201808.w5KI8UCV011629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 18:08:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472893 - in head: . graphics graphics/engauge-digitizer graphics/engauge-digitizer/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: . graphics graphics/engauge-digitizer graphics/engauge-digitizer/files X-SVN-Commit-Revision: 472893 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 18:08:32 -0000 Author: yuri Date: Wed Jun 20 18:08:30 2018 New Revision: 472893 URL: https://svnweb.freebsd.org/changeset/ports/472893 Log: Re-add port: graphics/engauge-digitizer: add from math/digitizer@323747 It was previously deleted on 2013-07-26. Added: head/graphics/engauge-digitizer/ - copied from r323747, head/math/digitizer/ Deleted: head/graphics/engauge-digitizer/files/ Modified: head/MOVED head/graphics/Makefile head/graphics/engauge-digitizer/Makefile head/graphics/engauge-digitizer/distinfo head/graphics/engauge-digitizer/pkg-descr head/graphics/engauge-digitizer/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Wed Jun 20 17:49:22 2018 (r472892) +++ head/MOVED Wed Jun 20 18:08:30 2018 (r472893) @@ -4551,7 +4551,6 @@ korean/kde3-i18n||2013-07-26|Has expired: Depends on Q lang/gambas||2013-07-26|Has expired: Depends on Qt 3.x lang/klogoturtle||2013-07-26|Has expired: Depends on Qt 3.x mail/kcheckgmail||2013-07-26|Has expired: Depends on Qt 3.x -math/digitizer||2013-07-26|Has expired: Depends on Qt 3.x math/fung-calc||2013-07-26|Has expired: Depends on Qt 3.x math/koctave||2013-07-26|Has expired: Depends on Qt 3.x math/kseg||2013-07-26|Has expired: Depends on Qt 3.x @@ -10284,4 +10283,4 @@ x11-themes/adwaita-common||2018-06-19|Move to flavored x11-themes/adwaita-qt4|x11-themes/adwaita-qt@qt4|2018-06-19|Move to flavored version x11-themes/adwaita-qt5|x11-themes/adwaita-qt@qt5|2018-06-19|Move to flavored version net-p2p/qbittorrent-nox11|net-p2p/qbittorrent@nox|2018-06-20|Moved to a flavored version -graphics/engauge-digitizer||2018-06-20|Delete to be re-added from math/digitizer +math/digitizer|graphics/engauge-digitizer|2018-06-20|The previously deleted port math/digitizer is now graphics/engauge-digitizer Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Jun 20 17:49:22 2018 (r472892) +++ head/graphics/Makefile Wed Jun 20 18:08:30 2018 (r472893) @@ -161,6 +161,7 @@ SUBDIR += electrix SUBDIR += embree SUBDIR += enblend + SUBDIR += engauge-digitizer SUBDIR += entangle SUBDIR += eog SUBDIR += eog-plugins Modified: head/graphics/engauge-digitizer/Makefile ============================================================================== --- head/math/digitizer/Makefile Fri Jul 26 19:14:50 2013 (r323747) +++ head/graphics/engauge-digitizer/Makefile Wed Jun 20 18:08:30 2018 (r472893) @@ -1,66 +1,59 @@ -# New ports collection makefile for: digitizer -# Date created: 27 May 2006 -# Whom: Thierry Thomas -# # $FreeBSD$ -# -PORTNAME= digitizer -PORTVERSION= 4.1 -PORTREVISION= 9 -CATEGORIES= math graphics -MASTER_SITES= SF/${PORTNAME}/Engauge%20Digitizer/${PORTNAME}-${PORTVERSION} -DISTNAME= digit-src-${PORTVERSION:S/./_/} +PORTNAME= engauge-digitizer +DISTVERSIONPREFIX= v +DISTVERSION= 10.7.6-2 +DISTVERSIONSUFFIX= -g7ce911c2 +PORTREVISION= 1 +CATEGORIES= graphics math science -MAINTAINER= thierry@FreeBSD.org -COMMENT= Engauge Digitizer - Digitizing software to convert graphs into numbers +MAINTAINER= yuri@FreeBSD.org +COMMENT= Extract data points from images of graphs -BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake -LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3 +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE -WRKSRC= ${WRKDIR}/engauge +LIB_DEPENDS= libfftw3.so:math/fftw3 \ + liblog4cpp.so:devel/log4cpp \ + libopenjp2.so:graphics/openjpeg \ + libpoppler-qt5.so:graphics/poppler-qt5 -USE_QT_VER= 3 -QTDIR?= ${QT_PREFIX} -MAKE_ENV= QMAKESPEC="${LOCALBASE}/share/qt/mkspecs/freebsd-g++" \ - QTDIR="${QTDIR}" +USES= desktop-file-utils qmake +USE_GITHUB= yes +GH_ACCOUNT= markummitchell +USE_QT5= core gui printsupport sql xml widgets buildtools_build +USE_GL= gl +CONFIGURE_ENV= OPENJPEG_INCLUDE=${PREFIX}/include/openjpeg-2.3 OPENJPEG_LIB=${PREFIX}/lib \ + POPPLER_INCLUDE=${PREFIX}/include/poppler/qt5 POPPLER_LIB=${PREFIX}/lib +QMAKE_ARGS= "CONFIG+=jpeg2000 pdf" -DESKTOP_ENTRIES= "Engauge Digitizer" \ - "Digitizing software to convert graphs into numbers" \ - "${DATADIR}/lo16-app-digitizer.png" \ - "engauge" \ - "Education;Math;" \ - true +OPTIONS_DEFINE= NLS DOCS +OPTIONS_SUB= yes -.if !defined(NOPORTDOCS) -DOCS= README -.endif +DOCS_USE= QT5=help,linguist_build -pre-configure: -.if !defined(WITH_DEBUG) - ${REINPLACE_CMD} -e '/^CONFIG/s/debug/release/' ${WRKSRC}/digitizer.pro -.endif - ${REINPLACE_CMD} -e 's|Path1("usermanual")|Path1("${DOCSDIR}/usermanual")|' \ - ${WRKSRC}/src/digitmain.cpp +do-patch-NLS-on: + @${REINPLACE_CMD} -e 's|QCoreApplication::applicationDirPath () + "/translations",|"${DATADIR}/translations",|' ${WRKSRC}/src/Translator/TranslatorContainer.cpp -pre-build: - cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} qmake -unix digitizer.pro +post-build-NLS-on: + @cd ${WRKSRC} && lrelease engauge.pro +post-build-DOCS-on: + @cd ${WRKSRC}/help && ./build + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/engauge ${PREFIX}/bin - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/src/img/lo16-app-digitizer.png \ - ${DATADIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/usermanual - ${INSTALL_DATA} ${DOCS:S|^|${WRKSRC}/|} ${DOCSDIR} - cd ${WRKSRC}/usermanual && ${FIND} . -type f -depth 1 \ - -exec ${INSTALL_DATA} {} ${DOCSDIR}/usermanual \; - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/samples && ${FIND} . -type f -depth 1 \ - -exec ${INSTALL_DATA} {} ${EXAMPLESDIR} \; - @${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}." -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/bin/engauge ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps + ${GZIP_CMD} < ${WRKSRC}/src/img/${PORTNAME}.svg > ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/${PORTNAME}.svgz + ${INSTALL_DATA} ${WRKSRC}/dev/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications/${PORTNAME}.desktop + +do-install-NLS-on: + @${MKDIR} ${STAGEDIR}${DATADIR}/translations + ${INSTALL_DATA} ${WRKSRC}/translations/*.qm ${STAGEDIR}${DATADIR}/translations + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/documentation/engauge.qch ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/bin/documentation/engauge.qhc ${STAGEDIR}${DOCSDIR} .include Modified: head/graphics/engauge-digitizer/distinfo ============================================================================== --- head/math/digitizer/distinfo Fri Jul 26 19:14:50 2013 (r323747) +++ head/graphics/engauge-digitizer/distinfo Wed Jun 20 18:08:30 2018 (r472893) @@ -1,2 +1,3 @@ -SHA256 (digit-src-4_1.tar.gz) = a9dc871d57b51cf874633d6565a2ac5bf38681050a152a94122d497bd19e9d24 -SIZE (digit-src-4_1.tar.gz) = 5831396 +TIMESTAMP = 1529465389 +SHA256 (markummitchell-engauge-digitizer-v10.7.6-2-g7ce911c2_GH0.tar.gz) = ce1ca9a91a4505adf91150c2abb037d1642558b1b02b2035a4e623dad7867647 +SIZE (markummitchell-engauge-digitizer-v10.7.6-2-g7ce911c2_GH0.tar.gz) = 68504322 Modified: head/graphics/engauge-digitizer/pkg-descr ============================================================================== --- head/math/digitizer/pkg-descr Fri Jul 26 19:14:50 2013 (r323747) +++ head/graphics/engauge-digitizer/pkg-descr Wed Jun 20 18:08:30 2018 (r472893) @@ -1,6 +1,9 @@ -This open source digitizing software converts an image file showing a graph or -a map into numbers. The image file can come from a scanner, digital camera or -screenshot. The numbers can be read on the screen, and written or copied to a -spreadsheet. +The Engauge Digitizer tool accepts image files (like PNG, JPEG and TIFF) +containing graphs, and recovers the data points from those graphs. The resulting +data points are usually used as input to other software applications. +Conceptually, Engauge Digitizer is the opposite of a graphing tool that converts +data points to graphs. The process is shown below - an image file is imported, +digitized within Engauge, and exported as a table of numeric data to a text +file. Work can be saved into an Engauge DIG file. -WWW: http://digitizer.sourceforge.net/ +WWW: http://markummitchell.github.io/engauge-digitizer/ Modified: head/graphics/engauge-digitizer/pkg-plist ============================================================================== --- head/math/digitizer/pkg-plist Fri Jul 26 19:14:50 2013 (r323747) +++ head/graphics/engauge-digitizer/pkg-plist Wed Jun 20 18:08:30 2018 (r472893) @@ -1,150 +1,19 @@ bin/engauge -%%DATADIR%%/lo16-app-digitizer.png -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/usermanual/README -%%PORTDOCS%%%%DOCSDIR%%/usermanual/animation.bmp -%%PORTDOCS%%%%DOCSDIR%%/usermanual/animation.gif -%%PORTDOCS%%%%DOCSDIR%%/usermanual/animation.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answerdiscretizing.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answergridremoval.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answerlinegraph.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answermap.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answermapconst.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answermeasuring.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answernowindow.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answerother.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answerout.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answerpointgraph.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/answerselectmode.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/commandlineoptions.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/contextmenukonqueror.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/contextmenuwindows.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dateconvert.css -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dateconvert.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dateconvert.jpg -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dateconvert.js -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dateformats.css -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dateformats.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/datefromstring.js -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dialogs.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/discretize_bad_color_after.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/discretize_bad_color_before.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/discretize_bad_gray_after.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/discretize_bad_gray_before.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/discretize_ok_after.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/discretize_ok_before.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgcoordsys.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgcoordsys1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgcurvegeometry.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgcurvegeometry1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgcurves.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgcurves1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgdiscretize.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgdiscretize1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgexport.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgexport1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlggriddisplay.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlggriddisplay1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlggridremoval.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlggridremoval1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgmeasuregeometry.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgmeasuregeometry1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgmeasures.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgmeasures1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgpointmatch.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgpointmatch1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgsegments.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgsegments1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgsessions.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/dlgsessions.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/fixingaxispoints.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/fixingaxispoints.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/glossary.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/gridremoveafter.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/gridremovebefore.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/index.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/pointmatchrequirements.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/pointmatchrequirements.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph10.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph11.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph2.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph3.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph4.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph5.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph6.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph7.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph8.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautolinegraph9.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph10.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph11.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph12.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph13.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph2.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph3.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph4.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph5.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph6.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph7.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph8.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutorautopointgraph9.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph2.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph3.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph4.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph5.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph6.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph7.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanlinegraph8.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap2.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap3.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap4.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap5.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap6.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap7.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanmap8.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph.html -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph1.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph2.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph3.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph4.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph5.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph6.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph7.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/tutormanpointgraph8.png -%%PORTDOCS%%%%DOCSDIR%%/usermanual/windowscontexta.jpg -%%PORTDOCS%%%%DOCSDIR%%/usermanual/windowscontextb.jpg -%%PORTDOCS%%%%DOCSDIR%%/usermanual/windowscontextc.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/README -%%PORTDOCS%%%%EXAMPLESDIR%%/corners.png -%%PORTDOCS%%%%EXAMPLESDIR%%/gridlines.gif -%%PORTDOCS%%%%EXAMPLESDIR%%/gridlines_log.gif -%%PORTDOCS%%%%EXAMPLESDIR%%/gridlines_log.src -%%PORTDOCS%%%%EXAMPLESDIR%%/inverse.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/inverse.png -%%PORTDOCS%%%%EXAMPLESDIR%%/linlog.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/linlog.png -%%PORTDOCS%%%%EXAMPLESDIR%%/loglin.png -%%PORTDOCS%%%%EXAMPLESDIR%%/loglog.png -%%PORTDOCS%%%%EXAMPLESDIR%%/normdist.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/normdist.png -%%PORTDOCS%%%%EXAMPLESDIR%%/pointmatch.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/pointplot.bmp -%%PORTDOCS%%%%EXAMPLESDIR%%/polarcircles.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/polarplot.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/polarplot.png -%%PORTDOCS%%%%EXAMPLESDIR%%/testcase.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/testcase.png -%%PORTDOCS%%%%EXAMPLESDIR%%/testcoords.jpg -%%PORTDOCS%%%%EXAMPLESDIR%%/testcoords.sxd -%%PORTDOCS%%%%EXAMPLESDIR%%/usgs.png -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/usermanual -%%PORTDOCS%%@dirrm %%DOCSDIR%% +share/applications/engauge-digitizer.desktop +%%PORTDOCS%%%%DOCSDIR%%/engauge.qch +%%PORTDOCS%%%%DOCSDIR%%/engauge.qhc +%%NLS%%%%DATADIR%%/translations/engauge_ar.qm +%%NLS%%%%DATADIR%%/translations/engauge_cs.qm +%%NLS%%%%DATADIR%%/translations/engauge_de.qm +%%NLS%%%%DATADIR%%/translations/engauge_en.qm +%%NLS%%%%DATADIR%%/translations/engauge_es.qm +%%NLS%%%%DATADIR%%/translations/engauge_fr.qm +%%NLS%%%%DATADIR%%/translations/engauge_hi.qm +%%NLS%%%%DATADIR%%/translations/engauge_it.qm +%%NLS%%%%DATADIR%%/translations/engauge_ja.qm +%%NLS%%%%DATADIR%%/translations/engauge_kk.qm +%%NLS%%%%DATADIR%%/translations/engauge_ko.qm +%%NLS%%%%DATADIR%%/translations/engauge_pt.qm +%%NLS%%%%DATADIR%%/translations/engauge_ru.qm +%%NLS%%%%DATADIR%%/translations/engauge_zh.qm +share/icons/hicolor/scalable/apps/engauge-digitizer.svgz From owner-svn-ports-head@freebsd.org Wed Jun 20 18:22:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1D9F1002774; Wed, 20 Jun 2018 18:22:57 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 71D196BE69; Wed, 20 Jun 2018 18:22:57 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5422225F13; Wed, 20 Jun 2018 18:22:57 +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 w5KIMvTo021741; Wed, 20 Jun 2018 18:22:57 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KIMu7A021739; Wed, 20 Jun 2018 18:22:56 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201806201822.w5KIMu7A021739@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Wed, 20 Jun 2018 18:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472894 - head/www/typo3-7 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/www/typo3-7 X-SVN-Commit-Revision: 472894 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 18:22:57 -0000 Author: joneum Date: Wed Jun 20 18:22:56 2018 New Revision: 472894 URL: https://svnweb.freebsd.org/changeset/ports/472894 Log: www/typo3-7: Update to 7.6.29 Changelog: https://get.typo3.org/release-notes/7.6.29 PR: 229174 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 Wed Jun 20 18:08:30 2018 (r472893) +++ head/www/typo3-7/Makefile Wed Jun 20 18:22:56 2018 (r472894) @@ -24,7 +24,7 @@ WRKSRC= ${WRKDIR}/${TYPO3SRC} PORT_V_MAJOR= 7 PORT_V_MINOR= 6 -PORT_V_PATCH= 28 +PORT_V_PATCH= 29 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: head/www/typo3-7/distinfo ============================================================================== --- head/www/typo3-7/distinfo Wed Jun 20 18:08:30 2018 (r472893) +++ head/www/typo3-7/distinfo Wed Jun 20 18:22:56 2018 (r472894) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527660550 -SHA256 (typo3_src-7.6.28.tar.gz) = c9debb369889976eb12b31de56f94c233b045167785e7492c9119534332a3c07 -SIZE (typo3_src-7.6.28.tar.gz) = 20510090 +TIMESTAMP = 1529518825 +SHA256 (typo3_src-7.6.29.tar.gz) = 19058789b51d3c139a25327ffc28b457f032049539f7b4a20b3fc3b5bc3681db +SIZE (typo3_src-7.6.29.tar.gz) = 20510166 From owner-svn-ports-head@freebsd.org Wed Jun 20 18:25:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B26A10028DF; Wed, 20 Jun 2018 18:25:04 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7CCF6BF9D; Wed, 20 Jun 2018 18:25:03 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E22D25F15; Wed, 20 Jun 2018 18:25:03 +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 w5KIP3uW021968; Wed, 20 Jun 2018 18:25:03 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KIP3DX021967; Wed, 20 Jun 2018 18:25:03 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201806201825.w5KIP3DX021967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Wed, 20 Jun 2018 18:25:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472895 - head/www/typo3-8 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/www/typo3-8 X-SVN-Commit-Revision: 472895 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 18:25:04 -0000 Author: joneum Date: Wed Jun 20 18:25:02 2018 New Revision: 472895 URL: https://svnweb.freebsd.org/changeset/ports/472895 Log: www/typo3-8: Update to 8.7.16 Changelog: https://get.typo3.org/release-notes/8.7.16 PR: 229175 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 Wed Jun 20 18:22:56 2018 (r472894) +++ head/www/typo3-8/Makefile Wed Jun 20 18:25:02 2018 (r472895) @@ -26,7 +26,7 @@ WRKSRC= ${WRKDIR}/${TYPO3SRC} PORT_V_MAJOR= 8 PORT_V_MINOR= 7 -PORT_V_PATCH= 15 +PORT_V_PATCH= 16 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: head/www/typo3-8/distinfo ============================================================================== --- head/www/typo3-8/distinfo Wed Jun 20 18:22:56 2018 (r472894) +++ head/www/typo3-8/distinfo Wed Jun 20 18:25:02 2018 (r472895) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527660722 -SHA256 (typo3_src-8.7.15.tar.gz) = b1d761be5370087d3358b7da49afb1d91dd559265d55c83e077e651d797d4702 -SIZE (typo3_src-8.7.15.tar.gz) = 19253328 +TIMESTAMP = 1529519010 +SHA256 (typo3_src-8.7.16.tar.gz) = cb9bc3e94644652569a6b2e2aa632201bdd7d77887d99f3084b6ba5fb5924a8e +SIZE (typo3_src-8.7.16.tar.gz) = 19253753 From owner-svn-ports-head@freebsd.org Wed Jun 20 18:31:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B88A100307D; Wed, 20 Jun 2018 18:31:49 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BD7956C624; Wed, 20 Jun 2018 18:31:48 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E94125F8B; Wed, 20 Jun 2018 18:31:48 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KIVmrH026131; Wed, 20 Jun 2018 18:31:48 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KIVl4G026127; Wed, 20 Jun 2018 18:31:47 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201806201831.w5KIVl4G026127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dteske set sender to dteske@FreeBSD.org using -f From: Devin Teske Date: Wed, 20 Jun 2018 18:31:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472896 - in head/sysutils: . ssd_report X-SVN-Group: ports-head X-SVN-Commit-Author: dteske X-SVN-Commit-Paths: in head/sysutils: . ssd_report X-SVN-Commit-Revision: 472896 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 18:31:49 -0000 Author: dteske Date: Wed Jun 20 18:31:47 2018 New Revision: 472896 URL: https://svnweb.freebsd.org/changeset/ports/472896 Log: [New Port] sysutils/ssd_report Report SSD health by looking at SMART data. Supports `smartctl' from sysutils/smartmontools but prefers `smart' from sysutils/smart. Also supports JSON output upon request. Reviewed by: mat (mentor) Approved by: portmgr (mat), mat (mentor) Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D15876 Added: head/sysutils/ssd_report/ head/sysutils/ssd_report/Makefile (contents, props changed) head/sysutils/ssd_report/distinfo (contents, props changed) head/sysutils/ssd_report/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Jun 20 18:25:02 2018 (r472895) +++ head/sysutils/Makefile Wed Jun 20 18:31:47 2018 (r472896) @@ -1202,6 +1202,7 @@ SUBDIR += spinner SUBDIR += spiped SUBDIR += squashfs-tools + SUBDIR += ssd_report SUBDIR += sshsudo SUBDIR += ssid SUBDIR += ssync Added: head/sysutils/ssd_report/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ssd_report/Makefile Wed Jun 20 18:31:47 2018 (r472896) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= ssd_report +DISTVERSION= 0.2 +CATEGORIES= sysutils + +MAINTAINER= dteske@FreeBSD.org +COMMENT= SSD health report + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +FLAVORS= smart smartmontools +FLAVOR?= ${FLAVORS:[1]} + +smart_RUN_DEPENDS= smart:sysutils/smart +smartmontools_RUN_DEPENDS= smartctl:sysutils/smartmontools + +USE_GITHUB= yes +GH_ACCOUNT= FrauBSD +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= sbin/ssd_report +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/ssd_report ${STAGEDIR}${PREFIX}/sbin + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/ssd_report/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ssd_report/distinfo Wed Jun 20 18:31:47 2018 (r472896) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529303779 +SHA256 (FrauBSD-ssd_report-0.2_GH0.tar.gz) = a56a76277dc095ef24dd954447e6ad86140838308e667d6143a84202a8c17f2c +SIZE (FrauBSD-ssd_report-0.2_GH0.tar.gz) = 7715 Added: head/sysutils/ssd_report/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ssd_report/pkg-descr Wed Jun 20 18:31:47 2018 (r472896) @@ -0,0 +1,5 @@ +Report SSD health by looking at SMART data. Supports `smartctl' from +sysutils/smartmontools but prefers `smart' from sysutils/smart. Also +supports JSON output upon request. + +WWW: https://fraubsd.org/ssd_report/ From owner-svn-ports-head@freebsd.org Wed Jun 20 18:49:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 498821003CEA; Wed, 20 Jun 2018 18:49:54 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EBB2B6CF41; Wed, 20 Jun 2018 18:49:53 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CCC2B2625D; Wed, 20 Jun 2018 18:49:53 +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 w5KInrrL032503; Wed, 20 Jun 2018 18:49:53 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KInrHA032500; Wed, 20 Jun 2018 18:49:53 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201806201849.w5KInrHA032500@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 20 Jun 2018 18:49:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472897 - in head/korean: unfonts-core unfonts-extra X-SVN-Group: ports-head X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: in head/korean: unfonts-core unfonts-extra X-SVN-Commit-Revision: 472897 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 18:49:54 -0000 Author: jkim Date: Wed Jun 20 18:49:52 2018 New Revision: 472897 URL: https://svnweb.freebsd.org/changeset/ports/472897 Log: - Update MASTER_SITES and DISTNAME. The previous URLs do not work any more. - Update extra fonts to synchronize with core fonts. Modified: head/korean/unfonts-core/Makefile head/korean/unfonts-core/distinfo.core-ttf head/korean/unfonts-core/distinfo.extra-ttf head/korean/unfonts-extra/Makefile Modified: head/korean/unfonts-core/Makefile ============================================================================== --- head/korean/unfonts-core/Makefile Wed Jun 20 18:31:47 2018 (r472896) +++ head/korean/unfonts-core/Makefile Wed Jun 20 18:49:52 2018 (r472897) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= unfonts -PORTVERSION?= 1.0.2.080608 -PORTREVISION?= 2 +PORTVERSION= 1.0.2.080608 +PORTREVISION?= 3 CATEGORIES= korean x11-fonts -MASTER_SITES?= http://kldp.net/frs/download.php/4695/ +MASTER_SITES= https://kldp.net/unfonts/release/ PKGNAMESUFFIX= -${FONTCAT} -DISTNAME= un-fonts${PKGNAMESUFFIX}-${PORTVERSION} +DISTNAME= ${FILEID}-un-fonts${PKGNAMESUFFIX}-${PORTVERSION:R}-${PORTVERSION:E} MAINTAINER= jkim@FreeBSD.org COMMENT= GPL'd Korean TrueType Fonts by UN Koaunghi (${FONTCAT}) @@ -19,6 +19,7 @@ USES= fonts NO_BUILD= yes DISTINFO_FILE= ${PKGDIR}/distinfo.${FONTCAT}-ttf +FILEID?= 2607 WRKSRC= ${WRKDIR}/un-fonts FONTNAME= ${PORTNAME}-${FONTCAT} Modified: head/korean/unfonts-core/distinfo.core-ttf ============================================================================== --- head/korean/unfonts-core/distinfo.core-ttf Wed Jun 20 18:31:47 2018 (r472896) +++ head/korean/unfonts-core/distinfo.core-ttf Wed Jun 20 18:49:52 2018 (r472897) @@ -1,2 +1,3 @@ -SHA256 (un-fonts-core-1.0.2.080608.tar.gz) = 3b0a7274f9aab7e8f0f1938c01a70e1581766d51b494ba145683f37ac557918e -SIZE (un-fonts-core-1.0.2.080608.tar.gz) = 20117428 +TIMESTAMP = 1529518873 +SHA256 (2607-un-fonts-core-1.0.2-080608.tar.gz) = 3b0a7274f9aab7e8f0f1938c01a70e1581766d51b494ba145683f37ac557918e +SIZE (2607-un-fonts-core-1.0.2-080608.tar.gz) = 20117428 Modified: head/korean/unfonts-core/distinfo.extra-ttf ============================================================================== --- head/korean/unfonts-core/distinfo.extra-ttf Wed Jun 20 18:31:47 2018 (r472896) +++ head/korean/unfonts-core/distinfo.extra-ttf Wed Jun 20 18:49:52 2018 (r472897) @@ -1,2 +1,3 @@ -SHA256 (un-fonts-extra-1.0.1.tar.gz) = 8dc849d476f08026403cb2e95e0034b06f55ab29145ba1f7fa5448b53a695514 -SIZE (un-fonts-extra-1.0.1.tar.gz) = 6155562 +TIMESTAMP = 1529519030 +SHA256 (2608-un-fonts-extra-1.0.2-080608.tar.gz) = 32a56acc06f264653bd151ec48c0811d07c198c2561e9f2efa8845e45b6b7407 +SIZE (2608-un-fonts-extra-1.0.2-080608.tar.gz) = 11375538 Modified: head/korean/unfonts-extra/Makefile ============================================================================== --- head/korean/unfonts-extra/Makefile Wed Jun 20 18:31:47 2018 (r472896) +++ head/korean/unfonts-extra/Makefile Wed Jun 20 18:49:52 2018 (r472897) @@ -1,19 +1,22 @@ # Created by: Hye-Shik Chang # $FreeBSD$ -PORTVERSION= 1.0.1 -PORTREVISION= 3 -MASTER_SITES= http://kldp.net/frs/download.php/1435/ +PORTREVISION= 0 +FILEID= 2608 + FONTCAT= extra -FONTLIST= UnJamoBatang \ +FONTLIST= UnBom \ + UnJamoBatang \ UnJamoDotum \ UnJamoNovel \ UnJamoSora \ UnPen \ UnPenheulim \ + UnPilgia \ UnShinmun \ UnTaza \ + UnVada \ UnYetgul MASTERDIR= ${.CURDIR}/../unfonts-core From owner-svn-ports-head@freebsd.org Wed Jun 20 18:51:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C40331003E5D; Wed, 20 Jun 2018 18:51:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 753A66D241; Wed, 20 Jun 2018 18:51:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5677D262AC; Wed, 20 Jun 2018 18:51:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KIpS7S036005; Wed, 20 Jun 2018 18:51:28 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KIpSWW036003; Wed, 20 Jun 2018 18:51:28 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806201851.w5KIpSWW036003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 18:51:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472898 - in head/textproc: cmark py-CommonMark X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/textproc: cmark py-CommonMark X-SVN-Commit-Revision: 472898 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 18:51:28 -0000 Author: yuri Date: Wed Jun 20 18:51:27 2018 New Revision: 472898 URL: https://svnweb.freebsd.org/changeset/ports/472898 Log: Add CONFLICTS_INSTALL to py-CommonMark/Makefile and cmark/Makefile They both install bin/cmark Approved by: portmgr Modified: head/textproc/cmark/Makefile head/textproc/py-CommonMark/Makefile Modified: head/textproc/cmark/Makefile ============================================================================== --- head/textproc/cmark/Makefile Wed Jun 20 18:49:52 2018 (r472897) +++ head/textproc/cmark/Makefile Wed Jun 20 18:51:27 2018 (r472898) @@ -11,6 +11,8 @@ COMMENT= CommonMark parsing and rendering library and LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +CONFLICTS_INSTALL= py[2-3][0-9]-CommonMark + USES= cmake:outsource python:3.4+,test USE_GITHUB= yes GH_ACCOUNT= commonmark Modified: head/textproc/py-CommonMark/Makefile ============================================================================== --- head/textproc/py-CommonMark/Makefile Wed Jun 20 18:49:52 2018 (r472897) +++ head/textproc/py-CommonMark/Makefile Wed Jun 20 18:51:27 2018 (r472898) @@ -13,6 +13,8 @@ COMMENT= Python parser for the CommonMark Markdown spe LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +CONFLICTS_INSTALL= cmark + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR} USES= python From owner-svn-ports-head@freebsd.org Wed Jun 20 19:04:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19C0A1004B50; Wed, 20 Jun 2018 19:04:56 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB4A16DBF7; Wed, 20 Jun 2018 19:04:55 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9A1BB265A2; Wed, 20 Jun 2018 19:04:55 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KJ4tFF042830; Wed, 20 Jun 2018 19:04:55 GMT (envelope-from jadawin@FreeBSD.org) Received: (from jadawin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJ4tbV042827; Wed, 20 Jun 2018 19:04:55 GMT (envelope-from jadawin@FreeBSD.org) Message-Id: <201806201904.w5KJ4tbV042827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jadawin set sender to jadawin@FreeBSD.org using -f From: Philippe Audeoud Date: Wed, 20 Jun 2018 19:04:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472899 - head/net/p5-Net-SSH2 X-SVN-Group: ports-head X-SVN-Commit-Author: jadawin X-SVN-Commit-Paths: head/net/p5-Net-SSH2 X-SVN-Commit-Revision: 472899 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:04:56 -0000 Author: jadawin Date: Wed Jun 20 19:04:54 2018 New Revision: 472899 URL: https://svnweb.freebsd.org/changeset/ports/472899 Log: - Update to 0.69 - Changelog: https://metacpan.org/changes/distribution/Net-SSH2 PR: 229179 Submitted by: Kai Modified: head/net/p5-Net-SSH2/Makefile head/net/p5-Net-SSH2/distinfo head/net/p5-Net-SSH2/pkg-plist Modified: head/net/p5-Net-SSH2/Makefile ============================================================================== --- head/net/p5-Net-SSH2/Makefile Wed Jun 20 18:51:27 2018 (r472898) +++ head/net/p5-Net-SSH2/Makefile Wed Jun 20 19:04:54 2018 (r472899) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-SSH2 -PORTVERSION= 0.58 +PORTVERSION= 0.69 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,7 +15,17 @@ LICENSE_COMB= dual LIB_DEPENDS= libssh2.so:security/libssh2 -USES= perl5 +USES= perl5 USE_PERL5= configure + +CFLAGS+= -I${LOCALBASE}/include +PORTEXAMPLES= example/* + +OPTIONS_DEFINE= EXAMPLES +OPTIONS_SUB= yes + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}) .include Modified: head/net/p5-Net-SSH2/distinfo ============================================================================== --- head/net/p5-Net-SSH2/distinfo Wed Jun 20 18:51:27 2018 (r472898) +++ head/net/p5-Net-SSH2/distinfo Wed Jun 20 19:04:54 2018 (r472899) @@ -1,2 +1,3 @@ -SHA256 (Net-SSH2-0.58.tar.gz) = 1d1f5f4cdf267ded0cb17ace6def2204f1891fc1274e248e7332dcd48f6a189e -SIZE (Net-SSH2-0.58.tar.gz) = 124853 +TIMESTAMP = 1529489736 +SHA256 (Net-SSH2-0.69.tar.gz) = 2fc85e1434b8a6e77142d85e3cea5a081ca71da5d02c4212b9970d3a3924baa6 +SIZE (Net-SSH2-0.69.tar.gz) = 140601 Modified: head/net/p5-Net-SSH2/pkg-plist ============================================================================== --- head/net/p5-Net-SSH2/pkg-plist Wed Jun 20 18:51:27 2018 (r472898) +++ head/net/p5-Net-SSH2/pkg-plist Wed Jun 20 19:04:54 2018 (r472899) @@ -1,18 +1,23 @@ -%%PERL5_MAN3%%/Net::SSH2.3.gz -%%PERL5_MAN3%%/Net::SSH2::Channel.3.gz -%%PERL5_MAN3%%/Net::SSH2::Dir.3.gz -%%PERL5_MAN3%%/Net::SSH2::File.3.gz -%%SITE_ARCH%%/Net/SSH2/KnownHosts.pm -%%PERL5_MAN3%%/Net::SSH2::Listener.3.gz -%%PERL5_MAN3%%/Net::SSH2::PublicKey.3.gz -%%PERL5_MAN3%%/Net::SSH2::SFTP.3.gz %%SITE_ARCH%%/Net/SSH2.pm %%SITE_ARCH%%/Net/SSH2/Channel.pm +%%SITE_ARCH%%/Net/SSH2/Constants.pm %%SITE_ARCH%%/Net/SSH2/Dir.pm %%SITE_ARCH%%/Net/SSH2/File.pm -%%PERL5_MAN3%%/Net::SSH2::KnownHosts.3.gz +%%SITE_ARCH%%/Net/SSH2/KnownHosts.pm %%SITE_ARCH%%/Net/SSH2/Listener.pm %%SITE_ARCH%%/Net/SSH2/PublicKey.pm %%SITE_ARCH%%/Net/SSH2/SFTP.pm %%SITE_ARCH%%/auto/Net/SSH2/SSH2.so -%%SITE_ARCH%%/auto/Net/SSH2/autosplit.ix +%%PERL5_MAN3%%/Net::SSH2.3.gz +%%PERL5_MAN3%%/Net::SSH2::Channel.3.gz +%%PERL5_MAN3%%/Net::SSH2::Dir.3.gz +%%PERL5_MAN3%%/Net::SSH2::File.3.gz +%%PERL5_MAN3%%/Net::SSH2::KnownHosts.3.gz +%%PERL5_MAN3%%/Net::SSH2::Listener.3.gz +%%PERL5_MAN3%%/Net::SSH2::PublicKey.3.gz +%%PERL5_MAN3%%/Net::SSH2::SFTP.3.gz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/benchmark.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/read.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rt58911.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rt80011.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scat.pl From owner-svn-ports-head@freebsd.org Wed Jun 20 19:07:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B68381004D3C; Wed, 20 Jun 2018 19:07:51 +0000 (UTC) (envelope-from bdrewery@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 525046DDC2; Wed, 20 Jun 2018 19:07:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (unknown [127.0.1.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by freefall.freebsd.org (Postfix) with ESMTPS id E38B01514B; Wed, 20 Jun 2018 19:07:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id DD7A1F74; Wed, 20 Jun 2018 19:07:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id erPRaF46_7Qd; Wed, 20 Jun 2018 19:07:46 +0000 (UTC) Subject: Re: svn commit: r472896 - in head/sysutils: . ssd_report DKIM-Filter: OpenDKIM Filter v2.10.3 mail.xzibition.com 71454F6E To: Devin Teske , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201806201831.w5KIVl4G026127@repo.freebsd.org> From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Autocrypt: addr=bdrewery@FreeBSD.org; prefer-encrypt=mutual; keydata= xsBNBFJphmsBCADiFgmS4bIzwZijrS31SjEMzg+n5zNellgM+HkShwehpqCiyhXdWrvH6dTZ a6u50pbUIX7doTR7W7PQHCjCTqtpwvcj0eulZva+iHFp+XrbgSFHn+VVXgkYP2MFySyZRFab D2qqzJBEJofhpv4HvY6uQI5K99pMqKr1Z/lHqsijYYu4RH2OfwB5PinId7xeldzWEonVoCr+ rfxzO/UrgA6v/3layGZcKNHFjmc3NqoN1DXtdaEHqtjIozzbndVkH6lkFvIpIrI6i5ox8pwp VxsxLCr/4Musd5CWgHiet5kSw2SzNeA8FbxdLYCpXNVu+uBACEbCUP+CSNy3NVfEUxsBABEB AAHNJEJyeWFuIERyZXdlcnkgPGJkcmV3ZXJ5QEZyZWVCU0Qub3JnPsLAgAQTAQoAKgIbAwUL CQgHAwUVCgkICwUWAwIBAAIeAQIXgAIZAQUCWujOIgUJCmB7NwAKCRA113G7bkaXz/xpB/9b /UWIPbieY1IeIuHF2pyYPE7Hytkh3HVsxMA0F5Ma2AYQsXZZeKNKWrF7RPyDyDwUklLHJkhm k3EfClBbHxf08kMIm1vWCJRtgxic9knY/bzYGiWMpHjg3cSd1XfrYH1autYqTZAjDwIkgOjU dR//Tbn4V36sY7y2jz+kdMVWvK53U32aZqiwBbCn4DPe1wSZcUs17mV/0uZdIoGdj74B1orN A/0py5vHYo6HcbBNoaR8pKRLf5VZNRsxqGIMhTucx4SJWcHpuRBWYyvJSFzwvxdK4ZD4Yqoc kFGPVtOXktVMai9exrLvP3G77fKMu8DI6j4QRU4wCesnHuIfRPFuzsBNBFJphmsBCACiVFPf kNfaFtUSuY0395ueo/rMyHPGPQ2iwvERFCpeFGSQSgagpenNHLpFQKTg/dl6FOoST5tqyxMq fyHGHDzzU51bvA/IfaGoNi/BIhTe/toZNMRvpcI3PLjiGcnJnuwCCbAVOAGdb+t5cZtpNdOI cKYmrYG3u9RiBpe6dTF+qLrD/8Bs1wjhduQ8fcNNgnkXu8xDH4ZxY0lIc3QgvYWp9vimlQe6 iKjUd2/DX28ETZcD5h6pYV331KMPTrEI0p0yvFijUZce8c1XHFyL1j9sBAha5qpszJl6Uq5i LolhKRcGfcdmtD72vHQjUYglUyudSJUVyo2gMYjdbiFKzJulABEBAAHCwGUEGAEKAA8CGwwF AlrozigFCQpgez0ACgkQNddxu25Gl8+m5Af/R3VEdxNMAcDIes9ADhQyofj20SPV3eCJ3HYR OebTSuNdOudGt4AAyA8Ks94u9hiIp5IGsc6RDsT9W7O2vgXhd6eV3eiY5Oif5xLIYrIDVu1Y 1GyRxRrPEn/QOqDN6uFZCPwK1aOapGcYCrO9lB0gMuTVfgHanU61rgC9tMX0OoAOyRd+V3/M 8lDNhjJdF/IpO3SdYzKfkwduy4qamw4Gphcx/RfYQvYLq/eDkP8d50PphWdboqWBwNRHayro W/07OGzfxM5fJ5mBsXPQcO2QcRjkyHf6xCM6Hi1qQL4OnXMNE/ZTX0lnOj1/pH93TlzSHZMP TaiiA/MBD3vGsXBmBg== Organization: FreeBSD Message-ID: <7fb99590-249d-0edb-cf43-c7f25a00f6cd@FreeBSD.org> Date: Wed, 20 Jun 2018 12:07:45 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <201806201831.w5KIVl4G026127@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="P0BT40gfjtersT2az12nprst10Cz61qCX" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:07:52 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --P0BT40gfjtersT2az12nprst10Cz61qCX Content-Type: multipart/mixed; boundary="3clO3OmFTE818BhBn63rfJq3dk4MWlVCA"; protected-headers="v1" From: Bryan Drewery To: Devin Teske , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <7fb99590-249d-0edb-cf43-c7f25a00f6cd@FreeBSD.org> Subject: Re: svn commit: r472896 - in head/sysutils: . ssd_report References: <201806201831.w5KIVl4G026127@repo.freebsd.org> In-Reply-To: <201806201831.w5KIVl4G026127@repo.freebsd.org> --3clO3OmFTE818BhBn63rfJq3dk4MWlVCA Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 6/20/2018 11:31 AM, Devin Teske wrote: > Author: dteske > Date: Wed Jun 20 18:31:47 2018 > New Revision: 472896 > URL: https://svnweb.freebsd.org/changeset/ports/472896 >=20 > Log: > [New Port] sysutils/ssd_report > =20 > Report SSD health by looking at SMART data. Supports `smartctl' from > sysutils/smartmontools but prefers `smart' from sysutils/smart. Also > supports JSON output upon request. > =20 > Reviewed by: mat (mentor) > Approved by: portmgr (mat), mat (mentor) > Sponsored by: Smule, Inc. > Differential Revision: https://reviews.freebsd.org/D15876 >=20 > Added: > head/sysutils/ssd_report/ > head/sysutils/ssd_report/Makefile (contents, props changed) > head/sysutils/ssd_report/distinfo (contents, props changed) > head/sysutils/ssd_report/pkg-descr (contents, props changed) > Modified: > head/sysutils/Makefile >=20 > Modified: head/sysutils/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sysutils/Makefile Wed Jun 20 18:25:02 2018 (r472895) > +++ head/sysutils/Makefile Wed Jun 20 18:31:47 2018 (r472896) > @@ -1202,6 +1202,7 @@ > SUBDIR +=3D spinner > SUBDIR +=3D spiped > SUBDIR +=3D squashfs-tools > + SUBDIR +=3D ssd_report > SUBDIR +=3D sshsudo > SUBDIR +=3D ssid > SUBDIR +=3D ssync >=20 > Added: head/sysutils/ssd_report/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/ssd_report/Makefile Wed Jun 20 18:31:47 2018 (r472896= ) > @@ -0,0 +1,36 @@ > +# $FreeBSD$ > + > +PORTNAME=3D ssd_report > +DISTVERSION=3D 0.2 > +CATEGORIES=3D sysutils > + > +MAINTAINER=3D dteske@FreeBSD.org > +COMMENT=3D SSD health report > + > +LICENSE=3D BSD2CLAUSE > +LICENSE_FILE=3D ${WRKSRC}/LICENSE > + > +FLAVORS=3D smart smartmontools FLAVORS requires that each flavor has a unique PKGNAME because *every version of the package* will be built and stored on the package repository. It can't work to have 2 packages with the same name that have different functionality. So you must handle PKGNAMESUFFIX here somehow for at least the non-default flavors. smartmontools_PKGNAMESUFFIX=3D -smartmontools > +FLAVOR?=3D ${FLAVORS:[1]} Why put FLAVOR? here? It is not needed. FLAVOR is a user-specified option that already has a default in bsd.port.mk. > + > +smart_RUN_DEPENDS=3D smart:sysutils/smart > +smartmontools_RUN_DEPENDS=3D smartctl:sysutils/smartmontools > + > +USE_GITHUB=3D yes > +GH_ACCOUNT=3D FrauBSD > +NO_ARCH=3D yes > +NO_BUILD=3D yes > + > +PLIST_FILES=3D sbin/ssd_report > +PORTDOCS=3D README.md > + > +OPTIONS_DEFINE=3D DOCS > + > +do-install: > + ${INSTALL_SCRIPT} ${WRKSRC}/ssd_report ${STAGEDIR}${PREFIX}/sbin > + > +do-install-DOCS-on: > + @${MKDIR} ${STAGEDIR}${DOCSDIR} > + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} > + > +.include >=20 > Added: head/sysutils/ssd_report/distinfo > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/ssd_report/distinfo Wed Jun 20 18:31:47 2018 (r472896= ) > @@ -0,0 +1,3 @@ > +TIMESTAMP =3D 1529303779 > +SHA256 (FrauBSD-ssd_report-0.2_GH0.tar.gz) =3D a56a76277dc095ef24dd954= 447e6ad86140838308e667d6143a84202a8c17f2c > +SIZE (FrauBSD-ssd_report-0.2_GH0.tar.gz) =3D 7715 >=20 > Added: head/sysutils/ssd_report/pkg-descr > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sysutils/ssd_report/pkg-descr Wed Jun 20 18:31:47 2018 (r47289= 6) > @@ -0,0 +1,5 @@ > +Report SSD health by looking at SMART data. Supports `smartctl' from > +sysutils/smartmontools but prefers `smart' from sysutils/smart. Also > +supports JSON output upon request. > + > +WWW: https://fraubsd.org/ssd_report/ >=20 --=20 Regards, Bryan Drewery --3clO3OmFTE818BhBn63rfJq3dk4MWlVCA-- --P0BT40gfjtersT2az12nprst10Cz61qCX 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 iQEcBAEBAgAGBQJbKqYBAAoJEDXXcbtuRpfPa4cH/Ahsx2nBybmECkna5nS412i5 pOv4vKtmcTVB/z4D4Myg4BoNo1wR4UBRawRiI05l8/jgq/Fp8h+ozguPYikpUzmf uJIn0fDqcPtXo82RHRUmQdExkYO7M87ECBP5JEGIQxm1EQ2+HnL+f0dBuElUOrwC 02AFL91+T5+ArzGqihgz0t8TrVKFhE3xQNFCV3MqjIrjy0WjGiL19RKjMft2mqo1 K06Ux+7D5ry7B0kfLZVHD8Cn1koBy47Hee2dhdkvsoNx+JH8BVrstr7OvUcgCzfN zY7oSSJnQaKSOtGyqE/gjXJtFiBCejFv6X20ErnVkyH5vQ9ULVXSn1T7G/Hwkmw= =M+oa -----END PGP SIGNATURE----- --P0BT40gfjtersT2az12nprst10Cz61qCX-- From owner-svn-ports-head@freebsd.org Wed Jun 20 19:14:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF2251005268; Wed, 20 Jun 2018 19:14:12 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 921756E272; Wed, 20 Jun 2018 19:14:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6D7F02673B; Wed, 20 Jun 2018 19:14:12 +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 w5KJECKv048046; Wed, 20 Jun 2018 19:14:12 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJECTf048045; Wed, 20 Jun 2018 19:14:12 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201914.w5KJECTf048045@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 19:14:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472900 - head/sysutils/ssd_report X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/sysutils/ssd_report X-SVN-Commit-Revision: 472900 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:14:13 -0000 Author: mat Date: Wed Jun 20 19:14:11 2018 New Revision: 472900 URL: https://svnweb.freebsd.org/changeset/ports/472900 Log: Add a PKGNAMESUFFIX for the non default flavor. Sponsored by: Absolight Modified: head/sysutils/ssd_report/Makefile (contents, props changed) Modified: head/sysutils/ssd_report/Makefile ============================================================================== --- head/sysutils/ssd_report/Makefile Wed Jun 20 19:04:54 2018 (r472899) +++ head/sysutils/ssd_report/Makefile Wed Jun 20 19:14:11 2018 (r472900) @@ -15,6 +15,7 @@ FLAVOR?= ${FLAVORS:[1]} smart_RUN_DEPENDS= smart:sysutils/smart smartmontools_RUN_DEPENDS= smartctl:sysutils/smartmontools +smartmontools_PKGNAMESUFFIX= -smartmontools USE_GITHUB= yes GH_ACCOUNT= FrauBSD From owner-svn-ports-head@freebsd.org Wed Jun 20 19:21:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 947C7100565C; Wed, 20 Jun 2018 19:21:10 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43EFD6E651; Wed, 20 Jun 2018 19:21:10 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2508B2677F; Wed, 20 Jun 2018 19:21:10 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KJLASU048558; Wed, 20 Jun 2018 19:21:10 GMT (envelope-from jadawin@FreeBSD.org) Received: (from jadawin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJL9Ox048557; Wed, 20 Jun 2018 19:21:09 GMT (envelope-from jadawin@FreeBSD.org) Message-Id: <201806201921.w5KJL9Ox048557@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jadawin set sender to jadawin@FreeBSD.org using -f From: Philippe Audeoud Date: Wed, 20 Jun 2018 19:21:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472901 - head/net-mgmt/p5-Net-CIDR X-SVN-Group: ports-head X-SVN-Commit-Author: jadawin X-SVN-Commit-Paths: head/net-mgmt/p5-Net-CIDR X-SVN-Commit-Revision: 472901 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:21:10 -0000 Author: jadawin Date: Wed Jun 20 19:21:09 2018 New Revision: 472901 URL: https://svnweb.freebsd.org/changeset/ports/472901 Log: - Update to 0.19 - Add LICENSE stuff and NO_ARCH - Changelog: https://metacpan.org/changes/distribution/Net-CIDR PR: 229178 Submitted by: Kai Modified: head/net-mgmt/p5-Net-CIDR/Makefile head/net-mgmt/p5-Net-CIDR/distinfo Modified: head/net-mgmt/p5-Net-CIDR/Makefile ============================================================================== --- head/net-mgmt/p5-Net-CIDR/Makefile Wed Jun 20 19:14:11 2018 (r472900) +++ head/net-mgmt/p5-Net-CIDR/Makefile Wed Jun 20 19:21:09 2018 (r472901) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Net-CIDR -PORTVERSION= 0.18 +PORTVERSION= 0.19 CATEGORIES= net-mgmt perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -9,7 +9,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= jadawin@FreeBSD.org COMMENT= Perl module to manipulate IPv4/IPv6 netblocks in CIDR notation +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE_ART10= ${WRKSRC}/COPYING +LICENSE_FILE_GPLv1= ${WRKSRC}/COPYING + USES= perl5 USE_PERL5= configure + +NO_ARCH= yes .include Modified: head/net-mgmt/p5-Net-CIDR/distinfo ============================================================================== --- head/net-mgmt/p5-Net-CIDR/distinfo Wed Jun 20 19:14:11 2018 (r472900) +++ head/net-mgmt/p5-Net-CIDR/distinfo Wed Jun 20 19:21:09 2018 (r472901) @@ -1,2 +1,3 @@ -SHA256 (Net-CIDR-0.18.tar.gz) = c3df7ea8d42b2d8ec328c187329c5f8c4db6a2470873f61e3d0dd91430ef1427 -SIZE (Net-CIDR-0.18.tar.gz) = 10761 +TIMESTAMP = 1529494721 +SHA256 (Net-CIDR-0.19.tar.gz) = 855bf4662062de1a85aba3b0e4c82665d7107873a43836f3c03e7f260dd89f3e +SIZE (Net-CIDR-0.19.tar.gz) = 11037 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:26:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 963D21005CC7; Wed, 20 Jun 2018 19:26:02 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4AE106ED50; Wed, 20 Jun 2018 19:26:02 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2807D268FF; Wed, 20 Jun 2018 19:26:02 +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 w5KJQ25G053691; Wed, 20 Jun 2018 19:26:02 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJQ1ol053689; Wed, 20 Jun 2018 19:26:01 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806201926.w5KJQ1ol053689@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Wed, 20 Jun 2018 19:26:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472902 - head/sysutils/nut X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/sysutils/nut X-SVN-Commit-Revision: 472902 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:26:02 -0000 Author: cy Date: Wed Jun 20 19:26:01 2018 New Revision: 472902 URL: https://svnweb.freebsd.org/changeset/ports/472902 Log: Correct neon config. PR: 229186 Submitted by: Franko Fichtner MFH: 2018Q2 Modified: head/sysutils/nut/Makefile (contents, props changed) Modified: head/sysutils/nut/Makefile ============================================================================== --- head/sysutils/nut/Makefile Wed Jun 20 19:21:09 2018 (r472901) +++ head/sysutils/nut/Makefile Wed Jun 20 19:26:01 2018 (r472902) @@ -3,7 +3,7 @@ PORTNAME= nut PORTVERSION= 2.7.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils MASTER_SITES= http://www.networkupstools.org/source/${PORTVERSION:R}/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig @@ -105,11 +105,11 @@ PLIST_SUB+= NUT_SNMP="@comment " .if ${PORT_OPTIONS:MNEON} LIB_DEPENDS+= libneon.so:www/neon -CONFIGURE_ARGS+= --with-neonxml +CONFIGURE_ARGS+= --with-neon PLIST_SUB+= NUT_NEON="" .else -CONFIGURE_ARGS+= --without-neonxml -CONFIGURE_ARGS+= --disable-neonxml +CONFIGURE_ARGS+= --without-neon +CONFIGURE_ARGS+= --disable-neon PLIST_SUB+= NUT_NEON="@comment " .endif From owner-svn-ports-head@freebsd.org Wed Jun 20 19:29:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D31F61005F71; Wed, 20 Jun 2018 19:29:55 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 843F86F066; Wed, 20 Jun 2018 19:29:55 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 47EED26903; Wed, 20 Jun 2018 19:29:55 +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 w5KJTtUQ054040; Wed, 20 Jun 2018 19:29:55 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJTsxs054037; Wed, 20 Jun 2018 19:29:54 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806201929.w5KJTsxs054037@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 20 Jun 2018 19:29:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472903 - in head/databases: . p5-Scope-Container-DBI X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/databases: . p5-Scope-Container-DBI X-SVN-Commit-Revision: 472903 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:29:56 -0000 Author: pi Date: Wed Jun 20 19:29:54 2018 New Revision: 472903 URL: https://svnweb.freebsd.org/changeset/ports/472903 Log: New port: databases/p5-Scope-Container-DBI DB connection manager with Scope::Container WWW: https://metacpan.org/release/Scope-Container-DBI PR: 229145 Submitted by: Tomohiro Hosaka Added: head/databases/p5-Scope-Container-DBI/ head/databases/p5-Scope-Container-DBI/Makefile (contents, props changed) head/databases/p5-Scope-Container-DBI/distinfo (contents, props changed) head/databases/p5-Scope-Container-DBI/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Jun 20 19:26:01 2018 (r472902) +++ head/databases/Makefile Wed Jun 20 19:29:54 2018 (r472903) @@ -494,7 +494,7 @@ SUBDIR += p5-SQL-Statement SUBDIR += p5-SQL-Translator SUBDIR += p5-SQLite-Work - SUBDIR += p5-Search-InvertedIndex + SUBDIR += p5-Scope-Container-DBI SUBDIR += p5-Search-Namazu SUBDIR += p5-Search-Xapian10 SUBDIR += p5-Search-Xapian12 Added: head/databases/p5-Scope-Container-DBI/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Scope-Container-DBI/Makefile Wed Jun 20 19:29:54 2018 (r472903) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= Scope-Container-DBI +PORTVERSION= 0.09 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= DB connection manager with Scope::Container + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +RUN_DEPENDS= p5-DBI>=1.615:databases/p5-DBI \ + p5-Log-Minimal>=0:devel/p5-Log-Minimal \ + p5-Scope-Container>=0.04:devel/p5-Scope-Container \ + p5-Try-Tiny>=0.11:lang/p5-Try-Tiny +TEST_DEPENDS= p5-DBD-SQLite>=0:databases/p5-DBD-SQLite \ + p5-Test-SharedFork>=0:devel/p5-Test-SharedFork + +USES= perl5 +USE_PERL5= configure +PLIST_FILES= ${SITE_PERL_REL}/Scope/Container/DBI.pm \ + ${SITE_MAN3_REL}/Scope::Container::DBI.3.gz + +.include Added: head/databases/p5-Scope-Container-DBI/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Scope-Container-DBI/distinfo Wed Jun 20 19:29:54 2018 (r472903) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529395097 +SHA256 (Scope-Container-DBI-0.09.tar.gz) = 3d3af3fb4a7afbbef517dd8019686c3b45c1be332dff476e7a2f2e12bb537162 +SIZE (Scope-Container-DBI-0.09.tar.gz) = 23578 Added: head/databases/p5-Scope-Container-DBI/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Scope-Container-DBI/pkg-descr Wed Jun 20 19:29:54 2018 (r472903) @@ -0,0 +1,3 @@ +DB connection manager with Scope::Container + +WWW: https://metacpan.org/release/Scope-Container-DBI From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CBBE010064D1; Wed, 20 Jun 2018 19:35:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C3376F6E0; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5956226A91; Wed, 20 Jun 2018 19:35: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 w5KJZFXA059040; Wed, 20 Jun 2018 19:35:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZFOl059039; Wed, 20 Jun 2018 19:35:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZFOl059039@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, 20 Jun 2018 19:35:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472904 - head/archivers/cabextract X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/archivers/cabextract X-SVN-Commit-Revision: 472904 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:16 -0000 Author: sunpoet Date: Wed Jun 20 19:35:14 2018 New Revision: 472904 URL: https://svnweb.freebsd.org/changeset/ports/472904 Log: Take maintainership Modified: head/archivers/cabextract/Makefile Modified: head/archivers/cabextract/Makefile ============================================================================== --- head/archivers/cabextract/Makefile Wed Jun 20 19:29:54 2018 (r472903) +++ head/archivers/cabextract/Makefile Wed Jun 20 19:35:14 2018 (r472904) @@ -6,7 +6,7 @@ PORTVERSION= 1.6 CATEGORIES= archivers MASTER_SITES= http://www.cabextract.org.uk/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Program to extract Microsoft cabinet (.CAB) files LICENSE= GPLv3 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82176100651C; Wed, 20 Jun 2018 19:35:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1078F6F798; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65C1826A92; Wed, 20 Jun 2018 19:35: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 w5KJZK7k059149; Wed, 20 Jun 2018 19:35:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZK4T059148; Wed, 20 Jun 2018 19:35:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZK4T059148@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, 20 Jun 2018 19:35:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472905 - head/archivers/rar X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/archivers/rar X-SVN-Commit-Revision: 472905 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:22 -0000 Author: sunpoet Date: Wed Jun 20 19:35:19 2018 New Revision: 472905 URL: https://svnweb.freebsd.org/changeset/ports/472905 Log: Take maintainership Modified: head/archivers/rar/Makefile Modified: head/archivers/rar/Makefile ============================================================================== --- head/archivers/rar/Makefile Wed Jun 20 19:35:14 2018 (r472904) +++ head/archivers/rar/Makefile Wed Jun 20 19:35:19 2018 (r472905) @@ -8,7 +8,7 @@ CATEGORIES= archivers MASTER_SITES= http://www.rarlab.com/rar/ DISTNAME= rarbsd-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= File archiver (binary port) LICENSE= RAR From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE3EA1006558; Wed, 20 Jun 2018 19:35:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9FAAE6F7B1; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8252926A93; Wed, 20 Jun 2018 19:35: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 w5KJZPID059258; Wed, 20 Jun 2018 19:35:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZPRF059257; Wed, 20 Jun 2018 19:35:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZPRF059257@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, 20 Jun 2018 19:35:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472906 - head/textproc/docbook-xsl X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/docbook-xsl X-SVN-Commit-Revision: 472906 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:26 -0000 Author: sunpoet Date: Wed Jun 20 19:35:24 2018 New Revision: 472906 URL: https://svnweb.freebsd.org/changeset/ports/472906 Log: Take maintainership Modified: head/textproc/docbook-xsl/Makefile Modified: head/textproc/docbook-xsl/Makefile ============================================================================== --- head/textproc/docbook-xsl/Makefile Wed Jun 20 19:35:19 2018 (r472905) +++ head/textproc/docbook-xsl/Makefile Wed Jun 20 19:35:24 2018 (r472906) @@ -8,7 +8,7 @@ MASTER_SITES= SF/docbook/${PORTNAME}/${PORTVERSION}:sr SF/docbook/${PORTNAME}-doc/${PORTVERSION}:doc DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= XSL DocBook stylesheets LICENSE= MIT From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17E3B1006591; Wed, 20 Jun 2018 19:35:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B40B96F885; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9429526A94; Wed, 20 Jun 2018 19:35: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 w5KJZUTg059367; Wed, 20 Jun 2018 19:35:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZU37059366; Wed, 20 Jun 2018 19:35:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZU37059366@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, 20 Jun 2018 19:35:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472907 - head/textproc/sdocbook-xml X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/sdocbook-xml X-SVN-Commit-Revision: 472907 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:31 -0000 Author: sunpoet Date: Wed Jun 20 19:35:30 2018 New Revision: 472907 URL: https://svnweb.freebsd.org/changeset/ports/472907 Log: Take maintainership Modified: head/textproc/sdocbook-xml/Makefile Modified: head/textproc/sdocbook-xml/Makefile ============================================================================== --- head/textproc/sdocbook-xml/Makefile Wed Jun 20 19:35:24 2018 (r472906) +++ head/textproc/sdocbook-xml/Makefile Wed Jun 20 19:35:30 2018 (r472907) @@ -9,7 +9,7 @@ CATEGORIES= textproc MASTER_SITES= https://www.oasis-open.org/docbook/xml/simple/${PORTVERSION}/ DISTNAME= docbook-simple-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= "Simplified" DocBook XML DTD RUN_DEPENDS+= xmlcatmgr:textproc/xmlcatmgr From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C62A10065E3; Wed, 20 Jun 2018 19:35:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C4FE36F96C; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9F00C26A95; Wed, 20 Jun 2018 19:35: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 w5KJZZoj059476; Wed, 20 Jun 2018 19:35:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZZrW059475; Wed, 20 Jun 2018 19:35:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZZrW059475@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, 20 Jun 2018 19:35:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472908 - head/www/aria2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/aria2 X-SVN-Commit-Revision: 472908 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:36 -0000 Author: sunpoet Date: Wed Jun 20 19:35:35 2018 New Revision: 472908 URL: https://svnweb.freebsd.org/changeset/ports/472908 Log: Enable CA_BUNDLE option by default - Bump PORTREVISION for dependency change Modified: head/www/aria2/Makefile Modified: head/www/aria2/Makefile ============================================================================== --- head/www/aria2/Makefile Wed Jun 20 19:35:30 2018 (r472907) +++ head/www/aria2/Makefile Wed Jun 20 19:35:35 2018 (r472908) @@ -3,6 +3,7 @@ PORTNAME= aria2 PORTVERSION= 1.33.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/release-${PORTVERSION}/ \ LOCAL/sunpoet @@ -14,7 +15,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= CA_BUNDLE CARES DOCS NLS SQLITE SSH2 -OPTIONS_DEFAULT=SQLITE +OPTIONS_DEFAULT=CA_BUNDLE SQLITE OPTIONS_SUB= yes CA_BUNDLE_DESC= Use CA bundle from Mozilla Project SSH2_DESC= SSH2 protocol support From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:41 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1791B100661B; Wed, 20 Jun 2018 19:35:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A571F6FA38; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7EF7F26A96; Wed, 20 Jun 2018 19:35: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 w5KJZeJZ059598; Wed, 20 Jun 2018 19:35:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZe69059597; Wed, 20 Jun 2018 19:35:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZe69059597@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, 20 Jun 2018 19:35:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472909 - head/archivers/p5-Archive-Tar-Wrapper X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/archivers/p5-Archive-Tar-Wrapper X-SVN-Commit-Revision: 472909 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:41 -0000 Author: sunpoet Date: Wed Jun 20 19:35:39 2018 New Revision: 472909 URL: https://svnweb.freebsd.org/changeset/ports/472909 Log: Update to 0.27 Changes: https://metacpan.org/changes/distribution/Archive-Tar-Wrapper Modified: head/archivers/p5-Archive-Tar-Wrapper/Makefile head/archivers/p5-Archive-Tar-Wrapper/distinfo Modified: head/archivers/p5-Archive-Tar-Wrapper/Makefile ============================================================================== --- head/archivers/p5-Archive-Tar-Wrapper/Makefile Wed Jun 20 19:35:35 2018 (r472908) +++ head/archivers/p5-Archive-Tar-Wrapper/Makefile Wed Jun 20 19:35:39 2018 (r472909) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Archive-Tar-Wrapper -PORTVERSION= 0.25 +PORTVERSION= 0.27 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -22,4 +22,10 @@ NO_ARCH= yes USE_PERL5= configure USES= perl5 -.include +.include + +.if ${PERL_LEVEL} < 502508 +TEST_DEPENDS+= p5-Test-Simple>=1.302073:devel/p5-Test-Simple +.endif + +.include Modified: head/archivers/p5-Archive-Tar-Wrapper/distinfo ============================================================================== --- head/archivers/p5-Archive-Tar-Wrapper/distinfo Wed Jun 20 19:35:35 2018 (r472908) +++ head/archivers/p5-Archive-Tar-Wrapper/distinfo Wed Jun 20 19:35:39 2018 (r472909) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528202647 -SHA256 (Archive-Tar-Wrapper-0.25.tar.gz) = 47cfbafc8cca360607e7936aac06e5223d9f7d4d874d327f6223a83f840fc5ed -SIZE (Archive-Tar-Wrapper-0.25.tar.gz) = 33047 +TIMESTAMP = 1529351324 +SHA256 (Archive-Tar-Wrapper-0.27.tar.gz) = 93b10a48e7de258ac924737cde2c053abb215904c6a9e9934fcb93023dba8052 +SIZE (Archive-Tar-Wrapper-0.27.tar.gz) = 32729 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EB1A1006661; Wed, 20 Jun 2018 19:35:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 25ACC6FB25; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C354226A97; Wed, 20 Jun 2018 19:35: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 w5KJZj8q059723; Wed, 20 Jun 2018 19:35:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZjP1059722; Wed, 20 Jun 2018 19:35:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZjP1059722@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, 20 Jun 2018 19:35:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472910 - head/databases/p5-BSON X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/p5-BSON X-SVN-Commit-Revision: 472910 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:47 -0000 Author: sunpoet Date: Wed Jun 20 19:35:45 2018 New Revision: 472910 URL: https://svnweb.freebsd.org/changeset/ports/472910 Log: Update to 1.6.4 Changes: https://metacpan.org/changes/distribution/BSON Modified: head/databases/p5-BSON/Makefile head/databases/p5-BSON/distinfo Modified: head/databases/p5-BSON/Makefile ============================================================================== --- head/databases/p5-BSON/Makefile Wed Jun 20 19:35:39 2018 (r472909) +++ head/databases/p5-BSON/Makefile Wed Jun 20 19:35:45 2018 (r472910) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= BSON -PORTVERSION= 1.6.3 +PORTVERSION= 1.6.4 DISTVERSIONPREFIX= v CATEGORIES= databases perl5 MASTER_SITES= CPAN Modified: head/databases/p5-BSON/distinfo ============================================================================== --- head/databases/p5-BSON/distinfo Wed Jun 20 19:35:39 2018 (r472909) +++ head/databases/p5-BSON/distinfo Wed Jun 20 19:35:45 2018 (r472910) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527438164 -SHA256 (BSON-v1.6.3.tar.gz) = b0e7655ef6eac8683c7a688d4188d51c11a24511dbf7fa6814dcbc500f3617ef -SIZE (BSON-v1.6.3.tar.gz) = 103745 +TIMESTAMP = 1529352863 +SHA256 (BSON-v1.6.4.tar.gz) = c410c1b634811f956e176c34446728d34729a4e87593a47bae8968203558ad18 +SIZE (BSON-v1.6.4.tar.gz) = 104047 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5BC71006695; Wed, 20 Jun 2018 19:35:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 061046FBFF; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F5AB26A98; Wed, 20 Jun 2018 19:35: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 w5KJZp9a059848; Wed, 20 Jun 2018 19:35:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZpgc059847; Wed, 20 Jun 2018 19:35:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZpgc059847@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, 20 Jun 2018 19:35:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472911 - head/devel/p5-CPAN-Perl-Releases X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-CPAN-Perl-Releases X-SVN-Commit-Revision: 472911 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:52 -0000 Author: sunpoet Date: Wed Jun 20 19:35:50 2018 New Revision: 472911 URL: https://svnweb.freebsd.org/changeset/ports/472911 Log: Update to 3.60 Changes: https://metacpan.org/changes/distribution/CPAN-Perl-Releases 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 Wed Jun 20 19:35:45 2018 (r472910) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Wed Jun 20 19:35:50 2018 (r472911) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 3.58 +PORTVERSION= 3.60 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Wed Jun 20 19:35:45 2018 (r472910) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Wed Jun 20 19:35:50 2018 (r472911) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526972293 -SHA256 (CPAN-Perl-Releases-3.58.tar.gz) = a31cef99a2c54a6faf3360aa136ce4301fa8f25416bc4deb82e58a01827ca6ec -SIZE (CPAN-Perl-Releases-3.58.tar.gz) = 24420 +TIMESTAMP = 1529352854 +SHA256 (CPAN-Perl-Releases-3.60.tar.gz) = 04489ae7168aba29c5af07df345276434c2a9f0ffe49aed4301deace6af0aaa9 +SIZE (CPAN-Perl-Releases-3.60.tar.gz) = 24464 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:35:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FFD710066DB; Wed, 20 Jun 2018 19:35:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D73446FCF9; Wed, 20 Jun 2018 19:35: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 03A8926A99; Wed, 20 Jun 2018 19:35: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 w5KJZu7Q059975; Wed, 20 Jun 2018 19:35:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJZuTO059973; Wed, 20 Jun 2018 19:35:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201935.w5KJZuTO059973@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, 20 Jun 2018 19:35:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472912 - head/devel/p5-List-SomeUtils-XS X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-List-SomeUtils-XS X-SVN-Commit-Revision: 472912 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:35:58 -0000 Author: sunpoet Date: Wed Jun 20 19:35:56 2018 New Revision: 472912 URL: https://svnweb.freebsd.org/changeset/ports/472912 Log: Update to 0.58 Changes: https://metacpan.org/changes/distribution/List-SomeUtils-XS Modified: head/devel/p5-List-SomeUtils-XS/Makefile head/devel/p5-List-SomeUtils-XS/distinfo Modified: head/devel/p5-List-SomeUtils-XS/Makefile ============================================================================== --- head/devel/p5-List-SomeUtils-XS/Makefile Wed Jun 20 19:35:50 2018 (r472911) +++ head/devel/p5-List-SomeUtils-XS/Makefile Wed Jun 20 19:35:56 2018 (r472912) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= List-SomeUtils-XS -PORTVERSION= 0.57 +PORTVERSION= 0.58 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-List-SomeUtils-XS/distinfo ============================================================================== --- head/devel/p5-List-SomeUtils-XS/distinfo Wed Jun 20 19:35:50 2018 (r472911) +++ head/devel/p5-List-SomeUtils-XS/distinfo Wed Jun 20 19:35:56 2018 (r472912) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527438180 -SHA256 (List-SomeUtils-XS-0.57.tar.gz) = e1bd210abba928fd431574d7479d4562d02d0c4dadcafa3671b73cb969bc63bd -SIZE (List-SomeUtils-XS-0.57.tar.gz) = 95821 +TIMESTAMP = 1529352873 +SHA256 (List-SomeUtils-XS-0.58.tar.gz) = 4f9e4d2622481b79cc298e8e29de8a30943aff9f4be7992c0ebb7b22e5b4b297 +SIZE (List-SomeUtils-XS-0.58.tar.gz) = 94190 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C8AC1006704; Wed, 20 Jun 2018 19:36:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 93E996FD8A; Wed, 20 Jun 2018 19:36:02 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E13626A9A; Wed, 20 Jun 2018 19:36: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 w5KJa22D060104; Wed, 20 Jun 2018 19:36:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJa13E060102; Wed, 20 Jun 2018 19:36:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJa13E060102@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, 20 Jun 2018 19:36:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472913 - head/devel/p5-PAR-Packer X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-PAR-Packer X-SVN-Commit-Revision: 472913 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:03 -0000 Author: sunpoet Date: Wed Jun 20 19:36:01 2018 New Revision: 472913 URL: https://svnweb.freebsd.org/changeset/ports/472913 Log: Update to 1.045 Changes: https://metacpan.org/changes/distribution/PAR-Packer Modified: head/devel/p5-PAR-Packer/Makefile head/devel/p5-PAR-Packer/distinfo Modified: head/devel/p5-PAR-Packer/Makefile ============================================================================== --- head/devel/p5-PAR-Packer/Makefile Wed Jun 20 19:35:56 2018 (r472912) +++ head/devel/p5-PAR-Packer/Makefile Wed Jun 20 19:36:01 2018 (r472913) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PAR-Packer -PORTVERSION= 1.043 +PORTVERSION= 1.045 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-PAR-Packer/distinfo ============================================================================== --- head/devel/p5-PAR-Packer/distinfo Wed Jun 20 19:35:56 2018 (r472912) +++ head/devel/p5-PAR-Packer/distinfo Wed Jun 20 19:36:01 2018 (r472913) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522936994 -SHA256 (PAR-Packer-1.043.tar.gz) = 0af25da185ba08eeafd44d6ed6572c00a52c5c4a26f14caa4058b848344a2774 -SIZE (PAR-Packer-1.043.tar.gz) = 201650 +TIMESTAMP = 1529352897 +SHA256 (PAR-Packer-1.045.tar.gz) = 4f802b2b30b66a568d93ab947014a4706599a2fe823e746ba806d39029d66d39 +SIZE (PAR-Packer-1.045.tar.gz) = 200300 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BF601006736; Wed, 20 Jun 2018 19:36:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4306F6FE7E; Wed, 20 Jun 2018 19:36:07 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9630B26A9B; Wed, 20 Jun 2018 19:36: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 w5KJa76A060229; Wed, 20 Jun 2018 19:36:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJa7V1060228; Wed, 20 Jun 2018 19:36:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJa7V1060228@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, 20 Jun 2018 19:36:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472914 - head/mail/p5-Email-Address-XS X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/mail/p5-Email-Address-XS X-SVN-Commit-Revision: 472914 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:09 -0000 Author: sunpoet Date: Wed Jun 20 19:36:06 2018 New Revision: 472914 URL: https://svnweb.freebsd.org/changeset/ports/472914 Log: Update to 1.04 Changes: https://metacpan.org/changes/distribution/Email-Address-XS Modified: head/mail/p5-Email-Address-XS/Makefile head/mail/p5-Email-Address-XS/distinfo Modified: head/mail/p5-Email-Address-XS/Makefile ============================================================================== --- head/mail/p5-Email-Address-XS/Makefile Wed Jun 20 19:36:01 2018 (r472913) +++ head/mail/p5-Email-Address-XS/Makefile Wed Jun 20 19:36:06 2018 (r472914) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Email-Address-XS -PORTVERSION= 1.03 +PORTVERSION= 1.04 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/mail/p5-Email-Address-XS/distinfo ============================================================================== --- head/mail/p5-Email-Address-XS/distinfo Wed Jun 20 19:36:01 2018 (r472913) +++ head/mail/p5-Email-Address-XS/distinfo Wed Jun 20 19:36:06 2018 (r472914) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521194267 -SHA256 (Email-Address-XS-1.03.tar.gz) = d148cf08c4571ebef59b967ea29eb53714fe24d658edc5f4bf0b889c530ccece -SIZE (Email-Address-XS-1.03.tar.gz) = 28745 +TIMESTAMP = 1529353010 +SHA256 (Email-Address-XS-1.04.tar.gz) = 995f6d04a7b487dd5e1b55e3b52cad84c87750937c96feb6e24e8f1f10cd593e +SIZE (Email-Address-XS-1.04.tar.gz) = 29112 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07C0E1006760; Wed, 20 Jun 2018 19:36:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 820016FF33; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 301C026A9C; Wed, 20 Jun 2018 19:36: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 w5KJaD0k060354; Wed, 20 Jun 2018 19:36:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJaCUC060352; Wed, 20 Jun 2018 19:36:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJaCUC060352@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, 20 Jun 2018 19:36:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472915 - head/security/p5-Authen-SCRAM X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/p5-Authen-SCRAM X-SVN-Commit-Revision: 472915 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:14 -0000 Author: sunpoet Date: Wed Jun 20 19:36:12 2018 New Revision: 472915 URL: https://svnweb.freebsd.org/changeset/ports/472915 Log: Update to 0.010 Changes: https://metacpan.org/changes/distribution/Authen-SCRAM Modified: head/security/p5-Authen-SCRAM/Makefile head/security/p5-Authen-SCRAM/distinfo Modified: head/security/p5-Authen-SCRAM/Makefile ============================================================================== --- head/security/p5-Authen-SCRAM/Makefile Wed Jun 20 19:36:06 2018 (r472914) +++ head/security/p5-Authen-SCRAM/Makefile Wed Jun 20 19:36:12 2018 (r472915) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Authen-SCRAM -PORTVERSION= 0.009 +PORTVERSION= 0.010 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/security/p5-Authen-SCRAM/distinfo ============================================================================== --- head/security/p5-Authen-SCRAM/distinfo Wed Jun 20 19:36:06 2018 (r472914) +++ head/security/p5-Authen-SCRAM/distinfo Wed Jun 20 19:36:12 2018 (r472915) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522754028 -SHA256 (Authen-SCRAM-0.009.tar.gz) = 6279861703d934a3070c259c81884bd717380de171e4d98174081a95efd3a2d0 -SIZE (Authen-SCRAM-0.009.tar.gz) = 25013 +TIMESTAMP = 1529353072 +SHA256 (Authen-SCRAM-0.010.tar.gz) = a9889ec41f2f78b7e7c7a7f9d744ba79b81522f537f5967602ab2de6a70d8fcf +SIZE (Authen-SCRAM-0.010.tar.gz) = 26314 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4124810067A6; Wed, 20 Jun 2018 19:36:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B80B7002D; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 97F9326A9D; Wed, 20 Jun 2018 19:36: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 w5KJaINL060480; Wed, 20 Jun 2018 19:36:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJaIOL060478; Wed, 20 Jun 2018 19:36:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJaIOL060478@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, 20 Jun 2018 19:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472916 - head/security/p5-CACertOrg-CA X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/p5-CACertOrg-CA X-SVN-Commit-Revision: 472916 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:21 -0000 Author: sunpoet Date: Wed Jun 20 19:36:17 2018 New Revision: 472916 URL: https://svnweb.freebsd.org/changeset/ports/472916 Log: Update to 20110724.005 Changes: https://metacpan.org/changes/distribution/CACertOrg-CA Modified: head/security/p5-CACertOrg-CA/Makefile head/security/p5-CACertOrg-CA/distinfo Modified: head/security/p5-CACertOrg-CA/Makefile ============================================================================== --- head/security/p5-CACertOrg-CA/Makefile Wed Jun 20 19:36:12 2018 (r472915) +++ head/security/p5-CACertOrg-CA/Makefile Wed Jun 20 19:36:17 2018 (r472916) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= CACertOrg-CA -PORTVERSION= 20110724.004 -PORTREVISION= 1 +PORTVERSION= 20110724.005 CATEGORIES= security perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:BDFOY Modified: head/security/p5-CACertOrg-CA/distinfo ============================================================================== --- head/security/p5-CACertOrg-CA/distinfo Wed Jun 20 19:36:12 2018 (r472915) +++ head/security/p5-CACertOrg-CA/distinfo Wed Jun 20 19:36:17 2018 (r472916) @@ -1,2 +1,3 @@ -SHA256 (CACertOrg-CA-20110724.004.tar.gz) = 17eede0e3f5449ac1879c3d5e8edb8ddd37caca33e302567ff4a03131ba78fbb -SIZE (CACertOrg-CA-20110724.004.tar.gz) = 6707 +TIMESTAMP = 1529353088 +SHA256 (CACertOrg-CA-20110724.005.tar.gz) = 20dbc5244908eaae088bc80330938c393db5ccd4afa79da0efce869e106e64da +SIZE (CACertOrg-CA-20110724.005.tar.gz) = 9255 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1893810067C1; Wed, 20 Jun 2018 19:36:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA8E4700A5; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9BCCA26A9E; Wed, 20 Jun 2018 19:36: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 w5KJaNIP060602; Wed, 20 Jun 2018 19:36:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJaNb7060601; Wed, 20 Jun 2018 19:36:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJaNb7060601@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, 20 Jun 2018 19:36:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472917 - head/security/p5-IO-Async-SSL X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/p5-IO-Async-SSL X-SVN-Commit-Revision: 472917 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:24 -0000 Author: sunpoet Date: Wed Jun 20 19:36:23 2018 New Revision: 472917 URL: https://svnweb.freebsd.org/changeset/ports/472917 Log: Update to 0.22 Changes: https://metacpan.org/changes/distribution/IO-Async-SSL Modified: head/security/p5-IO-Async-SSL/Makefile head/security/p5-IO-Async-SSL/distinfo Modified: head/security/p5-IO-Async-SSL/Makefile ============================================================================== --- head/security/p5-IO-Async-SSL/Makefile Wed Jun 20 19:36:17 2018 (r472916) +++ head/security/p5-IO-Async-SSL/Makefile Wed Jun 20 19:36:23 2018 (r472917) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= IO-Async-SSL -PORTVERSION= 0.21 +PORTVERSION= 0.22 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -16,14 +16,14 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= p5-Future>=0.33:devel/p5-Future \ p5-IO-Async>=0.66:devel/p5-IO-Async\ - p5-IO-Socket-SSL>=1.968:security/p5-IO-Socket-SSL + p5-IO-Socket-SSL>=2.003:security/p5-IO-Socket-SSL RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Identity>=0:devel/p5-Test-Identity \ p5-Test-Pod>=1:devel/p5-Test-Pod \ socat:net/socat NO_ARCH= yes -USE_PERL5= configure +USE_PERL5= modbuild USES= perl5 .include Modified: head/security/p5-IO-Async-SSL/distinfo ============================================================================== --- head/security/p5-IO-Async-SSL/distinfo Wed Jun 20 19:36:17 2018 (r472916) +++ head/security/p5-IO-Async-SSL/distinfo Wed Jun 20 19:36:23 2018 (r472917) @@ -1,3 +1,3 @@ -TIMESTAMP = 1509636092 -SHA256 (IO-Async-SSL-0.21.tar.gz) = 5d570359d1e70c50079ffb4a5c946a11bd0748dca7fd2e5ad2e151bfcb63d765 -SIZE (IO-Async-SSL-0.21.tar.gz) = 29556 +TIMESTAMP = 1529353109 +SHA256 (IO-Async-SSL-0.22.tar.gz) = 0c7363a7f1a08805bd1b2cf2b1a42a950ca71914c2aedbdd985970e011331a21 +SIZE (IO-Async-SSL-0.22.tar.gz) = 29307 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F3BE100680E; Wed, 20 Jun 2018 19:36:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BDDE701CE; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 675AD26A9F; Wed, 20 Jun 2018 19:36: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 w5KJaT1s060743; Wed, 20 Jun 2018 19:36:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJaSW4060740; Wed, 20 Jun 2018 19:36:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJaSW4060740@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, 20 Jun 2018 19:36:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472918 - head/textproc/p5-Lingua-EN-PluralToSingular X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/p5-Lingua-EN-PluralToSingular X-SVN-Commit-Revision: 472918 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:32 -0000 Author: sunpoet Date: Wed Jun 20 19:36:28 2018 New Revision: 472918 URL: https://svnweb.freebsd.org/changeset/ports/472918 Log: Update to 0.20 Changes: https://metacpan.org/changes/distribution/Lingua-EN-PluralToSingular Modified: head/textproc/p5-Lingua-EN-PluralToSingular/Makefile head/textproc/p5-Lingua-EN-PluralToSingular/distinfo head/textproc/p5-Lingua-EN-PluralToSingular/pkg-plist Modified: head/textproc/p5-Lingua-EN-PluralToSingular/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-PluralToSingular/Makefile Wed Jun 20 19:36:23 2018 (r472917) +++ head/textproc/p5-Lingua-EN-PluralToSingular/Makefile Wed Jun 20 19:36:28 2018 (r472918) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Lingua-EN-PluralToSingular -PORTVERSION= 0.19 +PORTVERSION= 0.20 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-Lingua-EN-PluralToSingular/distinfo ============================================================================== --- head/textproc/p5-Lingua-EN-PluralToSingular/distinfo Wed Jun 20 19:36:23 2018 (r472917) +++ head/textproc/p5-Lingua-EN-PluralToSingular/distinfo Wed Jun 20 19:36:28 2018 (r472918) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486886406 -SHA256 (Lingua-EN-PluralToSingular-0.19.tar.gz) = c71b6c1aec01aae9c42aef0d9f147a437e91a7cc5cea6e4abbc35440638f299e -SIZE (Lingua-EN-PluralToSingular-0.19.tar.gz) = 8884 +TIMESTAMP = 1529353125 +SHA256 (Lingua-EN-PluralToSingular-0.20.tar.gz) = 3fe620cecef971b1329e495ccf33a12d40c25d3e1581517bd6024b9f170c85e9 +SIZE (Lingua-EN-PluralToSingular-0.20.tar.gz) = 13643 Modified: head/textproc/p5-Lingua-EN-PluralToSingular/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-EN-PluralToSingular/pkg-plist Wed Jun 20 19:36:23 2018 (r472917) +++ head/textproc/p5-Lingua-EN-PluralToSingular/pkg-plist Wed Jun 20 19:36:28 2018 (r472918) @@ -1,4 +1,5 @@ bin/singular %%SITE_PERL%%/Lingua/EN/PluralToSingular.pm %%SITE_PERL%%/Lingua/EN/PluralToSingular.pod +%%PERL5_MAN1%%/singular.1.gz %%PERL5_MAN3%%/Lingua::EN::PluralToSingular.3.gz From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E87DF1006837; Wed, 20 Jun 2018 19:36:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9AB7070250; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D43826AA0; Wed, 20 Jun 2018 19:36: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 w5KJaY9X060874; Wed, 20 Jun 2018 19:36:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJaY7G060872; Wed, 20 Jun 2018 19:36:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJaY7G060872@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, 20 Jun 2018 19:36:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472919 - head/devel/py-git_semver X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-git_semver X-SVN-Commit-Revision: 472919 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:35 -0000 Author: sunpoet Date: Wed Jun 20 19:36:33 2018 New Revision: 472919 URL: https://svnweb.freebsd.org/changeset/ports/472919 Log: Update to 0.2.3 Changes: https://github.com/hartym/git-semver/commits/master Modified: head/devel/py-git_semver/Makefile head/devel/py-git_semver/distinfo Modified: head/devel/py-git_semver/Makefile ============================================================================== --- head/devel/py-git_semver/Makefile Wed Jun 20 19:36:28 2018 (r472918) +++ head/devel/py-git_semver/Makefile Wed Jun 20 19:36:33 2018 (r472919) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git_semver -PORTVERSION= 0.2.2 +PORTVERSION= 0.2.3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,7 @@ COMMENT= Semantic versions management integrated to gi LICENSE= APACHE20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}GitPython>=2.1.7:devel/py-gitpython@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}GitPython>=2.1.9:devel/py-gitpython@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}semantic_version>=2.6.0:devel/py-semantic_version@${PY_FLAVOR} NO_ARCH= yes Modified: head/devel/py-git_semver/distinfo ============================================================================== --- head/devel/py-git_semver/distinfo Wed Jun 20 19:36:28 2018 (r472918) +++ head/devel/py-git_semver/distinfo Wed Jun 20 19:36:33 2018 (r472919) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521942605 -SHA256 (git_semver-0.2.2.tar.gz) = 78f1c04de2de53a8ce4e9305a62cc4ebcddc981905d03495955524f707a70fa0 -SIZE (git_semver-0.2.2.tar.gz) = 3330 +TIMESTAMP = 1522754235 +SHA256 (git_semver-0.2.3.tar.gz) = 0167db6b0a24299d2ce21f5500d600f29f6a1fe177796f4e5f09a6127c116f7b +SIZE (git_semver-0.2.3.tar.gz) = 3372 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25C821006887; Wed, 20 Jun 2018 19:36:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F64370384; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5A36526AA1; Wed, 20 Jun 2018 19:36: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 w5KJadhJ060983; Wed, 20 Jun 2018 19:36:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJad4S060982; Wed, 20 Jun 2018 19:36:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJad4S060982@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, 20 Jun 2018 19:36:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472920 - head/graphics/py-imgurpython X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/graphics/py-imgurpython X-SVN-Commit-Revision: 472920 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:43 -0000 Author: sunpoet Date: Wed Jun 20 19:36:38 2018 New Revision: 472920 URL: https://svnweb.freebsd.org/changeset/ports/472920 Log: Fix version requirement of RUN_DEPENDS - Allow concurrent installation (USE_PYTHON=concurrent) - Take maintainership Modified: head/graphics/py-imgurpython/Makefile Modified: head/graphics/py-imgurpython/Makefile ============================================================================== --- head/graphics/py-imgurpython/Makefile Wed Jun 20 19:36:33 2018 (r472919) +++ head/graphics/py-imgurpython/Makefile Wed Jun 20 19:36:38 2018 (r472920) @@ -6,15 +6,15 @@ CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python client for the Imgur API LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.7:www/py-requests@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils .include From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E6281006891; Wed, 20 Jun 2018 19:36:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E0A50703F6; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C23C526AA2; Wed, 20 Jun 2018 19:36: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 w5KJaikZ061092; Wed, 20 Jun 2018 19:36:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJai6f061091; Wed, 20 Jun 2018 19:36:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJai6f061091@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, 20 Jun 2018 19:36:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472921 - head/security/py-pysaml2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/py-pysaml2 X-SVN-Commit-Revision: 472921 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:45 -0000 Author: sunpoet Date: Wed Jun 20 19:36:44 2018 New Revision: 472921 URL: https://svnweb.freebsd.org/changeset/ports/472921 Log: Take maintainership Modified: head/security/py-pysaml2/Makefile Modified: head/security/py-pysaml2/Makefile ============================================================================== --- head/security/py-pysaml2/Makefile Wed Jun 20 19:36:38 2018 (r472920) +++ head/security/py-pysaml2/Makefile Wed Jun 20 19:36:44 2018 (r472921) @@ -8,7 +8,7 @@ CATEGORIES= security devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python implementation of SAML Version 2 LICENSE= APACHE20 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B56310068F1; Wed, 20 Jun 2018 19:36:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DD029704C3; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF94326AA3; Wed, 20 Jun 2018 19:36: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 w5KJanGN061217; Wed, 20 Jun 2018 19:36:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJanS3061216; Wed, 20 Jun 2018 19:36:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJanS3061216@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, 20 Jun 2018 19:36:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472922 - head/german/mythes X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/german/mythes X-SVN-Commit-Revision: 472922 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:50 -0000 Author: sunpoet Date: Wed Jun 20 19:36:49 2018 New Revision: 472922 URL: https://svnweb.freebsd.org/changeset/ports/472922 Log: Update to 2018.06.17 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Wed Jun 20 19:36:44 2018 (r472921) +++ head/german/mythes/Makefile Wed Jun 20 19:36:49 2018 (r472922) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2018.06.03 +PORTVERSION= 2018.06.17 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Wed Jun 20 19:36:44 2018 (r472921) +++ head/german/mythes/distinfo Wed Jun 20 19:36:49 2018 (r472922) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528123528 -SHA256 (mythes/Deutscher-Thesaurus-20180603.oxt) = 069e08eec458baded174367e6bc42b19192da018fb4f148edd17ffd7403edb89 -SIZE (mythes/Deutscher-Thesaurus-20180603.oxt) = 8880715 +TIMESTAMP = 1529331934 +SHA256 (mythes/Deutscher-Thesaurus-20180617.oxt) = b2b883a8c314e6ab04ae620bd83cc502fdcda6d7181bf14207e5aaf0d3f545ca +SIZE (mythes/Deutscher-Thesaurus-20180617.oxt) = 8899509 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:36:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE947100692E; Wed, 20 Jun 2018 19:36:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C1367059C; Wed, 20 Jun 2018 19:36: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F16F126AA4; Wed, 20 Jun 2018 19:36: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 w5KJasJY061342; Wed, 20 Jun 2018 19:36:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJas9b061340; Wed, 20 Jun 2018 19:36:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJas9b061340@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, 20 Jun 2018 19:36:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472923 - head/polish/hunspell X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/polish/hunspell X-SVN-Commit-Revision: 472923 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:36:55 -0000 Author: sunpoet Date: Wed Jun 20 19:36:54 2018 New Revision: 472923 URL: https://svnweb.freebsd.org/changeset/ports/472923 Log: Update to 20180612 Modified: head/polish/hunspell/Makefile head/polish/hunspell/distinfo Modified: head/polish/hunspell/Makefile ============================================================================== --- head/polish/hunspell/Makefile Wed Jun 20 19:36:49 2018 (r472922) +++ head/polish/hunspell/Makefile Wed Jun 20 19:36:54 2018 (r472923) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20180603 +PORTVERSION= 20180612 CATEGORIES= polish textproc MASTER_SITES= https://sjp.pl/slownik/ort/ \ LOCAL/sunpoet/${PORTNAME} Modified: head/polish/hunspell/distinfo ============================================================================== --- head/polish/hunspell/distinfo Wed Jun 20 19:36:49 2018 (r472922) +++ head/polish/hunspell/distinfo Wed Jun 20 19:36:54 2018 (r472923) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528125052 -SHA256 (hunspell/sjp-myspell-pl-20180603.zip) = 22869c07c6a022bfc55c29492541d02164919f2cb2f8ee8bfe9d59bc3603f96e -SIZE (hunspell/sjp-myspell-pl-20180603.zip) = 1207640 +TIMESTAMP = 1529332348 +SHA256 (hunspell/sjp-myspell-pl-20180612.zip) = da892bcef47bce4b8bc106a393825b9023d346845bd079c32d99b24858f8bdbd +SIZE (hunspell/sjp-myspell-pl-20180612.zip) = 1207674 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A08EC1006966; Wed, 20 Jun 2018 19:37:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 20BB770669; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EDA0C26AA5; Wed, 20 Jun 2018 19:36: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 w5KJaxF5061465; Wed, 20 Jun 2018 19:36:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJaxAa061463; Wed, 20 Jun 2018 19:36:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201936.w5KJaxAa061463@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, 20 Jun 2018 19:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472924 - head/textproc/sk-mythes X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/sk-mythes X-SVN-Commit-Revision: 472924 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:00 -0000 Author: sunpoet Date: Wed Jun 20 19:36:59 2018 New Revision: 472924 URL: https://svnweb.freebsd.org/changeset/ports/472924 Log: Update to 2018.06.17 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Wed Jun 20 19:36:54 2018 (r472923) +++ head/textproc/sk-mythes/Makefile Wed Jun 20 19:36:59 2018 (r472924) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2018.06.03 +PORTVERSION= 2018.06.17 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Wed Jun 20 19:36:54 2018 (r472923) +++ head/textproc/sk-mythes/distinfo Wed Jun 20 19:36:59 2018 (r472924) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528123539 -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20180603.zip) = d7f9afcd04034c6761409e51617b2480490e0b933165eb542cd11c32832b3e19 -SIZE (mythes/OOo-Thesaurus2-sk_SK-20180603.zip) = 239453 +TIMESTAMP = 1529331948 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20180617.zip) = 5a6b7448f90e49325c3571de4b02ae81c3bd51d147d4c0b770a34fd508a63742 +SIZE (mythes/OOo-Thesaurus2-sk_SK-20180617.zip) = 239453 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DC2E100699A; Wed, 20 Jun 2018 19:37:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2F3237079D; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 191AB26AA6; Wed, 20 Jun 2018 19:37: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 w5KJb4qh061577; Wed, 20 Jun 2018 19:37:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJb4HD061576; Wed, 20 Jun 2018 19:37:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJb4HD061576@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, 20 Jun 2018 19:37:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472925 - head/devel/p5-Class-Load X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Class-Load X-SVN-Commit-Revision: 472925 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:09 -0000 Author: sunpoet Date: Wed Jun 20 19:37:04 2018 New Revision: 472925 URL: https://svnweb.freebsd.org/changeset/ports/472925 Log: Fix TEST_DEPENDS Modified: head/devel/p5-Class-Load/Makefile Modified: head/devel/p5-Class-Load/Makefile ============================================================================== --- head/devel/p5-Class-Load/Makefile Wed Jun 20 19:36:59 2018 (r472924) +++ head/devel/p5-Class-Load/Makefile Wed Jun 20 19:37:04 2018 (r472925) @@ -20,7 +20,7 @@ BUILD_DEPENDS= p5-Data-OptList>=0.110:devel/p5-Data-Op p5-Try-Tiny>=0:lang/p5-Try-Tiny RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:devel/p5-Test-Fatal \ - p5-Test-Requires>=0:devel/p5-Test-Requires \ + p5-Test-Needs>=0:devel/p5-Test-Needs \ p5-Test-Without-Module>=0:devel/p5-Test-Without-Module CONFIGURE_ENV= PERL_MM_FALLBACK_SILENCE_WARNING=omg # hide warn about bad toolchain From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C5FB10069AD; Wed, 20 Jun 2018 19:37:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7544270803; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 57E4526AA7; Wed, 20 Jun 2018 19:37: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 w5KJbAIT061687; Wed, 20 Jun 2018 19:37:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbAiR061686; Wed, 20 Jun 2018 19:37:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbAiR061686@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, 20 Jun 2018 19:37:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472926 - head/devel/p5-CPAN-DistnameInfo X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-CPAN-DistnameInfo X-SVN-Commit-Revision: 472926 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:10 -0000 Author: sunpoet Date: Wed Jun 20 19:37:09 2018 New Revision: 472926 URL: https://svnweb.freebsd.org/changeset/ports/472926 Log: Add LICENSE Modified: head/devel/p5-CPAN-DistnameInfo/Makefile Modified: head/devel/p5-CPAN-DistnameInfo/Makefile ============================================================================== --- head/devel/p5-CPAN-DistnameInfo/Makefile Wed Jun 20 19:37:04 2018 (r472925) +++ head/devel/p5-CPAN-DistnameInfo/Makefile Wed Jun 20 19:37:09 2018 (r472926) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Extract distribution name and version from a CPAN filename +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E3DF1006A27; Wed, 20 Jun 2018 19:37:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8949709A2; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB2A126AA9; Wed, 20 Jun 2018 19:37: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 w5KJbKqu061902; Wed, 20 Jun 2018 19:37:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbKmK061901; Wed, 20 Jun 2018 19:37:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbKmK061901@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, 20 Jun 2018 19:37:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472928 - head/www/p5-Catalyst-Plugin-Cache-Memcached X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/p5-Catalyst-Plugin-Cache-Memcached X-SVN-Commit-Revision: 472928 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:21 -0000 Author: sunpoet Date: Wed Jun 20 19:37:20 2018 New Revision: 472928 URL: https://svnweb.freebsd.org/changeset/ports/472928 Log: Update WWW Modified: head/www/p5-Catalyst-Plugin-Cache-Memcached/pkg-descr Modified: head/www/p5-Catalyst-Plugin-Cache-Memcached/pkg-descr ============================================================================== --- head/www/p5-Catalyst-Plugin-Cache-Memcached/pkg-descr Wed Jun 20 19:37:14 2018 (r472927) +++ head/www/p5-Catalyst-Plugin-Cache-Memcached/pkg-descr Wed Jun 20 19:37:20 2018 (r472928) @@ -1,3 +1,3 @@ Extends base class with a distributed cache. -WWW: http://search.cpan.org/dist/Catalyst-Plugin-Cache-Memcached/ +WWW: https://metacpan.org/release/BOBTFISH/Catalyst-Plugin-Cache-Memcached-0.8 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C33D41006A14; Wed, 20 Jun 2018 19:37:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A2087092F; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 867D226AA8; Wed, 20 Jun 2018 19:37: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 w5KJbF4j061799; Wed, 20 Jun 2018 19:37:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbF8I061798; Wed, 20 Jun 2018 19:37:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbF8I061798@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, 20 Jun 2018 19:37:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472927 - head/www/p5-Dancer2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/p5-Dancer2 X-SVN-Commit-Revision: 472927 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:20 -0000 Author: sunpoet Date: Wed Jun 20 19:37:14 2018 New Revision: 472927 URL: https://svnweb.freebsd.org/changeset/ports/472927 Log: Fix *_DEPENDS - Add missing p5-Clone - p5-File-ShareDir-Install is a build-only dependency - p5-HTTP-Body is not used - Fix version requirement of p5-HTTP-Headers-Fast - Bump PORTREVISION for dependency change Modified: head/www/p5-Dancer2/Makefile Modified: head/www/p5-Dancer2/Makefile ============================================================================== --- head/www/p5-Dancer2/Makefile Wed Jun 20 19:37:09 2018 (r472926) +++ head/www/p5-Dancer2/Makefile Wed Jun 20 19:37:14 2018 (r472927) @@ -3,6 +3,7 @@ PORTNAME= Dancer2 PORTVERSION= 0.206000 +PORTREVISION= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -16,14 +17,13 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= p5-App-Cmd>=0:devel/p5-App-Cmd \ p5-Capture-Tiny>=0.12:devel/p5-Capture-Tiny \ + p5-Clone>=0:devel/p5-Clone \ p5-Crypt-URandom>=0:security/p5-Crypt-URandom \ p5-Config-Any>=0:devel/p5-Config-Any \ p5-File-Share>=0:devel/p5-File-Share \ - 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 \ p5-HTTP-Date>=0:www/p5-HTTP-Date \ - p5-HTTP-Headers-Fast>=0:www/p5-HTTP-Headers-Fast \ + p5-HTTP-Headers-Fast>=0.21:www/p5-HTTP-Headers-Fast \ p5-HTTP-XSCookies>=0.000007:www/p5-HTTP-XSCookies \ p5-Import-Into>=0:devel/p5-Import-Into \ p5-JSON>=0:converters/p5-JSON \ @@ -56,6 +56,7 @@ TEST_DEPENDS= p5-AnyEvent>=0:devel/p5-AnyEvent \ p5-Test-Memory-Cycle>=0:devel/p5-Test-Memory-Cycle \ p5-Test-MockTime>=0:devel/p5-Test-MockTime \ p5-YAML>=0.86:textproc/p5-YAML +BUILD_DEPENDS+= p5-File-ShareDir-Install>=0.06:devel/p5-File-ShareDir-Install OPTIONS_DEFINE= XS OPTIONS_DEFAULT= XS From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59E611006A7C; Wed, 20 Jun 2018 19:37:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF24B70A72; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD18026AAA; Wed, 20 Jun 2018 19:37: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 w5KJbPNk062005; Wed, 20 Jun 2018 19:37:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbPfC062004; Wed, 20 Jun 2018 19:37:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbPfC062004@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, 20 Jun 2018 19:37:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472929 - head/www/p5-CIF-Client X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/p5-CIF-Client X-SVN-Commit-Revision: 472929 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:26 -0000 Author: sunpoet Date: Wed Jun 20 19:37:25 2018 New Revision: 472929 URL: https://svnweb.freebsd.org/changeset/ports/472929 Log: Fix and update WWW Modified: head/www/p5-CIF-Client/pkg-descr Modified: head/www/p5-CIF-Client/pkg-descr ============================================================================== --- head/www/p5-CIF-Client/pkg-descr Wed Jun 20 19:37:20 2018 (r472928) +++ head/www/p5-CIF-Client/pkg-descr Wed Jun 20 19:37:25 2018 (r472929) @@ -1,4 +1,4 @@ This module is a Perl extension that extends REST::Client for use with the CIF-Framework REST interface -WWW: http://search.cpan.org/dist/CIF-Client/ +WWW: https://metacpan.org/release/SAXJAZMAN/CIF-Client-0.21 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 823C81006AAF; Wed, 20 Jun 2018 19:37:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 28E5B70B4A; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 036FC26AAB; Wed, 20 Jun 2018 19:37: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 w5KJbUfd062116; Wed, 20 Jun 2018 19:37:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbUNq062115; Wed, 20 Jun 2018 19:37:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbUNq062115@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, 20 Jun 2018 19:37:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472930 - head/mail/popfile X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/mail/popfile X-SVN-Commit-Revision: 472930 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:31 -0000 Author: sunpoet Date: Wed Jun 20 19:37:30 2018 New Revision: 472930 URL: https://svnweb.freebsd.org/changeset/ports/472930 Log: Add SOCKS option Modified: head/mail/popfile/Makefile Modified: head/mail/popfile/Makefile ============================================================================== --- head/mail/popfile/Makefile Wed Jun 20 19:37:25 2018 (r472929) +++ head/mail/popfile/Makefile Wed Jun 20 19:37:30 2018 (r472930) @@ -31,7 +31,7 @@ SHEBANG_FILES= bayes.pl insert.pl \ PLIST_SUB= VERSION="${PORTVERSION}" SUB_FILES= popfile.sh -OPTIONS_DEFINE= SSL XMLRPC UPGRADE_FROM_0_20 KAKASI MECABU +OPTIONS_DEFINE= SSL XMLRPC UPGRADE_FROM_0_20 KAKASI MECABU SOCKS # POPFile works with IO::Socket::SSL version 1.07 (and not 0.97/0.99). SSL_RUN_DEPENDS=p5-IO-Socket-SSL>=1.07:security/p5-IO-Socket-SSL @@ -48,10 +48,7 @@ KAKASI_RUN_DEPENDS= p5-Text-Kakasi>=0:japanese/p5-Text MECABU_DESC= Handle Japanese text via MeCab library MECABU_RUN_DEPENDS= p5-MeCab>=0:japanese/p5-MeCab -#.if ${PORT_OPTIONS:MSOCKS} -# XXX: IO::Socket::Socks should be listed here but no ports yet. For those -# interested, check http://search.cpan.org/~reatmon/IO-Socket-Socks-0.1/. -#.endif +SOCKS_RUN_DEPENDS= p5-IO-Socket-Socks>=0:net/p5-IO-Socket-Socks do-install: ${INSTALL_SCRIPT} ${WRKDIR}/popfile.sh ${STAGEDIR}${PREFIX}/sbin From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED4101006AEC; Wed, 20 Jun 2018 19:37:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DE59C70C19; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B52CA26AAC; Wed, 20 Jun 2018 19:37: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 w5KJbZgM062205; Wed, 20 Jun 2018 19:37:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbZ4x062204; Wed, 20 Jun 2018 19:37:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbZ4x062204@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, 20 Jun 2018 19:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472931 - head/converters/p5-Encode-Base32-Crockford X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/converters/p5-Encode-Base32-Crockford X-SVN-Commit-Revision: 472931 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:37 -0000 Author: sunpoet Date: Wed Jun 20 19:37:35 2018 New Revision: 472931 URL: https://svnweb.freebsd.org/changeset/ports/472931 Log: Add NO_ARCH Approved by: portmgr (blanket) Modified: head/converters/p5-Encode-Base32-Crockford/Makefile Modified: head/converters/p5-Encode-Base32-Crockford/Makefile ============================================================================== --- head/converters/p5-Encode-Base32-Crockford/Makefile Wed Jun 20 19:37:30 2018 (r472930) +++ head/converters/p5-Encode-Base32-Crockford/Makefile Wed Jun 20 19:37:35 2018 (r472931) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= bokutin@bokut.in -COMMENT= Encode/Decode numbers using Douglas Crockford's Base32 Encoding +COMMENT= Encode/Decode numbers using Douglas Crockford's Base32 Encoding #' LICENSE= ART10 GPLv1+ LICENSE_COMB= dual @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= p5-Test-Warn>=0:devel/p5-Test-Warn +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7258B1006B89; Wed, 20 Jun 2018 19:37:57 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2210E70E08; Wed, 20 Jun 2018 19:37:57 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 032E426AAD; Wed, 20 Jun 2018 19:37:57 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KJbusC062349; Wed, 20 Jun 2018 19:37:56 GMT (envelope-from jadawin@FreeBSD.org) Received: (from jadawin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbu5t062347; Wed, 20 Jun 2018 19:37:56 GMT (envelope-from jadawin@FreeBSD.org) Message-Id: <201806201937.w5KJbu5t062347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jadawin set sender to jadawin@FreeBSD.org using -f From: Philippe Audeoud Date: Wed, 20 Jun 2018 19:37:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472932 - head/archivers/p5-Archive-Tar X-SVN-Group: ports-head X-SVN-Commit-Author: jadawin X-SVN-Commit-Paths: head/archivers/p5-Archive-Tar X-SVN-Commit-Revision: 472932 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:57 -0000 Author: jadawin Date: Wed Jun 20 19:37:56 2018 New Revision: 472932 URL: https://svnweb.freebsd.org/changeset/ports/472932 Log: - Update to 2.30 - Changelog: https://metacpan.org/changes/distribution/Archive-Tar Modified: head/archivers/p5-Archive-Tar/Makefile head/archivers/p5-Archive-Tar/distinfo Modified: head/archivers/p5-Archive-Tar/Makefile ============================================================================== --- head/archivers/p5-Archive-Tar/Makefile Wed Jun 20 19:37:35 2018 (r472931) +++ head/archivers/p5-Archive-Tar/Makefile Wed Jun 20 19:37:56 2018 (r472932) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Archive-Tar -PORTVERSION= 2.26 +PORTVERSION= 2.30 CATEGORIES= archivers perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:BINGOS Modified: head/archivers/p5-Archive-Tar/distinfo ============================================================================== --- head/archivers/p5-Archive-Tar/distinfo Wed Jun 20 19:37:35 2018 (r472931) +++ head/archivers/p5-Archive-Tar/distinfo Wed Jun 20 19:37:56 2018 (r472932) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527535623 -SHA256 (Archive-Tar-2.26.tar.gz) = 01246ffbadb6e76a04a32bf689894cf56ef9d34d58101ff1c51af8f6f1ef5843 -SIZE (Archive-Tar-2.26.tar.gz) = 62943 +TIMESTAMP = 1529521605 +SHA256 (Archive-Tar-2.30.tar.gz) = 4a5a172cfefe08cb2d32f99ed388a3b55967588bbf254e950bc8a48a8bf1d2e5 +SIZE (Archive-Tar-2.30.tar.gz) = 63693 From owner-svn-ports-head@freebsd.org Wed Jun 20 19:37:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E8731006B8D; Wed, 20 Jun 2018 19:37:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B547470E0F; Wed, 20 Jun 2018 19:37: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 96B8E26AAE; Wed, 20 Jun 2018 19:37: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 w5KJbvJZ062434; Wed, 20 Jun 2018 19:37:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJbv0v062433; Wed, 20 Jun 2018 19:37:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201937.w5KJbv0v062433@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, 20 Jun 2018 19:37:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472933 - head/converters/p5-Encode-Base32-GMP X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/converters/p5-Encode-Base32-GMP X-SVN-Commit-Revision: 472933 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:37:58 -0000 Author: sunpoet Date: Wed Jun 20 19:37:57 2018 New Revision: 472933 URL: https://svnweb.freebsd.org/changeset/ports/472933 Log: Add NO_ARCH Approved by: portmgr (blanket) Modified: head/converters/p5-Encode-Base32-GMP/Makefile Modified: head/converters/p5-Encode-Base32-GMP/Makefile ============================================================================== --- head/converters/p5-Encode-Base32-GMP/Makefile Wed Jun 20 19:37:56 2018 (r472932) +++ head/converters/p5-Encode-Base32-GMP/Makefile Wed Jun 20 19:37:57 2018 (r472933) @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= p5-Math-GMPz>=0:math/p5-Math-GMPz TEST_DEPENDS= p5-Test-Base>=0:devel/p5-Test-Base +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 20 19:38:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F5631006BED; Wed, 20 Jun 2018 19:38:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA79370ED4; Wed, 20 Jun 2018 19:38:02 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9D02426AAF; Wed, 20 Jun 2018 19:38: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 w5KJc29d062530; Wed, 20 Jun 2018 19:38:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJc263062529; Wed, 20 Jun 2018 19:38:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201938.w5KJc263062529@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, 20 Jun 2018 19:38:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472934 - head/converters/p5-Encode-Base58-GMP X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/converters/p5-Encode-Base58-GMP X-SVN-Commit-Revision: 472934 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:38:03 -0000 Author: sunpoet Date: Wed Jun 20 19:38:02 2018 New Revision: 472934 URL: https://svnweb.freebsd.org/changeset/ports/472934 Log: Add NO_ARCH Approved by: portmgr (blanket) Modified: head/converters/p5-Encode-Base58-GMP/Makefile Modified: head/converters/p5-Encode-Base58-GMP/Makefile ============================================================================== --- head/converters/p5-Encode-Base58-GMP/Makefile Wed Jun 20 19:37:57 2018 (r472933) +++ head/converters/p5-Encode-Base58-GMP/Makefile Wed Jun 20 19:38:02 2018 (r472934) @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= p5-Math-GMPz>=0:math/p5-Math-GMPz TEST_DEPENDS= p5-Test-Base>=0:devel/p5-Test-Base +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-head@freebsd.org Wed Jun 20 19:38:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD07E1006C22; Wed, 20 Jun 2018 19:38:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DF7170FBE; Wed, 20 Jun 2018 19:38: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0C1026AB0; Wed, 20 Jun 2018 19:38: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 w5KJc7RM062622; Wed, 20 Jun 2018 19:38:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJc7Y0062621; Wed, 20 Jun 2018 19:38:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201938.w5KJc7Y0062621@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, 20 Jun 2018 19:38:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472935 - head/www/py-frappe-bench X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-frappe-bench X-SVN-Commit-Revision: 472935 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:38:08 -0000 Author: sunpoet Date: Wed Jun 20 19:38:07 2018 New Revision: 472935 URL: https://svnweb.freebsd.org/changeset/ports/472935 Log: Add NO_ARCH Approved by: portmgr (blanket) Modified: head/www/py-frappe-bench/Makefile Modified: head/www/py-frappe-bench/Makefile ============================================================================== --- head/www/py-frappe-bench/Makefile Wed Jun 20 19:38:02 2018 (r472934) +++ head/www/py-frappe-bench/Makefile Wed Jun 20 19:38:07 2018 (r472935) @@ -27,6 +27,7 @@ USE_GITHUB= yes GH_ACCOUNT= frappe GH_PROJECT= bench +NO_ARCH= yes USES= python:2.7 USE_PYTHON= autoplist distutils concurrent From owner-svn-ports-head@freebsd.org Wed Jun 20 19:38:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72B6E1006C68; Wed, 20 Jun 2018 19:38:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AFEBF710A1; Wed, 20 Jun 2018 19:38: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6124E26AB1; Wed, 20 Jun 2018 19:38: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 w5KJcDRM062725; Wed, 20 Jun 2018 19:38:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KJcDie062724; Wed, 20 Jun 2018 19:38:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806201938.w5KJcDie062724@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, 20 Jun 2018 19:38:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472936 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 472936 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 19:38:14 -0000 Author: sunpoet Date: Wed Jun 20 19:38:12 2018 New Revision: 472936 URL: https://svnweb.freebsd.org/changeset/ports/472936 Log: Document GraphicsMagick vulnerability PR: 223629 Submitted by: Vladimir Krstulja Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jun 20 19:38:07 2018 (r472935) +++ head/security/vuxml/vuln.xml Wed Jun 20 19:38:12 2018 (r472936) @@ -58,6 +58,41 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + GraphicsMagick -- multiple vulnerabilities + + + GraphicsMagick + 1.3.26,1 + + + + +

GraphicsMagick reports:

+
+

Multiple vulnerabilities have been found in GraphicsMagick 1.3.26 + or earlier. Please refer to the CVE list for details.

+
+ +
+ + http://www.graphicsmagick.org/NEWS.html + CVE-2016-7800 + CVE-2016-7996 + CVE-2016-7997 + CVE-2016-9830 + CVE-2017-6335 + CVE-2017-8350 + CVE-2017-10794 + CVE-2017-10799 + CVE-2017-10800 + + + 2017-07-04 + 2018-06-18 + +
+ slurm -- insecure handling of user_name and gid fields From owner-svn-ports-head@freebsd.org Wed Jun 20 20:05:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55A761009324; Wed, 20 Jun 2018 20:05:44 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 038F37266C; Wed, 20 Jun 2018 20:05:44 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF44426FA5; Wed, 20 Jun 2018 20:05:43 +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 w5KK5hds077972; Wed, 20 Jun 2018 20:05:43 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KK5hft077969; Wed, 20 Jun 2018 20:05:43 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201806202005.w5KK5hft077969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Wed, 20 Jun 2018 20:05:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472937 - head/textproc/CLDR X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/textproc/CLDR X-SVN-Commit-Revision: 472937 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 20:05:44 -0000 Author: thierry Date: Wed Jun 20 20:05:42 2018 New Revision: 472937 URL: https://svnweb.freebsd.org/changeset/ports/472937 Log: Update CLDR to 33.1. Release notes at . Modified: head/textproc/CLDR/Makefile head/textproc/CLDR/distinfo head/textproc/CLDR/pkg-plist Modified: head/textproc/CLDR/Makefile ============================================================================== --- head/textproc/CLDR/Makefile Wed Jun 20 19:38:12 2018 (r472936) +++ head/textproc/CLDR/Makefile Wed Jun 20 20:05:42 2018 (r472937) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= CLDR -PORTVERSION= 33.0 +PORTVERSION= 33.1 CATEGORIES= textproc -MASTER_SITES= http://unicode.org/Public/cldr/${PORTVERSION:R}/:src \ +MASTER_SITES= http://unicode.org/Public/cldr/${PORTVERSION}/:src \ http://www.unicode.org/:lic DISTFILES= ${SRCFILE}:src \ copyright.html:lic Modified: head/textproc/CLDR/distinfo ============================================================================== --- head/textproc/CLDR/distinfo Wed Jun 20 19:38:12 2018 (r472936) +++ head/textproc/CLDR/distinfo Wed Jun 20 20:05:42 2018 (r472937) @@ -1,5 +1,5 @@ -TIMESTAMP = 1528391574 -SHA256 (cldr-common-33.0.zip) = fa3490082c086d21257153609642f54fcf788fcfda4966fe67f3f6daca0d58b9 -SIZE (cldr-common-33.0.zip) = 20401984 +TIMESTAMP = 1529524844 +SHA256 (cldr-common-33.1.zip) = 97218eb8f07e5d71ca51113516e21297d3b252713c6001d978568046952a2938 +SIZE (cldr-common-33.1.zip) = 20975070 SHA256 (copyright.html) = 6e1ac9056574635b40b6d198f09ec063e4cece2c7295593f10194cac9b23f8a5 SIZE (copyright.html) = 16571 Modified: head/textproc/CLDR/pkg-plist ============================================================================== --- head/textproc/CLDR/pkg-plist Wed Jun 20 19:38:12 2018 (r472936) +++ head/textproc/CLDR/pkg-plist Wed Jun 20 20:05:42 2018 (r472937) @@ -24,6 +24,7 @@ %%DATADIR%%/common/annotations/en_001.xml %%DATADIR%%/common/annotations/en_AU.xml %%DATADIR%%/common/annotations/en_CA.xml +%%DATADIR%%/common/annotations/en_GB.xml %%DATADIR%%/common/annotations/es.xml %%DATADIR%%/common/annotations/es_419.xml %%DATADIR%%/common/annotations/es_MX.xml @@ -84,6 +85,8 @@ %%DATADIR%%/common/annotations/sl.xml %%DATADIR%%/common/annotations/sq.xml %%DATADIR%%/common/annotations/sr.xml +%%DATADIR%%/common/annotations/sr_Cyrl.xml +%%DATADIR%%/common/annotations/sr_Cyrl_BA.xml %%DATADIR%%/common/annotations/sr_Latn.xml %%DATADIR%%/common/annotations/sv.xml %%DATADIR%%/common/annotations/sw.xml @@ -188,6 +191,8 @@ %%DATADIR%%/common/annotationsDerived/sl.xml %%DATADIR%%/common/annotationsDerived/sq.xml %%DATADIR%%/common/annotationsDerived/sr.xml +%%DATADIR%%/common/annotationsDerived/sr_Cyrl.xml +%%DATADIR%%/common/annotationsDerived/sr_Cyrl_BA.xml %%DATADIR%%/common/annotationsDerived/sr_Latn.xml %%DATADIR%%/common/annotationsDerived/sv.xml %%DATADIR%%/common/annotationsDerived/sw.xml From owner-svn-ports-head@freebsd.org Wed Jun 20 20:08:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04E6310097BD; Wed, 20 Jun 2018 20:08:36 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-io0-x241.google.com (mail-io0-x241.google.com [IPv6:2607:f8b0:4001:c06::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 70AE9729EC; Wed, 20 Jun 2018 20:08:35 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-io0-x241.google.com with SMTP id d185-v6so910617ioe.0; Wed, 20 Jun 2018 13:08:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=D/VacOVoWJCu5iwuZHWVpx+fK7KY1Z2T5nQCPvCi+1o=; b=BAkrkVgDVaoerR6qP8I+PGtYBivk3pBn4couh2FLjiMU9Pt3uWoUZy+Vet9lCGSTO6 hcNoTK2iq5/WXs/c8rVtTkPsxXC4aD6C4twd4jEnyGa9TKSP1ARij2V45OAqSesV2wMG drsTSsj3ixRNq0PQUpp0xzHizC1SR7WIn0nk2FoicqQvsliMGgoD6j11X/g/hHwlz2VS MlrmTZtnfG2zJiJGWmGTHsICSNTmOemnYKcf/UcuAPYh/hyygH1oIA4oiKiKI/O3X4Q1 kwvdGUWaPNKTHRVt8pVVVSXBuzlgu6RgqqrgixS+3ef4qwGuplSi5InO+w+qHMwOnV7b 5hDA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=D/VacOVoWJCu5iwuZHWVpx+fK7KY1Z2T5nQCPvCi+1o=; b=HdUM0qbSvVICeK5bszOHaT2hpvw92eVi4jQW/thRK+yJMUpd58SGsEE/RlY8kIBi+y cxlRagu8HsK+S5ARBg00RcTIKNxWvSo3ewVW8WeMjaR/VCDUaLoxIAPDo/MR0C2Ekw3s WhAH0Bj6tWVgTEdPxj4Nb4TQKrzEqopeZ+gZB/UDCGHk8FbdKEGvVfP4rGex4kbAZ3xl O2TaS8xsCd8QxZ7IP+ifD5MDEUSAp/OV9o5Z+WaXPWFUu0TN4KSBzeyx/Oqv6uoFCQ9N HmGhjvrBiFphn61p4siI+nEN+rJhNoJgLoP1eWowmdIbdf8T/15RjMMNfyljbj7aGep+ V25w== X-Gm-Message-State: APt69E376pzvSLHfDjvcMDXnMRcSFGUc1MYYDTpwLF8TwsaumIUWMAfg xexJboIoF9NzlxUOeupJlxepeGGPaE7UwjUPiCk= X-Google-Smtp-Source: ADUXVKKvjbkswvl2tLcdA90PN78wk24NQhIXP3IC0/vqNnxSnMcZyUk9CEsGvPa3IQmxgiNFwXU1VcSerOuiqWx/agg= X-Received: by 2002:a6b:ea09:: with SMTP id m9-v6mr19098145ioc.121.1529525314830; Wed, 20 Jun 2018 13:08:34 -0700 (PDT) MIME-Version: 1.0 Sender: antoine.brodin.freebsd@gmail.com Received: by 2002:a02:384a:0:0:0:0:0 with HTTP; Wed, 20 Jun 2018 13:08:34 -0700 (PDT) In-Reply-To: <201806201929.w5KJTsxs054037@repo.freebsd.org> References: <201806201929.w5KJTsxs054037@repo.freebsd.org> From: Antoine Brodin Date: Wed, 20 Jun 2018 22:08:34 +0200 X-Google-Sender-Auth: gnRXFoFzc_8IYmwFzHTkAy0cwF8 Message-ID: Subject: Re: svn commit: r472903 - in head/databases: . p5-Scope-Container-DBI To: Kurt Jaeger Cc: ports-committers , svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 20:08:36 -0000 On Wed, Jun 20, 2018 at 9:29 PM, Kurt Jaeger wrote: ... > Modified: head/databases/Makefile > ============================================================================== > --- head/databases/Makefile Wed Jun 20 19:26:01 2018 (r472902) > +++ head/databases/Makefile Wed Jun 20 19:29:54 2018 (r472903) > @@ -494,7 +494,7 @@ > SUBDIR += p5-SQL-Statement > SUBDIR += p5-SQL-Translator > SUBDIR += p5-SQLite-Work > - SUBDIR += p5-Search-InvertedIndex Problem above? Cheers, Antoine From owner-svn-ports-head@freebsd.org Wed Jun 20 20:13:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AACFA1009C8C; Wed, 20 Jun 2018 20:13:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5AC6A72F4E; Wed, 20 Jun 2018 20:13:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3CF0627132; Wed, 20 Jun 2018 20:13:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KKD8RO083024; Wed, 20 Jun 2018 20:13:08 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KKD8q8083023; Wed, 20 Jun 2018 20:13:08 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806202013.w5KKD8q8083023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 20 Jun 2018 20:13:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472938 - head/databases X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/databases X-SVN-Commit-Revision: 472938 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 20:13:08 -0000 Author: pi Date: Wed Jun 20 20:13:07 2018 New Revision: 472938 URL: https://svnweb.freebsd.org/changeset/ports/472938 Log: databases/Makefile: re-add p5-Search-InvertedIndex - ups! PR: 229145 Reported by: antoine Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Jun 20 20:05:42 2018 (r472937) +++ head/databases/Makefile Wed Jun 20 20:13:07 2018 (r472938) @@ -495,6 +495,7 @@ SUBDIR += p5-SQL-Translator SUBDIR += p5-SQLite-Work SUBDIR += p5-Scope-Container-DBI + SUBDIR += p5-Search-InvertedIndex SUBDIR += p5-Search-Namazu SUBDIR += p5-Search-Xapian10 SUBDIR += p5-Search-Xapian12 From owner-svn-ports-head@freebsd.org Wed Jun 20 21:15:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6484C100C9E3; Wed, 20 Jun 2018 21:15:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 16DDC754CB; Wed, 20 Jun 2018 21:15:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EC29A27B6B; Wed, 20 Jun 2018 21:15:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KLFLwe013713; Wed, 20 Jun 2018 21:15:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KLFLtS013712; Wed, 20 Jun 2018 21:15:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806202115.w5KLFLtS013712@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 20 Jun 2018 21:15:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472939 - head/misc/cldr-emoji-annotation X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/cldr-emoji-annotation X-SVN-Commit-Revision: 472939 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 21:15:22 -0000 Author: yuri Date: Wed Jun 20 21:15:21 2018 New Revision: 472939 URL: https://svnweb.freebsd.org/changeset/ports/472939 Log: misc/cldr-emoji-annotation: Update 33.0.0.1 -> 33.0.0.2 Reported by: portscout Modified: head/misc/cldr-emoji-annotation/Makefile head/misc/cldr-emoji-annotation/distinfo Modified: head/misc/cldr-emoji-annotation/Makefile ============================================================================== --- head/misc/cldr-emoji-annotation/Makefile Wed Jun 20 20:13:07 2018 (r472938) +++ head/misc/cldr-emoji-annotation/Makefile Wed Jun 20 21:15:21 2018 (r472939) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= cldr-emoji-annotation -DISTVERSION= 33.0.0_1 -PORTREVISION= 1 +DISTVERSION= 33.0.0_2 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org Modified: head/misc/cldr-emoji-annotation/distinfo ============================================================================== --- head/misc/cldr-emoji-annotation/distinfo Wed Jun 20 20:13:07 2018 (r472938) +++ head/misc/cldr-emoji-annotation/distinfo Wed Jun 20 21:15:21 2018 (r472939) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523775418 -SHA256 (fujiwarat-cldr-emoji-annotation-33.0.0_1_GH0.tar.gz) = b6d60e47c879daa137c7a45535d3355a6c12508b82edfae1792bb6e6c666a292 -SIZE (fujiwarat-cldr-emoji-annotation-33.0.0_1_GH0.tar.gz) = 4773251 +TIMESTAMP = 1529529148 +SHA256 (fujiwarat-cldr-emoji-annotation-33.0.0_2_GH0.tar.gz) = fd480846838516f32628c8b3cc567b4462cd5a77857d2f5dc5d008235e0f12b5 +SIZE (fujiwarat-cldr-emoji-annotation-33.0.0_2_GH0.tar.gz) = 4773241 From owner-svn-ports-head@freebsd.org Wed Jun 20 22:29:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 623BA101013B; Wed, 20 Jun 2018 22:29:23 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0654477AAD; Wed, 20 Jun 2018 22:29:23 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7A21715; Wed, 20 Jun 2018 22:29:22 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KMTMKx049345; Wed, 20 Jun 2018 22:29:22 GMT (envelope-from dteske@FreeBSD.org) Received: (from dteske@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KMTMkO049344; Wed, 20 Jun 2018 22:29:22 GMT (envelope-from dteske@FreeBSD.org) Message-Id: <201806202229.w5KMTMkO049344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dteske set sender to dteske@FreeBSD.org using -f From: Devin Teske Date: Wed, 20 Jun 2018 22:29:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472940 - head/sysutils/ssd_report X-SVN-Group: ports-head X-SVN-Commit-Author: dteske X-SVN-Commit-Paths: head/sysutils/ssd_report X-SVN-Commit-Revision: 472940 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 22:29:23 -0000 Author: dteske Date: Wed Jun 20 22:29:22 2018 New Revision: 472940 URL: https://svnweb.freebsd.org/changeset/ports/472940 Log: sysutils/ssd_report: Remove unnecessary FLAVOR declaration Holdover from D15876 interim state Reported by: bdrewery Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D15934 Modified: head/sysutils/ssd_report/Makefile Modified: head/sysutils/ssd_report/Makefile ============================================================================== --- head/sysutils/ssd_report/Makefile Wed Jun 20 21:15:21 2018 (r472939) +++ head/sysutils/ssd_report/Makefile Wed Jun 20 22:29:22 2018 (r472940) @@ -11,7 +11,6 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE FLAVORS= smart smartmontools -FLAVOR?= ${FLAVORS:[1]} smart_RUN_DEPENDS= smart:sysutils/smart smartmontools_RUN_DEPENDS= smartctl:sysutils/smartmontools From owner-svn-ports-head@freebsd.org Wed Jun 20 22:36:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 408D410107E8; Wed, 20 Jun 2018 22:36:47 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1DAA77F65; Wed, 20 Jun 2018 22:36:46 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A55718AD; Wed, 20 Jun 2018 22:36:46 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KMakAL054425; Wed, 20 Jun 2018 22:36:46 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KMakPC054423; Wed, 20 Jun 2018 22:36:46 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201806202236.w5KMakPC054423@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Wed, 20 Jun 2018 22:36:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472941 - head/textproc/py-qrcode X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: head/textproc/py-qrcode X-SVN-Commit-Revision: 472941 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 22:36:47 -0000 Author: leres Date: Wed Jun 20 22:36:45 2018 New Revision: 472941 URL: https://svnweb.freebsd.org/changeset/ports/472941 Log: Update to 6.0: - Fix optimize length being ignored in QRCode.add_data. - Better calculation of the best mask pattern and related optimizations. Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D15930 Modified: head/textproc/py-qrcode/Makefile head/textproc/py-qrcode/distinfo Modified: head/textproc/py-qrcode/Makefile ============================================================================== --- head/textproc/py-qrcode/Makefile Wed Jun 20 22:29:22 2018 (r472940) +++ head/textproc/py-qrcode/Makefile Wed Jun 20 22:36:45 2018 (r472941) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= qrcode -PORTVERSION= 5.3 -PORTREVISION= 3 +PORTVERSION= 6.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-qrcode/distinfo ============================================================================== --- head/textproc/py-qrcode/distinfo Wed Jun 20 22:29:22 2018 (r472940) +++ head/textproc/py-qrcode/distinfo Wed Jun 20 22:36:45 2018 (r472941) @@ -1,3 +1,3 @@ -TIMESTAMP = 1481271215 -SHA256 (qrcode-5.3.tar.gz) = 4115ccee832620df16b659d4653568331015c718a754855caf5930805d76924e -SIZE (qrcode-5.3.tar.gz) = 24253 +TIMESTAMP = 1529513139 +SHA256 (qrcode-6.0.tar.gz) = 037b0db4c93f44586e37f84c3da3f763874fcac85b2974a69a98e399ac78e1bf +SIZE (qrcode-6.0.tar.gz) = 29160 From owner-svn-ports-head@freebsd.org Thu Jun 21 00:16:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 872E01015250; Thu, 21 Jun 2018 00:16:00 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 385EE7B1D2; Thu, 21 Jun 2018 00:16:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 164AB194B; Thu, 21 Jun 2018 00:16:00 +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 w5L0Fxj7005167; Thu, 21 Jun 2018 00:15:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L0FxeQ005165; Thu, 21 Jun 2018 00:15:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806210015.w5L0FxeQ005165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 21 Jun 2018 00:15:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472942 - in head/www/waterfox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www/waterfox: . files X-SVN-Commit-Revision: 472942 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 00:16:00 -0000 Author: jbeich Date: Thu Jun 21 00:15:59 2018 New Revision: 472942 URL: https://svnweb.freebsd.org/changeset/ports/472942 Log: www/waterfox: apply some FF61 fix Modified: head/www/waterfox/Makefile (contents, props changed) head/www/waterfox/files/patch-bug1464039 (contents, props changed) Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Wed Jun 20 22:36:45 2018 (r472941) +++ head/www/waterfox/Makefile Thu Jun 21 00:15:59 2018 (r472942) @@ -3,6 +3,7 @@ PORTNAME= waterfox DISTVERSION= 56.2.1-19 DISTVERSIONSUFFIX= -gff88ad0b627dc +PORTREVISION= 1 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Modified: head/www/waterfox/files/patch-bug1464039 ============================================================================== --- head/www/waterfox/files/patch-bug1464039 Wed Jun 20 22:36:45 2018 (r472941) +++ head/www/waterfox/files/patch-bug1464039 Thu Jun 21 00:15:59 2018 (r472942) @@ -25,3 +25,63 @@ index e382fbe001422..2b0e707c443c4 100644 transform->transform_module_fn(transform,src,dest,len); dest = src; src = new_src; +commit 223a7e0a67fd +Author: Nicolas Silva +Date: Tue Jun 19 15:32:29 2018 +0200 + + Bug 1464039 - Only reject qcms transform with invalid grid size if the transform function uses the grid size. r=Bas, a=jcristau + + --HG-- + extra : source : 8dde5c1d895e4c063d5bda39029c9a01a178ebba + extra : intermediate-source : a64fb8de655dc28efd0b7de94b6f0008b08ae0ae +--- + gfx/qcms/chain.c | 4 +++- + gfx/thebes/gfxPlatform.cpp | 6 +++++- + 2 files changed, 8 insertions(+), 2 deletions(-) + +diff --git gfx/qcms/chain.c gfx/qcms/chain.c +index 2b0e707c443c4..dbae183789e79 100644 +--- gfx/qcms/chain.c ++++ gfx/qcms/chain.c +@@ -972,7 +972,9 @@ static float* qcms_modular_transform_data(struct qcms_modular_transform *transfo + assert(0 && "Unsupported transform module"); + return NULL; + } +- if (transform->grid_size <= 0) { ++ if (transform->grid_size <= 0 && ++ (transform_fn == qcms_transform_module_clut || ++ transform_fn == qcms_transform_module_clut_only)) { + assert(0 && "Invalid transform"); + return NULL; + } +diff --git gfx/thebes/gfxPlatform.cpp gfx/thebes/gfxPlatform.cpp +index d7c966ea1bcc2..278a609817d9e 100644 +--- gfx/thebes/gfxPlatform.cpp ++++ gfx/thebes/gfxPlatform.cpp +@@ -160,6 +160,7 @@ static Mutex* gGfxPlatformPrefsLock = nullptr; + static qcms_profile *gCMSOutputProfile = nullptr; + static qcms_profile *gCMSsRGBProfile = nullptr; + ++static bool gCMSRGBTransformFailed = false; + static qcms_transform *gCMSRGBTransform = nullptr; + static qcms_transform *gCMSInverseRGBTransform = nullptr; + static qcms_transform *gCMSRGBATransform = nullptr; +@@ -2068,7 +2069,7 @@ gfxPlatform::GetCMSsRGBProfile() + qcms_transform * + gfxPlatform::GetCMSRGBTransform() + { +- if (!gCMSRGBTransform) { ++ if (!gCMSRGBTransform && !gCMSRGBTransformFailed) { + qcms_profile *inProfile, *outProfile; + outProfile = GetCMSOutputProfile(); + inProfile = GetCMSsRGBProfile(); +@@ -2079,6 +2080,9 @@ gfxPlatform::GetCMSRGBTransform() + gCMSRGBTransform = qcms_transform_create(inProfile, QCMS_DATA_RGB_8, + outProfile, QCMS_DATA_RGB_8, + QCMS_INTENT_PERCEPTUAL); ++ if (!gCMSRGBTransform) { ++ gCMSRGBTransformFailed = true; ++ } + } + + return gCMSRGBTransform; From owner-svn-ports-head@freebsd.org Thu Jun 21 00:16:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37EF11015296; Thu, 21 Jun 2018 00:16:15 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DBB8D7B2A3; Thu, 21 Jun 2018 00:16: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BCEA2194C; Thu, 21 Jun 2018 00:16: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 w5L0GEbJ005308; Thu, 21 Jun 2018 00:16:14 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L0GERf005307; Thu, 21 Jun 2018 00:16:14 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806210016.w5L0GERf005307@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 21 Jun 2018 00:16:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472943 - head/emulators/citra X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/citra X-SVN-Commit-Revision: 472943 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 00:16:15 -0000 Author: jbeich Date: Thu Jun 21 00:16:14 2018 New Revision: 472943 URL: https://svnweb.freebsd.org/changeset/ports/472943 Log: emulators/citra: update to s20180620 Changes: https://github.com/citra-emu/citra/compare/574824a26...964602dfc Modified: head/emulators/citra/Makefile (contents, props changed) head/emulators/citra/distinfo (contents, props changed) Modified: head/emulators/citra/Makefile ============================================================================== --- head/emulators/citra/Makefile Thu Jun 21 00:15:59 2018 (r472942) +++ head/emulators/citra/Makefile Thu Jun 21 00:16:14 2018 (r472943) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180617 +PORTVERSION= s20180620 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 574824a26 +GH_TAGNAME= 964602dfc GH_TUPLE= citra-emu:ext-libressl-portable:cbb1dca:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-2-g4b350a3:dynarmic/externals/dynarmic \ Modified: head/emulators/citra/distinfo ============================================================================== --- head/emulators/citra/distinfo Thu Jun 21 00:15:59 2018 (r472942) +++ head/emulators/citra/distinfo Thu Jun 21 00:16:14 2018 (r472943) @@ -1,6 +1,6 @@ -TIMESTAMP = 1529291115 -SHA256 (citra-emu-citra-s20180617-574824a26_GH0.tar.gz) = 00ac2fd58ed3cf778f5cb00ccb37cb7613ce4374a41c02c44596adc68b4b1dd3 -SIZE (citra-emu-citra-s20180617-574824a26_GH0.tar.gz) = 2230304 +TIMESTAMP = 1529491145 +SHA256 (citra-emu-citra-s20180620-964602dfc_GH0.tar.gz) = 493bfac0bd8a9fd98f71d51117bda5388afbf20ea715077cc3d18d180ef8c9d1 +SIZE (citra-emu-citra-s20180620-964602dfc_GH0.tar.gz) = 2230380 SHA256 (citra-emu-ext-libressl-portable-cbb1dca_GH0.tar.gz) = f3741a3bb480d9f8a817f032f59d1908e659620cbb93c0fe8289cfb46d2ab89c SIZE (citra-emu-ext-libressl-portable-cbb1dca_GH0.tar.gz) = 1761962 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-head@freebsd.org Thu Jun 21 00:16:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D00710152CD; Thu, 21 Jun 2018 00:16:25 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E4F447B36C; Thu, 21 Jun 2018 00:16:24 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C7C24194D; Thu, 21 Jun 2018 00:16:24 +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 w5L0GOtb005440; Thu, 21 Jun 2018 00:16:24 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L0GOJ9005438; Thu, 21 Jun 2018 00:16:24 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806210016.w5L0GOJ9005438@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 21 Jun 2018 00:16:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472944 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 472944 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 00:16:25 -0000 Author: jbeich Date: Thu Jun 21 00:16:24 2018 New Revision: 472944 URL: https://svnweb.freebsd.org/changeset/ports/472944 Log: emulators/rpcs3: update to 0.0.5.516 Changes: https://github.com/RPCS3/rpcs3/compare/392a4bdc0...c03cde06a 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 21 00:16:14 2018 (r472943) +++ head/emulators/rpcs3/Makefile Thu Jun 21 00:16:24 2018 (r472944) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-510 -DISTVERSIONSUFFIX= -g392a4bdc0 +DISTVERSION= 0.0.5-516 +DISTVERSIONSUFFIX= -gc03cde06a CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Thu Jun 21 00:16:14 2018 (r472943) +++ head/emulators/rpcs3/distinfo Thu Jun 21 00:16:24 2018 (r472944) @@ -1,6 +1,6 @@ -TIMESTAMP = 1529350466 -SHA256 (RPCS3-rpcs3-v0.0.5-510-g392a4bdc0_GH0.tar.gz) = f024cb80b48087939844382ca98e2831a80620d2469441d7ca08215759b1c64f -SIZE (RPCS3-rpcs3-v0.0.5-510-g392a4bdc0_GH0.tar.gz) = 4970393 +TIMESTAMP = 1529434689 +SHA256 (RPCS3-rpcs3-v0.0.5-516-gc03cde06a_GH0.tar.gz) = d7aff177c05e583f92daedb365243b92cae02d1fc52ce185168fe8613d035c4d +SIZE (RPCS3-rpcs3-v0.0.5-516-gc03cde06a_GH0.tar.gz) = 4970936 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-llvm-17ec6d78a73_GH0.tar.gz) = 4567d1d946429ce55d6c0480fad3b82874aad22c2b1928ac4d4ba5ba40338604 From owner-svn-ports-head@freebsd.org Thu Jun 21 00:18:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86545101545C; Thu, 21 Jun 2018 00:18:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 34FE07B4B0; Thu, 21 Jun 2018 00:18:28 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0BFB8194E; Thu, 21 Jun 2018 00:18:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L0IRt2005646; Thu, 21 Jun 2018 00:18:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L0IRVn005643; Thu, 21 Jun 2018 00:18:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806210018.w5L0IRVn005643@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 21 Jun 2018 00:18:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472945 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 472945 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 00:18:28 -0000 Author: jbeich Date: Thu Jun 21 00:18:27 2018 New Revision: 472945 URL: https://svnweb.freebsd.org/changeset/ports/472945 Log: emulators/rpcs3: switch to merged fix 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 21 00:16:24 2018 (r472944) +++ head/emulators/rpcs3/Makefile Thu Jun 21 00:18:27 2018 (r472945) @@ -3,7 +3,7 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v DISTVERSION= 0.0.5-516 -DISTVERSIONSUFFIX= -gc03cde06a +DISTVERSIONSUFFIX= -gc776ff502 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Thu Jun 21 00:16:24 2018 (r472944) +++ head/emulators/rpcs3/distinfo Thu Jun 21 00:18:27 2018 (r472945) @@ -1,6 +1,6 @@ TIMESTAMP = 1529434689 -SHA256 (RPCS3-rpcs3-v0.0.5-516-gc03cde06a_GH0.tar.gz) = d7aff177c05e583f92daedb365243b92cae02d1fc52ce185168fe8613d035c4d -SIZE (RPCS3-rpcs3-v0.0.5-516-gc03cde06a_GH0.tar.gz) = 4970936 +SHA256 (RPCS3-rpcs3-v0.0.5-516-gc776ff502_GH0.tar.gz) = 73f16a0f11665747e42cd799101f71c49458c745e8b8f9a2a0d678b694c18613 +SIZE (RPCS3-rpcs3-v0.0.5-516-gc776ff502_GH0.tar.gz) = 4970619 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-llvm-17ec6d78a73_GH0.tar.gz) = 4567d1d946429ce55d6c0480fad3b82874aad22c2b1928ac4d4ba5ba40338604 From owner-svn-ports-head@freebsd.org Thu Jun 21 02:59:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7072510217BF; Thu, 21 Jun 2018 02:59:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EA1F82C91; Thu, 21 Jun 2018 02:59:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F3CAF3C15; Thu, 21 Jun 2018 02:59:07 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L2x7T9087642; Thu, 21 Jun 2018 02:59:07 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L2x7EC087638; Thu, 21 Jun 2018 02:59:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210259.w5L2x7EC087638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 02:59:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472948 - in head/math: . py-spectral X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-spectral X-SVN-Commit-Revision: 472948 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 02:59:08 -0000 Author: yuri Date: Thu Jun 21 02:59:06 2018 New Revision: 472948 URL: https://svnweb.freebsd.org/changeset/ports/472948 Log: New port: math/py-spectral: Spectral Python (SPy) is a Python module for hyperspectral image processing Added: head/math/py-spectral/ head/math/py-spectral/Makefile (contents, props changed) head/math/py-spectral/distinfo (contents, props changed) head/math/py-spectral/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jun 21 00:20:42 2018 (r472947) +++ head/math/Makefile Thu Jun 21 02:59:06 2018 (r472948) @@ -719,6 +719,7 @@ SUBDIR += py-seaborn SUBDIR += py-secp256k1 SUBDIR += py-simhash + SUBDIR += py-spectral SUBDIR += py-statsmodels SUBDIR += py-svgmath SUBDIR += py-sym Added: head/math/py-spectral/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spectral/Makefile Thu Jun 21 02:59:06 2018 (r472948) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= spectral +DISTVERSION= 0.19 +CATEGORIES= math +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Spectral Python (SPy) is a Python module for hyperspectral image processing + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-spectral/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spectral/distinfo Thu Jun 21 02:59:06 2018 (r472948) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529549527 +SHA256 (spectral-0.19.tar.gz) = b8d5dc9e2e36d45d1f55bf95528a63d7a95dd049857c98f86d400a3f0c7c86f1 +SIZE (spectral-0.19.tar.gz) = 141565 Added: head/math/py-spectral/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spectral/pkg-descr Thu Jun 21 02:59:06 2018 (r472948) @@ -0,0 +1,12 @@ +Spectral Python (SPy) is a pure Python module for processing hyperspectral +image data. It has functions for reading, displaying, manipulating, and +classifying hyperspectral imagery. It can be used interactively from the Python +command prompt or via Python scripts. SPy is free, open source software +distributed under the GNU General Public License. To see some examples of how +SPy can be used, you may want to jump straight to the documentation sections +on Displaying Data or Spectral Algorithms. A categorized listing of the main +classes and functions are in the Class/Function Glossary. You can download SPy +from GitHub or the Python Package Index (PyPI). See the Installing SPy section +section of the documentation for details. + +WWW: http://www.spectralpython.net/ From owner-svn-ports-head@freebsd.org Thu Jun 21 04:44:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66D581003322; Thu, 21 Jun 2018 04:44:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1A799889ED; Thu, 21 Jun 2018 04:44:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D53D350F1; Thu, 21 Jun 2018 04:44:04 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L4i48T044199; Thu, 21 Jun 2018 04:44:04 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L4i4XG044195; Thu, 21 Jun 2018 04:44:04 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210444.w5L4i4XG044195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 04:44:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472949 - in head/misc: . py-orange3-associate X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-orange3-associate X-SVN-Commit-Revision: 472949 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 04:44:05 -0000 Author: yuri Date: Thu Jun 21 04:44:03 2018 New Revision: 472949 URL: https://svnweb.freebsd.org/changeset/ports/472949 Log: New port: misc/py-orange3-associate: Orange 3 add-on: Frequent itemsets and association rules mining Added: head/misc/py-orange3-associate/ head/misc/py-orange3-associate/Makefile (contents, props changed) head/misc/py-orange3-associate/distinfo (contents, props changed) head/misc/py-orange3-associate/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Thu Jun 21 02:59:06 2018 (r472948) +++ head/misc/Makefile Thu Jun 21 04:44:03 2018 (r472949) @@ -411,6 +411,7 @@ SUBDIR += py-emoji SUBDIR += py-fuzzy SUBDIR += py-glance + SUBDIR += py-orange3-associate SUBDIR += py-orange3-datafusion SUBDIR += py-orange3-educational SUBDIR += py-orange3-network Added: head/misc/py-orange3-associate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-orange3-associate/Makefile Thu Jun 21 04:44:03 2018 (r472949) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= orange3-associate +DISTVERSION= 1.1.5-5 +DISTVERSIONSUFFIX= -ge82d0db +CATEGORIES= misc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Orange 3 add-on: Frequent itemsets and association rules mining + +LICENSE= GPLv3+ + +RUN_DEPENDS= orange3>0:misc/orange3 \ + ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.12.0:science/py-scipy@${PY_FLAVOR} + +USES= python:3.4+ +USE_GITHUB= yes +GH_ACCOUNT= biolab +USE_PYTHON= distutils autoplist + +.include Added: head/misc/py-orange3-associate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-orange3-associate/distinfo Thu Jun 21 04:44:03 2018 (r472949) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529555308 +SHA256 (biolab-orange3-associate-1.1.5-5-ge82d0db_GH0.tar.gz) = 72941f8860cb5cce58b30bf6b9e88846b470f85adfaed7b31571039117c93a28 +SIZE (biolab-orange3-associate-1.1.5-5-ge82d0db_GH0.tar.gz) = 521853 Added: head/misc/py-orange3-associate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-orange3-associate/pkg-descr Thu Jun 21 04:44:03 2018 (r472949) @@ -0,0 +1,4 @@ +Orange3 add-on implementing association rules data mining, +and enumerating frequent itemsets. + +WWW: https://github.com/biolab/orange3-associate From owner-svn-ports-head@freebsd.org Thu Jun 21 06:25:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8C16100BC4D; Thu, 21 Jun 2018 06:25:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 76B378CDF6; Thu, 21 Jun 2018 06:25:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 53B836125; Thu, 21 Jun 2018 06:25:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L6PGLE095652; Thu, 21 Jun 2018 06:25:16 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L6PFS6095650; Thu, 21 Jun 2018 06:25:15 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210625.w5L6PFS6095650@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 06:25:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472955 - head/devel/py-bullet3 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-bullet3 X-SVN-Commit-Revision: 472955 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 06:25:17 -0000 Author: yuri Date: Thu Jun 21 06:25:15 2018 New Revision: 472955 URL: https://svnweb.freebsd.org/changeset/ports/472955 Log: devel/py-bullet3: Prevent build failures on 12 by removing examples from the build Failures were only in examples, which aren't even needed. Reported by: fallout Modified: head/devel/py-bullet3/Makefile head/devel/py-bullet3/distinfo Modified: head/devel/py-bullet3/Makefile ============================================================================== --- head/devel/py-bullet3/Makefile Thu Jun 21 05:57:43 2018 (r472954) +++ head/devel/py-bullet3/Makefile Thu Jun 21 06:25:15 2018 (r472955) @@ -2,6 +2,7 @@ PORTNAME= bullet3 DISTVERSION= 2.87 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,6 +19,9 @@ USE_GITHUB= yes GH_ACCOUNT= bulletphysics USE_PYTHON= autoplist distutils USE_GL= gl glew + +post-patch: # remove examples because they fail: https://github.com/bulletphysics/bullet3/issues/1510, and they shouldn't be built anyway + @${REINPLACE_CMD} -E 's,"examples/.*\.(cpp|c|m)",,' ${WRKSRC}/setup.py post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pybullet.so Modified: head/devel/py-bullet3/distinfo ============================================================================== --- head/devel/py-bullet3/distinfo Thu Jun 21 05:57:43 2018 (r472954) +++ head/devel/py-bullet3/distinfo Thu Jun 21 06:25:15 2018 (r472955) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513061059 +TIMESTAMP = 1529561825 SHA256 (bulletphysics-bullet3-2.87_GH0.tar.gz) = 438c151c48840fe3f902ec260d9496f8beb26dba4b17769a4a53212903935f95 SIZE (bulletphysics-bullet3-2.87_GH0.tar.gz) = 56691047 From owner-svn-ports-head@freebsd.org Thu Jun 21 04:50:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 275F31003788; Thu, 21 Jun 2018 04:50:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CFA0488B41; Thu, 21 Jun 2018 04:50:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B0CEE50FE; Thu, 21 Jun 2018 04:50:00 +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 w5L4o0bf044570; Thu, 21 Jun 2018 04:50:00 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L4o0CC044568; Thu, 21 Jun 2018 04:50:00 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806210450.w5L4o0CC044568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 21 Jun 2018 04:50:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472950 - head/security/krb5-devel X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/security/krb5-devel X-SVN-Commit-Revision: 472950 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 04:50:01 -0000 Author: cy Date: Thu Jun 21 04:50:00 2018 New Revision: 472950 URL: https://svnweb.freebsd.org/changeset/ports/472950 Log: Fix staging when databases/lmdb is not installed. Make lmdb an option. Modified: head/security/krb5-devel/Makefile (contents, props changed) head/security/krb5-devel/pkg-plist (contents, props changed) Modified: head/security/krb5-devel/Makefile ============================================================================== --- head/security/krb5-devel/Makefile Thu Jun 21 04:44:03 2018 (r472949) +++ head/security/krb5-devel/Makefile Thu Jun 21 04:50:00 2018 (r472950) @@ -40,7 +40,7 @@ CPE_VENDOR= mit CPE_VERSION= 5-${PORTVERSION} CPE_PRODUCT= kerberos -OPTIONS_DEFINE= EXAMPLES NLS DNS_FOR_REALM LDAP +OPTIONS_DEFINE= EXAMPLES NLS DNS_FOR_REALM LDAP LMDB OPTIONS_DEFAULT= KRB5_PDF KRB5_HTML READLINE OPTIONS_RADIO= CMD_LINE_EDITING OPTIONS_RADIO_CMD_LINE_EDITING= READLINE READLINE_PORT LIBEDIT @@ -50,6 +50,10 @@ DNS_FOR_REALM_CONFIGURE_ENABLE= dns-for-realm LDAP= Enable LDAP support LDAP_USE= OPENLDAP=yes LDAP_CONFIGURE_WITH= ldap +LMDB_DESC= Enable OpenLDAP Lightning Memory-Mapped Database +LMDB_CONFIGURE_WITH= lmdb +LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb +LMDB_IMPLIES= LDAP NLS_USES= gettext READLINE_USES= readline READLINE_PORT_DESC= Command line editing via devel/readline Modified: head/security/krb5-devel/pkg-plist ============================================================================== --- head/security/krb5-devel/pkg-plist Thu Jun 21 04:44:03 2018 (r472949) +++ head/security/krb5-devel/pkg-plist Thu Jun 21 04:50:00 2018 (r472950) @@ -96,7 +96,7 @@ lib/libkrb5support.so lib/libkrb5support.so.0 lib/libkrb5support.so.0.1 lib/krb5/plugins/kdb/db2.so -lib/krb5/plugins/kdb/klmdb.so +%%LMDB%%lib/krb5/plugins/kdb/klmdb.so lib/krb5/plugins/tls/k5tls.so %%LDAP%%lib/krb5/plugins/kdb/kldap.so lib/krb5/plugins/preauth/otp.so From owner-svn-ports-head@freebsd.org Thu Jun 21 05:57:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B72D91009DDB; Thu, 21 Jun 2018 05:57:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 53DFD8BC49; Thu, 21 Jun 2018 05:57:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2B1075C67; Thu, 21 Jun 2018 05:57:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L5vhDc080541; Thu, 21 Jun 2018 05:57:43 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L5vh39080540; Thu, 21 Jun 2018 05:57:43 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210557.w5L5vh39080540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 05:57:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472954 - head/science/triqs X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/triqs X-SVN-Commit-Revision: 472954 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 05:57:44 -0000 Author: yuri Date: Thu Jun 21 05:57:43 2018 New Revision: 472954 URL: https://svnweb.freebsd.org/changeset/ports/472954 Log: science/triqs: Broken on i386 Will remain broken until the upstream fixes the bug. Reported by: fallout Modified: head/science/triqs/Makefile Modified: head/science/triqs/Makefile ============================================================================== --- head/science/triqs/Makefile Thu Jun 21 05:43:38 2018 (r472953) +++ head/science/triqs/Makefile Thu Jun 21 05:57:43 2018 (r472954) @@ -11,6 +11,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING.txt BROKEN_FreeBSD_10= fatal error: 'optional' file not found +BROKEN_i386= error: no matching function for call to 'max': https://github.com/TRIQS/triqs/issues/596 BUILD_DEPENDS= boost-libs>=1.53:devel/boost-libs \ ${PYNUMPY} From owner-svn-ports-head@freebsd.org Thu Jun 21 05:43:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 232BD1007CFA; Thu, 21 Jun 2018 05:43:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B63848B353; Thu, 21 Jun 2018 05:43:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 915165AD9; Thu, 21 Jun 2018 05:43:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L5hdti074913; Thu, 21 Jun 2018 05:43:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L5hdu2074911; Thu, 21 Jun 2018 05:43:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210543.w5L5hdu2074911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 05:43:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472953 - head/science/abinit X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/abinit X-SVN-Commit-Revision: 472953 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 05:43:40 -0000 Author: yuri Date: Thu Jun 21 05:43:38 2018 New Revision: 472953 URL: https://svnweb.freebsd.org/changeset/ports/472953 Log: science/abinit: Update 8.8.2 -> 8.8.3 Reported by: portscout Modified: head/science/abinit/Makefile head/science/abinit/distinfo Modified: head/science/abinit/Makefile ============================================================================== --- head/science/abinit/Makefile Thu Jun 21 05:22:48 2018 (r472952) +++ head/science/abinit/Makefile Thu Jun 21 05:43:38 2018 (r472953) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= abinit -DISTVERSION= 8.8.2 +DISTVERSION= 8.8.3 CATEGORIES= science MASTER_SITES= https://www.abinit.org/sites/default/files/packages/ Modified: head/science/abinit/distinfo ============================================================================== --- head/science/abinit/distinfo Thu Jun 21 05:22:48 2018 (r472952) +++ head/science/abinit/distinfo Thu Jun 21 05:43:38 2018 (r472953) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528909182 -SHA256 (abinit-8.8.2.tar.gz) = 15216703bd56a799a249a112b336d07d733627d3756487a4b1cb48ebb625c3e7 -SIZE (abinit-8.8.2.tar.gz) = 82546807 +TIMESTAMP = 1529557663 +SHA256 (abinit-8.8.3.tar.gz) = cceb397d1c8b81dc616e65bfb2986a8a1764e59be98e3c887b0392dfba0d4652 +SIZE (abinit-8.8.3.tar.gz) = 82567680 From owner-svn-ports-head@freebsd.org Thu Jun 21 05:22:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B7FA1005B67; Thu, 21 Jun 2018 05:22:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E16F8A042; Thu, 21 Jun 2018 05:22:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 302125783; Thu, 21 Jun 2018 05:22:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L5MnJU064814; Thu, 21 Jun 2018 05:22:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L5Mm5j064812; Thu, 21 Jun 2018 05:22:48 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210522.w5L5Mm5j064812@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 05:22:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472952 - head/devel/py-IBMQuantumExperience X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-IBMQuantumExperience X-SVN-Commit-Revision: 472952 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 05:22:49 -0000 Author: yuri Date: Thu Jun 21 05:22:48 2018 New Revision: 472952 URL: https://svnweb.freebsd.org/changeset/ports/472952 Log: devel/py-IBMQuantumExperience: Update 1.9.4 -> 1.9.5 Modified: head/devel/py-IBMQuantumExperience/Makefile head/devel/py-IBMQuantumExperience/distinfo Modified: head/devel/py-IBMQuantumExperience/Makefile ============================================================================== --- head/devel/py-IBMQuantumExperience/Makefile Thu Jun 21 04:50:11 2018 (r472951) +++ head/devel/py-IBMQuantumExperience/Makefile Thu Jun 21 05:22:48 2018 (r472952) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= IBMQuantumExperience -DISTVERSION= 1.9.4 +DISTVERSION= 1.9.5 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-IBMQuantumExperience/distinfo ============================================================================== --- head/devel/py-IBMQuantumExperience/distinfo Thu Jun 21 04:50:11 2018 (r472951) +++ head/devel/py-IBMQuantumExperience/distinfo Thu Jun 21 05:22:48 2018 (r472952) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529256837 -SHA256 (IBMQuantumExperience-1.9.4.tar.gz) = 44f8da2d8184ead892efdde08387193bbe47305e51c138f4f308c4091a7e2132 -SIZE (IBMQuantumExperience-1.9.4.tar.gz) = 13104 +TIMESTAMP = 1529558287 +SHA256 (IBMQuantumExperience-1.9.5.tar.gz) = 882231f1cfcbb398802b2e9be500562e4d2cf7a45fd2592e487f0f50beee4a47 +SIZE (IBMQuantumExperience-1.9.5.tar.gz) = 13128 From owner-svn-ports-head@freebsd.org Thu Jun 21 04:50:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 595EA10037B0; Thu, 21 Jun 2018 04:50:12 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C46288BFC; Thu, 21 Jun 2018 04:50:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E2F2650FF; Thu, 21 Jun 2018 04:50:11 +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 w5L4oBHc044696; Thu, 21 Jun 2018 04:50:11 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L4oBRJ044695; Thu, 21 Jun 2018 04:50:11 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201806210450.w5L4oBRJ044695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 21 Jun 2018 04:50:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472951 - head/security/krb5-devel X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/security/krb5-devel X-SVN-Commit-Revision: 472951 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 04:50:12 -0000 Author: cy Date: Thu Jun 21 04:50:11 2018 New Revision: 472951 URL: https://svnweb.freebsd.org/changeset/ports/472951 Log: Update to the latest MIT commit. Modified: head/security/krb5-devel/Makefile (contents, props changed) head/security/krb5-devel/distinfo (contents, props changed) Modified: head/security/krb5-devel/Makefile ============================================================================== --- head/security/krb5-devel/Makefile Thu Jun 21 04:50:00 2018 (r472950) +++ head/security/krb5-devel/Makefile Thu Jun 21 04:50:11 2018 (r472951) @@ -7,8 +7,8 @@ CATEGORIES= security .if !defined(MASTERDIR) PKGNAMESUFFIX= -devel .endif -HASH= beeb282 -MIT_COMMIT_DATE= 2018.06.18 +HASH= 3a30dec +MIT_COMMIT_DATE= 2018.06.20 PATCH_SITES= http://web.mit.edu/kerberos/advisories/ PATCH_DIST_STRIP= -p2 Modified: head/security/krb5-devel/distinfo ============================================================================== --- head/security/krb5-devel/distinfo Thu Jun 21 04:50:00 2018 (r472950) +++ head/security/krb5-devel/distinfo Thu Jun 21 04:50:11 2018 (r472951) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529391436 -SHA256 (krb5-krb5-1.17.2018.06.18-beeb282_GH0.tar.gz) = addb9381f02a9a004d66a0f9b6e3734c71e79dd10b8c9fc3897ee8b3912f0172 -SIZE (krb5-krb5-1.17.2018.06.18-beeb282_GH0.tar.gz) = 5235060 +TIMESTAMP = 1529556069 +SHA256 (krb5-krb5-1.17.2018.06.20-3a30dec_GH0.tar.gz) = 754082cba5b956c412f13de916718e994524f656c7a7f1eff8649e0dda5b9d9c +SIZE (krb5-krb5-1.17.2018.06.20-3a30dec_GH0.tar.gz) = 5235552 From owner-svn-ports-head@freebsd.org Thu Jun 21 06:32:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DB0D100C6C4; Thu, 21 Jun 2018 06:32:17 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3AF438D55E; Thu, 21 Jun 2018 06:32:17 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1C8FE629D; Thu, 21 Jun 2018 06:32:17 +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 w5L6WGFa000783; Thu, 21 Jun 2018 06:32:16 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L6WGmw000780; Thu, 21 Jun 2018 06:32:16 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806210632.w5L6WGmw000780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 21 Jun 2018 06:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472956 - in head/audio/openal-soft: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/audio/openal-soft: . files X-SVN-Commit-Revision: 472956 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 06:32:17 -0000 Author: tobik Date: Thu Jun 21 06:32:16 2018 New Revision: 472956 URL: https://svnweb.freebsd.org/changeset/ports/472956 Log: audio/openal-soft: Cleanup options - Drop bogus FLUIDSYNTH option (MIDI support was removed in 1.17.0) - The sndio backend is missing capture support. This can lead to crashes when there is no usable fallback backend available. As a workaround always enable the OSS backend when the sndio backend is wanted. - Prioritize sndio over OSS when it's enabled which should make it unnecessary to fiddle with config files when building with both SNDIO and OSS. - Turn off dynamically loading backend libs via dlopen - Correct lib depends - Update pkg-descr - Take maintainership Added: head/audio/openal-soft/files/patch-Alc_ALc.c (contents, props changed) Modified: head/audio/openal-soft/Makefile head/audio/openal-soft/files/patch-CMakeLists.txt head/audio/openal-soft/pkg-descr Modified: head/audio/openal-soft/Makefile ============================================================================== --- head/audio/openal-soft/Makefile Thu Jun 21 06:25:15 2018 (r472955) +++ head/audio/openal-soft/Makefile Thu Jun 21 06:32:16 2018 (r472956) @@ -2,11 +2,11 @@ PORTNAME= openal-soft PORTVERSION= 1.18.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://kcat.strangesoft.net/openal-releases/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= tobik@FreeBSD.org COMMENT= Software implementation of the OpenAL specification LICENSE= LGPL20+ @@ -14,55 +14,47 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= openal-200[0-9]* -USES= tar:bzip2 cmake compiler:c11 +USES= cmake:outsource compiler:c11 tar:bzip2 USE_LDCONFIG= yes LLD_UNSAFE= yes -CMAKE_ARGS= -DSHARE_INSTALL_DIR:STRING=${ETCDIR} \ - -DALSOFT_REQUIRE_OSS:BOOL=OFF \ - -DALSOFT_REQUIRE_JACK:BOOL=OFF \ - -DALSOFT_REQUIRE_SOLARIS:BOOL=OFF \ - -DALSOFT_REQUIRE_SNDIO:BOOL=OFF \ - -DALSOFT_REQUIRE_QSA:BOOL=OFF \ - -DALSOFT_BACKEND_ALSA:BOOL=OFF \ - -DALSOFT_BACKEND_WAVE:BOOL=ON \ - -DALSOFT_EXAMPLES:BOOL=OFF \ - -DALSOFT_UTILS:BOOL=ON +CMAKE_ARGS= -DCMAKE_INSTALL_DATADIR:STRING="${PREFIX}/etc" +CMAKE_OFF= ALSOFT_BACKEND_ALSA \ + ALSOFT_DLOPEN \ + ALSOFT_EXAMPLES \ + ALSOFT_REQUIRE_SOLARIS \ + ALSOFT_REQUIRE_QSA +CMAKE_ON= ALSOFT_BACKEND_WAVE \ + ALSOFT_UTILS +LDFLAGS+= -Wl,--as-needed # do not link with librt and libdl -OPTIONS_DEFINE= EXAMPLES FLUIDSYNTH CONFIG OSS JACK PORTAUDIO \ - PULSEAUDIO SNDIO +OPTIONS_DEFINE= EXAMPLES CONFIG JACK OSS PORTAUDIO PULSEAUDIO SNDIO OPTIONS_DEFAULT= OSS OPTIONS_SUB= yes + CONFIG_DESC= Install configuration utility (needs Qt 4.x) -#ALSA_CMAKE_ON= -DALSOFT_REQUIRE_ALSA:BOOL=ON -#ALSA_CMAKE_OFF= -DALSOFT_BACKEND_ALSA:BOOL=OFF -#ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib -CONFIG_CMAKE_ON= -DALSOFT_NO_CONFIG_UTIL:BOOL=OFF -CONFIG_CMAKE_OFF= -DALSOFT_NO_CONFIG_UTIL:BOOL=ON +CONFIG_CMAKE_BOOL_OFF= ALSOFT_NO_CONFIG_UTIL +CONFIG_CMAKE_ON= -DALSOFT_NO_QT5:BOOL=ON CONFIG_USE= QT4=corelib,gui,qmake_build,moc_build,rcc_build,uic_build -FLUIDSYNTH_CMAKE_ON= -DALSOFT_REQUIRE_FLUIDSYNTH:BOOL=ON -FLUIDSYNTH_CMAKE_OFF= -DALSOFT_MIDI_FLUIDSYNTH:BOOL=OFF -FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth -OSS_CMAKE_ON= -DALSOFT_REQUIRE_OSS:BOOL=ON -OSS_CMAKE_OFF= -DALSOFT_BACKEND_OSS:BOOL=OFF -JACK_CMAKE_ON= -DALSOFT_REQUIRE_JACK:BOOL=ON -JACK_CMAKE_OFF= -DALSOFT_BACKEND_JACK:BOOL=OFF + +JACK_CMAKE_BOOL= ALSOFT_REQUIRE_JACK ALSOFT_BACKEND_JACK JACK_LIB_DEPENDS= libjack.so:audio/jack -PORTAUDIO_CMAKE_ON= -DALSOFT_REQUIRE_PORTAUDIO:BOOL=ON -PORTAUDIO_CMAKE_OFF= -DALSOFT_BACKEND_PORTAUDIO:BOOL=OFF + +OSS_CMAKE_BOOL= ALSOFT_REQUIRE_OSS ALSOFT_BACKEND_OSS + +PORTAUDIO_CMAKE_BOOL= ALSOFT_REQUIRE_PORTAUDIO ALSOFT_BACKEND_PORTAUDIO PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio -PULSEAUDIO_CMAKE_ON= -DALSOFT_REQUIRE_PULSEAUDIO:BOOL=ON -PULSEAUDIO_CMAKE_OFF= -DALSOFT_BACKEND_PULSEAUDIO:BOOL=OFF -PULSEAUDIO_LIB_DEPENDS= libpulse-simple.so:audio/pulseaudio -SNDIO_CMAKE_ON= -DALSOFT_REQUIRE_SNDIO:BOOL=ON -SNDIO_CMAKE_OFF= -DALSOFT_BACKEND_SNDIO:BOOL=OFF + +PULSEAUDIO_CMAKE_BOOL= ALSOFT_REQUIRE_PULSEAUDIO ALSOFT_BACKEND_PULSEAUDIO +PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio + +SNDIO_CMAKE_BOOL= ALSOFT_REQUIRE_SNDIO ALSOFT_BACKEND_SNDIO +SNDIO_IMPLIES= OSS # provide fallback for missing sndio capture support SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio post-patch: @${REINPLACE_CMD} 's|/etc/openal|${ETCDIR}|' \ ${WRKSRC}/Alc/alcConfig.c - @${REINPLACE_CMD} 's|$${CMAKE_INSTALL_DATADIR}/openal|${ETCDIR}|' \ - ${WRKSRC}/CMakeLists.txt post-install-EXAMPLES-on: (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \ Added: head/audio/openal-soft/files/patch-Alc_ALc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/openal-soft/files/patch-Alc_ALc.c Thu Jun 21 06:32:16 2018 (r472956) @@ -0,0 +1,22 @@ +Prefer sndio over OSS when it's enabled. + +--- Alc/ALc.c.orig 2018-06-21 02:27:21 UTC ++++ Alc/ALc.c +@@ -69,14 +69,14 @@ static struct BackendInfo BackendList[] = { + #ifdef HAVE_COREAUDIO + { "core", ALCcoreAudioBackendFactory_getFactory }, + #endif +-#ifdef HAVE_OSS +- { "oss", ALCossBackendFactory_getFactory }, +-#endif + #ifdef HAVE_SOLARIS + { "solaris", ALCsolarisBackendFactory_getFactory }, + #endif + #ifdef HAVE_SNDIO + { "sndio", ALCsndioBackendFactory_getFactory }, ++#endif ++#ifdef HAVE_OSS ++ { "oss", ALCossBackendFactory_getFactory }, + #endif + #ifdef HAVE_QSA + { "qsa", ALCqsaBackendFactory_getFactory }, Modified: head/audio/openal-soft/files/patch-CMakeLists.txt ============================================================================== --- head/audio/openal-soft/files/patch-CMakeLists.txt Thu Jun 21 06:25:15 2018 (r472955) +++ head/audio/openal-soft/files/patch-CMakeLists.txt Thu Jun 21 06:32:16 2018 (r472956) @@ -1,22 +1,29 @@ ---- CMakeLists.txt.orig 2017-07-30 05:09:21 UTC +--- CMakeLists.txt.orig 2017-09-24 13:41:50 UTC +++ CMakeLists.txt -@@ -646,10 +646,6 @@ int main() - - CHECK_SYMBOL_EXISTS(pthread_mutex_timedlock pthread.h HAVE_PTHREAD_MUTEX_TIMEDLOCK) - -- CHECK_LIBRARY_EXISTS(rt clock_gettime "" HAVE_LIBRT) -- IF(HAVE_LIBRT) -- SET(EXTRA_LIBS rt ${EXTRA_LIBS}) -- ENDIF() - ENDIF() - - # Check for a 64-bit type -@@ -1322,7 +1318,7 @@ IF(ALSOFT_INSTALL) - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/AL +@@ -1381,7 +1381,7 @@ endif() + # Install alsoft.conf configuration file + IF(ALSOFT_CONFIG) + INSTALL(FILES alsoftrc.sample +- DESTINATION ${CMAKE_INSTALL_DATADIR}/openal ++ DESTINATION ${CMAKE_INSTALL_DATADIR}/openal-soft ) - INSTALL(FILES "${OpenAL_BINARY_DIR}/openal.pc" -- DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") -+ DESTINATION "libdata/pkgconfig") - IF(TARGET soft_oal) - INSTALL(TARGETS soft_oal - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + MESSAGE(STATUS "Installing sample configuration") + MESSAGE(STATUS "") +@@ -1391,7 +1391,7 @@ ENDIF() + IF(ALSOFT_HRTF_DEFS) + INSTALL(FILES hrtf/default-44100.mhr + hrtf/default-48000.mhr +- DESTINATION ${CMAKE_INSTALL_DATADIR}/openal/hrtf ++ DESTINATION ${CMAKE_INSTALL_DATADIR}/openal-soft/hrtf + ) + MESSAGE(STATUS "Installing HRTF definitions") + MESSAGE(STATUS "") +@@ -1405,7 +1405,7 @@ IF(ALSOFT_AMBDEC_PRESETS) + presets/rectangle.ambdec + presets/square.ambdec + presets/presets.txt +- DESTINATION ${CMAKE_INSTALL_DATADIR}/openal/presets ++ DESTINATION ${CMAKE_INSTALL_DATADIR}/openal-soft/presets + ) + MESSAGE(STATUS "Installing AmbDec presets") + MESSAGE(STATUS "") Modified: head/audio/openal-soft/pkg-descr ============================================================================== --- head/audio/openal-soft/pkg-descr Thu Jun 21 06:25:15 2018 (r472955) +++ head/audio/openal-soft/pkg-descr Thu Jun 21 06:32:16 2018 (r472956) @@ -1,10 +1,9 @@ -OpenAL Soft is a software implementation of the OpenAL 3D audio API and an -alternative to the somewhat outdated reference implementation. -As stated on the website, OpenAL provides capabilities for playing audio in a -virtual 3d environment. Distance attenuation, doppler shift, and directional -sound emitters are among the features handled by the API. More advanced -effects, including air absorption, low-pass filters, and reverb, are -available through the EFX extension. It also facilitates streaming audio, -multi-channel buffers, and audio capture. +OpenAL Soft is a software implementation of the OpenAL 3D audio +API. OpenAL provides capabilities for playing audio in a virtual +3D environment. Distance attenuation, doppler shift, and directional +sound emitters are among the features handled by the API. More +advanced effects, including air absorption, low-pass filters, and +reverb, are available through the EFX extension. It also facilitates +streaming audio, multi-channel buffers, and audio capture. WWW: http://kcat.strangesoft.net/openal.html From owner-svn-ports-head@freebsd.org Thu Jun 21 07:22:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1CB8101111D; Thu, 21 Jun 2018 07:22:33 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 72C058FFDA; Thu, 21 Jun 2018 07:22:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 550666A90; Thu, 21 Jun 2018 07:22:33 +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 w5L7MXOm025866; Thu, 21 Jun 2018 07:22:33 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7MWj3025862; Thu, 21 Jun 2018 07:22:32 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806210722.w5L7MWj3025862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 07:22:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472957 - in head/devel: . p5-Test-Exit X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Test-Exit X-SVN-Commit-Revision: 472957 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:22:34 -0000 Author: pi Date: Thu Jun 21 07:22:32 2018 New Revision: 472957 URL: https://svnweb.freebsd.org/changeset/ports/472957 Log: New port: devel/p5-Test-Exit Test whether code exits without terminating testing. WWW: https://metacpan.org/release/Test-Exit PR: 229157 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Test-Exit/ head/devel/p5-Test-Exit/Makefile (contents, props changed) head/devel/p5-Test-Exit/distinfo (contents, props changed) head/devel/p5-Test-Exit/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 21 06:32:16 2018 (r472956) +++ head/devel/Makefile Thu Jun 21 07:22:32 2018 (r472957) @@ -3514,6 +3514,7 @@ SUBDIR += p5-Test-Distribution SUBDIR += p5-Test-EOL SUBDIR += p5-Test-Exception + SUBDIR += p5-Test-Exit SUBDIR += p5-Test-Expect SUBDIR += p5-Test-FailWarnings SUBDIR += p5-Test-Fake-HTTPD Added: head/devel/p5-Test-Exit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Exit/Makefile Thu Jun 21 07:22:32 2018 (r472957) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= Test-Exit +PORTVERSION= 0.11 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Test whether code exits without terminating testing + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Return-MultiLevel>=0:devel/p5-Return-MultiLevel + +USES= perl5 +USE_PERL5= configure +PLIST_FILES= ${SITE_PERL_REL}/Test/Exit.pm \ + ${SITE_MAN3_REL}/Test::Exit.3.gz + +.include Added: head/devel/p5-Test-Exit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Exit/distinfo Thu Jun 21 07:22:32 2018 (r472957) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529412503 +SHA256 (Test-Exit-0.11.tar.gz) = fbda92d37e0481d18eebc81e48d025228b57184c59b2d5a6f6bdf87042e8c7b2 +SIZE (Test-Exit-0.11.tar.gz) = 9778 Added: head/devel/p5-Test-Exit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Exit/pkg-descr Thu Jun 21 07:22:32 2018 (r472957) @@ -0,0 +1,3 @@ +Test whether code exits without terminating testing. + +WWW: https://metacpan.org/release/Test-Exit From owner-svn-ports-head@freebsd.org Thu Jun 21 07:29:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46C28101194E; Thu, 21 Jun 2018 07:29:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8A11705C4; Thu, 21 Jun 2018 07:29:21 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C9C9E6AAC; Thu, 21 Jun 2018 07:29:21 +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 w5L7TL0g026307; Thu, 21 Jun 2018 07:29:21 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7TKs3026303; Thu, 21 Jun 2018 07:29:20 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806210729.w5L7TKs3026303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 07:29:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472958 - in head/sysutils: . p5-App-RunCron X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/sysutils: . p5-App-RunCron X-SVN-Commit-Revision: 472958 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:29:22 -0000 Author: pi Date: Thu Jun 21 07:29:20 2018 New Revision: 472958 URL: https://svnweb.freebsd.org/changeset/ports/472958 Log: New port: sysutils/p5-App-RunCron Making wrapper scripts for cron tasks WWW: https://metacpan.org/release/App-RunCron PR: 229158 Submitted by: Tomohiro Hosaka Added: head/sysutils/p5-App-RunCron/ head/sysutils/p5-App-RunCron/Makefile (contents, props changed) head/sysutils/p5-App-RunCron/distinfo (contents, props changed) head/sysutils/p5-App-RunCron/pkg-descr (contents, props changed) head/sysutils/p5-App-RunCron/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jun 21 07:22:32 2018 (r472957) +++ head/sysutils/Makefile Thu Jun 21 07:29:20 2018 (r472958) @@ -764,6 +764,7 @@ SUBDIR += ori SUBDIR += osinfo-db-tools SUBDIR += osquery + SUBDIR += p5-App-RunCron SUBDIR += p5-BSD-Jail-Object SUBDIR += p5-BSD-Process SUBDIR += p5-BSD-Sysctl Added: head/sysutils/p5-App-RunCron/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-App-RunCron/Makefile Thu Jun 21 07:29:20 2018 (r472958) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= App-RunCron +PORTVERSION= 0.08 +CATEGORIES= sysutils perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Making wrapper scripts for cron tasks + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Module-Build>=0.38:devel/p5-Module-Build +RUN_DEPENDS= p5-Class-Accessor-Lite>=0:devel/p5-Class-Accessor-Lite \ + p5-YAML-Tiny>=0:textproc/p5-YAML-Tiny +TEST_DEPENDS= p5-Capture-Tiny>=0:devel/p5-Capture-Tiny \ + p5-File-pushd>=0:devel/p5-File-pushd \ + p5-Test-Exit>=0:devel/p5-Test-Exit \ + p5-Test-Requires>=0:devel/p5-Test-Requires \ + p5-Test-Mock-Guard>=0:devel/p5-Test-Mock-Guard + +USES= perl5 +USE_PERL5= modbuild + +.include Added: head/sysutils/p5-App-RunCron/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-App-RunCron/distinfo Thu Jun 21 07:29:20 2018 (r472958) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529412424 +SHA256 (App-RunCron-0.08.tar.gz) = 048493537ecd35920edd83a00e691c3d3d23b21493975489abed8e060126b76b +SIZE (App-RunCron-0.08.tar.gz) = 17683 Added: head/sysutils/p5-App-RunCron/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-App-RunCron/pkg-descr Thu Jun 21 07:29:20 2018 (r472958) @@ -0,0 +1,3 @@ +Making wrapper scripts for cron tasks + +WWW: https://metacpan.org/release/App-RunCron Added: head/sysutils/p5-App-RunCron/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/p5-App-RunCron/pkg-plist Thu Jun 21 07:29:20 2018 (r472958) @@ -0,0 +1,17 @@ +bin/runcron +%%SITE_PERL%%/App/RunCron.pm +%%SITE_PERL%%/App/RunCron/Announcer/Code.pm +%%SITE_PERL%%/App/RunCron/Announcer/Command.pm +%%SITE_PERL%%/App/RunCron/CLI.pm +%%SITE_PERL%%/App/RunCron/Reporter.pm +%%SITE_PERL%%/App/RunCron/Reporter/Code.pm +%%SITE_PERL%%/App/RunCron/Reporter/Command.pm +%%SITE_PERL%%/App/RunCron/Reporter/File.pm +%%SITE_PERL%%/App/RunCron/Reporter/Fluentd.pm +%%SITE_PERL%%/App/RunCron/Reporter/None.pm +%%SITE_PERL%%/App/RunCron/Reporter/Stdout.pm +%%SITE_PERL%%/Test/App/RunCron.pm +%%PERL5_MAN1%%/runcron.1.gz +%%PERL5_MAN3%%/App::RunCron.3.gz +%%PERL5_MAN3%%/App::RunCron::Reporter.3.gz +%%PERL5_MAN3%%/Test::App::RunCron.3.gz From owner-svn-ports-head@freebsd.org Thu Jun 21 07:43:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5407B10124AE; Thu, 21 Jun 2018 07:43:25 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 065B370F67; Thu, 21 Jun 2018 07:43:25 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DBC096DE2; Thu, 21 Jun 2018 07:43:24 +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 w5L7hOX0036711; Thu, 21 Jun 2018 07:43:24 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7hOJq036707; Thu, 21 Jun 2018 07:43:24 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806210743.w5L7hOJq036707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 07:43:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472959 - in head/devel: . p5-Test-Deep-UnorderedPairs X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Test-Deep-UnorderedPairs X-SVN-Commit-Revision: 472959 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:43:25 -0000 Author: pi Date: Thu Jun 21 07:43:23 2018 New Revision: 472959 URL: https://svnweb.freebsd.org/changeset/ports/472959 Log: New port: devel/p5-Test-Deep-UnorderedPairs Plugin for Test::Deep to compare unordered lists of tuples. This module provides the sub unordered_pairs (and tuples, samehash, as synonyms) to indicate the data being tested is a list of pairs that should be tested where the order of the pairs is insignificant. WWW: https://metacpan.org/release/Test-Deep-UnorderedPairs PR: 229195 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Test-Deep-UnorderedPairs/ head/devel/p5-Test-Deep-UnorderedPairs/Makefile (contents, props changed) head/devel/p5-Test-Deep-UnorderedPairs/distinfo (contents, props changed) head/devel/p5-Test-Deep-UnorderedPairs/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 21 07:29:20 2018 (r472958) +++ head/devel/Makefile Thu Jun 21 07:43:23 2018 (r472959) @@ -3508,6 +3508,7 @@ SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Declare SUBDIR += p5-Test-Deep + SUBDIR += p5-Test-Deep-UnorderedPairs SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-DependentModules SUBDIR += p5-Test-Differences Added: head/devel/p5-Test-Deep-UnorderedPairs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Deep-UnorderedPairs/Makefile Thu Jun 21 07:43:23 2018 (r472959) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= Test-Deep-UnorderedPairs +PORTVERSION= 0.006 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR=CPAN:ETHER +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Plugin for Test::Deep to compare unordered lists of tuples + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep +TEST_DEPENDS= p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Test-Fatal>=0:devel/p5-Test-Fatal + +USES= perl5 +USE_PERL5= configure +PLIST_FILES= ${SITE_PERL_REL}/Test/Deep/UnorderedPairs.pm \ + ${SITE_MAN3_REL}/Test::Deep::UnorderedPairs.3.gz + +.include Added: head/devel/p5-Test-Deep-UnorderedPairs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Deep-UnorderedPairs/distinfo Thu Jun 21 07:43:23 2018 (r472959) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529539479 +SHA256 (Test-Deep-UnorderedPairs-0.006.tar.gz) = 9d6911a9c69b22a26cad198032e6445cfd2a9d6cec4fc3d8a7ca9b965525ccc5 +SIZE (Test-Deep-UnorderedPairs-0.006.tar.gz) = 28523 Added: head/devel/p5-Test-Deep-UnorderedPairs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Deep-UnorderedPairs/pkg-descr Thu Jun 21 07:43:23 2018 (r472959) @@ -0,0 +1,7 @@ +Plugin for Test::Deep to compare unordered lists of tuples. + +This module provides the sub unordered_pairs (and tuples, samehash, +as synonyms) to indicate the data being tested is a list of pairs +that should be tested where the order of the pairs is insignificant. + +WWW: https://metacpan.org/release/Test-Deep-UnorderedPairs From owner-svn-ports-head@freebsd.org Thu Jun 21 07:51:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6EC01012C0A; Thu, 21 Jun 2018 07:51:55 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 948C8714ED; Thu, 21 Jun 2018 07:51:55 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 75EF96F41; Thu, 21 Jun 2018 07:51:55 +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 w5L7ptqU040737; Thu, 21 Jun 2018 07:51:55 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7psb3040262; Thu, 21 Jun 2018 07:51:54 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806210751.w5L7psb3040262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 07:51:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472960 - in head/devel: . p5-Test-Mock-Redis X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . p5-Test-Mock-Redis X-SVN-Commit-Revision: 472960 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:51:56 -0000 Author: pi Date: Thu Jun 21 07:51:54 2018 New Revision: 472960 URL: https://svnweb.freebsd.org/changeset/ports/472960 Log: New port: devel/p5-Test-Mock-Redis Test::Mock::Redis can be used in place of Redis for running tests without needing a running redis instance. This module is designed to function as a drop in replacement for Redis.pm for testing purposes. WWW: https://metacpan.org/release/Test-Mock-Redis PR: 229196 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Test-Mock-Redis/ head/devel/p5-Test-Mock-Redis/Makefile (contents, props changed) head/devel/p5-Test-Mock-Redis/distinfo (contents, props changed) head/devel/p5-Test-Mock-Redis/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 21 07:43:23 2018 (r472959) +++ head/devel/Makefile Thu Jun 21 07:51:54 2018 (r472960) @@ -3555,6 +3555,7 @@ SUBDIR += p5-Test-Mock-Guard SUBDIR += p5-Test-Mock-LWP SUBDIR += p5-Test-Mock-LWP-Dispatch + SUBDIR += p5-Test-Mock-Redis SUBDIR += p5-Test-MockDateTime SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject Added: head/devel/p5-Test-Mock-Redis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Mock-Redis/Makefile Thu Jun 21 07:51:54 2018 (r472960) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= Test-Mock-Redis +PORTVERSION= 0.20 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Use in place of Redis for unit testing + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Module-Build>=0.4:devel/p5-Module-Build \ + p5-Test-Deep>=0:devel/p5-Test-Deep \ + p5-Test-Deep-UnorderedPairs>=0:devel/p5-Test-Deep-UnorderedPairs \ + p5-Test-Fatal>=0:devel/p5-Test-Fatal +RUN_DEPENDS= p5-Class-Method-Modifiers>=0:devel/p5-Class-Method-Modifiers \ + p5-Package-Stash>=0.34:devel/p5-Package-Stash \ + p5-Try-Tiny>=0:lang/p5-Try-Tiny \ + p5-namespace-clean>=0:devel/p5-namespace-clean + +USES= perl5 +USE_PERL5= modbuild +PLIST_FILES= ${SITE_PERL_REL}/Test/Mock/Redis.pm \ + ${SITE_MAN3_REL}/Test::Mock::Redis.3.gz + +.include Added: head/devel/p5-Test-Mock-Redis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Mock-Redis/distinfo Thu Jun 21 07:51:54 2018 (r472960) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529538406 +SHA256 (Test-Mock-Redis-0.20.tar.gz) = ad00d999a808ca23c05c7ea2f198ba73fe93ff4d9646486078c647457a72ead4 +SIZE (Test-Mock-Redis-0.20.tar.gz) = 31965 Added: head/devel/p5-Test-Mock-Redis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Test-Mock-Redis/pkg-descr Thu Jun 21 07:51:54 2018 (r472960) @@ -0,0 +1,6 @@ +Test::Mock::Redis can be used in place of Redis for running tests +without needing a running redis instance. This module is designed +to function as a drop in replacement for Redis.pm for testing +purposes. + +WWW: https://metacpan.org/release/Test-Mock-Redis From owner-svn-ports-head@freebsd.org Thu Jun 21 07:55:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28A4C1012F3B; Thu, 21 Jun 2018 07:55:35 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1BB6717B6; Thu, 21 Jun 2018 07:55:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2D406F7C; Thu, 21 Jun 2018 07:55:34 +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 w5L7tYCf042134; Thu, 21 Jun 2018 07:55:34 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7tX7u042130; Thu, 21 Jun 2018 07:55:33 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806210755.w5L7tX7u042130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 07:55:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472961 - in head/databases: . p5-CHI-Driver-Redis X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/databases: . p5-CHI-Driver-Redis X-SVN-Commit-Revision: 472961 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:55:35 -0000 Author: pi Date: Thu Jun 21 07:55:33 2018 New Revision: 472961 URL: https://svnweb.freebsd.org/changeset/ports/472961 Log: New port: databases/p5-CHI-Driver-Redis Redis driver for CHI WWW: https://metacpan.org/pod/CHI::Driver::Redis PR: 229079 Submitted by: Tomohiro Hosaka Added: head/databases/p5-CHI-Driver-Redis/ head/databases/p5-CHI-Driver-Redis/Makefile (contents, props changed) head/databases/p5-CHI-Driver-Redis/distinfo (contents, props changed) head/databases/p5-CHI-Driver-Redis/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Jun 21 07:51:54 2018 (r472960) +++ head/databases/Makefile Thu Jun 21 07:55:33 2018 (r472961) @@ -274,6 +274,7 @@ SUBDIR += p5-CDB_File-Generator SUBDIR += p5-CGI-Session-Driver-memcached SUBDIR += p5-CHI-Driver-Memcached + SUBDIR += p5-CHI-Driver-Redis SUBDIR += p5-Cache-BDB SUBDIR += p5-Cache-Memcached SUBDIR += p5-Cache-Memcached-Fast Added: head/databases/p5-CHI-Driver-Redis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Redis/Makefile Thu Jun 21 07:55:33 2018 (r472961) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= CHI-Driver-Redis +PORTVERSION= 0.10 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Redis driver for CHI + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= p5-CHI>=0.36:devel/p5-CHI \ + p5-Moo>=0:devel/p5-Moo \ + p5-Redis>=1.901:databases/p5-Redis \ + p5-URI>=0:net/p5-URI +TEST_DEPENDS= p5-Test-Class>=0:devel/p5-Test-Class \ + p5-Test-Mock-Redis>=0:devel/p5-Test-Mock-Redis + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= ${SITE_PERL_REL}/CHI/Driver/Redis.pm \ + ${SITE_MAN3_REL}/CHI::Driver::Redis.3.gz + +post-install: + ${RM} -r ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/CHI/Driver/Redis/t + ${RMDIR} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/CHI/Driver/Redis + +.include Added: head/databases/p5-CHI-Driver-Redis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Redis/distinfo Thu Jun 21 07:55:33 2018 (r472961) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529567713 +SHA256 (CHI-Driver-Redis-0.10.tar.gz) = 4c5cfb5a3638674f97045ea17efc24a43603f59ea3db6f3dedfd1c69a88e0a3c +SIZE (CHI-Driver-Redis-0.10.tar.gz) = 29866 Added: head/databases/p5-CHI-Driver-Redis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-CHI-Driver-Redis/pkg-descr Thu Jun 21 07:55:33 2018 (r472961) @@ -0,0 +1,3 @@ +Redis driver for CHI + +WWW: https://metacpan.org/pod/CHI::Driver::Redis From owner-svn-ports-head@freebsd.org Thu Jun 21 07:59:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 521F5101326A; Thu, 21 Jun 2018 07:59:03 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 029E371CDF; Thu, 21 Jun 2018 07:59:03 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D90F26F86; Thu, 21 Jun 2018 07:59:02 +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 w5L7x2sW042399; Thu, 21 Jun 2018 07:59:02 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7x2cJ042398; Thu, 21 Jun 2018 07:59:02 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201806210759.w5L7x2cJ042398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Thu, 21 Jun 2018 07:59:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472962 - head/net-mgmt/aircrack-ng X-SVN-Group: ports-head X-SVN-Commit-Author: lme X-SVN-Commit-Paths: head/net-mgmt/aircrack-ng X-SVN-Commit-Revision: 472962 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:59:03 -0000 Author: lme Date: Thu Jun 21 07:59:02 2018 New Revision: 472962 URL: https://svnweb.freebsd.org/changeset/ports/472962 Log: net-mgmt/aicrack-ng: - Set required GCC version to 6+, so that the default gcc version is chosen. GCC isn't needed to successfully building the port, but according to upstream using the gcc compiled version is 60-70% faster than the clang compiled version. - Bump PORTREVISION PR: 228747 Submitted by: Michael Danilov Modified: head/net-mgmt/aircrack-ng/Makefile Modified: head/net-mgmt/aircrack-ng/Makefile ============================================================================== --- head/net-mgmt/aircrack-ng/Makefile Thu Jun 21 07:55:33 2018 (r472961) +++ head/net-mgmt/aircrack-ng/Makefile Thu Jun 21 07:59:02 2018 (r472962) @@ -3,6 +3,7 @@ PORTNAME= aircrack-ng DISTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= net-mgmt security MASTER_SITES= http://download.aircrack-ng.org/ @@ -15,7 +16,7 @@ LICENSE_COMB= dual BROKEN_powerpc64= fails to compile: sse-intrinsics.c: error: emmintrin.h: No such file or directory USES= autoreconf cpe dos2unix gmake libtool ssl -USE_GCC= 7+ +USE_GCC= 6+ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-experimental CPE_VERSION= ${DISTVERSION:C/-.*//} From owner-svn-ports-head@freebsd.org Thu Jun 21 07:59:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9695F10132E0; Thu, 21 Jun 2018 07:59:25 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C22371DE4; Thu, 21 Jun 2018 07:59:25 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E5B26F89; Thu, 21 Jun 2018 07:59:25 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L7xPkk042546; Thu, 21 Jun 2018 07:59:25 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L7xOiG042544; Thu, 21 Jun 2018 07:59:24 GMT (envelope-from decke@FreeBSD.org) Message-Id: <201806210759.w5L7xOiG042544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Thu, 21 Jun 2018 07:59:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472963 - head/net/wireguard X-SVN-Group: ports-head X-SVN-Commit-Author: decke X-SVN-Commit-Paths: head/net/wireguard X-SVN-Commit-Revision: 472963 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 07:59:25 -0000 Author: decke Date: Thu Jun 21 07:59:24 2018 New Revision: 472963 URL: https://svnweb.freebsd.org/changeset/ports/472963 Log: net/wireguard: Update to 0.0.20180620 Modified: head/net/wireguard/Makefile head/net/wireguard/distinfo Modified: head/net/wireguard/Makefile ============================================================================== --- head/net/wireguard/Makefile Thu Jun 21 07:59:02 2018 (r472962) +++ head/net/wireguard/Makefile Thu Jun 21 07:59:24 2018 (r472963) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= wireguard -PORTVERSION= 0.0.20180613 +PORTVERSION= 0.0.20180620 CATEGORIES= net MASTER_SITES= https://git.zx2c4.com/WireGuard/snapshot/ DISTNAME= WireGuard-${PORTVERSION} Modified: head/net/wireguard/distinfo ============================================================================== --- head/net/wireguard/distinfo Thu Jun 21 07:59:02 2018 (r472962) +++ head/net/wireguard/distinfo Thu Jun 21 07:59:24 2018 (r472963) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528918017 -SHA256 (WireGuard-0.0.20180613.tar.xz) = c120cdedc3967dcb4ad5c1c7eadd2a1b04ef5dbf2fe60cc8e7c0db337bcda7dc -SIZE (WireGuard-0.0.20180613.tar.xz) = 269316 +TIMESTAMP = 1529564658 +SHA256 (WireGuard-0.0.20180620.tar.xz) = b4db98ea751c8e667454f98ea1c15d704a784fe1bc093b03bd64575418a7c242 +SIZE (WireGuard-0.0.20180620.tar.xz) = 270920 From owner-svn-ports-head@freebsd.org Thu Jun 21 08:00:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 335C110135CA; Thu, 21 Jun 2018 08:00:25 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D973171F07; Thu, 21 Jun 2018 08:00:24 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BABCD6F8D; Thu, 21 Jun 2018 08:00:24 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L80O8A042747; Thu, 21 Jun 2018 08:00:24 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L80OGx042746; Thu, 21 Jun 2018 08:00:24 GMT (envelope-from decke@FreeBSD.org) Message-Id: <201806210800.w5L80OGx042746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Thu, 21 Jun 2018 08:00:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472964 - head/net/wireguard-go X-SVN-Group: ports-head X-SVN-Commit-Author: decke X-SVN-Commit-Paths: head/net/wireguard-go X-SVN-Commit-Revision: 472964 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 08:00:25 -0000 Author: decke Date: Thu Jun 21 08:00:24 2018 New Revision: 472964 URL: https://svnweb.freebsd.org/changeset/ports/472964 Log: net/wireguard-go: Document the script that is used to generate the vendor tarfile Modified: head/net/wireguard-go/Makefile Modified: head/net/wireguard-go/Makefile ============================================================================== --- head/net/wireguard-go/Makefile Thu Jun 21 07:59:24 2018 (r472963) +++ head/net/wireguard-go/Makefile Thu Jun 21 08:00:24 2018 (r472964) @@ -21,8 +21,7 @@ USES= gmake tar:xz PLIST_FILES= bin/${PORTNAME} -# To generate the vendor source tarball with all dependencies -genvendor: - (cd ${WRKDIR} ; ${TAR} cvfJ ${PORTNAME}-${PORTVERSION}-vendor.tar.xz ${PORTNAME}-${PORTVERSION}/vendor) +# The vendor tar file is generated with the script from +# https://people.freebsd.org/~decke/wireguard-go-genvendor.sh .include From owner-svn-ports-head@freebsd.org Thu Jun 21 08:23:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8EF21014C75; Thu, 21 Jun 2018 08:23:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B27972E61; Thu, 21 Jun 2018 08:23:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4C1817464; Thu, 21 Jun 2018 08:23:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L8NGa1057879; Thu, 21 Jun 2018 08:23:16 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L8NFFV057873; Thu, 21 Jun 2018 08:23:15 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806210823.w5L8NFFV057873@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 08:23:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472965 - in head/audio/ir-lv2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/audio/ir-lv2: . files X-SVN-Commit-Revision: 472965 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 08:23:17 -0000 Author: yuri Date: Thu Jun 21 08:23:15 2018 New Revision: 472965 URL: https://svnweb.freebsd.org/changeset/ports/472965 Log: audio/ir-lv2: Update 1.3.3.2 -> 1.3.3.8 Support for zita-convolver-4 (not yet committed). Modified: head/audio/ir-lv2/Makefile head/audio/ir-lv2/distinfo head/audio/ir-lv2/files/patch-Makefile head/audio/ir-lv2/pkg-descr Modified: head/audio/ir-lv2/Makefile ============================================================================== --- head/audio/ir-lv2/Makefile Thu Jun 21 08:00:24 2018 (r472964) +++ head/audio/ir-lv2/Makefile Thu Jun 21 08:23:15 2018 (r472965) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= ir -DISTVERSION= 1.3.3-2 -DISTVERSIONSUFFIX= -gb94bc67 +DISTVERSION= 1.3.3-8 +DISTVERSIONSUFFIX= -g0a36907 CATEGORIES= audio PKGNAMESUFFIX= -lv2 @@ -27,10 +27,9 @@ GH_ACCOUNT= tomszilagyi GH_PROJECT= ir.lv2 USE_GNOME= glib20 gtk20 gdkpixbuf2 cairo +MAKE_ENV= INSTDIR=${STAGEDIR}${PREFIX}/lib/lv2 + PLIST_FILES= lib/lv2/ir.lv2/ir.so lib/lv2/ir.lv2/ir.ttl \ lib/lv2/ir.lv2/ir_gui.so lib/lv2/ir.lv2/manifest.ttl - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/ir.lv2/*.so .include Modified: head/audio/ir-lv2/distinfo ============================================================================== --- head/audio/ir-lv2/distinfo Thu Jun 21 08:00:24 2018 (r472964) +++ head/audio/ir-lv2/distinfo Thu Jun 21 08:23:15 2018 (r472965) @@ -1,3 +1,5 @@ -TIMESTAMP = 1528565114 -SHA256 (tomszilagyi-ir.lv2-1.3.3-2-gb94bc67_GH0.tar.gz) = c6a5c907e74ad649af5a845ecf88bc9af285975ed8a712ec85dbd8187c6cbdd7 -SIZE (tomszilagyi-ir.lv2-1.3.3-2-gb94bc67_GH0.tar.gz) = 126424 +TIMESTAMP = 1529568477 +SHA256 (tomszilagyi-ir.lv2-1.3.3-8-g0a36907_GH0.tar.gz) = 707ab1577c8da41ccf0a92880552adec80e0d8b64daeff98eb49755e658921b5 +SIZE (tomszilagyi-ir.lv2-1.3.3-8-g0a36907_GH0.tar.gz) = 126563 +SHA256 (3c892744fce01661293a5e466d341d4f0e852f22.patch) = 5653babe7cca78f381d5969a268c0b3272b7a7e73cef5e66d47bb014c304fe6a +SIZE (3c892744fce01661293a5e466d341d4f0e852f22.patch) = 2468 Modified: head/audio/ir-lv2/files/patch-Makefile ============================================================================== --- head/audio/ir-lv2/files/patch-Makefile Thu Jun 21 08:00:24 2018 (r472964) +++ head/audio/ir-lv2/files/patch-Makefile Thu Jun 21 08:23:15 2018 (r472965) @@ -1,43 +1,11 @@ ---- Makefile.orig 2018-01-03 15:11:45 UTC +--- Makefile.orig 2018-06-21 08:16:45 UTC +++ Makefile -@@ -27,31 +27,31 @@ C4LIBS = -lsndfile `pkg-config --libs gt - all: ir.so ir_gui.so +@@ -58,7 +58,7 @@ ir.so: ir.o ir_utils.o + $(CXX) $(LDFLAGS) ir.o ir_utils.o $(LIBS) -shared -o ir.so - ir.o: ir.cc ir.h ir_utils.h -- g++ ir.cc $(CPPFLAGS) -c -fPIC -o ir.o -+ $(CXX) ir.cc $(CPPFLAGS) -c -fPIC -o ir.o - - ir_gui.o: ir_gui.cc ir.h ir_utils.h ir_wavedisplay.h -- g++ ir_gui.cc $(CPPFLAGS) -c -fPIC -o ir_gui.o -+ $(CXX) ir_gui.cc $(CPPFLAGS) -c -fPIC -o ir_gui.o - - ir_utils.o: ir_utils.cc ir_utils.h ir.h -- g++ ir_utils.cc $(CPPFLAGS) -c -fPIC -o ir_utils.o -+ $(CXX) ir_utils.cc $(CPPFLAGS) -c -fPIC -o ir_utils.o - - ir_meter.o: ir_meter.cc ir_meter.h ir.h ir_utils.h -- g++ ir_meter.cc $(CPPFLAGS) -c -fPIC -o ir_meter.o -+ $(CXX) ir_meter.cc $(CPPFLAGS) -c -fPIC -o ir_meter.o - - ir_modeind.o: ir_modeind.cc ir_modeind.h ir.h ir_utils.h -- g++ ir_modeind.cc $(CPPFLAGS) -c -fPIC -o ir_modeind.o -+ $(CXX) ir_modeind.cc $(CPPFLAGS) -c -fPIC -o ir_modeind.o - - ir_wavedisplay.o: ir_wavedisplay.cc ir_wavedisplay.h ir.h ir_utils.h -- g++ ir_wavedisplay.cc $(CPPFLAGS) -c -fPIC -o ir_wavedisplay.o -+ $(CXX) ir_wavedisplay.cc $(CPPFLAGS) -c -fPIC -o ir_wavedisplay.o - - ir.so: ir.o ir_utils.o -- g++ $(LDFLAGS) ir.o ir_utils.o $(LIBS) -shared -o ir.so -+ $(CXX) $(LDFLAGS) ir.o ir_utils.o $(LIBS) -shared -o ir.so - ir_gui.so: ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o -- g++ $(LDFLAGS) ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o $(LIBS) -shared -z nodelete -o ir_gui.so +- $(CXX) $(LDFLAGS) ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o $(LIBS) -shared -z nodelete -o ir_gui.so + $(CXX) $(LDFLAGS) ir_gui.o ir_utils.o ir_meter.o ir_modeind.o ir_wavedisplay.o $(LIBS) -shared -o ir_gui.so convert4chan: convert4chan.c -- gcc $(C4CFLAGS) $(CPPFLAGS) $(LDFLAGS) convert4chan.c $(C4LIBS) -o convert4chan -+ $(CC) $(C4CFLAGS) $(CPPFLAGS) $(LDFLAGS) convert4chan.c $(C4LIBS) -o convert4chan - - install: all - mkdir -p $(INSTDIR) + $(CC) $(C4CFLAGS) $(CPPFLAGS) $(LDFLAGS) convert4chan.c $(C4LIBS) -o convert4chan Modified: head/audio/ir-lv2/pkg-descr ============================================================================== --- head/audio/ir-lv2/pkg-descr Thu Jun 21 08:00:24 2018 (r472964) +++ head/audio/ir-lv2/pkg-descr Thu Jun 21 08:23:15 2018 (r472965) @@ -7,4 +7,4 @@ convolver especially for creating reverb effects. Supp responses with 1, 2 or 4 channels, in any soundfile format supported by libsndfile. -WWW: https://github.com/Anchakor/ir.lv2 +WWW: https://github.com/tomszilagyi/ir.lv2 From owner-svn-ports-head@freebsd.org Thu Jun 21 08:37:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9C4910159CA; Thu, 21 Jun 2018 08:37:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 796F27359F; Thu, 21 Jun 2018 08:37:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58503760E; Thu, 21 Jun 2018 08:37:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L8bHAi063323; Thu, 21 Jun 2018 08:37:17 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L8bHdA063322; Thu, 21 Jun 2018 08:37:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806210837.w5L8bHdA063322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 21 Jun 2018 08:37:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472966 - head/devel/llvm50 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/llvm50 X-SVN-Commit-Revision: 472966 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 08:37:18 -0000 Author: amdmi3 Date: Thu Jun 21 08:37:16 2018 New Revision: 472966 URL: https://svnweb.freebsd.org/changeset/ports/472966 Log: - Switch to new test framework Approved by: portmgr blanket Modified: head/devel/llvm50/Makefile Modified: head/devel/llvm50/Makefile ============================================================================== --- head/devel/llvm50/Makefile Thu Jun 21 08:23:15 2018 (r472965) +++ head/devel/llvm50/Makefile Thu Jun 21 08:37:16 2018 (r472966) @@ -458,7 +458,7 @@ post-install-LIT-on: ${STAGEDIR}${PREFIX}/bin/FileCheck${LLVM_SUFFIX} TEST_CMD= '(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} LD_LIBRARY_PATH=${WRKSRC}/Release/lib ${MAKE_CMD} check-local-lit)' -regression-test: ${BUILD_COOKIE} +do-test: if [ `${ID} -u` = 0 ]; then \ ${CHOWN} -R nobody ${WRKSRC}/test; \ su -m nobody -c ${TEST_CMD}; \ From owner-svn-ports-head@freebsd.org Thu Jun 21 09:07:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E05641016B56; Thu, 21 Jun 2018 09:07:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D03574440; Thu, 21 Jun 2018 09:07:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6A63F7AC9; Thu, 21 Jun 2018 09:07:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L97DZL078744; Thu, 21 Jun 2018 09:07:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L97D7G078742; Thu, 21 Jun 2018 09:07:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806210907.w5L97D7G078742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 21 Jun 2018 09:07:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472967 - head/x11-toolkits/libXmu X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/x11-toolkits/libXmu X-SVN-Commit-Revision: 472967 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 09:07:14 -0000 Author: amdmi3 Date: Thu Jun 21 09:07:12 2018 New Revision: 472967 URL: https://svnweb.freebsd.org/changeset/ports/472967 Log: - Add LICENSE - Update WWW Approved by: portmgr blanket Modified: head/x11-toolkits/libXmu/Makefile head/x11-toolkits/libXmu/pkg-descr Modified: head/x11-toolkits/libXmu/Makefile ============================================================================== --- head/x11-toolkits/libXmu/Makefile Thu Jun 21 08:37:16 2018 (r472966) +++ head/x11-toolkits/libXmu/Makefile Thu Jun 21 09:07:12 2018 (r472967) @@ -10,6 +10,9 @@ CATEGORIES= x11-toolkits MAINTAINER= x11@FreeBSD.org COMMENT= X Miscellaneous Utilities libraries +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + XORG_CAT= lib USE_XORG= xproto:both x11 xt xext Modified: head/x11-toolkits/libXmu/pkg-descr ============================================================================== --- head/x11-toolkits/libXmu/pkg-descr Thu Jun 21 08:37:16 2018 (r472966) +++ head/x11-toolkits/libXmu/pkg-descr Thu Jun 21 09:07:12 2018 (r472967) @@ -1,3 +1,3 @@ This package contains the X Miscellaneous Utilities libraries. -WWW: http://www.freedesktop.org/Software/xlibs +WWW: https://www.freedesktop.org/wiki/Software/xlibs/ From owner-svn-ports-head@freebsd.org Thu Jun 21 09:35:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B261D1017E08; Thu, 21 Jun 2018 09:35:05 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F6A47524B; Thu, 21 Jun 2018 09:35:05 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41A417FD0; Thu, 21 Jun 2018 09:35:05 +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 w5L9Z53s094395; Thu, 21 Jun 2018 09:35:05 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L9Z4Pf094386; Thu, 21 Jun 2018 09:35:04 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806210935.w5L9Z4Pf094386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 09:35:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472968 - in head/multimedia/din: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/multimedia/din: . files X-SVN-Commit-Revision: 472968 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 09:35:06 -0000 Author: pi Date: Thu Jun 21 09:35:04 2018 New Revision: 472968 URL: https://svnweb.freebsd.org/changeset/ports/472968 Log: multimedia/din: update 30 -> 35 - lots of changes since 30, see CHANGELOG of the tgz PR: 228859 Submitted by: santhosh.raju@gmail.com (maintainer) Added: head/multimedia/din/files/patch-src_main.cc (contents, props changed) Modified: head/multimedia/din/Makefile head/multimedia/din/distinfo head/multimedia/din/files/patch-src_Makefile.am head/multimedia/din/pkg-plist Modified: head/multimedia/din/Makefile ============================================================================== --- head/multimedia/din/Makefile Thu Jun 21 09:07:12 2018 (r472967) +++ head/multimedia/din/Makefile Thu Jun 21 09:35:04 2018 (r472968) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= din -PORTVERSION= 30 +PORTVERSION= 35 CATEGORIES= multimedia MASTER_SITES= https://archive.org/download/dinisnoise_source_code/ @@ -22,6 +22,8 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ USES= autoreconf tcl:86+ GNU_CONFIGURE= yes + +INSTALLS_ICONS= yes OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= JACK ALSA Modified: head/multimedia/din/distinfo ============================================================================== --- head/multimedia/din/distinfo Thu Jun 21 09:07:12 2018 (r472967) +++ head/multimedia/din/distinfo Thu Jun 21 09:35:04 2018 (r472968) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519839329 -SHA256 (din-30.tar.gz) = 85cc9b868e2bc5056cf1e868a37c706422c0d1d6d9a125018e14a8a9c2253070 -SIZE (din-30.tar.gz) = 3564787 +TIMESTAMP = 1528552909 +SHA256 (din-35.tar.gz) = bed84fa22c189336ddfbe3aca1b8a08f82c38dfac3627a5ef484a022e476d290 +SIZE (din-35.tar.gz) = 3613126 Modified: head/multimedia/din/files/patch-src_Makefile.am ============================================================================== --- head/multimedia/din/files/patch-src_Makefile.am Thu Jun 21 09:07:12 2018 (r472967) +++ head/multimedia/din/files/patch-src_Makefile.am Thu Jun 21 09:35:04 2018 (r472968) @@ -1,10 +1,10 @@ ---- src/Makefile.am.orig 2017-12-12 10:40:43 UTC +--- src/Makefile.am.orig 2018-05-14 07:19:48 UTC +++ src/Makefile.am @@ -1,5 +1,5 @@ --AM_CXXFLAGS = -I ../include -I /usr/include/tcl -Wall -D_GNU_SOURCE=1 -D_THREAD_SAFE -DHAVE_OPENGL -D__LICENSED__ -fpermissive +-AM_CXXFLAGS = -I ../include -I /usr/include/tcl -Wall -DGPL2=1 -D_THREAD_SAFE -DHAVE_OPENGL -D__LICENSED__ -DPREFIX=\"@prefix@\" -LIBS += -ltcl -lSDL -lGL -lpthread -lasound -ljack -+AM_CXXFLAGS = -I ../include -Wall -D_GNU_SOURCE=1 -D_THREAD_SAFE -DHAVE_OPENGL -D__LICENSED__ -fpermissive ++AM_CXXFLAGS = -I ../include -Wall -DGPL2=1 -D_THREAD_SAFE -DHAVE_OPENGL -D__LICENSED__ -DPREFIX=\"@prefix@\" +LIBS += -lSDL -lGL -lpthread -lasound -ljack AM_CFLAGS = -I ../include - + bin_PROGRAMS = din Added: head/multimedia/din/files/patch-src_main.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/din/files/patch-src_main.cc Thu Jun 21 09:35:04 2018 (r472968) @@ -0,0 +1,11 @@ +--- src/main.cc.orig 2018-06-10 01:20:01 UTC ++++ src/main.cc +@@ -73,7 +73,7 @@ extern const float TWO_PI = 2 * PI; + extern const float PI_BY_180 = PI / 180.; + extern const int MILLION = 1000000; + extern const char SPC = ' '; +-extern const string tokenizer::DEFAULT_DELIMITER (" "); ++const string tokenizer::DEFAULT_DELIMITER (" "); + float widget::R = 0.980392, widget::G = 0.792157, widget::B = 0.509804; // default color for all widgets + + // for attack, decay and deltas [see keyboard-keyboard.cc, mondrian.cc, triggered_note.cc] Modified: head/multimedia/din/pkg-plist ============================================================================== --- head/multimedia/din/pkg-plist Thu Jun 21 09:07:12 2018 (r472967) +++ head/multimedia/din/pkg-plist Thu Jun 21 09:35:04 2018 (r472968) @@ -1,4 +1,5 @@ bin/din +share/applications/din.desktop %%DATADIR%%/factory/2600 %%DATADIR%%/factory/2600.help.tcl %%DATADIR%%/factory/2600.patch.tcl @@ -9,7 +10,9 @@ bin/din %%DATADIR%%/factory/attack.ed %%DATADIR%%/factory/attack.lib %%DATADIR%%/factory/audio_prefs +%%DATADIR%%/factory/binaural-drone.help.tcl %%DATADIR%%/factory/binaural-drones.hlp +%%DATADIR%%/factory/binaural-drones.tcl %%DATADIR%%/factory/binaural_drones %%DATADIR%%/factory/blues %%DATADIR%%/factory/blues.drone @@ -432,7 +435,6 @@ bin/din %%DATADIR%%/factory/sine_levels %%DATADIR%%/factory/sine_mixer_sin.crv %%DATADIR%%/factory/sine_mixer_sin.ed -%%DATADIR%%/factory/sounder.tcl %%DATADIR%%/factory/sounding-board.osc %%DATADIR%%/factory/spiraler.scr %%DATADIR%%/factory/spiraler_cos.crv @@ -464,3 +466,5 @@ bin/din %%DATADIR%%/factory/window %%DATADIR%%/factory/word.crv %%DATADIR%%/factory/word_space.crv +share/icons/hicolor/scalable/apps/din.svg +share/pixmaps/din.png From owner-svn-ports-head@freebsd.org Thu Jun 21 09:37:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3622B1017FB2; Thu, 21 Jun 2018 09:37:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DD1947540E; Thu, 21 Jun 2018 09:37:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF15C7FDD; Thu, 21 Jun 2018 09:37:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5L9bDEK094607; Thu, 21 Jun 2018 09:37:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5L9bDpr094606; Thu, 21 Jun 2018 09:37:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806210937.w5L9bDpr094606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 21 Jun 2018 09:37:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472969 - head/graphics/zathura-cb X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/graphics/zathura-cb X-SVN-Commit-Revision: 472969 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 09:37:14 -0000 Author: amdmi3 Date: Thu Jun 21 09:37:13 2018 New Revision: 472969 URL: https://svnweb.freebsd.org/changeset/ports/472969 Log: - Update WWW - Cosmetic fixes Approved by: portmgr blanket Modified: head/graphics/zathura-cb/Makefile head/graphics/zathura-cb/pkg-descr Modified: head/graphics/zathura-cb/Makefile ============================================================================== --- head/graphics/zathura-cb/Makefile Thu Jun 21 09:35:04 2018 (r472968) +++ head/graphics/zathura-cb/Makefile Thu Jun 21 09:37:13 2018 (r472969) @@ -22,6 +22,6 @@ USES= compiler:c11 desktop-file-utils gmake pkgconfig USE_GNOME= glib20 gtk30 post-install: - ${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/zathura/cb.so + @${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/zathura/cb.so .include Modified: head/graphics/zathura-cb/pkg-descr ============================================================================== --- head/graphics/zathura-cb/pkg-descr Thu Jun 21 09:35:04 2018 (r472968) +++ head/graphics/zathura-cb/pkg-descr Thu Jun 21 09:37:13 2018 (r472969) @@ -1,3 +1,3 @@ The zathura-cb plugin adds comic book support to zathura. -WWW: http://pwmt.org/projects/zathura-cb/ +WWW: https://pwmt.org/projects/zathura-cb/ From owner-svn-ports-head@freebsd.org Thu Jun 21 11:06:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9604101AF65; Thu, 21 Jun 2018 11:06:12 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5ADDE77A1D; Thu, 21 Jun 2018 11:06:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 389EA10E50; Thu, 21 Jun 2018 11:06:12 +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 w5LB6CdD040679; Thu, 21 Jun 2018 11:06:12 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LB6A90040673; Thu, 21 Jun 2018 11:06:10 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806211106.w5LB6A90040673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 11:06:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472970 - in head/math: . cvc4 cvc4/files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/math: . cvc4 cvc4/files X-SVN-Commit-Revision: 472970 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 11:06:13 -0000 Author: pi Date: Thu Jun 21 11:06:10 2018 New Revision: 472970 URL: https://svnweb.freebsd.org/changeset/ports/472970 Log: New port: math/cvc4 An efficient open-source automatic theorem prover for satisfiability modulo theories (SMT) problems. It can be used to prove the validity (or, dually, the satisfiability) of first-order formulas in a large number of built-in logical theories and their combination. WWW: https://cvc4.cs.stanford.edu/web/ PR: 227702 Submitted by: Greg V Added: head/math/cvc4/ head/math/cvc4/Makefile (contents, props changed) head/math/cvc4/distinfo (contents, props changed) head/math/cvc4/files/ head/math/cvc4/files/patch-src_base_configuration.cpp (contents, props changed) head/math/cvc4/files/patch-src_main_portfolio.cpp (contents, props changed) head/math/cvc4/pkg-descr (contents, props changed) head/math/cvc4/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jun 21 09:37:13 2018 (r472969) +++ head/math/Makefile Thu Jun 21 11:06:10 2018 (r472970) @@ -166,6 +166,7 @@ SUBDIR += crlibm SUBDIR += cryptominisat SUBDIR += cvc3 + SUBDIR += cvc4 SUBDIR += diehard SUBDIR += dieharder SUBDIR += djbfft Added: head/math/cvc4/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cvc4/Makefile Thu Jun 21 11:06:10 2018 (r472970) @@ -0,0 +1,74 @@ +# $FreeBSD$ + +PORTNAME= cvc4 +PORTVERSION= 1.5 +CATEGORIES= math java +MASTER_SITES= https://cvc4.cs.stanford.edu/downloads/builds/src/ + +MAINTAINER= greg@unrelenting.technology +COMMENT= Automatic theorem prover for SMT (Satisfiability Modulo Theories) + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libantlr3c.so:devel/libantlr3c \ + libboost_system.so:devel/boost-libs +BUILD_DEPENDS= gexpr:sysutils/coreutils \ + bash:shells/bash \ + antlr3:devel/antlr3 + +USES= compiler:c++11-lang pkgconfig gmake libtool shebangfix localbase +USE_JAVA= yes +JAVA_BUILD= yes + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --disable-dependency-tracking \ + --with-swig=${LOCALBASE}/bin/swig3.0 \ + ANTLR=${LOCALBASE}/bin/antlr3 +CONFIGURE_SHELL= ${LOCALBASE}/bin/bash +USE_LDCONFIG= yes +SHEBANG_FILES= src/mk* src/theory/mk* src/base/mk* src/expr/mk* src/options/mk* test/regress/run_regression + +OPTIONS_DEFINE= JAVA READLINE DEBUG +OPTIONS_RADIO= NUMLIB +OPTIONS_RADIO_NUMLIB= GMP CLN +OPTIONS_DEFAULT= READLINE CLN +OPTIONS_SUB= yes + +GMP_DESC= Use GMP numeric library +CLN_DESC= Use CLN numeric library (disables portfolio mode) + +JAVA_CONFIGURE_ON= --enable-language-bindings=c,c++,java \ + JAVA_CPPFLAGS="-I${JAVA_HOME}/include -I${JAVA_HOME}/include/freebsd" \ + JAVAC=${JAVAC} JAVAH=${JAVAH} JAR=${JAR} +JAVA_CONFIGURE_OFF= --enable-language-bindings=c,c++ +JAVA_BUILD_DEPENDS= swig3.0:devel/swig30 + +READLINE_CONFIGURE_WITH= readline +READLINE_USES= readline + +GMP_CONFIGURE_WITH= gmp +GMP_CONFIGURE_ON= --with-portfolio +GMP_LIB_DEPENDS= libgmp.so:math/gmp \ + libboost_thread.so:devel/boost-libs +# note: CVC4 already depends on boost-libs, so portfolio mode is "free" in terms of pkg dependencies + +CLN_CONFIGURE_WITH= cln +CLN_LIB_DEPENDS= libcln.so:math/cln \ + libgmp.so:math/gmp + +DEBUG_CONFIGURE_ON= --with-build=debug +DEBUG_CONFIGURE_OFF= --with-build=production +DEBUG_INSTALL_TARGET_OFF= install-strip + +post-patch: + ${REINPLACE_CMD} -e 's|expr |gexpr |g' ${WRKSRC}/src/options/mkoptions + +.include + +.if ${PORT_OPTIONS:MREADLINE} || ${PORT_OPTIONS:MCLN} +LICENSE= GPLv3 +CONFIGURE_ARGS+= --enable-gpl +.endif + +.include Added: head/math/cvc4/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cvc4/distinfo Thu Jun 21 11:06:10 2018 (r472970) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524235369 +SHA256 (cvc4-1.5.tar.gz) = 5d6b4f8ee8420f85e3f804181341cedf6ea32342c48f355a5be87754152b14e9 +SIZE (cvc4-1.5.tar.gz) = 8059968 Added: head/math/cvc4/files/patch-src_base_configuration.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cvc4/files/patch-src_base_configuration.cpp Thu Jun 21 11:06:10 2018 (r472970) @@ -0,0 +1,11 @@ +--- src/base/configuration.cpp.orig 2018-04-22 17:53:43 UTC ++++ src/base/configuration.cpp +@@ -291,7 +291,7 @@ std::string Configuration::getCompiler() { + } + + std::string Configuration::getCompiledDateTime() { +- return __DATE__ " " __TIME__; ++ return "(timestamp removed for reproducible builds)"; + } + + }/* CVC4 namespace */ Added: head/math/cvc4/files/patch-src_main_portfolio.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cvc4/files/patch-src_main_portfolio.cpp Thu Jun 21 11:06:10 2018 (r472970) @@ -0,0 +1,24 @@ +--- src/main/portfolio.cpp.orig 2018-04-22 17:42:48 UTC ++++ src/main/portfolio.cpp +@@ -18,6 +18,9 @@ + #include + #include + #include ++#ifdef __FreeBSD__ ++#include ++#endif + + #include "base/output.h" + #include "options/options.h" +@@ -100,7 +103,11 @@ std::pair runPortfolio(int numThreads, + void *stackaddr; + size_t stacksize; + pthread_attr_t attr; ++#ifdef __linux__ + pthread_getattr_np(threads[t].native_handle(), &attr); ++#elif __FreeBSD__ ++ pthread_attr_get_np(threads[t].native_handle(), &attr); ++#endif + pthread_attr_getstack(&attr, &stackaddr, &stacksize); + Chat() << "Created worker thread " << t << " with stack size " << stacksize << std::endl; + } Added: head/math/cvc4/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cvc4/pkg-descr Thu Jun 21 11:06:10 2018 (r472970) @@ -0,0 +1,6 @@ +An efficient open-source automatic theorem prover for satisfiability modulo +theories (SMT) problems. It can be used to prove the validity (or, dually, the +satisfiability) of first-order formulas in a large number of built-in logical +theories and their combination. + +WWW: https://cvc4.cs.stanford.edu/web/ Added: head/math/cvc4/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/cvc4/pkg-plist Thu Jun 21 11:06:10 2018 (r472970) @@ -0,0 +1,130 @@ +bin/cvc4 +bin/lfsc-checker +%%GMP%%bin/pcvc4 +include/cvc4/base/configuration.h +include/cvc4/base/exception.h +include/cvc4/base/listener.h +include/cvc4/base/modal_exception.h +include/cvc4/base/ptr_closer.h +include/cvc4/base/tls.h +include/cvc4/bindings/compat/c/c_interface.h +include/cvc4/bindings/compat/c/c_interface_defs.h +include/cvc4/compat/cvc3_compat.h +include/cvc4/context/cdhashmap_forward.h +include/cvc4/context/cdhashset_forward.h +include/cvc4/context/cdinsert_hashmap_forward.h +include/cvc4/context/cdlist_forward.h +include/cvc4/context/cdtrail_hashmap_forward.h +include/cvc4/cvc4.h +include/cvc4/cvc4_private.h +include/cvc4/cvc4_private_library.h +include/cvc4/cvc4_public.h +include/cvc4/cvc4parser_private.h +include/cvc4/cvc4parser_public.h +include/cvc4/expr/array.h +include/cvc4/expr/array_store_all.h +include/cvc4/expr/ascription_type.h +include/cvc4/expr/chain.h +include/cvc4/expr/datatype.h +include/cvc4/expr/emptyset.h +include/cvc4/expr/expr.h +include/cvc4/expr/expr_iomanip.h +include/cvc4/expr/expr_manager.h +include/cvc4/expr/expr_manager_template.h +include/cvc4/expr/expr_stream.h +include/cvc4/expr/expr_template.h +include/cvc4/expr/kind.h +include/cvc4/expr/kind_template.h +include/cvc4/expr/pickler.h +include/cvc4/expr/predicate.h +include/cvc4/expr/record.h +include/cvc4/expr/symbol_table.h +include/cvc4/expr/type.h +include/cvc4/expr/uninterpreted_constant.h +include/cvc4/expr/variable_type_map.h +include/cvc4/options/argument_extender.h +include/cvc4/options/arith_heuristic_pivot_rule.h +include/cvc4/options/arith_propagation_mode.h +include/cvc4/options/arith_unate_lemma_mode.h +include/cvc4/options/language.h +include/cvc4/options/option_exception.h +include/cvc4/options/options.h +include/cvc4/options/printer_modes.h +include/cvc4/options/quantifiers_modes.h +include/cvc4/options/set_language.h +include/cvc4/options/simplification_mode.h +include/cvc4/options/theoryof_mode.h +include/cvc4/parser/input.h +include/cvc4/parser/parser.h +include/cvc4/parser/parser_builder.h +include/cvc4/parser/parser_exception.h +include/cvc4/proof/unsat_core.h +include/cvc4/smt/command.h +include/cvc4/smt/logic_exception.h +include/cvc4/smt/smt_engine.h +include/cvc4/smt_util/lemma_channels.h +include/cvc4/smt_util/lemma_input_channel.h +include/cvc4/smt_util/lemma_output_channel.h +include/cvc4/theory/logic_info.h +include/cvc4/theory/theory_test_utils.h +include/cvc4/util/abstract_value.h +include/cvc4/util/bitvector.h +include/cvc4/util/bool.h +include/cvc4/util/cardinality.h +include/cvc4/util/channel.h +include/cvc4/util/divisible.h +include/cvc4/util/floatingpoint.h +include/cvc4/util/gmp_util.h +include/cvc4/util/hash.h +include/cvc4/util/integer.h +include/cvc4/util/integer_cln_imp.h +include/cvc4/util/integer_gmp_imp.h +include/cvc4/util/proof.h +include/cvc4/util/rational.h +include/cvc4/util/rational_cln_imp.h +include/cvc4/util/rational_gmp_imp.h +include/cvc4/util/regexp.h +include/cvc4/util/resource_manager.h +include/cvc4/util/result.h +include/cvc4/util/sexpr.h +include/cvc4/util/statistics.h +include/cvc4/util/subrange_bound.h +include/cvc4/util/tuple.h +include/cvc4/util/unsafe_interrupt_exception.h +%%JAVA%%lib/jni/libcvc4compatjni.so +%%JAVA%%lib/jni/libcvc4compatjni.so.4 +%%JAVA%%lib/jni/libcvc4compatjni.so.4.0.0 +%%JAVA%%lib/jni/libcvc4jni.so +%%JAVA%%lib/jni/libcvc4jni.so.4 +%%JAVA%%lib/jni/libcvc4jni.so.4.0.0 +lib/libcvc4.so +lib/libcvc4.so.4 +lib/libcvc4.so.4.0.0 +lib/libcvc4bindings_c_compat.so +lib/libcvc4bindings_c_compat.so.4 +lib/libcvc4bindings_c_compat.so.4.0.0 +lib/libcvc4compat.so +lib/libcvc4compat.so.4 +lib/libcvc4compat.so.4.0.0 +lib/libcvc4parser.so +lib/libcvc4parser.so.4 +lib/libcvc4parser.so.4.0.0 +man/man1/cvc4.1.gz +%%GMP%%man/man1/pcvc4.1.gz +man/man3/SmtEngine.3cvc.gz +man/man3/libcvc4.3.gz +man/man3/libcvc4compat.3.gz +man/man3/libcvc4parser.3.gz +man/man3/options.3cvc.gz +man/man5/cvc4.5.gz +%%DATADIR%%/sat.plf +%%DATADIR%%/smt.plf +%%DATADIR%%/th_arrays.plf +%%DATADIR%%/th_base.plf +%%DATADIR%%/th_bv.plf +%%DATADIR%%/th_bv_bitblast.plf +%%DATADIR%%/th_bv_rewrites.plf +%%DATADIR%%/th_int.plf +%%DATADIR%%/th_real.plf +%%JAVA%%share/java/CVC4.jar +%%JAVA%%share/java/CVC4compat.jar From owner-svn-ports-head@freebsd.org Thu Jun 21 12:39:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6027101D91F; Thu, 21 Jun 2018 12:39:00 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 765CA7AD03; Thu, 21 Jun 2018 12:39:00 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4E19811CB7; Thu, 21 Jun 2018 12:39:00 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LCcxUe086125; Thu, 21 Jun 2018 12:38:59 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LCcxob086124; Thu, 21 Jun 2018 12:38:59 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201806211238.w5LCcxob086124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Thu, 21 Jun 2018 12:38:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472971 - in head/security/hitch: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zi X-SVN-Commit-Paths: in head/security/hitch: . files X-SVN-Commit-Revision: 472971 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 12:39:00 -0000 Author: zi Date: Thu Jun 21 12:38:59 2018 New Revision: 472971 URL: https://svnweb.freebsd.org/changeset/ports/472971 Log: - Fix alternate user support Modified: head/security/hitch/Makefile head/security/hitch/files/hitch.in Modified: head/security/hitch/Makefile ============================================================================== --- head/security/hitch/Makefile Thu Jun 21 11:06:10 2018 (r472970) +++ head/security/hitch/Makefile Thu Jun 21 12:38:59 2018 (r472971) @@ -3,6 +3,7 @@ PORTNAME= hitch PORTVERSION= 1.4.8 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://hitch-tls.org/source/ \ ZI Modified: head/security/hitch/files/hitch.in ============================================================================== --- head/security/hitch/files/hitch.in Thu Jun 21 11:06:10 2018 (r472970) +++ head/security/hitch/files/hitch.in Thu Jun 21 12:38:59 2018 (r472971) @@ -30,11 +30,11 @@ load_rc_config $name : ${hitch_enable="NO"} : ${hitch_config="%%PREFIX%%/etc/hitch.conf"} -: ${hitch_user:=nobody} -: ${hitch_group:=nobody} +: ${hitch_huser:=nobody} +: ${hitch_hgroup:=nobody} command="%%PREFIX%%/sbin/hitch" -command_args="--daemon -u ${hitch_user} -g ${hitch_group} -s --config=${hitch_config}" +command_args="--daemon -u ${hitch_huser} -g ${hitch_hgroup} -s --config=${hitch_config}" extra_commands=reload required_files=${hitch_config} From owner-svn-ports-head@freebsd.org Thu Jun 21 12:44:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 620C2101DD9A; Thu, 21 Jun 2018 12:44:11 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 12A877B2E0; Thu, 21 Jun 2018 12:44:11 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CDC7F11E45; Thu, 21 Jun 2018 12:44:10 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LCiAGe091073; Thu, 21 Jun 2018 12:44:10 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LCiAqt091072; Thu, 21 Jun 2018 12:44:10 GMT (envelope-from db@FreeBSD.org) Message-Id: <201806211244.w5LCiAqt091072@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Thu, 21 Jun 2018 12:44:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472972 - head/comms/gnuradio/files X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: head/comms/gnuradio/files X-SVN-Commit-Revision: 472972 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 12:44:11 -0000 Author: db Date: Thu Jun 21 12:44:10 2018 New Revision: 472972 URL: https://svnweb.freebsd.org/changeset/ports/472972 Log: Inadvertantly forgot to delete patch-boost-1.67 no longer needed Pointy Hat: me Deleted: head/comms/gnuradio/files/patch-boost-1.67 From owner-svn-ports-head@freebsd.org Thu Jun 21 12:54:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A893F101E30B; Thu, 21 Jun 2018 12:54:23 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 526107B7EC; Thu, 21 Jun 2018 12:54:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3071411FE8; Thu, 21 Jun 2018 12:54:23 +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 w5LCsNqV096419; Thu, 21 Jun 2018 12:54:23 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LCsLAo096413; Thu, 21 Jun 2018 12:54:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806211254.w5LCsLAo096413@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 12:54:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472973 - in head/devel: . libsml libsml/files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . libsml libsml/files X-SVN-Commit-Revision: 472973 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 12:54:23 -0000 Author: pi Date: Thu Jun 21 12:54:21 2018 New Revision: 472973 URL: https://svnweb.freebsd.org/changeset/ports/472973 Log: New port: devel/libsml libSML is a library which implements the Smart Message Language (SML) protocol specified by VDE's Forum Netztechnik/Netzbetrieb (FNN). It can be utilized to communicate to FNN specified Smart Meters or Smart Meter components (EDL/MUC). WWW: https://github.com/volkszaehler/libsml PR: 227367 Submitted by: Gerrit Beine Added: head/devel/libsml/ head/devel/libsml/Makefile (contents, props changed) head/devel/libsml/distinfo (contents, props changed) head/devel/libsml/files/ head/devel/libsml/files/patch-sml-Makefile (contents, props changed) head/devel/libsml/files/patch-test-unity-unity.c (contents, props changed) head/devel/libsml/pkg-descr (contents, props changed) head/devel/libsml/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 21 12:44:10 2018 (r472972) +++ head/devel/Makefile Thu Jun 21 12:54:21 2018 (r472973) @@ -1572,6 +1572,7 @@ SUBDIR += libsimdpp SUBDIR += libslang2 SUBDIR += libsmdev + SUBDIR += libsml SUBDIR += libsmpp34 SUBDIR += libsmraw SUBDIR += libsoup Added: head/devel/libsml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsml/Makefile Thu Jun 21 12:54:21 2018 (r472973) @@ -0,0 +1,31 @@ +# Created by: Gerrit Beine +# $FreeBSD$ + +PORTNAME= libsml +PORTVERSION= 0.1.1 +CATEGORIES= devel + +MAINTAINER= mail+freebsd@gerritbeine.de +COMMENT= Implementation in C of the Smart Message Language (SML) protocol + +LICENSE= GPLv3 + +LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid + +USES= dos2unix gmake +USE_LDCONFIG= yes +USE_GITHUB= yes +DOS2UNIX_FILES= test/unity/unity.c +GH_ACCOUNT= volkszaehler +GH_TAGNAME= 2a8445b + +ALL_TARGET= all +CFLAGS+= -I ${PREFIX}/include + +post-patch: + ${REINPLACE_CMD} -e "s|-luuid|-luuid -L ${PREFIX}/lib|" ${WRKSRC}/examples/Makefile + ${REINPLACE_CMD} -e "s|-luuid|-luuid -L ${PREFIX}/lib|" ${WRKSRC}/test/Makefile + ${REINPLACE_CMD} -e "s|prefix = /usr/local|prefix = ${STAGEDIR}${PREFIX}|" ${WRKSRC}/examples/Makefile + ${REINPLACE_CMD} -e "s|prefix = /usr/local|prefix = ${STAGEDIR}${PREFIX}|" ${WRKSRC}/sml/Makefile + +.include Added: head/devel/libsml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsml/distinfo Thu Jun 21 12:54:21 2018 (r472973) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520165866 +SHA256 (volkszaehler-libsml-0.1.1-2a8445b_GH0.tar.gz) = e9342a0e2b86a2e79d40fe8e6743a574e7d7a83034399f34044d3bbd3870f70f +SIZE (volkszaehler-libsml-0.1.1-2a8445b_GH0.tar.gz) = 106002 Added: head/devel/libsml/files/patch-sml-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsml/files/patch-sml-Makefile Thu Jun 21 12:54:21 2018 (r472973) @@ -0,0 +1,13 @@ +--- sml/Makefile.orig 2018-01-25 17:04:21 UTC ++++ sml/Makefile +@@ -4,10 +4,6 @@ CFLAGS += -I./include/ -fPIC -fno-stack-protector -g - + # Available Flags: + # SML_NO_UUID_LIB - compile without uuid lib + +-ifneq ($(UNAME), Darwin) +-LIBS=-luuid +-endif +- + NAME=libsml + SOVERSION=1 + ifeq ($(UNAME), Darwin) Added: head/devel/libsml/files/patch-test-unity-unity.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsml/files/patch-test-unity-unity.c Thu Jun 21 12:54:21 2018 (r472973) @@ -0,0 +1,13 @@ +--- test/unity/unity.c.orig 2018-01-25 17:04:21 UTC ++++ test/unity/unity.c +@@ -19,9 +19,7 @@ + #ifdef __APPLE__ + struct _Unity Unity = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , { 0 } }; + #else +-struct _Unity Unity = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , +- .AbortFrame = { {.__jmpbuf = {0}, .__mask_was_saved = 0, .__saved_mask = {{0}} } } +-}; ++struct _Unity Unity = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , { 0 } }; + #endif + + const char* UnityStrNull = "NULL"; Added: head/devel/libsml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsml/pkg-descr Thu Jun 21 12:54:21 2018 (r472973) @@ -0,0 +1,6 @@ +libSML is a library which implements the Smart Message Language +(SML) protocol specified by VDE's Forum Netztechnik/Netzbetrieb +(FNN). It can be utilized to communicate to FNN specified Smart +Meters or Smart Meter components (EDL/MUC). + +WWW: https://github.com/volkszaehler/libsml Added: head/devel/libsml/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libsml/pkg-plist Thu Jun 21 12:54:21 2018 (r472973) @@ -0,0 +1,31 @@ +bin/sml_server +lib/libsml.a +lib/libsml.so +lib/libsml.so.1 +include/sml/sml_attention_response.h +include/sml/sml_boolean.h +include/sml/sml_close_request.h +include/sml/sml_close_response.h +include/sml/sml_crc16.h +include/sml/sml_file.h +include/sml/sml_get_list_request.h +include/sml/sml_get_list_response.h +include/sml/sml_get_proc_parameter_request.h +include/sml/sml_get_proc_parameter_response.h +include/sml/sml_get_profile_list_request.h +include/sml/sml_get_profile_list_response.h +include/sml/sml_get_profile_pack_request.h +include/sml/sml_get_profile_pack_response.h +include/sml/sml_list.h +include/sml/sml_message.h +include/sml/sml_number.h +include/sml/sml_octet_string.h +include/sml/sml_open_request.h +include/sml/sml_open_response.h +include/sml/sml_set_proc_parameter_request.h +include/sml/sml_shared.h +include/sml/sml_status.h +include/sml/sml_time.h +include/sml/sml_transport.h +include/sml/sml_tree.h +include/sml/sml_value.h From owner-svn-ports-head@freebsd.org Thu Jun 21 13:49:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80BF6101F6D8; Thu, 21 Jun 2018 13:49:36 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24CA87D2D9; Thu, 21 Jun 2018 13:49:36 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 01ED2127F3; Thu, 21 Jun 2018 13:49:36 +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 w5LDnZ82022153; Thu, 21 Jun 2018 13:49:35 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LDnZBb022150; Thu, 21 Jun 2018 13:49:35 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201806211349.w5LDnZBb022150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 21 Jun 2018 13:49:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472974 - in head/dns/inadyn-mt: . files X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/dns/inadyn-mt: . files X-SVN-Commit-Revision: 472974 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 13:49:36 -0000 Author: wg Date: Thu Jun 21 13:49:35 2018 New Revision: 472974 URL: https://svnweb.freebsd.org/changeset/ports/472974 Log: dns/inadyn-mt: update to 02.28.10 - Release maintainership PR: 225021 Submitted by: Matt Modified: head/dns/inadyn-mt/Makefile head/dns/inadyn-mt/distinfo head/dns/inadyn-mt/files/patch-readme.html Modified: head/dns/inadyn-mt/Makefile ============================================================================== --- head/dns/inadyn-mt/Makefile Thu Jun 21 12:54:21 2018 (r472973) +++ head/dns/inadyn-mt/Makefile Thu Jun 21 13:49:35 2018 (r472974) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= inadyn-mt -PORTVERSION= 02.24.47 +PORTVERSION= 02.28.10 CATEGORIES= dns MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}.v.${PORTVERSION}/ DISTNAME= ${PORTNAME}.v.${PORTVERSION} -MAINTAINER= wg@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Simple dynamic dns client LICENSE= GPLv3 Modified: head/dns/inadyn-mt/distinfo ============================================================================== --- head/dns/inadyn-mt/distinfo Thu Jun 21 12:54:21 2018 (r472973) +++ head/dns/inadyn-mt/distinfo Thu Jun 21 13:49:35 2018 (r472974) @@ -1,2 +1,3 @@ -SHA256 (inadyn-mt.v.02.24.47.tar.gz) = e1e8c48b8f08b9eb074a6600273f9c93e7483b52ce85f81ada4aef3363af2de4 -SIZE (inadyn-mt.v.02.24.47.tar.gz) = 1108823 +TIMESTAMP = 1529591220 +SHA256 (inadyn-mt.v.02.28.10.tar.gz) = f69bea12d96b66f9f662a8df0730c60457b24f5fb5308b109936880ebf7be5ca +SIZE (inadyn-mt.v.02.28.10.tar.gz) = 1246185 Modified: head/dns/inadyn-mt/files/patch-readme.html ============================================================================== --- head/dns/inadyn-mt/files/patch-readme.html Thu Jun 21 12:54:21 2018 (r472973) +++ head/dns/inadyn-mt/files/patch-readme.html Thu Jun 21 13:49:35 2018 (r472974) @@ -1,6 +1,6 @@ ---- readme.html.orig 2015-09-25 12:54:00 UTC -+++ readme.html -@@ -284,7 +284,7 @@ update request, i.e., both ip address ty +--- readme.html.orig 2016-10-11 02:42:06.000000000 -0700 ++++ readme.html 2018-01-08 07:34:41.772830000 -0800 +@@ -306,7 +306,7 @@

'-x [-n <service name>]': remove service

@@ -9,7 +9,7 @@ used if inadyn-mt is called without any command line options. This allows inadyn-mt to be called without any arguments. The format is as expected for a **NIX config  file. See below for details.

'--ip_server_name <name>[:port] <url>': The client -@@ -368,7 +368,7 @@ DEFAULT value is intended for default se +@@ -400,7 +400,7 @@ '--retry_pending': retry ip update even after network comm retries exhausted, default on.

'--retry_pending_interval <#>': network comm seconds update retry interval, after retries exhausted, 5 to 3600,
    default 300.

'--lang_file <path/file>': [language file path, and file name]. defaults to either ../inadyn-mt/lang/en.lng,
@@ -18,10 +18,10 @@ '--online_check_url <srv_name[:port] url>': server name, optional port, and url to reach to confirm online status.

'--status_interval <#>': seconds [30..864000] interval at which to check online status, default 600.

'--alert_retries <#>': network retries before audible network status alerts. [0..100], default 0.

-@@ -388,8 +388,8 @@ DEFAULT value is intended for default se -     representing custom DDNS server non-fatal update failure return values, e.g., "dnserr,911,unknown error".

- '--svr_ip_param <custom DDNS server ip name parameter>': Optional for custom DDNS updates. DDNS url parameter for ip address,
    e.g., myip.

+@@ -422,8 +422,8 @@ '--svr_ip_in_rsp': Optional for custom DDNS updates. Flag that custom DDNS server returns your ip address on update success.
    Defaults to false.

+ '--svr_auto_dual': Flag that server defaults to dual list (coupled) alias ip type. Defaults to false.

+ '--svr_auto_detect': Flag server auto detects ip. Defaults to false.

-'--svr_add_cfg <full path, file name>': Additional servers file. Default search for servers_additional.cfg in ./extra, /etc, /etc/inadyn-mt,
     -/etc/inadyn-mt/extra. Contains additional preconfigured DDNS servers to be used as --dyndns_system option parameter in same
     +'--svr_add_cfg <full path, file name>': Additional servers file. Default search for servers_additional.cfg in ./extra, %%PREFIX%%/etc, %%PREFIX%%/etc/inadyn-mt,
     @@ -29,7 +29,7 @@ fashion as servers inadyn-mt supports natively. Should appear before any dyndns_system option in inadyn-mt.conf or command
     line if not using inadyn-mt.conf.

'--if <network interface name>': Name of network interface to use for ip server, and DDNS server comm. Defaults to
    system configured default.

-@@ -412,7 +412,7 @@ There are two cache files: inadyn_time.c +@@ -449,7 +449,7 @@ 3. Update freedns.afraid.org, every minute, in daemon mode, with configuration read from file.

@@ -38,7 +38,7 @@ Content of config file:

-@@ -421,7 +421,7 @@ There are two cache files: inadyn_time.c +@@ -458,7 +458,7 @@ --log_file /var/log/inadyn.log
--change_persona 10012 #to change to another user id after init.

@@ -47,7 +47,7 @@ 4. Freedns update in console

-@@ -434,7 +434,7 @@ inadyn-mt can read the very same options +@@ -471,7 +471,7 @@ command line from a configuration file. This feature allows the user to write the options only once, and avoids frequent retyping.

@@ -56,7 +56,7 @@ The location of the config file can be given to inadyn-mt via --input_file option

The format :

-@@ -871,7 +871,7 @@ Ver.  inadyn-mt 2.18.28 - June 2010 +@@ -971,7 +971,7 @@ Ver.  inadyn-mt 2.18.26 - June 2010
       Changes:
       - inadyn man files updated to inadyn-mt
@@ -65,7 +65,7 @@        - added debian dpkg-buildpackage directory, et al
       - moved *nix meta files to /usr/share

-@@ -881,7 +881,7 @@ Ver.  inadyn-mt 2.18.24 - May 2010< +@@ -981,7 +981,7 @@ Ver.  inadyn-mt 2.18.22 - May 2010
       Changes:
@@ -74,7 +74,7 @@        - too many params compiler warning fixed

Ver.  inadyn-mt 2.18.20 - May 2010
-@@ -1178,8 +1178,8 @@ Ver.  inadyn-mt 2.12.02 - May 2008< +@@ -1278,8 +1278,8 @@ inadyn-mt
       - updated inadyn-mt man files' original inadyn homepage to http://www.inatech.eu/inadyn/
From owner-svn-ports-head@freebsd.org Thu Jun 21 14:57:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4753010213FA; Thu, 21 Jun 2018 14:57:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EC9EE8031C; Thu, 21 Jun 2018 14:57:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD7EF133AC; Thu, 21 Jun 2018 14:57:00 +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 w5LEv09j057783; Thu, 21 Jun 2018 14:57:00 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LEv0ld057782; Thu, 21 Jun 2018 14:57:00 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806211457.w5LEv0ld057782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 21 Jun 2018 14:57:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472975 - head/security/p5-Dancer2-Plugin-Auth-Extensible X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/security/p5-Dancer2-Plugin-Auth-Extensible X-SVN-Commit-Revision: 472975 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 14:57:01 -0000 Author: mat Date: Thu Jun 21 14:57:00 2018 New Revision: 472975 URL: https://svnweb.freebsd.org/changeset/ports/472975 Log: Fix build. Sponsored by: Absolight Modified: head/security/p5-Dancer2-Plugin-Auth-Extensible/Makefile (contents, props changed) Modified: head/security/p5-Dancer2-Plugin-Auth-Extensible/Makefile ============================================================================== --- head/security/p5-Dancer2-Plugin-Auth-Extensible/Makefile Thu Jun 21 13:49:35 2018 (r472974) +++ head/security/p5-Dancer2-Plugin-Auth-Extensible/Makefile Thu Jun 21 14:57:00 2018 (r472975) @@ -15,6 +15,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Crypt-SaltedHash>0:security/p5-Crypt-SaltedHash \ p5-Session-Token>0:security/p5-Session-Token \ + p5-File-ShareDir-Install>0:devel/p5-File-ShareDir-Install \ p5-Dancer2>=0.204001:www/p5-Dancer2 RUN_DEPENDS:= ${BUILD_DEPENDS} \ p5-File-Share>0:devel/p5-File-Share From owner-svn-ports-head@freebsd.org Thu Jun 21 15:29:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF44F1021E1A; Thu, 21 Jun 2018 15:29:01 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B501814F2; Thu, 21 Jun 2018 15:29:01 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68B7C1389C; Thu, 21 Jun 2018 15:29:01 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LFT1qD073615; Thu, 21 Jun 2018 15:29:01 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LFSxeB073603; Thu, 21 Jun 2018 15:28:59 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806211528.w5LFSxeB073603@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 21 Jun 2018 15:28:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472976 - in head: graphics graphics/rubygem-gemojione32 textproc textproc/rubygem-github-markup16 www www/rubygem-gitlab-gollum-rugged_adapter www/rubygem-gollum-grit_adapter10 X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head: graphics graphics/rubygem-gemojione32 textproc textproc/rubygem-github-markup16 www www/rubygem-gitlab-gollum-rugged_adapter www/rubygem-gollum-grit_adapter10 X-SVN-Commit-Revision: 472976 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 15:29:02 -0000 Author: mfechner Date: Thu Jun 21 15:28:59 2018 New Revision: 472976 URL: https://svnweb.freebsd.org/changeset/ports/472976 Log: New ports required for gitlab 10.8.x. Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15945 Added: head/graphics/rubygem-gemojione32/ - copied from r427888, head/graphics/rubygem-gemojione/ head/textproc/rubygem-github-markup16/ - copied from r456010, head/textproc/rubygem-github-markup/ head/www/rubygem-gitlab-gollum-rugged_adapter/ - copied from r441105, head/www/rubygem-gollum-rugged_adapter/ head/www/rubygem-gollum-grit_adapter10/ - copied from r414136, head/www/rubygem-gollum-grit_adapter/ Modified: head/graphics/Makefile head/graphics/rubygem-gemojione32/Makefile head/textproc/Makefile head/textproc/rubygem-github-markup16/Makefile head/www/Makefile head/www/rubygem-gitlab-gollum-rugged_adapter/Makefile head/www/rubygem-gitlab-gollum-rugged_adapter/distinfo head/www/rubygem-gitlab-gollum-rugged_adapter/pkg-descr head/www/rubygem-gollum-grit_adapter10/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Jun 21 14:57:00 2018 (r472975) +++ head/graphics/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -1004,6 +1004,7 @@ SUBDIR += rubygem-gd2 SUBDIR += rubygem-gdk_pixbuf2 SUBDIR += rubygem-gemojione + SUBDIR += rubygem-gemojione32 SUBDIR += rubygem-geokit SUBDIR += rubygem-gitlab_emoji SUBDIR += rubygem-goocanvas Modified: head/graphics/rubygem-gemojione32/Makefile ============================================================================== --- head/graphics/rubygem-gemojione/Makefile Mon Dec 5 13:39:46 2016 (r427888) +++ head/graphics/rubygem-gemojione32/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -4,8 +4,9 @@ PORTNAME= gemojione PORTVERSION= 3.2.0 CATEGORIES= graphics rubygems MASTER_SITES= RG +PKGNAMESUFFIX= 32 -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Gem containing EmojiOne unicode/image assets LICENSE= MIT @@ -13,8 +14,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +PORTSCOUT= limit:^3\.2\. .include Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Jun 21 14:57:00 2018 (r472975) +++ head/textproc/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -1522,6 +1522,7 @@ SUBDIR += rubygem-github-linguist SUBDIR += rubygem-github-linguist53 SUBDIR += rubygem-github-markup + SUBDIR += rubygem-github-markup16 SUBDIR += rubygem-gitlab-grit SUBDIR += rubygem-gitlab-linguist SUBDIR += rubygem-gitlab-markup Modified: head/textproc/rubygem-github-markup16/Makefile ============================================================================== --- head/textproc/rubygem-github-markup/Makefile Mon Dec 11 10:44:18 2017 (r456010) +++ head/textproc/rubygem-github-markup16/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -4,22 +4,29 @@ PORTNAME= github-markup PORTVERSION= 1.6.2 CATEGORIES= textproc rubygems MASTER_SITES= RG +PKGNAMESUFFIX= 16 -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Render any fancy markup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -NO_ARCH= yes -USE_RUBY= yes +CONFLICTS_INSTALL= textproc/rubygem-github-markup + USES= gem shebangfix +USE_RUBY= yes + +NO_ARCH= yes + REINPLACE_ARGS= -i '' PLIST_FILES= bin/github-markup SHEBANG_FILES= script/bootstrap \ script/cibuild + +PORTSCOUT= limit:^1\.6\. post-patch: @${REINPLACE_CMD} -e '1d' ${WRKSRC}/lib/github/commands/rest2html Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Jun 21 14:57:00 2018 (r472975) +++ head/www/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -2013,11 +2013,13 @@ SUBDIR += rubygem-geminabox SUBDIR += rubygem-gitlab-flowdock-git-hook SUBDIR += rubygem-gitlab-gollum-lib + SUBDIR += rubygem-gitlab-gollum-rugged_adapter SUBDIR += rubygem-gitlab-grack SUBDIR += rubygem-gitlab-turbolinks-classic SUBDIR += rubygem-goldfinger SUBDIR += rubygem-gollum SUBDIR += rubygem-gollum-grit_adapter + SUBDIR += rubygem-gollum-grit_adapter10 SUBDIR += rubygem-gollum-lib SUBDIR += rubygem-gollum-lib-gitlab SUBDIR += rubygem-gollum-rugged_adapter Modified: head/www/rubygem-gitlab-gollum-rugged_adapter/Makefile ============================================================================== --- head/www/rubygem-gollum-rugged_adapter/Makefile Wed May 17 17:16:31 2017 (r441105) +++ head/www/rubygem-gitlab-gollum-rugged_adapter/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -1,12 +1,11 @@ -# Created by: Torsten Zuehlsdorff # $FreeBSD$ -PORTNAME= gollum-rugged_adapter -PORTVERSION= 0.4.4 +PORTNAME= gitlab-gollum-rugged_adapter +PORTVERSION= 0.4.4.1 CATEGORIES= www rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Adapter for Gollum to use Rugged (libgit2) at the backend LICENSE= MIT @@ -15,8 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mime-types>=1.15:misc/rubygem-mime-types \ rubygem-rugged>=0.25:devel/rubygem-rugged -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include Modified: head/www/rubygem-gitlab-gollum-rugged_adapter/distinfo ============================================================================== --- head/www/rubygem-gollum-rugged_adapter/distinfo Wed May 17 17:16:31 2017 (r441105) +++ head/www/rubygem-gitlab-gollum-rugged_adapter/distinfo Thu Jun 21 15:28:59 2018 (r472976) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495034465 -SHA256 (rubygem/gollum-rugged_adapter-0.4.4.gem) = 644388dd8838beb382d3779af413f32776f2308c464b75a4a2d91573a7aa0e4e -SIZE (rubygem/gollum-rugged_adapter-0.4.4.gem) = 13312 +TIMESTAMP = 1529480887 +SHA256 (rubygem/gitlab-gollum-rugged_adapter-0.4.4.1.gem) = 71f1e1129b6231e58c8896efdcdd6b008595e2cebed000c3848fb439a6005124 +SIZE (rubygem/gitlab-gollum-rugged_adapter-0.4.4.1.gem) = 13312 Modified: head/www/rubygem-gitlab-gollum-rugged_adapter/pkg-descr ============================================================================== --- head/www/rubygem-gollum-rugged_adapter/pkg-descr Wed May 17 17:16:31 2017 (r441105) +++ head/www/rubygem-gitlab-gollum-rugged_adapter/pkg-descr Thu Jun 21 15:28:59 2018 (r472976) @@ -1,3 +1,3 @@ Adapter for Gollum to use Rugged (libgit2) at the backend. -WWW: https://github.com/gollum/rugged_adapter +WWW: https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter Modified: head/www/rubygem-gollum-grit_adapter10/Makefile ============================================================================== --- head/www/rubygem-gollum-grit_adapter/Makefile Wed Apr 27 21:57:31 2016 (r414136) +++ head/www/rubygem-gollum-grit_adapter10/Makefile Thu Jun 21 15:28:59 2018 (r472976) @@ -1,20 +1,23 @@ -# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= gollum-grit_adapter PORTVERSION= 1.0.1 CATEGORIES= www rubygems MASTER_SITES= RG +PKGNAMESUFFIX= 10 -MAINTAINER= sunpoet@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Adapter for Gollum to use Grit at the backend LICENSE= MIT RUN_DEPENDS= rubygem-gitlab-grit>=2.7.1:textproc/rubygem-gitlab-grit -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +PORTSCOUNT= limit:^1\.0\. .include From owner-svn-ports-head@freebsd.org Thu Jun 21 15:32:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A97A1021FBD; Thu, 21 Jun 2018 15:32:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B7CA8170D; Thu, 21 Jun 2018 15:32:02 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0C1613A05; Thu, 21 Jun 2018 15:32:01 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LFW1IY076805; Thu, 21 Jun 2018 15:32:01 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LFW1nA076802; Thu, 21 Jun 2018 15:32:01 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806211532.w5LFW1nA076802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 21 Jun 2018 15:32:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472977 - in head/devel/gitaly: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/devel/gitaly: . files X-SVN-Commit-Revision: 472977 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 15:32:02 -0000 Author: mfechner Date: Thu Jun 21 15:32:00 2018 New Revision: 472977 URL: https://svnweb.freebsd.org/changeset/ports/472977 Log: Update gitaly to 0.100.0 required for gitlab 10.8. Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15947 Modified: head/devel/gitaly/Makefile head/devel/gitaly/distinfo head/devel/gitaly/files/patch-ruby_Gemfile head/devel/gitaly/pkg-plist Modified: head/devel/gitaly/Makefile ============================================================================== --- head/devel/gitaly/Makefile Thu Jun 21 15:28:59 2018 (r472976) +++ head/devel/gitaly/Makefile Thu Jun 21 15:32:00 2018 (r472977) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gitaly -DISTVERSION= 0.96.1 -PORTREVISION= 4 +DISTVERSION= 0.100.0 CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org @@ -13,18 +12,18 @@ LICENSE_FILE= ${WRKSRC}/LICENSE # define dependencies that are required for build and run under MY_DEPENDS MY_DEPENDS= git>=2.16.2:devel/git \ - rubygem-rugged>=0.27.0:devel/rubygem-rugged \ + rubygem-rugged>=0.27.1:devel/rubygem-rugged \ rubygem-github-linguist53>=5.3.3:textproc/rubygem-github-linguist53 \ rubygem-bundler>0:sysutils/rubygem-bundler \ rubygem-gitlab-markup>=1.6.2:textproc/rubygem-gitlab-markup \ - rubygem-gitaly-proto095>=0.95.0:net/rubygem-gitaly-proto095 \ + rubygem-gitaly-proto099>=0.99.0:net/rubygem-gitaly-proto099 \ rubygem-activesupport50>=5.0.2:devel/rubygem-activesupport50 \ rubygem-rdoc>=4.2:devel/rubygem-rdoc \ - rubygem-gollum-lib-gitlab>=4.2:www/rubygem-gollum-lib-gitlab \ - rubygem-gollum-rugged_adapter>=0.4.4:www/rubygem-gollum-rugged_adapter \ - rubygem-grpc>=1.10.0:net/rubygem-grpc \ + rubygem-gitlab-gollum-lib>=4.2:www/rubygem-gitlab-gollum-lib \ + rubygem-gitlab-gollum-rugged_adapter>=0.4.4:www/rubygem-gitlab-gollum-rugged_adapter \ + rubygem-grpc>=1.11.0:net/rubygem-grpc \ rubygem-sentry-raven>=2.7.2:devel/rubygem-sentry-raven \ - rubygem-licensee8>=8.7.0:devel/rubygem-licensee8 \ + rubygem-licensee8>=8.9.0:devel/rubygem-licensee8 \ rubygem-google-protobuf351>=3.5.1:devel/rubygem-google-protobuf351 BUILD_DEPENDS= go>=1.8:lang/go \ @@ -40,7 +39,7 @@ USE_RUBY= yes USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find this here: https://gitlab.com/gitlab-org/gitaly/tags -GL_COMMIT= d779c028099f79360209b92473c201e07721b885 +GL_COMMIT= 15606d3061414479453534814d32132bd9411617 post-patch: ${MV} ${WRKSRC}/config.toml.example ${WRKSRC}/config.toml.sample Modified: head/devel/gitaly/distinfo ============================================================================== --- head/devel/gitaly/distinfo Thu Jun 21 15:28:59 2018 (r472976) +++ head/devel/gitaly/distinfo Thu Jun 21 15:32:00 2018 (r472977) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524579302 -SHA256 (gitlab-org-gitaly-d779c028099f79360209b92473c201e07721b885_GL0.tar.gz) = 8344bfff658433002444d756c3552b57ce7861b614efc2f3db42be68dd4aa4b5 -SIZE (gitlab-org-gitaly-d779c028099f79360209b92473c201e07721b885_GL0.tar.gz) = 3620431 +TIMESTAMP = 1529482774 +SHA256 (gitlab-org-gitaly-15606d3061414479453534814d32132bd9411617_GL0.tar.gz) = d93fd3c3481f65c918e2d8ebeeb0108ba68a9ce2106956799d24e862f77b0ba8 +SIZE (gitlab-org-gitaly-15606d3061414479453534814d32132bd9411617_GL0.tar.gz) = 4126919 Modified: head/devel/gitaly/files/patch-ruby_Gemfile ============================================================================== --- head/devel/gitaly/files/patch-ruby_Gemfile Thu Jun 21 15:28:59 2018 (r472976) +++ head/devel/gitaly/files/patch-ruby_Gemfile Thu Jun 21 15:32:00 2018 (r472977) @@ -1,18 +1,15 @@ ---- ruby/Gemfile.orig 2018-04-12 00:44:37 UTC +--- ruby/Gemfile.orig 2018-06-20 08:20:28 UTC +++ ruby/Gemfile -@@ -8,17 +8,13 @@ gem 'activesupport', '~> 5.0.2' +@@ -8,7 +8,7 @@ gem 'activesupport', '~> 5.0.2' gem 'rdoc', '~> 4.2' - gem 'gollum-lib', '~> 4.2', require: false - gem 'gollum-rugged_adapter', '~> 0.4.4', require: false + gem 'gitlab-gollum-lib', '~> 4.2', require: false + gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4', require: false -gem 'grpc', '~> 1.10.0' +gem 'grpc', '~> 1.11.0' gem 'sentry-raven', '~> 2.7.2', require: false # Detects the open source license the repository includes - # This version needs to be in sync with GitLab CE/EE --gem 'licensee', '~> 8.7.0' -+gem 'licensee', '~> 8.9' - +@@ -18,7 +18,3 @@ gem 'licensee', '~> 8.9.0' # Locked until https://github.com/google/protobuf/issues/4210 is closed gem 'google-protobuf', '= 3.5.1' Modified: head/devel/gitaly/pkg-plist ============================================================================== --- head/devel/gitaly/pkg-plist Thu Jun 21 15:28:59 2018 (r472976) +++ head/devel/gitaly/pkg-plist Thu Jun 21 15:32:00 2018 (r472977) @@ -9,6 +9,7 @@ %%DATADIR%%/ruby/lib/gitaly_server/conflicts_service.rb %%DATADIR%%/ruby/lib/gitaly_server/diff_service.rb %%DATADIR%%/ruby/lib/gitaly_server/exception_sanitizer_interceptor.rb +%%DATADIR%%/ruby/lib/gitaly_server/health_service.rb %%DATADIR%%/ruby/lib/gitaly_server/operations_service.rb %%DATADIR%%/ruby/lib/gitaly_server/ref_service.rb %%DATADIR%%/ruby/lib/gitaly_server/remote_service.rb @@ -20,6 +21,8 @@ %%DATADIR%%/ruby/lib/gitlab/config.rb %%DATADIR%%/ruby/lib/gitlab/git.rb %%DATADIR%%/ruby/lib/gitlab/git/gitaly_remote_repository.rb +%%DATADIR%%/ruby/lib/gitlab/git/gitlab_projects.rb +%%DATADIR%%/ruby/lib/gitlab/git/repository.rb %%DATADIR%%/ruby/lib/gitlab/git_logger.rb %%DATADIR%%/ruby/lib/gitlab/gitaly_client.rb %%DATADIR%%/ruby/lib/gitlab/gollum.rb @@ -47,6 +50,7 @@ %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/branch.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/commit.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/commit_stats.rb +%%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/committer_with_hooks.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/compare.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/conflict/file.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/conflict/parser.rb @@ -54,18 +58,18 @@ %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/conflict/resolver.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/diff.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/diff_collection.rb -%%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/env.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/gitlab_projects.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/gitmodules_parser.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/hook.rb +%%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/hook_env.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/hooks_service.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/index.rb -%%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/info_attributes.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/lfs_changes.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/lfs_pointer_file.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/operation_service.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/path_helper.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/popen.rb +%%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/raw_diff_change.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/ref.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/remote_mirror.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/remote_repository.rb @@ -80,6 +84,7 @@ %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/storage/forked_storage_check.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/storage/health.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/storage/null_circuit_breaker.rb +%%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/support/format-git-cat-file-input %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/tag.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/tree.rb %%DATADIR%%/ruby/vendor/gitlab_git/lib/gitlab/git/user.rb From owner-svn-ports-head@freebsd.org Thu Jun 21 15:34:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C1391022002; Thu, 21 Jun 2018 15:34:43 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D7C481992; Thu, 21 Jun 2018 15:34:43 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 19F9B13A33; Thu, 21 Jun 2018 15:34:43 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LFYgjx078637; Thu, 21 Jun 2018 15:34:42 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LFYgu6078635; Thu, 21 Jun 2018 15:34:42 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806211534.w5LFYgu6078635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 21 Jun 2018 15:34:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472978 - head/devel/rubygem-prometheus-client-mmap X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: head/devel/rubygem-prometheus-client-mmap X-SVN-Commit-Revision: 472978 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 15:34:43 -0000 Author: mfechner Date: Thu Jun 21 15:34:42 2018 New Revision: 472978 URL: https://svnweb.freebsd.org/changeset/ports/472978 Log: Update devel/rubygem-prometheus-client-mmap to 0.9.3 required for gitlab 10.8.x. Reviewed by: swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15948 Modified: head/devel/rubygem-prometheus-client-mmap/Makefile head/devel/rubygem-prometheus-client-mmap/distinfo Modified: head/devel/rubygem-prometheus-client-mmap/Makefile ============================================================================== --- head/devel/rubygem-prometheus-client-mmap/Makefile Thu Jun 21 15:32:00 2018 (r472977) +++ head/devel/rubygem-prometheus-client-mmap/Makefile Thu Jun 21 15:34:42 2018 (r472978) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= prometheus-client-mmap -DISTVERSION= 0.9.2 +DISTVERSION= 0.9.3 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-prometheus-client-mmap/distinfo ============================================================================== --- head/devel/rubygem-prometheus-client-mmap/distinfo Thu Jun 21 15:32:00 2018 (r472977) +++ head/devel/rubygem-prometheus-client-mmap/distinfo Thu Jun 21 15:34:42 2018 (r472978) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525942993 -SHA256 (rubygem/prometheus-client-mmap-0.9.2.gem) = f6309c30bf4c1d05d912e61d4e7b71d0941c9a20bfc24784f81fe1c9144fedc0 -SIZE (rubygem/prometheus-client-mmap-0.9.2.gem) = 51712 +TIMESTAMP = 1529518419 +SHA256 (rubygem/prometheus-client-mmap-0.9.3.gem) = f33e27fb7fb2f937913ab56be30bd6fed69e9345fa604241d8a1ddc410df7299 +SIZE (rubygem/prometheus-client-mmap-0.9.3.gem) = 48640 From owner-svn-ports-head@freebsd.org Thu Jun 21 15:37:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AAB91022057; Thu, 21 Jun 2018 15:37:08 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACC1481A9F; Thu, 21 Jun 2018 15:37:07 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A43013A38; Thu, 21 Jun 2018 15:37:07 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LFb7Rg078859; Thu, 21 Jun 2018 15:37:07 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LFb7bH078858; Thu, 21 Jun 2018 15:37:07 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806211537.w5LFb7bH078858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 21 Jun 2018 15:37:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472979 - head/www/gitlab-workhorse X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: head/www/gitlab-workhorse X-SVN-Commit-Revision: 472979 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 15:37:08 -0000 Author: mfechner Date: Thu Jun 21 15:37:06 2018 New Revision: 472979 URL: https://svnweb.freebsd.org/changeset/ports/472979 Log: Update www/gitlab-workhorse to 4.2.0 required for gitlab 10.8.x. Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15949 Modified: head/www/gitlab-workhorse/Makefile head/www/gitlab-workhorse/distinfo Modified: head/www/gitlab-workhorse/Makefile ============================================================================== --- head/www/gitlab-workhorse/Makefile Thu Jun 21 15:34:42 2018 (r472978) +++ head/www/gitlab-workhorse/Makefile Thu Jun 21 15:37:06 2018 (r472979) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gitlab-workhorse -PORTVERSION= 4.1.0 +PORTVERSION= 4.2.0 CATEGORIES= www MAINTAINER= mfechner@FreeBSD.org @@ -19,7 +19,7 @@ USES= gmake USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-workhorse/tags -GL_COMMIT= 31b10f9eb762869b767408fa0b26ab25aefba047 +GL_COMMIT= 5ee4b0a9cc7652b65b4cab17d8b280902a8b019d PLIST_FILES= bin/gitlab-workhorse \ bin/gitlab-zip-cat \ Modified: head/www/gitlab-workhorse/distinfo ============================================================================== --- head/www/gitlab-workhorse/distinfo Thu Jun 21 15:34:42 2018 (r472978) +++ head/www/gitlab-workhorse/distinfo Thu Jun 21 15:37:06 2018 (r472979) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524407802 -SHA256 (gitlab-org-gitlab-workhorse-31b10f9eb762869b767408fa0b26ab25aefba047_GL0.tar.gz) = d9ef15f98532ca4a431f5e183501b981bcfa9b7fec76bcdc78de4089b06d2e03 -SIZE (gitlab-org-gitlab-workhorse-31b10f9eb762869b767408fa0b26ab25aefba047_GL0.tar.gz) = 1753761 +TIMESTAMP = 1529406466 +SHA256 (gitlab-org-gitlab-workhorse-5ee4b0a9cc7652b65b4cab17d8b280902a8b019d_GL0.tar.gz) = 711743cda32a7774fdf24fcb2cc13f28f3f36ba19ea2acd3a6880e1ec4674501 +SIZE (gitlab-org-gitlab-workhorse-5ee4b0a9cc7652b65b4cab17d8b280902a8b019d_GL0.tar.gz) = 1756280 From owner-svn-ports-head@freebsd.org Thu Jun 21 15:40:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9520C1022165; Thu, 21 Jun 2018 15:40:24 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 488B081C88; Thu, 21 Jun 2018 15:40:24 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 29A7E13A5F; Thu, 21 Jun 2018 15:40:24 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LFeOpf079165; Thu, 21 Jun 2018 15:40:24 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LFeNMv079159; Thu, 21 Jun 2018 15:40:23 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806211540.w5LFeNMv079159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 21 Jun 2018 15:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472980 - in head/www/rubygem-gitlab-gollum-lib: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/www/rubygem-gitlab-gollum-lib: . files X-SVN-Commit-Revision: 472980 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 15:40:24 -0000 Author: mfechner Date: Thu Jun 21 15:40:23 2018 New Revision: 472980 URL: https://svnweb.freebsd.org/changeset/ports/472980 Log: Update www/rubygem-gitlab-gollum-lib to 4.2.7.5 required for gitlab 10.8.x. Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15951 Added: head/www/rubygem-gitlab-gollum-lib/files/patch-gitlab-gollum-lib.gemspec (contents, props changed) Deleted: head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec Modified: head/www/rubygem-gitlab-gollum-lib/Makefile head/www/rubygem-gitlab-gollum-lib/distinfo Modified: head/www/rubygem-gitlab-gollum-lib/Makefile ============================================================================== --- head/www/rubygem-gitlab-gollum-lib/Makefile Thu Jun 21 15:37:06 2018 (r472979) +++ head/www/rubygem-gitlab-gollum-lib/Makefile Thu Jun 21 15:40:23 2018 (r472980) @@ -1,25 +1,27 @@ # $FreeBSD$ PORTNAME= gitlab-gollum-lib -PORTVERSION= 1.1.0 -PORTREVISION= 4 +PORTVERSION= 4.2.7.5 CATEGORIES= www rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Simple, Git-powered wiki with a sweet API and local frontend LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-github-markup>=0.7.5:textproc/rubygem-github-markup \ - rubygem-gitlab-grit>=2.6.1:textproc/rubygem-gitlab-grit \ - rubygem-nokogiri>=1.5.9:textproc/rubygem-nokogiri \ - rubygem-sanitize>=2.0.3:textproc/rubygem-sanitize \ - rubygem-stringex>=1.5.1:devel/rubygem-stringex +RUN_DEPENDS= rubygem-gemojione32>=3.2:graphics/rubygem-gemojione32 \ + rubygem-gitlab-markup>=1.6:textproc/rubygem-gitlab-markup \ + rubygem-gollum-grit_adapter10>=1.0:www/rubygem-gollum-grit_adapter10 \ + rubygem-nokogiri>=1.6.1:textproc/rubygem-nokogiri \ + rubygem-rouge>=3.1:textproc/rubygem-rouge \ + rubygem-sanitize>=4.6.4:textproc/rubygem-sanitize \ + rubygem-stringex>=2.6:devel/rubygem-stringex -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include Modified: head/www/rubygem-gitlab-gollum-lib/distinfo ============================================================================== --- head/www/rubygem-gitlab-gollum-lib/distinfo Thu Jun 21 15:37:06 2018 (r472979) +++ head/www/rubygem-gitlab-gollum-lib/distinfo Thu Jun 21 15:40:23 2018 (r472980) @@ -1,2 +1,3 @@ -SHA256 (rubygem/gitlab-gollum-lib-1.1.0.gem) = 7759898473e48249ed02c0daf1e946607a58102c4a0a56551fa565ae4f0a5ea8 -SIZE (rubygem/gitlab-gollum-lib-1.1.0.gem) = 41472 +TIMESTAMP = 1529480313 +SHA256 (rubygem/gitlab-gollum-lib-4.2.7.5.gem) = 76027e55c980e04eb14858ed3f55a2815a2a2a5b54c256da31a94ea7e9510696 +SIZE (rubygem/gitlab-gollum-lib-4.2.7.5.gem) = 49152 Added: head/www/rubygem-gitlab-gollum-lib/files/patch-gitlab-gollum-lib.gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-gitlab-gollum-lib/files/patch-gitlab-gollum-lib.gemspec Thu Jun 21 15:40:23 2018 (r472980) @@ -0,0 +1,11 @@ +--- gitlab-gollum-lib.gemspec.orig 2018-06-20 08:51:37 UTC ++++ gitlab-gollum-lib.gemspec +@@ -29,7 +29,7 @@ Gem::Specification.new do |s| + s.add_runtime_dependency(%q.freeze, ["< 2.0", ">= 1.6.1"]) + s.add_runtime_dependency(%q.freeze, ["~> 2.6"]) + s.add_runtime_dependency(%q.freeze, ["~> 4.6.4"]) +- s.add_runtime_dependency(%q.freeze, ["~> 1.6"]) ++ s.add_runtime_dependency(%q.freeze, ["~> 1.6"]) + s.add_runtime_dependency(%q.freeze, ["~> 3.2"]) + s.add_development_dependency(%q.freeze, ["~> 0.9.9"]) + s.add_development_dependency(%q.freeze, ["~> 1.6.0"]) From owner-svn-ports-head@freebsd.org Thu Jun 21 15:45:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4B181022458; Thu, 21 Jun 2018 15:45:22 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 82CC282184; Thu, 21 Jun 2018 15:45:22 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 588BF13BEE; Thu, 21 Jun 2018 15:45:22 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LFjMr2083964; Thu, 21 Jun 2018 15:45:22 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LFjKPc083956; Thu, 21 Jun 2018 15:45:20 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201806211545.w5LFjKPc083956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Thu, 21 Jun 2018 15:45:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472981 - in head/www/gitlab: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/www/gitlab: . files X-SVN-Commit-Revision: 472981 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 15:45:23 -0000 Author: mfechner Date: Thu Jun 21 15:45:20 2018 New Revision: 472981 URL: https://svnweb.freebsd.org/changeset/ports/472981 Log: Update www/gitlab to 10.8.4. Incremental rollouts, plus open source push mirroring See here for all details: https://about.gitlab.com/2018/05/22/gitlab-10-8-released/ Reviewed by: mat, swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D15950 Added: head/www/gitlab/files/patch-lib_tasks_gitlab_setup.rake (contents, props changed) Modified: head/www/gitlab/Makefile head/www/gitlab/distinfo head/www/gitlab/files/patch-Gemfile head/www/gitlab/files/patch-config_gitlab.yml.example head/www/gitlab/files/patch-config_initializers_1__settings.rb head/www/gitlab/pkg-message head/www/gitlab/pkg-plist Modified: head/www/gitlab/Makefile ============================================================================== --- head/www/gitlab/Makefile Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/Makefile Thu Jun 21 15:45:20 2018 (r472981) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= gitlab -PORTVERSION= 10.7.5 +PORTVERSION= 10.8.4 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org @@ -28,7 +27,7 @@ BUILD_DEPENDS= gem:devel/ruby-gems RUN_DEPENDS= git>=2.16.2:devel/git \ gitlab-shell>=7.1.2:devel/gitlab-shell \ gitlab-workhorse>=4.1.0:www/gitlab-workhorse \ - gitaly>=0.96.1:devel/gitaly \ + gitaly>=0.100.0:devel/gitaly \ gitlab-pages>=0.9.1:www/gitlab-pages \ redis>=2.8.23:databases/redis \ npm>=4.3.0:www/npm \ @@ -41,7 +40,7 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-rugged>=0.27.0:devel/rubygem-rugged \ rubygem-grape-route-helpers>=2.1.0:devel/rubygem-grape-route-helpers \ rubygem-faraday>=0.12.0:www/rubygem-faraday \ - rubygem-devise>=4.2:devel/rubygem-devise \ + rubygem-devise>=4.4:devel/rubygem-devise \ rubygem-doorkeeper>=4.3:security/rubygem-doorkeeper \ rubygem-doorkeeper-openid_connect>=1.3:security/rubygem-doorkeeper-openid_connect \ rubygem-omniauth>=1.8:security/rubygem-omniauth \ @@ -49,7 +48,7 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-omniauth-azure-oauth2>=0.0.9:net/rubygem-omniauth-azure-oauth2 \ rubygem-omniauth-cas3>=1.1.4:security/rubygem-omniauth-cas3 \ rubygem-omniauth-facebook4>=4.0.0:net/rubygem-omniauth-facebook4 \ - rubygem-omniauth-github11>=1.1.1:net/rubygem-omniauth-github11 \ + rubygem-omniauth-github>=1.3.0:net/rubygem-omniauth-github \ rubygem-omniauth-gitlab>=1.0.2:security/rubygem-omniauth-gitlab \ rubygem-omniauth-google-oauth2>=0.5.3:net/rubygem-omniauth-google-oauth2 \ rubygem-omniauth-kerberos>=0.3.0:net/rubygem-omniauth-kerberos \ @@ -72,11 +71,11 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-gpgme>=2.0.13:security/rubygem-gpgme \ rubygem-gitlab_omniauth-ldap>=2.0.4:net/rubygem-gitlab_omniauth-ldap \ rubygem-net-ldap>=0.16.0:net/rubygem-net-ldap \ - rubygem-gollum-lib-gitlab>=4.2.0:www/rubygem-gollum-lib-gitlab \ - rubygem-gollum-rugged_adapter>=0.4.4:www/rubygem-gollum-rugged_adapter \ + rubygem-gitlab-gollum-lib>=4.2.0:www/rubygem-gitlab-gollum-lib \ + rubygem-gitlab-gollum-rugged_adapter>=0.4.4:www/rubygem-gitlab-gollum-rugged_adapter \ rubygem-github-linguist53>=5.3.3:textproc/rubygem-github-linguist53 \ rubygem-grape>=1.0:devel/rubygem-grape \ - rubygem-grape-entity060>=0.6.0:devel/rubygem-grape-entity060 \ + rubygem-grape-entity>=0.7.1:devel/rubygem-grape-entity \ rubygem-rack-cors>=1.0.0:www/rubygem-rack-cors \ rubygem-hashie-forbidden_attributes>=0:devel/rubygem-hashie-forbidden_attributes \ rubygem-kaminari-rails4>=1.0:www/rubygem-kaminari-rails4 \ @@ -105,7 +104,7 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-wikicloth081>=0.8.1:textproc/rubygem-wikicloth081 \ rubygem-asciidoctor>=1.5.6:textproc/rubygem-asciidoctor \ rubygem-asciidoctor-plantuml>=0.0.8:textproc/rubygem-asciidoctor-plantuml \ - rubygem-rouge2>=2.0:textproc/rubygem-rouge2 \ + rubygem-rouge>=3.1:textproc/rubygem-rouge \ rubygem-truncato>=0.7.9:textproc/rubygem-truncato \ rubygem-bootstrap_form>=2.7.0:devel/rubygem-bootstrap_form \ rubygem-nokogiri>=1.8.2:textproc/rubygem-nokogiri \ @@ -124,6 +123,7 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-settingslogic>=2.0.9:devel/rubygem-settingslogic \ rubygem-re2>=1.1.1:devel/rubygem-re2 \ rubygem-version_sorter21>=2.1.0:textproc/rubygem-version_sorter21 \ + rubygem-device_detector>=0:devel/rubygem-device_detector \ rubygem-redis-rails>=5.0.1:www/rubygem-redis-rails \ rubygem-redis3>=3.2:databases/rubygem-redis3 \ rubygem-connection_pool>=2.0:net/rubygem-connection_pool \ @@ -172,11 +172,10 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-batch-loader>=1.2.1:devel/rubygem-batch-loader \ rubygem-peek>=1.0.1:devel/rubygem-peek \ rubygem-peek-gc>=0.0.2:devel/rubygem-peek-gc \ - rubygem-peek-performance_bar>=1.3.0:devel/rubygem-peek-performance_bar \ rubygem-peek-rblineprof>=0.2.0:devel/rubygem-peek-rblineprof \ rubygem-peek-redis>=1.2.0:devel/rubygem-peek-redis \ rubygem-peek-sidekiq>=1.0.3:devel/rubygem-peek-sidekiq \ - rubygem-prometheus-client-mmap>=0.9.1:devel/rubygem-prometheus-client-mmap \ + rubygem-prometheus-client-mmap>=0.9.3:devel/rubygem-prometheus-client-mmap \ rubygem-octokit>=4.8:net/rubygem-octokit \ rubygem-mail_room>=0.9.1:mail/rubygem-mail_room \ rubygem-email_reply_trimmer>=0.1:mail/rubygem-email_reply_trimmer \ @@ -191,7 +190,7 @@ RUN_DEPENDS= git>=2.16.2:devel/git \ rubygem-rbnacl4<=4.0.2:security/rubygem-rbnacl4 \ rubygem-rbnacl-libsodium>=0:security/rubygem-rbnacl-libsodium \ rubygem-bcrypt_pbkdf>=1.0:security/rubygem-bcrypt_pbkdf \ - rubygem-gitaly-proto096>=0.96.0:net/rubygem-gitaly-proto096 \ + rubygem-gitaly-proto099>=0.99.0:net/rubygem-gitaly-proto099 \ rubygem-grpc>=1.11.0:net/rubygem-grpc \ rubygem-gitaly>=0.8.0:net/rubygem-gitaly \ rubygem-google-protobuf351>=3.5.1:devel/rubygem-google-protobuf351 \ Modified: head/www/gitlab/distinfo ============================================================================== --- head/www/gitlab/distinfo Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/distinfo Thu Jun 21 15:45:20 2018 (r472981) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527763488 -SHA256 (gitlabhq-gitlabhq-v10.7.5_GH0.tar.gz) = 69829e44acec5622b98a957874bd0426779540866bfd5ac6637b2bb331101f30 -SIZE (gitlabhq-gitlabhq-v10.7.5_GH0.tar.gz) = 47807879 +TIMESTAMP = 1529480195 +SHA256 (gitlabhq-gitlabhq-v10.8.4_GH0.tar.gz) = 36c9680e92387507a64d599cf3e464328857efa84fc971a93dca0b3c1ffd8ace +SIZE (gitlabhq-gitlabhq-v10.8.4_GH0.tar.gz) = 48448250 Modified: head/www/gitlab/files/patch-Gemfile ============================================================================== --- head/www/gitlab/files/patch-Gemfile Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/files/patch-Gemfile Thu Jun 21 15:45:20 2018 (r472981) @@ -1,4 +1,4 @@ ---- Gemfile.orig 2018-05-28 11:47:11 UTC +--- Gemfile.orig 2018-06-20 17:48:20 UTC +++ Gemfile @@ -24,7 +24,7 @@ gem 'sprockets', '~> 3.7.0' gem 'default_value_for', gem_versions['default_value_for'] @@ -9,7 +9,7 @@ gem 'pg', '~> 0.18.2', group: :postgres gem 'rugged', '~> 0.27' -@@ -125,7 +125,7 @@ gem 'fog-rackspace', '~> 0.1.1' +@@ -118,7 +118,7 @@ gem 'fog-rackspace', '~> 0.1.1' gem 'fog-aliyun', '~> 0.2.0' # for Google storage @@ -18,7 +18,7 @@ # for aws storage gem 'unf', '~> 0.1.4' -@@ -176,7 +176,7 @@ gem 'sidekiq-limit_fetch', '~> 3.4', req +@@ -169,7 +169,7 @@ gem 'sidekiq-limit_fetch', '~> 3.4', req gem 'rufus-scheduler', '~> 3.4' # HTTP requests @@ -27,7 +27,7 @@ # Colored output to console gem 'rainbow', '~> 2.2' -@@ -226,7 +226,7 @@ gem 'kubeclient', '~> 3.0' +@@ -222,7 +222,7 @@ gem 'kubeclient', '~> 3.0' gem 'd3_rails', '~> 3.5.0' # Sanitize user input @@ -36,16 +36,16 @@ gem 'babosa', '~> 1.0.2' # Sanitizes SVG input -@@ -288,7 +288,7 @@ gem 'batch-loader', '~> 1.2.1' +@@ -284,7 +284,7 @@ gem 'batch-loader', '~> 1.2.1' # Perf bar gem 'peek', '~> 1.0.1' gem 'peek-gc', '~> 0.0.2' -gem 'peek-mysql2', '~> 1.1.0', group: :mysql +gem 'peek-mysql2', '>= 1.1.0', group: :mysql - gem 'peek-performance_bar', '~> 1.3.0' gem 'peek-pg', '~> 1.3.0', group: :postgres gem 'peek-rblineprof', '~> 0.2.0' -@@ -297,98 +297,11 @@ gem 'peek-sidekiq', '~> 1.0.3' + gem 'peek-redis', '~> 1.2.0' +@@ -292,99 +292,11 @@ gem 'peek-sidekiq', '~> 1.0.3' # Metrics group :metrics do @@ -54,7 +54,7 @@ - gem 'influxdb', '~> 0.2', require: false - # Prometheus - gem 'prometheus-client-mmap', '~> 0.9.1' + gem 'prometheus-client-mmap', '~> 0.9.3' gem 'raindrops', '~> 0.18' end @@ -135,6 +135,7 @@ - gem 'email_spec', '~> 1.6.0' - gem 'json-schema', '~> 2.8.0' - gem 'webmock', '~> 2.3.2' +- gem 'rails-controller-testing' if rails5? # Rails5 only gem. - gem 'test_after_commit', '~> 1.1' unless rails5? # Remove this gem when migrated to rails 5.0. It's been integrated to rails 5.0. - gem 'sham_rack', '~> 1.3.6' - gem 'concurrent-ruby', '~> 1.0.5' @@ -144,8 +145,3 @@ gem 'octokit', '~> 4.8' gem 'mail_room', '~> 0.9.1' -@@ -439,3 +352,4 @@ gem 'grape_logging', '~> 1.7' - - # Asset synchronization - gem 'asset_sync', '~> 2.2.0' -+ Modified: head/www/gitlab/files/patch-config_gitlab.yml.example ============================================================================== --- head/www/gitlab/files/patch-config_gitlab.yml.example Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/files/patch-config_gitlab.yml.example Thu Jun 21 15:45:20 2018 (r472981) @@ -1,6 +1,15 @@ ---- config/gitlab.yml.example.orig 2018-05-28 11:47:11 UTC +--- config/gitlab.yml.example.orig 2018-06-06 20:30:27 UTC +++ config/gitlab.yml.example -@@ -570,7 +570,7 @@ production: &base +@@ -213,7 +213,7 @@ production: &base + # external_http: ["1.1.1.1:80", "[2001::1]:80"] # If defined, enables custom domain support in GitLab Pages + # external_https: ["1.1.1.1:443", "[2001::1]:443"] # If defined, enables custom domain and certificate support in GitLab Pages + admin: +- address: unix:/home/git/gitlab/tmp/sockets/private/pages-admin.socket # TCP connections are supported too (e.g. tcp://host:port) ++ address: unix:/usr/local/www/gitlab/tmp/sockets/private/pages-admin.socket # TCP connections are supported too (e.g. tcp://host:port) + + ## Mattermost + ## For enabling Add to Mattermost button +@@ -572,7 +572,7 @@ production: &base # Gitaly settings gitaly: # Path to the directory containing Gitaly client executables. @@ -9,7 +18,7 @@ # Default Gitaly authentication token. Can be overriden per storage. Can # be left blank when Gitaly is running locally on a Unix socket, which # is the normal way to deploy Gitaly. -@@ -588,8 +588,8 @@ production: &base +@@ -590,8 +590,8 @@ production: &base # real path not the symlink. storages: # You must have at least a `default` storage path. default: @@ -20,7 +29,7 @@ # gitaly_token: 'special token' # Optional: override global gitaly.token for this storage. ## Backup settings -@@ -617,12 +617,12 @@ production: &base +@@ -619,12 +619,12 @@ production: &base ## GitLab Shell settings gitlab_shell: @@ -36,7 +45,7 @@ # Git over HTTP upload_pack: true -@@ -643,7 +643,7 @@ production: &base +@@ -645,7 +645,7 @@ production: &base # CAUTION! # Use the default values unless you really know what you are doing git: Modified: head/www/gitlab/files/patch-config_initializers_1__settings.rb ============================================================================== --- head/www/gitlab/files/patch-config_initializers_1__settings.rb Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/files/patch-config_initializers_1__settings.rb Thu Jun 21 15:45:20 2018 (r472981) @@ -1,6 +1,6 @@ ---- config/initializers/1_settings.rb.orig 2018-02-22 10:46:29 UTC +--- config/initializers/1_settings.rb.orig 2018-06-06 20:30:27 UTC +++ config/initializers/1_settings.rb -@@ -252,12 +252,8 @@ Settings.gitlab['email_subject_suffix'] +@@ -125,12 +125,8 @@ Settings.gitlab['email_subject_suffix'] Settings.gitlab['base_url'] ||= Settings.__send__(:build_base_gitlab_url) Settings.gitlab['url'] ||= Settings.__send__(:build_gitlab_url) Settings.gitlab['user'] ||= 'git' Added: head/www/gitlab/files/patch-lib_tasks_gitlab_setup.rake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/gitlab/files/patch-lib_tasks_gitlab_setup.rake Thu Jun 21 15:45:20 2018 (r472981) @@ -0,0 +1,12 @@ +--- lib/tasks/gitlab/setup.rake.orig 2018-06-21 08:18:34 UTC ++++ lib/tasks/gitlab/setup.rake +@@ -1,7 +1,8 @@ + namespace :gitlab do + desc "GitLab | Setup production application" + task setup: :gitlab_environment do +- check_gitaly_connection ++ # Remove this check, see https://gitlab.com/gitlab-org/gitlab-ce/issues/47483 ++ #check_gitaly_connection + setup_db + end + Modified: head/www/gitlab/pkg-message ============================================================================== --- head/www/gitlab/pkg-message Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/pkg-message Thu Jun 21 15:45:20 2018 (r472981) @@ -4,12 +4,12 @@ Gitlab was installed successfully. You now need to set up the various components of Gitlab, so please follow the instructions in the guide at: -https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/install/10.7-freebsd.md +https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/install/10.8-freebsd.md If you just installed an major upgrade of GitLab, for example you -switched from 10.6.x to 10.7.x, please follow the instructions in the guide at: +switched from 10.7.x to 10.8.x, please follow the instructions in the guide at: -https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/update/10.6-10.7-freebsd.md +https://gitlab.fechner.net/mfechner/Gitlab-docu/blob/master/update/10.7-10.8-freebsd.md If you just installed an minor upgrade of GitLab please follow the instructions in the guide at: Modified: head/www/gitlab/pkg-plist ============================================================================== --- head/www/gitlab/pkg-plist Thu Jun 21 15:40:23 2018 (r472980) +++ head/www/gitlab/pkg-plist Thu Jun 21 15:45:20 2018 (r472981) @@ -11,6 +11,7 @@ %%WWWDIR%%/.gitlab/issue_templates/Bug.md %%WWWDIR%%/.gitlab/issue_templates/Feature Proposal.md %%WWWDIR%%/.gitlab/issue_templates/Research Proposal.md +%%WWWDIR%%/.gitlab/issue_templates/Security Developer Workflow.md %%WWWDIR%%/.gitlab/merge_request_templates/Database Changes.md %%WWWDIR%%/.gitlab/merge_request_templates/Documentation.md %%WWWDIR%%/.gitlab/route-map.yml @@ -1876,6 +1877,8 @@ %%WWWDIR%%/app/assets/images/emoji/zipper_mouth.png %%WWWDIR%%/app/assets/images/emoji/zzz.png %%WWWDIR%%/app/assets/images/emoji@2x.png +%%WWWDIR%%/app/assets/images/ext_snippet_icons/ext_snippet_icons.png +%%WWWDIR%%/app/assets/images/ext_snippet_icons/logo.png %%WWWDIR%%/app/assets/images/favicon-blue.ico %%WWWDIR%%/app/assets/images/favicon-yellow.ico %%WWWDIR%%/app/assets/images/favicon.ico @@ -1974,7 +1977,7 @@ %%WWWDIR%%/app/assets/javascripts/blob_edit/blob_bundle.js %%WWWDIR%%/app/assets/javascripts/blob_edit/edit_blob.js %%WWWDIR%%/app/assets/javascripts/boards/components/board.js -%%WWWDIR%%/app/assets/javascripts/boards/components/board_blank_state.js +%%WWWDIR%%/app/assets/javascripts/boards/components/board_blank_state.vue %%WWWDIR%%/app/assets/javascripts/boards/components/board_card.vue %%WWWDIR%%/app/assets/javascripts/boards/components/board_delete.js %%WWWDIR%%/app/assets/javascripts/boards/components/board_list.vue @@ -2020,6 +2023,7 @@ %%WWWDIR%%/app/assets/javascripts/clusters/clusters_index.js %%WWWDIR%%/app/assets/javascripts/clusters/components/application_row.vue %%WWWDIR%%/app/assets/javascripts/clusters/components/applications.vue +%%WWWDIR%%/app/assets/javascripts/clusters/components/gcp_signup_offer.js %%WWWDIR%%/app/assets/javascripts/clusters/constants.js %%WWWDIR%%/app/assets/javascripts/clusters/event_hub.js %%WWWDIR%%/app/assets/javascripts/clusters/services/clusters_service.js @@ -2039,7 +2043,6 @@ %%WWWDIR%%/app/assets/javascripts/commons/polyfills/event.js %%WWWDIR%%/app/assets/javascripts/commons/polyfills/nodelist.js %%WWWDIR%%/app/assets/javascripts/commons/vue.js -%%WWWDIR%%/app/assets/javascripts/compare.js %%WWWDIR%%/app/assets/javascripts/compare_autocomplete.js %%WWWDIR%%/app/assets/javascripts/confirm_danger_modal.js %%WWWDIR%%/app/assets/javascripts/contextual_sidebar.js @@ -2181,22 +2184,29 @@ %%WWWDIR%%/app/assets/javascripts/help/help.js %%WWWDIR%%/app/assets/javascripts/helpers/issuables_helper.js %%WWWDIR%%/app/assets/javascripts/how_to_merge.js +%%WWWDIR%%/app/assets/javascripts/ide/components/activity_bar.vue %%WWWDIR%%/app/assets/javascripts/ide/components/changed_file_icon.vue %%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/actions.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/empty_state.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/form.vue %%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/list.vue %%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/list_collapsed.vue %%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/list_item.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/message_field.vue %%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/radio_group.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/success_message.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/commit_sidebar/unstage_button.vue %%WWWDIR%%/app/assets/javascripts/ide/components/editor_mode_dropdown.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/file_finder/index.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/file_finder/item.vue %%WWWDIR%%/app/assets/javascripts/ide/components/ide.vue -%%WWWDIR%%/app/assets/javascripts/ide/components/ide_context_bar.vue -%%WWWDIR%%/app/assets/javascripts/ide/components/ide_external_links.vue %%WWWDIR%%/app/assets/javascripts/ide/components/ide_file_buttons.vue -%%WWWDIR%%/app/assets/javascripts/ide/components/ide_project_branches_tree.vue -%%WWWDIR%%/app/assets/javascripts/ide/components/ide_project_tree.vue -%%WWWDIR%%/app/assets/javascripts/ide/components/ide_repo_tree.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/ide_review.vue %%WWWDIR%%/app/assets/javascripts/ide/components/ide_side_bar.vue %%WWWDIR%%/app/assets/javascripts/ide/components/ide_status_bar.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/ide_tree.vue +%%WWWDIR%%/app/assets/javascripts/ide/components/ide_tree_list.vue %%WWWDIR%%/app/assets/javascripts/ide/components/mr_file_icon.vue %%WWWDIR%%/app/assets/javascripts/ide/components/new_dropdown/index.vue %%WWWDIR%%/app/assets/javascripts/ide/components/new_dropdown/modal.vue @@ -2209,6 +2219,7 @@ %%WWWDIR%%/app/assets/javascripts/ide/components/repo_tab.vue %%WWWDIR%%/app/assets/javascripts/ide/components/repo_tabs.vue %%WWWDIR%%/app/assets/javascripts/ide/components/resizable_panel.vue +%%WWWDIR%%/app/assets/javascripts/ide/constants.js %%WWWDIR%%/app/assets/javascripts/ide/eventhub.js %%WWWDIR%%/app/assets/javascripts/ide/ide_router.js %%WWWDIR%%/app/assets/javascripts/ide/index.js @@ -2221,6 +2232,7 @@ %%WWWDIR%%/app/assets/javascripts/ide/lib/diff/diff_worker.js %%WWWDIR%%/app/assets/javascripts/ide/lib/editor.js %%WWWDIR%%/app/assets/javascripts/ide/lib/editor_options.js +%%WWWDIR%%/app/assets/javascripts/ide/lib/keymap.json %%WWWDIR%%/app/assets/javascripts/ide/lib/themes/gl_theme.js %%WWWDIR%%/app/assets/javascripts/ide/monaco_loader.js %%WWWDIR%%/app/assets/javascripts/ide/services/index.js @@ -2318,6 +2330,7 @@ %%WWWDIR%%/app/assets/javascripts/lib/utils/dom_utils.js %%WWWDIR%%/app/assets/javascripts/lib/utils/http_status.js %%WWWDIR%%/app/assets/javascripts/lib/utils/image_utility.js +%%WWWDIR%%/app/assets/javascripts/lib/utils/keycodes.js %%WWWDIR%%/app/assets/javascripts/lib/utils/notify.js %%WWWDIR%%/app/assets/javascripts/lib/utils/number_utils.js %%WWWDIR%%/app/assets/javascripts/lib/utils/poll.js @@ -2474,8 +2487,10 @@ %%WWWDIR%%/app/assets/javascripts/pages/help/index/index.js %%WWWDIR%%/app/assets/javascripts/pages/help/show/index.js %%WWWDIR%%/app/assets/javascripts/pages/help/ui/index.js +%%WWWDIR%%/app/assets/javascripts/pages/ide/index.js %%WWWDIR%%/app/assets/javascripts/pages/import/fogbugz/new_user_map/index.js %%WWWDIR%%/app/assets/javascripts/pages/import/gitlab_projects/new/index.js +%%WWWDIR%%/app/assets/javascripts/pages/ldap/omniauth_callbacks/index.js %%WWWDIR%%/app/assets/javascripts/pages/milestones/shared/components/delete_milestone_modal.vue %%WWWDIR%%/app/assets/javascripts/pages/milestones/shared/components/promote_milestone_modal.vue %%WWWDIR%%/app/assets/javascripts/pages/milestones/shared/delete_milestone_modal_init.js @@ -2504,7 +2519,9 @@ %%WWWDIR%%/app/assets/javascripts/pages/projects/ci/lints/new/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/ci/lints/show/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/clusters/destroy/index.js +%%WWWDIR%%/app/assets/javascripts/pages/projects/clusters/gcp/login/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/clusters/index/index.js +%%WWWDIR%%/app/assets/javascripts/pages/projects/clusters/new/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/clusters/show/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/clusters/update/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/commit/pipelines/index.js @@ -2544,7 +2561,9 @@ %%WWWDIR%%/app/assets/javascripts/pages/projects/labels/new/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/conflicts/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/creations/index.js +%%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/creations/new/compare.js %%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/creations/new/index.js +%%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/creations/new/target_project_dropdown.js %%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/edit/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/index/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/merge_requests/init_merge_request.js @@ -2592,7 +2611,7 @@ %%WWWDIR%%/app/assets/javascripts/pages/projects/shared/permissions/external.js %%WWWDIR%%/app/assets/javascripts/pages/projects/shared/permissions/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/shared/project_avatar.js -%%WWWDIR%%/app/assets/javascripts/pages/projects/shared/project_new.js +%%WWWDIR%%/app/assets/javascripts/pages/projects/shared/save_project_loader.js %%WWWDIR%%/app/assets/javascripts/pages/projects/show/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/snippets/edit/index.js %%WWWDIR%%/app/assets/javascripts/pages/projects/snippets/new/index.js @@ -2624,7 +2643,6 @@ %%WWWDIR%%/app/assets/javascripts/performance_bar/components/performance_bar_app.vue %%WWWDIR%%/app/assets/javascripts/performance_bar/components/request_selector.vue %%WWWDIR%%/app/assets/javascripts/performance_bar/components/simple_metric.vue -%%WWWDIR%%/app/assets/javascripts/performance_bar/components/upstream_performance_bar.vue %%WWWDIR%%/app/assets/javascripts/performance_bar/index.js %%WWWDIR%%/app/assets/javascripts/performance_bar/services/performance_bar_service.js %%WWWDIR%%/app/assets/javascripts/performance_bar/stores/performance_bar_store.js @@ -2633,7 +2651,6 @@ %%WWWDIR%%/app/assets/javascripts/pipelines/components/blank_state.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/empty_state.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/graph/action_component.vue -%%WWWDIR%%/app/assets/javascripts/pipelines/components/graph/dropdown_action_component.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/graph/dropdown_job_component.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/graph/graph_component.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/graph/job_component.vue @@ -2649,6 +2666,7 @@ %%WWWDIR%%/app/assets/javascripts/pipelines/components/pipelines_table_row.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/stage.vue %%WWWDIR%%/app/assets/javascripts/pipelines/components/time_ago.vue +%%WWWDIR%%/app/assets/javascripts/pipelines/constants.js %%WWWDIR%%/app/assets/javascripts/pipelines/event_hub.js %%WWWDIR%%/app/assets/javascripts/pipelines/mixins/pipelines.js %%WWWDIR%%/app/assets/javascripts/pipelines/pipeline_details_bundle.js @@ -2713,6 +2731,7 @@ %%WWWDIR%%/app/assets/javascripts/search_autocomplete.js %%WWWDIR%%/app/assets/javascripts/settings_panels.js %%WWWDIR%%/app/assets/javascripts/shared/milestones/form.js +%%WWWDIR%%/app/assets/javascripts/shared/popover.js %%WWWDIR%%/app/assets/javascripts/shared/sessions/u2f.js %%WWWDIR%%/app/assets/javascripts/shortcuts.js %%WWWDIR%%/app/assets/javascripts/shortcuts_blob.js @@ -2737,11 +2756,11 @@ %%WWWDIR%%/app/assets/javascripts/sidebar/components/subscriptions/subscriptions.vue %%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/collapsed_state.vue %%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/comparison_pane.vue -%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/estimate_only_pane.js -%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/help_state.js -%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/no_tracking_pane.js -%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/sidebar_time_tracking.js -%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/spent_only_pane.js +%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/estimate_only_pane.vue +%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/help_state.vue +%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/no_tracking_pane.vue +%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/sidebar_time_tracking.vue +%%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/spent_only_pane.vue %%WWWDIR%%/app/assets/javascripts/sidebar/components/time_tracking/time_tracker.vue %%WWWDIR%%/app/assets/javascripts/sidebar/event_hub.js %%WWWDIR%%/app/assets/javascripts/sidebar/lib/sidebar_move_issue.js @@ -2754,6 +2773,7 @@ %%WWWDIR%%/app/assets/javascripts/single_file_diff.js %%WWWDIR%%/app/assets/javascripts/smart_interval.js %%WWWDIR%%/app/assets/javascripts/snippet/snippet_bundle.js +%%WWWDIR%%/app/assets/javascripts/snippet/snippet_embed.js %%WWWDIR%%/app/assets/javascripts/sortable/sortable_config.js %%WWWDIR%%/app/assets/javascripts/star.js %%WWWDIR%%/app/assets/javascripts/subscription_select.js @@ -2776,7 +2796,6 @@ %%WWWDIR%%/app/assets/javascripts/user_callout.js %%WWWDIR%%/app/assets/javascripts/users_select.js %%WWWDIR%%/app/assets/javascripts/version_check_image.js -%%WWWDIR%%/app/assets/javascripts/visibility_select.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/deployment.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/memory_usage.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/mr_widget_author.vue @@ -2800,14 +2819,14 @@ %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_missing_branch.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_not_allowed.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_pipeline_blocked.vue -%%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_pipeline_failed.js -%%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_ready_to_merge.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_rebase.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_squash_before_merge.js -%%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/mr_widget_wip.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/nothing_to_merge.vue +%%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/pipeline_failed.vue +%%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/ready_to_merge.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/sha_mismatch.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/unresolved_discussions.vue +%%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/components/states/work_in_progress.vue %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/dependencies.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/event_hub.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/index.js @@ -2816,6 +2835,7 @@ %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/stores/get_state_key.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/stores/mr_widget_store.js %%WWWDIR%%/app/assets/javascripts/vue_merge_request_widget/stores/state_maps.js +%%WWWDIR%%/app/assets/javascripts/vue_shared/components/callout.vue %%WWWDIR%%/app/assets/javascripts/vue_shared/components/ci_badge_link.vue %%WWWDIR%%/app/assets/javascripts/vue_shared/components/ci_icon.vue %%WWWDIR%%/app/assets/javascripts/vue_shared/components/clipboard_button.vue @@ -2885,6 +2905,7 @@ %%WWWDIR%%/app/assets/javascripts/zen_mode.js %%WWWDIR%%/app/assets/stylesheets/application.scss %%WWWDIR%%/app/assets/stylesheets/behaviors.scss +%%WWWDIR%%/app/assets/stylesheets/emoji_sprites.scss %%WWWDIR%%/app/assets/stylesheets/framework.scss %%WWWDIR%%/app/assets/stylesheets/framework/animations.scss %%WWWDIR%%/app/assets/stylesheets/framework/asciidoctor.scss @@ -2902,7 +2923,6 @@ %%WWWDIR%%/app/assets/stylesheets/framework/common.scss %%WWWDIR%%/app/assets/stylesheets/framework/contextual_sidebar.scss %%WWWDIR%%/app/assets/stylesheets/framework/dropdowns.scss -%%WWWDIR%%/app/assets/stylesheets/framework/emoji_sprites.scss %%WWWDIR%%/app/assets/stylesheets/framework/emojis.scss %%WWWDIR%%/app/assets/stylesheets/framework/feature_highlight.scss %%WWWDIR%%/app/assets/stylesheets/framework/files.scss @@ -2939,6 +2959,7 @@ %%WWWDIR%%/app/assets/stylesheets/framework/stacked_progress_bar.scss %%WWWDIR%%/app/assets/stylesheets/framework/tables.scss %%WWWDIR%%/app/assets/stylesheets/framework/tabs.scss +%%WWWDIR%%/app/assets/stylesheets/framework/terms.scss %%WWWDIR%%/app/assets/stylesheets/framework/timeline.scss %%WWWDIR%%/app/assets/stylesheets/framework/toggle.scss %%WWWDIR%%/app/assets/stylesheets/framework/tooltips.scss @@ -2950,10 +2971,12 @@ %%WWWDIR%%/app/assets/stylesheets/framework/wells.scss %%WWWDIR%%/app/assets/stylesheets/framework/zen.scss %%WWWDIR%%/app/assets/stylesheets/highlight/dark.scss +%%WWWDIR%%/app/assets/stylesheets/highlight/embedded.scss %%WWWDIR%%/app/assets/stylesheets/highlight/monokai.scss %%WWWDIR%%/app/assets/stylesheets/highlight/solarized_dark.scss %%WWWDIR%%/app/assets/stylesheets/highlight/solarized_light.scss %%WWWDIR%%/app/assets/stylesheets/highlight/white.scss +%%WWWDIR%%/app/assets/stylesheets/highlight/white_base.scss %%WWWDIR%%/app/assets/stylesheets/mailers/highlighted_diff_email.scss %%WWWDIR%%/app/assets/stylesheets/notify.scss %%WWWDIR%%/app/assets/stylesheets/pages/admin.scss @@ -3009,6 +3032,7 @@ %%WWWDIR%%/app/assets/stylesheets/pages/xterm.scss %%WWWDIR%%/app/assets/stylesheets/performance_bar.scss %%WWWDIR%%/app/assets/stylesheets/print.scss +%%WWWDIR%%/app/assets/stylesheets/snippets.scss %%WWWDIR%%/app/assets/stylesheets/test.scss %%WWWDIR%%/app/controllers/abuse_reports_controller.rb %%WWWDIR%%/app/controllers/admin/abuse_reports_controller.rb @@ -3059,6 +3083,7 @@ %%WWWDIR%%/app/controllers/concerns/enforces_two_factor_authentication.rb %%WWWDIR%%/app/controllers/concerns/group_tree.rb %%WWWDIR%%/app/controllers/concerns/hooks_execution.rb +%%WWWDIR%%/app/controllers/concerns/internal_redirect.rb %%WWWDIR%%/app/controllers/concerns/issuable_actions.rb %%WWWDIR%%/app/controllers/concerns/issuable_collections.rb %%WWWDIR%%/app/controllers/concerns/issues_action.rb @@ -3108,6 +3133,7 @@ %%WWWDIR%%/app/controllers/groups/group_members_controller.rb %%WWWDIR%%/app/controllers/groups/labels_controller.rb %%WWWDIR%%/app/controllers/groups/milestones_controller.rb +%%WWWDIR%%/app/controllers/groups/runners_controller.rb %%WWWDIR%%/app/controllers/groups/settings/badges_controller.rb %%WWWDIR%%/app/controllers/groups/settings/ci_cd_controller.rb %%WWWDIR%%/app/controllers/groups/uploads_controller.rb @@ -3128,6 +3154,7 @@ %%WWWDIR%%/app/controllers/invites_controller.rb %%WWWDIR%%/app/controllers/jwt_controller.rb %%WWWDIR%%/app/controllers/koding_controller.rb +%%WWWDIR%%/app/controllers/ldap/omniauth_callbacks_controller.rb %%WWWDIR%%/app/controllers/metrics_controller.rb %%WWWDIR%%/app/controllers/notification_settings_controller.rb %%WWWDIR%%/app/controllers/oauth/applications_controller.rb @@ -3136,6 +3163,7 @@ %%WWWDIR%%/app/controllers/omniauth_callbacks_controller.rb %%WWWDIR%%/app/controllers/passwords_controller.rb %%WWWDIR%%/app/controllers/profiles/accounts_controller.rb +%%WWWDIR%%/app/controllers/profiles/active_sessions_controller.rb %%WWWDIR%%/app/controllers/profiles/application_controller.rb %%WWWDIR%%/app/controllers/profiles/avatars_controller.rb %%WWWDIR%%/app/controllers/profiles/chat_names_controller.rb @@ -3197,6 +3225,7 @@ %%WWWDIR%%/app/controllers/projects/merge_requests/diffs_controller.rb %%WWWDIR%%/app/controllers/projects/merge_requests_controller.rb %%WWWDIR%%/app/controllers/projects/milestones_controller.rb +%%WWWDIR%%/app/controllers/projects/mirrors_controller.rb %%WWWDIR%%/app/controllers/projects/network_controller.rb %%WWWDIR%%/app/controllers/projects/notes_controller.rb %%WWWDIR%%/app/controllers/projects/pages_controller.rb @@ -3246,6 +3275,7 @@ %%WWWDIR%%/app/controllers/snippets_controller.rb %%WWWDIR%%/app/controllers/uploads_controller.rb %%WWWDIR%%/app/controllers/user_callouts_controller.rb +%%WWWDIR%%/app/controllers/users/terms_controller.rb %%WWWDIR%%/app/controllers/users_controller.rb %%WWWDIR%%/app/finders/README.md %%WWWDIR%%/app/finders/access_requests_finder.rb @@ -3289,6 +3319,7 @@ %%WWWDIR%%/app/finders/user_recent_events_finder.rb %%WWWDIR%%/app/finders/users_finder.rb %%WWWDIR%%/app/helpers/accounts_helper.rb +%%WWWDIR%%/app/helpers/active_sessions_helper.rb %%WWWDIR%%/app/helpers/appearances_helper.rb %%WWWDIR%%/app/helpers/application_helper.rb %%WWWDIR%%/app/helpers/application_settings_helper.rb @@ -3310,6 +3341,7 @@ %%WWWDIR%%/app/helpers/compare_helper.rb %%WWWDIR%%/app/helpers/components_helper.rb %%WWWDIR%%/app/helpers/conversational_development_index_helper.rb +%%WWWDIR%%/app/helpers/count_helper.rb %%WWWDIR%%/app/helpers/dashboard_helper.rb %%WWWDIR%%/app/helpers/defer_script_tag_helper.rb %%WWWDIR%%/app/helpers/deploy_tokens_helper.rb @@ -3357,6 +3389,7 @@ %%WWWDIR%%/app/helpers/projects_helper.rb %%WWWDIR%%/app/helpers/rss_helper.rb %%WWWDIR%%/app/helpers/runners_helper.rb +%%WWWDIR%%/app/helpers/safe_params_helper.rb %%WWWDIR%%/app/helpers/search_helper.rb %%WWWDIR%%/app/helpers/selects_helper.rb %%WWWDIR%%/app/helpers/sentry_helper.rb @@ -3397,8 +3430,10 @@ %%WWWDIR%%/app/mailers/repository_check_mailer.rb %%WWWDIR%%/app/models/ability.rb %%WWWDIR%%/app/models/abuse_report.rb +%%WWWDIR%%/app/models/active_session.rb %%WWWDIR%%/app/models/appearance.rb %%WWWDIR%%/app/models/application_setting.rb +%%WWWDIR%%/app/models/application_setting/term.rb %%WWWDIR%%/app/models/audit_event.rb %%WWWDIR%%/app/models/award_emoji.rb %%WWWDIR%%/app/models/badge.rb @@ -3450,6 +3485,7 @@ %%WWWDIR%%/app/models/ci/artifact_blob.rb %%WWWDIR%%/app/models/ci/build.rb %%WWWDIR%%/app/models/ci/build_metadata.rb +%%WWWDIR%%/app/models/ci/build_trace_chunk.rb %%WWWDIR%%/app/models/ci/build_trace_section.rb %%WWWDIR%%/app/models/ci/build_trace_section_name.rb %%WWWDIR%%/app/models/ci/group.rb @@ -3461,6 +3497,7 @@ %%WWWDIR%%/app/models/ci/pipeline_schedule_variable.rb %%WWWDIR%%/app/models/ci/pipeline_variable.rb %%WWWDIR%%/app/models/ci/runner.rb +%%WWWDIR%%/app/models/ci/runner_namespace.rb %%WWWDIR%%/app/models/ci/runner_project.rb %%WWWDIR%%/app/models/ci/stage.rb %%WWWDIR%%/app/models/ci/trigger.rb @@ -3499,6 +3536,7 @@ %%WWWDIR%%/app/models/concerns/each_batch.rb %%WWWDIR%%/app/models/concerns/editable.rb %%WWWDIR%%/app/models/concerns/expirable.rb +%%WWWDIR%%/app/models/concerns/fast_destroy_all.rb %%WWWDIR%%/app/models/concerns/faster_cache_keys.rb %%WWWDIR%%/app/models/concerns/feature_gate.rb %%WWWDIR%%/app/models/concerns/ghost_user.rb @@ -3513,7 +3551,6 @@ %%WWWDIR%%/app/models/concerns/mentionable.rb %%WWWDIR%%/app/models/concerns/mentionable/reference_regexes.rb %%WWWDIR%%/app/models/concerns/milestoneish.rb -%%WWWDIR%%/app/models/concerns/nonatomic_internal_id.rb %%WWWDIR%%/app/models/concerns/note_on_diff.rb %%WWWDIR%%/app/models/concerns/noteable.rb %%WWWDIR%%/app/models/concerns/participable.rb @@ -3647,11 +3684,13 @@ %%WWWDIR%%/app/models/project.rb %%WWWDIR%%/app/models/project_authorization.rb %%WWWDIR%%/app/models/project_auto_devops.rb +%%WWWDIR%%/app/models/project_ci_cd_setting.rb %%WWWDIR%%/app/models/project_custom_attribute.rb %%WWWDIR%%/app/models/project_deploy_token.rb %%WWWDIR%%/app/models/project_feature.rb %%WWWDIR%%/app/models/project_group_link.rb %%WWWDIR%%/app/models/project_import_data.rb +%%WWWDIR%%/app/models/project_import_state.rb %%WWWDIR%%/app/models/project_label.rb %%WWWDIR%%/app/models/project_services/asana_service.rb %%WWWDIR%%/app/models/project_services/assembla_service.rb @@ -3715,6 +3754,7 @@ %%WWWDIR%%/app/models/readme_blob.rb %%WWWDIR%%/app/models/redirect_route.rb %%WWWDIR%%/app/models/release.rb +%%WWWDIR%%/app/models/remote_mirror.rb %%WWWDIR%%/app/models/repository.rb %%WWWDIR%%/app/models/route.rb %%WWWDIR%%/app/models/security_event.rb @@ -3727,6 +3767,7 @@ %%WWWDIR%%/app/models/storage/legacy_project.rb %%WWWDIR%%/app/models/subscription.rb %%WWWDIR%%/app/models/system_note_metadata.rb +%%WWWDIR%%/app/models/term_agreement.rb %%WWWDIR%%/app/models/timelog.rb %%WWWDIR%%/app/models/todo.rb %%WWWDIR%%/app/models/tree.rb @@ -3742,6 +3783,7 @@ %%WWWDIR%%/app/models/users_star_project.rb %%WWWDIR%%/app/models/wiki_directory.rb %%WWWDIR%%/app/models/wiki_page.rb +%%WWWDIR%%/app/policies/application_setting/term_policy.rb %%WWWDIR%%/app/policies/base_policy.rb %%WWWDIR%%/app/policies/ci/build_policy.rb %%WWWDIR%%/app/policies/ci/pipeline_policy.rb @@ -3780,7 +3822,9 @@ %%WWWDIR%%/app/presenters/ci/pipeline_presenter.rb %%WWWDIR%%/app/presenters/ci/variable_presenter.rb %%WWWDIR%%/app/presenters/clusters/cluster_presenter.rb +%%WWWDIR%%/app/presenters/commit_status_presenter.rb %%WWWDIR%%/app/presenters/conversational_development_index/metric_presenter.rb +%%WWWDIR%%/app/presenters/generic_commit_status_presenter.rb %%WWWDIR%%/app/presenters/group_member_presenter.rb %%WWWDIR%%/app/presenters/member_presenter.rb %%WWWDIR%%/app/presenters/members_presenter.rb @@ -3866,12 +3910,14 @@ %%WWWDIR%%/app/serializers/pipeline_entity.rb %%WWWDIR%%/app/serializers/pipeline_serializer.rb %%WWWDIR%%/app/serializers/project_entity.rb +%%WWWDIR%%/app/serializers/project_mirror_entity.rb %%WWWDIR%%/app/serializers/project_note_entity.rb %%WWWDIR%%/app/serializers/project_note_serializer.rb %%WWWDIR%%/app/serializers/project_serializer.rb %%WWWDIR%%/app/serializers/request_aware_entity.rb %%WWWDIR%%/app/serializers/runner_entity.rb %%WWWDIR%%/app/serializers/stage_entity.rb +%%WWWDIR%%/app/serializers/stage_serializer.rb %%WWWDIR%%/app/serializers/status_entity.rb %%WWWDIR%%/app/serializers/submodule_entity.rb %%WWWDIR%%/app/serializers/time_trackable_entity.rb @@ -3942,9 +3988,11 @@ %%WWWDIR%%/app/services/commits/create_service.rb %%WWWDIR%%/app/services/commits/revert_service.rb %%WWWDIR%%/app/services/compare_service.rb +%%WWWDIR%%/app/services/concerns/exclusive_lease_guard.rb %%WWWDIR%%/app/services/concerns/issues/resolve_discussions.rb %%WWWDIR%%/app/services/concerns/update_visibility_level.rb %%WWWDIR%%/app/services/concerns/users/new_user_notifier.rb +%%WWWDIR%%/app/services/concerns/users/participable_service.rb %%WWWDIR%%/app/services/create_branch_service.rb %%WWWDIR%%/app/services/create_deployment_service.rb %%WWWDIR%%/app/services/create_release_service.rb @@ -4051,6 +4099,7 @@ %%WWWDIR%%/app/services/notes/post_process_service.rb %%WWWDIR%%/app/services/notes/quick_actions_service.rb %%WWWDIR%%/app/services/notes/render_service.rb +%%WWWDIR%%/app/services/notes/resolve_service.rb %%WWWDIR%%/app/services/notes/update_service.rb %%WWWDIR%%/app/services/notification_recipient_service.rb %%WWWDIR%%/app/services/notification_service.rb @@ -4097,6 +4146,7 @@ %%WWWDIR%%/app/services/projects/unlink_fork_service.rb %%WWWDIR%%/app/services/projects/update_pages_configuration_service.rb %%WWWDIR%%/app/services/projects/update_pages_service.rb +%%WWWDIR%%/app/services/projects/update_remote_mirror_service.rb %%WWWDIR%%/app/services/projects/update_service.rb %%WWWDIR%%/app/services/prometheus/adapter_service.rb %%WWWDIR%%/app/services/protected_branches/access_level_params.rb @@ -4143,6 +4193,7 @@ %%WWWDIR%%/app/services/users/last_push_event_service.rb %%WWWDIR%%/app/services/users/migrate_to_ghost_user_service.rb %%WWWDIR%%/app/services/users/refresh_authorized_projects_service.rb +%%WWWDIR%%/app/services/users/respond_to_terms_service.rb %%WWWDIR%%/app/services/users/update_service.rb %%WWWDIR%%/app/services/validate_new_branch_service.rb %%WWWDIR%%/app/services/verify_pages_domain_service.rb @@ -4214,11 +4265,13 @@ %%WWWDIR%%/app/views/admin/application_settings/_realtime.html.haml %%WWWDIR%%/app/views/admin/application_settings/_registry.html.haml %%WWWDIR%%/app/views/admin/application_settings/_repository_check.html.haml +%%WWWDIR%%/app/views/admin/application_settings/_repository_mirrors_form.html.haml %%WWWDIR%%/app/views/admin/application_settings/_repository_storage.html.haml %%WWWDIR%%/app/views/admin/application_settings/_signin.html.haml %%WWWDIR%%/app/views/admin/application_settings/_signup.html.haml %%WWWDIR%%/app/views/admin/application_settings/_spam.html.haml %%WWWDIR%%/app/views/admin/application_settings/_terminal.html.haml +%%WWWDIR%%/app/views/admin/application_settings/_terms.html.haml %%WWWDIR%%/app/views/admin/application_settings/_usage.html.haml %%WWWDIR%%/app/views/admin/application_settings/_visibility_and_access.html.haml %%WWWDIR%%/app/views/admin/application_settings/show.html.haml @@ -4447,6 +4500,10 @@ %%WWWDIR%%/app/views/groups/milestones/show.html.haml %%WWWDIR%%/app/views/groups/new.html.haml %%WWWDIR%%/app/views/groups/projects.html.haml +%%WWWDIR%%/app/views/groups/runners/_group_runners.html.haml +%%WWWDIR%%/app/views/groups/runners/_index.html.haml +%%WWWDIR%%/app/views/groups/runners/_runner.html.haml +%%WWWDIR%%/app/views/groups/runners/edit.html.haml %%WWWDIR%%/app/views/groups/settings/badges/index.html.haml %%WWWDIR%%/app/views/groups/settings/ci_cd/show.html.haml %%WWWDIR%%/app/views/groups/show.atom.builder @@ -4507,6 +4564,7 @@ %%WWWDIR%%/app/views/layouts/explore.html.haml %%WWWDIR%%/app/views/layouts/group.html.haml %%WWWDIR%%/app/views/layouts/group_settings.html.haml +%%WWWDIR%%/app/views/layouts/header/_current_user_dropdown.html.haml %%WWWDIR%%/app/views/layouts/header/_default.html.haml %%WWWDIR%%/app/views/layouts/header/_empty.html.haml %%WWWDIR%%/app/views/layouts/header/_new_dropdown.haml @@ -4534,6 +4592,7 @@ %%WWWDIR%%/app/views/layouts/project_settings.html.haml %%WWWDIR%%/app/views/layouts/search.html.haml %%WWWDIR%%/app/views/layouts/snippets.html.haml +%%WWWDIR%%/app/views/layouts/terms.html.haml %%WWWDIR%%/app/views/layouts/xml.atom.builder %%WWWDIR%%/app/views/notify/_note_email.html.haml %%WWWDIR%%/app/views/notify/_note_email.text.erb @@ -4543,6 +4602,8 @@ %%WWWDIR%%/app/views/notify/closed_issue_email.text.haml %%WWWDIR%%/app/views/notify/closed_merge_request_email.html.haml %%WWWDIR%%/app/views/notify/closed_merge_request_email.text.haml +%%WWWDIR%%/app/views/notify/issue_due_email.html.haml +%%WWWDIR%%/app/views/notify/issue_due_email.text.erb %%WWWDIR%%/app/views/notify/issue_moved_email.html.haml %%WWWDIR%%/app/views/notify/issue_moved_email.text.erb %%WWWDIR%%/app/views/notify/issue_status_changed_email.html.haml @@ -4629,6 +4690,8 @@ %%WWWDIR%%/app/views/peek/views/_sidekiq.html.haml %%WWWDIR%%/app/views/profiles/_event_table.html.haml %%WWWDIR%%/app/views/profiles/accounts/show.html.haml +%%WWWDIR%%/app/views/profiles/active_sessions/_active_session.html.haml +%%WWWDIR%%/app/views/profiles/active_sessions/index.html.haml %%WWWDIR%%/app/views/profiles/audit_log.html.haml %%WWWDIR%%/app/views/profiles/chat_names/_chat_name.html.haml %%WWWDIR%%/app/views/profiles/chat_names/index.html.haml @@ -4670,6 +4733,7 @@ %%WWWDIR%%/app/views/projects/_fork_suggestion.html.haml %%WWWDIR%%/app/views/projects/_gitlab_import_modal.html.haml %%WWWDIR%%/app/views/projects/_home_panel.html.haml +%%WWWDIR%%/app/views/projects/_import_project_pane.html.haml %%WWWDIR%%/app/views/projects/_issuable_by_email.html.haml %%WWWDIR%%/app/views/projects/_last_push.html.haml %%WWWDIR%%/app/views/projects/_md_preview.html.haml @@ -4682,7 +4746,6 @@ %%WWWDIR%%/app/views/projects/_project_templates.html.haml %%WWWDIR%%/app/views/projects/_readme.html.haml %%WWWDIR%%/app/views/projects/_stat_anchor_list.html.haml -%%WWWDIR%%/app/views/projects/_visibility_select.html.haml %%WWWDIR%%/app/views/projects/_wiki.html.haml %%WWWDIR%%/app/views/projects/_zen.html.haml %%WWWDIR%%/app/views/projects/activity.html.haml @@ -4720,6 +4783,7 @@ %%WWWDIR%%/app/views/projects/blob/viewers/_empty.html.haml %%WWWDIR%%/app/views/projects/blob/viewers/_gitlab_ci_yml.html.haml %%WWWDIR%%/app/views/projects/blob/viewers/_gitlab_ci_yml_loading.html.haml +%%WWWDIR%%/app/views/projects/blob/viewers/_highlight_embed.html.haml %%WWWDIR%%/app/views/projects/blob/viewers/_image.html.haml %%WWWDIR%%/app/views/projects/blob/viewers/_license.html.haml %%WWWDIR%%/app/views/projects/blob/viewers/_loading.html.haml @@ -4756,6 +4820,7 @@ %%WWWDIR%%/app/views/projects/clusters/_cluster.html.haml %%WWWDIR%%/app/views/projects/clusters/_dropdown.html.haml %%WWWDIR%%/app/views/projects/clusters/_empty_state.html.haml +%%WWWDIR%%/app/views/projects/clusters/_gcp_signup_offer_banner.html.haml %%WWWDIR%%/app/views/projects/clusters/_integration_form.html.haml %%WWWDIR%%/app/views/projects/clusters/_sidebar.html.haml %%WWWDIR%%/app/views/projects/clusters/gcp/_form.html.haml @@ -4942,6 +5007,9 @@ %%WWWDIR%%/app/views/projects/milestones/new.html.haml %%WWWDIR%%/app/views/projects/milestones/show.html.haml %%WWWDIR%%/app/views/projects/milestones/update.js.haml +%%WWWDIR%%/app/views/projects/mirrors/_instructions.html.haml +%%WWWDIR%%/app/views/projects/mirrors/_push.html.haml +%%WWWDIR%%/app/views/projects/mirrors/_show.html.haml %%WWWDIR%%/app/views/projects/network/_head.html.haml %%WWWDIR%%/app/views/projects/network/show.html.haml %%WWWDIR%%/app/views/projects/network/show.json.erb @@ -5014,13 +5082,12 @@ %%WWWDIR%%/app/views/projects/releases/edit.html.haml %%WWWDIR%%/app/views/projects/remove_fork.js.haml %%WWWDIR%%/app/views/projects/repositories/_feed.html.haml -%%WWWDIR%%/app/views/projects/runners/_form.html.haml +%%WWWDIR%%/app/views/projects/runners/_group_runners.html.haml %%WWWDIR%%/app/views/projects/runners/_index.html.haml %%WWWDIR%%/app/views/projects/runners/_runner.html.haml %%WWWDIR%%/app/views/projects/runners/_shared_runners.html.haml %%WWWDIR%%/app/views/projects/runners/_specific_runners.html.haml %%WWWDIR%%/app/views/projects/runners/edit.html.haml -%%WWWDIR%%/app/views/projects/runners/show.html.haml %%WWWDIR%%/app/views/projects/services/_deprecated_message.html.haml %%WWWDIR%%/app/views/projects/services/_form.html.haml %%WWWDIR%%/app/views/projects/services/_index.html.haml @@ -5033,6 +5100,7 @@ %%WWWDIR%%/app/views/projects/services/prometheus/_show.html.haml %%WWWDIR%%/app/views/projects/services/slack_slash_commands/_help.html.haml %%WWWDIR%%/app/views/projects/settings/badges/index.html.haml +%%WWWDIR%%/app/views/projects/settings/ci_cd/_autodevops_form.html.haml %%WWWDIR%%/app/views/projects/settings/ci_cd/_badge.html.haml %%WWWDIR%%/app/views/projects/settings/ci_cd/_form.html.haml %%WWWDIR%%/app/views/projects/settings/ci_cd/show.html.haml @@ -5144,6 +5212,7 @@ %%WWWDIR%%/app/views/shared/_recaptcha_form.html.haml %%WWWDIR%%/app/views/shared/_ref_dropdown.html.haml %%WWWDIR%%/app/views/shared/_ref_switcher.html.haml +%%WWWDIR%%/app/views/shared/_remote_mirror_update_button.html.haml %%WWWDIR%%/app/views/shared/_service_settings.html.haml %%WWWDIR%%/app/views/shared/_sidebar_toggle_button.html.haml %%WWWDIR%%/app/views/shared/_sort_dropdown.html.haml @@ -5343,6 +5412,7 @@ %%WWWDIR%%/app/views/shared/members/_requests.html.haml %%WWWDIR%%/app/views/shared/members/_sort_dropdown.html.haml %%WWWDIR%%/app/views/shared/members/update.js.haml +%%WWWDIR%%/app/views/shared/milestones/_deprecation_message.html.haml %%WWWDIR%%/app/views/shared/milestones/_form_dates.html.haml %%WWWDIR%%/app/views/shared/milestones/_issuable.html.haml %%WWWDIR%%/app/views/shared/milestones/_issuables.html.haml @@ -5372,10 +5442,15 @@ %%WWWDIR%%/app/views/shared/projects/_list.html.haml %%WWWDIR%%/app/views/shared/projects/_project.html.haml %%WWWDIR%%/app/views/shared/projects/_search_form.html.haml +%%WWWDIR%%/app/views/shared/runners/_form.html.haml +%%WWWDIR%%/app/views/shared/runners/_runner_description.html.haml +%%WWWDIR%%/app/views/shared/runners/show.html.haml %%WWWDIR%%/app/views/shared/snippets/_blob.html.haml +%%WWWDIR%%/app/views/shared/snippets/_embed.html.haml %%WWWDIR%%/app/views/shared/snippets/_form.html.haml %%WWWDIR%%/app/views/shared/snippets/_header.html.haml %%WWWDIR%%/app/views/shared/snippets/_snippet.html.haml +%%WWWDIR%%/app/views/shared/snippets/show.js.haml %%WWWDIR%%/app/views/shared/tokens/_scopes_form.html.haml %%WWWDIR%%/app/views/shared/tokens/_scopes_list.html.haml %%WWWDIR%%/app/views/shared/web_hooks/_form.html.haml @@ -5405,6 +5480,7 @@ %%WWWDIR%%/app/views/users/calendar_activities.html.haml %%WWWDIR%%/app/views/users/show.atom.builder %%WWWDIR%%/app/views/users/show.html.haml +%%WWWDIR%%/app/views/users/terms/index.html.haml %%WWWDIR%%/app/workers/admin_email_worker.rb %%WWWDIR%%/app/workers/all_queues.yml %%WWWDIR%%/app/workers/archive_trace_worker.rb @@ -5417,6 +5493,7 @@ %%WWWDIR%%/app/workers/build_success_worker.rb %%WWWDIR%%/app/workers/build_trace_sections_worker.rb %%WWWDIR%%/app/workers/check_gcp_project_billing_worker.rb +%%WWWDIR%%/app/workers/ci/build_trace_chunk_flush_worker.rb %%WWWDIR%%/app/workers/cluster_install_app_worker.rb %%WWWDIR%%/app/workers/cluster_provision_worker.rb %%WWWDIR%%/app/workers/cluster_wait_for_app_installation_worker.rb @@ -5431,6 +5508,7 @@ %%WWWDIR%%/app/workers/concerns/gitlab/github_import/queue.rb %%WWWDIR%%/app/workers/concerns/gitlab/github_import/rescheduling_methods.rb %%WWWDIR%%/app/workers/concerns/gitlab/github_import/stage_methods.rb +%%WWWDIR%%/app/workers/concerns/mail_scheduler_queue.rb %%WWWDIR%%/app/workers/concerns/new_issuable.rb %%WWWDIR%%/app/workers/concerns/object_storage_queue.rb %%WWWDIR%%/app/workers/concerns/pipeline_background_queue.rb @@ -5468,6 +5546,9 @@ %%WWWDIR%%/app/workers/import_export_project_cleanup_worker.rb %%WWWDIR%%/app/workers/invalid_gpg_signature_update_worker.rb %%WWWDIR%%/app/workers/irker_worker.rb +%%WWWDIR%%/app/workers/issue_due_scheduler_worker.rb +%%WWWDIR%%/app/workers/mail_scheduler/issue_due_worker.rb +%%WWWDIR%%/app/workers/mail_scheduler/notification_service_worker.rb %%WWWDIR%%/app/workers/merge_worker.rb %%WWWDIR%%/app/workers/namespaceless_project_destroy_worker.rb %%WWWDIR%%/app/workers/new_issue_worker.rb @@ -5508,6 +5589,8 @@ %%WWWDIR%%/app/workers/repository_check/single_repository_worker.rb %%WWWDIR%%/app/workers/repository_fork_worker.rb %%WWWDIR%%/app/workers/repository_import_worker.rb +%%WWWDIR%%/app/workers/repository_remove_remote_worker.rb +%%WWWDIR%%/app/workers/repository_update_remote_mirror_worker.rb %%WWWDIR%%/app/workers/requests_profiles_worker.rb %%WWWDIR%%/app/workers/run_pipeline_schedule_worker.rb %%WWWDIR%%/app/workers/schedule_update_user_activity_worker.rb @@ -5537,6 +5620,7 @@ @(git,,544) %%WWWDIR%%/bin/rake @(git,,544) %%WWWDIR%%/bin/rspec @(git,,544) %%WWWDIR%%/bin/rspec-stackprof +@(git,,544) %%WWWDIR%%/bin/secpick @(git,,544) %%WWWDIR%%/bin/setup @(git,,544) %%WWWDIR%%/bin/spinach @(git,,544) %%WWWDIR%%/bin/spring @@ -5545,6 +5629,7 @@ @(git,,544) %%WWWDIR%%/bin/web @(git,,544) %%WWWDIR%%/bin/with_env %%WWWDIR%%/changelogs/archive.md +%%WWWDIR%%/changelogs/no-rm-rf-gitlab-basics.yml %%WWWDIR%%/config.ru %%WWWDIR%%/config/README.md %%WWWDIR%%/config/application.rb @@ -5563,7 +5648,7 @@ %%WWWDIR%%/config/initializers/0_inflections.rb %%WWWDIR%%/config/initializers/0_post_deployment_migrations.rb %%WWWDIR%%/config/initializers/1_settings.rb -%%WWWDIR%%/config/initializers/2_app.rb +%%WWWDIR%%/config/initializers/2_gitlab.rb %%WWWDIR%%/config/initializers/5_backend.rb %%WWWDIR%%/config/initializers/6_validations.rb %%WWWDIR%%/config/initializers/7_prometheus_metrics.rb @@ -5572,6 +5657,7 @@ %%WWWDIR%%/config/initializers/8_metrics.rb %%WWWDIR%%/config/initializers/9_fast_gettext.rb %%WWWDIR%%/config/initializers/active_record_array_type_casting.rb +%%WWWDIR%%/config/initializers/active_record_avoid_type_casting_in_uniqueness_validator.rb %%WWWDIR%%/config/initializers/active_record_data_types.rb %%WWWDIR%%/config/initializers/active_record_locking.rb %%WWWDIR%%/config/initializers/active_record_mysql_timestamp.rb *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Thu Jun 21 16:23:16 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABE611023265; Thu, 21 Jun 2018 16:23:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3C9988398B; Thu, 21 Jun 2018 16:23:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DA4B14283; Thu, 21 Jun 2018 16:23:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LGNF8B005042; Thu, 21 Jun 2018 16:23:15 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LGNFmq005041; Thu, 21 Jun 2018 16:23:15 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806211623.w5LGNFmq005041@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jun 2018 16:23:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472982 - head/net-p2p/qbittorrent X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net-p2p/qbittorrent X-SVN-Commit-Revision: 472982 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 16:23:16 -0000 Author: yuri Date: Thu Jun 21 16:23:15 2018 New Revision: 472982 URL: https://svnweb.freebsd.org/changeset/ports/472982 Log: net-p2p/qbittorrent: Limit USE_QT5=svg to @default flavor It is only needed for the UI. PR: 229210 Submitted by: Ralf van der Enden Modified: head/net-p2p/qbittorrent/Makefile Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Thu Jun 21 15:45:20 2018 (r472981) +++ head/net-p2p/qbittorrent/Makefile Thu Jun 21 16:23:15 2018 (r472982) @@ -3,6 +3,7 @@ PORTNAME= qbittorrent DISTVERSION= 4.1.1 +PORTREVISION= 1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -25,14 +26,14 @@ nox_PLIST= ${NONEXISTENT} USES= compiler:c++11-lib pkgconfig tar:xz GNU_CONFIGURE= yes -USE_QT5= core network svg xml buildtools_build linguisttools_build qmake_build +USE_QT5= core network xml buildtools_build linguisttools_build qmake_build CONFIGURE_ARGS= CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" QT_NONSTANDARD= yes DESTDIRNAME= INSTALL_ROOT .if ${FLAVOR} == default USES+= desktop-file-utils -USE_QT5+= concurrent gui widgets +USE_QT5+= concurrent gui svg widgets USE_GL= gl .endif From owner-svn-ports-head@freebsd.org Thu Jun 21 16:52:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F0C11024008; Thu, 21 Jun 2018 16:52:26 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E158084E09; Thu, 21 Jun 2018 16:52:25 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C2DDE147BC; Thu, 21 Jun 2018 16:52:25 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LGqP68021873; Thu, 21 Jun 2018 16:52:25 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LGq961020858; Thu, 21 Jun 2018 16:52:09 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806211652.w5LGq961020858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 21 Jun 2018 16:52:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472983 - in head: . Mk accessibility/kmousetool astro/libkgeomap-kde4 astro/marble astro/marble-kde4 astro/stellarium-qt4 audio/amarok-kde4 audio/audiocd-kio audio/juk audio/kmix-kde4 ... X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: . Mk accessibility/kmousetool astro/libkgeomap-kde4 astro/marble astro/marble-kde4 astro/stellarium-qt4 audio/amarok-kde4 audio/audiocd-kio audio/juk audio/kmix-kde4 audio/kscd-kde4 audio/las... X-SVN-Commit-Revision: 472983 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 16:52:26 -0000 Author: tcberner Date: Thu Jun 21 16:52:09 2018 New Revision: 472983 URL: https://svnweb.freebsd.org/changeset/ports/472983 Log: multimedia/*phonon*: update and flavorize with @qt4/@qt5 Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14632 Added: head/multimedia/phonon-gstreamer/pkg-plist.qt4 - copied unchanged from r472807, head/multimedia/phonon-gstreamer/pkg-plist head/multimedia/phonon-gstreamer/pkg-plist.qt5 - copied, changed from r472982, head/multimedia/phonon-gstreamer/pkg-plist head/multimedia/phonon/pkg-plist.qt4 - copied unchanged from r472807, head/multimedia/phonon/pkg-plist head/multimedia/phonon/pkg-plist.qt5 - copied, changed from r472982, head/multimedia/phonon/pkg-plist Deleted: head/multimedia/phonon-gstreamer/pkg-plist head/multimedia/phonon-vlc/pkg-plist head/multimedia/phonon/pkg-plist head/multimedia/qt5-phonon4/ head/multimedia/qt5-phonon4-designerplugin/ head/multimedia/qt5-phonon4-gstreamer/ head/multimedia/qt5-phonon4-vlc/ Modified: head/MOVED head/Mk/bsd.qt.mk head/accessibility/kmousetool/Makefile head/astro/libkgeomap-kde4/Makefile head/astro/marble-kde4/Makefile head/astro/marble/Makefile head/astro/stellarium-qt4/Makefile head/audio/amarok-kde4/Makefile head/audio/audiocd-kio/Makefile head/audio/juk/Makefile head/audio/kmix-kde4/Makefile head/audio/kscd-kde4/Makefile head/audio/lastfm-desktop/Makefile head/audio/libkcompactdisc-kde4/Makefile head/audio/libkcompactdisc/Makefile head/audio/minitunes/Makefile head/audio/soundkonverter/Makefile head/chinese/qterm/Makefile head/converters/wkhtmltopdf/Makefile head/databases/qt4-sql/Makefile head/deskutils/kalarm/Makefile head/deskutils/korganizer/Makefile head/deskutils/plasma-applet-cwp/Makefile head/devel/kf5-knotifications/Makefile head/devel/kf5-knotifyconfig/Makefile head/devel/kio-extras/Makefile head/devel/pyside/Makefile head/devel/qt4/Makefile head/devel/qtscriptgenerator/Makefile head/devel/smokeqt-kde4/Makefile head/editors/calligra/Makefile head/finance/kmymoney-kde4/Makefile head/games/auralquiz/Makefile head/games/blinken/Makefile head/games/bomber/Makefile head/games/kblocks/Makefile head/games/kbounce/Makefile head/games/kolf/Makefile head/games/kollision/Makefile head/games/kpat/Makefile head/games/ksirk/Makefile head/games/ktuberling/Makefile head/games/libkdegames-kde4/Makefile head/games/pairs-kde4/Makefile head/graphics/gwenview/Makefile head/graphics/okular/Makefile head/irc/konversation/Makefile head/irc/quassel/Makefile head/japanese/qt4-codecs-jp/Makefile head/korean/qt4-codecs-kr/Makefile head/misc/bibletime/Makefile head/misc/klettres/Makefile head/misc/ktouch-kde4/Makefile head/misc/kwordquiz/Makefile head/misc/qt4-qtconfig/Makefile head/misc/qt4-qtdemo/Makefile head/misc/saaghar/Makefile head/misc/tellico-kde4/Makefile head/multimedia/Makefile head/multimedia/dragon-kde4/Makefile head/multimedia/dragon/Makefile head/multimedia/kaffeine/Makefile head/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile head/multimedia/kmplayer-kde4/Makefile head/multimedia/mediadownloader/Makefile head/multimedia/minitube/Makefile head/multimedia/phonon-designerplugin/Makefile head/multimedia/phonon-designerplugin/pkg-descr head/multimedia/phonon-gstreamer/Makefile head/multimedia/phonon-gstreamer/distinfo head/multimedia/phonon-gstreamer/pkg-descr head/multimedia/phonon-vlc/Makefile head/multimedia/phonon-vlc/distinfo head/multimedia/phonon-xine/Makefile head/multimedia/phonon/Makefile head/multimedia/phonon/distinfo head/multimedia/phonon/pkg-descr head/multimedia/py-openlp/Makefile head/multimedia/py-qt4-phonon/Makefile head/multimedia/subtitlecomposer-kde4/Makefile head/net-im/kopete/Makefile head/net-p2p/ktorrent/Makefile head/net/mailcommon/Makefile head/net/smb4k-kde4/Makefile head/sysutils/k3b-kde4/Makefile head/textproc/goldendict/Makefile head/www/kf5-khtml/Makefile head/x11-fm/dolphin/Makefile head/x11-toolkits/qt4-declarative/Makefile head/x11-toolkits/qt4-gui/Makefile head/x11/kde-runtime-kde4/Makefile head/x11/kdelibs-kde4/Makefile head/x11/libkonq-kde4/Makefile head/x11/plasma5-plasma-desktop/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Thu Jun 21 16:23:15 2018 (r472982) +++ head/MOVED Thu Jun 21 16:52:09 2018 (r472983) @@ -10284,3 +10284,7 @@ x11-themes/adwaita-qt4|x11-themes/adwaita-qt@qt4|2018- x11-themes/adwaita-qt5|x11-themes/adwaita-qt@qt5|2018-06-19|Move to flavored version net-p2p/qbittorrent-nox11|net-p2p/qbittorrent@nox|2018-06-20|Moved to a flavored version math/digitizer|graphics/engauge-digitizer|2018-06-20|The previously deleted port math/digitizer is now graphics/engauge-digitizer +multimedia/qt5-phonon4|multimedia/phonon@qt5|2018-06-21|Moved to a flavored version +multimedia/qt5-phonon4-designerplugin|multimedia/phonon-designerplugin@qt5|2018-06-21|Moved to a flavored version +multimedia/qt5-phonon4-gstreamer|multimedia/phonon-gstreamer@qt5|2018-06-21|Moved to a flavored version +multimedia/qt5-phonon4-vlc|multimedia/phonon-vlc@qt5|2018-06-21|Moved to a flavored version Modified: head/Mk/bsd.qt.mk ============================================================================== --- head/Mk/bsd.qt.mk Thu Jun 21 16:23:15 2018 (r472982) +++ head/Mk/bsd.qt.mk Thu Jun 21 16:52:09 2018 (r472983) @@ -478,7 +478,7 @@ pixeltool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/pixelto phonon_PORT= multimedia/phonon phonon_LIB= libphonon.so -phonon4_PORT= multimedia/${_QT_RELNAME}-phonon4 +phonon4_PORT= multimedia/phonon@${_QT_RELNAME} phonon4_LIB= libphonon4${_QT_RELNAME}.so phonon-gst_PORT= multimedia/phonon-gstreamer Modified: head/accessibility/kmousetool/Makefile ============================================================================== --- head/accessibility/kmousetool/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/accessibility/kmousetool/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kmousetool DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/astro/libkgeomap-kde4/Makefile ============================================================================== --- head/astro/libkgeomap-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/astro/libkgeomap-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= libkgeomap PORTVERSION= ${KDE4_APPLICATIONS_VERSION} -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= astro kde MASTER_SITES= KDE/${KDE4_APPLICATIONS_BRANCH}/applications/${PORTVERSION}/src PKGNAMESUFFIX= -kde4 Modified: head/astro/marble-kde4/Makefile ============================================================================== --- head/astro/marble-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/astro/marble-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= marble PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= astro kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/astro/marble/Makefile ============================================================================== --- head/astro/marble/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/astro/marble/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/astro/stellarium-qt4/Makefile ============================================================================== --- head/astro/stellarium-qt4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/astro/stellarium-qt4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,6 +3,7 @@ PORTNAME= stellarium PORTVERSION= 0.12.9 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/Stellarium-sources/${PORTVERSION} PKGNAMESUFFIX= -qt4 Modified: head/audio/amarok-kde4/Makefile ============================================================================== --- head/audio/amarok-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/amarok-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= amarok PORTVERSION= 2.8.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= audio kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src Modified: head/audio/audiocd-kio/Makefile ============================================================================== --- head/audio/audiocd-kio/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/audiocd-kio/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= audiocd-kio DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/audio/juk/Makefile ============================================================================== --- head/audio/juk/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/juk/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= juk DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/audio/kmix-kde4/Makefile ============================================================================== --- head/audio/kmix-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/kmix-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= kmix PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/audio/kscd-kde4/Makefile ============================================================================== --- head/audio/kscd-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/kscd-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= kscd PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/audio/lastfm-desktop/Makefile ============================================================================== --- head/audio/lastfm-desktop/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/lastfm-desktop/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= lastfm-desktop PORTVERSION= 2.1.36 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MAINTAINER= ports@FreeBSD.org @@ -39,7 +39,7 @@ OPTIONS_DEFAULT= VLC GSTREAMER_DESC= Multimedia via Phonon-GStreamer GSTREAMER_USE= QT4=phonon-gst_run VLC_DESC= Multimedia via Phonon-VLC -VLC_RUN_DEPENDS= phonon-vlc>=0.6.1:multimedia/phonon-vlc +VLC_RUN_DEPENDS= phonon-vlc-qt4>=0.6.1:multimedia/phonon-vlc@qt4 do-install: @${MKDIR} ${STAGEDIR}${DATADIR} Modified: head/audio/libkcompactdisc-kde4/Makefile ============================================================================== --- head/audio/libkcompactdisc-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/libkcompactdisc-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= libkcompactdisc PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/audio/libkcompactdisc/Makefile ============================================================================== --- head/audio/libkcompactdisc/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/libkcompactdisc/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= libkcompactdisc DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/audio/minitunes/Makefile ============================================================================== --- head/audio/minitunes/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/minitunes/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= minitunes PORTVERSION= 0.1.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://flavio.tordini.org/files/${PORTNAME}/ Modified: head/audio/soundkonverter/Makefile ============================================================================== --- head/audio/soundkonverter/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/audio/soundkonverter/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -4,7 +4,7 @@ PORTNAME= soundkonverter PORTVERSION= 2.2.2 DISTVERSIONPREFIX= v -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= audio kde MAINTAINER= dbn@FreeBSD.org Modified: head/chinese/qterm/Makefile ============================================================================== --- head/chinese/qterm/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/chinese/qterm/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= qterm PORTVERSION= 0.5.12 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= chinese MASTER_SITES= SF/qterm/qterm/${PORTVERSION} Modified: head/converters/wkhtmltopdf/Makefile ============================================================================== --- head/converters/wkhtmltopdf/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/converters/wkhtmltopdf/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -4,6 +4,7 @@ PORTNAME= wkhtmltopdf PORTVERSION= 0.12.5 PORTREVISION= 1 +PORTREVISION= 1 CATEGORIES= converters MAINTAINER= pi@FreeBSD.org Modified: head/databases/qt4-sql/Makefile ============================================================================== --- head/databases/qt4-sql/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/databases/qt4-sql/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= sql DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases PKGNAMEPREFIX= qt4- Modified: head/deskutils/kalarm/Makefile ============================================================================== --- head/deskutils/kalarm/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/deskutils/kalarm/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kalarm DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/deskutils/korganizer/Makefile ============================================================================== --- head/deskutils/korganizer/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/deskutils/korganizer/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= korganizer DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/deskutils/plasma-applet-cwp/Makefile ============================================================================== --- head/deskutils/plasma-applet-cwp/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/deskutils/plasma-applet-cwp/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= cwp PORTVERSION= 1.12.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils kde MASTER_SITES= http://kde-look.org/CONTENT/content-files/ PKGNAMEPREFIX= plasma-applet- Modified: head/devel/kf5-knotifications/Makefile ============================================================================== --- head/devel/kf5-knotifications/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/kf5-knotifications/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= knotifications DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org Modified: head/devel/kf5-knotifyconfig/Makefile ============================================================================== --- head/devel/kf5-knotifyconfig/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/kf5-knotifyconfig/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= knotifyconfig DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org Modified: head/devel/kio-extras/Makefile ============================================================================== --- head/devel/kio-extras/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/kio-extras/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org Modified: head/devel/pyside/Makefile ============================================================================== --- head/devel/pyside/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/pyside/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -4,7 +4,7 @@ PORTNAME= pyside PORTVERSION= 1.2.2 DISTVERSIONPREFIX= qt4.8+ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= https://download.qt-project.org/official_releases/pyside/ PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} Modified: head/devel/qt4/Makefile ============================================================================== --- head/devel/qt4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/qt4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,6 +3,7 @@ PORTNAME= qt4 DISTVERSION= ${QT4_VERSION} +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= kde@FreeBSD.org Modified: head/devel/qtscriptgenerator/Makefile ============================================================================== --- head/devel/qtscriptgenerator/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/qtscriptgenerator/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= qtscriptgenerator PORTVERSION= 0.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= syncer@gmail.com Modified: head/devel/smokeqt-kde4/Makefile ============================================================================== --- head/devel/smokeqt-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/devel/smokeqt-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= smokeqt PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/editors/calligra/Makefile ============================================================================== --- head/editors/calligra/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/editors/calligra/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= calligra DISTVERSION= 3.1.0 +PORTREVISION= 1 CATEGORIES= editors kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/${PORTNAME} Modified: head/finance/kmymoney-kde4/Makefile ============================================================================== --- head/finance/kmymoney-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/finance/kmymoney-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kmymoney PORTVERSION= 4.8.2 +PORTREVISION= 1 CATEGORIES= finance kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src PKGNAMESUFFIX= -kde4 Modified: head/games/auralquiz/Makefile ============================================================================== --- head/games/auralquiz/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/auralquiz/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -4,6 +4,7 @@ PORTNAME= auralquiz PORTVERSION= 1.0.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SAVANNAH Modified: head/games/blinken/Makefile ============================================================================== --- head/games/blinken/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/blinken/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= blinken DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/bomber/Makefile ============================================================================== --- head/games/bomber/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/bomber/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= bomber DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/kblocks/Makefile ============================================================================== --- head/games/kblocks/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/kblocks/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kblocks DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/kbounce/Makefile ============================================================================== --- head/games/kbounce/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/kbounce/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kbounce DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/kolf/Makefile ============================================================================== --- head/games/kolf/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/kolf/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kolf DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/kollision/Makefile ============================================================================== --- head/games/kollision/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/kollision/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kollision DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/kpat/Makefile ============================================================================== --- head/games/kpat/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/kpat/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kpat DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/ksirk/Makefile ============================================================================== --- head/games/ksirk/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/ksirk/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= ksirk DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/ktuberling/Makefile ============================================================================== --- head/games/ktuberling/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/ktuberling/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= ktuberling DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/games/libkdegames-kde4/Makefile ============================================================================== --- head/games/libkdegames-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/libkdegames-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= libkdegames PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/games/pairs-kde4/Makefile ============================================================================== --- head/games/pairs-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/games/pairs-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= pairs PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/graphics/gwenview/Makefile ============================================================================== --- head/graphics/gwenview/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/graphics/gwenview/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= gwenview DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/graphics/okular/Makefile ============================================================================== --- head/graphics/okular/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/graphics/okular/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/irc/konversation/Makefile ============================================================================== --- head/irc/konversation/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/irc/konversation/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= konversation PORTVERSION= 1.7.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/src Modified: head/irc/quassel/Makefile ============================================================================== --- head/irc/quassel/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/irc/quassel/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,6 +3,7 @@ PORTNAME= quassel PORTVERSION= 0.12.5 +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://www.quassel-irc.org/pub/ Modified: head/japanese/qt4-codecs-jp/Makefile ============================================================================== --- head/japanese/qt4-codecs-jp/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/japanese/qt4-codecs-jp/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= codecs DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -jp Modified: head/korean/qt4-codecs-kr/Makefile ============================================================================== --- head/korean/qt4-codecs-kr/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/korean/qt4-codecs-kr/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= codecs DISTVERSION= ${QT4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= korean PKGNAMEPREFIX= qt4- PKGNAMESUFFIX= -kr Modified: head/misc/bibletime/Makefile ============================================================================== --- head/misc/bibletime/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/bibletime/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= bibletime PORTVERSION= 2.10.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc kde MASTER_SITES= SF/${PORTNAME}/BibleTime%202/BibleTime%202%20source%20code Modified: head/misc/klettres/Makefile ============================================================================== --- head/misc/klettres/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/klettres/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= klettres DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/misc/ktouch-kde4/Makefile ============================================================================== --- head/misc/ktouch-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/ktouch-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,7 +2,7 @@ PORTNAME= ktouch PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/misc/kwordquiz/Makefile ============================================================================== --- head/misc/kwordquiz/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/kwordquiz/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= kwordquiz DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org Modified: head/misc/qt4-qtconfig/Makefile ============================================================================== --- head/misc/qt4-qtconfig/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/qt4-qtconfig/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= qtconfig DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc PKGNAMEPREFIX= qt4- Modified: head/misc/qt4-qtdemo/Makefile ============================================================================== --- head/misc/qt4-qtdemo/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/qt4-qtdemo/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= qtdemo DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc PKGNAMEPREFIX= qt4- Modified: head/misc/saaghar/Makefile ============================================================================== --- head/misc/saaghar/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/saaghar/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= saaghar PORTVERSION= 2.5.0 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= SF/saaghar/Source%20Code/:saaghar \ SF/ganjoor/s3db:ganjoor Modified: head/misc/tellico-kde4/Makefile ============================================================================== --- head/misc/tellico-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/misc/tellico-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= tellico PORTVERSION= 2.3.12 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= misc kde MASTER_SITES= http://tellico-project.org/files/ Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -360,10 +360,6 @@ SUBDIR += qt4-mobility SUBDIR += qt4-multimedia SUBDIR += qt5-multimedia - SUBDIR += qt5-phonon4 - SUBDIR += qt5-phonon4-designerplugin - SUBDIR += qt5-phonon4-gstreamer - SUBDIR += qt5-phonon4-vlc SUBDIR += quark SUBDIR += quodlibet SUBDIR += quvi Modified: head/multimedia/dragon-kde4/Makefile ============================================================================== --- head/multimedia/dragon-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/dragon-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= dragon PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/multimedia/dragon/Makefile ============================================================================== --- head/multimedia/dragon/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/dragon/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= dragon DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications PKGNAMESUFFIX= -player Modified: head/multimedia/kaffeine/Makefile ============================================================================== --- head/multimedia/kaffeine/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/kaffeine/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= kaffeine PORTVERSION= 1.3.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia kde MASTER_SITES= SF/kaffeine/current Modified: head/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile ============================================================================== --- head/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= mplayerthumbs PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia kde kde-kde4 PKGNAMEPREFIX= kdemultimedia- PKGNAMESUFIFX= -kde4 Modified: head/multimedia/kmplayer-kde4/Makefile ============================================================================== --- head/multimedia/kmplayer-kde4/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/kmplayer-kde4/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= kmplayer PORTVERSION= 0.11.5b -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 3 CATEGORIES= multimedia audio kde PKGNAMESUFFIX= -kde4 Modified: head/multimedia/mediadownloader/Makefile ============================================================================== --- head/multimedia/mediadownloader/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/mediadownloader/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= mediadownloader PORTVERSION= 1.5.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia www MASTER_SITES= SF/googleimagedown/project/${PORTVERSION}/ DISTNAME= ${PORTNAME}_${PORTVERSION}-src Modified: head/multimedia/minitube/Makefile ============================================================================== --- head/multimedia/minitube/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/minitube/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,6 +2,7 @@ PORTNAME= minitube DISTVERSION= 2.9 +PORTREVISION= 1 CATEGORIES= multimedia www MAINTAINER= ports@FreeBSD.org Modified: head/multimedia/phonon-designerplugin/Makefile ============================================================================== --- head/multimedia/phonon-designerplugin/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-designerplugin/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -1,26 +1,42 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.9.1 +DISTVERSION= 4.10.1 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} -PKGNAMESUFFIX= -designerplugin -DIST_SUBDIR= KDE +MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} +DIST_SUBDIR= KDE/phonon MAINTAINER= kde@FreeBSD.org COMMENT= Qt Designer plugin for Phonon LICENSE= LGPL21 -USE_QT4= corelib designer gui phonon \ - qmake_build moc_build rcc_build uic_build +FLAVORS= qt4 qt5 +FLAVOR?= ${FLAVORS:[1]} + +qt4_PKGNAMESUFFIX= -designerplugin-qt4 +qt5_PKGNAMESUFFIX= -designerplugin-qt5 + USES= cmake tar:xz + +. if ${FLAVOR} == qt4 +USES+= kde:4 +USE_QT4= corelib designer gui phonon \ + qmake_build moc_build rcc_build uic_build +PLIST_FILES= ${QT_PLUGINDIR_REL}/designer/libphononwidgets.so +. else +USES+= kde:5 +USE_KDE= ecm +USE_QT5= core designer gui phonon4 widgets xml \ + buildtools_build qmake_build +CMAKE_ON= PHONON_BUILD_PHONON4QT5 +PLIST_FILES= ${QT_PLUGINDIR_REL}/designer/phononwidgets.so +. endif + CMAKE_ARGS= -DPHONON_QT_PLUGIN_INSTALL_DIR=${PREFIX}/${QT_PLUGINDIR_REL}/designer BUILD_WRKSRC= ${WRKSRC}/designer INSTALL_WRKSRC= ${BUILD_WRKSRC} DISTINFO_FILE= ${.CURDIR:H}/phonon/distinfo - -PLIST_FILES= ${QT_PLUGINDIR_REL}/designer/libphononwidgets.so .include Modified: head/multimedia/phonon-designerplugin/pkg-descr ============================================================================== --- head/multimedia/phonon-designerplugin/pkg-descr Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-designerplugin/pkg-descr Thu Jun 21 16:52:09 2018 (r472983) @@ -1,5 +1,5 @@ Phonon is the framework responsible for an ubiquitous multimedia -experience in KDE Software Compilation 4. +experience in KDE Software Compilation 4 and Plasma Desktop. This port installs Qt Designer plugin for Phonon. WWW: http://phonon.kde.org Modified: head/multimedia/phonon-gstreamer/Makefile ============================================================================== --- head/multimedia/phonon-gstreamer/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-gstreamer/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,38 +3,57 @@ PORTNAME= phonon PORTVERSION= 4.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} -PKGNAMESUFFIX= -gstreamer -DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} -DIST_SUBDIR= KDE +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend-${PHONON_PLUGIN}/${DISTVERSION} +DISTNAME= ${PORTNAME}-backend-${PHONON_PLUGIN}-${DISTVERSION} +DIST_SUBDIR= KDE/phonon MAINTAINER= kde@FreeBSD.org COMMENT= GStreamer backend for Phonon LICENSE= LGPL21 -WRKSRC= ${WRKDIR}/${DISTNAME:S/-backend//} +FLAVORS= qt4 qt5 +FLAVOR?= ${FLAVORS:[1]} -USES= cmake kde:4 pkgconfig tar:xz +qt4_PKGNAMESUFFIX= -${PHONON_PLUGIN}-qt4 +qt5_PKGNAMESUFFIX= -${PHONON_PLUGIN}-qt5 +qt4_PLIST= ${.CURDIR}/pkg-plist.qt4 +qt5_PLIST= ${.CURDIR}/pkg-plist.qt5 + +USES= cmake pkgconfig tar:xz USE_GL= gl USE_GNOME= glib20 libxml2 USE_GSTREAMER1= yes +USE_XORG= x11 + +. if ${FLAVOR} == qt4 +USES+= kde:4 USE_KDE= automoc4 USE_QT4= corelib gui opengl phonon \ qmake_build moc_build rcc_build uic_build -USE_XORG= x11 - +. else +USES+= kde:5 +USE_KDE= ecm +USE_QT5= core gui opengl phonon4 widgets x11extras \ + buildtools_build qmake_build +CMAKE_ON= PHONON_BUILD_PHONON4QT5 +. endif SUB_FILES= pkg-message OPTIONS_DEFINE= GST_PLUGINS GST_PLUGINS_DESC= Install GStreamer plugins GST_PLUGINS_RUN_DEPENDS= gstreamer1-plugins-all>=0:multimedia/gstreamer1-plugins-all +PHONON_PLUGIN= gstreamer +WRKSRC= ${WRKDIR}/${PORTNAME}-${PHONON_PLUGIN}-${DISTVERSION} + +. if ${FLAVOR} == qt4 post-install: ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend - ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_gstreamer.so \ + ${RLN} ${STAGEDIR}${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_gstreamer.so \ ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend/libphonon_gstreamer.so +. endif .include Modified: head/multimedia/phonon-gstreamer/distinfo ============================================================================== --- head/multimedia/phonon-gstreamer/distinfo Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-gstreamer/distinfo Thu Jun 21 16:52:09 2018 (r472983) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472999348 -SHA256 (KDE/phonon-backend-gstreamer-4.9.0.tar.xz) = cec3e5ece1261d344b68363ef0606ebf49772628ba94bb55b0c0d18773b885f1 -SIZE (KDE/phonon-backend-gstreamer-4.9.0.tar.xz) = 75960 +TIMESTAMP = 1520670379 +SHA256 (KDE/phonon/phonon-backend-gstreamer-4.9.0.tar.xz) = cec3e5ece1261d344b68363ef0606ebf49772628ba94bb55b0c0d18773b885f1 +SIZE (KDE/phonon/phonon-backend-gstreamer-4.9.0.tar.xz) = 75960 Modified: head/multimedia/phonon-gstreamer/pkg-descr ============================================================================== --- head/multimedia/phonon-gstreamer/pkg-descr Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-gstreamer/pkg-descr Thu Jun 21 16:52:09 2018 (r472983) @@ -1,4 +1,4 @@ -Phonon is the multimedia framework for KDE Software Compilation 4. +Phonon is the multimedia framework for KDE Software Compilation. This port provides the GStreamer backend. WWW: http://phonon.kde.org Copied: head/multimedia/phonon-gstreamer/pkg-plist.qt4 (from r472807, head/multimedia/phonon-gstreamer/pkg-plist) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/phonon-gstreamer/pkg-plist.qt4 Thu Jun 21 16:52:09 2018 (r472983, copy of r472807, head/multimedia/phonon-gstreamer/pkg-plist) @@ -0,0 +1,9 @@ +lib/kde4/plugins/phonon_backend/phonon_gstreamer.so +%%QT_PLUGINDIR%%/phonon_backend/libphonon_gstreamer.so +share/icons/hicolor/128x128/apps/phonon-gstreamer.png +share/icons/hicolor/16x16/apps/phonon-gstreamer.png +share/icons/hicolor/22x22/apps/phonon-gstreamer.png +share/icons/hicolor/48x48/apps/phonon-gstreamer.png +share/icons/hicolor/64x64/apps/phonon-gstreamer.png +share/icons/hicolor/scalable/apps/phonon-gstreamer.svgz +share/kde4/services/phononbackends/gstreamer.desktop Copied and modified: head/multimedia/phonon-gstreamer/pkg-plist.qt5 (from r472982, head/multimedia/phonon-gstreamer/pkg-plist) ============================================================================== --- head/multimedia/phonon-gstreamer/pkg-plist Thu Jun 21 16:23:15 2018 (r472982, copy source) +++ head/multimedia/phonon-gstreamer/pkg-plist.qt5 Thu Jun 21 16:52:09 2018 (r472983) @@ -1,9 +1,7 @@ -lib/kde4/plugins/phonon_backend/phonon_gstreamer.so -%%QT_PLUGINDIR%%/phonon_backend/libphonon_gstreamer.so +%%QT_PLUGINDIR%%/phonon4qt5_backend/phonon_gstreamer.so share/icons/hicolor/128x128/apps/phonon-gstreamer.png share/icons/hicolor/16x16/apps/phonon-gstreamer.png share/icons/hicolor/22x22/apps/phonon-gstreamer.png share/icons/hicolor/48x48/apps/phonon-gstreamer.png share/icons/hicolor/64x64/apps/phonon-gstreamer.png share/icons/hicolor/scalable/apps/phonon-gstreamer.svgz -share/kde4/services/phononbackends/gstreamer.desktop Modified: head/multimedia/phonon-vlc/Makefile ============================================================================== --- head/multimedia/phonon-vlc/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-vlc/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -1,13 +1,13 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 0.9.1 +DISTVERSION= 0.10.1 PORTREVISION= 1 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} -PKGNAMESUFFIX= -vlc -DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} -DIST_SUBDIR= KDE +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend-${PHONON_PLUGIN}/${DISTVERSION} +PKGNAMESUFFIX= -${PHONON_PLUGIN}-${FLAVOR} +DISTNAME= ${PORTNAME}-backend-${PHONON_PLUGIN}-${DISTVERSION} +DIST_SUBDIR= KDE/phonon MAINTAINER= kde@FreeBSD.org COMMENT= VLC backend for Phonon @@ -15,16 +15,39 @@ COMMENT= VLC backend for Phonon LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB -LIB_DEPENDS= libvlc.so:multimedia/vlc-qt4 +FLAVORS= qt4 qt5 +FLAVOR?= ${FLAVORS:[1]} -USES= cmake:outsource kde:4 pkgconfig tar:xz +qt4_LIB_DEPENDS= libvlc.so:multimedia/vlc-qt4 +qt5_LIB_DEPENDS= libvlc.so:multimedia/vlc + +USES= cmake:outsource pkgconfig tar:xz + +. if ${FLAVOR} == qt4 +USES+= kde:4 USE_KDE= automoc4 USE_QT4= corelib gui phonon \ qmake_build moc_build rcc_build uic_build +PLIST_FILES= lib/kde4/plugins/phonon_backend/phonon_vlc.so \ + share/kde4/services/phononbackends/vlc.desktop \ + ${QT_PLUGINDIR}/phonon_backend/libphonon_vlc.so +. else +USES+= kde:5 +USE_KDE= ecm +USE_QT5= core gui widgets phonon4 \ + buildtools_build qmake_build +CMAKE_ON= PHONON_BUILD_PHONON4QT5 +PLIST_FILES= ${QT_PLUGINDIR_REL}/phonon4qt5_backend/phonon_vlc.so +. endif +PHONON_PLUGIN= vlc +WRKSRC= ${WRKDIR}/${PORTNAME}-${PHONON_PLUGIN}-${DISTVERSION} + +. if ${FLAVOR} == qt4 post-install: ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend - ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_vlc.so \ + ${RLN} ${STAGEDIR}${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_vlc.so \ ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend/libphonon_vlc.so +. endif .include Modified: head/multimedia/phonon-vlc/distinfo ============================================================================== --- head/multimedia/phonon-vlc/distinfo Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-vlc/distinfo Thu Jun 21 16:52:09 2018 (r472983) @@ -1,3 +1,3 @@ -TIMESTAMP = 1489242326 -SHA256 (KDE/phonon-backend-vlc-0.9.1.tar.xz) = e698729ba8487299105309623722344f2cd84c46482516d51cd6609fac297313 -SIZE (KDE/phonon-backend-vlc-0.9.1.tar.xz) = 59972 +TIMESTAMP = 1520670394 +SHA256 (KDE/phonon/phonon-backend-vlc-0.10.1.tar.xz) = 09966da6aedeb1b3a6a7d64341682ea065cb4b2c7c06681fcfb3b9c4e7af072d +SIZE (KDE/phonon/phonon-backend-vlc-0.10.1.tar.xz) = 61096 Modified: head/multimedia/phonon-xine/Makefile ============================================================================== --- head/multimedia/phonon-xine/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon-xine/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -3,7 +3,7 @@ PORTNAME= phonon PORTVERSION= 4.4.4 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src PKGNAMESUFFIX= -xine Modified: head/multimedia/phonon/Makefile ============================================================================== --- head/multimedia/phonon/Makefile Thu Jun 21 16:23:15 2018 (r472982) +++ head/multimedia/phonon/Makefile Thu Jun 21 16:52:09 2018 (r472983) @@ -2,46 +2,64 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.9.1 -PORTREVISION= 1 +DISTVERSION= 4.10.1 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} -DIST_SUBDIR= KDE +MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} +DIST_SUBDIR= KDE/phonon MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia framework LICENSE= LGPL21 -LIB_DEPENDS= libqzeitgeist.so:sysutils/qzeitgeist +FLAVORS= qt4 qt5 +FLAVOR?= ${FLAVORS:[1]} -USES= cmake kde:4 pathfix tar:xz +qt4_LIB_DEPENDS= libqzeitgeist.so:sysutils/qzeitgeist +qt4_PKGNAMESUFFIX= -qt4 +qt5_PKGNAMESUFFIX= -qt5 +qt4_PLIST= ${.CURDIR}/pkg-plist.qt4 +qt5_PLIST= ${.CURDIR}/pkg-plist.qt5 + +USES= cmake pathfix tar:xz +CMAKE_ON= PHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT \ + PHONON_NO_PLATFORMPLUGIN +CMAKE_OFF= PHONON_BUILD_DESIGNER_PLUGIN:BOOL=OFF +USE_LDCONFIG= yes + +. if ${FLAVOR} == qt4 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Thu Jun 21 17:18:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59A091024700; Thu, 21 Jun 2018 17:18:27 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0530285F3C; Thu, 21 Jun 2018 17:18:27 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D818614B9A; Thu, 21 Jun 2018 17:18:26 +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 w5LHIQf9032278; Thu, 21 Jun 2018 17:18:26 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHIQrJ032273; Thu, 21 Jun 2018 17:18:26 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201806211718.w5LHIQrJ032273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 21 Jun 2018 17:18:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472984 - head/x11/libexo X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/x11/libexo X-SVN-Commit-Revision: 472984 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:18:27 -0000 Author: madpilot Date: Thu Jun 21 17:18:25 2018 New Revision: 472984 URL: https://svnweb.freebsd.org/changeset/ports/472984 Log: - Update libexo to 0.12.2 - Update WWW to https Modified: head/x11/libexo/Makefile head/x11/libexo/distinfo head/x11/libexo/pkg-descr head/x11/libexo/pkg-plist Modified: head/x11/libexo/Makefile ============================================================================== --- head/x11/libexo/Makefile Thu Jun 21 16:52:09 2018 (r472983) +++ head/x11/libexo/Makefile Thu Jun 21 17:18:25 2018 (r472984) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libexo -PORTVERSION= 0.12.0 +PORTVERSION= 0.12.2 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/xfce/${PORTNAME:C/lib//}/${PORTVERSION:R} DISTNAME= exo-${PORTVERSION} Modified: head/x11/libexo/distinfo ============================================================================== --- head/x11/libexo/distinfo Thu Jun 21 16:52:09 2018 (r472983) +++ head/x11/libexo/distinfo Thu Jun 21 17:18:25 2018 (r472984) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518594955 -SHA256 (xfce4/exo-0.12.0.tar.bz2) = 64b88271a37d0ec7dca062c7bc61ca323116f7855092ac39698c421a2f30a18f -SIZE (xfce4/exo-0.12.0.tar.bz2) = 1310691 +TIMESTAMP = 1529574956 +SHA256 (xfce4/exo-0.12.2.tar.bz2) = 6d4b0a88c1e1d3d5ed612cbf012c7511ef67b1636f4f85caa9dc68649b7e6350 +SIZE (xfce4/exo-0.12.2.tar.bz2) = 1321379 Modified: head/x11/libexo/pkg-descr ============================================================================== --- head/x11/libexo/pkg-descr Thu Jun 21 16:52:09 2018 (r472983) +++ head/x11/libexo/pkg-descr Thu Jun 21 17:18:25 2018 (r472984) @@ -3,4 +3,4 @@ various custom widgets and APIs extending the function GTK+. It also ships utilities for defining preferred applications, mounting storage devices and more. -WWW: http://www.xfce.org/ +WWW: https://www.xfce.org/ Modified: head/x11/libexo/pkg-plist ============================================================================== --- head/x11/libexo/pkg-plist Thu Jun 21 16:52:09 2018 (r472983) +++ head/x11/libexo/pkg-plist Thu Jun 21 17:18:25 2018 (r472984) @@ -160,6 +160,7 @@ share/xfce4/helpers/nautilus.desktop share/xfce4/helpers/netscape-navigator.desktop share/xfce4/helpers/nxterm.desktop share/xfce4/helpers/opera-browser.desktop +share/xfce4/helpers/pcmanfm-qt.desktop share/xfce4/helpers/pcmanfm.desktop share/xfce4/helpers/qterminal.desktop share/xfce4/helpers/qtfm.desktop From owner-svn-ports-head@freebsd.org Thu Jun 21 17:19:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB63B102472F; Thu, 21 Jun 2018 17:19:13 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7117786026; Thu, 21 Jun 2018 17: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4C0DA14B9B; Thu, 21 Jun 2018 17: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 w5LHJDnb032429; Thu, 21 Jun 2018 17:19:13 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHJCkn032427; Thu, 21 Jun 2018 17:19:12 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201806211719.w5LHJCkn032427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 21 Jun 2018 17:19:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472985 - head/sysutils/xfce4-settings X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/sysutils/xfce4-settings X-SVN-Commit-Revision: 472985 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:19:14 -0000 Author: madpilot Date: Thu Jun 21 17:19:12 2018 New Revision: 472985 URL: https://svnweb.freebsd.org/changeset/ports/472985 Log: Update xfce4-settings to 4.12.4 Modified: head/sysutils/xfce4-settings/Makefile head/sysutils/xfce4-settings/distinfo Modified: head/sysutils/xfce4-settings/Makefile ============================================================================== --- head/sysutils/xfce4-settings/Makefile Thu Jun 21 17:18:25 2018 (r472984) +++ head/sysutils/xfce4-settings/Makefile Thu Jun 21 17:19:12 2018 (r472985) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-settings -PORTVERSION= 4.12.3 +PORTVERSION= 4.12.4 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 Modified: head/sysutils/xfce4-settings/distinfo ============================================================================== --- head/sysutils/xfce4-settings/distinfo Thu Jun 21 17:18:25 2018 (r472984) +++ head/sysutils/xfce4-settings/distinfo Thu Jun 21 17:19:12 2018 (r472985) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521408665 -SHA256 (xfce4/xfce4-settings-4.12.3.tar.bz2) = 0869a9fb29ff51e8225320ed3c621d922f1e4a99a325a3a35c3b2d7bee700ba2 -SIZE (xfce4/xfce4-settings-4.12.3.tar.bz2) = 1035504 +TIMESTAMP = 1529575306 +SHA256 (xfce4/xfce4-settings-4.12.4.tar.bz2) = e2a04cad48bf9e951409d0c841829fa3b4ce632cd799082ef82d0506618b6f9b +SIZE (xfce4/xfce4-settings-4.12.4.tar.bz2) = 1036773 From owner-svn-ports-head@freebsd.org Thu Jun 21 17:23:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D14C102499C; Thu, 21 Jun 2018 17:23:30 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3E67E86449; Thu, 21 Jun 2018 17:23:30 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 05AAB14D2B; Thu, 21 Jun 2018 17:23:30 +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 w5LHNTR8037731; Thu, 21 Jun 2018 17:23:29 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHNTqZ037727; Thu, 21 Jun 2018 17:23:29 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806211723.w5LHNTqZ037727@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 21 Jun 2018 17:23:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472986 - in head/textproc: . py-sphinxcontrib-newsfeed X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/textproc: . py-sphinxcontrib-newsfeed X-SVN-Commit-Revision: 472986 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:23:30 -0000 Author: tcberner Date: Thu Jun 21 17:23:29 2018 New Revision: 472986 URL: https://svnweb.freebsd.org/changeset/ports/472986 Log: [NEW PORT] textproc/py-sphinxcontrib-newsfeed: News Feed extension for Sphinx. Submitted by: lebarondemerde@privacychain.ch Differential Revision: https://reviews.freebsd.org/D15874 Added: head/textproc/py-sphinxcontrib-newsfeed/ head/textproc/py-sphinxcontrib-newsfeed/Makefile (contents, props changed) head/textproc/py-sphinxcontrib-newsfeed/distinfo (contents, props changed) head/textproc/py-sphinxcontrib-newsfeed/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Jun 21 17:19:12 2018 (r472985) +++ head/textproc/Makefile Thu Jun 21 17:23:29 2018 (r472986) @@ -1388,6 +1388,7 @@ SUBDIR += py-sphinxcontrib-bitbucket SUBDIR += py-sphinxcontrib-fulltoc SUBDIR += py-sphinxcontrib-httpdomain + SUBDIR += py-sphinxcontrib-newsfeed SUBDIR += py-sphinxcontrib-programoutput SUBDIR += py-sphinxcontrib-websupport SUBDIR += py-stemming Added: head/textproc/py-sphinxcontrib-newsfeed/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinxcontrib-newsfeed/Makefile Thu Jun 21 17:23:29 2018 (r472986) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= sphinxcontrib-newsfeed +PORTVERSION= 0.1.4 +CATEGORIES= textproc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= lebarondemerde@privacychain.ch +COMMENT= News Feed extension for Sphinx + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/textproc/py-sphinxcontrib-newsfeed/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinxcontrib-newsfeed/distinfo Thu Jun 21 17:23:29 2018 (r472986) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529265429 +SHA256 (sphinxcontrib-newsfeed-0.1.4.tar.gz) = f78c865b1a32d249644a9c46f395b547df0dc21ed69b70898d64235b4755efb4 +SIZE (sphinxcontrib-newsfeed-0.1.4.tar.gz) = 10862 Added: head/textproc/py-sphinxcontrib-newsfeed/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-sphinxcontrib-newsfeed/pkg-descr Thu Jun 21 17:23:29 2018 (r472986) @@ -0,0 +1,11 @@ +News Feed extension for Sphinx. + +Features: + + Makes feed entries from Sphinx documents. + Generates a list of entries with teasers. + Saves the feed to a file in RSS format. + Supports comments via Disqus. + + +WWW: https://pypi.org/project/sphinxcontrib-newsfeed/ From owner-svn-ports-head@freebsd.org Thu Jun 21 17:26:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76AB51024AC7; Thu, 21 Jun 2018 17:26:11 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D263867E5; Thu, 21 Jun 2018 17:26:11 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F28CE14D5F; Thu, 21 Jun 2018 17:26:10 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LHQAcY038049; Thu, 21 Jun 2018 17:26:10 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHQA82038046; Thu, 21 Jun 2018 17:26:10 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806211726.w5LHQA82038046@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 21 Jun 2018 17:26:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472987 - head/deskutils/fet X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/deskutils/fet X-SVN-Commit-Revision: 472987 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:26:11 -0000 Author: swills Date: Thu Jun 21 17:26:10 2018 New Revision: 472987 URL: https://svnweb.freebsd.org/changeset/ports/472987 Log: deskutils/fet: update to 5.36.0 PR: 229199 Submitted by: Zsolt Udvari (maintainer) Modified: head/deskutils/fet/Makefile (contents, props changed) head/deskutils/fet/distinfo (contents, props changed) head/deskutils/fet/pkg-plist (contents, props changed) Modified: head/deskutils/fet/Makefile ============================================================================== --- head/deskutils/fet/Makefile Thu Jun 21 17:23:29 2018 (r472986) +++ head/deskutils/fet/Makefile Thu Jun 21 17:26:10 2018 (r472987) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fet -DISTVERSION= 5.34.0 +DISTVERSION= 5.36.0 CATEGORIES= deskutils kde MASTER_SITES= http://lalescu.ro/liviu/fet/download/ \ http://lalescu.ro/liviu/fet/download/old/ \ Modified: head/deskutils/fet/distinfo ============================================================================== --- head/deskutils/fet/distinfo Thu Jun 21 17:23:29 2018 (r472986) +++ head/deskutils/fet/distinfo Thu Jun 21 17:26:10 2018 (r472987) @@ -1,3 +1,3 @@ -TIMESTAMP = 1509887144 -SHA256 (fet-5.34.0.tar.bz2) = a049cd89d7a6ed73e67758d1a01ee740fdaa245943be2911c0a9002dda27a836 -SIZE (fet-5.34.0.tar.bz2) = 11200465 +TIMESTAMP = 1529559388 +SHA256 (fet-5.36.0.tar.bz2) = 98c2383fb807af2959f9426ab88332df897273dcfa3c9e8874cabeb62a9da930 +SIZE (fet-5.36.0.tar.bz2) = 11771000 Modified: head/deskutils/fet/pkg-plist ============================================================================== --- head/deskutils/fet/pkg-plist Thu Jun 21 17:23:29 2018 (r472986) +++ head/deskutils/fet/pkg-plist Thu Jun 21 17:26:10 2018 (r472987) @@ -18,6 +18,7 @@ man/man1/fet-cl.1.gz %%NLS%%%%DATADIR%%/translations/fet_hu.qm %%NLS%%%%DATADIR%%/translations/fet_id.qm %%NLS%%%%DATADIR%%/translations/fet_it.qm +%%NLS%%%%DATADIR%%/translations/fet_ja.qm %%NLS%%%%DATADIR%%/translations/fet_lt.qm %%NLS%%%%DATADIR%%/translations/fet_mk.qm %%NLS%%%%DATADIR%%/translations/fet_ms.qm From owner-svn-ports-head@freebsd.org Thu Jun 21 17:38:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C73F01024FC1; Thu, 21 Jun 2018 17:38:30 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 79EFA86F16; Thu, 21 Jun 2018 17:38:30 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5266B14F26; Thu, 21 Jun 2018 17:38:30 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LHcU70043393; Thu, 21 Jun 2018 17:38:30 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHcT1d043390; Thu, 21 Jun 2018 17:38:29 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806211738.w5LHcT1d043390@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 21 Jun 2018 17:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472988 - head/net/openvswitch X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/net/openvswitch X-SVN-Commit-Revision: 472988 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:38:31 -0000 Author: swills Date: Thu Jun 21 17:38:29 2018 New Revision: 472988 URL: https://svnweb.freebsd.org/changeset/ports/472988 Log: net/openvswitch: update to 2.9.2 PR: 229197 Submitted by: Nikola Kolev (maintainer) Modified: head/net/openvswitch/Makefile (contents, props changed) head/net/openvswitch/distinfo (contents, props changed) head/net/openvswitch/pkg-plist (contents, props changed) Modified: head/net/openvswitch/Makefile ============================================================================== --- head/net/openvswitch/Makefile Thu Jun 21 17:26:10 2018 (r472987) +++ head/net/openvswitch/Makefile Thu Jun 21 17:38:29 2018 (r472988) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openvswitch -PORTVERSION= 2.9.0 +PORTVERSION= 2.9.2 CATEGORIES= net MASTER_SITES= http://openvswitch.org/releases/ Modified: head/net/openvswitch/distinfo ============================================================================== --- head/net/openvswitch/distinfo Thu Jun 21 17:26:10 2018 (r472987) +++ head/net/openvswitch/distinfo Thu Jun 21 17:38:29 2018 (r472988) @@ -1,3 +1,3 @@ -TIMESTAMP = 1522945468 -SHA256 (openvswitch-2.9.0.tar.gz) = 3699ce579acd346e9aa2fba89514cdcc79b231f6227659eea6714917b398419d -SIZE (openvswitch-2.9.0.tar.gz) = 6933057 +TIMESTAMP = 1529508992 +SHA256 (openvswitch-2.9.2.tar.gz) = 90f084dc282fdb588a2cfff351fea359492f69600f1e4a1286e24e44901de113 +SIZE (openvswitch-2.9.2.tar.gz) = 7105444 Modified: head/net/openvswitch/pkg-plist ============================================================================== --- head/net/openvswitch/pkg-plist Thu Jun 21 17:26:10 2018 (r472987) +++ head/net/openvswitch/pkg-plist Thu Jun 21 17:38:29 2018 (r472988) @@ -77,27 +77,27 @@ include/ovn/actions.h include/ovn/expr.h include/ovn/lex.h lib/libofproto-2.9.so.0 -lib/libofproto-2.9.so.0.0.0 +lib/libofproto-2.9.so.0.0.2 lib/libofproto.a lib/libofproto.so lib/libopenvswitch-2.9.so.0 -lib/libopenvswitch-2.9.so.0.0.0 +lib/libopenvswitch-2.9.so.0.0.2 lib/libopenvswitch.a lib/libopenvswitch.so lib/libovn-2.9.so.0 -lib/libovn-2.9.so.0.0.0 +lib/libovn-2.9.so.0.0.2 lib/libovn.a lib/libovn.so lib/libovsdb-2.9.so.0 -lib/libovsdb-2.9.so.0.0.0 +lib/libovsdb-2.9.so.0.0.2 lib/libovsdb.a lib/libovsdb.so lib/libsflow-2.9.so.0 -lib/libsflow-2.9.so.0.0.0 +lib/libsflow-2.9.so.0.0.2 lib/libsflow.a lib/libsflow.so lib/libvtep-2.9.so.0 -lib/libvtep-2.9.so.0.0.0 +lib/libvtep-2.9.so.0.0.2 lib/libvtep.a lib/libvtep.so libdata/pkgconfig/libofproto.pc @@ -113,6 +113,7 @@ man/man1/ovsdb-tool.1.gz man/man5/ovn-nb.5.gz man/man5/ovn-sb.5.gz man/man5/ovs-vswitchd.conf.db.5.gz +man/man5/ovsdb-server.5.gz man/man5/vtep.5.gz man/man7/ovn-architecture.7.gz man/man7/ovs-fields.7.gz @@ -150,8 +151,14 @@ sbin/ovsdb-server %%DATADIR%%/ovn-nb.ovsschema %%DATADIR%%/ovn-sb.ovsschema %%DATADIR%%/python/ovs/__init__.py +%%DATADIR%%/python/ovs/compat/__init__.py +%%DATADIR%%/python/ovs/compat/sortedcontainers/__init__.py +%%DATADIR%%/python/ovs/compat/sortedcontainers/sorteddict.py +%%DATADIR%%/python/ovs/compat/sortedcontainers/sortedlist.py +%%DATADIR%%/python/ovs/compat/sortedcontainers/sortedset.py %%DATADIR%%/python/ovs/daemon.py %%DATADIR%%/python/ovs/db/__init__.py +%%DATADIR%%/python/ovs/db/custom_index.py %%DATADIR%%/python/ovs/db/data.py %%DATADIR%%/python/ovs/db/error.py %%DATADIR%%/python/ovs/db/idl.py From owner-svn-ports-head@freebsd.org Thu Jun 21 17:40:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AF201025031; Thu, 21 Jun 2018 17:40:10 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EAE1E87024; Thu, 21 Jun 2018 17:40: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B461114F2B; Thu, 21 Jun 2018 17:40: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 w5LHe9tu043618; Thu, 21 Jun 2018 17:40:09 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHe9wQ043616; Thu, 21 Jun 2018 17:40:09 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806211740.w5LHe9wQ043616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 21 Jun 2018 17:40:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472989 - head/deskutils/py-khal X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/deskutils/py-khal X-SVN-Commit-Revision: 472989 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:40:10 -0000 Author: tcberner Date: Thu Jun 21 17:40:09 2018 New Revision: 472989 URL: https://svnweb.freebsd.org/changeset/ports/472989 Log: deskutils/py-khal update to version 0.9.9 Submitted by: lebarondemerde@privacychain.ch (maintainer) Differential Revision: https://reviews.freebsd.org/D15873 Modified: head/deskutils/py-khal/Makefile head/deskutils/py-khal/distinfo Modified: head/deskutils/py-khal/Makefile ============================================================================== --- head/deskutils/py-khal/Makefile Thu Jun 21 17:38:29 2018 (r472988) +++ head/deskutils/py-khal/Makefile Thu Jun 21 17:40:09 2018 (r472989) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= khal -DISTVERSION= 0.9.8 +DISTVERSION= 0.9.9 CATEGORIES= deskutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,10 +18,11 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}atomicwrites>=0.1. ${PYTHON_PKGNAMEPREFIX}click>=3.2:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click-log>=0.2.0:devel/py-click-log@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}configobj>=0:devel/py-configobj@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil<=2.6.1:devel/py-dateutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}icalendar>=3.11.7:devel/py-icalendar@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=1.0:devel/py-pytz@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tzlocal>=1.0:devel/py-tzlocal@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}urwid>=0:devel/py-urwid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}vdirsyncer>=0:deskutils/py-vdirsyncer@${PY_FLAVOR} \ @@ -29,15 +30,20 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}atomicwrites>=0.1. USES= python:3.4+ USE_PYTHON= autoplist distutils - NO_ARCH= yes -OPTIONS_DEFINE= SETPROCTITLE +OPTIONS_DEFINE= DOCS SETPROCTITLE +DOCS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>1.6.1:textproc/py-sphinx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinxcontrib-newsfeed>=0:textproc/py-sphinxcontrib-newsfeed@${PY_FLAVOR} + SETPROCTITLE_DESC= Set the process title SETPROCTITLE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setproctitle>=0:devel/py-setproctitle@${PY_FLAVOR} PLIST_FILES= share/zsh/site-functions/__khal + +build-DOCS-on: + ( cd ${WRKSRC}/docs && ${MAKE} ) post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions Modified: head/deskutils/py-khal/distinfo ============================================================================== --- head/deskutils/py-khal/distinfo Thu Jun 21 17:38:29 2018 (r472988) +++ head/deskutils/py-khal/distinfo Thu Jun 21 17:40:09 2018 (r472989) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508824223 -SHA256 (khal-0.9.8.tar.gz) = fe049e1ed3238461c108f7ef4abba09f46130f77f0e2b80418529f6dfb1b9dae -SIZE (khal-0.9.8.tar.gz) = 173717 +TIMESTAMP = 1529201444 +SHA256 (khal-0.9.9.tar.gz) = 50e7c40028c37d4ec76a3ef80e99af5f837ad6857590e76cc64ee29b16560937 +SIZE (khal-0.9.9.tar.gz) = 171830 From owner-svn-ports-head@freebsd.org Thu Jun 21 17:46:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7CD410251BF; Thu, 21 Jun 2018 17:46:52 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 59DB98742F; Thu, 21 Jun 2018 17:46:52 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 366DC150D2; Thu, 21 Jun 2018 17:46:52 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LHkqte048398; Thu, 21 Jun 2018 17:46:52 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHkpbN048397; Thu, 21 Jun 2018 17:46:51 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806211746.w5LHkpbN048397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 21 Jun 2018 17:46:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472990 - head/security/py-pycryptodome X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/security/py-pycryptodome X-SVN-Commit-Revision: 472990 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:46:52 -0000 Author: swills Date: Thu Jun 21 17:46:51 2018 New Revision: 472990 URL: https://svnweb.freebsd.org/changeset/ports/472990 Log: security/py-pycryptodome: Upgrade to 3.6.2 PR: 229194 Submitted by: John W. O'Brien (maintainer) Modified: head/security/py-pycryptodome/Makefile (contents, props changed) head/security/py-pycryptodome/distinfo (contents, props changed) Modified: head/security/py-pycryptodome/Makefile ============================================================================== --- head/security/py-pycryptodome/Makefile Thu Jun 21 17:40:09 2018 (r472989) +++ head/security/py-pycryptodome/Makefile Thu Jun 21 17:46:51 2018 (r472990) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= pycryptodome -DISTVERSION= 3.6.1 -PORTREVISION= 1 +DISTVERSION= 3.6.2 +PORTREVISION= 0 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/security/py-pycryptodome/distinfo ============================================================================== --- head/security/py-pycryptodome/distinfo Thu Jun 21 17:40:09 2018 (r472989) +++ head/security/py-pycryptodome/distinfo Thu Jun 21 17:46:51 2018 (r472990) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523952658 -SHA256 (pycryptodome-3.6.1.tar.gz) = 15013007e393d0cc0e69f4329a47c4c8597b7f3d02c12c03f805405542f70c71 -SIZE (pycryptodome-3.6.1.tar.gz) = 7167199 +TIMESTAMP = 1529536725 +SHA256 (pycryptodome-3.6.2.tar.gz) = b19ed0f7752a0b1ec65834c9acb02ba64a812990854e318d32a619c709b14a69 +SIZE (pycryptodome-3.6.2.tar.gz) = 7136474 From owner-svn-ports-head@freebsd.org Thu Jun 21 17:50:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D115910252D1; Thu, 21 Jun 2018 17:50:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 80E998761F; Thu, 21 Jun 2018 17:50:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 63C51151EB; Thu, 21 Jun 2018 17:50:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LHospD050923; Thu, 21 Jun 2018 17:50:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHosPI050921; Thu, 21 Jun 2018 17:50:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806211750.w5LHosPI050921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 21 Jun 2018 17:50:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472991 - head/textproc/p5-PPIx-Regexp X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/textproc/p5-PPIx-Regexp X-SVN-Commit-Revision: 472991 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:50:55 -0000 Author: swills Date: Thu Jun 21 17:50:53 2018 New Revision: 472991 URL: https://svnweb.freebsd.org/changeset/ports/472991 Log: textproc/p5-PPIx-Regexp: update to 0.060 PR: 229187 Submitted by: Sergei Vyshenski (maintainer) Modified: head/textproc/p5-PPIx-Regexp/Makefile (contents, props changed) head/textproc/p5-PPIx-Regexp/distinfo (contents, props changed) Modified: head/textproc/p5-PPIx-Regexp/Makefile ============================================================================== --- head/textproc/p5-PPIx-Regexp/Makefile Thu Jun 21 17:46:51 2018 (r472990) +++ head/textproc/p5-PPIx-Regexp/Makefile Thu Jun 21 17:50:53 2018 (r472991) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PPIx-Regexp -PORTVERSION= 0.059 +PORTVERSION= 0.060 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:WYANT Modified: head/textproc/p5-PPIx-Regexp/distinfo ============================================================================== --- head/textproc/p5-PPIx-Regexp/distinfo Thu Jun 21 17:46:51 2018 (r472990) +++ head/textproc/p5-PPIx-Regexp/distinfo Thu Jun 21 17:50:53 2018 (r472991) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526408938 -SHA256 (PPIx-Regexp-0.059.tar.gz) = f2464c449d9cb21866f8adc7b5299d1f611cef5322b9d885ec55790243458635 -SIZE (PPIx-Regexp-0.059.tar.gz) = 217836 +TIMESTAMP = 1529511265 +SHA256 (PPIx-Regexp-0.060.tar.gz) = 885e172bbfde54c240bdfd6013fc6e1b76bdd19c211901d2128f3873938ff377 +SIZE (PPIx-Regexp-0.060.tar.gz) = 218790 From owner-svn-ports-head@freebsd.org Thu Jun 21 17:53:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CFC610254ED; Thu, 21 Jun 2018 17:53:50 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B2A7888333; Thu, 21 Jun 2018 17:53:49 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9246215266; Thu, 21 Jun 2018 17:53: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 w5LHrnD6053521; Thu, 21 Jun 2018 17:53:49 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LHrmdo053516; Thu, 21 Jun 2018 17:53:48 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806211753.w5LHrmdo053516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 21 Jun 2018 17:53:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472992 - in head/net-im/uTox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/net-im/uTox: . files X-SVN-Commit-Revision: 472992 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 17:53:50 -0000 Author: tobik Date: Thu Jun 21 17:53:48 2018 New Revision: 472992 URL: https://svnweb.freebsd.org/changeset/ports/472992 Log: net-im/uTox: Update to 0.17.0 - Update license and WWW Changes: https://github.com/uTox/uTox/releases PR: 229198 Submitted by: tobik Approved by: maintainer Added: head/net-im/uTox/files/patch-CMakeLists.txt (contents, props changed) Deleted: head/net-im/uTox/files/patch-src_main.h head/net-im/uTox/files/patch-src_xlib_main.c head/net-im/uTox/files/patch-src_xlib_video.c Modified: head/net-im/uTox/Makefile head/net-im/uTox/distinfo head/net-im/uTox/pkg-descr head/net-im/uTox/pkg-plist Modified: head/net-im/uTox/Makefile ============================================================================== --- head/net-im/uTox/Makefile Thu Jun 21 17:50:53 2018 (r472991) +++ head/net-im/uTox/Makefile Thu Jun 21 17:53:48 2018 (r472992) @@ -1,48 +1,38 @@ # $FreeBSD$ PORTNAME= uTox -PORTVERSION= 0.11.1 -PORTREVISION= 6 +DISTVERSION= 0.17.0 +DISTVERSIONSUFFIX= -full CATEGORIES= net-im net-p2p +MASTER_SITES= https://github.com/uTox/uTox/releases/download/v${PORTVERSION}/ MAINTAINER= portmaster@BSDforge.com COMMENT= Lightweight Tox client -LICENSE= GPLv3 +LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${LOCALBASE}/lib/libtoxcore.a:net-im/tox12 \ - ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat +BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat LIB_DEPENDS= libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig \ libsodium.so:security/libsodium \ libv4lconvert.so:multimedia/libv4l \ libvpx.so:multimedia/libvpx \ - libfilteraudio.so:audio/libfilteraudio\ - libopus.so:audio/opus -RUN_DEPENDS= ${LOCALBASE}/lib/libtoxcore.a:net-im/tox12 + libopus.so:audio/opus \ + libtoxcore.so:net-im/tox -USE_GITHUB= yes -GH_TAGNAME= 1835eae - -USES= cmake compiler:c11 desktop-file-utils localbase:ldflags openal:al \ - pkgconfig -USE_XORG= x11 xext xrender +USES= cmake:outsource compiler:c11 desktop-file-utils dos2unix \ + openal pkgconfig +USE_XORG= ice sm x11 xext xrender +CMAKE_OFF= ENABLE_LTO +DOS2UNIX_GLOB= * LLD_UNSAFE= yes +WRKSRC= ${WRKDIR}/uTox OPTIONS_DEFINE= DBUS OPTIONS_DEFAULT= DBUS +DBUS_CMAKE_BOOL= ENABLE_DBUS DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus -DBUS_MAKE_ARGS_OFF= DBUS=0 - -pre-configure: - ${REINPLACE_CMD} -e 's|resolv dl||' \ - -e 's|/usr/include/freetype2|${LOCALBASE}/include/freetype2|' \ - ${WRKSRC}/CMakeLists.txt - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/utox - ${INSTALL_DATA} ${WRKSRC}/icons/utox-128x128.png ${STAGEDIR}${PREFIX}/share/pixmaps/utox.png .include Modified: head/net-im/uTox/distinfo ============================================================================== --- head/net-im/uTox/distinfo Thu Jun 21 17:50:53 2018 (r472991) +++ head/net-im/uTox/distinfo Thu Jun 21 17:53:48 2018 (r472992) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483474222 -SHA256 (uTox-uTox-0.11.1-1835eae_GH0.tar.gz) = bd6c093c30ee56315dc97dc70bc32a761b748c761353eadb6e940a5cdbc5891d -SIZE (uTox-uTox-0.11.1-1835eae_GH0.tar.gz) = 2378596 +TIMESTAMP = 1529567839 +SHA256 (uTox-0.17.0-full.tar.gz) = 219ae83e9139d3a421c7bb6d03cc3f8953dd36fb8e8b67100d47d92d413e9d46 +SIZE (uTox-0.17.0-full.tar.gz) = 3946812 Added: head/net-im/uTox/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/uTox/files/patch-CMakeLists.txt Thu Jun 21 17:53:48 2018 (r472992) @@ -0,0 +1,22 @@ +--- CMakeLists.txt.orig 2018-06-21 08:33:29 UTC ++++ CMakeLists.txt +@@ -184,8 +184,7 @@ add_cflag("-fPIC") + # Fix GNU stack + if(CMAKE_C_COMPILER_ID MATCHES "GNU") + # Have ld strip the symbols from Release and MinSizeRel build types. +- set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -Os") +- set(CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -Os -s") ++ set(CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -s") + + if(LINUX) + # enable Link Time Optimization on gcc (linux only currently) +@@ -220,8 +219,7 @@ elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") + endif() + + # Have ld strip the symbols from Release and MinSizeRel build types. (-Oz is clang specific) +- set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -Os") +- set(CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -Oz -s") ++ set(CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -s") + + if(NOT ENABLE_ASAN) + if(NOT APPLE) Modified: head/net-im/uTox/pkg-descr ============================================================================== --- head/net-im/uTox/pkg-descr Thu Jun 21 17:50:53 2018 (r472991) +++ head/net-im/uTox/pkg-descr Thu Jun 21 17:53:48 2018 (r472992) @@ -9,4 +9,4 @@ important features, like file transfers, A/V, group ch There are also binaries for other OS: Linux, Android, OS X and Windows, which makes it possible to communicate between users of different OS. -WWW: http://utox.org/ +WWW: https://utox.io/ Modified: head/net-im/uTox/pkg-plist ============================================================================== --- head/net-im/uTox/pkg-plist Thu Jun 21 17:50:53 2018 (r472991) +++ head/net-im/uTox/pkg-plist Thu Jun 21 17:53:48 2018 (r472992) @@ -1,4 +1,17 @@ bin/utox -share/applications/utox.desktop -share/pixmaps/utox.png man/man1/utox.1.gz +share/applications/utox.desktop +share/icons/hicolor/128x128/apps/utox-128x128.png +share/icons/hicolor/14x14/apps/utox-14x14.png +share/icons/hicolor/16x16/apps/utox-16x16.png +share/icons/hicolor/22x22/apps/utox-22x22.png +share/icons/hicolor/24x24/apps/utox-24x24.png +share/icons/hicolor/256x256/apps/utox-256x256.png +share/icons/hicolor/32x32/apps/utox-32x32.png +share/icons/hicolor/36x36/apps/utox-36x36.png +share/icons/hicolor/48x48/apps/utox-48x48.png +share/icons/hicolor/512x512/apps/utox-512x512.png +share/icons/hicolor/64x64/apps/utox-64x64.png +share/icons/hicolor/72x72/apps/utox-72x72.png +share/icons/hicolor/96x96/apps/utox-96x96.png +share/icons/hicolor/scalable/apps/utox.svg From owner-svn-ports-head@freebsd.org Thu Jun 21 19:13:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 116A410268FD; Thu, 21 Jun 2018 19:13:32 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B344D8AFE1; Thu, 21 Jun 2018 19:13:31 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 945F316036; Thu, 21 Jun 2018 19:13: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 w5LJDVI5095016; Thu, 21 Jun 2018 19:13:31 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LJDVvA095014; Thu, 21 Jun 2018 19:13:31 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201806211913.w5LJDVvA095014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 21 Jun 2018 19:13:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472993 - in head/devel/meson: . files X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: in head/devel/meson: . files X-SVN-Commit-Revision: 472993 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 19:13:32 -0000 Author: kwm Date: Thu Jun 21 19:13:30 2018 New Revision: 472993 URL: https://svnweb.freebsd.org/changeset/ports/472993 Log: Update meson to 0.46.1. Remove patches that are included in this release. PR: 229086 Submitted by: Ting-Wei Lan Deleted: head/devel/meson/files/patch-pkgconfig head/devel/meson/files/patch-pkgconfig-internal Modified: head/devel/meson/Makefile head/devel/meson/distinfo Modified: head/devel/meson/Makefile ============================================================================== --- head/devel/meson/Makefile Thu Jun 21 17:53:48 2018 (r472992) +++ head/devel/meson/Makefile Thu Jun 21 19:13:30 2018 (r472993) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= meson -PORTVERSION= 0.46.0 -PORTREVISION= 2 +PORTVERSION= 0.46.1 CATEGORIES= devel python MASTER_SITES= https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/ Modified: head/devel/meson/distinfo ============================================================================== --- head/devel/meson/distinfo Thu Jun 21 17:53:48 2018 (r472992) +++ head/devel/meson/distinfo Thu Jun 21 19:13:30 2018 (r472993) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524914549 -SHA256 (meson-0.46.0.tar.gz) = b7df91b01a358a8facdbfa33596a47cda38a760435ab55e1985c0bff06a9cbf0 -SIZE (meson-0.46.0.tar.gz) = 1200001 +TIMESTAMP = 1529220278 +SHA256 (meson-0.46.1.tar.gz) = 19497a03e7e5b303d8d11f98789a79aba59b5ad4a81bd00f4d099be0212cee78 +SIZE (meson-0.46.1.tar.gz) = 1203713 From owner-svn-ports-head@freebsd.org Thu Jun 21 19:35:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 043EA1026D74; Thu, 21 Jun 2018 19:35:21 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 927858B7E3; Thu, 21 Jun 2018 19:35:20 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 714D716399; Thu, 21 Jun 2018 19:35:20 +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 w5LJZKYL005059; Thu, 21 Jun 2018 19:35:20 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LJZKTc005057; Thu, 21 Jun 2018 19:35:20 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201806211935.w5LJZKTc005057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Thu, 21 Jun 2018 19:35:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472994 - head/graphics/cimg X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/graphics/cimg X-SVN-Commit-Revision: 472994 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 19:35:21 -0000 Author: thierry Date: Thu Jun 21 19:35:19 2018 New Revision: 472994 URL: https://svnweb.freebsd.org/changeset/ports/472994 Log: Upgrade to v.2.3.0. Modified: head/graphics/cimg/Makefile head/graphics/cimg/distinfo Modified: head/graphics/cimg/Makefile ============================================================================== --- head/graphics/cimg/Makefile Thu Jun 21 19:13:30 2018 (r472993) +++ head/graphics/cimg/Makefile Thu Jun 21 19:35:19 2018 (r472994) @@ -3,7 +3,7 @@ PORTNAME= cimg DISTVERSIONPREFIX= v. -DISTVERSION= 2.2.3 +DISTVERSION= 2.3.0 PORTEPOCH= 3 CATEGORIES= graphics devel Modified: head/graphics/cimg/distinfo ============================================================================== --- head/graphics/cimg/distinfo Thu Jun 21 19:13:30 2018 (r472993) +++ head/graphics/cimg/distinfo Thu Jun 21 19:35:19 2018 (r472994) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528123142 -SHA256 (dtschump-CImg-v.2.2.3_GH0.tar.gz) = 27fecb165946894bb39ef6096ba50b3a7b51bfd9daa27b158ed71dbc3b1df5f7 -SIZE (dtschump-CImg-v.2.2.3_GH0.tar.gz) = 11037764 +TIMESTAMP = 1529603423 +SHA256 (dtschump-CImg-v.2.3.0_GH0.tar.gz) = 710d6103d0d7152bab3bc690a97e94e408837653667636aede2980aa088d1bde +SIZE (dtschump-CImg-v.2.3.0_GH0.tar.gz) = 11037504 From owner-svn-ports-head@freebsd.org Thu Jun 21 20:09:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 509B2102752F; Thu, 21 Jun 2018 20:09:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7B8F8C5D7; Thu, 21 Jun 2018 20:09: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 992E1168BB; Thu, 21 Jun 2018 20:09: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 w5LK9NR6020547; Thu, 21 Jun 2018 20:09:23 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LK9Mr4020544; Thu, 21 Jun 2018 20:09:22 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201806212009.w5LK9Mr4020544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Thu, 21 Jun 2018 20:09:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472995 - head/textproc/libodfgen01 X-SVN-Group: ports-head X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: head/textproc/libodfgen01 X-SVN-Commit-Revision: 472995 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:09:24 -0000 Author: jkim Date: Thu Jun 21 20:09:22 2018 New Revision: 472995 URL: https://svnweb.freebsd.org/changeset/ports/472995 Log: Update to 0.1.7. https://sourceforge.net/p/libwpd/libodfgen/ci/libodfgen-0.1.7/tree/NEWS Modified: head/textproc/libodfgen01/Makefile head/textproc/libodfgen01/distinfo head/textproc/libodfgen01/pkg-descr head/textproc/libodfgen01/pkg-plist Modified: head/textproc/libodfgen01/Makefile ============================================================================== --- head/textproc/libodfgen01/Makefile Thu Jun 21 19:35:19 2018 (r472994) +++ head/textproc/libodfgen01/Makefile Thu Jun 21 20:09:22 2018 (r472995) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libodfgen -PORTVERSION= 0.1.6 -PORTREVISION= 7 +PORTVERSION= 0.1.7 CATEGORIES= textproc MASTER_SITES= SF/libwpd/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMESUFFIX= 01 @@ -19,17 +18,8 @@ CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= compiler:features libtool pathfix pkgconfig tar:xz +USES= compiler:c++11-lib libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip -.include - -.if ${COMPILER_FEATURES:Mlibc++} -CONFIGURE_ARGS+= --with-sharedptr=c++11 -.else -BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs -CONFIGURE_ARGS+= --with-sharedptr=boost -.endif - -.include +.include Modified: head/textproc/libodfgen01/distinfo ============================================================================== --- head/textproc/libodfgen01/distinfo Thu Jun 21 19:35:19 2018 (r472994) +++ head/textproc/libodfgen01/distinfo Thu Jun 21 20:09:22 2018 (r472995) @@ -1,2 +1,3 @@ -SHA256 (libodfgen-0.1.6.tar.xz) = 03b210ab44f05e38091508cdca6ba0ff73de3ea8a168f849b8f1c5059c20b9e9 -SIZE (libodfgen-0.1.6.tar.xz) = 359988 +TIMESTAMP = 1529608386 +SHA256 (libodfgen-0.1.7.tar.xz) = 323e491f956c8ca2abb12c998e350670930a32317bf9662b0615dd4b3922b831 +SIZE (libodfgen-0.1.7.tar.xz) = 384760 Modified: head/textproc/libodfgen01/pkg-descr ============================================================================== --- head/textproc/libodfgen01/pkg-descr Thu Jun 21 19:35:19 2018 (r472994) +++ head/textproc/libodfgen01/pkg-descr Thu Jun 21 20:09:22 2018 (r472995) @@ -8,4 +8,4 @@ libodfgen is a library for generating documents in Ope As these APIs are used by multiple libraries, libodfgen can be used to generate ODF from many sources. -WWW: http://libwpd.sourceforge.net/ +WWW: https://sourceforge.net/p/libwpd/wiki/libodfgen Modified: head/textproc/libodfgen01/pkg-plist ============================================================================== --- head/textproc/libodfgen01/pkg-plist Thu Jun 21 19:35:19 2018 (r472994) +++ head/textproc/libodfgen01/pkg-plist Thu Jun 21 20:09:22 2018 (r472995) @@ -7,5 +7,5 @@ include/libodfgen-0.1/libodfgen/libodfgen-api.hxx include/libodfgen-0.1/libodfgen/libodfgen.hxx lib/libodfgen-0.1.so lib/libodfgen-0.1.so.1 -lib/libodfgen-0.1.so.1.0.6 +lib/libodfgen-0.1.so.1.0.7 libdata/pkgconfig/libodfgen-0.1.pc From owner-svn-ports-head@freebsd.org Thu Jun 21 20:17:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DA51310276A7; Thu, 21 Jun 2018 20:17:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8BCF38C9CC; Thu, 21 Jun 2018 20:17:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68C1916A53; Thu, 21 Jun 2018 20:17:32 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LKHWMZ025399; Thu, 21 Jun 2018 20:17:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKHWpu025398; Thu, 21 Jun 2018 20:17:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806212017.w5LKHWpu025398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 21 Jun 2018 20:17:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472996 - head/x11/pantheon-terminal X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/x11/pantheon-terminal X-SVN-Commit-Revision: 472996 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:17:33 -0000 Author: amdmi3 Date: Thu Jun 21 20:17:31 2018 New Revision: 472996 URL: https://svnweb.freebsd.org/changeset/ports/472996 Log: - Drop maintainership Modified: head/x11/pantheon-terminal/Makefile Modified: head/x11/pantheon-terminal/Makefile ============================================================================== --- head/x11/pantheon-terminal/Makefile Thu Jun 21 20:09:22 2018 (r472995) +++ head/x11/pantheon-terminal/Makefile Thu Jun 21 20:17:31 2018 (r472996) @@ -6,7 +6,7 @@ PORTVERSION= 0.4.3 PORTREVISION= 1 CATEGORIES= x11 -MAINTAINER= amdmi3@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Lightweight, beautiful, and simple terminal from Elementary OS LICENSE= GPLv3 From owner-svn-ports-head@freebsd.org Thu Jun 21 20:18:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAEAE1027723; Thu, 21 Jun 2018 20:18:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5DF288CBB5; Thu, 21 Jun 2018 20:18:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F80E16A56; Thu, 21 Jun 2018 20:18:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LKIX3Q025602; Thu, 21 Jun 2018 20:18:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKIWUe025596; Thu, 21 Jun 2018 20:18:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806212018.w5LKIWUe025596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 21 Jun 2018 20:18:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472997 - in head/mail: postfix postfix-current postfix211 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/mail: postfix postfix-current postfix211 X-SVN-Commit-Revision: 472997 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:18:33 -0000 Author: amdmi3 Date: Thu Jun 21 20:18:32 2018 New Revision: 472997 URL: https://svnweb.freebsd.org/changeset/ports/472997 Log: Drop always true (and tautologic) OSVERSION conditions Approved by: portmgr blanket Modified: head/mail/postfix-current/Makefile head/mail/postfix/Makefile head/mail/postfix211/Makefile Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Thu Jun 21 20:17:31 2018 (r472996) +++ head/mail/postfix-current/Makefile Thu Jun 21 20:18:32 2018 (r472997) @@ -106,7 +106,7 @@ PLIST_SUB+= BMAN="" PLIST_SUB+= PFETC=${ETCDIR} # check if mailwrapper supports $LOCALBASE -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1002506 || ${OSVERSION} >= 1100094) +.if ${OPSYS} == FreeBSD SUB_LIST+= USE_LOCALBASE_MAILER_CONF="yes" MC_PREFIX="${LOCALBASE}" .else SUB_LIST+= USE_LOCALBASE_MAILER_CONF="no" MC_PREFIX="" Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Thu Jun 21 20:17:31 2018 (r472996) +++ head/mail/postfix/Makefile Thu Jun 21 20:18:32 2018 (r472997) @@ -106,7 +106,7 @@ PLIST_SUB+= BMAN="" PLIST_SUB+= PFETC=${ETCDIR} # check if mailwrapper supports $LOCALBASE -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1002506 || ${OSVERSION} >= 1100094) +.if ${OPSYS} == FreeBSD SUB_LIST+= USE_LOCALBASE_MAILER_CONF="yes" MC_PREFIX="${LOCALBASE}" .else SUB_LIST+= USE_LOCALBASE_MAILER_CONF="no" MC_PREFIX="" Modified: head/mail/postfix211/Makefile ============================================================================== --- head/mail/postfix211/Makefile Thu Jun 21 20:17:31 2018 (r472996) +++ head/mail/postfix211/Makefile Thu Jun 21 20:18:32 2018 (r472997) @@ -115,7 +115,7 @@ PLIST_SUB+= BMAN="" PLIST_SUB+= PFETC=${ETCDIR} # check if mailwrapper supports $LOCALBASE -.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1002506 || ${OSVERSION} >= 1100094) +.if ${OPSYS} == FreeBSD SUB_LIST+= USE_LOCALBASE_MAILER_CONF="yes" MC_PREFIX=${LOCALBASE} .else SUB_LIST+= USE_LOCALBASE_MAILER_CONF="no" MC_PREFIX="" From owner-svn-ports-head@freebsd.org Thu Jun 21 20:22:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FC7310279A6; Thu, 21 Jun 2018 20:22:17 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 455278CFE3; Thu, 21 Jun 2018 20:22:17 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 267D216BDC; Thu, 21 Jun 2018 20:22:17 +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 w5LKMHSZ031008; Thu, 21 Jun 2018 20:22:17 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKMGDO031004; Thu, 21 Jun 2018 20:22:16 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806212022.w5LKMGDO031004@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 20:22:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472998 - in head/textproc: . py-pdfrw X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/textproc: . py-pdfrw X-SVN-Commit-Revision: 472998 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:22:17 -0000 Author: pi Date: Thu Jun 21 20:22:16 2018 New Revision: 472998 URL: https://svnweb.freebsd.org/changeset/ports/472998 Log: New port: textproc/py-pdfrw A Python library and utility that reads and writes PDF files: - Version 0.4 is tested and works on Python 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6 - Operations include subsetting, merging, rotating, modifying metadata, etc. - The fastest pure Python PDF parser available - Has been used for years by a printer in pre-press production - Can be used with rst2pdf to faithfully reproduce vector images - Can be used either standalone, or in conjunction with reportlab to reuse existing PDFs in new ones - Permissively licensed WWW: https://github.com/pmaupin/pdfrw PR: 226702 Submitted by: greg@unrelenting.technology Added: head/textproc/py-pdfrw/ head/textproc/py-pdfrw/Makefile (contents, props changed) head/textproc/py-pdfrw/distinfo (contents, props changed) head/textproc/py-pdfrw/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Jun 21 20:18:32 2018 (r472997) +++ head/textproc/Makefile Thu Jun 21 20:22:16 2018 (r472998) @@ -1337,6 +1337,7 @@ SUBDIR += py-parso SUBDIR += py-pdfminer SUBDIR += py-pdfminer3k + SUBDIR += py-pdfrw SUBDIR += py-pss SUBDIR += py-pyPEG2 SUBDIR += py-pyctpp2 Added: head/textproc/py-pdfrw/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pdfrw/Makefile Thu Jun 21 20:22:16 2018 (r472998) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= pdfrw +PORTVERSION= 0.4 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= greg@unrelenting.technology +COMMENT= PDF file reader/writer library + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/textproc/py-pdfrw/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pdfrw/distinfo Thu Jun 21 20:22:16 2018 (r472998) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521393528 +SHA256 (pdfrw-0.4.tar.gz) = 0dc0494a0e6561b268542b28ede2280387c2728114f117d3bb5d8e4787b93ef4 +SIZE (pdfrw-0.4.tar.gz) = 95402 Added: head/textproc/py-pdfrw/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pdfrw/pkg-descr Thu Jun 21 20:22:16 2018 (r472998) @@ -0,0 +1,12 @@ +A Python library and utility that reads and writes PDF files: + +- Version 0.4 is tested and works on Python 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6 +- Operations include subsetting, merging, rotating, modifying metadata, etc. +- The fastest pure Python PDF parser available +- Has been used for years by a printer in pre-press production +- Can be used with rst2pdf to faithfully reproduce vector images +- Can be used either standalone, or in conjunction with reportlab + to reuse existing PDFs in new ones +- Permissively licensed + +WWW: https://github.com/pmaupin/pdfrw From owner-svn-ports-head@freebsd.org Thu Jun 21 20:23:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 625661027A18; Thu, 21 Jun 2018 20:23:43 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0E4308D135; Thu, 21 Jun 2018 20:23:43 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C9D9F16BF5; Thu, 21 Jun 2018 20:23:42 +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 w5LKNgtK031270; Thu, 21 Jun 2018 20:23:42 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKNfUr031265; Thu, 21 Jun 2018 20:23:41 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806212023.w5LKNfUr031265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 21 Jun 2018 20:23:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472999 - in head/deskutils: . mat mat/files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/deskutils: . mat mat/files X-SVN-Commit-Revision: 472999 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:23:43 -0000 Author: pi Date: Thu Jun 21 20:23:41 2018 New Revision: 472999 URL: https://svnweb.freebsd.org/changeset/ports/472999 Log: New port: deskutils/mat MAT (Metadata Anonymisation Toolkit) is a toolbox composed of a GUI application, a CLI application and a library, to anonymize/remove metadata. WWW: https://mat.boum.org PR: 226702 Submitted by: greg@unrelenting.technology Added: head/deskutils/mat/ head/deskutils/mat/Makefile (contents, props changed) head/deskutils/mat/distinfo (contents, props changed) head/deskutils/mat/files/ head/deskutils/mat/files/patch-libmat_mat.py (contents, props changed) head/deskutils/mat/pkg-descr (contents, props changed) Modified: head/deskutils/Makefile Modified: head/deskutils/Makefile ============================================================================== --- head/deskutils/Makefile Thu Jun 21 20:22:16 2018 (r472998) +++ head/deskutils/Makefile Thu Jun 21 20:23:41 2018 (r472999) @@ -171,6 +171,7 @@ SUBDIR += lumina-screenshot SUBDIR += lumina-textedit SUBDIR += lumina-xdg-entry + SUBDIR += mat SUBDIR += mate-notification-daemon SUBDIR += mate-utils SUBDIR += mbox-importer Added: head/deskutils/mat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/mat/Makefile Thu Jun 21 20:23:41 2018 (r472999) @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= mat +DISTVERSION= 0.6.1-12 +DISTVERSIONSUFFIX= -g4b9a657 +CATEGORIES= deskutils + +MAINTAINER= greg@unrelenting.technology +COMMENT= Metadata Anonymization Toolkit + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}python-distutils-extra>0:devel/py-python-distutils-extra@${FLAVOR} \ + intltool-update:textproc/intltool +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}mutagen>=0:audio/py-mutagen@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pdfrw>=0:textproc/py-pdfrw@${PY_FLAVOR} \ + srm:security/srm + +USES= gettext python:2.7 +USE_GITLAB= yes +GL_SITE= https://0xacab.org +GL_ACCOUNT= mat +GL_COMMIT= 4b9a65758da4bb27724ac1f94162810a29cb3877 +USE_PYTHON= distutils autoplist +USE_GNOME= gtk30 pygobject3 +INSTALLS_ICONS= yes + +OPTIONS_DEFINE= IMAGE +OPTIONS_DEFAULT= IMAGE + +IMAGE_DESC= Image file support + +IMAGE_RUN_DEPENDS= exiftool:graphics/p5-Image-ExifTool + +.include Added: head/deskutils/mat/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/mat/distinfo Thu Jun 21 20:23:41 2018 (r472999) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521393594 +SHA256 (mat-mat-4b9a65758da4bb27724ac1f94162810a29cb3877_GL0.tar.gz) = 4f4cab3ab353cc295ebff87fe69ab41a84ba0f1a24c688e128044731dc2c0a48 +SIZE (mat-mat-4b9a65758da4bb27724ac1f94162810a29cb3877_GL0.tar.gz) = 2729762 Added: head/deskutils/mat/files/patch-libmat_mat.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/mat/files/patch-libmat_mat.py Thu Jun 21 20:23:41 2018 (r472999) @@ -0,0 +1,15 @@ +--- libmat/mat.py.orig 2018-03-18 17:33:51 UTC ++++ libmat/mat.py +@@ -116,10 +116,8 @@ def secure_remove(filename): + raise libmat.exceptions.UnableToWriteFile + + try: +- shred = 'shred' +- if platform.system() == 'MacOS': +- shred = 'gshred' +- if not subprocess.call([shred, '--remove', filename]): ++ shred = 'srm' ++ if not subprocess.call([shred, filename]): + return True + else: + raise OSError Added: head/deskutils/mat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/mat/pkg-descr Thu Jun 21 20:23:41 2018 (r472999) @@ -0,0 +1,5 @@ +MAT (Metadata Anonymisation Toolkit) is a toolbox composed of a GUI +application, a CLI application and a library, to anonymize/remove +metadata. + +WWW: https://mat.boum.org From owner-svn-ports-head@freebsd.org Thu Jun 21 20:28:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7921F1027B0E; Thu, 21 Jun 2018 20:28:18 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 264E88D2E2; Thu, 21 Jun 2018 20:28:18 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0771A16BFA; Thu, 21 Jun 2018 20:28:18 +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 w5LKSHSF031592; Thu, 21 Jun 2018 20:28:17 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKSHnk031589; Thu, 21 Jun 2018 20:28:17 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201806212028.w5LKSHnk031589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 21 Jun 2018 20:28:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473000 - head/x11-toolkits/gtksourceview4 X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: head/x11-toolkits/gtksourceview4 X-SVN-Commit-Revision: 473000 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:28:18 -0000 Author: kwm Date: Thu Jun 21 20:28:17 2018 New Revision: 473000 URL: https://svnweb.freebsd.org/changeset/ports/473000 Log: Update gtksourceview4 to 4.0.2. Move PORTSCOUT to pet portlint. Modified: head/x11-toolkits/gtksourceview4/Makefile head/x11-toolkits/gtksourceview4/distinfo head/x11-toolkits/gtksourceview4/pkg-plist Modified: head/x11-toolkits/gtksourceview4/Makefile ============================================================================== --- head/x11-toolkits/gtksourceview4/Makefile Thu Jun 21 20:23:41 2018 (r472999) +++ head/x11-toolkits/gtksourceview4/Makefile Thu Jun 21 20:28:17 2018 (r473000) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gtksourceview -PORTVERSION= 4.0.1 +PORTVERSION= 4.0.2 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 4 @@ -14,9 +14,10 @@ COMMENT= Text widget that adds syntax highlighting to LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -PORTSCOUT= limitw:1,even - BUILD_DEPENDS= vala:lang/vala +LIB_DEPENDS= libfribidi.so:converters/fribidi + +PORTSCOUT= limitw:1,even USES= compiler:c11 gettext gmake gnome libtool pkgconfig tar:xz USE_CSTD= c11 Modified: head/x11-toolkits/gtksourceview4/distinfo ============================================================================== --- head/x11-toolkits/gtksourceview4/distinfo Thu Jun 21 20:23:41 2018 (r472999) +++ head/x11-toolkits/gtksourceview4/distinfo Thu Jun 21 20:28:17 2018 (r473000) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525964440 -SHA256 (gnome/gtksourceview-4.0.1.tar.xz) = 38ce20ce0b8162d2ac0ee60c33b6c95173435499c7e101d2bde5f0276df5a37a -SIZE (gnome/gtksourceview-4.0.1.tar.xz) = 1356580 +TIMESTAMP = 1529611439 +SHA256 (gnome/gtksourceview-4.0.2.tar.xz) = 15829fc728f74e2005e2fc65c2aada4b223f3b361b2200b7e02ff7a9014b5fac +SIZE (gnome/gtksourceview-4.0.2.tar.xz) = 1370844 Modified: head/x11-toolkits/gtksourceview4/pkg-plist ============================================================================== --- head/x11-toolkits/gtksourceview4/pkg-plist Thu Jun 21 20:23:41 2018 (r472999) +++ head/x11-toolkits/gtksourceview4/pkg-plist Thu Jun 21 20:28:17 2018 (r473000) @@ -83,6 +83,24 @@ share/gtk-doc/html/gtksourceview-4.0/GtkSourceUndoMana share/gtk-doc/html/gtksourceview-4.0/GtkSourceView.html share/gtk-doc/html/gtksourceview-4.0/annexes.html share/gtk-doc/html/gtksourceview-4.0/annotation-glossary.html +share/gtk-doc/html/gtksourceview-4.0/api-index-2-0.html +share/gtk-doc/html/gtksourceview-4.0/api-index-2-10.html +share/gtk-doc/html/gtksourceview-4.0/api-index-2-12.html +share/gtk-doc/html/gtksourceview-4.0/api-index-2-2.html +share/gtk-doc/html/gtksourceview-4.0/api-index-2-4.html +share/gtk-doc/html/gtksourceview-4.0/api-index-2-8.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-0.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-10.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-12.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-14.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-16.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-18.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-20.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-22.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-24.html +share/gtk-doc/html/gtksourceview-4.0/api-index-3-4.html +share/gtk-doc/html/gtksourceview-4.0/api-index-4-0.html +share/gtk-doc/html/gtksourceview-4.0/api-index-deprecated.html share/gtk-doc/html/gtksourceview-4.0/api-index-full.html share/gtk-doc/html/gtksourceview-4.0/api-reference.html share/gtk-doc/html/gtksourceview-4.0/completion.html @@ -184,6 +202,7 @@ share/gtk-doc/html/gtksourceview-4.0/up.png %%DATADIR%%-4/language-specs/language.rng %%DATADIR%%-4/language-specs/language2.rng %%DATADIR%%-4/language-specs/latex.lang +%%DATADIR%%-4/language-specs/less.lang %%DATADIR%%-4/language-specs/lex.lang %%DATADIR%%-4/language-specs/libtool.lang %%DATADIR%%-4/language-specs/llvm.lang @@ -228,6 +247,7 @@ share/gtk-doc/html/gtksourceview-4.0/up.png %%DATADIR%%-4/language-specs/scala.lang %%DATADIR%%-4/language-specs/scheme.lang %%DATADIR%%-4/language-specs/scilab.lang +%%DATADIR%%-4/language-specs/scss.lang %%DATADIR%%-4/language-specs/sh.lang %%DATADIR%%-4/language-specs/sml.lang %%DATADIR%%-4/language-specs/sparql.lang From owner-svn-ports-head@freebsd.org Thu Jun 21 20:29:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92E5F1027B6C; Thu, 21 Jun 2018 20:29:23 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B07A8D3D8; Thu, 21 Jun 2018 20:29:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1A64A16BFB; Thu, 21 Jun 2018 20:29:23 +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 w5LKTN42031767; Thu, 21 Jun 2018 20:29:23 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LKTMCm031764; Thu, 21 Jun 2018 20:29:22 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201806212029.w5LKTMCm031764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 21 Jun 2018 20:29:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473001 - head/x11-toolkits/gtksourceview3 X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: head/x11-toolkits/gtksourceview3 X-SVN-Commit-Revision: 473001 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 20:29:24 -0000 Author: kwm Date: Thu Jun 21 20:29:22 2018 New Revision: 473001 URL: https://svnweb.freebsd.org/changeset/ports/473001 Log: Update gtksourceview3 to 3.24.8. Modified: head/x11-toolkits/gtksourceview3/Makefile head/x11-toolkits/gtksourceview3/distinfo head/x11-toolkits/gtksourceview3/pkg-plist Modified: head/x11-toolkits/gtksourceview3/Makefile ============================================================================== --- head/x11-toolkits/gtksourceview3/Makefile Thu Jun 21 20:28:17 2018 (r473000) +++ head/x11-toolkits/gtksourceview3/Makefile Thu Jun 21 20:29:22 2018 (r473001) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gtksourceview -PORTVERSION= 3.24.7 +PORTVERSION= 3.24.8 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 3 @@ -20,6 +20,7 @@ PORTSCOUT= limitw:1,even .if !defined(REFERENCE_PORT) BUILD_DEPENDS= vala:lang/vala +LIB_DEPENDS= libfribidi.so:converters/fribidi USES+= compiler:c11 gettext gmake gnome libtool pathfix pkgconfig USE_CSTD= c11 Modified: head/x11-toolkits/gtksourceview3/distinfo ============================================================================== --- head/x11-toolkits/gtksourceview3/distinfo Thu Jun 21 20:28:17 2018 (r473000) +++ head/x11-toolkits/gtksourceview3/distinfo Thu Jun 21 20:29:22 2018 (r473001) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526069225 -SHA256 (gnome3/gtksourceview-3.24.7.tar.xz) = a5c20d3a6347533689358f3ea52486409f6dd41d5a69c65eab7570cfaffee8e6 -SIZE (gnome3/gtksourceview-3.24.7.tar.xz) = 1390500 +TIMESTAMP = 1529611642 +SHA256 (gnome3/gtksourceview-3.24.8.tar.xz) = 1e9bb8ff190db705deb916dd23ff681f0e8803aec407bf0fd64c7e615ac436fe +SIZE (gnome3/gtksourceview-3.24.8.tar.xz) = 1408964 Modified: head/x11-toolkits/gtksourceview3/pkg-plist ============================================================================== --- head/x11-toolkits/gtksourceview3/pkg-plist Thu Jun 21 20:28:17 2018 (r473000) +++ head/x11-toolkits/gtksourceview3/pkg-plist Thu Jun 21 20:29:22 2018 (r473001) @@ -1,3 +1,134 @@ +include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +include/gtksourceview-3.0/gtksourceview/gtksource.h +include/gtksourceview-3.0/gtksourceview/gtksourceautocleanups.h +include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +include/gtksourceview-3.0/gtksourceview/gtksourcemap.h +include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +include/gtksourceview-3.0/gtksourceview/gtksourceregion.h +include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +include/gtksourceview-3.0/gtksourceview/gtksourcespacedrawer.h +include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooser.h +include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserbutton.h +include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserwidget.h +include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +include/gtksourceview-3.0/gtksourceview/gtksourcetag.h +include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +include/gtksourceview-3.0/gtksourceview/gtksourceversion.h +include/gtksourceview-3.0/gtksourceview/gtksourceview-enumtypes.h +include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +include/gtksourceview-3.0/gtksourceview/gtksourceview.h +lib/girepository-1.0/GtkSource-3.0.typelib +lib/libgtksourceview-3.0.so +lib/libgtksourceview-3.0.so.1 +lib/libgtksourceview-3.0.so.1.8.0 +libdata/pkgconfig/gtksourceview-3.0.pc +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceBuffer.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletion.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionContext.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionInfo.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionItem.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionProposal.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionProvider.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionWords.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceEncoding.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceFile.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceFileLoader.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceFileSaver.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutter.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutterRenderer.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutterRendererPixbuf.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutterRendererText.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceLanguage.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceLanguageManager.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceMap.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceMark.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceMarkAttributes.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourcePrintCompositor.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceRegion.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceSearchContext.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceSearchSettings.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceSpaceDrawer.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyle.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleScheme.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeChooser.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeChooserButton.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeChooserWidget.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeManager.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceTag.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceUndoManager.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceView.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/annotation-glossary.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-2-0.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-2-10.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-2-12.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-2-2.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-2-4.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-2-8.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-0.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-10.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-12.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-14.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-16.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-18.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-20.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-22.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-24.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-3-4.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-deprecated.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-full.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch01.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch02.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch03.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch04.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch05.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch06.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch07.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch08.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/ch09.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/gtksourceview-3.0-GtkSourceUtils.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/gtksourceview-3.0-Version-Information.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/gtksourceview-3.0.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%-3.0/home.png +%%PORTDOCS%%%%DOCSDIR%%-3.0/index.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/lang-reference.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/lang-tutorial.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/left-insensitive.png +%%PORTDOCS%%%%DOCSDIR%%-3.0/left.png +%%PORTDOCS%%%%DOCSDIR%%-3.0/object-tree.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/pt01.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/pt02.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/pt03.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/pt04.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/right-insensitive.png +%%PORTDOCS%%%%DOCSDIR%%-3.0/right.png +%%PORTDOCS%%%%DOCSDIR%%-3.0/style-reference.html +%%PORTDOCS%%%%DOCSDIR%%-3.0/style.css +%%PORTDOCS%%%%DOCSDIR%%-3.0/up-insensitive.png +%%PORTDOCS%%%%DOCSDIR%%-3.0/up.png +share/gir-1.0/GtkSource-3.0.gir %%DATADIR%%-3.0/language-specs/R.lang %%DATADIR%%-3.0/language-specs/abnf.lang %%DATADIR%%-3.0/language-specs/actionscript.lang @@ -66,6 +197,7 @@ %%DATADIR%%-3.0/language-specs/language.rng %%DATADIR%%-3.0/language-specs/language2.rng %%DATADIR%%-3.0/language-specs/latex.lang +%%DATADIR%%-3.0/language-specs/less.lang %%DATADIR%%-3.0/language-specs/lex.lang %%DATADIR%%-3.0/language-specs/libtool.lang %%DATADIR%%-3.0/language-specs/llvm.lang @@ -110,6 +242,7 @@ %%DATADIR%%-3.0/language-specs/scala.lang %%DATADIR%%-3.0/language-specs/scheme.lang %%DATADIR%%-3.0/language-specs/scilab.lang +%%DATADIR%%-3.0/language-specs/scss.lang %%DATADIR%%-3.0/language-specs/sh.lang %%DATADIR%%-3.0/language-specs/sml.lang %%DATADIR%%-3.0/language-specs/sparql.lang @@ -139,120 +272,6 @@ %%DATADIR%%-3.0/styles/solarized-light.xml %%DATADIR%%-3.0/styles/styles.rng %%DATADIR%%-3.0/styles/tango.xml -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceBuffer.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletion.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionContext.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionInfo.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionItem.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionProposal.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionProvider.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceCompletionWords.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceEncoding.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceFile.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceFileLoader.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceFileSaver.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutter.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutterRenderer.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutterRendererPixbuf.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceGutterRendererText.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceLanguage.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceLanguageManager.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceMap.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceMark.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceMarkAttributes.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourcePrintCompositor.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceRegion.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceSearchContext.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceSearchSettings.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceSpaceDrawer.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyle.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleScheme.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeChooser.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeChooserButton.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeChooserWidget.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceStyleSchemeManager.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceTag.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceUndoManager.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/GtkSourceView.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/annotation-glossary.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/api-index-full.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch01.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch02.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch03.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch04.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch05.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch06.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch07.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch08.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/ch09.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/gtksourceview-3.0-GtkSourceUtils.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/gtksourceview-3.0-Version-Information.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/gtksourceview-3.0.devhelp2 -%%PORTDOCS%%%%DOCSDIR%%-3.0/home.png -%%PORTDOCS%%%%DOCSDIR%%-3.0/index.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/lang-reference.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/lang-tutorial.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/left-insensitive.png -%%PORTDOCS%%%%DOCSDIR%%-3.0/left.png -%%PORTDOCS%%%%DOCSDIR%%-3.0/object-tree.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/pt01.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/pt02.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/pt03.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/pt04.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/right-insensitive.png -%%PORTDOCS%%%%DOCSDIR%%-3.0/right.png -%%PORTDOCS%%%%DOCSDIR%%-3.0/style-reference.html -%%PORTDOCS%%%%DOCSDIR%%-3.0/style.css -%%PORTDOCS%%%%DOCSDIR%%-3.0/up-insensitive.png -%%PORTDOCS%%%%DOCSDIR%%-3.0/up.png -include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h -include/gtksourceview-3.0/gtksourceview/gtksource.h -include/gtksourceview-3.0/gtksourceview/gtksourceautocleanups.h -include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h -include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h -include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h -include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h -include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h -include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h -include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h -include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h -include/gtksourceview-3.0/gtksourceview/gtksourcefile.h -include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h -include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h -include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h -include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h -include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h -include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h -include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h -include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h -include/gtksourceview-3.0/gtksourceview/gtksourcemap.h -include/gtksourceview-3.0/gtksourceview/gtksourcemark.h -include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h -include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h -include/gtksourceview-3.0/gtksourceview/gtksourceregion.h -include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h -include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h -include/gtksourceview-3.0/gtksourceview/gtksourcespacedrawer.h -include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h -include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h -include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooser.h -include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserbutton.h -include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooserwidget.h -include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h -include/gtksourceview-3.0/gtksourceview/gtksourcetag.h -include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h -include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h -include/gtksourceview-3.0/gtksourceview/gtksourceutils.h -include/gtksourceview-3.0/gtksourceview/gtksourceversion.h -include/gtksourceview-3.0/gtksourceview/gtksourceview-enumtypes.h -include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h -include/gtksourceview-3.0/gtksourceview/gtksourceview.h -lib/girepository-1.0/GtkSource-3.0.typelib -lib/libgtksourceview-3.0.so -lib/libgtksourceview-3.0.so.1 -lib/libgtksourceview-3.0.so.1.8.0 -libdata/pkgconfig/gtksourceview-3.0.pc -share/gir-1.0/GtkSource-3.0.gir share/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo share/locale/as/LC_MESSAGES/gtksourceview-3.0.mo share/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo From owner-svn-ports-head@freebsd.org Thu Jun 21 21:12:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66646100077F; Thu, 21 Jun 2018 21:12:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 13F778E98D; Thu, 21 Jun 2018 21:12:12 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E94AF17442; Thu, 21 Jun 2018 21:12:11 +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 w5LLCBpm054607; Thu, 21 Jun 2018 21:12:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LLCBPr054604; Thu, 21 Jun 2018 21:12:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806212112.w5LLCBPr054604@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, 21 Jun 2018 21:12:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473002 - head/dns/unbound X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/dns/unbound X-SVN-Commit-Revision: 473002 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 21:12:12 -0000 Author: sunpoet Date: Thu Jun 21 21:12:11 2018 New Revision: 473002 URL: https://svnweb.freebsd.org/changeset/ports/473002 Log: Update to 1.7.3 Changes: https://www.nlnetlabs.nl/svn/unbound/tags/release-1.7.3/doc/Changelog PR: 229202 Submitted by: Jaap Akkerhuis (maintainer) Modified: head/dns/unbound/Makefile head/dns/unbound/distinfo head/dns/unbound/pkg-plist Modified: head/dns/unbound/Makefile ============================================================================== --- head/dns/unbound/Makefile Thu Jun 21 20:29:22 2018 (r473001) +++ head/dns/unbound/Makefile Thu Jun 21 21:12:11 2018 (r473002) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= unbound -PORTVERSION= 1.7.2 +PORTVERSION= 1.7.3 CATEGORIES= dns MASTER_SITES= https://www.nlnetlabs.nl/downloads/unbound/ \ https://distfiles.crux.guru/ Modified: head/dns/unbound/distinfo ============================================================================== --- head/dns/unbound/distinfo Thu Jun 21 20:29:22 2018 (r473001) +++ head/dns/unbound/distinfo Thu Jun 21 21:12:11 2018 (r473002) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528712647 -SHA256 (unbound-1.7.2.tar.gz) = a85fc7bb34711992cf128b2012638ebb8dc1fe15818baa381f6489240845eaa0 -SIZE (unbound-1.7.2.tar.gz) = 5570654 +TIMESTAMP = 1529590466 +SHA256 (unbound-1.7.3.tar.gz) = c11de115d928a6b48b2165e0214402a7a7da313cd479203a7ce7a8b62cba602d +SIZE (unbound-1.7.3.tar.gz) = 5570604 Modified: head/dns/unbound/pkg-plist ============================================================================== --- head/dns/unbound/pkg-plist Thu Jun 21 20:29:22 2018 (r473001) +++ head/dns/unbound/pkg-plist Thu Jun 21 21:12:11 2018 (r473002) @@ -5,7 +5,7 @@ libdata/pkgconfig/libunbound.pc lib/libunbound.a lib/libunbound.so lib/libunbound.so.2 -lib/libunbound.so.2.5.10 +lib/libunbound.so.2.5.11 %%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/unbound.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/unboundmodule.py From owner-svn-ports-head@freebsd.org Thu Jun 21 21:27:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5A9B1000C96; Thu, 21 Jun 2018 21:27:06 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 755F98F53C; Thu, 21 Jun 2018 21:27:06 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 559241763C; Thu, 21 Jun 2018 21:27:06 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5LLR6wJ062465; Thu, 21 Jun 2018 21:27:06 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LLR5XZ062461; Thu, 21 Jun 2018 21:27:05 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201806212127.w5LLR5XZ062461@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Thu, 21 Jun 2018 21:27:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473003 - in head/x11-drivers/xf86-input-mouse: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/x11-drivers/xf86-input-mouse: . files X-SVN-Commit-Revision: 473003 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 21:27:07 -0000 Author: zeising Date: Thu Jun 21 21:27:04 2018 New Revision: 473003 URL: https://svnweb.freebsd.org/changeset/ports/473003 Log: x11-drivers/xf86-input-mouse: Update to 1.9.3 Regenerate patches to make them apply cleanly. Modified: head/x11-drivers/xf86-input-mouse/Makefile head/x11-drivers/xf86-input-mouse/distinfo head/x11-drivers/xf86-input-mouse/files/patch-src-bsd_mouse.c head/x11-drivers/xf86-input-mouse/files/patch-src_Makefile.in head/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c Modified: head/x11-drivers/xf86-input-mouse/Makefile ============================================================================== --- head/x11-drivers/xf86-input-mouse/Makefile Thu Jun 21 21:12:11 2018 (r473002) +++ head/x11-drivers/xf86-input-mouse/Makefile Thu Jun 21 21:27:04 2018 (r473003) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= xf86-input-mouse -PORTVERSION= 1.9.2 -PORTREVISION= 1 +PORTVERSION= 1.9.3 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org Modified: head/x11-drivers/xf86-input-mouse/distinfo ============================================================================== --- head/x11-drivers/xf86-input-mouse/distinfo Thu Jun 21 21:12:11 2018 (r473002) +++ head/x11-drivers/xf86-input-mouse/distinfo Thu Jun 21 21:27:04 2018 (r473003) @@ -1,3 +1,3 @@ -TIMESTAMP = 1479392438 -SHA256 (xorg/driver/xf86-input-mouse-1.9.2.tar.bz2) = f425d5b05c6ab412a27e0a1106bb83f9e2662b307210abbe48270892387f4b2f -SIZE (xorg/driver/xf86-input-mouse-1.9.2.tar.bz2) = 377685 +TIMESTAMP = 1529521635 +SHA256 (xorg/driver/xf86-input-mouse-1.9.3.tar.bz2) = 93ecb350604d05be98b7d4e5db3b8155a44890069a7d8d6b800c0bea79c85cc5 +SIZE (xorg/driver/xf86-input-mouse-1.9.3.tar.bz2) = 382013 Modified: head/x11-drivers/xf86-input-mouse/files/patch-src-bsd_mouse.c ============================================================================== --- head/x11-drivers/xf86-input-mouse/files/patch-src-bsd_mouse.c Thu Jun 21 21:12:11 2018 (r473002) +++ head/x11-drivers/xf86-input-mouse/files/patch-src-bsd_mouse.c Thu Jun 21 21:27:04 2018 (r473003) @@ -1,4 +1,4 @@ ---- src/bsd_mouse.c.orig 2015-04-20 01:07:33 UTC +--- src/bsd_mouse.c.orig 2018-06-19 04:36:21 UTC +++ src/bsd_mouse.c @@ -26,6 +26,24 @@ * authorization from the copyright holder(s) and author(s). @@ -59,7 +59,7 @@ #define HUP_GENERIC_DESKTOP 0x0001 #define HUP_BUTTON 0x0009 -@@ -75,11 +104,13 @@ static const char *FindDevice(InputInfoP +@@ -75,11 +104,13 @@ static const char *FindDevice(InputInfoPtr, const char #define DEFAULT_MOUSE_DEV "/dev/mouse" #define DEFAULT_SYSMOUSE_DEV "/dev/sysmouse" #define DEFAULT_PS2_DEV "/dev/psm0" @@ -113,7 +113,7 @@ int i; mousehw_t hw; mousemode_t mode; -@@ -188,7 +240,13 @@ SetupAuto(InputInfoPtr pInfo, int *proto +@@ -188,7 +240,13 @@ SetupAuto(InputInfoPtr pInfo, int *protoPara) if (pInfo->fd == -1) return NULL; @@ -127,7 +127,7 @@ i = 1; ioctl(pInfo->fd, MOUSE_SETLEVEL, &i); -@@ -207,9 +265,18 @@ SetupAuto(InputInfoPtr pInfo, int *proto +@@ -207,9 +265,18 @@ SetupAuto(InputInfoPtr pInfo, int *protoPara) protoPara[0] = mode.syncmask[0]; protoPara[1] = mode.syncmask[1]; } @@ -148,7 +148,7 @@ } } } -@@ -232,41 +299,41 @@ SetSysMouseRes(InputInfoPtr pInfo, const +@@ -232,41 +299,41 @@ SetSysMouseRes(InputInfoPtr pInfo, const char *protoco (protocol && xf86NameCmp(protocol, "SysMouse") == 0)) { /* * As the FreeBSD sysmouse driver defaults to protocol level 0 @@ -229,7 +229,7 @@ #endif } else { /* -@@ -293,28 +360,32 @@ FindDevice(InputInfoPtr pInfo, const cha +@@ -293,28 +360,32 @@ FindDevice(InputInfoPtr pInfo, const char *protocol, i * the test for whether /dev/sysmouse is usable can be made. */ if (!strcmp(*pdev, DEFAULT_MOUSE_DEV)) { @@ -275,7 +275,7 @@ break; } } -@@ -486,30 +557,78 @@ wsconsPreInit(InputInfoPtr pInfo, const +@@ -486,30 +557,78 @@ wsconsPreInit(InputInfoPtr pInfo, const char *protocol #if defined(USBMOUSE_SUPPORT) @@ -362,7 +362,7 @@ switch (what) { case DEVICE_INIT: -@@ -518,38 +637,96 @@ usbMouseProc(DeviceIntPtr pPointer, int +@@ -518,40 +637,96 @@ usbMouseProc(DeviceIntPtr pPointer, int what) for (nbuttons = 0; nbuttons < MSE_MAXBUTTONS; ++nbuttons) map[nbuttons + 1] = nbuttons + 1; @@ -382,7 +382,7 @@ + ? AXIS_LABEL_PROP_ABS_Y : AXIS_LABEL_PROP_REL_Y); + axes_labels[2] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_PRESSURE); +#endif -+ + + InitButtonClassDeviceStruct(pPointer, min(pMse->buttons, MSE_MAXBUTTONS), +#ifdef HAVE_LABELS + btn_labels, @@ -401,7 +401,7 @@ + (acol->xmin != acol->xmax || acol->ymin != acol->ymax) ? + Absolute : Relative); + InitPtrFeedbackClassDeviceStruct(pPointer, pMse->Ctrl); - ++ /* X valuator */ - xf86InitValuatorAxisStruct(pPointer, 0, 0, -1, 1, 0, 1); + xf86InitValuatorAxisStruct(pPointer, 0, @@ -458,8 +458,10 @@ - pInfo->fd = -1; - } else { - xf86FlushInput(pInfo->fd); +-#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 23 - if (!xf86InstallSIGIOHandler (pInfo->fd, usbSigioReadInput, - pInfo)) +-#endif - AddEnabledDevice(pInfo->fd); - } + if (pUsbMse->opened++ == 0) { @@ -482,7 +484,7 @@ } pMse->lastButtons = 0; pMse->lastMappedButtons = 0; -@@ -560,7 +737,7 @@ usbMouseProc(DeviceIntPtr pPointer, int +@@ -562,7 +737,7 @@ usbMouseProc(DeviceIntPtr pPointer, int what) case DEVICE_OFF: case DEVICE_CLOSE: if (pInfo->fd != -1) { @@ -491,7 +493,7 @@ if (pUsbMse->packetSize > 8 && pUsbMse->buffer) { free(pUsbMse->buffer); } -@@ -571,6 +748,7 @@ usbMouseProc(DeviceIntPtr pPointer, int +@@ -573,6 +748,7 @@ usbMouseProc(DeviceIntPtr pPointer, int what) xf86CloseSerial(pInfo->fd); pInfo->fd = -1; } @@ -499,7 +501,7 @@ pPointer->public.on = FALSE; usleep(300000); break; -@@ -586,45 +764,154 @@ usbReadInput(InputInfoPtr pInfo) +@@ -588,45 +764,154 @@ usbReadInput(InputInfoPtr pInfo) { MouseDevPtr pMse; UsbMsePtr pUsbMse; @@ -675,7 +677,7 @@ } static void -@@ -633,14 +920,17 @@ usbSigioReadInput (int fd, void *closure +@@ -635,14 +920,17 @@ usbSigioReadInput (int fd, void *closure) usbReadInput ((InputInfoPtr) closure); } @@ -696,21 +698,22 @@ pUsbMse = malloc(sizeof(UsbMseRec)); if (pUsbMse == NULL) { -@@ -649,12 +939,7 @@ usbPreInit(InputInfoPtr pInfo, const cha +@@ -651,13 +939,8 @@ usbPreInit(InputInfoPtr pInfo, const char *protocol, i return FALSE; } - pMse->protocol = protocol; - xf86Msg(X_CONFIG, "%s: Protocol: %s\n", pInfo->name, protocol); -- ++ bzero(pUsbMse, sizeof(UsbMseRec)); + - /* Collect the options, and process the common options. */ - COLLECT_INPUT_OPTIONS(pInfo, NULL); - xf86ProcessCommonOptions(pInfo, pInfo->options); -+ bzero(pUsbMse, sizeof(UsbMseRec)); - +- /* Check if the device can be opened. */ pInfo->fd = xf86OpenSerial(pInfo->options); -@@ -670,19 +955,134 @@ usbPreInit(InputInfoPtr pInfo, const cha + if (pInfo->fd == -1) { +@@ -672,19 +955,134 @@ usbPreInit(InputInfoPtr pInfo, const char *protocol, i } /* Get USB informations */ reportDesc = hid_get_report_desc(pInfo->fd); @@ -857,7 +860,7 @@ /* Allocate buffer */ if (pUsbMse->packetSize <= 8) { pUsbMse->buffer = pMse->protoBuf; -@@ -692,56 +1092,129 @@ usbPreInit(InputInfoPtr pInfo, const cha +@@ -694,56 +1092,129 @@ usbPreInit(InputInfoPtr pInfo, const char *protocol, i if (pUsbMse->buffer == NULL) { xf86Msg(X_ERROR, "%s: cannot allocate buffer\n", pInfo->name); free(pUsbMse); @@ -909,7 +912,7 @@ pMse->mousePriv = pUsbMse; + return TRUE; +} -+ + +/* This function is called when the protocol is "usb". */ +static Bool +usbPreInit(InputInfoPtr pInfo, const char *protocol, int flags) @@ -985,7 +988,7 @@ + pMse->disableXY = TRUE; + pMse->hasZ = acol->hasZ; + pMse->hasW = acol->hasW; - ++ /* Process common mouse options (like Emulate3Buttons, etc). */ pMse->CommonOptions(pInfo); @@ -1024,7 +1027,7 @@ /* Setup the local procs. */ pInfo->device_control = usbMouseProc; pInfo->read_input = usbReadInput; -@@ -784,7 +1257,9 @@ OSMouseInit(int flags) +@@ -786,7 +1257,9 @@ OSMouseInit(int flags) p->CheckProtocol = CheckProtocol; #if (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)) && defined(MOUSE_PROTO_SYSMOUSE) p->SetupAuto = SetupAuto; Modified: head/x11-drivers/xf86-input-mouse/files/patch-src_Makefile.in ============================================================================== --- head/x11-drivers/xf86-input-mouse/files/patch-src_Makefile.in Thu Jun 21 21:12:11 2018 (r473002) +++ head/x11-drivers/xf86-input-mouse/files/patch-src_Makefile.in Thu Jun 21 21:27:04 2018 (r473003) @@ -1,6 +1,6 @@ ---- src/Makefile.in.orig 2016-11-22 04:55:36 UTC +--- src/Makefile.in.orig 2018-06-21 20:18:48 UTC +++ src/Makefile.in -@@ -357,7 +357,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include $( +@@ -357,7 +357,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include $(XORG_CFLAGS) # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. @DRIVER_NAME@_drv_la_LTLIBRARIES = @DRIVER_NAME@_drv.la Modified: head/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c ============================================================================== --- head/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c Thu Jun 21 21:12:11 2018 (r473002) +++ head/x11-drivers/xf86-input-mouse/files/patch-src_mouse.c Thu Jun 21 21:27:04 2018 (r473003) @@ -1,4 +1,4 @@ ---- src/mouse.c.orig 2016-09-06 03:53:31 UTC +--- src/mouse.c.orig 2018-06-19 04:36:21 UTC +++ src/mouse.c @@ -304,13 +304,39 @@ MouseCommonOptions(InputInfoPtr pInfo) @@ -59,15 +59,16 @@ pMse->flipXY = xf86SetBoolOption(pInfo->options, "FlipXY", FALSE); if (xf86SetBoolOption(pInfo->options, "InvX", FALSE)) { pMse->invX = -1; -@@ -339,7 +369,7 @@ MouseCommonOptions(InputInfoPtr pInfo) +@@ -339,8 +369,8 @@ MouseCommonOptions(InputInfoPtr pInfo) } else pMse->invY = 1; pMse->angleOffset = xf86SetIntOption(pInfo->options, "AngleOffset", 0); -- + pMse->sensitivity = xf86SetRealOption(pInfo->options, "Sensitivity", 1.0); +- if (pMse->pDragLock) free(pMse->pDragLock); + pMse->pDragLock = NULL; @@ -449,14 +479,17 @@ MouseCommonOptions(InputInfoPtr pInfo) free(s); } @@ -126,7 +127,7 @@ } static void -@@ -997,6 +1006,8 @@ MousePreInit(InputDriverPtr drv, InputIn +@@ -996,6 +1005,8 @@ MousePreInit(InputDriverPtr drv, InputInfoPtr pInfo, i /* Default Mapping: 1 2 3 8 9 10 11 ... */ for (i = 0; i < MSE_MAXBUTTONS; i++) pMse->buttonMap[i] = 1 << (i > 2 && i < MSE_MAXBUTTONS-4 ? i+4 : i); @@ -135,7 +136,7 @@ protocol = MousePickProtocol(pInfo, device, protocol, &protocolID); -@@ -2198,7 +2209,7 @@ MouseDoPostEvent(InputInfoPtr pInfo, int +@@ -2197,7 +2208,7 @@ MouseDoPostEvent(InputInfoPtr pInfo, int buttons, int if (pMse->emulateWheel) { /* Emulate wheel button handling */ @@ -144,7 +145,7 @@ wheelButtonMask = 0; else wheelButtonMask = 1 << (pMse->wheelButton - 1); -@@ -2288,6 +2299,9 @@ MouseDoPostEvent(InputInfoPtr pInfo, int +@@ -2287,6 +2298,9 @@ MouseDoPostEvent(InputInfoPtr pInfo, int buttons, int } } } @@ -154,7 +155,7 @@ } /* Absorb the mouse movement while the wheel button is pressed. */ -@@ -2305,7 +2319,7 @@ MouseDoPostEvent(InputInfoPtr pInfo, int +@@ -2304,7 +2318,7 @@ MouseDoPostEvent(InputInfoPtr pInfo, int buttons, int if (pMse->emulate3ButtonsSoft && pMse->emulate3Pending && (dx || dy)) buttonTimer(pInfo); @@ -163,7 +164,7 @@ xf86PostMotionEvent(pInfo->dev, 0, 0, 2, dx, dy); if (change) { -@@ -2418,12 +2432,10 @@ MousePostEvent(InputInfoPtr pInfo, int t +@@ -2417,12 +2431,10 @@ MousePostEvent(InputInfoPtr pInfo, int truebuttons, int dx, int dy, int dz, int dw) { MouseDevPtr pMse; @@ -176,7 +177,7 @@ if (pMse->protocolID == PROT_MMHIT) b = reverseBits(hitachMap, truebuttons); -@@ -2516,11 +2528,11 @@ MousePostEvent(InputInfoPtr pInfo, int t +@@ -2515,11 +2527,11 @@ MousePostEvent(InputInfoPtr pInfo, int truebuttons, /* Accumulate the scaled dx, dy in the private variables fracdx,fracdy and return the integer number part */ From owner-svn-ports-head@freebsd.org Thu Jun 21 21:29:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1E9A1000CFF; Thu, 21 Jun 2018 21:29:39 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4238F666; Thu, 21 Jun 2018 21:29:39 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 308EB1763E; Thu, 21 Jun 2018 21:29:39 +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 w5LLTdFC062675; Thu, 21 Jun 2018 21:29:39 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LLTcPp062673; Thu, 21 Jun 2018 21:29:38 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201806212129.w5LLTcPp062673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 21 Jun 2018 21:29:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473004 - head/cad/xcircuit X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/cad/xcircuit X-SVN-Commit-Revision: 473004 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 21:29:39 -0000 Author: danilo Date: Thu Jun 21 21:29:38 2018 New Revision: 473004 URL: https://svnweb.freebsd.org/changeset/ports/473004 Log: - Update to 3.10.10 Modified: head/cad/xcircuit/Makefile head/cad/xcircuit/distinfo Modified: head/cad/xcircuit/Makefile ============================================================================== --- head/cad/xcircuit/Makefile Thu Jun 21 21:27:04 2018 (r473003) +++ head/cad/xcircuit/Makefile Thu Jun 21 21:29:38 2018 (r473004) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xcircuit -PORTVERSION= 3.10.9 +PORTVERSION= 3.10.10 PORTEPOCH= 1 CATEGORIES= cad MASTER_SITES= http://opencircuitdesign.com/xcircuit/archive/ \ Modified: head/cad/xcircuit/distinfo ============================================================================== --- head/cad/xcircuit/distinfo Thu Jun 21 21:27:04 2018 (r473003) +++ head/cad/xcircuit/distinfo Thu Jun 21 21:29:38 2018 (r473004) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525311458 -SHA256 (xcircuit-3.10.9.tgz) = 57b9a324e8365c3dc2f160e2879aec1fdb63d5fc247cb01d8a09a9c5ac87473d -SIZE (xcircuit-3.10.9.tgz) = 1612065 +TIMESTAMP = 1529593548 +SHA256 (xcircuit-3.10.10.tgz) = eaa6c15ec18067f6628b50835a3169530b798396d02a0ac9c0f24c4b33f3a539 +SIZE (xcircuit-3.10.10.tgz) = 1612833 From owner-svn-ports-head@freebsd.org Thu Jun 21 21:50:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 714D71001485; Thu, 21 Jun 2018 21:50:44 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 23359702AB; Thu, 21 Jun 2018 21:50:44 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 05FC117AC3; Thu, 21 Jun 2018 21:50:44 +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 w5LLohOE072967; Thu, 21 Jun 2018 21:50:43 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LLohl1072965; Thu, 21 Jun 2018 21:50:43 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201806212150.w5LLohl1072965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 21 Jun 2018 21:50:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473005 - in head/mail/postfix-logwatch: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: in head/mail/postfix-logwatch: . files X-SVN-Commit-Revision: 473005 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 21:50:44 -0000 Author: danilo Date: Thu Jun 21 21:50:43 2018 New Revision: 473005 URL: https://svnweb.freebsd.org/changeset/ports/473005 Log: - Fix regex handling with the new perl version [1] [1] Unescaped left brace in regex is deprecated, passed through in regex PR: 227895 Submitted by: zeising Pull Request: Added: head/mail/postfix-logwatch/files/ head/mail/postfix-logwatch/files/patch-postfix-logwatch (contents, props changed) Modified: head/mail/postfix-logwatch/Makefile Modified: head/mail/postfix-logwatch/Makefile ============================================================================== --- head/mail/postfix-logwatch/Makefile Thu Jun 21 21:29:38 2018 (r473004) +++ head/mail/postfix-logwatch/Makefile Thu Jun 21 21:50:43 2018 (r473005) @@ -3,6 +3,7 @@ PORTNAME= postfix-logwatch PORTVERSION= 1.40.03 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= SF/logreporters/${PORTNAME}/release/${PORTVERSION} Added: head/mail/postfix-logwatch/files/patch-postfix-logwatch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/postfix-logwatch/files/patch-postfix-logwatch Thu Jun 21 21:50:43 2018 (r473005) @@ -0,0 +1,22 @@ +--- postfix-logwatch.orig 2018-05-01 12:00:39 UTC ++++ postfix-logwatch +@@ -1377,6 +1377,10 @@ sub print_summary_report (\@) { + sprintf "$fmt %-42s %6.2f%%\n", $total, $desc, + $$divisor == $Totals{$keyname} ? 100.00 : $Totals{$keyname} * 100 / $$divisor; + } ++ elsif ($extra eq '') { ++ push @{$lines[$cur_level]}, ++ sprintf "$fmt %-23s\n", $total, $desc; ++ } + else { + push @{$lines[$cur_level]}, + sprintf "$fmt %-23s $extra\n", $total, $desc, commify ($Totals{$keyname}); +@@ -1847,7 +1851,7 @@ sub postfix_policy_spf($) { + # KeyboardInterrupt + $line =~ /^Read line: "/ or + $line =~ /^Found the end of entry$/ or +- $line =~ /^Config: {/ or ++ $line =~ /^Config: \{/ or + $line =~ /^spfcheck: pyspf result/ or + $line =~ /^Starting$/ or + $line =~ /^Normal exit$/ or From owner-svn-ports-head@freebsd.org Thu Jun 21 21:53:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B3E51001651; Thu, 21 Jun 2018 21:53:00 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 38DA5707B7; Thu, 21 Jun 2018 21:53:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 19D7117B52; Thu, 21 Jun 2018 21:53:00 +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 w5LLqxSL077912; Thu, 21 Jun 2018 21:52:59 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LLqxO5077910; Thu, 21 Jun 2018 21:52:59 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201806212152.w5LLqxO5077910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 21 Jun 2018 21:52:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473006 - in head/mail/amavis-logwatch: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: in head/mail/amavis-logwatch: . files X-SVN-Commit-Revision: 473006 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 21:53:00 -0000 Author: danilo Date: Thu Jun 21 21:52:59 2018 New Revision: 473006 URL: https://svnweb.freebsd.org/changeset/ports/473006 Log: - Fix regex handling with the new perl version [1] [1] Unescaped left brace in regex is deprecated, passed through in regex PR: 227896 Submitted by: zeising Added: head/mail/amavis-logwatch/files/ head/mail/amavis-logwatch/files/patch-amavis-logwatch (contents, props changed) Modified: head/mail/amavis-logwatch/Makefile Modified: head/mail/amavis-logwatch/Makefile ============================================================================== --- head/mail/amavis-logwatch/Makefile Thu Jun 21 21:50:43 2018 (r473005) +++ head/mail/amavis-logwatch/Makefile Thu Jun 21 21:52:59 2018 (r473006) @@ -3,6 +3,7 @@ PORTNAME= amavis-logwatch PORTVERSION= 1.51.03 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= SF/logreporters/${PORTNAME}/release/${PORTVERSION} Added: head/mail/amavis-logwatch/files/patch-amavis-logwatch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/amavis-logwatch/files/patch-amavis-logwatch Thu Jun 21 21:52:59 2018 (r473006) @@ -0,0 +1,22 @@ +--- amavis-logwatch.orig 2018-05-01 11:57:52 UTC ++++ amavis-logwatch +@@ -1333,6 +1333,10 @@ sub print_summary_report (\@) { + sprintf "$fmt %-42s %6.2f%%\n", $total, $desc, + $$divisor == $Totals{$keyname} ? 100.00 : $Totals{$keyname} * 100 / $$divisor; + } ++ elsif ($extra eq '') { ++ push @{$lines[$cur_level]}, ++ sprintf "$fmt %-23s\n", $total, $desc; ++ } + else { + push @{$lines[$cur_level]}, + sprintf "$fmt %-23s $extra\n", $total, $desc, commify ($Totals{$keyname}); +@@ -2283,7 +2287,7 @@ while (<>) { + #XXX elsif (($action, $key, $ip, $from, $to) = ( $p1 =~ /^(?:Virus found - quarantined|(?:(Passed|Blocked) )?INFECTED) \(([^\)]+)\),[A-Z .]*(?: \[($re_IP)\])?(?: \[$re_IP\])* [<(]([^>)]*)[>)] -> [(<]([^(<]+)[(>]/o )) + + # the first IP is the envelope sender. +- if ($p1 !~ /^(CLEAN|SPAM(?:MY)?|INFECTED \(.*?\)|BANNED \(.*?\)|BAD-HEADER(?:-\d)?|UNCHECKED|MTA-BLOCKED|OVERSIZED|OTHER|TEMPFAIL)(?: {[^}]+})?, ([^[]+ )?(?:([^<]+) )?[<(](.*?)[>)] -> ([(<].*?[)>]), (?:.*Hits: ([-+.\d]+))(?:.* size: (\d+))?(?:.* autolearn=(\w+))?/) { ++ if ($p1 !~ /^(CLEAN|SPAM(?:MY)?|INFECTED \(.*?\)|BANNED \(.*?\)|BAD-HEADER(?:-\d)?|UNCHECKED|MTA-BLOCKED|OVERSIZED|OTHER|TEMPFAIL)(?: \{[^}]+})?, ([^[]+ )?(?:([^<]+) )?[<(](.*?)[>)] -> ([(<].*?[)>]), (?:.*Hits: ([-+.\d]+))(?:.* size: (\d+))?(?:.* autolearn=(\w+))?/) { + inc_unmatched('passblock'); + next; + } From owner-svn-ports-head@freebsd.org Thu Jun 21 22:49:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 172B2100365A; Thu, 21 Jun 2018 22:49:55 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE6E071FF6; Thu, 21 Jun 2018 22:49:54 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9FDCC183C9; Thu, 21 Jun 2018 22:49:54 +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 w5LMns72003428; Thu, 21 Jun 2018 22:49:54 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LMnsXM003427; Thu, 21 Jun 2018 22:49:54 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201806212249.w5LMnsXM003427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 21 Jun 2018 22:49:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473007 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 473007 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 22:49:55 -0000 Author: feld Date: Thu Jun 21 22:49:53 2018 New Revision: 473007 URL: https://svnweb.freebsd.org/changeset/ports/473007 Log: Document SA-18:07.lazyfpu Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Jun 21 21:52:59 2018 (r473006) +++ head/security/vuxml/vuln.xml Thu Jun 21 22:49:53 2018 (r473007) @@ -58,6 +58,37 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + FreeBSD -- Lazy FPU State Restore Information Disclosure + + + FreeBSD-kernel + 11.111.1_11 + + + + +

Problem Description:

+

A subset of Intel processors can allow a local thread + to infer data from another thread through a speculative + execution side channel when Lazy FPU state restore is + used.

+

Impact:

+

Any local thread can potentially read FPU state information + from other threads running on the host. This could include + cryptographic keys when the AES-NI CPU feature is present.

+ + + + CVE-2018-3665 + SA-18:07.lazyfpu + + + 2018-06-21 + 2018-06-21 + +
+ GraphicsMagick -- multiple vulnerabilities From owner-svn-ports-head@freebsd.org Thu Jun 21 23:02:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 544BD1003B5D; Thu, 21 Jun 2018 23:02:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0761372887; Thu, 21 Jun 2018 23:02: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DD7F218749; Thu, 21 Jun 2018 23:02: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 w5LN2Tpg013486; Thu, 21 Jun 2018 23:02:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LN2TPH013484; Thu, 21 Jun 2018 23:02:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806212302.w5LN2TPH013484@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 21 Jun 2018 23:02:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473008 - head/games/amoebax/files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/amoebax/files X-SVN-Commit-Revision: 473008 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 23:02:30 -0000 Author: amdmi3 Date: Thu Jun 21 23:02:29 2018 New Revision: 473008 URL: https://svnweb.freebsd.org/changeset/ports/473008 Log: - Fix build with clang 6.0 Added: head/games/amoebax/files/patch-configure (contents, props changed) head/games/amoebax/files/patch-src_NewHighScoreState.cxx (contents, props changed) Added: head/games/amoebax/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/amoebax/files/patch-configure Thu Jun 21 23:02:29 2018 (r473008) @@ -0,0 +1,16 @@ +--- configure.orig 2008-08-02 10:10:49 UTC ++++ configure +@@ -2329,12 +2329,7 @@ else + fi + fi + for ac_declaration in \ +- '' \ +- 'extern "C" void std::exit (int) throw (); using std::exit;' \ +- 'extern "C" void std::exit (int); using std::exit;' \ +- 'extern "C" void exit (int) throw ();' \ +- 'extern "C" void exit (int);' \ +- 'void exit (int);' ++ '' + do + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ Added: head/games/amoebax/files/patch-src_NewHighScoreState.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/amoebax/files/patch-src_NewHighScoreState.cxx Thu Jun 21 23:02:29 2018 (r473008) @@ -0,0 +1,11 @@ +--- src/NewHighScoreState.cxx.orig 2007-07-29 16:48:20 UTC ++++ src/NewHighScoreState.cxx +@@ -396,7 +396,7 @@ NewHighScoreState::unicodeCharacterPress + // FIXME: We are only interessted with ASCII values. + if ( 0 == (code & 0xff80) ) + { +- char character[2] = {toupper (static_cast(code & 0x7f)), '\0'}; ++ char character[2] = {static_cast(toupper (static_cast(code & 0x7f)), '\0')}; + std::string::size_type characterPos = + m_CursorValues.find (std::string (character)); + if ( std::string::npos != characterPos ) From owner-svn-ports-head@freebsd.org Thu Jun 21 23:52:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A798100505A; Thu, 21 Jun 2018 23:52:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1580074218; Thu, 21 Jun 2018 23:52:42 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E9CF818F61; Thu, 21 Jun 2018 23:52:41 +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 w5LNqffc039471; Thu, 21 Jun 2018 23:52:41 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5LNqbda039451; Thu, 21 Jun 2018 23:52:37 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806212352.w5LNqbda039451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 21 Jun 2018 23:52:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473009 - in head: astro/astrometry astro/boinc-setiathome audio/deadbeef audio/py-karaoke audio/zynaddsubfx biology/canu biology/freebayes biology/pear-merger biology/trimadap comms/ws... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: astro/astrometry astro/boinc-setiathome audio/deadbeef audio/py-karaoke audio/zynaddsubfx biology/canu biology/freebayes biology/pear-merger biology/trimadap comms/wspr devel/bazel devel/drpy... X-SVN-Commit-Revision: 473009 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 21 Jun 2018 23:52:42 -0000 Author: linimon Date: Thu Jun 21 23:52:37 2018 New Revision: 473009 URL: https://svnweb.freebsd.org/changeset/ports/473009 Log: Mark as broken on aarch64, and, where appropriate, armvX. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Modified: head/astro/astrometry/Makefile head/astro/boinc-setiathome/Makefile head/audio/deadbeef/Makefile head/audio/py-karaoke/Makefile head/audio/zynaddsubfx/Makefile head/biology/canu/Makefile head/biology/freebayes/Makefile head/biology/pear-merger/Makefile head/biology/trimadap/Makefile head/comms/wspr/Makefile head/devel/bazel/Makefile head/devel/drpython/Makefile head/devel/gcc-arm-embedded/Makefile head/devel/godot/Makefile head/devel/libcfg/Makefile head/devel/liblxqt/Makefile head/devel/llbuild/Makefile head/devel/plan9port/Makefile head/devel/xtensa-esp32-elf/Makefile Modified: head/astro/astrometry/Makefile ============================================================================== --- head/astro/astrometry/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/astro/astrometry/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -13,6 +13,10 @@ COMMENT= Software for describing astronomical images LICENSE= GPLv2 +BROKEN_aarch64= fails to link: os-features-test.c:10: undefined symbol 'canonicalize_file_name' +BROKEN_armv6= fails to link: os-features-test.c:10: undefined symbol 'canonicalize_file_name' +BROKEN_armv7= fails to link: os-features-test.c:10: undefined symbol 'canonicalize_file_name' + BUILD_DEPENDS= ${PYNUMPY} LIB_DEPENDS= libcairo.so:graphics/cairo \ libcfitsio.so:astro/cfitsio \ @@ -27,7 +31,7 @@ ALL_TARGET= all extra MAKE_ENV= INSTALL_DIR=${STAGEDIR}${PREFIX}/${PORTNAME} MAKE_JOBS_UNSAFE= yes SUB_FILES= pkg-message -LDFLAGS= -lz +LDFLAGS+= -lz post-patch: @${REINPLACE_CMD} -E 's,python (setup|-c),${PYTHON_CMD} \1,' \ Modified: head/astro/boinc-setiathome/Makefile ============================================================================== --- head/astro/boinc-setiathome/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/astro/boinc-setiathome/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -14,7 +14,11 @@ COMMENT= Setiathome Enhanced for BOINC LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= does not compile: analyzeFuncs_altivec.cpp: CoreServices/CoreServices.h: No such file or directory +BROKEN_aarch64= fails to link: vector/analyzeFuncs_vector.cpp:(.data+0x38): undefined symbol 'vfp_GetPowerSpectrum(float (*) [2], float*, int)' +BROKEN_armv6= fails to compile: vector/analyzeFuncs_neon.S:178:17: invalid instruction, did you mean: neg? +BROKEN_armv7= fails to compile: vector/analyzeFuncs_neon.S:178:17: invalid instruction, did you mean: neg? +BROKEN_powerpc64= fails to compile: analyzeFuncs_altivec.cpp: CoreServices/CoreServices.h: No such file or directory + BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3 RUN_DEPENDS= boinc_client:net/boinc-client LIB_DEPENDS= libfftw3f.so:math/fftw3-float Modified: head/audio/deadbeef/Makefile ============================================================================== --- head/audio/deadbeef/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/audio/deadbeef/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -13,6 +13,10 @@ COMMENT= Ultimate music player for Unix-like systems LICENSE= GPLv2 LGPL21 LICENSE_COMB= dual +BROKEN_aarch64= Fails to compile: error: invalid conversion between vector type and integer type +BROKEN_armv6= Fails to compile: error: invalid conversion between vector type and integer type +BROKEN_armv7= Fails to compile: error: invalid conversion between vector type and integer type + GNU_CONFIGURE= yes USES= compiler:c11 desktop-file-utils gettext gmake iconv libtool \ pkgconfig shebangfix tar:bzip2 @@ -27,9 +31,6 @@ USE_GNOME= intltool INSTALLS_ICONS= yes SHEBANG_FILES= yasmwrapper.sh INSTALL_TARGET= install-strip - -BROKEN_armv6= Fails to compile: error: invalid conversion between vector type and integer type -BROKEN_armv7= Fails to compile: error: invalid conversion between vector type and integer type OPTIONS_DEFINE= PULSEAUDIO GUI VFS LASTFM ART SUPEREQ SID FFAP VTX \ HOTKEYS OGG FFMPEG FLAC SNDFILE WAVPACK CDDA GME DUMB NOTIFY \ Modified: head/audio/py-karaoke/Makefile ============================================================================== --- head/audio/py-karaoke/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/audio/py-karaoke/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -14,6 +14,8 @@ COMMENT= Python karaoke application (Plays CD+G, MP3+G LICENSE= LGPL21+ +BROKEN_aarch64= fails to build: Signal 11 + BUILD_DEPENDS= ${PYGAME} \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:devel/libpthread-stubs LIB_DEPENDS= libaa.so:graphics/aalib Modified: head/audio/zynaddsubfx/Makefile ============================================================================== --- head/audio/zynaddsubfx/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/audio/zynaddsubfx/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -11,6 +11,10 @@ COMMENT= Realtime software synthesizer LICENSE= GPLv2 +BROKEN_aarch64= fails to compile: argument unused during compilation: '-msse' +BROKEN_armv6= fails to compile: unknown argument: '-mvectorize-with-neon-quad' +BROKEN_armv7= fails to compile: unknown argument: '-mvectorize-with-neon-quad' + LIB_DEPENDS= libfftw3.so:math/fftw3 \ libmxml.so:textproc/mxml \ liblo.so:audio/liblo Modified: head/biology/canu/Makefile ============================================================================== --- head/biology/canu/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/biology/canu/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -11,6 +11,10 @@ COMMENT= Single molecule sequence assembler LICENSE= GPLv2 LICENSE_FILE= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/README.license.GPL +BROKEN_aarch64= fails to link: undefined reference to omp_set_num_threads +BROKEN_armv6= fails to install: mv: rename site_perl to /wrkdirs/usr/ports/biology/canu/work/canu-1.7/src/usr/local/FreeBSD-armv6/lib/perl5/site_perl: No such file or directory +BROKEN_armv7= fails to install: mv: rename site_perl to /wrkdirs/usr/ports/biology/canu/work/canu-1.7/src/usr/local/FreeBSD-armv7/lib/perl5/site_perl: No such file or directory + LIB_DEPENDS= libboost_regex.so:devel/boost-libs RUN_DEPENDS= gnuplot:math/gnuplot Modified: head/biology/freebayes/Makefile ============================================================================== --- head/biology/freebayes/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/biology/freebayes/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -10,6 +10,10 @@ COMMENT= Bayesian haplotype-based polymorphism discove LICENSE= MIT +BROKEN_aarch64= fails to compile: invalid conversion between vector type and integer type +BROKEN_armv6= fails to compile: invalid conversion between vector type and integer type +BROKEN_armv7= fails to compile: invalid conversion between vector type and integer type + # Submodules use older versions than the ports, so we cannot safely unbundle # No shared libs are built by the submodules so there will be no conflicts USES= gmake tar:xz Modified: head/biology/pear-merger/Makefile ============================================================================== --- head/biology/pear-merger/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/biology/pear-merger/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -14,6 +14,10 @@ COMMENT= Memory-efficient and highly accurate paired-e LICENSE= CC-BY-NC-SA-3.0 +BROKEN_aarch64= fails to compile: invokes x86 assembler +BROKEN_armv6= fails to compile: invokes x86 assembler +BROKEN_armv7= fails to compile: invokes x86 assembler + GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-src Modified: head/biology/trimadap/Makefile ============================================================================== --- head/biology/trimadap/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/biology/trimadap/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -10,6 +10,10 @@ COMMENT= Trim adapter sequences from Illumina data usi LICENSE= GPLv2 +BROKEN_aarch64= fails to compile: invalid conversion between vector type and integer type +BROKEN_armv6= fails to compile: invalid conversion between vector type and integer type +BROKEN_armv7= fails to compile: invalid conversion between vector type and integer type + USE_GITHUB= yes GH_ACCOUNT= lh3 Modified: head/comms/wspr/Makefile ============================================================================== --- head/comms/wspr/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/comms/wspr/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -12,6 +12,8 @@ COMMENT= Weak signal for HF ham radio communication pa LICENSE= GPLv3 +BROKEN_aarch64= fails to compile: gfortran6: unrecognized command line option '-m64' + BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ Modified: head/devel/bazel/Makefile ============================================================================== --- head/devel/bazel/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/bazel/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -13,6 +13,7 @@ COMMENT= Fast and correct build system LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to build: java.lang.OutOfMemoryError: Java heap space BROKEN_armv6= fails to package: cp: bazel: No such file or directory BROKEN_armv7= fails to package: cp: bazel: No such file or directory BROKEN_powerpc64= fails to compile: Action failed to execute: java.io.IOException: Cannot run program /usr/bin/clang Modified: head/devel/drpython/Makefile ============================================================================== --- head/devel/drpython/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/drpython/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -14,11 +14,13 @@ COMMENT= Highly customizable cross-platform ide to aid LICENSE= GPLv2 -# fails to build in presence if installed self -CONFLICTS_BUILD= ${PORTNAME}${PYTHON_PKGNAMESUFFIX}-[0-9]* +BROKEN_aarch64= fails to build: Signal 11 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} RUN_DEPENDS= xdg-open:devel/xdg-utils + +# fails to build in presence if installed self +CONFLICTS_BUILD= ${PORTNAME}${PYTHON_PKGNAMESUFFIX}-[0-9]* NO_ARCH= yes WRKSRC= ${WRKDIR}/${PORTNAME} Modified: head/devel/gcc-arm-embedded/Makefile ============================================================================== --- head/devel/gcc-arm-embedded/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/gcc-arm-embedded/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -13,8 +13,18 @@ COMMENT= Complete gcc-based toolcahin for embedded ARM LICENSE= GPLv2 LGPL20 LGPL21 GPLv3 LGPL3 LICENSE_COMB= multi +BROKEN_aarch64= fails to build BROKEN_powerpc64= does not build: __adjust.c: internal compiler error: Segmentation fault +NOT_FOR_ARCHS= arm armeb armv6 armv7 \ + mips mips64 mips64el mipsel mipsn32 +NOT_FOR_ARCHS_REASON= Very slow to build on emulator +LIB_DEPENDS= libexpat.so:textproc/expat2 \ + libgmp.so:math/gmp \ + libmpfr.so:math/mpfr \ + libmpc.so:math/mpc \ + libisl.so:devel/isl + OPTIONS_DEFINE= PYGDB EXAMPLES HTML PDF DOCS SYMLINK OPTIONS_DEFAULT=PYGDB SYMLINK HTML_DESC= Install HTML documentation @@ -27,16 +37,6 @@ PDF_BUILD_DEPENDS= texi2dvi:print/texinfo PYGDB_USES= python:2.7 OPTIONS_SUB= yes - -NOT_FOR_ARCHS= arm armeb armv6 armv7 \ - mips mips64 mips64el mipsel mipsn32 -NOT_FOR_ARCHS_REASON= Very slow to build on emulator - -LIB_DEPENDS= libexpat.so:textproc/expat2 \ - libgmp.so:math/gmp \ - libmpfr.so:math/mpfr \ - libmpc.so:math/mpc \ - libisl.so:devel/isl USES= bison compiler cpe gmake gettext-runtime iconv makeinfo tar:bzip2 Modified: head/devel/godot/Makefile ============================================================================== --- head/devel/godot/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/godot/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -14,6 +14,10 @@ LICENSE_COMB= multi LICENSE_FILE_CC-BY-3.0= ${WRKSRC}/LOGO_LICENSE.md LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.txt +BROKEN_aarch64= fails to build: KeyError: 'android_arch' +BROKEN_armv6= fails to build: KeyError: 'android_arch' +BROKEN_armv7= fails to build: KeyError: 'android_arch' + BUILD_DEPENDS= yasm:devel/yasm LIB_DEPENDS= libfreetype.so:print/freetype2 \ libpng.so:graphics/png Modified: head/devel/libcfg/Makefile ============================================================================== --- head/devel/libcfg/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/libcfg/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -14,6 +14,8 @@ COMMENT= Library for command line and configuration fi LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_aarch64= fails to link: relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol cfg_default_properties can not be used when making a shared object + CONFLICTS_INSTALL= ossp-cfg USES= autoreconf gmake Modified: head/devel/liblxqt/Makefile ============================================================================== --- head/devel/liblxqt/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/liblxqt/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -11,6 +11,8 @@ COMMENT= Shared library for LXQt applications LICENSE= LGPL21+ +BROKEN_aarch64= fails to compile: lxqtplugininfo.cpp:107:14: expected expression + USES= cmake:outsource compiler:c++11-lib gettext kde:5 lxqt \ pkgconfig tar:xz USE_QT5= buildtools_build qmake_build dbus core gui linguisttools \ Modified: head/devel/llbuild/Makefile ============================================================================== --- head/devel/llbuild/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/llbuild/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -13,6 +13,7 @@ LICENSE= APACHE20 BSD3CLAUSE NCSA LICENSE_COMB= multi LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.txt +BROKEN_aarch64= fails to link: undefined symbol: sbrk BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wdocumentation" LIB_DEPENDS= libsqlite3.so:databases/sqlite3 Modified: head/devel/plan9port/Makefile ============================================================================== --- head/devel/plan9port/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/plan9port/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -15,6 +15,10 @@ LICENSE_NAME= Lucent Public License Version 1.02 LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN_aarch64= fails to compile: no such file or directory: 'getcallerpc-arm64' +BROKEN_armv6= fails to compile: thread.c:130:5: no member named 'arm_r0' in 'mcontext_t' +BROKEN_armv7= fails to compile: thread.c:130:5: no member named 'arm_r0' in 'mcontext_t' + LIB_DEPENDS= libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig Modified: head/devel/xtensa-esp32-elf/Makefile ============================================================================== --- head/devel/xtensa-esp32-elf/Makefile Thu Jun 21 23:02:29 2018 (r473008) +++ head/devel/xtensa-esp32-elf/Makefile Thu Jun 21 23:52:37 2018 (r473009) @@ -37,6 +37,10 @@ COMMENT= Espressif ESP32 toolchain LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi +BROKEN_aarch64= fails to configure: cannot compute suffix of object files: cannot compile +BROKEN_armv6= fails to build: failed in step 'Installing pass-2 core C gcc compiler' +BROKEN_armv7= fails to build: failed in step 'Installing pass-2 core C gcc compiler' + BUILD_DEPENDS= bash:shells/bash \ gawk:lang/gawk \ git:devel/git \ From owner-svn-ports-head@freebsd.org Fri Jun 22 00:03:09 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD11D100576B; Fri, 22 Jun 2018 00:03:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 61C5774A9C; Fri, 22 Jun 2018 00:03:09 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 28DC019131; Fri, 22 Jun 2018 00:03:09 +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 w5M0385w044621; Fri, 22 Jun 2018 00:03:08 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M038JU044617; Fri, 22 Jun 2018 00:03:08 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806220003.w5M038JU044617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 22 Jun 2018 00:03:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473010 - in head: audio/mous biology/unanimity biology/vcflib graphics/cloudcompare X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: audio/mous biology/unanimity biology/vcflib graphics/cloudcompare X-SVN-Commit-Revision: 473010 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 00:03:09 -0000 Author: linimon Date: Fri Jun 22 00:03:08 2018 New Revision: 473010 URL: https://svnweb.freebsd.org/changeset/ports/473010 Log: Mark these ports as broken on aarch64. Approved by: portmgr (tier-2 blanket) Modified: head/audio/mous/Makefile head/biology/unanimity/Makefile head/biology/vcflib/Makefile head/graphics/cloudcompare/Makefile Modified: head/audio/mous/Makefile ============================================================================== --- head/audio/mous/Makefile Thu Jun 21 23:52:37 2018 (r473009) +++ head/audio/mous/Makefile Fri Jun 22 00:03:08 2018 (r473010) @@ -12,6 +12,8 @@ COMMENT= Simple yet powerful audio player LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'? + USES= cmake:outsource compiler:c++14-lang USE_LDCONFIG= yes USE_GITHUB= yes Modified: head/biology/unanimity/Makefile ============================================================================== --- head/biology/unanimity/Makefile Thu Jun 21 23:52:37 2018 (r473009) +++ head/biology/unanimity/Makefile Fri Jun 22 00:03:08 2018 (r473010) @@ -10,6 +10,8 @@ COMMENT= Pacific Biosciences consensus library and app LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'? + # Sensitive to dependency versions, use latest commit for everything BUILD_DEPENDS= pbseqan==g20171002:biology/pbseqan \ pbbam==g20180416:biology/pbbam \ Modified: head/biology/vcflib/Makefile ============================================================================== --- head/biology/vcflib/Makefile Thu Jun 21 23:52:37 2018 (r473009) +++ head/biology/vcflib/Makefile Fri Jun 22 00:03:08 2018 (r473010) @@ -11,6 +11,8 @@ COMMENT= C++ library and CLI tools for parsing and man LICENSE= MIT +BROKEN_aarch64= fails to compile: mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'? + LIB_DEPENDS= libhts.so:biology/htslib \ libtabix.so:biology/tabixpp \ libsw.so:biology/smithwaterman Modified: head/graphics/cloudcompare/Makefile ============================================================================== --- head/graphics/cloudcompare/Makefile Thu Jun 21 23:52:37 2018 (r473009) +++ head/graphics/cloudcompare/Makefile Fri Jun 22 00:03:08 2018 (r473010) @@ -14,6 +14,7 @@ LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BROKEN_FreeBSD_10= error: "SSE instruction set not enabled" +BROKEN_aarch64= fails to compile: mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'? USES= cmake:outsource localbase:ldflags USE_GITHUB= yes From owner-svn-ports-head@freebsd.org Fri Jun 22 01:07:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6DDB10076A0; Fri, 22 Jun 2018 01:07:00 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D0CA7714C; Fri, 22 Jun 2018 01:07:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 39B0419B61; Fri, 22 Jun 2018 01:07:00 +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 w5M1706u075604; Fri, 22 Jun 2018 01:07:00 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M170lo075603; Fri, 22 Jun 2018 01:07:00 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806220107.w5M170lo075603@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 22 Jun 2018 01:07:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473011 - head/math/dynare X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/dynare X-SVN-Commit-Revision: 473011 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 01:07:00 -0000 Author: linimon Date: Fri Jun 22 01:06:59 2018 New Revision: 473011 URL: https://svnweb.freebsd.org/changeset/ports/473011 Log: Correct spelling of ONLY_FOR_ARCHS, move it to the right place, and sort. Approved by: portmgr (tier-2 blanket) Modified: head/math/dynare/Makefile Modified: head/math/dynare/Makefile ============================================================================== --- head/math/dynare/Makefile Fri Jun 22 00:03:08 2018 (r473010) +++ head/math/dynare/Makefile Fri Jun 22 01:06:59 2018 (r473011) @@ -11,6 +11,11 @@ COMMENT= Software platform for handling a wide class o LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +ONLY_FOR_ARCHS= amd64 i386 +ARCH_amd64= 64 +ARCH_i386= 32 +PLIST_SUB= ARCH=${ARCH_${ARCH}} + BUILD_DEPENDS= ${LOCALBASE}/include/boost/unordered_set.hpp:devel/boost-libs \ ctangle:devel/cweb LIB_DEPENDS= libumfpack.so:math/suitesparse \ @@ -37,11 +42,6 @@ OCTAVE_CONFIGURE_ENABLE= octave OCTAVE_LIB_DEPENDS= liboctave.so:math/octave OCTAVE_USES= compiler:c++14-lang OCTAVE_VARS= CXXFLAGS=--std=c++14 # https://github.com/DynareTeam/dynare/issues/1599 - -ONLY_FOR_ARCH= i386 amd64 -ARCH_amd64= 64 -ARCH_i386= 32 -PLIST_SUB= ARCH=${ARCH_${ARCH}} post-configure: @${ECHO_MSG} "" From owner-svn-ports-head@freebsd.org Fri Jun 22 01:15:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FCF61007B47; Fri, 22 Jun 2018 01:15:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1BB2377774; Fri, 22 Jun 2018 01:15:26 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE47819CF3; Fri, 22 Jun 2018 01:15:25 +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 w5M1FPWl081258; Fri, 22 Jun 2018 01:15:25 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M1FKMf081229; Fri, 22 Jun 2018 01:15:20 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201806220115.w5M1FKMf081229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 22 Jun 2018 01:15:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473012 - in head: finance/bitcoin-armory games/nxengine graphics/qt5-graphicaleffects java/java3d lang/gnustep-base math/p5-Math-Pari math/reduce math/tblis math/xlife++ multimedia/Ben... X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: finance/bitcoin-armory games/nxengine graphics/qt5-graphicaleffects java/java3d lang/gnustep-base math/p5-Math-Pari math/reduce math/tblis math/xlife++ multimedia/Bento4 multimedia/acidrip mu... X-SVN-Commit-Revision: 473012 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 01:15:26 -0000 Author: linimon Date: Fri Jun 22 01:15:19 2018 New Revision: 473012 URL: https://svnweb.freebsd.org/changeset/ports/473012 Log: Mark these ports as broken on aarch64, and, where appropriate, on armvX. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Modified: head/finance/bitcoin-armory/Makefile head/games/nxengine/Makefile head/graphics/qt5-graphicaleffects/Makefile head/java/java3d/Makefile head/lang/gnustep-base/Makefile head/math/p5-Math-Pari/Makefile head/math/reduce/Makefile head/math/tblis/Makefile head/math/xlife++/Makefile head/multimedia/Bento4/Makefile head/multimedia/acidrip/Makefile head/multimedia/kmplayer-kde4/Makefile head/multimedia/photofilmstrip/Makefile head/net-mgmt/riemann-c-client/Makefile head/net/belle-sip/Makefile head/net/cjdns/Makefile head/science/mpqc/Makefile head/science/py-dlib/Makefile head/security/iaikpkcs11wrapper/Makefile head/security/quantis/Makefile head/sysutils/osquery/Makefile head/sysutils/puppet5/Makefile head/x11-toolkits/qt5-quickcontrols/Makefile head/x11-toolkits/qt5-quickcontrols2/Makefile head/x11-toolkits/qtermwidget/Makefile head/x11/polybar/Makefile Modified: head/finance/bitcoin-armory/Makefile ============================================================================== --- head/finance/bitcoin-armory/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/finance/bitcoin-armory/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -13,6 +13,10 @@ COMMENT= Desktop bitcoin management system LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: c++: language not recognized: 'ar' +BROKEN_armv6= fails to compile: c++: language not recognized: 'ar' +BROKEN_armv7= fails to compile: c++: language not recognized: 'ar' + BUILD_DEPENDS= ${LOCALBASE}/bin/swig3.0:devel/swig30 \ ${LOCALBASE}/bin/pyrcc4:textproc/py-qt4-xml@${PY_FLAVOR} \ ${LOCALBASE}/bin/rsync:net/rsync Modified: head/games/nxengine/Makefile ============================================================================== --- head/games/nxengine/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/games/nxengine/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -22,6 +22,10 @@ LICENSE_PERMS_FREEWARE= dist-mirror pkg-mirror auto-ac LICENSE_DISTFILES_GPLv3= ${DISTFILES:[3]} LICENSE_DISTFILES_FREEWARE= ${DISTFILES:[2]:S/:data//} +BROKEN_aarch64= fails to compile: player.cpp:763:50: constant expression evaluates to -1 which cannot be narrowed to type 'char' [-Wc++11-narrowing] +BROKEN_armv6= fails to compile: player.cpp:763:50: constant expression evaluates to -1 which cannot be narrowed to type 'char' [-Wc++11-narrowing] +BROKEN_armv7= fails to compile: player.cpp:763:50: constant expression evaluates to -1 which cannot be narrowed to type 'char' [-Wc++11-narrowing] + LIB_DEPENDS= libpng.so:graphics/png DESKTOP_ENTRIES="NXEngine" "" "${PORTNAME}" \ Modified: head/graphics/qt5-graphicaleffects/Makefile ============================================================================== --- head/graphics/qt5-graphicaleffects/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/graphics/qt5-graphicaleffects/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -8,8 +8,10 @@ PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt Quick graphical effects +BROKEN_aarch64= fails to install: pkg-static: Unable to access file DropShadowBase.qmlc: No such file or directory + +USES= qmake USE_QT5= buildtools_build core gui quick qml QT_DIST= ${PORTNAME} -USES= qmake .include Modified: head/java/java3d/Makefile ============================================================================== --- head/java/java3d/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/java/java3d/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -13,6 +13,7 @@ COMMENT= Provides API for creating and manipulation of LICENSE= BSD2CLAUSE GPLv2 LICENSE_COMB= multi +BROKEN_aarch64= fails to compile: GVector.java:168: bad use of '>' BROKEN_armv6= fails to compile: build.xml: Compile failed; see the compiler error output for details BROKEN_armv7= fails to compile: build.xml: Compile failed; see the compiler error output for details Modified: head/lang/gnustep-base/Makefile ============================================================================== --- head/lang/gnustep-base/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/lang/gnustep-base/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -13,6 +13,8 @@ COMMENT= GNUstep Foundation library LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi +BROKEN_aarch64= fails to compile: :1:27: unexpected token in argument list + LIB_DEPENDS+= libffi.so:devel/libffi LIB_DEPENDS+= libxml2.so:textproc/libxml2 LIB_DEPENDS+= libxslt.so:textproc/libxslt @@ -21,12 +23,12 @@ LIB_DEPENDS+= libgcrypt.so:security/libgcrypt RUN_DEPENDS+= ${LOCALBASE}/GNUstep/System/Library/Makefiles/GNUstep.sh:devel/gnustep-make -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-procfs --disable-mixedabi --with-installation-domain=SYSTEM -CONFIGURE_ENV= OBJCFLAGS='-fobjc-runtime=gnustep-1.7 -fblocks' USES= pkgconfig iconv gnustep USE_GNUSTEP= build USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES} +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-procfs --disable-mixedabi --with-installation-domain=SYSTEM +CONFIGURE_ENV= OBJCFLAGS='-fobjc-runtime=gnustep-1.7 -fblocks' MAKE_FLAGS= OPTFLAG="${CFLAGS}" Modified: head/math/p5-Math-Pari/Makefile ============================================================================== --- head/math/p5-Math-Pari/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/math/p5-Math-Pari/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -17,6 +17,8 @@ COMMENT= PARI - numerical/scientific/number-theoretic LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BROKEN_aarch64= fails to link: mp.c:(function pari_kernel_init): can't create dynamic relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol 'gpmalloc' defined in init.o + LIB_DEPENDS= libgmp.so:math/gmp USES= perl5 Modified: head/math/reduce/Makefile ============================================================================== --- head/math/reduce/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/math/reduce/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -12,6 +12,8 @@ COMMENT= REDUCE Codemist Standard Lisp general-purpose LICENSE= BSD2CLAUSE +BROKEN_aarch64= fails to install: Reduce-svn4372-src/cslbuild/aarch64-unknown-freebsd11.1/csl/reduce.img: No such file or directory +BROKEN_armv6= fails to compile: redfront.h:118:12: conflicting types for '__wcwidth' BROKEN_powerpc64= fails to compile: arith01.cpp: 'statuc' does not name a type RUN_DEPENDS= gnuplot:math/gnuplot Modified: head/math/tblis/Makefile ============================================================================== --- head/math/tblis/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/math/tblis/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -12,6 +12,8 @@ COMMENT= Framework for performing tensor operations LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: include_configs.hpp:2:10: fatal error: 'configs/armv7a/config.hpp' file not found +BROKEN_armv6= fails to compile: include_configs.hpp:2:10: fatal error: 'configs/armv7a/config.hpp' file not found NOT_FOR_ARCHS= i386 NOT_FOR_ARCHS_REASON= i386 requires SSE @@ -19,11 +21,11 @@ OPTIONS_DEFINE= PARA PARA_DESC= use pthread parallelization OPTIONS_DEFAULT= PARA -USE_GITHUB= yes -GH_ACCOUNT= devinamatthews - USES= gmake libtool USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= devinamatthews HAS_CONFIGURE= yes Modified: head/math/xlife++/Makefile ============================================================================== --- head/math/xlife++/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/math/xlife++/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -12,6 +12,8 @@ COMMENT= XLiFE++: eXtended Library of Finite Elements LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BROKEN_aarch64= fails to compile: BlasUtil.h:63:63: no type named 'ReturnType' in 'Eigen::ScalarBinaryOpTraits<__attribute__ + USES= cmake:outsource eigen:3 fortran tar:tbz USE_LDCONFIG= yes Modified: head/multimedia/Bento4/Makefile ============================================================================== --- head/multimedia/Bento4/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/multimedia/Bento4/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -11,6 +11,8 @@ COMMENT= Full-featured MP4 format and MPEG DASH librar LICENSE= GPLv2 +BROKEN_aarch64= fails to compile: Ap4AesBlockCipher.cpp:93:4: AP4_PLATFORM_BYTE_ORDER is not set + USES= cmake:outsource,noninja USE_GITHUB= yes Modified: head/multimedia/acidrip/Makefile ============================================================================== --- head/multimedia/acidrip/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/multimedia/acidrip/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -10,6 +10,8 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION MAINTAINER= ports@FreeBSD.org COMMENT= GTK2::Perl wrapper for MPlayer and MEncoder for ripping DVDs +BROKEN_aarch64= fails to build: test for MEncoder: sh: mplayer: not found + BUILD_DEPENDS= lsdvd:multimedia/lsdvd \ mencoder:multimedia/mencoder \ p5-Gtk2>=0:x11-toolkits/p5-Gtk2 Modified: head/multimedia/kmplayer-kde4/Makefile ============================================================================== --- head/multimedia/kmplayer-kde4/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/multimedia/kmplayer-kde4/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -14,6 +14,9 @@ COMMENT= KDE frontend to Phonon / KDE4 LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi +NOT_FOR_ARCHS= aarch64 +NOT_FOR_ARCHS_REASON= prcpucfg.h:764:2: error: "Unknown CPU architecture" + LIB_DEPENDS= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ libphonon.so:multimedia/phonon \ Modified: head/multimedia/photofilmstrip/Makefile ============================================================================== --- head/multimedia/photofilmstrip/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/multimedia/photofilmstrip/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -14,6 +14,8 @@ COMMENT= Creates movies out of your pictures LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_aarch64= fails to build: Signal 11 + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} RUN_DEPENDS= mencoder:multimedia/mencoder \ mplayer:multimedia/mplayer Modified: head/net-mgmt/riemann-c-client/Makefile ============================================================================== --- head/net-mgmt/riemann-c-client/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/net-mgmt/riemann-c-client/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -13,6 +13,8 @@ COMMENT= C library and command-line tool for Riemann LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to build: FAIL: tests/check_symver + BUILD_DEPENDS= check>0:devel/check LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c \ libgnutls.so:security/gnutls \ Modified: head/net/belle-sip/Makefile ============================================================================== --- head/net/belle-sip/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/net/belle-sip/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -16,6 +16,8 @@ COMMENT= Belle-sip is a SIP (RFC3261) implementation w LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_aarch64= fails to build: Exception in thread "main" java.lang.OutOfMemoryError: Java heap space + LIB_DEPENDS= libantlr3c.so:devel/libantlr3c \ libbctoolbox.so:net/bctoolbox Modified: head/net/cjdns/Makefile ============================================================================== --- head/net/cjdns/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/net/cjdns/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -13,6 +13,9 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_FreeBSD_10_i386= fails CC_OUTPUT_921dbbb2_65ad290d=error: invalid value 'c++14' in '-std=c++14' yes +BROKEN_aarch64= fails to compile: Link time optimization not supported: the clang compiler does not support '-march=native' +BROKEN_armv6= fails to build: Killing runaway build after 21600 seconds with no output +BROKEN_armv7= fails to build: Killing runaway build after 21600 seconds with no output BUILD_DEPENDS= node:www/node \ bash:shells/bash Modified: head/science/mpqc/Makefile ============================================================================== --- head/science/mpqc/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/science/mpqc/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -10,6 +10,8 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Massively Parallel Quantum Chemistry Program +BROKEN_aarch64= fails to compile: lapack.h:2:10: 'chemistry/qc/mbptr12/f77sym.h' file not found + LIB_DEPENDS= libint.so:science/libint GNU_CONFIGURE= yes Modified: head/science/py-dlib/Makefile ============================================================================== --- head/science/py-dlib/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/science/py-dlib/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -12,6 +12,10 @@ COMMENT= Machine learning framework written in C++ (py LICENSE= BSL LICENSE_FILE= ${WRKSRC}/dlib/LICENSE.txt +BROKEN_aarch64= fails to build: CMake Error at test_for_avx/CMakeLists.txt:17 (if): if given arguments: "EQUAL" "0" "AND" "compile_result": Unknown arguments specified +BROKEN_armv6= fails to build: CMake Error at test_for_avx/CMakeLists.txt:17 (if): if given arguments: "EQUAL" "0" "AND" "compile_result": Unknown arguments specified +BROKEN_armv7= fails to build: CMake Error at test_for_avx/CMakeLists.txt:17 (if): if given arguments: "EQUAL" "0" "AND" "compile_result": Unknown arguments specified + BUILD_DEPENDS= cmake:devel/cmake LIB_DEPENDS= ${PY_BOOST} Modified: head/security/iaikpkcs11wrapper/Makefile ============================================================================== --- head/security/iaikpkcs11wrapper/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/security/iaikpkcs11wrapper/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -10,6 +10,7 @@ DISTNAME= ${PORTNAME}_${PORTVERSION:S/./_/g} MAINTAINER= ale@FreeBSD.org COMMENT= PKCS\#11 Java wrapper +BROKEN_aarch64= fails to link: /tmp/pkcs11wrapper-01d033.o is incompatible with /usr/lib/crti.o BROKEN_powerpc64= fails to link: cannot find -lgcc OPTIONS_DEFINE= DOCS EXAMPLES Modified: head/security/quantis/Makefile ============================================================================== --- head/security/quantis/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/security/quantis/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -16,6 +16,10 @@ LICENSE= BSD3CLAUSE GPLv2 LICENSE_COMB= dual LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/../License.txt +BROKEN_aarch64= fails to build: Could not find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY) +BROKEN_armv6= fails to build: Could not find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY) +BROKEN_armv7= fails to build: Could not find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY) + OPTIONS_DEFINE= PCI USB JAVA COMPAT TOOL GUI DOCS EXAMPLES OPTIONS_DEFAULT=PCI USB JAVA TOOL GUI NO_OPTIONS_SORT=yes Modified: head/sysutils/osquery/Makefile ============================================================================== --- head/sysutils/osquery/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/sysutils/osquery/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -11,6 +11,8 @@ COMMENT= SQL powered OS instrumentation, monitoring, a LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: the clang compiler does not support '-march=x86-64' + BUILD_DEPENDS= thrift>=0.11.0:devel/thrift \ bash>0:shells/bash \ linenoise-ng>0:devel/linenoise-ng \ Modified: head/sysutils/puppet5/Makefile ============================================================================== --- head/sysutils/puppet5/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/sysutils/puppet5/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -12,6 +12,8 @@ COMMENT= Configuration management framework written in LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to install: Could not load facter; cannot install + BUILD_DEPENDS= rubygem-hiera>=2.0:sysutils/rubygem-hiera \ rubygem-json_pure>=0:devel/rubygem-json_pure RUN_DEPENDS= rubygem-gettext-setup>=0:devel/rubygem-gettext-setup \ Modified: head/x11-toolkits/qt5-quickcontrols/Makefile ============================================================================== --- head/x11-toolkits/qt5-quickcontrols/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/x11-toolkits/qt5-quickcontrols/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -8,10 +8,14 @@ PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Set of controls for building complete interfaces in Qt Quick +BROKEN_aarch64= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory +BROKEN_armv6= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory +BROKEN_armv7= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory + +USES= qmake USE_QT5= core gui qml quick widgets \ buildtools_build QT_DIST= quickcontrols -USES= qmake USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Modified: head/x11-toolkits/qt5-quickcontrols2/Makefile ============================================================================== --- head/x11-toolkits/qt5-quickcontrols2/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/x11-toolkits/qt5-quickcontrols2/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -8,10 +8,14 @@ PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Set of controls for building complete interfaces in Qt Quick +BROKEN_aarch64= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory +BROKEN_armv6= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory +BROKEN_armv7= fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: No such file or directory + +USES= qmake:norecursive USE_QT5= core gui qml quick widgets \ buildtools_build QT_DIST= ${PORTNAME} -USES= qmake:norecursive USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} .include Modified: head/x11-toolkits/qtermwidget/Makefile ============================================================================== --- head/x11-toolkits/qtermwidget/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/x11-toolkits/qtermwidget/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -11,6 +11,10 @@ COMMENT= Terminal widget for QTerminal LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to compile: Emulation.cpp:135:14: 'ScreenWindow' does not refer to a value +BROKEN_armv6= fails to compile: Emulation.cpp:135:14: 'ScreenWindow' does not refer to a value +BROKEN_armv7= fails to compile: Emulation.cpp:135:14: 'ScreenWindow' does not refer to a value + USES= cmake:outsource compiler:c++11-lang gettext-runtime lxqt \ pkgconfig tar:xz USE_LDCONFIG= yes Modified: head/x11/polybar/Makefile ============================================================================== --- head/x11/polybar/Makefile Fri Jun 22 01:06:59 2018 (r473011) +++ head/x11/polybar/Makefile Fri Jun 22 01:15:19 2018 (r473012) @@ -11,6 +11,10 @@ COMMENT= Fast and easy-to-use status bar LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_aarch64= fails to build: KeyError: 'eventstruct' +BROKEN_armv6= fails to build: KeyError: 'eventstruct' +BROKEN_armv7= fails to build: KeyError: 'eventstruct' + BUILD_DEPENDS= xcb-proto>=1.9:x11/xcb-proto LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ From owner-svn-ports-head@freebsd.org Fri Jun 22 03:06:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70266100BB29; Fri, 22 Jun 2018 03:06:52 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0EBC47B3C6; Fri, 22 Jun 2018 03:06:52 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E3FB61AF79; Fri, 22 Jun 2018 03:06:51 +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 w5M36pTi037907; Fri, 22 Jun 2018 03:06:51 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M36pKH037906; Fri, 22 Jun 2018 03:06:51 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806220306.w5M36pKH037906@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 22 Jun 2018 03:06:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473013 - head/science/py-pydicom X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/science/py-pydicom X-SVN-Commit-Revision: 473013 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 03:06:52 -0000 Author: wen Date: Fri Jun 22 03:06:51 2018 New Revision: 473013 URL: https://svnweb.freebsd.org/changeset/ports/473013 Log: - Update to 1.1.0 Modified: head/science/py-pydicom/Makefile head/science/py-pydicom/distinfo Modified: head/science/py-pydicom/Makefile ============================================================================== --- head/science/py-pydicom/Makefile Fri Jun 22 01:15:19 2018 (r473012) +++ head/science/py-pydicom/Makefile Fri Jun 22 03:06:51 2018 (r473013) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pydicom -PORTVERSION= 1.0.2 +PORTVERSION= 1.1.0 DISTVERSIONPREFIX=v CATEGORIES= science python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/science/py-pydicom/distinfo ============================================================================== --- head/science/py-pydicom/distinfo Fri Jun 22 01:15:19 2018 (r473012) +++ head/science/py-pydicom/distinfo Fri Jun 22 03:06:51 2018 (r473013) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520730800 -SHA256 (pydicom-pydicom-v1.0.2_GH0.tar.gz) = 4da94c357b4dea75a9fadcd2dad8eddb3c87c8b9d71b9cd202ffefc2b7b64217 -SIZE (pydicom-pydicom-v1.0.2_GH0.tar.gz) = 6733960 +TIMESTAMP = 1529658306 +SHA256 (pydicom-pydicom-v1.1.0_GH0.tar.gz) = 8bf70268a684659a59d4f02a93976867abdb675d4b12b3667e564194418ebe23 +SIZE (pydicom-pydicom-v1.1.0_GH0.tar.gz) = 6747546 From owner-svn-ports-head@freebsd.org Fri Jun 22 03:15:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E79C8100BD6B; Fri, 22 Jun 2018 03:15:07 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A1687B7B9; Fri, 22 Jun 2018 03:15:07 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4BCBA1B127; Fri, 22 Jun 2018 03:15:07 +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 w5M3F7c4043006; Fri, 22 Jun 2018 03:15:07 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M3F6t8043003; Fri, 22 Jun 2018 03:15:06 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806220315.w5M3F6t8043003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Fri, 22 Jun 2018 03:15:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473014 - in head/www/ilias: . files X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/www/ilias: . files X-SVN-Commit-Revision: 473014 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 03:15:08 -0000 Author: wen Date: Fri Jun 22 03:15:06 2018 New Revision: 473014 URL: https://svnweb.freebsd.org/changeset/ports/473014 Log: - Update to 5.3.6 - Remove the message about apache22 from pkg-message Modified: head/www/ilias/Makefile head/www/ilias/distinfo head/www/ilias/files/pkg-message.in Modified: head/www/ilias/Makefile ============================================================================== --- head/www/ilias/Makefile Fri Jun 22 03:06:51 2018 (r473013) +++ head/www/ilias/Makefile Fri Jun 22 03:15:06 2018 (r473014) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ilias -PORTVERSION= 5.3.5 +PORTVERSION= 5.3.6 DISTVERSIONPREFIX= v CATEGORIES= www @@ -47,7 +47,11 @@ EXTRA_FILES= %%WWWDIR%%/Modules/Chatroom/chat/node_mod %%WWWDIR%%/Modules/Chatroom/chat/node_modules/mocha/node_modules/.bin/jade \ %%WWWDIR%%/Modules/Chatroom/chat/node_modules/mocha/node_modules/.bin/mkdirp \ %%WWWDIR%%/Modules/Chatroom/chat/node_modules/mocha/node_modules/.bin/supports-color \ - %%WWWDIR%%/Modules/Chatroom/chat/node_modules/supertest/node_modules/superagent/node_modules/.bin/mime + %%WWWDIR%%/Modules/Chatroom/chat/node_modules/supertest/node_modules/superagent/node_modules/.bin/mime \ + %%WWWDIR%%/libs/composer/vendor/bin/export-plural-rules \ + %%WWWDIR%%/libs/composer/vendor/bin/export-plural-rules.php \ + %%WWWDIR%%/libs/composer/vendor/simplesamlphp/simplesamlphp/locales/no + pre-install: @${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST} @${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST} Modified: head/www/ilias/distinfo ============================================================================== --- head/www/ilias/distinfo Fri Jun 22 03:06:51 2018 (r473013) +++ head/www/ilias/distinfo Fri Jun 22 03:15:06 2018 (r473014) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526371343 -SHA256 (ILIAS-eLearning-ILIAS-v5.3.5_GH0.tar.gz) = 0a82a63016d82b27eaeee92c42e07ec08367dced60c851464c62fd7539df146f -SIZE (ILIAS-eLearning-ILIAS-v5.3.5_GH0.tar.gz) = 176842958 +TIMESTAMP = 1529657093 +SHA256 (ILIAS-eLearning-ILIAS-v5.3.6_GH0.tar.gz) = 5071c0f7ff3bc7fcd70941eae87ab27fd117ff5ae115deeb3ead0b7562a9d508 +SIZE (ILIAS-eLearning-ILIAS-v5.3.6_GH0.tar.gz) = 177770644 Modified: head/www/ilias/files/pkg-message.in ============================================================================== --- head/www/ilias/files/pkg-message.in Fri Jun 22 03:06:51 2018 (r473013) +++ head/www/ilias/files/pkg-message.in Fri Jun 22 03:15:06 2018 (r473014) @@ -14,18 +14,6 @@ some virus scanner by yourself. 3 Add the following to your Apache configuration file httpd.conf, and restart the server: - For Apache versions earlier than 2.4: - - Alias /ilias %%WWWDIR%%/ - AcceptPathInfo On - - AllowOverride None - Order Allow,Deny - Allow from all - - - For Apache version 2.4.x or above: - Alias /ilias %%WWWDIR%%/ AcceptPathInfo On From owner-svn-ports-head@freebsd.org Fri Jun 22 06:24:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19A73100FD7D; Fri, 22 Jun 2018 06:24:37 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB99380A19; Fri, 22 Jun 2018 06:24:36 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9898F1CFE7; Fri, 22 Jun 2018 06:24:36 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M6OarS038942; Fri, 22 Jun 2018 06:24:36 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M6OZ8J038937; Fri, 22 Jun 2018 06:24:35 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201806220624.w5M6OZ8J038937@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Fri, 22 Jun 2018 06:24:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473015 - in head/devel: . p5-Time-Moment X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: in head/devel: . p5-Time-Moment X-SVN-Commit-Revision: 473015 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 06:24:37 -0000 Author: krion Date: Fri Jun 22 06:24:35 2018 New Revision: 473015 URL: https://svnweb.freebsd.org/changeset/ports/473015 Log: Add devel/p5-Time-Moment: Represents a date and time of day with an offset from UTC PR: 229156 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Time-Moment/ head/devel/p5-Time-Moment/Makefile (contents, props changed) head/devel/p5-Time-Moment/distinfo (contents, props changed) head/devel/p5-Time-Moment/pkg-descr (contents, props changed) head/devel/p5-Time-Moment/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 22 03:15:06 2018 (r473014) +++ head/devel/Makefile Fri Jun 22 06:24:35 2018 (r473015) @@ -3692,6 +3692,7 @@ SUBDIR += p5-Time-Interval SUBDIR += p5-Time-Local SUBDIR += p5-Time-Mock + SUBDIR += p5-Time-Moment SUBDIR += p5-Time-Object SUBDIR += p5-Time-Out SUBDIR += p5-Time-ParseDate Added: head/devel/p5-Time-Moment/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Time-Moment/Makefile Fri Jun 22 06:24:35 2018 (r473015) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= Time-Moment +PORTVERSION= 0.44 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR=CPAN:CHANSEN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Represents a date and time of day with an offset from UTC + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +TEST_DEPENDS= p5-Test-Fatal>=0.006:devel/p5-Test-Fatal \ + p5-Test-Number-Delta>=1.06:devel/p5-Test-Number-Delta \ + p5-Test-Requires>=0:devel/p5-Test-Requires + +USES= perl5 +USE_PERL5= configure + +MAKE_JOBS_UNSAFE=yes + +.include Added: head/devel/p5-Time-Moment/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Time-Moment/distinfo Fri Jun 22 06:24:35 2018 (r473015) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529411748 +SHA256 (Time-Moment-0.44.tar.gz) = 64acfa042f634fcef8dadf55e7f42ba4eaab8aaeb7d5212eb89815a31f78f6fd +SIZE (Time-Moment-0.44.tar.gz) = 159123 Added: head/devel/p5-Time-Moment/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Time-Moment/pkg-descr Fri Jun 22 06:24:35 2018 (r473015) @@ -0,0 +1,3 @@ +Represents a date and time of day with an offset from UTC + +WWW: https://metacpan.org/release/Time-Moment Added: head/devel/p5-Time-Moment/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Time-Moment/pkg-plist Fri Jun 22 06:24:35 2018 (r473015) @@ -0,0 +1,7 @@ +%%SITE_ARCH%%/Time/Moment.pm +%%SITE_ARCH%%/Time/Moment.pod +%%SITE_ARCH%%/Time/Moment/Adjusters.pm +%%SITE_ARCH%%/Time/Moment/Adjusters.pod +%%SITE_ARCH%%/auto/Time/Moment/Moment.so +%%PERL5_MAN3%%/Time::Moment.3.gz +%%PERL5_MAN3%%/Time::Moment::Adjusters.3.gz From owner-svn-ports-head@freebsd.org Fri Jun 22 06:28:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F586100FF25; Fri, 22 Jun 2018 06:28:49 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B122580BF7; Fri, 22 Jun 2018 06:28:48 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 79B5E1CFEF; Fri, 22 Jun 2018 06:28:48 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M6Smnf039291; Fri, 22 Jun 2018 06:28:48 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M6Sl0J039287; Fri, 22 Jun 2018 06:28:47 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201806220628.w5M6Sl0J039287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Fri, 22 Jun 2018 06:28:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473016 - in head/devel: . p5-Signal-Mask X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: in head/devel: . p5-Signal-Mask X-SVN-Commit-Revision: 473016 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 06:28:49 -0000 Author: krion Date: Fri Jun 22 06:28:47 2018 New Revision: 473016 URL: https://svnweb.freebsd.org/changeset/ports/473016 Log: Add devel/p5-Signal-Mask PR: 229148 Submitted by: Tomohiro Hosaka Added: head/devel/p5-Signal-Mask/ head/devel/p5-Signal-Mask/Makefile (contents, props changed) head/devel/p5-Signal-Mask/distinfo (contents, props changed) head/devel/p5-Signal-Mask/pkg-descr (contents, props changed) head/devel/p5-Signal-Mask/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 22 06:24:35 2018 (r473015) +++ head/devel/Makefile Fri Jun 22 06:28:47 2018 (r473016) @@ -3362,6 +3362,7 @@ SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt SUBDIR += p5-ShipIt-Step-Manifest + SUBDIR += p5-Signal-Mask SUBDIR += p5-Slurp SUBDIR += p5-Smart-Comments SUBDIR += p5-Sort-Array Added: head/devel/p5-Signal-Mask/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Signal-Mask/Makefile Fri Jun 22 06:28:47 2018 (r473016) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= Signal-Mask +PORTVERSION= 0.008 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= bokutin@bokut.in +COMMENT= Signal masks made easy + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= p5-IPC-Signal>=0:devel/p5-IPC-Signal + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-Signal-Mask/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Signal-Mask/distinfo Fri Jun 22 06:28:47 2018 (r473016) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512840690 +SHA256 (Signal-Mask-0.008.tar.gz) = 043d995b6b249d9ebc04c467db31bb7ddc2e55faa08e885bdb050b1f2336b73f +SIZE (Signal-Mask-0.008.tar.gz) = 11791 Added: head/devel/p5-Signal-Mask/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Signal-Mask/pkg-descr Fri Jun 22 06:28:47 2018 (r473016) @@ -0,0 +1,3 @@ +Signal masks made easy + +WWW: https://metacpan.org/release/Signal-Mask Added: head/devel/p5-Signal-Mask/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Signal-Mask/pkg-plist Fri Jun 22 06:28:47 2018 (r473016) @@ -0,0 +1,4 @@ +%%SITE_PERL%%/Signal/Mask.pm +%%SITE_PERL%%/Signal/Pending.pm +%%PERL5_MAN3%%/Signal::Mask.3.gz +%%PERL5_MAN3%%/Signal::Pending.3.gz From owner-svn-ports-head@freebsd.org Fri Jun 22 06:44:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F3E51010745; Fri, 22 Jun 2018 06:44:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2331E8142B; Fri, 22 Jun 2018 06:44:45 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2F961D33C; Fri, 22 Jun 2018 06:44:44 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M6ii5n049598; Fri, 22 Jun 2018 06:44:44 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M6iijX049596; Fri, 22 Jun 2018 06:44:44 GMT (envelope-from se@FreeBSD.org) Message-Id: <201806220644.w5M6iijX049596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: Stefan Esser Date: Fri, 22 Jun 2018 06:44:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473017 - in head/ports-mgmt/portmaster: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/ports-mgmt/portmaster: . files X-SVN-Commit-Revision: 473017 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 06:44:45 -0000 Author: se Date: Fri Jun 22 06:44:44 2018 New Revision: 473017 URL: https://svnweb.freebsd.org/changeset/ports/473017 Log: Fix building of specific qt4 ports after qt5 has become the default flavor. The ports infrastructure does not consistently deal with FLAVOR environment variables set to an empty string. This caused the dependency check in portmaster to fail for multimedia/phonon. With FLAVOR="" in the environment, "make -V FLAVOR" returns "qt4", but the dependency list produced by "make build-depends-list" assumes "qt5", even though no user preferences for qt5 have been set. Reported by: Walter Schwarzenfeld Approved by: antoine (implicit) Modified: head/ports-mgmt/portmaster/Makefile head/ports-mgmt/portmaster/files/patch-portmaster Modified: head/ports-mgmt/portmaster/Makefile ============================================================================== --- head/ports-mgmt/portmaster/Makefile Fri Jun 22 06:28:47 2018 (r473016) +++ head/ports-mgmt/portmaster/Makefile Fri Jun 22 06:44:44 2018 (r473017) @@ -2,7 +2,7 @@ PORTNAME= portmaster PORTVERSION= 3.19 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= ports-mgmt MAINTAINER= se@FreeBSD.org Modified: head/ports-mgmt/portmaster/files/patch-portmaster ============================================================================== --- head/ports-mgmt/portmaster/files/patch-portmaster Fri Jun 22 06:28:47 2018 (r473016) +++ head/ports-mgmt/portmaster/files/patch-portmaster Fri Jun 22 06:44:44 2018 (r473017) @@ -53,7 +53,7 @@ +target_part () { [ -z "${1##*:*}" ] && echo "${1#*:}" || echo install; } +flavor_part () { local tmp="${1%%:*}"; [ -z "${tmp##*@*}" ] && echo "${tmp#*@}"; } +dir_part () { local tmp="${1%%:*}"; echo "${tmp%%@*}"; } -+export_flavor () { [ "$FLAVOR" != "$1" ] && export FLAVOR="$1"; } ++export_flavor () { if [ -n "$1" ]; then export FLAVOR="$1"; else unset FLAVOR; fi; } + pm_cd () { builtin cd $1 2>/dev/null || return 1; } pm_cd_pd () { [ -n "$PM_INDEX_ONLY" ] && return 2; @@ -459,18 +459,19 @@ $PM_SU_CMD /etc/rc.d/ldconfig start > /dev/null fi unset temp file files -@@ -3876,9 +3911,12 @@ if [ -n "$MAKE_PACKAGE" ]; then +@@ -3876,9 +3911,13 @@ if [ -n "$MAKE_PACKAGE" ]; then fi if [ -z "$use_package" -a -z "$DONT_POST_CLEAN" ]; then -# export_flavor $(flavor_part $portdir) ++ flavor=$(flavor_part $portdir) + for dir in $post_clean_l; do + pm_v "===>>> Running 'make clean' for special build dependency $dir" -+ (FLAVOR=$(flavor_part $portdir) pm_make_s -C "$pd/$dir" clean NOCLEANDEPENDS=ncd2 >/dev/null)& ++ (pm_make_s -C "$pd/$dir" "${flavor:+FLAVOR=$flavor}" clean NOCLEANDEPENDS=ncd2 >/dev/null)& + done pm_v "===>>> Running 'make clean' in the background" - (pm_make_s clean NOCLEANDEPENDS=ncd2 >/dev/null)& -+ (FLAVOR=$(flavor_part $portdir) pm_make_s clean NOCLEANDEPENDS=ncd2 >/dev/null)& ++ (pm_make_s "${flavor:+FLAVOR=$flavor}" clean NOCLEANDEPENDS=ncd2 >/dev/null)& pm_v fi if [ -n "$ro_opd" ]; then From owner-svn-ports-head@freebsd.org Fri Jun 22 07:36:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36C6A1011778; Fri, 22 Jun 2018 07:36:50 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA1B0827E7; Fri, 22 Jun 2018 07:36:49 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BB1ED1DB4C; Fri, 22 Jun 2018 07:36:49 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M7anjv074711; Fri, 22 Jun 2018 07:36:49 GMT (envelope-from vd@FreeBSD.org) Received: (from vd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M7an4S074710; Fri, 22 Jun 2018 07:36:49 GMT (envelope-from vd@FreeBSD.org) Message-Id: <201806220736.w5M7an4S074710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vd set sender to vd@FreeBSD.org using -f From: Vasil Dimov Date: Fri, 22 Jun 2018 07:36:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473018 - head/net-p2p/qtum X-SVN-Group: ports-head X-SVN-Commit-Author: vd X-SVN-Commit-Paths: head/net-p2p/qtum X-SVN-Commit-Revision: 473018 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 07:36:50 -0000 Author: vd Date: Fri Jun 22 07:36:49 2018 New Revision: 473018 URL: https://svnweb.freebsd.org/changeset/ports/473018 Log: net-p2p/qtum: Upgrade from 0.15.1 to 0.15.2 Modified: head/net-p2p/qtum/Makefile head/net-p2p/qtum/distinfo Modified: head/net-p2p/qtum/Makefile ============================================================================== --- head/net-p2p/qtum/Makefile Fri Jun 22 06:44:44 2018 (r473017) +++ head/net-p2p/qtum/Makefile Fri Jun 22 07:36:49 2018 (r473018) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qtum -PORTVERSION= 0.15.1 +PORTVERSION= 0.15.2 DISTVERSIONPREFIX= mainnet-ignition-v CATEGORIES= net-p2p finance Modified: head/net-p2p/qtum/distinfo ============================================================================== --- head/net-p2p/qtum/distinfo Fri Jun 22 06:44:44 2018 (r473017) +++ head/net-p2p/qtum/distinfo Fri Jun 22 07:36:49 2018 (r473018) @@ -1,5 +1,5 @@ -TIMESTAMP = 1528372368 -SHA256 (qtumproject-qtum-mainnet-ignition-v0.15.1_GH0.tar.gz) = 459e28c3e4e09cc2f7ff5228510f69b012deb81c25995e4a2e9e09b86357b1c9 -SIZE (qtumproject-qtum-mainnet-ignition-v0.15.1_GH0.tar.gz) = 13189384 +TIMESTAMP = 1529649955 +SHA256 (qtumproject-qtum-mainnet-ignition-v0.15.2_GH0.tar.gz) = 3e28995b767e4bc665751f01559737b7c2b5c2921e54ee3c8e6510f92a06ff39 +SIZE (qtumproject-qtum-mainnet-ignition-v0.15.2_GH0.tar.gz) = 13182432 SHA256 (qtumproject-cpp-eth-qtum-8db7fc170f7c0a475bc40c_GH0.tar.gz) = 9fa34f808e547f08694106b6e96fa69bfac4bda7db0181131fcde55ce2a09de7 SIZE (qtumproject-cpp-eth-qtum-8db7fc170f7c0a475bc40c_GH0.tar.gz) = 1114037 From owner-svn-ports-head@freebsd.org Fri Jun 22 08:04:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE83E10124F8; Fri, 22 Jun 2018 08:04:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE7CF836B8; Fri, 22 Jun 2018 08:04:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A48791E022; Fri, 22 Jun 2018 08:04:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M84njP090915; Fri, 22 Jun 2018 08:04:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M84dW5090865; Fri, 22 Jun 2018 08:04:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806220804.w5M84dW5090865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 22 Jun 2018 08:04:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473019 - in head: archivers/dpkg archivers/lzma databases/ora2pg databases/pgFormatter databases/pg_dirtyread databases/pg_repack databases/pgloader3 databases/plpgsql_check databases/... X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: archivers/dpkg archivers/lzma databases/ora2pg databases/pgFormatter databases/pg_dirtyread databases/pg_repack databases/pgloader3 databases/plpgsql_check databases/postgres-xl databases/pos... X-SVN-Commit-Revision: 473019 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:04:52 -0000 Author: yuri Date: Fri Jun 22 08:04:38 2018 New Revision: 473019 URL: https://svnweb.freebsd.org/changeset/ports/473019 Log: Reset MAINTAINER on ports maintained by amutu@amutu.com Based on the new policy of all maintained ports reset when maintaner is absent for 3 months. Bug#226400 for science/py-tensorflow is ignored since 2018-03-06 (3+ months). portscout database indicates that 48.94% of his ports aren't updated. Modified: head/archivers/dpkg/Makefile head/archivers/lzma/Makefile head/databases/ora2pg/Makefile head/databases/pgFormatter/Makefile head/databases/pg_dirtyread/Makefile head/databases/pg_repack/Makefile head/databases/pgloader3/Makefile head/databases/plpgsql_check/Makefile head/databases/postgres-xl/Makefile head/databases/postgresql-cstore_fdw/Makefile head/databases/postgresql-mysql_fdw/Makefile head/databases/postgresql-orafce/Makefile head/databases/postgresql-tds_fdw/Makefile head/databases/postgresql-zhparser/Makefile head/devel/ace+tao-doc/Makefile head/devel/ace/Makefile head/devel/bazel-clang38/Makefile head/devel/bear/Makefile head/devel/flexjson/Makefile head/devel/google-styleguide/Makefile head/devel/libffcall/Makefile head/devel/menhir/Makefile head/devel/objecthash/Makefile head/devel/opengrok/Makefile head/devel/py-backports.weakref/Makefile head/devel/py-pyxb/Makefile head/dns/dnsforwarder/Makefile head/java/netty/Makefile head/math/fxt/Makefile head/net-mgmt/ipaudit/Makefile head/net/ntop/Makefile head/net/radcli/Makefile head/science/liblinear/Makefile head/science/libsvm/Makefile head/science/mbdyn/Makefile head/science/py-tensorflow/Makefile head/security/hardening-check/Makefile head/sysutils/busybox/Makefile head/sysutils/byobu/Makefile head/sysutils/docker-freebsd/Makefile head/sysutils/mac_nonet/Makefile head/sysutils/mac_rtprio/Makefile head/sysutils/u-boot-orangepi-plus-2e/Makefile head/textproc/ffe/Makefile head/textproc/scws/Makefile head/www/mod_realdoc/Makefile Modified: head/archivers/dpkg/Makefile ============================================================================== --- head/archivers/dpkg/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/archivers/dpkg/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ CATEGORIES= archivers sysutils MASTER_SITES= DEBIAN_POOL DISTNAME= dpkg_${PORTVERSION} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Debian package maintenance system LICENSE= GPLv2+ Modified: head/archivers/lzma/Makefile ============================================================================== --- head/archivers/lzma/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/archivers/lzma/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= SF/sevenzip/LZMA%20SDK/ DISTNAME= lzma${PORTVERSION:S/.//g} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= High-ratio LZMA compressor CONFLICTS= lzmautils-[0-9]* xz-[0-9]* Modified: head/databases/ora2pg/Makefile ============================================================================== --- head/databases/ora2pg/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/ora2pg/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov amutu@amutu.com +# Created by: Jov ports@FreeBSD.org # $FreeBSD$ PORTNAME= ora2pg @@ -6,7 +6,7 @@ PORTVERSION= 18.1 DISTVERSIONPREFIX= v CATEGORIES= databases -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Oracle to PostgreSQL database schema converter LICENSE= GPLv3 Modified: head/databases/pgFormatter/Makefile ============================================================================== --- head/databases/pgFormatter/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/pgFormatter/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov amutu@amutu.com +# Created by: Jov ports@FreeBSD.org # $FreeBSD$ PORTNAME= pgFormatter @@ -6,7 +6,7 @@ PORTVERSION= 2.0 DISTVERSIONPREFIX= v CATEGORIES= databases -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= PostgreSQL SQL syntax beautifier LICENSE= PostgreSQL Modified: head/databases/pg_dirtyread/Makefile ============================================================================== --- head/databases/pg_dirtyread/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/pg_dirtyread/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pg_dirtyread @@ -6,7 +6,7 @@ PORTVERSION= 1.2 CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Read dead but unvacuumed tuples from a PostgreSQL relation LICENSE= BSD3CLAUSE Modified: head/databases/pg_repack/Makefile ============================================================================== --- head/databases/pg_repack/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/pg_repack/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pg_repack @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= ver_ CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Reorganize tables in PostgreSQL databases with minimal locks LICENSE= BSD3CLAUSE Modified: head/databases/pgloader3/Makefile ============================================================================== --- head/databases/pgloader3/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/pgloader3/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pgloader @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMESUFFIX= 3 -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Data loading tool for PostgreSQL,using the COPY command LICENSE= PostgreSQL Modified: head/databases/plpgsql_check/Makefile ============================================================================== --- head/databases/plpgsql_check/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/plpgsql_check/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= plpgsql_check @@ -8,7 +8,7 @@ PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= PostgreSQL extension to check PL/pgSQL code LICENSE= UNKNOWN Modified: head/databases/postgres-xl/Makefile ============================================================================== --- head/databases/postgres-xl/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/postgres-xl/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= postgres-xl @@ -6,7 +6,7 @@ DISTVERSION= 9.5r1.5 CATEGORIES= databases MASTER_SITES= http://files.postgres-xl.org/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Scalable open source PostgreSQL-based database cluster LICENSE= PostgreSQL Modified: head/databases/postgresql-cstore_fdw/Makefile ============================================================================== --- head/databases/postgresql-cstore_fdw/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/postgresql-cstore_fdw/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= cstore_fdw @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Columnar store for analytics with PostgreSQL LICENSE= APACHE20 Modified: head/databases/postgresql-mysql_fdw/Makefile ============================================================================== --- head/databases/postgresql-mysql_fdw/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/postgresql-mysql_fdw/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= mysql_fdw @@ -6,7 +6,7 @@ PORTVERSION= 2.2.0 CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= PostgreSQL foreign data wrapper for MySQL LICENSE= PostgreSQL Modified: head/databases/postgresql-orafce/Makefile ============================================================================== --- head/databases/postgresql-orafce/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/postgresql-orafce/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= orafce @@ -6,7 +6,7 @@ PORTVERSION= 3.4.0 CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Oracle's compatibility functions and packages for PostgreSQL LICENSE= PostgreSQL Modified: head/databases/postgresql-tds_fdw/Makefile ============================================================================== --- head/databases/postgresql-tds_fdw/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/postgresql-tds_fdw/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov amutu@amutu.com +# Created by: Jov ports@FreeBSD.org # $FreeBSD$ PORTNAME= tds_fdw @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= PostgreSQL foreign data wrapper to connect to TDS databases LICENSE= PostgreSQL Modified: head/databases/postgresql-zhparser/Makefile ============================================================================== --- head/databases/postgresql-zhparser/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/databases/postgresql-zhparser/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= zhparser @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= PostgreSQL extension for full-text search of Chinese LICENSE= PostgreSQL Modified: head/devel/ace+tao-doc/Makefile ============================================================================== --- head/devel/ace+tao-doc/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/ace+tao-doc/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -8,7 +8,7 @@ MASTER_SITES= ftp://download.dre.vanderbilt.edu/previo http://download.dre.vanderbilt.edu/previous_versions/ DISTNAME= ACE-html-${PORTVERSION:C/\.0$//} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= ACE+TAO HTML documentation USES= tar:bzip2 Modified: head/devel/ace/Makefile ============================================================================== --- head/devel/ace/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/ace/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -8,7 +8,7 @@ MASTER_SITES= ftp://download.dre.vanderbilt.edu/previo http://download.dre.vanderbilt.edu/previous_versions/ DISTNAME= ${PORTNAME:tu}-${PORTVERSION} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Adaptive Communication Environment for C++ LICENSE= ACE Modified: head/devel/bazel-clang38/Makefile ============================================================================== --- head/devel/bazel-clang38/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/bazel-clang38/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,10 +1,10 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bazel PKGNAMESUFFIX= -clang38 -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org OPTIONS_SLAVE= CLANG38 Modified: head/devel/bear/Makefile ============================================================================== --- head/devel/bear/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/bear/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= bear @@ -6,7 +6,7 @@ PORTVERSION= 2.3.6 CATEGORIES= devel PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Tool that generates a compilation database for clang tooling LICENSE= GPLv3 Modified: head/devel/flexjson/Makefile ============================================================================== --- head/devel/flexjson/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/flexjson/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ DISTVERSION= 2.1 CATEGORIES= devel java MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/flexjson%20${PORTVERSION} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Lightweight Java library to write JSON LICENSE= APACHE20 Modified: head/devel/google-styleguide/Makefile ============================================================================== --- head/devel/google-styleguide/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/google-styleguide/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 20170630 CATEGORIES= devel PKGNAMEPREFIX= google- -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Tool to assist with Google style guide compliance # cpplint.py and cpplint_unittest.py under BSD3CLAUSE Modified: head/devel/libffcall/Makefile ============================================================================== --- head/devel/libffcall/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/libffcall/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 1.13 CATEGORIES= devel MASTER_SITES= GNU -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Foreign function call libraries LICENSE= GPLv2+ Modified: head/devel/menhir/Makefile ============================================================================== --- head/devel/menhir/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/menhir/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 20170712 CATEGORIES= devel MASTER_SITES= http://cristal.inria.fr/~fpottier/menhir/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= LR(1) parser generator for OCaml LICENSE= GPLv2 Modified: head/devel/objecthash/Makefile ============================================================================== --- head/devel/objecthash/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/objecthash/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 20160802 PORTREVISION= 4 CATEGORIES= devel -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Cross-language way to cryptographically hash JSON objects LICENSE= APACHE20 Modified: head/devel/opengrok/Makefile ============================================================================== --- head/devel/opengrok/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/opengrok/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -5,7 +5,7 @@ PORTVERSION= 1.0 CATEGORIES= devel java MASTER_SITES= https://github.com/OpenGrok/OpenGrok/releases/download/${PORTVERSION}/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Fast and powerful code search and cross-reference engine LICENSE= CDDL APACHE20 Modified: head/devel/py-backports.weakref/Makefile ============================================================================== --- head/devel/py-backports.weakref/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/py-backports.weakref/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= backports.weakref @@ -7,7 +7,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Backport of the weakref module from Python 3.4 LICENSE= PSFL Modified: head/devel/py-pyxb/Makefile ============================================================================== --- head/devel/py-pyxb/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/devel/py-pyxb/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pyxb @@ -8,7 +8,7 @@ MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= PyXB-${DISTVERSION} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Python XML schema bindings LICENSE= APACHE20 Modified: head/dns/dnsforwarder/Makefile ============================================================================== --- head/dns/dnsforwarder/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/dns/dnsforwarder/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,11 +1,11 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= dnsforwarder PORTVERSION= 20170319 CATEGORIES= dns -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Dnsforwarder is A simple DNS forwarder LICENSE= GPLv3 Modified: head/java/netty/Makefile ============================================================================== --- head/java/netty/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/java/netty/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ DISTVERSIONSUFFIX= .Final-dist CATEGORIES= java devel MASTER_SITES= http://dl.bintray.com/netty/downloads/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Java NIO client server framework LICENSE= APACHE20 Modified: head/math/fxt/Makefile ============================================================================== --- head/math/fxt/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/math/fxt/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ DISTVERSION= 2017.07.25 CATEGORIES= math MASTER_SITES= http://www.jjj.de/fxt/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= FFT code and related stuff LICENSE= GPLv3+ Modified: head/net-mgmt/ipaudit/Makefile ============================================================================== --- head/net-mgmt/ipaudit/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/net-mgmt/ipaudit/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 1.1 CATEGORIES= net-mgmt sysutils MASTER_SITES= SF/ipaudit/ipaudit -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= IP traffic summarizer LICENSE= GPLv2+ Modified: head/net/ntop/Makefile ============================================================================== --- head/net/ntop/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/net/ntop/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ PORTREVISION= 13 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Stable -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Network monitoring tool with command line and web interfaces LICENSE= GPLv3 Modified: head/net/radcli/Makefile ============================================================================== --- head/net/radcli/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/net/radcli/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,11 +1,11 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= radcli PORTVERSION= 1.2.8 CATEGORIES= net -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Simple RADIUS client library LICENSE= BSD2CLAUSE Modified: head/science/liblinear/Makefile ============================================================================== --- head/science/liblinear/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/science/liblinear/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ CATEGORIES= science math MASTER_SITES= http://www.csie.ntu.edu.tw/~cjlin/liblinear/ \ http://www.csie.ntu.edu.tw/~cjlin/liblinear/oldfiles/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Library for Large Linear Classification LICENSE= BSD3CLAUSE Modified: head/science/libsvm/Makefile ============================================================================== --- head/science/libsvm/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/science/libsvm/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ CATEGORIES= science math MASTER_SITES= http://www.csie.ntu.edu.tw/~cjlin/libsvm/ \ http://www.csie.ntu.edu.tw/~cjlin/libsvm/oldfiles/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Library for Support Vector Machines LICENSE= BSD3CLAUSE Modified: head/science/mbdyn/Makefile ============================================================================== --- head/science/mbdyn/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/science/mbdyn/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -7,7 +7,7 @@ PORTREVISION= 3 CATEGORIES= science MASTER_SITES= https://www.mbdyn.org/userfiles/downloads/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= MultiBody Dynamics analysis system LICENSE= GPLv2 Modified: head/science/py-tensorflow/Makefile ============================================================================== --- head/science/py-tensorflow/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/science/py-tensorflow/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= tensorflow @@ -8,7 +8,7 @@ DISTVERSIONPREFIX= v CATEGORIES= science python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Computation using data flow graphs for scalable machine learning LICENSE= APACHE20 Modified: head/security/hardening-check/Makefile ============================================================================== --- head/security/hardening-check/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/security/hardening-check/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= hardening-check @@ -7,7 +7,7 @@ CATEGORIES= security MASTER_SITES= DEBIAN/pool/main/h/hardening-wrapper DISTNAME= hardening-wrapper_${PORTVERSION} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Check binaries for security hardening features LICENSE= GPLv2+ Modified: head/sysutils/busybox/Makefile ============================================================================== --- head/sysutils/busybox/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/sysutils/busybox/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 1.26.2 CATEGORIES= sysutils misc shells MASTER_SITES= https://busybox.net/downloads/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Set of common utilities built as single binary LICENSE= GPLv2 Modified: head/sysutils/byobu/Makefile ============================================================================== --- head/sysutils/byobu/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/sysutils/byobu/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -8,7 +8,7 @@ CATEGORIES= sysutils MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ DISTNAME= ${PORTNAME}_${PORTVERSION}.orig -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Profile and configuration utilities for GNU Screen LICENSE= GPLv3 Modified: head/sysutils/docker-freebsd/Makefile ============================================================================== --- head/sysutils/docker-freebsd/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/sysutils/docker-freebsd/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ PORTVERSION= 20150625 PORTREVISION= 1 CATEGORIES= sysutils -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Docker containment system LICENSE= APACHE20 Modified: head/sysutils/mac_nonet/Makefile ============================================================================== --- head/sysutils/mac_nonet/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/sysutils/mac_nonet/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= mac_nonet @@ -6,7 +6,7 @@ DISTVERSION= g20150821 CATEGORIES= sysutils PKGNAMESUFFIX= -kmod -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= MAC policy to disable access to networking for certain group LICENSE= BSD2CLAUSE Modified: head/sysutils/mac_rtprio/Makefile ============================================================================== --- head/sysutils/mac_rtprio/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/sysutils/mac_rtprio/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= mac_rtprio @@ -6,7 +6,7 @@ DISTVERSION= g20170417 CATEGORIES= sysutils PKGNAMESUFFIX= -kmod -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= MAC policy to manage access for setting realtime priorities by GID LICENSE= BSD2CLAUSE Modified: head/sysutils/u-boot-orangepi-plus-2e/Makefile ============================================================================== --- head/sysutils/u-boot-orangepi-plus-2e/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/sysutils/u-boot-orangepi-plus-2e/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,7 +1,7 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org MASTERDIR= ${.CURDIR}/../u-boot-master MODEL= orangepi-plus-2e Modified: head/textproc/ffe/Makefile ============================================================================== --- head/textproc/ffe/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/textproc/ffe/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -6,7 +6,7 @@ DISTVERSION= 0.3.7-1 CATEGORIES= textproc MASTER_SITES= SF/ff-extractor/ff-extractor/${DISTVERSION} -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Flat file extractor LICENSE= GPLv2+ Modified: head/textproc/scws/Makefile ============================================================================== --- head/textproc/scws/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/textproc/scws/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= scws @@ -6,7 +6,7 @@ PORTVERSION= 1.2.3 CATEGORIES= textproc MASTER_SITES= http://www.xunsearch.com/scws/down/ -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Simple Chinese word segmentation program and lib LICENSE= BSD2CLAUSE Modified: head/www/mod_realdoc/Makefile ============================================================================== --- head/www/mod_realdoc/Makefile Fri Jun 22 07:36:49 2018 (r473018) +++ head/www/mod_realdoc/Makefile Fri Jun 22 08:04:38 2018 (r473019) @@ -5,7 +5,7 @@ PORTNAME= mod_realdoc PORTVERSION= 20170405 CATEGORIES= www -MAINTAINER= amutu@amutu.com +MAINTAINER= ports@FreeBSD.org COMMENT= Apache module to support atomic deploys LICENSE= MIT From owner-svn-ports-head@freebsd.org Fri Jun 22 08:06:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93BD1101253F; Fri, 22 Jun 2018 08:06:06 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 45FB7838F8; Fri, 22 Jun 2018 08:06:06 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0CE651E023; Fri, 22 Jun 2018 08:06:06 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M865gm091092; Fri, 22 Jun 2018 08:06:05 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M865HB091091; Fri, 22 Jun 2018 08:06:05 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201806220806.w5M865HB091091@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 22 Jun 2018 08:06:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473020 - in head/devel/fossil: . files X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: in head/devel/fossil: . files X-SVN-Commit-Revision: 473020 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:06:06 -0000 Author: gahr Date: Fri Jun 22 08:06:05 2018 New Revision: 473020 URL: https://svnweb.freebsd.org/changeset/ports/473020 Log: devel/fossil: add fossil_https rc.conf setting When the rc.conf fossil_https is set to a non-empty string, the --https parameter is added to the fossil serve command line to force HTTPS communication. PR: 229200 Submitted by: Oleh Hushchenkov Modified: head/devel/fossil/Makefile head/devel/fossil/files/fossil.in Modified: head/devel/fossil/Makefile ============================================================================== --- head/devel/fossil/Makefile Fri Jun 22 08:04:38 2018 (r473019) +++ head/devel/fossil/Makefile Fri Jun 22 08:06:05 2018 (r473020) @@ -2,8 +2,8 @@ PORTNAME= fossil PORTVERSION= 2.6 -PORTREVISION= 0 DISTVERSIONPREFIX= src- +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= devel www MASTER_SITES= http://fossil-scm.org/index.html/uv/ Modified: head/devel/fossil/files/fossil.in ============================================================================== --- head/devel/fossil/files/fossil.in Fri Jun 22 08:04:38 2018 (r473019) +++ head/devel/fossil/files/fossil.in Fri Jun 22 08:06:05 2018 (r473020) @@ -18,6 +18,7 @@ # fossil_baseurl="" # fossil_proto="http" # fossil_listenall="" +# fossil_https="" # force the HTTPS CGI parameter to "on" # fossil_files="" # comma separated globing patterns of files to serve # fossil_notfound="" # URI to redirect to in case of 404 # Use fossil_user to run fossil as user @@ -42,20 +43,24 @@ fossil_proto=${fossil_proto:-"http"} fossil_directory=${fossil_directory:-"/nonexistent"} case "${fossil_proto}" in -http);; -scgi) fossil_args="--scgi" ;; -*) +http) + # http is the default + ;; +scgi) + fossil_args="--scgi" + ;; +*) echo "unsupported protocol: ${fossil_proto}, only scgi and http are supported" >&2 - exit 1 ;; esac -[ -n "${fossil_baseurl}" ] && fossil_args="${fossil_args} --baseurl ${fossil_baseurl}" +[ -n "${fossil_baseurl}" ] && fossil_args="${fossil_args} --baseurl ${fossil_baseurl}" [ -z "${fossil_listenall}" ] && fossil_args="${fossil_args} --localhost" -[ -n "${fossil_files}" ] && fossil_args="${fossil_args} --files '${fossil_files}'" -[ -n "${fossil_notfound}" ] && fossil_args="${fossil_args} --notfound \"${fossil_notfound}\"" -[ -n "${fossil_repolist}" ] && fossil_args="${fossil_args} --repolist" +[ -n "${fossil_https}" ] && fossil_args="${fossil_args} --https" +[ -n "${fossil_files}" ] && fossil_args="${fossil_args} --files '${fossil_files}'" +[ -n "${fossil_notfound}" ] && fossil_args="${fossil_args} --notfound \"${fossil_notfound}\"" +[ -n "${fossil_repolist}" ] && fossil_args="${fossil_args} --repolist" command_args="-f -p ${pidfile} ${procname} server -P ${fossil_port} ${fossil_args} ${fossil_directory}" From owner-svn-ports-head@freebsd.org Fri Jun 22 08:08:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C281110125FF; Fri, 22 Jun 2018 08:08:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7498883B09; Fri, 22 Jun 2018 08:08:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 55B5E1E027; Fri, 22 Jun 2018 08:08:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M88Vu7091313; Fri, 22 Jun 2018 08:08:31 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M88VLo091312; Fri, 22 Jun 2018 08:08:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806220808.w5M88VLo091312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 22 Jun 2018 08:08:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473021 - head/science/mbdyn X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/mbdyn X-SVN-Commit-Revision: 473021 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:08:31 -0000 Author: yuri Date: Fri Jun 22 08:08:30 2018 New Revision: 473021 URL: https://svnweb.freebsd.org/changeset/ports/473021 Log: science/mbdyn: Take maintainership. Modified: head/science/mbdyn/Makefile Modified: head/science/mbdyn/Makefile ============================================================================== --- head/science/mbdyn/Makefile Fri Jun 22 08:06:05 2018 (r473020) +++ head/science/mbdyn/Makefile Fri Jun 22 08:08:30 2018 (r473021) @@ -7,7 +7,7 @@ PORTREVISION= 3 CATEGORIES= science MASTER_SITES= https://www.mbdyn.org/userfiles/downloads/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= yuri@FreeBSD.org COMMENT= MultiBody Dynamics analysis system LICENSE= GPLv2 From owner-svn-ports-head@freebsd.org Fri Jun 22 08:25:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 418881012BE4; Fri, 22 Jun 2018 08:25:59 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DD96C8451D; Fri, 22 Jun 2018 08:25:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B90F61E34B; Fri, 22 Jun 2018 08:25:58 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M8PwPQ001800; Fri, 22 Jun 2018 08:25:58 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M8PwdW001799; Fri, 22 Jun 2018 08:25:58 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806220825.w5M8PwdW001799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 22 Jun 2018 08:25:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473022 - head/textproc/R-cran-rmarkdown X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: head/textproc/R-cran-rmarkdown X-SVN-Commit-Revision: 473022 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:25:59 -0000 Author: tota Date: Fri Jun 22 08:25:58 2018 New Revision: 473022 URL: https://svnweb.freebsd.org/changeset/ports/473022 Log: - Update to 1.10 Modified: head/textproc/R-cran-rmarkdown/Makefile (contents, props changed) head/textproc/R-cran-rmarkdown/distinfo (contents, props changed) Modified: head/textproc/R-cran-rmarkdown/Makefile ============================================================================== --- head/textproc/R-cran-rmarkdown/Makefile Fri Jun 22 08:08:30 2018 (r473021) +++ head/textproc/R-cran-rmarkdown/Makefile Fri Jun 22 08:25:58 2018 (r473022) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rmarkdown -PORTVERSION= 1.9 +PORTVERSION= 1.10 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -11,7 +11,7 @@ COMMENT= Dynamic Documents for R LICENSE= GPLv3 -CRAN_DEPENDS= R-cran-knitr>=1.14:print/R-cran-knitr \ +CRAN_DEPENDS= R-cran-knitr>=1.18:print/R-cran-knitr \ R-cran-yaml>=2.1.5:textproc/R-cran-yaml \ R-cran-htmltools>=0.3.5:textproc/R-cran-htmltools \ R-cran-evaluate>=0.8:devel/R-cran-evaluate \ @@ -19,6 +19,7 @@ CRAN_DEPENDS= R-cran-knitr>=1.14:print/R-cran-knitr \ R-cran-jsonlite>0:converters/R-cran-jsonlite \ R-cran-rprojroot>0:devel/R-cran-rprojroot \ R-cran-mime>0:misc/R-cran-mime \ + R-cran-tinytex>=0.3:print/R-cran-tinytex \ R-cran-stringr>=1.2.0:textproc/R-cran-stringr BUILD_DEPENDS= ${CRAN_DEPENDS} RUN_DEPENDS= hs-pandoc>=1.12.3:textproc/hs-pandoc \ Modified: head/textproc/R-cran-rmarkdown/distinfo ============================================================================== --- head/textproc/R-cran-rmarkdown/distinfo Fri Jun 22 08:08:30 2018 (r473021) +++ head/textproc/R-cran-rmarkdown/distinfo Fri Jun 22 08:25:58 2018 (r473022) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520931348 -SHA256 (rmarkdown_1.9.tar.gz) = cbb7da80b514c148b48b8d4b6d497ec8edf6d2f6be3c483c836eec99e19a0673 -SIZE (rmarkdown_1.9.tar.gz) = 2096932 +TIMESTAMP = 1529491384 +SHA256 (rmarkdown_1.10.tar.gz) = 39350e4d689d633089c1dc1e51dd04bef4497422818c98c17ff77094e6700256 +SIZE (rmarkdown_1.10.tar.gz) = 2447327 From owner-svn-ports-head@freebsd.org Fri Jun 22 08:28:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B20861012C50; Fri, 22 Jun 2018 08:28:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D20484618; Fri, 22 Jun 2018 08:28:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D4151E34D; Fri, 22 Jun 2018 08:28:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M8S5RV002504; Fri, 22 Jun 2018 08:28:05 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M8S0Wg002478; Fri, 22 Jun 2018 08:28:00 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806220828.w5M8S0Wg002478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 22 Jun 2018 08:28:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473023 - in head: databases/ora2pg databases/pgFormatter databases/pg_dirtyread databases/pg_repack databases/pgloader3 databases/plpgsql_check databases/postgres-xl databases/postgres... X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head: databases/ora2pg databases/pgFormatter databases/pg_dirtyread databases/pg_repack databases/pgloader3 databases/plpgsql_check databases/postgres-xl databases/postgresql-cstore_fdw databases/p... X-SVN-Commit-Revision: 473023 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:28:06 -0000 Author: yuri Date: Fri Jun 22 08:28:00 2018 New Revision: 473023 URL: https://svnweb.freebsd.org/changeset/ports/473023 Log: Correction to r473019: Revert the unintended change to the 'Created by' headers. Modified: head/databases/ora2pg/Makefile head/databases/pgFormatter/Makefile head/databases/pg_dirtyread/Makefile head/databases/pg_repack/Makefile head/databases/pgloader3/Makefile head/databases/plpgsql_check/Makefile head/databases/postgres-xl/Makefile head/databases/postgresql-cstore_fdw/Makefile head/databases/postgresql-mysql_fdw/Makefile head/databases/postgresql-orafce/Makefile head/databases/postgresql-tds_fdw/Makefile head/databases/postgresql-zhparser/Makefile head/devel/bazel-clang38/Makefile head/devel/bear/Makefile head/devel/py-backports.weakref/Makefile head/devel/py-pyxb/Makefile head/dns/dnsforwarder/Makefile head/net/radcli/Makefile head/science/py-tensorflow/Makefile head/security/hardening-check/Makefile head/sysutils/mac_nonet/Makefile head/sysutils/mac_rtprio/Makefile head/sysutils/u-boot-orangepi-plus-2e/Makefile head/textproc/scws/Makefile Modified: head/databases/ora2pg/Makefile ============================================================================== --- head/databases/ora2pg/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/ora2pg/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov ports@FreeBSD.org +# Created by: Jov amutu@amutu.com # $FreeBSD$ PORTNAME= ora2pg Modified: head/databases/pgFormatter/Makefile ============================================================================== --- head/databases/pgFormatter/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/pgFormatter/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov ports@FreeBSD.org +# Created by: Jov amutu@amutu.com # $FreeBSD$ PORTNAME= pgFormatter Modified: head/databases/pg_dirtyread/Makefile ============================================================================== --- head/databases/pg_dirtyread/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/pg_dirtyread/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pg_dirtyread Modified: head/databases/pg_repack/Makefile ============================================================================== --- head/databases/pg_repack/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/pg_repack/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pg_repack Modified: head/databases/pgloader3/Makefile ============================================================================== --- head/databases/pgloader3/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/pgloader3/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pgloader Modified: head/databases/plpgsql_check/Makefile ============================================================================== --- head/databases/plpgsql_check/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/plpgsql_check/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= plpgsql_check Modified: head/databases/postgres-xl/Makefile ============================================================================== --- head/databases/postgres-xl/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/postgres-xl/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= postgres-xl Modified: head/databases/postgresql-cstore_fdw/Makefile ============================================================================== --- head/databases/postgresql-cstore_fdw/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/postgresql-cstore_fdw/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= cstore_fdw Modified: head/databases/postgresql-mysql_fdw/Makefile ============================================================================== --- head/databases/postgresql-mysql_fdw/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/postgresql-mysql_fdw/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= mysql_fdw Modified: head/databases/postgresql-orafce/Makefile ============================================================================== --- head/databases/postgresql-orafce/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/postgresql-orafce/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= orafce Modified: head/databases/postgresql-tds_fdw/Makefile ============================================================================== --- head/databases/postgresql-tds_fdw/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/postgresql-tds_fdw/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov ports@FreeBSD.org +# Created by: Jov amutu@amutu.com # $FreeBSD$ PORTNAME= tds_fdw Modified: head/databases/postgresql-zhparser/Makefile ============================================================================== --- head/databases/postgresql-zhparser/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/databases/postgresql-zhparser/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= zhparser Modified: head/devel/bazel-clang38/Makefile ============================================================================== --- head/devel/bazel-clang38/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/devel/bazel-clang38/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bazel Modified: head/devel/bear/Makefile ============================================================================== --- head/devel/bear/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/devel/bear/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= bear Modified: head/devel/py-backports.weakref/Makefile ============================================================================== --- head/devel/py-backports.weakref/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/devel/py-backports.weakref/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= backports.weakref Modified: head/devel/py-pyxb/Makefile ============================================================================== --- head/devel/py-pyxb/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/devel/py-pyxb/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= pyxb Modified: head/dns/dnsforwarder/Makefile ============================================================================== --- head/dns/dnsforwarder/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/dns/dnsforwarder/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= dnsforwarder Modified: head/net/radcli/Makefile ============================================================================== --- head/net/radcli/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/net/radcli/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= radcli Modified: head/science/py-tensorflow/Makefile ============================================================================== --- head/science/py-tensorflow/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/science/py-tensorflow/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= tensorflow Modified: head/security/hardening-check/Makefile ============================================================================== --- head/security/hardening-check/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/security/hardening-check/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= hardening-check Modified: head/sysutils/mac_nonet/Makefile ============================================================================== --- head/sysutils/mac_nonet/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/sysutils/mac_nonet/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= mac_nonet Modified: head/sysutils/mac_rtprio/Makefile ============================================================================== --- head/sysutils/mac_rtprio/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/sysutils/mac_rtprio/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= mac_rtprio Modified: head/sysutils/u-boot-orangepi-plus-2e/Makefile ============================================================================== --- head/sysutils/u-boot-orangepi-plus-2e/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/sysutils/u-boot-orangepi-plus-2e/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ MAINTAINER= ports@FreeBSD.org Modified: head/textproc/scws/Makefile ============================================================================== --- head/textproc/scws/Makefile Fri Jun 22 08:25:58 2018 (r473022) +++ head/textproc/scws/Makefile Fri Jun 22 08:28:00 2018 (r473023) @@ -1,4 +1,4 @@ -# Created by: Jov +# Created by: Jov # $FreeBSD$ PORTNAME= scws From owner-svn-ports-head@freebsd.org Fri Jun 22 08:37:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 221701012E5C; Fri, 22 Jun 2018 08:37:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C821284A13; Fri, 22 Jun 2018 08:37:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AA1241E4F5; Fri, 22 Jun 2018 08:37:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M8bHYQ007393; Fri, 22 Jun 2018 08:37:17 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M8bHbb007392; Fri, 22 Jun 2018 08:37:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806220837.w5M8bHbb007392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 08:37:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473024 - head/science/getdp X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/science/getdp X-SVN-Commit-Revision: 473024 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:37:18 -0000 Author: amdmi3 Date: Fri Jun 22 08:37:17 2018 New Revision: 473024 URL: https://svnweb.freebsd.org/changeset/ports/473024 Log: - Fix LICENSE - Add LICENSE_FILE - Remove no-op WANT_PERL - Switch to new test framework Approved by: portmgr blanket Modified: head/science/getdp/Makefile Modified: head/science/getdp/Makefile ============================================================================== --- head/science/getdp/Makefile Fri Jun 22 08:28:00 2018 (r473023) +++ head/science/getdp/Makefile Fri Jun 22 08:37:17 2018 (r473024) @@ -10,22 +10,17 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-source MAINTAINER= stephen@FreeBSD.org COMMENT= Rather general finite element solver using mixed finite elements -LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/README.txt +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libgsl.so:math/gsl \ liblapack.so:math/lapack USES= fortran tar:tgz cmake -WANT_PERL= yes OPTIONS_DEFINE= DOCS EXAMPLES -.include +do-test: + cd ${WRKSRC}/demos && yes "" | ${STAGEDIR}${PREFIX}/bin/${PORTNAME} magnet.pro -solve MagSta_phi -.if defined(MAINTAINER_MODE) -regression-test: install - cd ${WRKSRC}/demos && yes "" | ${PORTNAME} magnet.pro -solve MagSta_phi -.endif - -.include +.include From owner-svn-ports-head@freebsd.org Fri Jun 22 08:37:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B8161012EAF; Fri, 22 Jun 2018 08:37:46 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F0E9284B05; Fri, 22 Jun 2018 08:37:45 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B982F1E4F6; Fri, 22 Jun 2018 08:37:45 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M8bjg4007579; Fri, 22 Jun 2018 08:37:45 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M8bjmp007576; Fri, 22 Jun 2018 08:37:45 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201806220837.w5M8bjmp007576@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 22 Jun 2018 08:37:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473025 - in head/print: . R-cran-tinytex X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/print: . R-cran-tinytex X-SVN-Commit-Revision: 473025 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:37:46 -0000 Author: tota Date: Fri Jun 22 08:37:44 2018 New Revision: 473025 URL: https://svnweb.freebsd.org/changeset/ports/473025 Log: - Add new port: print/R-cran-tinytex Helper functions to install and maintain the 'LaTeX' distribution named 'TinyTeX' (), a lightweight, cross-platform, portable, and easy-to-maintain version of 'TeX Live'. This package also contains helper functions to compile 'LaTeX' documents, and install missing 'LaTeX' packages automatically. WWW: https://cran.r-project.org/web/packages/tinytex/ Added: head/print/R-cran-tinytex/ head/print/R-cran-tinytex/Makefile (contents, props changed) head/print/R-cran-tinytex/distinfo (contents, props changed) head/print/R-cran-tinytex/pkg-descr (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Fri Jun 22 08:37:17 2018 (r473024) +++ head/print/Makefile Fri Jun 22 08:37:44 2018 (r473025) @@ -211,6 +211,7 @@ SUBDIR += qpdf SUBDIR += qpdfview SUBDIR += qt5-printsupport + SUBDIR += R-cran-tinytex SUBDIR += rlpr SUBDIR += rprint SUBDIR += rtf2latex2e Added: head/print/R-cran-tinytex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/R-cran-tinytex/Makefile Fri Jun 22 08:37:44 2018 (r473025) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= tinytex +DISTVERSION= 0.5 +CATEGORIES= print +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Helper functions to maintain LaTeX distribution + +LICENSE= MIT + +USES= cran:auto-plist + +.include Added: head/print/R-cran-tinytex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/R-cran-tinytex/distinfo Fri Jun 22 08:37:44 2018 (r473025) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529463906 +SHA256 (tinytex_0.5.tar.gz) = e7261cb732b843e834a4b38f39792c04b414f1ba68e44ac7e7b259b5bd93e4dd +SIZE (tinytex_0.5.tar.gz) = 17316 Added: head/print/R-cran-tinytex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/R-cran-tinytex/pkg-descr Fri Jun 22 08:37:44 2018 (r473025) @@ -0,0 +1,7 @@ +Helper functions to install and maintain the 'LaTeX' distribution +named 'TinyTeX' (), a lightweight, +cross-platform, portable, and easy-to-maintain version of 'TeX +Live'. This package also contains helper functions to compile 'LaTeX' +documents, and install missing 'LaTeX' packages automatically. + +WWW: https://cran.r-project.org/web/packages/tinytex/ From owner-svn-ports-head@freebsd.org Fri Jun 22 08:58:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F13A101365E; Fri, 22 Jun 2018 08:58:54 +0000 (UTC) (envelope-from adridg@freebsd.org) Received: from smtp04.mail.online.nl (smtp04.mail.online.nl [194.134.25.74]) by mx1.freebsd.org (Postfix) with ESMTP id CCEFE85483; Fri, 22 Jun 2018 08:58:53 +0000 (UTC) (envelope-from adridg@freebsd.org) Received: from beastie.bionicmutton.org (s55969a9e.adsl.online.nl [85.150.154.158]) by smtp04.mail.online.nl (Postfix) with ESMTP id 953DB28000D; Fri, 22 Jun 2018 10:58:43 +0200 (CEST) From: Adriaan de Groot To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, kde@freebsd.org Subject: Re: svn commit: r473012 - in head: finance/bitcoin-armory games/nxengine graphics/qt5-graphicaleffects java/java3d lang/gnustep-base math/p5-Math-Pari math/reduce math/tblis math/xlife++ multimedia/Ben... Date: Fri, 22 Jun 2018 10:58:38 +0200 Message-ID: <11816027.XnTEzG6m7L@beastie.bionicmutton.org> Organization: FreeBSD In-Reply-To: <201806220115.w5M1FKMf081229@repo.freebsd.org> References: <201806220115.w5M1FKMf081229@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2628952.SZRRusHfjl"; micalg="pgp-sha256"; protocol="application/pgp-signature" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 08:58:54 -0000 --nextPart2628952.SZRRusHfjl Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" On Friday, 22 June 2018 03:15:20 CEST Mark Linimon wrote: > --- head/x11-toolkits/qt5-quickcontrols2/Makefile Fri Jun 22 01:06:59 > 2018 (r473011) +++ head/x11-toolkits/qt5-quickcontrols2/Makefile > Fri Jun 22 01:15:19 2018 (r473012) @@ -8,10 +8,14 @@ > PKGNAMEPREFIX= qt5- > MAINTAINER= kde@FreeBSD.org > COMMENT= Set of controls for building complete interfaces in Qt Quick > > +BROKEN_aarch64= fails to install: pkg-static: Unable to > access file ApplicationWindow.qmlc: No such file or directory > +BROKEN_armv6= fails to install: pkg-static: Unable to access file > ApplicationWindow.qmlc: No such file or directory +BROKEN_armv7= > fails to install: pkg-static: Unable to access file ApplicationWindow.qmlc: > No such file or directory That's something I can try to chase down (after re-starting the Pine64; and I really need to get distcc + the H6s working, or this is going to take forever). At first glance, this is pretty straightforward: the compiler for QML doesn't run on aarch64 and so the compiled files (comparable to Python's .pyc or .pyo files) are not generated. Should be a simple fix. [ade] --nextPart2628952.SZRRusHfjl Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part. Content-Transfer-Encoding: 7Bit -----BEGIN PGP SIGNATURE----- iHUEABEIAB0WIQTVFBoRsP760fy+Jisy7lRaPghTTwUCWyy6PgAKCRAy7lRaPghT T2yZAQCaPi04Ii2v5v3d1e6pJPWS40GF89BiWt+FKe/HamzpfwD/XNbhRkhwst8v 1MXn6wRx2Rn+6AMRKTQ4bQGoQoC3Oxw= =edZ3 -----END PGP SIGNATURE----- --nextPart2628952.SZRRusHfjl-- From owner-svn-ports-head@freebsd.org Fri Jun 22 09:07:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4540A1013BC4; Fri, 22 Jun 2018 09:07:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EB84585B4F; Fri, 22 Jun 2018 09:07:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C69CF1E9CA; Fri, 22 Jun 2018 09:07:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M97Hvl022922; Fri, 22 Jun 2018 09:07:17 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M97HNa022921; Fri, 22 Jun 2018 09:07:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806220907.w5M97HNa022921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 09:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473026 - head/textproc/p5-Lingua-Stem-Snowball-Se X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/textproc/p5-Lingua-Stem-Snowball-Se X-SVN-Commit-Revision: 473026 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 09:07:18 -0000 Author: amdmi3 Date: Fri Jun 22 09:07:17 2018 New Revision: 473026 URL: https://svnweb.freebsd.org/changeset/ports/473026 Log: - Add LICENSE - Add NO_ARCH Approved by: portmgr blanket Modified: head/textproc/p5-Lingua-Stem-Snowball-Se/Makefile Modified: head/textproc/p5-Lingua-Stem-Snowball-Se/Makefile ============================================================================== --- head/textproc/p5-Lingua-Stem-Snowball-Se/Makefile Fri Jun 22 08:37:44 2018 (r473025) +++ head/textproc/p5-Lingua-Stem-Snowball-Se/Makefile Fri Jun 22 09:07:17 2018 (r473026) @@ -13,7 +13,12 @@ DISTNAME= Snowball-Swedish-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Stemmer for Swedish +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Fri Jun 22 09:21:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 182551014200; Fri, 22 Jun 2018 09:21:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE72486744; Fri, 22 Jun 2018 09:21:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A13201EB89; Fri, 22 Jun 2018 09:21:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M9L1Uv031739; Fri, 22 Jun 2018 09:21:01 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M9L1pM031738; Fri, 22 Jun 2018 09:21:01 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806220921.w5M9L1pM031738@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 22 Jun 2018 09:21:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473027 - head/audio/ir-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/ir-lv2 X-SVN-Commit-Revision: 473027 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 09:21:02 -0000 Author: yuri Date: Fri Jun 22 09:21:01 2018 New Revision: 473027 URL: https://svnweb.freebsd.org/changeset/ports/473027 Log: audio/ir-lv2: Update 1.3.3.8 -> 1.3.4 Reported by: portscout Modified: head/audio/ir-lv2/Makefile head/audio/ir-lv2/distinfo Modified: head/audio/ir-lv2/Makefile ============================================================================== --- head/audio/ir-lv2/Makefile Fri Jun 22 09:07:17 2018 (r473026) +++ head/audio/ir-lv2/Makefile Fri Jun 22 09:21:01 2018 (r473027) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ir -DISTVERSION= 1.3.3-8 -DISTVERSIONSUFFIX= -g0a36907 +DISTVERSION= 1.3.4 CATEGORIES= audio PKGNAMESUFFIX= -lv2 Modified: head/audio/ir-lv2/distinfo ============================================================================== --- head/audio/ir-lv2/distinfo Fri Jun 22 09:07:17 2018 (r473026) +++ head/audio/ir-lv2/distinfo Fri Jun 22 09:21:01 2018 (r473027) @@ -1,5 +1,3 @@ -TIMESTAMP = 1529568477 -SHA256 (tomszilagyi-ir.lv2-1.3.3-8-g0a36907_GH0.tar.gz) = 707ab1577c8da41ccf0a92880552adec80e0d8b64daeff98eb49755e658921b5 -SIZE (tomszilagyi-ir.lv2-1.3.3-8-g0a36907_GH0.tar.gz) = 126563 -SHA256 (3c892744fce01661293a5e466d341d4f0e852f22.patch) = 5653babe7cca78f381d5969a268c0b3272b7a7e73cef5e66d47bb014c304fe6a -SIZE (3c892744fce01661293a5e466d341d4f0e852f22.patch) = 2468 +TIMESTAMP = 1529658795 +SHA256 (tomszilagyi-ir.lv2-1.3.4_GH0.tar.gz) = 3d5e7f4b2ad53e2f88d949dd74e5189bc3d88261c9969e1d2a3cd1dc583a6532 +SIZE (tomszilagyi-ir.lv2-1.3.4_GH0.tar.gz) = 126552 From owner-svn-ports-head@freebsd.org Fri Jun 22 09:33:48 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6C361014A28; Fri, 22 Jun 2018 09:33:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CC228760A; Fri, 22 Jun 2018 09:33:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5F48D1EF04; Fri, 22 Jun 2018 09:33:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M9XmxR038885; Fri, 22 Jun 2018 09:33:48 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M9XliJ038882; Fri, 22 Jun 2018 09:33:47 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806220933.w5M9XliJ038882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 22 Jun 2018 09:33:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473028 - head/biology/ngs-sdk X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/biology/ngs-sdk X-SVN-Commit-Revision: 473028 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 09:33:48 -0000 Author: yuri Date: Fri Jun 22 09:33:47 2018 New Revision: 473028 URL: https://svnweb.freebsd.org/changeset/ports/473028 Log: biology/ngs-sdk: Update 2.9.0 -> 2.9.1 Reported by: portscout Modified: head/biology/ngs-sdk/Makefile head/biology/ngs-sdk/distinfo head/biology/ngs-sdk/pkg-plist Modified: head/biology/ngs-sdk/Makefile ============================================================================== --- head/biology/ngs-sdk/Makefile Fri Jun 22 09:21:01 2018 (r473027) +++ head/biology/ngs-sdk/Makefile Fri Jun 22 09:33:47 2018 (r473028) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ngs -DISTVERSION= 2.9.0 +DISTVERSION= 2.9.1 CATEGORIES= biology PKGNAMESUFFIX= -sdk Modified: head/biology/ngs-sdk/distinfo ============================================================================== --- head/biology/ngs-sdk/distinfo Fri Jun 22 09:21:01 2018 (r473027) +++ head/biology/ngs-sdk/distinfo Fri Jun 22 09:33:47 2018 (r473028) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528660489 -SHA256 (ncbi-ngs-2.9.0_GH0.tar.gz) = 7e4f9e4490309b6fb33ec9370e5202ad446b10b75c323ba8226c29ca364a0857 -SIZE (ncbi-ngs-2.9.0_GH0.tar.gz) = 1091488 +TIMESTAMP = 1529659295 +SHA256 (ncbi-ngs-2.9.1_GH0.tar.gz) = c24c93bd70ed198a44c6b9dba0d6704edc90f228f832f2fef21fa5342303fc50 +SIZE (ncbi-ngs-2.9.1_GH0.tar.gz) = 1091603 Modified: head/biology/ngs-sdk/pkg-plist ============================================================================== --- head/biology/ngs-sdk/pkg-plist Fri Jun 22 09:21:01 2018 (r473027) +++ head/biology/ngs-sdk/pkg-plist Fri Jun 22 09:33:47 2018 (r473028) @@ -92,4 +92,4 @@ lib/libngs-adapt-c++.a lib/libngs-c++.a lib/libngs-sdk.so lib/libngs-sdk.so.2 -lib/libngs-sdk.so.2.9.0 +lib/libngs-sdk.so.2.9.1 From owner-svn-ports-head@freebsd.org Fri Jun 22 09:35:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FD9A1014AEF; Fri, 22 Jun 2018 09:35:06 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BF00E88087; Fri, 22 Jun 2018 09:35:05 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9CA341EF06; Fri, 22 Jun 2018 09:35:05 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M9Z5LR039079; Fri, 22 Jun 2018 09:35:05 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M9Z5u8039078; Fri, 22 Jun 2018 09:35:05 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201806220935.w5M9Z5u8039078@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Fri, 22 Jun 2018 09:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473029 - head/graphics/mesa-dri/files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/graphics/mesa-dri/files X-SVN-Commit-Revision: 473029 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 09:35:06 -0000 Author: zeising Date: Fri Jun 22 09:35:05 2018 New Revision: 473029 URL: https://svnweb.freebsd.org/changeset/ports/473029 Log: Add a patch to fix build with BSD grep Since this is not the default, no need to bump portrevision. PR: 228673 Submitted by: Stefan Esser Modified: head/graphics/mesa-dri/files/patch-configure Modified: head/graphics/mesa-dri/files/patch-configure ============================================================================== --- head/graphics/mesa-dri/files/patch-configure Fri Jun 22 09:33:47 2018 (r473028) +++ head/graphics/mesa-dri/files/patch-configure Fri Jun 22 09:35:05 2018 (r473029) @@ -51,6 +51,22 @@ dri3_default=yes ;; *) +@@ -26765,13 +26765,13 @@ + have_vdpau_platform=no + fi + +-if echo $platforms | grep -q "x11\|drm"; then ++if echo $platforms | egrep -q "x11|drm"; then + have_omx_platform=yes + else + have_omx_platform=no + fi + +-if echo $platforms | grep -q "x11\|drm\|wayland"; then ++if echo $platforms | egrep -q "x11|drm|wayland"; then + have_va_platform=yes + else + have_va_platform=no @@ -27096,9 +27106,6 @@ rm -f core conftest.err conftest.$ac_obj CLANG_LIBDIR=${LLVM_LIBDIR} fi From owner-svn-ports-head@freebsd.org Fri Jun 22 09:37:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE1601014BEC; Fri, 22 Jun 2018 09:37:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 63701881E5; Fri, 22 Jun 2018 09:37:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40D351EF08; Fri, 22 Jun 2018 09:37:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5M9bDfQ039274; Fri, 22 Jun 2018 09:37:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5M9bCg6039273; Fri, 22 Jun 2018 09:37:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806220937.w5M9bCg6039273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 09:37:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473030 - head/graphics/zathura X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/graphics/zathura X-SVN-Commit-Revision: 473030 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 09:37:13 -0000 Author: amdmi3 Date: Fri Jun 22 09:37:12 2018 New Revision: 473030 URL: https://svnweb.freebsd.org/changeset/ports/473030 Log: - Update WWW Approved by: portmgr blanket Modified: head/graphics/zathura/pkg-descr Modified: head/graphics/zathura/pkg-descr ============================================================================== --- head/graphics/zathura/pkg-descr Fri Jun 22 09:35:05 2018 (r473029) +++ head/graphics/zathura/pkg-descr Fri Jun 22 09:37:12 2018 (r473030) @@ -3,4 +3,4 @@ rendering library and the gtk+ toolkit. The idea behin application that provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. -WWW: http://pwmt.org/projects/zathura/ +WWW: https://pwmt.org/projects/zathura/ From owner-svn-ports-head@freebsd.org Fri Jun 22 11:18:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 890661017B29; Fri, 22 Jun 2018 11:18:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 35DE68C3A8; Fri, 22 Jun 2018 11:18:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 10C9F1FF1D; Fri, 22 Jun 2018 11:18:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MBI24s090815; Fri, 22 Jun 2018 11:18:02 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MBI2hs090814; Fri, 22 Jun 2018 11:18:02 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221118.w5MBI2hs090814@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 11:18:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473032 - head/graphics/gpxsee X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/graphics/gpxsee X-SVN-Commit-Revision: 473032 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 11:18:03 -0000 Author: swills Date: Fri Jun 22 11:18:02 2018 New Revision: 473032 URL: https://svnweb.freebsd.org/changeset/ports/473032 Log: graphics/gpxsee: update to 5.13 PR: 229221 Submitted by: Nikolay (maintainer) Modified: head/graphics/gpxsee/Makefile (contents, props changed) head/graphics/gpxsee/distinfo (contents, props changed) Modified: head/graphics/gpxsee/Makefile ============================================================================== --- head/graphics/gpxsee/Makefile Fri Jun 22 11:10:49 2018 (r473031) +++ head/graphics/gpxsee/Makefile Fri Jun 22 11:18:02 2018 (r473032) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpxsee -PORTVERSION= 5.11 +PORTVERSION= 5.13 PORTREVISION= 1 CATEGORIES= graphics geography Modified: head/graphics/gpxsee/distinfo ============================================================================== --- head/graphics/gpxsee/distinfo Fri Jun 22 11:10:49 2018 (r473031) +++ head/graphics/gpxsee/distinfo Fri Jun 22 11:18:02 2018 (r473032) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526549271 -SHA256 (tumic0-GPXSee-5.11_GH0.tar.gz) = 823b4e4057440abcb40fa29234ac08a68e529d6e4168b82f1d38003e6d8e95ba -SIZE (tumic0-GPXSee-5.11_GH0.tar.gz) = 3054694 +TIMESTAMP = 1528961020 +SHA256 (tumic0-GPXSee-5.13_GH0.tar.gz) = d1fce4cd096efea2b90864c67cf67a9126e82203bc7997200c462bd8d85468e2 +SIZE (tumic0-GPXSee-5.13_GH0.tar.gz) = 3058493 From owner-svn-ports-head@freebsd.org Fri Jun 22 11:51:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9AD071018A9B; Fri, 22 Jun 2018 11:51:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FAFC8D35F; Fri, 22 Jun 2018 11:51:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3221120533; Fri, 22 Jun 2018 11:51:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MBpO7S010060; Fri, 22 Jun 2018 11:51:24 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MBpMRa010055; Fri, 22 Jun 2018 11:51:22 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221151.w5MBpMRa010055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 11:51:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473033 - in head/www/squid-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/www/squid-devel: . files X-SVN-Commit-Revision: 473033 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 11:51:24 -0000 Author: swills Date: Fri Jun 22 11:51:22 2018 New Revision: 473033 URL: https://svnweb.freebsd.org/changeset/ports/473033 Log: www/squid-devel: update to 4.0.25 While here, remove patches for building on FreeBSD 9.x PR: 229181 Submitted by: Pavel Timofeev (maintainer) Added: head/www/squid-devel/files/patch-src_ip_Intercept.cc (contents, props changed) - copied, changed from r473032, head/www/squid-devel/files/patch-src__ip__Intercept.cc Deleted: head/www/squid-devel/files/extra-patch-build-8-9 head/www/squid-devel/files/patch-src__ip__Intercept.cc Modified: head/www/squid-devel/Makefile (contents, props changed) head/www/squid-devel/distinfo (contents, props changed) head/www/squid-devel/files/patch-configure (contents, props changed) head/www/squid-devel/files/patch-src-cf.data.pre (contents, props changed) head/www/squid-devel/files/patch-src_tools.cc (contents, props changed) Modified: head/www/squid-devel/Makefile ============================================================================== --- head/www/squid-devel/Makefile Fri Jun 22 11:18:02 2018 (r473032) +++ head/www/squid-devel/Makefile Fri Jun 22 11:51:22 2018 (r473033) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= squid -PORTVERSION= 4.0.24 +PORTVERSION= 4.0.25 CATEGORIES= www ipv6 MASTER_SITES= http://www.squid-cache.org/Versions/v4/ \ http://www2.us.squid-cache.org/Versions/v4/ \ @@ -140,8 +140,6 @@ GSSAPI_NONE_CONFIGURE_ON= --without-heimdal-krb5 \ GSSAPI_BASE_USES= gssapi GSSAPI_BASE_CONFIGURE_ON= --with-heimdal-krb5=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS} GSSAPI_BASE_PLIST_SUB= AUTH_KERB="" -# Make it build on FreeBSD < 10 -GSSAPI_BASE_EXTRA_PATCHES= ${FILESDIR}/extra-patch-build-8-9 GSSAPI_HEIMDAL_USES= gssapi:heimdal GSSAPI_HEIMDAL_CONFIGURE_ON= --with-heimdal-krb5=${GSSAPIBASEDIR} ${GSSAPI_CONFIGURE_ARGS} Modified: head/www/squid-devel/distinfo ============================================================================== --- head/www/squid-devel/distinfo Fri Jun 22 11:18:02 2018 (r473032) +++ head/www/squid-devel/distinfo Fri Jun 22 11:51:22 2018 (r473033) @@ -1,3 +1,3 @@ TIMESTAMP = 1522445865 -SHA256 (squid4.0/squid-4.0.24.tar.xz) = 091da0d763307dcc0f5c784ab07ea0c5a093f6dfac60f17ff26e2a6d50f76a07 -SIZE (squid4.0/squid-4.0.24.tar.xz) = 2420076 +SHA256 (squid4.0/squid-4.0.25.tar.xz) = f70dc75148895c3cc0d232596fee0eb346d92f5457c7180d493f133410c2d626 +SIZE (squid4.0/squid-4.0.25.tar.xz) = 2424644 Modified: head/www/squid-devel/files/patch-configure ============================================================================== --- head/www/squid-devel/files/patch-configure Fri Jun 22 11:18:02 2018 (r473032) +++ head/www/squid-devel/files/patch-configure Fri Jun 22 11:51:22 2018 (r473033) @@ -1,6 +1,6 @@ ---- configure.orig 2016-12-16 10:19:31 UTC +--- configure.orig 2018-06-11 16:48:04 UTC +++ configure -@@ -33043,7 +33043,7 @@ done +@@ -34345,7 +34345,7 @@ done ## BUILD_HELPER="NIS" @@ -9,7 +9,7 @@ do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " -@@ -33058,8 +33058,10 @@ if eval test \"x\$"$as_ac_Header"\" = x" +@@ -34360,8 +34360,10 @@ if eval test \"x\$"$as_ac_Header"\" = x" #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF @@ -22,7 +22,7 @@ fi done -@@ -33532,7 +33534,7 @@ done +@@ -34834,7 +34836,7 @@ done # unconditionally requires crypt(3), for now if test "x$ac_cv_func_crypt" != "x"; then @@ -31,7 +31,7 @@ do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -@@ -35882,7 +35884,7 @@ for ac_header in \ +@@ -37226,7 +37228,7 @@ for ac_header in \ arpa/nameser.h \ assert.h \ bstring.h \ @@ -40,7 +40,7 @@ ctype.h \ direct.h \ errno.h \ -@@ -36092,6 +36094,7 @@ ac_fn_cxx_check_header_compile "$LINENO" +@@ -37434,6 +37436,7 @@ ac_fn_cxx_check_header_compile "$LINENO" #include #endif #if HAVE_NETINET_IP_COMPAT_H @@ -48,7 +48,7 @@ #include #endif #if HAVE_NETINET_IP_FIL_H -@@ -40315,6 +40318,7 @@ if test "x$enable_ipf_transparent" != "x +@@ -41450,6 +41453,7 @@ if test "x$enable_ipf_transparent" != "x # include # include @@ -56,7 +56,7 @@ # include # include # include -@@ -40345,6 +40349,7 @@ else +@@ -41480,6 +41484,7 @@ else # include # include #undef minor_t @@ -64,7 +64,7 @@ # include # include # include -@@ -40389,6 +40394,7 @@ _ACEOF +@@ -41524,6 +41529,7 @@ _ACEOF ip_fil_compat.h \ ip_fil.h \ ip_nat.h \ @@ -72,7 +72,7 @@ netinet/ip_compat.h \ netinet/ip_fil_compat.h \ netinet/ip_fil.h \ -@@ -40418,6 +40424,7 @@ ac_fn_cxx_check_header_compile "$LINENO" +@@ -41553,6 +41559,7 @@ ac_fn_cxx_check_header_compile "$LINENO" #if HAVE_IP_COMPAT_H #include #elif HAVE_NETINET_IP_COMPAT_H Modified: head/www/squid-devel/files/patch-src-cf.data.pre ============================================================================== --- head/www/squid-devel/files/patch-src-cf.data.pre Fri Jun 22 11:18:02 2018 (r473032) +++ head/www/squid-devel/files/patch-src-cf.data.pre Fri Jun 22 11:51:22 2018 (r473033) @@ -1,6 +1,6 @@ ---- src/cf.data.pre.orig 2016-12-16 10:06:20 UTC +--- src/cf.data.pre.orig 2018-06-11 16:30:57 UTC +++ src/cf.data.pre -@@ -4754,6 +4754,10 @@ DEFAULT: @DEFAULT_PID_FILE@ +@@ -4947,6 +4947,10 @@ DEFAULT: @DEFAULT_PID_FILE@ LOC: Config.pidFilename DOC_START A filename to write the process-id to. To disable, enter "none". Copied and modified: head/www/squid-devel/files/patch-src_ip_Intercept.cc (from r473032, head/www/squid-devel/files/patch-src__ip__Intercept.cc) ============================================================================== --- head/www/squid-devel/files/patch-src__ip__Intercept.cc Fri Jun 22 11:18:02 2018 (r473032, copy source) +++ head/www/squid-devel/files/patch-src_ip_Intercept.cc Fri Jun 22 11:51:22 2018 (r473033) @@ -1,13 +1,13 @@ ---- src/ip/Intercept.cc.orig 2016-12-16 10:06:20 UTC +--- src/ip/Intercept.cc.orig 2018-06-20 11:02:30 UTC +++ src/ip/Intercept.cc -@@ -206,10 +206,10 @@ Ip::Intercept::IpfInterception(const Com - // for NAT lookup set local and remote IP:port's - if (newConn->remote.isIPv6()) { - #if IPFILTER_VERSION < 5000003 +@@ -215,10 +215,10 @@ Ip::Intercept::IpfInterception(const Com + newConn->remote.getInAddr(natLookup.nl_outipaddr.in4); + } + #else - // warn once every 10 at critical level, then push down a level each repeated event + // warn once every million at critical level, then push down a level each repeated event static int warningLevel = DBG_CRITICAL; - debugs(89, warningLevel, "IPF (IPFilter v4) NAT does not support IPv6. Please upgrade to IPFilter v5.1"); + debugs(89, warningLevel, "Your IPF (IPFilter) NAT does not support IPv6. Please upgrade it."); - warningLevel = (warningLevel + 1) % 10; + warningLevel = (warningLevel + 1) % 1048576; return false; Modified: head/www/squid-devel/files/patch-src_tools.cc ============================================================================== --- head/www/squid-devel/files/patch-src_tools.cc Fri Jun 22 11:18:02 2018 (r473032) +++ head/www/squid-devel/files/patch-src_tools.cc Fri Jun 22 11:51:22 2018 (r473033) @@ -1,8 +1,8 @@ ---- src/tools.cc.orig 2016-12-16 10:06:20 UTC +--- src/tools.cc.orig 2018-06-11 16:30:57 UTC +++ src/tools.cc -@@ -603,7 +603,7 @@ no_suid(void) +@@ -605,7 +605,7 @@ no_suid(void) uid = geteuid(); - debugs(21, 3, "no_suid: PID " << getpid() << " giving up root priveleges forever"); + debugs(21, 3, "no_suid: PID " << getpid() << " giving up root privileges forever"); - if (setuid(0) < 0) { + if (setuid(0) < 0 && TheProcessKind != pkHelper) { From owner-svn-ports-head@freebsd.org Fri Jun 22 12:04:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01D8510199D2; Fri, 22 Jun 2018 12:04:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ABFD78DEFB; Fri, 22 Jun 2018 12:04:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D3D920725; Fri, 22 Jun 2018 12:04:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MC41gu015901; Fri, 22 Jun 2018 12:04:01 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MC41WK015900; Fri, 22 Jun 2018 12:04:01 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221204.w5MC41WK015900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 12:04:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473034 - head/www/ufdbguard X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/www/ufdbguard X-SVN-Commit-Revision: 473034 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 12:04:02 -0000 Author: swills Date: Fri Jun 22 12:04:00 2018 New Revision: 473034 URL: https://svnweb.freebsd.org/changeset/ports/473034 Log: www/ufdbguard: update to 1.33.6 PR: 229182 Submitted by: Pavel Timofeev (maintainer) Modified: head/www/ufdbguard/Makefile (contents, props changed) head/www/ufdbguard/distinfo (contents, props changed) Modified: head/www/ufdbguard/Makefile ============================================================================== --- head/www/ufdbguard/Makefile Fri Jun 22 11:51:22 2018 (r473033) +++ head/www/ufdbguard/Makefile Fri Jun 22 12:04:00 2018 (r473034) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ufdbGuard -PORTVERSION= 1.33.5 +PORTVERSION= 1.33.6 CATEGORIES= www MASTER_SITES= SF/${PORTNAME:tl}/1.33 Modified: head/www/ufdbguard/distinfo ============================================================================== --- head/www/ufdbguard/distinfo Fri Jun 22 11:51:22 2018 (r473033) +++ head/www/ufdbguard/distinfo Fri Jun 22 12:04:00 2018 (r473034) @@ -1,3 +1,3 @@ TIMESTAMP = 1524648364 -SHA256 (ufdbGuard-1.33.5.tar.gz) = ea62c23db133d0e3d5fb683910481aeace88348a8ddb5a4053642ab402a8aa59 -SIZE (ufdbGuard-1.33.5.tar.gz) = 2643211 +SHA256 (ufdbGuard-1.33.6.tar.gz) = 64b566784ee895248507aa3102d4b8ac6a31acfb8559363d7a0c701739e6505d +SIZE (ufdbGuard-1.33.6.tar.gz) = 2645932 From owner-svn-ports-head@freebsd.org Fri Jun 22 12:07:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 490E31019B4A; Fri, 22 Jun 2018 12:07:33 +0000 (UTC) (envelope-from mr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EC94C8E05F; Fri, 22 Jun 2018 12:07:32 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD3A720728; Fri, 22 Jun 2018 12:07:32 +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 w5MC7WGi016185; Fri, 22 Jun 2018 12:07:32 GMT (envelope-from mr@FreeBSD.org) Received: (from mr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MC7WbY016180; Fri, 22 Jun 2018 12:07:32 GMT (envelope-from mr@FreeBSD.org) Message-Id: <201806221207.w5MC7WbY016180@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mr set sender to mr@FreeBSD.org using -f From: Michael Reifenberger Date: Fri, 22 Jun 2018 12:07:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473035 - head/cad/qcad X-SVN-Group: ports-head X-SVN-Commit-Author: mr X-SVN-Commit-Paths: head/cad/qcad X-SVN-Commit-Revision: 473035 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 12:07:33 -0000 Author: mr Date: Fri Jun 22 12:07:31 2018 New Revision: 473035 URL: https://svnweb.freebsd.org/changeset/ports/473035 Log: Update to version 3.20.1.7 and use QT5 due to compile errors when using QT4. Modified: head/cad/qcad/Makefile head/cad/qcad/distinfo head/cad/qcad/pkg-plist Modified: head/cad/qcad/Makefile ============================================================================== --- head/cad/qcad/Makefile Fri Jun 22 12:04:00 2018 (r473034) +++ head/cad/qcad/Makefile Fri Jun 22 12:07:31 2018 (r473035) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= qcad -PORTVERSION= 3.19.0.0 +PORTVERSION= 3.20.1.7 DISTVERSIONPREFIX= v -PORTREVISION= 1 #PORTREVISION= 1 CATEGORIES= cad DIST_SUBDIR= ${PORTNAME} @@ -23,9 +22,9 @@ MAKE_JOBS_UNSAFE=yes USES= gmake qmake USE_GITHUB= yes USE_LDCONFIG= yes -USE_QT4= qmake_build codecs-cn codecs-jp codecs-kr codecs-tw corelib \ - designer gui help imageformats moc_build network opengl rcc_build script \ - scripttools sql svg uic_build xml xmlpatterns webkit +USE_QT5= buildtools qmake_build \ + designer gui help imageformats network opengl script \ + scripttools sql svg xml xmlpatterns webkit widgets uitools USE_GL= glu DESKTOP_ENTRIES="QCad" \ Modified: head/cad/qcad/distinfo ============================================================================== --- head/cad/qcad/distinfo Fri Jun 22 12:04:00 2018 (r473034) +++ head/cad/qcad/distinfo Fri Jun 22 12:07:31 2018 (r473035) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510329554 -SHA256 (qcad/qcad-qcad-v3.19.0.0_GH0.tar.gz) = cae511114973b64691a9e353c9e886aa4500654b26ce9ec84ca00e2dc12aa110 -SIZE (qcad/qcad-qcad-v3.19.0.0_GH0.tar.gz) = 39265413 +TIMESTAMP = 1529585067 +SHA256 (qcad/qcad-qcad-v3.20.1.7_GH0.tar.gz) = 8a8ac69d7224825412704d00b783dc85af713171bd98806f22f4bfecd3d2b6ac +SIZE (qcad/qcad-qcad-v3.20.1.7_GH0.tar.gz) = 39987107 Modified: head/cad/qcad/pkg-plist ============================================================================== --- head/cad/qcad/pkg-plist Fri Jun 22 12:04:00 2018 (r473034) +++ head/cad/qcad/pkg-plist Fri Jun 22 12:07:31 2018 (r473035) @@ -24,6 +24,7 @@ lib/libqcadzip.so.0 lib/libspatialindexnavel.so lib/libspatialindexnavel.so.0 lib/libstemmer.a +share/applications/usr_local_bin_qcadbin.desktop %%PORTEXAMPLES%%%%EXAMPLESDIR%%/calibration.dxf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/colors.dxf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/entities.dxf @@ -479,10 +480,6 @@ lib/libstemmer.a %%DATADIR%%/patterns/metric/trans.pat %%DATADIR%%/patterns/metric/triang.pat %%DATADIR%%/patterns/metric/zigzag.pat -%%DATADIR%%/plugins/codecs/libqcncodecs.so -%%DATADIR%%/plugins/codecs/libqjpcodecs.so -%%DATADIR%%/plugins/codecs/libqkrcodecs.so -%%DATADIR%%/plugins/codecs/libqtwcodecs.so %%DATADIR%%/plugins/codecs/readme.txt %%DATADIR%%/plugins/designer/libqcadcustomwidgets.so %%DATADIR%%/plugins/designer/libqcadcustomwidgets_debug.so @@ -496,6 +493,9 @@ lib/libstemmer.a %%DATADIR%%/plugins/imageformats/readme.txt %%DATADIR%%/plugins/libqcaddxf.so %%DATADIR%%/plugins/libqcaddxf_debug.so +%%DATADIR%%/plugins/libqcadscripts.so +%%DATADIR%%/plugins/libqcadscripts_debug.so +%%DATADIR%%/plugins/printsupport/libcupsprintersupport.so %%DATADIR%%/plugins/printsupport/readme.txt %%DATADIR%%/plugins/script/libqtscript_core.so %%DATADIR%%/plugins/script/libqtscript_core.so.1 @@ -513,22 +513,22 @@ lib/libstemmer.a %%DATADIR%%/plugins/script/libqtscript_opengl.so.1 %%DATADIR%%/plugins/script/libqtscript_opengl.so.1.0 %%DATADIR%%/plugins/script/libqtscript_opengl.so.1.0.0 +%%DATADIR%%/plugins/script/libqtscript_printsupport.so +%%DATADIR%%/plugins/script/libqtscript_printsupport.so.1 +%%DATADIR%%/plugins/script/libqtscript_printsupport.so.1.0 +%%DATADIR%%/plugins/script/libqtscript_printsupport.so.1.0.0 %%DATADIR%%/plugins/script/libqtscript_sql.so %%DATADIR%%/plugins/script/libqtscript_sql.so.1 %%DATADIR%%/plugins/script/libqtscript_sql.so.1.0 %%DATADIR%%/plugins/script/libqtscript_sql.so.1.0.0 -%%DATADIR%%/plugins/script/libqtscript_svg.so -%%DATADIR%%/plugins/script/libqtscript_svg.so.1 -%%DATADIR%%/plugins/script/libqtscript_svg.so.1.0 -%%DATADIR%%/plugins/script/libqtscript_svg.so.1.0.0 %%DATADIR%%/plugins/script/libqtscript_uitools.so %%DATADIR%%/plugins/script/libqtscript_uitools.so.1 %%DATADIR%%/plugins/script/libqtscript_uitools.so.1.0 %%DATADIR%%/plugins/script/libqtscript_uitools.so.1.0.0 -%%DATADIR%%/plugins/script/libqtscript_webkit.so -%%DATADIR%%/plugins/script/libqtscript_webkit.so.1 -%%DATADIR%%/plugins/script/libqtscript_webkit.so.1.0 -%%DATADIR%%/plugins/script/libqtscript_webkit.so.1.0.0 +%%DATADIR%%/plugins/script/libqtscript_widgets.so +%%DATADIR%%/plugins/script/libqtscript_widgets.so.1 +%%DATADIR%%/plugins/script/libqtscript_widgets.so.1.0 +%%DATADIR%%/plugins/script/libqtscript_widgets.so.1.0.0 %%DATADIR%%/plugins/script/libqtscript_xml.so %%DATADIR%%/plugins/script/libqtscript_xml.so.1 %%DATADIR%%/plugins/script/libqtscript_xml.so.1.0 @@ -558,6 +558,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_fr.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_it.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_ja.html +%%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_nl.html +%%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_pl.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_pt.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_ru.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_desc_sl.html @@ -566,12 +568,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_fr.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_it.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_ja.html +%%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_nl.html +%%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_pl.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_pt.html %%DATADIR%%/scripts/Block/AddBlock/doc/AddBlock_sl.html %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_cs.qm %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_cs.ts %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_de.qm %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_de.ts +%%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_en.qm +%%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_en.ts %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_es.qm %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_es.ts %%DATADIR%%/scripts/Block/AddBlock/ts/AddBlock_fi.qm @@ -637,6 +643,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_fr.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_it.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_ja.html +%%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_nl.html +%%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_pl.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_pt.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_ru.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_desc_sl.html @@ -645,12 +653,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_fr.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_it.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_ja.html +%%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_nl.html +%%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_pl.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_de.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_en.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_es.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_fr.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_it.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_ja.html +%%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_nl.html +%%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_pl.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_pt.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_proc_ru.html %%DATADIR%%/scripts/Block/CreateBlock/doc/CreateBlock_pt.html @@ -659,6 +671,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_cs.ts %%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_de.qm %%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_de.ts +%%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_en.qm +%%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_en.ts %%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_es.qm %%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_es.ts %%DATADIR%%/scripts/Block/CreateBlock/ts/CreateBlock_fi.qm @@ -704,8 +718,12 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_de.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_de.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_en.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_es.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_fr.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_it.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_ja.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_nl.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_pl.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_ru.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_desc_sl.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_en.html @@ -713,10 +731,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_fr.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_it.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_ja.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_nl.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_pl.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_de.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_en.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_es.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_fr.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_it.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_ja.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_nl.html +%%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_pl.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_proc_ru.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_pt.html %%DATADIR%%/scripts/Block/CreateLibraryItem/doc/CreateLibraryItem_sl.html @@ -724,6 +748,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_cs.ts %%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_de.qm %%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_de.ts +%%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_en.qm +%%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_en.ts %%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_es.qm %%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_es.ts %%DATADIR%%/scripts/Block/CreateLibraryItem/ts/CreateLibraryItem_fi.qm @@ -773,17 +799,25 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_fr.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_it.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_ja.html +%%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_nl.html +%%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_pl.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_pt.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_ru.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_desc_sl.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_en.html +%%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_es.html +%%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_fr.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_it.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_ja.html +%%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_nl.html +%%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_pl.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/doc/DeselectBlockReferences_sl.html %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_cs.qm %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_cs.ts %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_de.qm %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_de.ts +%%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_en.qm +%%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_en.ts %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_es.qm %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_es.ts %%DATADIR%%/scripts/Block/DeselectBlockReferences/ts/DeselectBlockReferences_fi.qm @@ -836,6 +870,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_fr.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_it.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_ja.html +%%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_nl.html +%%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_pl.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_pt.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_ru.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_desc_sl.html @@ -844,12 +880,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_fr.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_it.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_ja.html +%%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_nl.html +%%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_pl.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_pt.html %%DATADIR%%/scripts/Block/EditBlock/doc/EditBlock_sl.html %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_cs.qm %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_cs.ts %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_de.qm %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_de.ts +%%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_en.qm +%%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_en.ts %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_es.qm %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_es.ts %%DATADIR%%/scripts/Block/EditBlock/ts/EditBlock_fi.qm @@ -898,8 +938,11 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_de.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_de.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_en.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_fr.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_it.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_ja.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_nl.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_pl.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_ru.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_desc_sl.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_en.html @@ -907,10 +950,15 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_fr.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_it.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_ja.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_nl.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_pl.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_de.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_en.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_fr.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_it.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_ja.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_nl.html +%%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_pl.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_proc_ru.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_pt.html %%DATADIR%%/scripts/Block/EditFromReference/doc/EditFromReference_sl.html @@ -918,6 +966,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_cs.ts %%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_de.qm %%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_de.ts +%%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_en.qm +%%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_en.ts %%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_es.qm %%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_es.ts %%DATADIR%%/scripts/Block/EditFromReference/ts/EditFromReference_fi.qm @@ -967,6 +1017,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_fr.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_it.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_ja.html +%%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_nl.html +%%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_pl.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_pt.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_ru.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_desc_sl.html @@ -975,12 +1027,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_fr.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_it.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_ja.html +%%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_nl.html +%%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_pl.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_pt.html %%DATADIR%%/scripts/Block/EditMainDrawing/doc/EditMainDrawing_sl.html %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_cs.qm %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_cs.ts %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_de.qm %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_de.ts +%%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_en.qm +%%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_en.ts %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_es.qm %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_es.ts %%DATADIR%%/scripts/Block/EditMainDrawing/ts/EditMainDrawing_fi.qm @@ -1030,6 +1086,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_fr.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_it.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_ja.html +%%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_nl.html +%%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_pl.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_pt.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_ru.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_desc_sl.html @@ -1038,12 +1096,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_fr.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_it.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_ja.html +%%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_nl.html +%%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_pl.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_pt.html %%DATADIR%%/scripts/Block/HideAllBlocks/doc/HideAllBlocks_sl.html %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_cs.qm %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_cs.ts %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_de.qm %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_de.ts +%%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_en.qm +%%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_en.ts %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_es.qm %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_es.ts %%DATADIR%%/scripts/Block/HideAllBlocks/ts/HideAllBlocks_fi.qm @@ -1115,6 +1177,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_fr.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_it.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_ja.html +%%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_nl.html +%%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_pl.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_pt.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_ru.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_desc_sl.html @@ -1123,12 +1187,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_fr.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_it.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_ja.html +%%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_nl.html +%%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_pl.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_de.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_en.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_es.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_fr.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_it.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_ja.html +%%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_nl.html +%%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_pl.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_pt.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_proc_ru.html %%DATADIR%%/scripts/Block/InsertBlock/doc/InsertBlock_pt.html @@ -1140,6 +1208,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_cs.ts %%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_de.qm %%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_de.ts +%%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_en.qm +%%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_en.ts %%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_es.qm %%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_es.ts %%DATADIR%%/scripts/Block/InsertBlock/ts/InsertBlock_fi.qm @@ -1189,13 +1259,21 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/InsertBlockItem/doc/FlipHorizontal.png %%DATADIR%%/scripts/Block/InsertBlockItem/doc/FlipVertical.png %%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem.png +%%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_de.html %%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_en.html +%%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_es.html +%%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_fr.html +%%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_it.html +%%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_nl.html +%%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_pl.html %%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_ru.html %%DATADIR%%/scripts/Block/InsertBlockItem/doc/InsertBlockItem_desc_sl.html %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_cs.qm %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_cs.ts %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_de.qm %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_de.ts +%%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_en.qm +%%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_en.ts %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_es.qm %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_es.ts %%DATADIR%%/scripts/Block/InsertBlockItem/ts/InsertBlockItem_fi.qm @@ -1242,6 +1320,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_cs.ts %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_de.qm %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_de.ts +%%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_en.qm +%%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_en.ts %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_es.qm %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_es.ts %%DATADIR%%/scripts/Block/InsertScriptItem/ts/InsertScriptItem_fi.qm @@ -1295,6 +1375,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_fr.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_it.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_ja.html +%%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_nl.html +%%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_pl.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_pt.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_ru.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_desc_sl.html @@ -1303,12 +1385,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_fr.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_it.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_ja.html +%%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_nl.html +%%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_pl.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_pt.html %%DATADIR%%/scripts/Block/RemoveBlock/doc/RemoveBlock_sl.html %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_cs.qm %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_cs.ts %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_de.qm %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_de.ts +%%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_en.qm +%%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_en.ts %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_es.qm %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_es.ts %%DATADIR%%/scripts/Block/RemoveBlock/ts/RemoveBlock_fi.qm @@ -1361,6 +1447,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_fr.html %%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_it.html %%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_ja.html +%%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_nl.html +%%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_pl.html %%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_pt.html %%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_ru.html %%DATADIR%%/scripts/Block/RenameBlock/doc/RenameBlock_desc_sl.html @@ -1375,6 +1463,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_cs.ts %%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_de.qm %%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_de.ts +%%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_en.qm +%%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_en.ts %%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_es.qm %%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_es.ts %%DATADIR%%/scripts/Block/RenameBlock/ts/RenameBlock_fi.qm @@ -1424,17 +1514,25 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_fr.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_it.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_ja.html +%%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_nl.html +%%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_pl.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_pt.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_ru.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_desc_sl.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_en.html +%%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_es.html +%%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_fr.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_it.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_ja.html +%%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_nl.html +%%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_pl.html %%DATADIR%%/scripts/Block/SelectBlockReferences/doc/SelectBlockReferences_sl.html %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_cs.qm %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_cs.ts %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_de.qm %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_de.ts +%%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_en.qm +%%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_en.ts %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_es.qm %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_es.ts %%DATADIR%%/scripts/Block/SelectBlockReferences/ts/SelectBlockReferences_fi.qm @@ -1484,6 +1582,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_fr.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_it.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_ja.html +%%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_nl.html +%%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_pl.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_pt.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_ru.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_desc_sl.html @@ -1492,12 +1592,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_fr.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_it.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_ja.html +%%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_nl.html +%%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_pl.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_pt.html %%DATADIR%%/scripts/Block/ShowAllBlocks/doc/ShowAllBlocks_sl.html %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_cs.qm %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_cs.ts %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_de.qm %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_de.ts +%%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_en.qm +%%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_en.ts %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_es.qm %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_es.ts %%DATADIR%%/scripts/Block/ShowAllBlocks/ts/ShowAllBlocks_fi.qm @@ -1547,6 +1651,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_fr.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_it.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_ja.html +%%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_nl.html +%%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_pl.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_pt.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_ru.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_desc_sl.html @@ -1555,12 +1661,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_fr.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_it.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_ja.html +%%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_nl.html +%%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_pl.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_pt.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/doc/ToggleBlockVisibility_sl.html %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_cs.qm %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_cs.ts %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_de.qm %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_de.ts +%%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_en.qm +%%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_en.ts %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_es.qm %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_es.ts %%DATADIR%%/scripts/Block/ToggleBlockVisibility/ts/ToggleBlockVisibility_fi.qm @@ -1604,12 +1714,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Block/doc/Block_fr.html %%DATADIR%%/scripts/Block/doc/Block_it.html %%DATADIR%%/scripts/Block/doc/Block_ja.html +%%DATADIR%%/scripts/Block/doc/Block_nl.html +%%DATADIR%%/scripts/Block/doc/Block_pl.html %%DATADIR%%/scripts/Block/doc/Block_pt.html %%DATADIR%%/scripts/Block/doc/Block_sl.html %%DATADIR%%/scripts/Block/ts/Block_cs.qm %%DATADIR%%/scripts/Block/ts/Block_cs.ts %%DATADIR%%/scripts/Block/ts/Block_de.qm %%DATADIR%%/scripts/Block/ts/Block_de.ts +%%DATADIR%%/scripts/Block/ts/Block_en.qm +%%DATADIR%%/scripts/Block/ts/Block_en.ts %%DATADIR%%/scripts/Block/ts/Block_es.qm %%DATADIR%%/scripts/Block/ts/Block_es.ts %%DATADIR%%/scripts/Block/ts/Block_fi.qm @@ -1679,6 +1793,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_desc_sl.html @@ -1687,12 +1803,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_de.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_en.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_es.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc2PA/doc/Arc2PA_pt.html @@ -1703,6 +1823,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_cs.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_de.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_de.ts +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_en.qm +%%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_en.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_es.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_es.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PA/ts/Arc2PA_fi.qm @@ -1756,11 +1878,25 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_de.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_de.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_en.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_es.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_fr.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_it.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_en.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_es.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_de.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_en.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_es.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_fr.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_it.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Arc2PH_sl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/Clockwise.png %%DATADIR%%/scripts/Draw/Arc/Arc2PH/doc/CounterClockwise.png @@ -1768,6 +1904,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_cs.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_de.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_de.ts +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_en.qm +%%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_en.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_es.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_es.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PH/ts/Arc2PH_fi.qm @@ -1825,18 +1963,26 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_desc_sl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_en.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_es.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_de.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_en.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_es.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc2PL/doc/Arc2PL_sl.html @@ -1846,6 +1992,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_cs.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_de.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_de.ts +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_en.qm +%%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_en.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_es.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_es.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PL/ts/Arc2PL_fi.qm @@ -1907,6 +2055,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_desc_sl.html @@ -1915,12 +2065,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_de.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_en.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_es.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc2PR/doc/Arc2PR_pt.html @@ -1933,6 +2087,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_cs.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_de.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_de.ts +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_en.qm +%%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_en.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_es.qm %%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_es.ts %%DATADIR%%/scripts/Draw/Arc/Arc2PR/ts/Arc2PR_fi.qm @@ -1985,6 +2141,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_desc_sl.html @@ -1993,12 +2151,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_it.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_de.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_en.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_es.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_it.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/Arc3P/doc/Arc3P_pt.html @@ -2007,6 +2169,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_cs.ts %%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_de.qm %%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_de.ts +%%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_en.qm +%%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_en.ts %%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_es.qm %%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_es.ts %%DATADIR%%/scripts/Draw/Arc/Arc3P/ts/Arc3P_fi.qm @@ -2064,6 +2228,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_desc_sl.html @@ -2072,12 +2238,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_it.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_de.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_en.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_es.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcCPA/doc/ArcCPA_pt.html @@ -2088,6 +2258,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_cs.ts %%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_de.qm %%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_de.ts +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_en.qm +%%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_en.ts %%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_es.qm %%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_es.ts %%DATADIR%%/scripts/Draw/Arc/ArcCPA/ts/ArcCPA_fi.qm @@ -2141,6 +2313,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_desc_sl.html @@ -2149,12 +2323,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_it.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_de.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_en.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_es.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/doc/ArcConcentric_pt.html @@ -2163,6 +2341,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_cs.ts %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_de.qm %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_de.ts +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_en.qm +%%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_en.ts %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_es.qm %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_es.ts %%DATADIR%%/scripts/Draw/Arc/ArcConcentric/ts/ArcConcentric_fi.qm @@ -2216,6 +2396,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_desc_sl.html @@ -2224,12 +2406,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_it.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_de.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_en.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_es.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/doc/ArcConcentricThrough_pt.html @@ -2238,6 +2424,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_cs.ts %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_de.qm %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_de.ts +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_en.qm +%%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_en.ts %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_es.qm %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_es.ts %%DATADIR%%/scripts/Draw/Arc/ArcConcentricThrough/ts/ArcConcentricThrough_fi.qm @@ -2291,18 +2479,26 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_desc_sl.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_en.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_es.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_it.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_de.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_en.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_es.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcTPR/doc/ArcTPR_sl.html @@ -2310,6 +2506,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_cs.ts %%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_de.qm %%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_de.ts +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_en.qm +%%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_en.ts %%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_es.qm %%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_es.ts %%DATADIR%%/scripts/Draw/Arc/ArcTPR/ts/ArcTPR_fi.qm @@ -2363,6 +2561,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_desc_sl.html @@ -2371,12 +2571,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_it.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_de.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_en.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_es.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_fr.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_it.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_ja.html +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_nl.html +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_pl.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_pt.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_proc_ru.html %%DATADIR%%/scripts/Draw/Arc/ArcTangential/doc/ArcTangential_pt.html @@ -2385,6 +2589,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_cs.ts %%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_de.qm %%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_de.ts +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_en.qm +%%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_en.ts %%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_es.qm %%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_es.ts %%DATADIR%%/scripts/Draw/Arc/ArcTangential/ts/ArcTangential_fi.qm @@ -2428,12 +2634,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Arc/doc/Arc_fr.html %%DATADIR%%/scripts/Draw/Arc/doc/Arc_it.html %%DATADIR%%/scripts/Draw/Arc/doc/Arc_ja.html +%%DATADIR%%/scripts/Draw/Arc/doc/Arc_nl.html +%%DATADIR%%/scripts/Draw/Arc/doc/Arc_pl.html %%DATADIR%%/scripts/Draw/Arc/doc/Arc_pt.html %%DATADIR%%/scripts/Draw/Arc/doc/Arc_sl.html %%DATADIR%%/scripts/Draw/Arc/ts/Arc_cs.qm %%DATADIR%%/scripts/Draw/Arc/ts/Arc_cs.ts %%DATADIR%%/scripts/Draw/Arc/ts/Arc_de.qm %%DATADIR%%/scripts/Draw/Arc/ts/Arc_de.ts +%%DATADIR%%/scripts/Draw/Arc/ts/Arc_en.qm +%%DATADIR%%/scripts/Draw/Arc/ts/Arc_en.ts %%DATADIR%%/scripts/Draw/Arc/ts/Arc_es.qm %%DATADIR%%/scripts/Draw/Arc/ts/Arc_es.ts %%DATADIR%%/scripts/Draw/Arc/ts/Arc_fi.qm @@ -2491,6 +2701,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_pt.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_ru.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_desc_sl.html @@ -2499,12 +2711,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_de.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_en.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_es.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_pt.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_proc_ru.html %%DATADIR%%/scripts/Draw/Circle/Circle2P/doc/Circle2P_pt.html @@ -2513,6 +2729,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_cs.ts %%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_de.qm %%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_de.ts +%%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_en.qm +%%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_en.ts %%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_es.qm %%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_es.ts %%DATADIR%%/scripts/Draw/Circle/Circle2P/ts/Circle2P_fi.qm @@ -2569,6 +2787,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_pt.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_ru.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_desc_sl.html @@ -2577,12 +2797,16 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_de.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_en.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_es.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_pt.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_proc_ru.html %%DATADIR%%/scripts/Draw/Circle/Circle2PR/doc/Circle2PR_pt.html @@ -2593,6 +2817,8 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_cs.ts %%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_de.qm %%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_de.ts +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_en.qm +%%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_en.ts %%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_es.qm %%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_es.ts %%DATADIR%%/scripts/Draw/Circle/Circle2PR/ts/Circle2PR_fi.qm @@ -2649,18 +2875,26 @@ lib/libstemmer.a %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_pt.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_ru.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_desc_sl.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_en.html +%%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_es.html +%%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_fr.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_it.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_ja.html +%%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_nl.html +%%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_pl.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_proc_de.html %%DATADIR%%/scripts/Draw/Circle/Circle2TP/doc/Circle2TP_proc_en.html *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@freebsd.org Fri Jun 22 12:14:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F3C51019E47; Fri, 22 Jun 2018 12:14:22 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1FCA88E4E5; Fri, 22 Jun 2018 12:14:22 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F11A1208CE; Fri, 22 Jun 2018 12:14:21 +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 w5MCEL5K021455; Fri, 22 Jun 2018 12:14:21 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MCEKp3021449; Fri, 22 Jun 2018 12:14:20 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201806221214.w5MCEKp3021449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Fri, 22 Jun 2018 12:14:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473036 - in head/devel/git: . files X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: in head/devel/git: . files X-SVN-Commit-Revision: 473036 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 12:14:22 -0000 Author: garga Date: Fri Jun 22 12:14:20 2018 New Revision: 473036 URL: https://svnweb.freebsd.org/changeset/ports/473036 Log: Update devel/git to 2.18.0 Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/devel/git/Makefile head/devel/git/distinfo head/devel/git/files/patch-Documentation__Makefile head/devel/git/files/patch-Makefile head/devel/git/pkg-plist Modified: head/devel/git/Makefile ============================================================================== --- head/devel/git/Makefile Fri Jun 22 12:07:31 2018 (r473035) +++ head/devel/git/Makefile Fri Jun 22 12:14:20 2018 (r473036) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git -DISTVERSION= 2.17.1 +DISTVERSION= 2.18.0 CATEGORIES= devel MASTER_SITES= KERNEL_ORG/software/scm/git DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ Modified: head/devel/git/distinfo ============================================================================== --- head/devel/git/distinfo Fri Jun 22 12:07:31 2018 (r473035) +++ head/devel/git/distinfo Fri Jun 22 12:14:20 2018 (r473036) @@ -1,7 +1,7 @@ -TIMESTAMP = 1527618147 -SHA256 (git-2.17.1.tar.xz) = 79136e7aa83abae4d8a25c8111f113d3c5a63aeb5fd93cc72c26d49c6d5ba65e -SIZE (git-2.17.1.tar.xz) = 5015484 -SHA256 (git-manpages-2.17.1.tar.xz) = 83d54786ea634488458486f262cb5157629a898f9d45f5d86b302aac79ceef54 -SIZE (git-manpages-2.17.1.tar.xz) = 419400 -SHA256 (git-htmldocs-2.17.1.tar.xz) = 945b1c8c8761e7c17ca39ce0fc5af94d2b238da37f8d2b1823c65302cfa4d275 -SIZE (git-htmldocs-2.17.1.tar.xz) = 1173296 +TIMESTAMP = 1529666333 +SHA256 (git-2.18.0.tar.xz) = 8b40be383a603147ae29337136c00d1c634bdfdc169a30924a024596a7e30e92 +SIZE (git-2.18.0.tar.xz) = 5102264 +SHA256 (git-manpages-2.18.0.tar.xz) = 9ae3be95e63379597164c79c9018e84b7ef6964da923e5689dbc307693266096 +SIZE (git-manpages-2.18.0.tar.xz) = 425516 +SHA256 (git-htmldocs-2.18.0.tar.xz) = 5b70d9b1f86aad464ae172040eb87da83058c00581388af6f60b050214912efc +SIZE (git-htmldocs-2.18.0.tar.xz) = 1201076 Modified: head/devel/git/files/patch-Documentation__Makefile ============================================================================== --- head/devel/git/files/patch-Documentation__Makefile Fri Jun 22 12:07:31 2018 (r473035) +++ head/devel/git/files/patch-Documentation__Makefile Fri Jun 22 12:14:20 2018 (r473036) @@ -1,6 +1,6 @@ ---- Documentation/Makefile.orig 2018-04-02 17:44:04 UTC +--- Documentation/Makefile.orig 2018-06-21 17:18:50 UTC +++ Documentation/Makefile -@@ -92,11 +92,11 @@ DOC_MAN1 = $(patsubst %.txt,%.1,$(MAN1_TXT)) +@@ -93,11 +93,11 @@ DOC_MAN1 = $(patsubst %.txt,%.1,$(MAN1_TXT)) DOC_MAN5 = $(patsubst %.txt,%.5,$(MAN5_TXT)) DOC_MAN7 = $(patsubst %.txt,%.7,$(MAN7_TXT)) @@ -15,7 +15,7 @@ mandir ?= $(prefix)/share/man man1dir = $(mandir)/man1 man5dir = $(mandir)/man5 -@@ -231,7 +231,7 @@ ifndef V +@@ -232,7 +232,7 @@ ifndef V endif endif Modified: head/devel/git/files/patch-Makefile ============================================================================== --- head/devel/git/files/patch-Makefile Fri Jun 22 12:07:31 2018 (r473035) +++ head/devel/git/files/patch-Makefile Fri Jun 22 12:14:20 2018 (r473036) @@ -1,9 +1,9 @@ ---- Makefile.orig 2018-04-02 17:44:04 UTC +--- Makefile.orig 2018-06-21 17:18:50 UTC +++ Makefile -@@ -476,16 +476,16 @@ ARFLAGS = rcs +@@ -518,16 +518,16 @@ ARFLAGS = rcs + prefix = $(HOME) - bindir_relative = bin - bindir = $(prefix)/$(bindir_relative) + bindir = $(prefix)/bin -mandir = $(prefix)/share/man -infodir = $(prefix)/share/info +mandir = $(prefix)/man @@ -22,7 +22,7 @@ ETC_GITCONFIG = $(sysconfdir)/gitconfig ETC_GITATTRIBUTES = $(sysconfdir)/gitattributes lib = lib -@@ -1267,9 +1267,9 @@ EXTLIBS += -lz +@@ -1326,9 +1326,9 @@ EXTLIBS += -lz ifndef NO_OPENSSL OPENSSL_LIBSSL = -lssl @@ -35,7 +35,7 @@ else OPENSSL_LINK = endif -@@ -2012,7 +2012,7 @@ git-instaweb: git-instaweb.sh GIT-SCRIPT-DEFINES +@@ -2151,7 +2151,7 @@ git-instaweb: git-instaweb.sh GIT-SCRIPT-DEFINES chmod +x $@+ && \ mv $@+ $@ else # NO_PERL Modified: head/devel/git/pkg-plist ============================================================================== --- head/devel/git/pkg-plist Fri Jun 22 12:07:31 2018 (r473035) +++ head/devel/git/pkg-plist Fri Jun 22 12:14:20 2018 (r473036) @@ -53,6 +53,7 @@ libexec/git-core/git-clean libexec/git-core/git-clone libexec/git-core/git-column libexec/git-core/git-commit +libexec/git-core/git-commit-graph libexec/git-core/git-commit-tree libexec/git-core/git-config libexec/git-core/git-count-objects @@ -159,6 +160,7 @@ libexec/git-core/git-revert libexec/git-core/git-rm %%SEND_EMAIL%%libexec/git-core/git-send-email libexec/git-core/git-send-pack +libexec/git-core/git-serve libexec/git-core/git-sh-i18n libexec/git-core/git-sh-i18n--envsubst libexec/git-core/git-sh-setup @@ -203,6 +205,7 @@ libexec/git-core/mergetools/diffuse libexec/git-core/mergetools/ecmerge libexec/git-core/mergetools/emerge libexec/git-core/mergetools/examdiff +libexec/git-core/mergetools/guiffy libexec/git-core/mergetools/gvimdiff libexec/git-core/mergetools/gvimdiff2 libexec/git-core/mergetools/gvimdiff3 @@ -241,6 +244,7 @@ man/man1/git-cherry.1.gz man/man1/git-clean.1.gz man/man1/git-clone.1.gz man/man1/git-column.1.gz +man/man1/git-commit-graph.1.gz man/man1/git-commit-tree.1.gz man/man1/git-commit.1.gz man/man1/git-config.1.gz @@ -661,6 +665,7 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.16.4.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.17.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.17.1.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.18.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.0.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.1.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes/2.2.2.txt @@ -794,6 +799,8 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/git-clone.txt %%HTMLDOCS%%%%DOCSDIR%%/git-column.html %%HTMLDOCS%%%%DOCSDIR%%/git-column.txt +%%HTMLDOCS%%%%DOCSDIR%%/git-commit-graph.html +%%HTMLDOCS%%%%DOCSDIR%%/git-commit-graph.txt %%HTMLDOCS%%%%DOCSDIR%%/git-commit-tree.html %%HTMLDOCS%%%%DOCSDIR%%/git-commit-tree.txt %%HTMLDOCS%%%%DOCSDIR%%/git-commit.html @@ -1195,6 +1202,8 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/technical/api-xdiff-interface.html %%HTMLDOCS%%%%DOCSDIR%%/technical/api-xdiff-interface.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/bitmap-format.txt +%%HTMLDOCS%%%%DOCSDIR%%/technical/commit-graph-format.txt +%%HTMLDOCS%%%%DOCSDIR%%/technical/commit-graph.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/hash-function-transition.html %%HTMLDOCS%%%%DOCSDIR%%/technical/hash-function-transition.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/http-protocol.html @@ -1214,6 +1223,8 @@ man/man7/gitworkflows.7.gz %%HTMLDOCS%%%%DOCSDIR%%/technical/protocol-capabilities.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/protocol-common.html %%HTMLDOCS%%%%DOCSDIR%%/technical/protocol-common.txt +%%HTMLDOCS%%%%DOCSDIR%%/technical/protocol-v2.html +%%HTMLDOCS%%%%DOCSDIR%%/technical/protocol-v2.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/racy-git.html %%HTMLDOCS%%%%DOCSDIR%%/technical/racy-git.txt %%HTMLDOCS%%%%DOCSDIR%%/technical/repository-version.txt @@ -1247,6 +1258,7 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/buildsystems/parse.pl %%CONTRIB%%share/git-core/contrib/coccinelle/README %%CONTRIB%%share/git-core/contrib/coccinelle/array.cocci +%%CONTRIB%%share/git-core/contrib/coccinelle/commit.cocci %%CONTRIB%%share/git-core/contrib/coccinelle/free.cocci %%CONTRIB%%share/git-core/contrib/coccinelle/object_id.cocci %%CONTRIB%%share/git-core/contrib/coccinelle/qsort.cocci @@ -1260,7 +1272,6 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/contacts/Makefile %%CONTRIB%%share/git-core/contrib/contacts/git-contacts %%CONTRIB%%share/git-core/contrib/contacts/git-contacts.txt -%%CONTRIB%%share/git-core/contrib/convert-grafts-to-replace-refs.sh %%CONTRIB%%share/git-core/contrib/credential/gnome-keyring/.gitignore %%CONTRIB%%share/git-core/contrib/credential/gnome-keyring/Makefile %%CONTRIB%%share/git-core/contrib/credential/gnome-keyring/git-credential-gnome-keyring.c @@ -1268,7 +1279,11 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/credential/libsecret/git-credential-libsecret.c %%CONTRIB%%share/git-core/contrib/credential/netrc/Makefile %%CONTRIB%%share/git-core/contrib/credential/netrc/git-credential-netrc +%%CONTRIB%%share/git-core/contrib/credential/netrc/t-git-credential-netrc.sh +%%CONTRIB%%share/git-core/contrib/credential/netrc/test.command-option-gpg +%%CONTRIB%%share/git-core/contrib/credential/netrc/test.git-config-gpg %%CONTRIB%%share/git-core/contrib/credential/netrc/test.netrc +%%CONTRIB%%share/git-core/contrib/credential/netrc/test.netrc.gpg %%CONTRIB%%share/git-core/contrib/credential/netrc/test.pl %%CONTRIB%%share/git-core/contrib/credential/osxkeychain/.gitignore %%CONTRIB%%share/git-core/contrib/credential/osxkeychain/Makefile @@ -1282,38 +1297,10 @@ share/emacs/site-lisp/git/git.el %%CONTRIB%%share/git-core/contrib/diff-highlight/diff-highlight %%CONTRIB%%share/git-core/contrib/diff-highlight/t/Makefile %%CONTRIB%%share/git-core/contrib/diff-highlight/t/t9400-diff-highlight.sh -%%CONTRIB%%share/git-core/contrib/emacs/.gitignore -%%CONTRIB%%share/git-core/contrib/emacs/Makefile %%CONTRIB%%share/git-core/contrib/emacs/README %%CONTRIB%%share/git-core/contrib/emacs/git-blame.el %%CONTRIB%%share/git-core/contrib/emacs/git.el %%CONTRIB%%share/git-core/contrib/examples/README -%%CONTRIB%%share/git-core/contrib/examples/builtin-fetch--tool.c -%%CONTRIB%%share/git-core/contrib/examples/git-am.sh -%%CONTRIB%%share/git-core/contrib/examples/git-checkout.sh -%%CONTRIB%%share/git-core/contrib/examples/git-clean.sh -%%CONTRIB%%share/git-core/contrib/examples/git-clone.sh -%%CONTRIB%%share/git-core/contrib/examples/git-commit.sh -%%CONTRIB%%share/git-core/contrib/examples/git-difftool.perl -%%CONTRIB%%share/git-core/contrib/examples/git-fetch.sh -%%CONTRIB%%share/git-core/contrib/examples/git-gc.sh -%%CONTRIB%%share/git-core/contrib/examples/git-log.sh -%%CONTRIB%%share/git-core/contrib/examples/git-ls-remote.sh -%%CONTRIB%%share/git-core/contrib/examples/git-merge-ours.sh -%%CONTRIB%%share/git-core/contrib/examples/git-merge.sh -%%CONTRIB%%share/git-core/contrib/examples/git-notes.sh -%%CONTRIB%%share/git-core/contrib/examples/git-pull.sh -%%CONTRIB%%share/git-core/contrib/examples/git-remote.perl -%%CONTRIB%%share/git-core/contrib/examples/git-repack.sh -%%CONTRIB%%share/git-core/contrib/examples/git-rerere.perl -%%CONTRIB%%share/git-core/contrib/examples/git-reset.sh -%%CONTRIB%%share/git-core/contrib/examples/git-resolve.sh -%%CONTRIB%%share/git-core/contrib/examples/git-revert.sh -%%CONTRIB%%share/git-core/contrib/examples/git-svnimport.perl -%%CONTRIB%%share/git-core/contrib/examples/git-svnimport.txt -%%CONTRIB%%share/git-core/contrib/examples/git-tag.sh -%%CONTRIB%%share/git-core/contrib/examples/git-verify-tag.sh -%%CONTRIB%%share/git-core/contrib/examples/git-whatchanged.sh %%CONTRIB%%share/git-core/contrib/fast-import/git-import.perl %%CONTRIB%%share/git-core/contrib/fast-import/git-import.sh %%CONTRIB%%share/git-core/contrib/fast-import/git-p4.README From owner-svn-ports-head@freebsd.org Fri Jun 22 13:00:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14FC0101AE0F; Fri, 22 Jun 2018 13:00:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB46A8F564; Fri, 22 Jun 2018 13:00: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 97F5620F40; Fri, 22 Jun 2018 13:00:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MD04FM042082; Fri, 22 Jun 2018 13:00:04 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MD04DU042081; Fri, 22 Jun 2018 13:00:04 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221300.w5MD04DU042081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 13:00:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473037 - head/games/blackshadeselite X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/blackshadeselite X-SVN-Commit-Revision: 473037 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 13:00:05 -0000 Author: amdmi3 Date: Fri Jun 22 13:00:04 2018 New Revision: 473037 URL: https://svnweb.freebsd.org/changeset/ports/473037 Log: - Fix build with clang 6 - Clarify GL dependency - Switch to options helpers Modified: head/games/blackshadeselite/Makefile Modified: head/games/blackshadeselite/Makefile ============================================================================== --- head/games/blackshadeselite/Makefile Fri Jun 22 12:14:20 2018 (r473036) +++ head/games/blackshadeselite/Makefile Fri Jun 22 13:00:04 2018 (r473037) @@ -18,10 +18,12 @@ LIB_DEPENDS= libvorbis.so:audio/libvorbis USES= tar:bzip2 gmake openal:al,alut USE_SDL= sdl -USE_GL= yes +USE_GL= gl glu MAKE_ARGS= CC="${CC}" CXX="${CXX}" +CXXFLAGS+= -Wno-c++11-narrowing + WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/blackshades @@ -40,8 +42,10 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/objs/blackshades ${STAGEDIR}${PREFIX}/bin/ - cd ${WRKSRC} && ${COPYTREE_SHARE} Data ${STAGEDIR}${DATADIR}/ - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} Data ${STAGEDIR}${DATADIR}/ + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor From owner-svn-ports-head@freebsd.org Fri Jun 22 13:01:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EBB2101AE8A; Fri, 22 Jun 2018 13:01:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 107628F701; Fri, 22 Jun 2018 13: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E5D3521078; Fri, 22 Jun 2018 13:01:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MD1RjZ045951; Fri, 22 Jun 2018 13:01:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MD1RPK045948; Fri, 22 Jun 2018 13:01:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221301.w5MD1RPK045948@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 13:01:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473038 - head/games/construo/files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/construo/files X-SVN-Commit-Revision: 473038 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 13:01:28 -0000 Author: amdmi3 Date: Fri Jun 22 13:01:26 2018 New Revision: 473038 URL: https://svnweb.freebsd.org/changeset/ports/473038 Log: - Fix build with clang 6 Added: head/games/construo/files/ head/games/construo/files/patch-src_command__line.cpp (contents, props changed) head/games/construo/files/patch-src_construo.hpp (contents, props changed) head/games/construo/files/patch-src_world__gui_manager.cpp (contents, props changed) Added: head/games/construo/files/patch-src_command__line.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/construo/files/patch-src_command__line.cpp Fri Jun 22 13:01:26 2018 (r473038) @@ -0,0 +1,20 @@ +--- src/command_line.cpp.orig 2015-03-24 17:13:41 UTC ++++ src/command_line.cpp +@@ -118,7 +118,7 @@ CommandLine::parse (int argc, char** arg + void + CommandLine::print_help () + { +- std::cout << "Construo "VERSION"\n\n" ++ std::cout << "Construo " VERSION "\n\n" + << "Usage: construo [OPTIONS] [FILENAME]\n\n" + << " -h, --help display this help text\n" + << " -v,--version Print version number of the programm\n" +@@ -135,7 +135,7 @@ CommandLine::print_help () + void + CommandLine::print_version () + { +- std::cout << "Construo "VERSION"\n" ++ std::cout << "Construo " VERSION "\n" + << "Written by Ingo Ruhnke \n\n" + << "Copyright (C) 2002 Ingo Ruhnke \n" + << "This is free software; see the source for copying conditions. There is NO\n" Added: head/games/construo/files/patch-src_construo.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/construo/files/patch-src_construo.hpp Fri Jun 22 13:01:26 2018 (r473038) @@ -0,0 +1,11 @@ +--- src/construo.hpp.orig 2015-03-24 17:13:41 UTC ++++ src/construo.hpp +@@ -19,7 +19,7 @@ + + #include + +-#define CONSTRUO_DATADIR DATADIR"/games/"PACKAGE ++#define CONSTRUO_DATADIR DATADIR "/games/" PACKAGE + + class SystemContext; + class InputContext; Added: head/games/construo/files/patch-src_world__gui_manager.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/construo/files/patch-src_world__gui_manager.cpp Fri Jun 22 13:01:26 2018 (r473038) @@ -0,0 +1,11 @@ +--- src/world_gui_manager.cpp.orig 2015-03-24 17:13:41 UTC ++++ src/world_gui_manager.cpp +@@ -273,7 +273,7 @@ WorldGUIManager::draw_overlay () + graphic_context->draw_string (410, bottom_line, "Zoom: "); + graphic_context->draw_string (480, bottom_line, to_string(WorldViewComponent::instance()->get_zoom())); + +- graphic_context->draw_string (610, bottom_line, "..:: Construo V"VERSION" ::.."); ++ graphic_context->draw_string (610, bottom_line, "..:: Construo V" VERSION " ::.."); + //graphic_context->draw_string (680, bottom_line, to_string(WorldViewComponent::instance()->get_zoom())); + } + From owner-svn-ports-head@freebsd.org Fri Jun 22 13:24:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B2F8101B958; Fri, 22 Jun 2018 13:24:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F099E704B3; Fri, 22 Jun 2018 13:24:05 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D091F21406; Fri, 22 Jun 2018 13:24:05 +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 w5MDO50o056891; Fri, 22 Jun 2018 13:24:05 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MDO5Wa056887; Fri, 22 Jun 2018 13:24:05 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221324.w5MDO5Wa056887@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 13:24:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473039 - head/databases/pldebugger X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/databases/pldebugger X-SVN-Commit-Revision: 473039 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 13:24:06 -0000 Author: amdmi3 Date: Fri Jun 22 13:24:05 2018 New Revision: 473039 URL: https://svnweb.freebsd.org/changeset/ports/473039 Log: - Update to 1.0 Modified: head/databases/pldebugger/Makefile head/databases/pldebugger/distinfo Modified: head/databases/pldebugger/Makefile ============================================================================== --- head/databases/pldebugger/Makefile Fri Jun 22 13:01:26 2018 (r473038) +++ head/databases/pldebugger/Makefile Fri Jun 22 13:24:05 2018 (r473039) @@ -2,9 +2,10 @@ # $FreeBSD$ PORTNAME= pldebugger -PORTVERSION= 9.6.0 +PORTVERSION= 1.0 +PORTEPOCH= 1 CATEGORIES= databases -MASTER_SITES= https://git.postgresql.org/gitweb/?p=pldebugger.git;a=snapshot;h=REL-${PORTVERSION:C/\./_/g};sf=tgz;dummy=/ +MASTER_SITES= https://git.postgresql.org/gitweb/?p=pldebugger.git;a=snapshot;h=v${PORTVERSION};sf=tgz;dummy=/ MAINTAINER= amdmi3@FreeBSD.org COMMENT= PostgreSQL pl/pgsql Debugger API @@ -16,7 +17,7 @@ WANT_PGSQL= server DOCSDIR= ${PREFIX}/share/doc/postgresql/extension -WRKSRC= ${WRKDIR}/${PORTNAME}-REL-${PORTVERSION:C/\./_/g}-d02e829 +WRKSRC= ${WRKDIR}/${PORTNAME}-v${PORTVERSION}-264450d MAKE_ENV= USE_PGXS=1 Modified: head/databases/pldebugger/distinfo ============================================================================== --- head/databases/pldebugger/distinfo Fri Jun 22 13:01:26 2018 (r473038) +++ head/databases/pldebugger/distinfo Fri Jun 22 13:24:05 2018 (r473039) @@ -1,3 +1,3 @@ -TIMESTAMP = 1498425527 -SHA256 (pldebugger-9.6.0.tar.gz) = 562ca02a07ac3c131fb2f518e90fe70b4965f1760384b804f3a01db43745ee21 -SIZE (pldebugger-9.6.0.tar.gz) = 48239 +TIMESTAMP = 1529607550 +SHA256 (pldebugger-1.0.tar.gz) = b886d5b506bbb89c55c2129e087e61a7f4b9945b37a3638e3a2b128b541c47d4 +SIZE (pldebugger-1.0.tar.gz) = 48231 From owner-svn-ports-head@freebsd.org Fri Jun 22 13:32:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9EF9101BBC3; Fri, 22 Jun 2018 13:32:21 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 987F370862; Fri, 22 Jun 2018 13:32: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 797BD21599; Fri, 22 Jun 2018 13:32: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 w5MDWLXZ062076; Fri, 22 Jun 2018 13:32:21 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MDWLAk062073; Fri, 22 Jun 2018 13:32:21 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201806221332.w5MDWLAk062073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Fri, 22 Jun 2018 13:32:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473040 - head/math/octave-forge-stk X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: head/math/octave-forge-stk X-SVN-Commit-Revision: 473040 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 13:32:22 -0000 Author: stephen Date: Fri Jun 22 13:32:20 2018 New Revision: 473040 URL: https://svnweb.freebsd.org/changeset/ports/473040 Log: - Update to 2.5.1. 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 Fri Jun 22 13:24:05 2018 (r473039) +++ head/math/octave-forge-stk/Makefile Fri Jun 22 13:32:20 2018 (r473040) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-stk -PORTVERSION= 2.5.0 -PORTREVISION= 3 +PORTVERSION= 2.5.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-stk/distinfo ============================================================================== --- head/math/octave-forge-stk/distinfo Fri Jun 22 13:24:05 2018 (r473039) +++ head/math/octave-forge-stk/distinfo Fri Jun 22 13:32:20 2018 (r473040) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508897414 -SHA256 (octave-forge/stk-2.5.0.tar.gz) = fb189a80bdd34c80cdba75ff52344b80266effa5b67230aae97f34f8479a5b88 -SIZE (octave-forge/stk-2.5.0.tar.gz) = 358164 +TIMESTAMP = 1529674227 +SHA256 (octave-forge/stk-2.5.1.tar.gz) = a38a7a6547fa702214c7e34b198d379e42b37eeeae8f27f9d95719502cb778f0 +SIZE (octave-forge/stk-2.5.1.tar.gz) = 358897 From owner-svn-ports-head@freebsd.org Fri Jun 22 13:43:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00AAC101C26D; Fri, 22 Jun 2018 13:43:07 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 99A2370EC8; Fri, 22 Jun 2018 13:43:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 78CD32174C; Fri, 22 Jun 2018 13:43:06 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MDh6kA067118; Fri, 22 Jun 2018 13:43:06 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MDh5jo067113; Fri, 22 Jun 2018 13:43:05 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201806221343.w5MDh5jo067113@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Fri, 22 Jun 2018 13:43:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473041 - in head/textproc: . py-openstackdocstheme py-openstackdocstheme/files X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/textproc: . py-openstackdocstheme py-openstackdocstheme/files X-SVN-Commit-Revision: 473041 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 13:43:07 -0000 Author: miwi Date: Fri Jun 22 13:43:05 2018 New Revision: 473041 URL: https://svnweb.freebsd.org/changeset/ports/473041 Log: Theme and extension support for Sphinx documentation that is published to docs.openstack.org and developer.openstack.org. WWW: https://pypi.org/project/openstackdocstheme/ PR: 228681 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Added: head/textproc/py-openstackdocstheme/ head/textproc/py-openstackdocstheme/Makefile (contents, props changed) head/textproc/py-openstackdocstheme/distinfo (contents, props changed) head/textproc/py-openstackdocstheme/files/ head/textproc/py-openstackdocstheme/files/patch-openstackdocstheme_ext.py (contents, props changed) head/textproc/py-openstackdocstheme/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jun 22 13:32:20 2018 (r473040) +++ head/textproc/Makefile Fri Jun 22 13:43:05 2018 (r473041) @@ -1328,6 +1328,7 @@ SUBDIR += py-nltk SUBDIR += py-numpydoc SUBDIR += py-openpyxl + SUBDIR += py-openstackdocstheme SUBDIR += py-orange3-text SUBDIR += py-pager SUBDIR += py-pandocfilters Added: head/textproc/py-openstackdocstheme/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openstackdocstheme/Makefile Fri Jun 22 13:43:05 2018 (r473041) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= openstackdocstheme +DISTVERSION= 1.21.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= freebsd_ports@k-worx.org +COMMENT= OpenStack Docs Theme + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dulwich>=0.15.0:devel/dulwich@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils concurrent autoplist + +NO_ARCH= yes +PORTDOCS= * + +OPTIONS_DEFINE= DOCS +DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0:textproc/py-sphinx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dulwich>=0.15.0:devel/dulwich@${PY_FLAVOR} +DOCS_VARS= PYDISTUTILS_BUILD_TARGET+="build_sphinx -a -E" + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/build/html && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} \ + "! -name .buildinfo -and ! -name objects.inv") + +.include Added: head/textproc/py-openstackdocstheme/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openstackdocstheme/distinfo Fri Jun 22 13:43:05 2018 (r473041) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527880367 +SHA256 (openstackdocstheme-1.21.0.tar.gz) = 20df88482739f76c9007385c6314de7b787ad5c7bdcd23df5aa5c9c012f32d92 +SIZE (openstackdocstheme-1.21.0.tar.gz) = 1191580 Added: head/textproc/py-openstackdocstheme/files/patch-openstackdocstheme_ext.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openstackdocstheme/files/patch-openstackdocstheme_ext.py Fri Jun 22 13:43:05 2018 (r473041) @@ -0,0 +1,23 @@ +--- openstackdocstheme/ext.py.orig 2018-03-29 20:08:16 UTC ++++ openstackdocstheme/ext.py +@@ -95,13 +95,13 @@ def _html_page_context(app, pagename, te + global _html_context_data + if _html_context_data is None: + _html_context_data = {} +- try: +- _html_context_data['gitsha'] = subprocess.check_output( +- ['git', 'rev-parse', 'HEAD'], +- ).decode('utf-8').strip() +- except Exception: +- logger.warning('Cannot get gitsha from git repository.') +- _html_context_data['gitsha'] = 'unknown' ++ #try: ++ # _html_context_data['gitsha'] = subprocess.check_output( ++ # ['git', 'rev-parse', 'HEAD'], ++ # ).decode('utf-8').strip() ++ #except Exception: ++ # logger.warning('Cannot get gitsha from git repository.') ++ _html_context_data['gitsha'] = 'unknown' + + doc_path = _get_doc_path(app) + repo_name = app.config.repository_name Added: head/textproc/py-openstackdocstheme/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-openstackdocstheme/pkg-descr Fri Jun 22 13:43:05 2018 (r473041) @@ -0,0 +1,4 @@ +Theme and extension support for Sphinx documentation that is published to +docs.openstack.org and developer.openstack.org. + +WWW: https://pypi.org/project/openstackdocstheme/ From owner-svn-ports-head@freebsd.org Fri Jun 22 14:39:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AF2A101DACA; Fri, 22 Jun 2018 14:39:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8CF572AD7; Fri, 22 Jun 2018 14:39:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9229421F78; Fri, 22 Jun 2018 14:39:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MEdWEr092528; Fri, 22 Jun 2018 14:39:32 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MEdVXv092526; Fri, 22 Jun 2018 14:39:31 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221439.w5MEdVXv092526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 14:39:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473042 - head/deskutils/timewarrior X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/deskutils/timewarrior X-SVN-Commit-Revision: 473042 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 14:39:33 -0000 Author: swills Date: Fri Jun 22 14:39:31 2018 New Revision: 473042 URL: https://svnweb.freebsd.org/changeset/ports/473042 Log: deskutils/timewarrior: update to 1.1.1 PR: 229216 Submitted by: Zsolt Udvari Modified: head/deskutils/timewarrior/Makefile (contents, props changed) head/deskutils/timewarrior/distinfo (contents, props changed) head/deskutils/timewarrior/pkg-plist (contents, props changed) Modified: head/deskutils/timewarrior/Makefile ============================================================================== --- head/deskutils/timewarrior/Makefile Fri Jun 22 13:43:05 2018 (r473041) +++ head/deskutils/timewarrior/Makefile Fri Jun 22 14:39:31 2018 (r473042) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= timewarrior -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.1 CATEGORIES= deskutils MASTER_SITES= https://taskwarrior.org/download/ DISTNAME= timew-${PORTVERSION} @@ -9,6 +9,11 @@ DISTNAME= timew-${PORTVERSION} MAINTAINER= swills@FreeBSD.org COMMENT= Track time from the command line +LICENSE= MIT + USES= cmake compiler:c++11-lang +CMAKE_ARGS+= -DTIMEW_DOCDIR=${DOCSDIR} + +OPTIONS_SUB= yes .include Modified: head/deskutils/timewarrior/distinfo ============================================================================== --- head/deskutils/timewarrior/distinfo Fri Jun 22 13:43:05 2018 (r473041) +++ head/deskutils/timewarrior/distinfo Fri Jun 22 14:39:31 2018 (r473042) @@ -1,3 +1,3 @@ -TIMESTAMP = 1499471464 -SHA256 (timew-1.0.0.tar.gz) = ac027910e1e8365bdd218a8b42389b26d017d38d3c96516c408db6d5a44e0bb5 -SIZE (timew-1.0.0.tar.gz) = 140539 +TIMESTAMP = 1529603473 +SHA256 (timew-1.1.1.tar.gz) = 1f7d9a62e55fc5a3126433654ccb1fd7d2d135f06f05697f871897c9db77ccc9 +SIZE (timew-1.1.1.tar.gz) = 166484 Modified: head/deskutils/timewarrior/pkg-plist ============================================================================== --- head/deskutils/timewarrior/pkg-plist Fri Jun 22 13:43:05 2018 (r473041) +++ head/deskutils/timewarrior/pkg-plist Fri Jun 22 14:39:31 2018 (r473042) @@ -1,16 +1,19 @@ bin/timew man/man1/timew.1.gz -share/doc/timew/AUTHORS -share/doc/timew/COPYING -share/doc/timew/ChangeLog -share/doc/timew/INSTALL -share/doc/timew/LICENSE -share/doc/timew/NEWS -share/doc/timew/README.md -share/doc/timew/doc/holidays/README -share/doc/timew/doc/holidays/holidays.en-US -share/doc/timew/doc/holidays/refresh -share/doc/timew/doc/themes/README -share/doc/timew/doc/themes/dark.theme -share/doc/timew/ext/on-modify.timewarrior -share/doc/timew/ext/totals.py +%%DOCSDIR%%/AUTHORS +%%DOCSDIR%%/COPYING +%%DOCSDIR%%/ChangeLog +%%DOCSDIR%%/INSTALL +%%DOCSDIR%%/LICENSE +%%DOCSDIR%%/NEWS +%%DOCSDIR%%/README.md +%%DOCSDIR%%/doc/holidays/README +%%DOCSDIR%%/doc/holidays/holidays.en-US +%%DOCSDIR%%/doc/holidays/refresh +%%DOCSDIR%%/doc/themes/README +%%DOCSDIR%%/doc/themes/dark.theme +%%DOCSDIR%%/doc/themes/dark_blue.theme +%%DOCSDIR%%/doc/themes/dark_green.theme +%%DOCSDIR%%/doc/themes/dark_red.theme +%%DOCSDIR%%/ext/on-modify.timewarrior +%%DOCSDIR%%/ext/totals.py From owner-svn-ports-head@freebsd.org Fri Jun 22 14:47:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B454C101DF9F; Fri, 22 Jun 2018 14:47:07 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6569F73060; Fri, 22 Jun 2018 14:47:07 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4564522108; Fri, 22 Jun 2018 14:47:07 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MEl78E097707; Fri, 22 Jun 2018 14:47:07 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MEl6dI097705; Fri, 22 Jun 2018 14:47:06 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201806221447.w5MEl6dI097705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Fri, 22 Jun 2018 14:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473043 - head/net/haproxy-devel X-SVN-Group: ports-head X-SVN-Commit-Author: demon X-SVN-Commit-Paths: head/net/haproxy-devel X-SVN-Commit-Revision: 473043 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 14:47:07 -0000 Author: demon Date: Fri Jun 22 14:47:06 2018 New Revision: 473043 URL: https://svnweb.freebsd.org/changeset/ports/473043 Log: Update to version 1.8.10. Modified: head/net/haproxy-devel/Makefile head/net/haproxy-devel/distinfo Modified: head/net/haproxy-devel/Makefile ============================================================================== --- head/net/haproxy-devel/Makefile Fri Jun 22 14:39:31 2018 (r473042) +++ head/net/haproxy-devel/Makefile Fri Jun 22 14:47:06 2018 (r473043) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= haproxy -DISTVERSION= 1.8.9 +DISTVERSION= 1.8.10 CATEGORIES= net www MASTER_SITES= http://www.haproxy.org/download/1.8/src/ PKGNAMESUFFIX= -devel Modified: head/net/haproxy-devel/distinfo ============================================================================== --- head/net/haproxy-devel/distinfo Fri Jun 22 14:39:31 2018 (r473042) +++ head/net/haproxy-devel/distinfo Fri Jun 22 14:47:06 2018 (r473043) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526652297 -SHA256 (haproxy-1.8.9.tar.gz) = 436b77927cd85bcd4c2cb3cbf7fb539a5362d9686fdcfa34f37550ca1f5db102 -SIZE (haproxy-1.8.9.tar.gz) = 2057051 +TIMESTAMP = 1529678783 +SHA256 (haproxy-1.8.10.tar.gz) = c93bd1a2d4595810a38315de9687b813bf7df790bd807faf8982a13596b0bc60 +SIZE (haproxy-1.8.10.tar.gz) = 2058928 From owner-svn-ports-head@freebsd.org Fri Jun 22 14:59:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF193101E2C9; Fri, 22 Jun 2018 14:59:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E579735D9; Fri, 22 Jun 2018 14:59:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6E518222C4; Fri, 22 Jun 2018 14:59:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MExYWj003074; Fri, 22 Jun 2018 14:59:34 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MExYo5003072; Fri, 22 Jun 2018 14:59:34 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221459.w5MExYo5003072@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 14:59:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473044 - in head/www/uwsgi: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/www/uwsgi: . files X-SVN-Commit-Revision: 473044 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 14:59:35 -0000 Author: swills Date: Fri Jun 22 14:59:33 2018 New Revision: 473044 URL: https://svnweb.freebsd.org/changeset/ports/473044 Log: www/uwsgi: Fix typo in rc script PR: 228805 Submitted by: Nikola Kolev Approved by: maintainer timeout (eugene@zhegan.in, > 2 weeks) Modified: head/www/uwsgi/Makefile (contents, props changed) head/www/uwsgi/files/uwsgi.in Modified: head/www/uwsgi/Makefile ============================================================================== --- head/www/uwsgi/Makefile Fri Jun 22 14:47:06 2018 (r473043) +++ head/www/uwsgi/Makefile Fri Jun 22 14:59:33 2018 (r473044) @@ -3,6 +3,7 @@ PORTNAME= uwsgi PORTVERSION= 2.0.16 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://projects.unbit.it/downloads/ Modified: head/www/uwsgi/files/uwsgi.in ============================================================================== --- head/www/uwsgi/files/uwsgi.in Fri Jun 22 14:47:06 2018 (r473043) +++ head/www/uwsgi/files/uwsgi.in Fri Jun 22 14:59:33 2018 (r473044) @@ -92,7 +92,7 @@ if [ -n "${uwsgi_profiles}" ]; then eval uwsgi_logfile=\${uwsgi_${profile}_logfile:-"/var/log/${name}-${profile}.log"} eval uwsgi_pidfile=\${uwsgi_${profile}_pidfile:-"/var/run/${name}-${profile}.pid"} eval uwsgi_uid=\${uwsgi_${profile}_uid:-"${uwsgi_uid}"} - eval uwsgi_gid=\${uwsgi_${profile}_gid:-"${uwsgi_uid}"} + eval uwsgi_gid=\${uwsgi_${profile}_gid:-"${uwsgi_gid}"} eval uwsgi_flags=\${uwsgi_${profile}_flags:-"${uwsgi_flags}"} eval uwsgi_procname=\${uwsgi_${profile}_procname:-"${uwsgi_procname}"} eval uwsgi_emperor=\${uwsgi_${profile}_emperor:-"${uwsgi_emperor}"} From owner-svn-ports-head@freebsd.org Fri Jun 22 15:37:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52FEE101EE56; Fri, 22 Jun 2018 15:37:14 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3D5974798; Fri, 22 Jun 2018 15:37:13 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D070822932; Fri, 22 Jun 2018 15:37:13 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MFbDIL023372; Fri, 22 Jun 2018 15:37:13 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MFbDqb023370; Fri, 22 Jun 2018 15:37:13 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201806221537.w5MFbDqb023370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Fri, 22 Jun 2018 15:37:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473045 - head/sysutils/storcli X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/sysutils/storcli X-SVN-Commit-Revision: 473045 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 15:37:14 -0000 Author: fernape Date: Fri Jun 22 15:37:13 2018 New Revision: 473045 URL: https://svnweb.freebsd.org/changeset/ports/473045 Log: sysutils/storcli: Update to 7.5 Distfile needs to be downloaded manually after accepting the license terms. PR: 228777 Reported by: takefu@airport.fm (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15779 Modified: head/sysutils/storcli/Makefile head/sysutils/storcli/distinfo Modified: head/sysutils/storcli/Makefile ============================================================================== --- head/sysutils/storcli/Makefile Fri Jun 22 14:59:33 2018 (r473044) +++ head/sysutils/storcli/Makefile Fri Jun 22 15:37:13 2018 (r473045) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= storcli -PORTVERSION= 1.23.02 +DISTVERSION= 7.504 CATEGORIES= sysutils -MASTER_SITES= https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/ -DISTNAME= ${PORTVERSION}_StorCLI +MASTER_SITES= https://docs.broadcom.com/docs-and-downloads/docs-and-downloads/raid-controllers/ +DISTNAME= 007.0504.0000.0000_Unified_StorCLI MAINTAINER= takefu@airport.fm COMMENT= SAS MegaRAID FreeBSD StorCLI @@ -16,26 +16,36 @@ LICENSE_TEXT= Source recipient must acknowledge licens See https://www.broadcom.com/cs/Satellite?pagename=AVG2/Utilities/EulaMsg LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell auto-accept +ONLY_FOR_ARCHS= amd64 i386 + USES= zip -ONLY_FOR_ARCHS= i386 amd64 - NO_BUILD= yes NO_WRKSUBDIR= yes PLIST_FILES= sbin/storcli PKGMESSAGE= ${WRKDIR}/pkg-message -BINSRC= ${WRKSRC}/storcli_All_OS/FreeBSD +BINSRC= ${WRKSRC}/Unified_storcli_all_os/FreeBSD +.include + +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +DOWNLOAD_URL= https://docs.broadcom.com/docs/${DISTNAME}${EXTRACT_SUFX} + +IGNORE?= You must manually fetch the distribution file\ + (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL},\ + place it in ${DISTDIR} and then run make again +.endif + post-extract: - @${TAR} xf ${WRKSRC}/storcli_All_OS.zip -C${WRKSRC} + @${TAR} xf ${WRKSRC}/Unified_storcli_all_os${EXTRACT_SUFX} -C${WRKSRC} @${TAR} xf ${BINSRC}/storcli${ARCH:S/i386//:S/amd64/64/}.tar -C${WRKSRC} @${REINPLACE_CMD} 's#\(StorCli\).*StorCli64#\1#'\ ${BINSRC}/FreeBSD_readme.txt - @${FMT} 75 79 ${BINSRC}/FreeBSD_readme.txt > ${WRKSRC}/pkg-message + @${FMT} 75 79 ${BINSRC}/FreeBSD_readme.txt > ${WRKDIR}/pkg-message do-install: ${INSTALL_SCRIPT} ${WRKSRC}/storcli${ARCH:S/i386//:S/amd64/64/}\ ${STAGEDIR}${PREFIX}/sbin/storcli -.include +.include Modified: head/sysutils/storcli/distinfo ============================================================================== --- head/sysutils/storcli/distinfo Fri Jun 22 14:59:33 2018 (r473044) +++ head/sysutils/storcli/distinfo Fri Jun 22 15:37:13 2018 (r473045) @@ -1,3 +1,3 @@ -TIMESTAMP = 1504079269 -SHA256 (1.23.02_StorCLI.zip) = d7cd07b7af93cbeb5735f5d4754fb5cb0fa92af3965017c6642e5273e10eb8ff -SIZE (1.23.02_StorCLI.zip) = 48778476 +TIMESTAMP = 1528263675 +SHA256 (007.0504.0000.0000_Unified_StorCLI.zip) = 3915dcb69afa1925e2c5ee3e5aea9637e8a49adc5cb0d4d213486440ce4d7cfd +SIZE (007.0504.0000.0000_Unified_StorCLI.zip) = 40558670 From owner-svn-ports-head@freebsd.org Fri Jun 22 15:45:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58B03101F29E; Fri, 22 Jun 2018 15:45:55 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0659174DEB; Fri, 22 Jun 2018 15:45:55 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DB6F822AD8; Fri, 22 Jun 2018 15:45:54 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MFjsXh028288; Fri, 22 Jun 2018 15:45:54 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MFjsWt028285; Fri, 22 Jun 2018 15:45:54 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201806221545.w5MFjsWt028285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Fri, 22 Jun 2018 15:45:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473046 - in head/textproc/tkdiff: . files X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: in head/textproc/tkdiff: . files X-SVN-Commit-Revision: 473046 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 15:45:55 -0000 Author: fernape Date: Fri Jun 22 15:45:54 2018 New Revision: 473046 URL: https://svnweb.freebsd.org/changeset/ports/473046 Log: textproc/tkdiff: update to 4.3 This update gets rid of binary files in files/ PR: 229159 Submitted by: portmaster@bsdforge.com (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15907 Added: head/textproc/tkdiff/pkg-plist (contents, props changed) Deleted: head/textproc/tkdiff/files/ Modified: head/textproc/tkdiff/Makefile head/textproc/tkdiff/distinfo Modified: head/textproc/tkdiff/Makefile ============================================================================== --- head/textproc/tkdiff/Makefile Fri Jun 22 15:37:13 2018 (r473045) +++ head/textproc/tkdiff/Makefile Fri Jun 22 15:45:54 2018 (r473046) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= tkdiff -PORTVERSION= 4.2 -PORTREVISION= 2 +DISTVERSION= 4-3 CATEGORIES= textproc tk -MASTER_SITES= SF +MASTER_SITES= SF https://bsdforge.com/projects/source/textproc/tkdiff/:ikon +DISTFILES= ${DISTNAME}.zip tkicons.txz:ikon MAINTAINER= portmaster@BSDforge.com COMMENT= Tk frontend for diff(1) @@ -13,11 +13,7 @@ COMMENT= Tk frontend for diff(1) LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -BUILD_DEPENDS= base64>0:converters/base64 - -WRKSRC= ${WRKDIR}/${PORTNAME}-unix - -USES= tk:wrapper +USES= tar:txz tk:wrapper NO_BUILD= yes DESKTOP_ENTRIES= "Tkdiff" "Tk frontend for the diff command" \ @@ -25,20 +21,11 @@ DESKTOP_ENTRIES= "Tkdiff" "Tk frontend for the diff co "tkdiff" "GNOME;GTK;Development;System;" \ false -UNPACK= base64 -d +IKONS= tkdiff-256.png tkdiff-128.png \ + tkdiff-64.png tkdiff.png -PLIST_FILES= bin/tkdiff share/pixmaps/tkdiff.png share/pixmaps/tkdiff-256.png \ - share/pixmaps/tkdiff-128.png share/pixmaps/tkdiff-64.png - -post-patch: - ${FIND} ${WRKSRC} -type f | ${XARGS} \ - ${REINPLACE_CMD} -e '/^exec wish/s|wish|${WISH}|g' -e '/^exec tclsh/s|tclsh|${TCLSH}|g' - do-install: ${INSTALL_SCRIPT} ${WRKSRC}/tkdiff ${STAGEDIR}${PREFIX}/bin - ${UNPACK} ${FILESDIR}/icon256.base64 > ${STAGEDIR}${PREFIX}/share/pixmaps/tkdiff-256.png - ${UNPACK} ${FILESDIR}/icon128.base64 > ${STAGEDIR}${PREFIX}/share/pixmaps/tkdiff-128.png - ${UNPACK} ${FILESDIR}/icon64.base64 > ${STAGEDIR}${PREFIX}/share/pixmaps/tkdiff-64.png - ${UNPACK} ${FILESDIR}/icon32.base64 > ${STAGEDIR}${PREFIX}/share/pixmaps/tkdiff.png + ${INSTALL_DATA} ${IKONS:S/tkdiff/${WRKSRC}\/tkdiff/g} ${STAGEDIR}${PREFIX}/share/pixmaps/ .include Modified: head/textproc/tkdiff/distinfo ============================================================================== --- head/textproc/tkdiff/distinfo Fri Jun 22 15:37:13 2018 (r473045) +++ head/textproc/tkdiff/distinfo Fri Jun 22 15:45:54 2018 (r473046) @@ -1,2 +1,5 @@ -SHA256 (tkdiff-4.2.tar.gz) = 734bb417184c10072eb64e8d274245338e41b7fdeff661b5ef30e89f3e3aa357 -SIZE (tkdiff-4.2.tar.gz) = 92063 +TIMESTAMP = 1529674849 +SHA256 (tkdiff-4-3.zip) = 60acdb57da030a5697e801996e30ae7d3a49f60898abdc63286bb7be98b58bb3 +SIZE (tkdiff-4-3.zip) = 136616 +SHA256 (tkicons.txz) = cf1e6559894e9462284a1ff37fc174ecd384eb7b96dcca1d77725cbc691125a4 +SIZE (tkicons.txz) = 65720 Added: head/textproc/tkdiff/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/tkdiff/pkg-plist Fri Jun 22 15:45:54 2018 (r473046) @@ -0,0 +1,5 @@ +bin/tkdiff +share/pixmaps/tkdiff-128.png +share/pixmaps/tkdiff-256.png +share/pixmaps/tkdiff-64.png +share/pixmaps/tkdiff.png From owner-svn-ports-head@freebsd.org Fri Jun 22 15:59:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B5A8101F9AB; Fri, 22 Jun 2018 15:59:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C72775550; Fri, 22 Jun 2018 15:59:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2D7F922C92; Fri, 22 Jun 2018 15:59:10 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MFxAnT033617; Fri, 22 Jun 2018 15:59:10 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MFx9Uw033615; Fri, 22 Jun 2018 15:59:09 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201806221559.w5MFx9Uw033615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 22 Jun 2018 15:59:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473047 - head/databases/tcl-lmdb X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/databases/tcl-lmdb X-SVN-Commit-Revision: 473047 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 15:59:10 -0000 Author: gahr Date: Fri Jun 22 15:59:09 2018 New Revision: 473047 URL: https://svnweb.freebsd.org/changeset/ports/473047 Log: databases/tcl-lmdb: update to 0.4.0 Release notes: https://github.com/ray2501/tcl-lmdb/releases/tag/0.4.0 Modified: head/databases/tcl-lmdb/Makefile head/databases/tcl-lmdb/distinfo Modified: head/databases/tcl-lmdb/Makefile ============================================================================== --- head/databases/tcl-lmdb/Makefile Fri Jun 22 15:45:54 2018 (r473046) +++ head/databases/tcl-lmdb/Makefile Fri Jun 22 15:59:09 2018 (r473047) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tcl-lmdb -PORTVERSION= 0.3.6 +PORTVERSION= 0.4.0 CATEGORIES= databases MAINTAINER= gahr@FreeBSD.org @@ -12,10 +12,11 @@ LICENSE= BSD2CLAUSE LIB_DEPENDS= liblmdb.so:databases/lmdb +USES= gmake tcl:tea + USE_GITHUB= yes GH_ACCOUNT= ray2501 -USES= gmake tcl:tea CONFIGURE_ARGS= --with-system-lmdb CFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include Modified: head/databases/tcl-lmdb/distinfo ============================================================================== --- head/databases/tcl-lmdb/distinfo Fri Jun 22 15:45:54 2018 (r473046) +++ head/databases/tcl-lmdb/distinfo Fri Jun 22 15:59:09 2018 (r473047) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511514539 -SHA256 (ray2501-tcl-lmdb-0.3.6_GH0.tar.gz) = 887f72e7c8bc569d74d3c9f151313eadeb19036b4bf8ebd68d7da45aa8a14da7 -SIZE (ray2501-tcl-lmdb-0.3.6_GH0.tar.gz) = 283058 +TIMESTAMP = 1529682898 +SHA256 (ray2501-tcl-lmdb-0.4.0_GH0.tar.gz) = d19a19376da6716a1ed159a918e631030491f8b6a4ef9e72a4221481b24b2e40 +SIZE (ray2501-tcl-lmdb-0.4.0_GH0.tar.gz) = 284462 From owner-svn-ports-head@freebsd.org Fri Jun 22 16:15:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 001A9101FFF0; Fri, 22 Jun 2018 16:15:27 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A679A75E9D; Fri, 22 Jun 2018 16:15:27 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8799B22FD6; Fri, 22 Jun 2018 16:15:27 +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 w5MGFRoj043819; Fri, 22 Jun 2018 16:15:27 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MGFRsw043817; Fri, 22 Jun 2018 16:15:27 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201806221615.w5MGFRsw043817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Fri, 22 Jun 2018 16:15:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473048 - head/devel/pear-PHP_CodeSniffer X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pear-PHP_CodeSniffer X-SVN-Commit-Revision: 473048 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 16:15:28 -0000 Author: joneum Date: Fri Jun 22 16:15:26 2018 New Revision: 473048 URL: https://svnweb.freebsd.org/changeset/ports/473048 Log: Update to 3.3.0 Changelog: https://pear.php.net/package/PHP_CodeSniffer/download/ Modified: head/devel/pear-PHP_CodeSniffer/Makefile head/devel/pear-PHP_CodeSniffer/distinfo Modified: head/devel/pear-PHP_CodeSniffer/Makefile ============================================================================== --- head/devel/pear-PHP_CodeSniffer/Makefile Fri Jun 22 15:59:09 2018 (r473047) +++ head/devel/pear-PHP_CodeSniffer/Makefile Fri Jun 22 16:15:26 2018 (r473048) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PHP_CodeSniffer -DISTVERSION= 3.2.3 +DISTVERSION= 3.3.0 CATEGORIES= devel www pear MAINTAINER= joneum@FreeBSD.org Modified: head/devel/pear-PHP_CodeSniffer/distinfo ============================================================================== --- head/devel/pear-PHP_CodeSniffer/distinfo Fri Jun 22 15:59:09 2018 (r473047) +++ head/devel/pear-PHP_CodeSniffer/distinfo Fri Jun 22 16:15:26 2018 (r473048) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519208242 -SHA256 (PEAR/PHP_CodeSniffer-3.2.3.tgz) = eea9fc447b424a01e892be28970f30ba49810528291f70e8f36935ed12caf138 -SIZE (PEAR/PHP_CodeSniffer-3.2.3.tgz) = 560524 +TIMESTAMP = 1529684034 +SHA256 (PEAR/PHP_CodeSniffer-3.3.0.tgz) = 2d3d57047003f8ae0e113f8e5812403c42c9f7123dac53032bb8047bc3eca2c1 +SIZE (PEAR/PHP_CodeSniffer-3.3.0.tgz) = 594162 From owner-svn-ports-head@freebsd.org Fri Jun 22 17:18:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5A9B10217A4; Fri, 22 Jun 2018 17:18:53 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E86577EB2; Fri, 22 Jun 2018 17:18:53 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6D004239A9; Fri, 22 Jun 2018 17:18:53 +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 w5MHIrTF075198; Fri, 22 Jun 2018 17:18:53 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MHIkrJ075159; Fri, 22 Jun 2018 17:18:46 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201806221718.w5MHIkrJ075159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 22 Jun 2018 17:18:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473049 - in head: deskutils/gnome-initial-setup deskutils/gnome-shell-extension-audio-output-switcher deskutils/gnome-shell-extension-coverflow deskutils/gnome-shell-extension-dashtodo... X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: in head: deskutils/gnome-initial-setup deskutils/gnome-shell-extension-audio-output-switcher deskutils/gnome-shell-extension-coverflow deskutils/gnome-shell-extension-dashtodock deskutils/gnome-shell-... X-SVN-Commit-Revision: 473049 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 17:18:54 -0000 Author: danilo Date: Fri Jun 22 17:18:45 2018 New Revision: 473049 URL: https://svnweb.freebsd.org/changeset/ports/473049 Log: - Update to 0.50.3 PR: 227981 Submitted by: danilo Approved by: maintainer timeout (gnome, 1 month) Modified: head/deskutils/gnome-initial-setup/Makefile head/deskutils/gnome-shell-extension-audio-output-switcher/Makefile head/deskutils/gnome-shell-extension-coverflow/Makefile head/deskutils/gnome-shell-extension-dashtodock/Makefile head/deskutils/gnome-shell-extension-filesmenu/Makefile head/deskutils/gnome-shell-extension-hidetopbar/Makefile head/deskutils/gnome-shell-extension-lockkeys/Makefile head/deskutils/gnome-shell-extension-overlay-icons/Makefile head/deskutils/gnome-shell-extension-trash/Makefile head/devel/anjuta/Makefile head/editors/gedit-plugins/Makefile head/emulators/vice/Makefile head/graphics/gnome-color-manager/Makefile head/net/remmina-plugin-exec/Makefile head/net/remmina-plugin-nx/Makefile head/net/remmina-plugin-rdp/Makefile head/net/remmina-plugin-secret/Makefile head/net/remmina-plugin-telepathy/Makefile head/net/remmina-plugin-vnc/Makefile head/net/remmina-plugin-xdmcp/Makefile head/net/remmina/Makefile head/net/vinagre/Makefile head/x11-themes/adapta-gtk-theme/Makefile head/x11-toolkits/rubygem-vte3/Makefile head/x11-toolkits/termit/Makefile head/x11-toolkits/vte3/Makefile head/x11-toolkits/vte3/distinfo head/x11-toolkits/vte3/pkg-plist head/x11/altyo/Makefile head/x11/gnome-shell/Makefile head/x11/gnome-terminal/Makefile head/x11/mate-terminal/Makefile head/x11/pantheon-terminal/Makefile head/x11/roxterm/Makefile head/x11/sakura/Makefile head/x11/tilda/Makefile head/x11/xfce4-terminal/Makefile Modified: head/deskutils/gnome-initial-setup/Makefile ============================================================================== --- head/deskutils/gnome-initial-setup/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-initial-setup/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= gnome-initial-setup PORTVERSION= 3.18.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-audio-output-switcher/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-audio-output-switcher/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-audio-output-switcher/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= gnome-shell-extension-audio-output-switcher PORTVERSION= 0.0.0.20140520 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-coverflow/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-coverflow/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-coverflow/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-coverflow PORTVERSION= 0.0.0.20151013 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-dashtodock/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-dashtodock/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-dashtodock/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-dashtodock PORTVERSION= 0.0.0.20151112 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-filesmenu/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-filesmenu/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-filesmenu/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-filesmenu PORTVERSION= 0.0.0.20151025 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-hidetopbar/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-hidetopbar/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-hidetopbar/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-hidetopbar PORTVERSION= 0.0.0.20151025 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-lockkeys/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-lockkeys/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-lockkeys/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-lockkeys PORTVERSION= 0.0.0.20151017 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-overlay-icons/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-overlay-icons/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-overlay-icons/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-overlay-icons PORTVERSION= 0.0.0.20151015 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/deskutils/gnome-shell-extension-trash/Makefile ============================================================================== --- head/deskutils/gnome-shell-extension-trash/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/deskutils/gnome-shell-extension-trash/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-shell-extension-trash PORTVERSION= 0.0.0.20150923 +PORTREVISION= 1 CATEGORIES= deskutils gnome DIST_SUBDIR= gnome3 Modified: head/devel/anjuta/Makefile ============================================================================== --- head/devel/anjuta/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/devel/anjuta/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= anjuta PORTVERSION= 3.18.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/editors/gedit-plugins/Makefile ============================================================================== --- head/editors/gedit-plugins/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/editors/gedit-plugins/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gedit-plugins PORTVERSION= 3.18.0 +PORTREVISION= 1 CATEGORIES= editors gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/emulators/vice/Makefile ============================================================================== --- head/emulators/vice/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/emulators/vice/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= vice PORTVERSION= 3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= emulators MASTER_SITES= http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/ \ ftp://ftp.zimmers.net/pub/cbm/crossplatform/emulators/VICE/ Modified: head/graphics/gnome-color-manager/Makefile ============================================================================== --- head/graphics/gnome-color-manager/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/graphics/gnome-color-manager/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= gnome-color-manager PORTVERSION= 3.18.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/net/remmina-plugin-exec/Makefile ============================================================================== --- head/net/remmina-plugin-exec/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-exec/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -1,6 +1,7 @@ # Created by: Ben Woods # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -exec COMMENT= Remmina plugin to execute a command Modified: head/net/remmina-plugin-nx/Makefile ============================================================================== --- head/net/remmina-plugin-nx/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-nx/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -1,6 +1,7 @@ # Created by: Koichiro IWAO # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -nx COMMENT= Remmina plugin for NX Modified: head/net/remmina-plugin-rdp/Makefile ============================================================================== --- head/net/remmina-plugin-rdp/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-rdp/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -2,7 +2,7 @@ # $FreeBSD$ PKGNAMESUFFIX= -rdp -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Remmina plugin for RDP protocol Modified: head/net/remmina-plugin-secret/Makefile ============================================================================== --- head/net/remmina-plugin-secret/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-secret/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -1,6 +1,7 @@ # Created by: Koichiro IWAO # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -secret COMMENT= Remmina plugin for GNOME Keyring Modified: head/net/remmina-plugin-telepathy/Makefile ============================================================================== --- head/net/remmina-plugin-telepathy/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-telepathy/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -1,6 +1,7 @@ # Created by: Alexander Logvinov # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -telepathy COMMENT= Remmina plugin for Telepathy support Modified: head/net/remmina-plugin-vnc/Makefile ============================================================================== --- head/net/remmina-plugin-vnc/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-vnc/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -1,6 +1,7 @@ # Created by: Alexander Logvinov # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -vnc COMMENT= Remmina plugin for VNC protocol Modified: head/net/remmina-plugin-xdmcp/Makefile ============================================================================== --- head/net/remmina-plugin-xdmcp/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina-plugin-xdmcp/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -1,6 +1,7 @@ # Created by: Alexander Logvinov # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -xdmcp COMMENT= Remmina plugin for XDMCP protocol Modified: head/net/remmina/Makefile ============================================================================== --- head/net/remmina/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/remmina/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -4,6 +4,7 @@ PORTNAME= remmina DISTVERSIONPREFIX=v DISTVERSION= 1.2.0-rcgit.27 +PORTREVISION= 1 CATEGORIES= net gnome MAINTAINER= woodsb02@FreeBSD.org Modified: head/net/vinagre/Makefile ============================================================================== --- head/net/vinagre/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/net/vinagre/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= vinagre PORTVERSION= 3.18.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/x11-themes/adapta-gtk-theme/Makefile ============================================================================== --- head/x11-themes/adapta-gtk-theme/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11-themes/adapta-gtk-theme/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= adapta-gtk-theme PORTVERSION= 3.91.2.152 +PORTREVISION= 1 CATEGORIES= x11-themes MAINTAINER= nivit@FreeBSD.org Modified: head/x11-toolkits/rubygem-vte3/Makefile ============================================================================== --- head/x11-toolkits/rubygem-vte3/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11-toolkits/rubygem-vte3/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= vte3 PORTVERSION= 3.2.5 +PORTREVISION= 1 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG Modified: head/x11-toolkits/termit/Makefile ============================================================================== --- head/x11-toolkits/termit/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11-toolkits/termit/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= termit PORTVERSION= 3.0 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits gnome MAINTAINER= bob@eager.cx Modified: head/x11-toolkits/vte3/Makefile ============================================================================== --- head/x11-toolkits/vte3/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11-toolkits/vte3/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= vte -PORTVERSION= 0.48.3 -PORTREVISION= 1 +PORTVERSION= 0.50.3 CATEGORIES= x11-toolkits gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 3 Modified: head/x11-toolkits/vte3/distinfo ============================================================================== --- head/x11-toolkits/vte3/distinfo Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11-toolkits/vte3/distinfo Fri Jun 22 17:18:45 2018 (r473049) @@ -1,3 +1,3 @@ -TIMESTAMP = 1494857484 -SHA256 (gnome3/vte-0.48.3.tar.xz) = a3a9fb182740b392a45cd3f46fa61a985f68bb6b1817b52daec22034c46158c3 -SIZE (gnome3/vte-0.48.3.tar.xz) = 1009364 +TIMESTAMP = 1525457317 +SHA256 (gnome3/vte-0.50.3.tar.xz) = 1b6fe02f4fccf74ca566903edbaa70b154965ee4342c633ed4e537f3524b966e +SIZE (gnome3/vte-0.50.3.tar.xz) = 1010076 Modified: head/x11-toolkits/vte3/pkg-plist ============================================================================== --- head/x11-toolkits/vte3/pkg-plist Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11-toolkits/vte3/pkg-plist Fri Jun 22 17:18:45 2018 (r473049) @@ -13,7 +13,7 @@ include/vte-%%VERSION%%/vte/vteversion.h lib/girepository-1.0/Vte-%%VERSION%%.typelib lib/libvte-%%VERSION%%.so lib/libvte-%%VERSION%%.so.0 -lib/libvte-%%VERSION%%.so.0.4800.3 +lib/libvte-%%VERSION%%.so.0.5000.3 libdata/pkgconfig/vte-%%VERSION%%.pc share/gir-1.0/Vte-%%VERSION%%.gir share/gtk-doc/html/vte-%%VERSION%%/VteRegex.html @@ -23,6 +23,7 @@ share/gtk-doc/html/vte-%%VERSION%%/api-index-0-40.html share/gtk-doc/html/vte-%%VERSION%%/api-index-0-44.html share/gtk-doc/html/vte-%%VERSION%%/api-index-0-46.html share/gtk-doc/html/vte-%%VERSION%%/api-index-0-48.html +share/gtk-doc/html/vte-%%VERSION%%/api-index-0-50.html share/gtk-doc/html/vte-%%VERSION%%/api-index-deprecated.html share/gtk-doc/html/vte-%%VERSION%%/api-index-full.html share/gtk-doc/html/vte-%%VERSION%%/ch01.html @@ -44,6 +45,7 @@ share/gtk-doc/html/vte-%%VERSION%%/up.png share/gtk-doc/html/vte-%%VERSION%%/vte-%%VERSION%%.devhelp2 share/gtk-doc/html/vte-%%VERSION%%/vte-Version-Information.html share/gtk-doc/html/vte-%%VERSION%%/vte-Vte-PTY.html +share/locale/af/LC_MESSAGES/vte-%%VERSION%%.mo share/locale/am/LC_MESSAGES/vte-%%VERSION%%.mo share/locale/an/LC_MESSAGES/vte-%%VERSION%%.mo share/locale/ang/LC_MESSAGES/vte-%%VERSION%%.mo Modified: head/x11/altyo/Makefile ============================================================================== --- head/x11/altyo/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/altyo/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -5,7 +5,7 @@ PORTNAME= altyo DISTVERSIONPREFIX= debian/ DISTVERSION= 0.4_rc19 DISTVERSIONSUFFIX= -${GH_ACCOUNT}1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= nivit@FreeBSD.org Modified: head/x11/gnome-shell/Makefile ============================================================================== --- head/x11/gnome-shell/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/gnome-shell/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= gnome-shell PORTVERSION= 3.18.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/x11/gnome-terminal/Makefile ============================================================================== --- head/x11/gnome-terminal/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/gnome-terminal/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= gnome-terminal PORTVERSION= 3.24.2 +PORTREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Modified: head/x11/mate-terminal/Makefile ============================================================================== --- head/x11/mate-terminal/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/mate-terminal/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= mate-terminal PORTVERSION= 1.20.0 +PORTREVISION= 1 CATEGORIES= x11 mate MASTER_SITES= MATE DIST_SUBDIR= mate Modified: head/x11/pantheon-terminal/Makefile ============================================================================== --- head/x11/pantheon-terminal/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/pantheon-terminal/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= pantheon-terminal PORTVERSION= 0.4.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= ports@FreeBSD.org Modified: head/x11/roxterm/Makefile ============================================================================== --- head/x11/roxterm/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/roxterm/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= roxterm PORTVERSION= 3.3.2 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= SF Modified: head/x11/sakura/Makefile ============================================================================== --- head/x11/sakura/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/sakura/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= sakura PORTVERSION= 3.5.0 +PORTREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= http://launchpadlibrarian.net/336915548/ Modified: head/x11/tilda/Makefile ============================================================================== --- head/x11/tilda/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/tilda/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,7 +3,7 @@ PORTNAME= tilda PORTVERSION= 1.3.3 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= rodrigo@FreeBSD.org Modified: head/x11/xfce4-terminal/Makefile ============================================================================== --- head/x11/xfce4-terminal/Makefile Fri Jun 22 16:15:26 2018 (r473048) +++ head/x11/xfce4-terminal/Makefile Fri Jun 22 17:18:45 2018 (r473049) @@ -3,6 +3,7 @@ PORTNAME= xfce4-terminal PORTVERSION= 0.8.7.4 +PORTREVISION= 1 CATEGORIES= x11 xfce MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R:R} DIST_SUBDIR= xfce4 From owner-svn-ports-head@freebsd.org Fri Jun 22 17:58:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A32210229AC; Fri, 22 Jun 2018 17:58:59 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1115799C0; Fri, 22 Jun 2018 17:58:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2CD524034; Fri, 22 Jun 2018 17:58:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MHww9g095438; Fri, 22 Jun 2018 17:58:58 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MHwwBc095437; Fri, 22 Jun 2018 17:58:58 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221758.w5MHwwBc095437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 17:58:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473050 - head/net/p5-NetAddr-MAC X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/net/p5-NetAddr-MAC X-SVN-Commit-Revision: 473050 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 17:58:59 -0000 Author: swills Date: Fri Jun 22 17:58:58 2018 New Revision: 473050 URL: https://svnweb.freebsd.org/changeset/ports/473050 Log: net/p5-NetAddr-MAC: Update to 0.96 PR: 229231 Submitted by: Kai Reviewed by: Geoffroy Desvernay (maintainer) Modified: head/net/p5-NetAddr-MAC/Makefile (contents, props changed) head/net/p5-NetAddr-MAC/distinfo (contents, props changed) Modified: head/net/p5-NetAddr-MAC/Makefile ============================================================================== --- head/net/p5-NetAddr-MAC/Makefile Fri Jun 22 17:18:45 2018 (r473049) +++ head/net/p5-NetAddr-MAC/Makefile Fri Jun 22 17:58:58 2018 (r473050) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= NetAddr-MAC -PORTVERSION= 0.93 +PORTVERSION= 0.96 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,7 +10,16 @@ PKGNAMEPREFIX= p5- MAINTAINER= dgeo@centrale-marseille.fr COMMENT= NetAddr::MAC - Handles hardware MAC Addresses (EUI-48 and EUI-64) +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE_ART10= ${WRKSRC}/LICENSE +LICENSE_FILE_GPLv1= ${WRKSRC}/LICENSE + +TEST_DEPENDS= p5-Test-Trap>=0:devel/p5-Test-Trap + USES= perl5 USE_PERL5= configure + +NO_ARCH= yes .include Modified: head/net/p5-NetAddr-MAC/distinfo ============================================================================== --- head/net/p5-NetAddr-MAC/distinfo Fri Jun 22 17:18:45 2018 (r473049) +++ head/net/p5-NetAddr-MAC/distinfo Fri Jun 22 17:58:58 2018 (r473050) @@ -1,2 +1,3 @@ -SHA256 (NetAddr-MAC-0.93.tar.gz) = b9e762c1ff4b579040497b8a0089cf998fc839d3897d3597318758e84564a2f9 -SIZE (NetAddr-MAC-0.93.tar.gz) = 22416 +TIMESTAMP = 1529671922 +SHA256 (NetAddr-MAC-0.96.tar.gz) = 027b86cba54977f9cb9d65d07eba0175c82cef7bd5ce1f82ad741d69d2acebc2 +SIZE (NetAddr-MAC-0.96.tar.gz) = 27538 From owner-svn-ports-head@freebsd.org Fri Jun 22 18:01:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46F671022C9F; Fri, 22 Jun 2018 18:01:10 +0000 (UTC) (envelope-from adridg@freebsd.org) Received: from smtp02.mail.online.nl (smtp02.mail.online.nl [194.134.25.72]) by mx1.freebsd.org (Postfix) with ESMTP id DC85F79E70; Fri, 22 Jun 2018 18:01:09 +0000 (UTC) (envelope-from adridg@freebsd.org) Received: from linux-x398.localnet (s55969a9e.adsl.online.nl [85.150.154.158]) by smtp02.mail.online.nl (Postfix) with ESMTP id 3586F1A003C; Fri, 22 Jun 2018 20:00:59 +0200 (CEST) From: Adriaan de Groot To: Danilo Egea Gondolfo Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r473049 - in head: deskutils/gnome-initial-setup deskutils/gnome-shell-extension-audio-output-switcher deskutils/gnome-shell-extension-coverflow deskutils/gnome-shell-extension-dashtodo... Date: Fri, 22 Jun 2018 14:00:46 -0400 Message-ID: <19129972.lolM6fZMxp@linux-x398> Organization: FreeBSD In-Reply-To: <201806221718.w5MHIkrJ075159@repo.freebsd.org> References: <201806221718.w5MHIkrJ075159@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1771158.AY6YQvpyhm"; micalg="pgp-sha256"; protocol="application/pgp-signature" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:01:10 -0000 --nextPart1771158.AY6YQvpyhm Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" On Friday, June 22, 2018 1:18:46 PM EDT Danilo Egea Gondolfo wrote: > Author: danilo > Date: Fri Jun 22 17:18:45 2018 > New Revision: 473049 > URL: https://svnweb.freebsd.org/changeset/ports/473049 > > Log: > - Update to 0.50.3 > > PR: 227981 > Submitted by: danilo > Approved by: maintainer timeout (gnome, 1 month) It would be kind to mention that is was x11-toolkits/vte3 that was updated, and the rest were PORTREVISION bumps to chase that, because that's not otherwise quickly visible from the commit message or mail. Thanks, [ade] --nextPart1771158.AY6YQvpyhm Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part. Content-Transfer-Encoding: 7Bit -----BEGIN PGP SIGNATURE----- iHUEABEIAB0WIQTVFBoRsP760fy+Jisy7lRaPghTTwUCWy05TgAKCRAy7lRaPghT Tw1hAQC11cLr311gebWJi+602Vqg4o7tu0N/X3YkWg+9t0gEswD6A/kosS7rK5RO shIPyPkmRGnUGOJ03hbq8xq3GMdx51g= =kBFT -----END PGP SIGNATURE----- --nextPart1771158.AY6YQvpyhm-- From owner-svn-ports-head@freebsd.org Fri Jun 22 18:02:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EB901022D21; Fri, 22 Jun 2018 18:02:00 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 346FE7A002; Fri, 22 Jun 2018 18:02:00 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 16D32241A0; Fri, 22 Jun 2018 18:02:00 +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 w5MI1xj3000551; Fri, 22 Jun 2018 18:01:59 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MI1xwn000550; Fri, 22 Jun 2018 18:01:59 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201806221801.w5MI1xwn000550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 22 Jun 2018 18:01:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473051 - head/x11/sakura X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/x11/sakura X-SVN-Commit-Revision: 473051 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:02:00 -0000 Author: danilo Date: Fri Jun 22 18:01:59 2018 New Revision: 473051 URL: https://svnweb.freebsd.org/changeset/ports/473051 Log: - Update to 3.6.0 Modified: head/x11/sakura/Makefile head/x11/sakura/distinfo Modified: head/x11/sakura/Makefile ============================================================================== --- head/x11/sakura/Makefile Fri Jun 22 17:58:58 2018 (r473050) +++ head/x11/sakura/Makefile Fri Jun 22 18:01:59 2018 (r473051) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= sakura -PORTVERSION= 3.5.0 -PORTREVISION= 1 +PORTVERSION= 3.6.0 CATEGORIES= x11 gnome -MASTER_SITES= http://launchpadlibrarian.net/336915548/ +MASTER_SITES= http://launchpadlibrarian.net/368320954/ MAINTAINER= danilo@FreeBSD.org COMMENT= Terminal emulator based on GTK and VTE Modified: head/x11/sakura/distinfo ============================================================================== --- head/x11/sakura/distinfo Fri Jun 22 17:58:58 2018 (r473050) +++ head/x11/sakura/distinfo Fri Jun 22 18:01:59 2018 (r473051) @@ -1,3 +1,3 @@ -TIMESTAMP = 1514818850 -SHA256 (sakura-3.5.0.tar.bz2) = eb30ede41083fda2b07c6a3b7393150f48867e81d28ef70b15824740cab00c3a -SIZE (sakura-3.5.0.tar.bz2) = 55432 +TIMESTAMP = 1529688161 +SHA256 (sakura-3.6.0.tar.bz2) = a1161f3cedde20a7e1bc5981b3e6ab3b91d2cd3a5ffe35c792a7fa402a1e86e0 +SIZE (sakura-3.6.0.tar.bz2) = 56044 From owner-svn-ports-head@freebsd.org Fri Jun 22 18:09:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C23501022F1E; Fri, 22 Jun 2018 18:09:02 +0000 (UTC) (envelope-from danilogondolfo@gmail.com) Received: from mail-vk0-x22e.google.com (mail-vk0-x22e.google.com [IPv6:2607:f8b0:400c:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 518327A314; Fri, 22 Jun 2018 18:09:02 +0000 (UTC) (envelope-from danilogondolfo@gmail.com) Received: by mail-vk0-x22e.google.com with SMTP id o138-v6so4419111vkd.3; Fri, 22 Jun 2018 11:09:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=XcPge0AiJYbG34ha92+vAfCaNnzAjkNxu9+/FweCbwE=; b=ACjE00/Bxe8mhcbrMf6aixWMGvTT9TTvbpciElRM3rlwsK4bPzB9BDrXxVDV6iAw3q PH6i6/40QttNbHDvheVDBiA7n5pRxy+UQmUkdQtWt68kWqOKIxeVvfGV/gbzMahLvni+ cRe+VMKQMAIjFoN2cDRL4STkyPVRs0a3Tn/Z3BwBA3drXpaa+jU4j1A5iDntJr55tYLp YQ/MzTP8l/ktvCddx+lSrib+CqOmOJIXAIi5NZHXllc4K4r8oTlIwv58M89ZU2zEgwCY loj630JBtcTPiKNLKoAN172gNbRHk7Z9RvTebFxfaEmUpyC/uTObZEYqCE5F1/68pW+y qOCA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=XcPge0AiJYbG34ha92+vAfCaNnzAjkNxu9+/FweCbwE=; b=l8Vt0vVQXA1VtZF43Py6Z2J+vAs9N0KaGLS/C+NVWl8wuUxcFgn+qhzmVphGWf+qtE smy7jh3wy9VPYmN0iu1JWcUCADBG7wMFddEYmnW15+APpAo3fqqkdenu9j87s6/QxMiz IFX+1pDxsIrNWx8cft2e2g//t+WbOwTZ3Nwag0UZMEvHpmfryFgzXPQ7QTRojQmMnZuQ qiAFo/2vkIm2lqGND58C7NwDGfgJA7kmzbtYmd2pKwJ5iiNQZQ2c1YhakTO6hxEQu+DS dsxW0HUaENkBIzXMN6d9T4tu1X8nonN7fxLljqdYgf0VO22TTPw+vhf6kz8oeAKUcwnd KpBQ== X-Gm-Message-State: APt69E2qyWO1u8yzjPQXOb0XGyluuqImjryUuRCdUDzYVHRf9JvU/gez 8mcNI0PgXrS46sMlowtndcZMDgAAw9eia6ykUsI= X-Google-Smtp-Source: ADUXVKK06xJkm0phX/6ouZ5TIhiWUL/LaCsShuY9VPYh4ICWr5xZGpxby0B9kg+1DIXetzbARLc6xL4pUfKRnQm1BRI= X-Received: by 2002:a1f:e0c3:: with SMTP id x186-v6mr1614653vkg.105.1529690941532; Fri, 22 Jun 2018 11:09:01 -0700 (PDT) MIME-Version: 1.0 Sender: danilogondolfo@gmail.com Received: by 2002:a67:6143:0:0:0:0:0 with HTTP; Fri, 22 Jun 2018 11:08:41 -0700 (PDT) In-Reply-To: <19129972.lolM6fZMxp@linux-x398> References: <201806221718.w5MHIkrJ075159@repo.freebsd.org> <19129972.lolM6fZMxp@linux-x398> From: =?UTF-8?Q?Danilo_Eg=C3=AAa_Gondolfo?= Date: Fri, 22 Jun 2018 15:08:41 -0300 X-Google-Sender-Auth: fCsNZtKgJRKZDo_3rj9avGFFPHc Message-ID: Subject: Re: svn commit: r473049 - in head: deskutils/gnome-initial-setup deskutils/gnome-shell-extension-audio-output-switcher deskutils/gnome-shell-extension-coverflow deskutils/gnome-shell-extension-dashtodo... To: Adriaan de Groot Cc: ports-committers , svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:09:03 -0000 Hi, yeah, sorry about that. I usually do this, I just forgot. Danilo. On Fri, Jun 22, 2018 at 3:00 PM, Adriaan de Groot wrote: > On Friday, June 22, 2018 1:18:46 PM EDT Danilo Egea Gondolfo wrote: > > Author: danilo > > Date: Fri Jun 22 17:18:45 2018 > > New Revision: 473049 > > URL: https://svnweb.freebsd.org/changeset/ports/473049 > > > > Log: > > - Update to 0.50.3 > > > > PR: 227981 > > Submitted by: danilo > > Approved by: maintainer timeout (gnome, 1 month) > > It would be kind to mention that is was x11-toolkits/vte3 that was > updated, > and the rest were PORTREVISION bumps to chase that, because that's not > otherwise quickly visible from the commit message or mail. > > Thanks, > [ade] From owner-svn-ports-head@freebsd.org Fri Jun 22 18:13:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C568F10233A7; Fri, 22 Jun 2018 18:13:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 735027A879; Fri, 22 Jun 2018 18:13:15 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 55C7C2435B; Fri, 22 Jun 2018 18:13:15 +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 w5MIDF1H006051; Fri, 22 Jun 2018 18:13:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MIDFJC006050; Fri, 22 Jun 2018 18:13:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221813.w5MIDFJC006050@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 18:13:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473052 - head/games/meandmyshadow X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/meandmyshadow X-SVN-Commit-Revision: 473052 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:13:16 -0000 Author: amdmi3 Date: Fri Jun 22 18:13:14 2018 New Revision: 473052 URL: https://svnweb.freebsd.org/changeset/ports/473052 Log: - Add missing depends - Fix build with clang 6 Modified: head/games/meandmyshadow/Makefile Modified: head/games/meandmyshadow/Makefile ============================================================================== --- head/games/meandmyshadow/Makefile Fri Jun 22 18:01:59 2018 (r473051) +++ head/games/meandmyshadow/Makefile Fri Jun 22 18:13:14 2018 (r473052) @@ -16,10 +16,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libcurl.so:ftp/curl -USES= cmake libarchive +USES= cmake libarchive ssl USE_SDL= sdl ttf image mixer image gfx +USE_GL= gl glu WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +CXXFLAGS+= -Wno-c++11-narrowing PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png From owner-svn-ports-head@freebsd.org Fri Jun 22 18:23:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6405A10238E8; Fri, 22 Jun 2018 18:23:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 105F17B00B; Fri, 22 Jun 2018 18:23:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E3EDC24508; Fri, 22 Jun 2018 18:23:12 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MINC7T010996; Fri, 22 Jun 2018 18:23:12 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MINCsQ010995; Fri, 22 Jun 2018 18:23:12 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221823.w5MINCsQ010995@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 18:23:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473053 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 473053 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:23:13 -0000 Author: swills Date: Fri Jun 22 18:23:12 2018 New Revision: 473053 URL: https://svnweb.freebsd.org/changeset/ports/473053 Log: Adjust repository path PR: 227181 Submitted by: Olivier Duchateau Modified: head/Mk/Uses/lxqt.mk Modified: head/Mk/Uses/lxqt.mk ============================================================================== --- head/Mk/Uses/lxqt.mk Fri Jun 22 18:13:14 2018 (r473052) +++ head/Mk/Uses/lxqt.mk Fri Jun 22 18:23:12 2018 (r473053) @@ -26,7 +26,7 @@ IGNORE= Incorrect 'USES+=lxqt:${lxqt_ARGS} takes no ar _LXQT_PROJECT= ${DISTNAME:S/-${DISTVERSION}//:tl} MASTER_SITE_LXQT+= \ - https://github.com/lxde/%SUBDIR%/releases/download/${PORTVERSION}/ \ + https://github.com/lxqt/%SUBDIR%/releases/download/${PORTVERSION}/ \ https://downloads.lxqt.org/downloads/%SUBDIR%/${PORTVERSION}/ MASTER_SITE_LXQT_SUBDIR= ${_LXQT_PROJECT} From owner-svn-ports-head@freebsd.org Fri Jun 22 18:27:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62F091023B98; Fri, 22 Jun 2018 18:27:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 178BD7B6AF; Fri, 22 Jun 2018 18:27:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ECC7A2451D; Fri, 22 Jun 2018 18:27:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MIRsbX011279; Fri, 22 Jun 2018 18:27:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MIRsef011278; Fri, 22 Jun 2018 18:27:54 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221827.w5MIRsef011278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 18:27:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473054 - head/devel/elfutils X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/elfutils X-SVN-Commit-Revision: 473054 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:27:55 -0000 Author: amdmi3 Date: Fri Jun 22 18:27:54 2018 New Revision: 473054 URL: https://svnweb.freebsd.org/changeset/ports/473054 Log: - Fix LICENSE - Fix build with disabled NLS Approved by: portmgr blanket Modified: head/devel/elfutils/Makefile Modified: head/devel/elfutils/Makefile ============================================================================== --- head/devel/elfutils/Makefile Fri Jun 22 18:23:12 2018 (r473053) +++ head/devel/elfutils/Makefile Fri Jun 22 18:27:54 2018 (r473054) @@ -10,10 +10,10 @@ MASTER_SITES= https://sourceware.org/elfutils/ftp/${PO MAINTAINER= cem@FreeBSD.org COMMENT= Library for manipulating ELF files and partial implementation of binutils -LICENSE= LGPL3 GPLv2 GPLv3 +LICENSE= LGPL3 GPLv2+ GPLv3+ LICENSE_COMB= multi -LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING -LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING-GPLV2 +LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING +LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING-GPLV2 LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING-LGPLV3 BROKEN_aarch64= fails to build: fatal error: linux/uio.h: No such file or directory @@ -29,6 +29,7 @@ OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_USES= gettext +NLS_USES_OFF= gettext # used anyway NLS_CONFIGURE_ENABLE= nls USES= autoreconf gmake libtool tar:bzip2 From owner-svn-ports-head@freebsd.org Fri Jun 22 18:31:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 989DA1023EAF; Fri, 22 Jun 2018 18:31:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D3757B997; Fri, 22 Jun 2018 18:31:59 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E57F24698; Fri, 22 Jun 2018 18:31:59 +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 w5MIVx2U015366; Fri, 22 Jun 2018 18:31:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MIVx2p015365; Fri, 22 Jun 2018 18:31:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221831.w5MIVx2p015365@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 18:31:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473055 - head/games/fishsupper X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/fishsupper X-SVN-Commit-Revision: 473055 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:31:59 -0000 Author: amdmi3 Date: Fri Jun 22 18:31:58 2018 New Revision: 473055 URL: https://svnweb.freebsd.org/changeset/ports/473055 Log: - Fix build with clang 6 - Switch to options helpers Modified: head/games/fishsupper/Makefile Modified: head/games/fishsupper/Makefile ============================================================================== --- head/games/fishsupper/Makefile Fri Jun 22 18:27:54 2018 (r473054) +++ head/games/fishsupper/Makefile Fri Jun 22 18:31:58 2018 (r473055) @@ -22,6 +22,8 @@ USES= gmake localbase:ldflags USE_SDL= sdl image mixer USE_GL= gl +CXXFLAGS+= -Wno-static-float-init -Wno-c++11-narrowing + PLIST_FILES= bin/${PORTNAME} PORTDOCS= * PORTDATA= * @@ -38,8 +40,8 @@ OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's|std::tr1::shared_ptr|std::shared_ptr|g' ${WRKSRC}/src/*.h ${WRKSRC}/src/*.cpp -post-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR} +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@freebsd.org Fri Jun 22 18:47:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D155B1024409; Fri, 22 Jun 2018 18:47:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7D8117C3C1; Fri, 22 Jun 2018 18:47:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E1CF248B4; Fri, 22 Jun 2018 18:47:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MIlb2P021954; Fri, 22 Jun 2018 18:47:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MIlbl9021953; Fri, 22 Jun 2018 18:47:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221847.w5MIlbl9021953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 18:47:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473056 - head/games/hedgewars X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/hedgewars X-SVN-Commit-Revision: 473056 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:47:38 -0000 Author: amdmi3 Date: Fri Jun 22 18:47:36 2018 New Revision: 473056 URL: https://svnweb.freebsd.org/changeset/ports/473056 Log: - Attempt to fix build with lld PR: 228639 Submitted by: emaste Modified: head/games/hedgewars/Makefile Modified: head/games/hedgewars/Makefile ============================================================================== --- head/games/hedgewars/Makefile Fri Jun 22 18:31:58 2018 (r473055) +++ head/games/hedgewars/Makefile Fri Jun 22 18:47:36 2018 (r473056) @@ -23,6 +23,7 @@ USE_FPC= opengl libpng rtl-objpas USE_QT5= core gui widgets network \ qmake_build buildtools_build \ linguisttools_build +LLD_UNSAFE= yes USE_LDCONFIG= yes PLIST_FILES= bin/${PORTNAME} bin/hwengine \ From owner-svn-ports-head@freebsd.org Fri Jun 22 18:50:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 151ED10244FB; Fri, 22 Jun 2018 18:50:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B26327C568; Fri, 22 Jun 2018 18:50:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9221F248BA; Fri, 22 Jun 2018 18:50:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MIoMXk022215; Fri, 22 Jun 2018 18:50:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MIoMoO022213; Fri, 22 Jun 2018 18:50:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221850.w5MIoMoO022213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 18:50:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473057 - head/games/crrcsim/files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/crrcsim/files X-SVN-Commit-Revision: 473057 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:50:23 -0000 Author: amdmi3 Date: Fri Jun 22 18:50:21 2018 New Revision: 473057 URL: https://svnweb.freebsd.org/changeset/ports/473057 Log: - Fix build with clang 6 Added: head/games/crrcsim/files/patch-src_mod__fdm_config.h (contents, props changed) head/games/crrcsim/files/patch-src_mod__video_crrc_animation.cpp (contents, props changed) Added: head/games/crrcsim/files/patch-src_mod__fdm_config.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/crrcsim/files/patch-src_mod__fdm_config.h Fri Jun 22 18:50:21 2018 (r473057) @@ -0,0 +1,11 @@ +--- src/mod_fdm_config.h.orig 2016-04-10 16:57:14 UTC ++++ src/mod_fdm_config.h +@@ -35,7 +35,7 @@ + #define MOD_FDM_USE_HELI01 1 + #define MOD_FDM_USE_MCOPTER01 1 + +-#define MOD_FDM_INFOSTR "CRRCSim "PACKAGE_VERSION ++#define MOD_FDM_INFOSTR "CRRCSim " PACKAGE_VERSION + + + #endif // MOD_FDM_CONFIG_H Added: head/games/crrcsim/files/patch-src_mod__video_crrc_animation.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/crrcsim/files/patch-src_mod__video_crrc_animation.cpp Fri Jun 22 18:50:21 2018 (r473057) @@ -0,0 +1,11 @@ +--- src/mod_video/crrc_animation.cpp.orig 2016-04-10 16:57:14 UTC ++++ src/mod_video/crrc_animation.cpp +@@ -84,7 +84,7 @@ void createAnimation(SimpleXMLTransfer * + else + { + std::cerr << "createAnimation: unknown animation type \'" +- << type << "\'" << std::cerr; ++ << type << "\'" << std::endl; + } + + if (anim != NULL) From owner-svn-ports-head@freebsd.org Fri Jun 22 18:55:15 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16BA810246F7; Fri, 22 Jun 2018 18:55:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8B887C954; Fri, 22 Jun 2018 18:55:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9AFDB24A69; Fri, 22 Jun 2018 18:55:14 +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 w5MItEEj026933; Fri, 22 Jun 2018 18:55:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MItE8Y026932; Fri, 22 Jun 2018 18:55:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806221855.w5MItE8Y026932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 18:55:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473058 - head/games/brikx X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/brikx X-SVN-Commit-Revision: 473058 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 18:55:15 -0000 Author: amdmi3 Date: Fri Jun 22 18:55:14 2018 New Revision: 473058 URL: https://svnweb.freebsd.org/changeset/ports/473058 Log: - Fix build with clang 6 Modified: head/games/brikx/Makefile Modified: head/games/brikx/Makefile ============================================================================== --- head/games/brikx/Makefile Fri Jun 22 18:50:21 2018 (r473057) +++ head/games/brikx/Makefile Fri Jun 22 18:55:14 2018 (r473058) @@ -18,6 +18,8 @@ USE_SDL= sdl mixer image ttf WRKSRC= ${WRKDIR}/${PORTNAME} +CXXFLAGS+= -Wno-reserved-user-defined-literal + PLIST_FILES= bin/${PORTNAME} PORTDATA= * From owner-svn-ports-head@freebsd.org Fri Jun 22 19:15:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5FD31024D14; Fri, 22 Jun 2018 19:15:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8129B7D37D; Fri, 22 Jun 2018 19:15:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4643F24DDF; Fri, 22 Jun 2018 19:15:55 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MJFtoc037311; Fri, 22 Jun 2018 19:15:55 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MJFsSh037308; Fri, 22 Jun 2018 19:15:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221915.w5MJFsSh037308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 19:15:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473059 - head/devel/liblxqt X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/liblxqt X-SVN-Commit-Revision: 473059 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 19:15:56 -0000 Author: swills Date: Fri Jun 22 19:15:54 2018 New Revision: 473059 URL: https://svnweb.freebsd.org/changeset/ports/473059 Log: devel/liblxqt: update to 0.13.0 PR: 228506 Submitted by: Jesper Schmitz Mouridsen (maintainer) Modified: head/devel/liblxqt/Makefile (contents, props changed) head/devel/liblxqt/distinfo (contents, props changed) head/devel/liblxqt/pkg-plist (contents, props changed) Modified: head/devel/liblxqt/Makefile ============================================================================== --- head/devel/liblxqt/Makefile Fri Jun 22 18:55:14 2018 (r473058) +++ head/devel/liblxqt/Makefile Fri Jun 22 19:15:54 2018 (r473059) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= liblxqt -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= devel MASTER_SITES= LXQT @@ -10,6 +10,7 @@ MAINTAINER= jesper@schmitz.computer COMMENT= Shared library for LXQt applications LICENSE= LGPL21+ +LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt@qt5 BROKEN_aarch64= fails to compile: lxqtplugininfo.cpp:107:14: expected expression Modified: head/devel/liblxqt/distinfo ============================================================================== --- head/devel/liblxqt/distinfo Fri Jun 22 18:55:14 2018 (r473058) +++ head/devel/liblxqt/distinfo Fri Jun 22 19:15:54 2018 (r473059) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508753771 -SHA256 (lxqt/liblxqt-0.12.0.tar.xz) = 44bba48b073ded5b0ab3de2ea3575a704bb22d23ce5cc5743f76579c1f084f33 -SIZE (lxqt/liblxqt-0.12.0.tar.xz) = 51192 +TIMESTAMP = 1527339804 +SHA256 (lxqt/liblxqt-0.13.0.tar.xz) = b41db9dd6fcc4e3232402ee0304d2b977ec82d696c464667dddba555b0056a39 +SIZE (lxqt/liblxqt-0.13.0.tar.xz) = 56896 Modified: head/devel/liblxqt/pkg-plist ============================================================================== --- head/devel/liblxqt/pkg-plist Fri Jun 22 18:55:14 2018 (r473058) +++ head/devel/liblxqt/pkg-plist Fri Jun 22 19:15:54 2018 (r473059) @@ -1,6 +1,10 @@ +bin/lxqt-backlight_backend %%LXQT_INCLUDEDIR%%/LXQt/Application %%LXQT_INCLUDEDIR%%/LXQt/AutostartEntry +%%LXQT_INCLUDEDIR%%/LXQt/Backlight %%LXQT_INCLUDEDIR%%/LXQt/ConfigDialog +%%LXQT_INCLUDEDIR%%/LXQt/ConfigDialogCmdLineOptions +%%LXQT_INCLUDEDIR%%/LXQt/Globals %%LXQT_INCLUDEDIR%%/LXQt/GridLayout %%LXQT_INCLUDEDIR%%/LXQt/HtmlDelegate %%LXQT_INCLUDEDIR%%/LXQt/Notification @@ -16,7 +20,9 @@ %%LXQT_INCLUDEDIR%%/LXQt/Translator %%LXQT_INCLUDEDIR%%/LXQt/lxqtapplication.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtautostartentry.h +%%LXQT_INCLUDEDIR%%/LXQt/lxqtbacklight.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtconfigdialog.h +%%LXQT_INCLUDEDIR%%/LXQt/lxqtconfigdialogcmdlineoptions.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtglobals.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtgridlayout.h %%LXQT_INCLUDEDIR%%/LXQt/lxqthtmldelegate.h @@ -39,3 +45,5 @@ share/cmake/lxqt/lxqt-config-version.cmake share/cmake/lxqt/lxqt-config.cmake share/cmake/lxqt/lxqt-targets-%%CMAKE_BUILD_TYPE%%.cmake share/cmake/lxqt/lxqt-targets.cmake +%%LXQT_SHAREDIR%%/power.conf +share/polkit-1/actions/org.lxqt.backlight.pkexec.policy From owner-svn-ports-head@freebsd.org Fri Jun 22 19:41:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1ABF11025715; Fri, 22 Jun 2018 19:41:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BACE97DFF7; Fri, 22 Jun 2018 19:41:57 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9BC7D25164; Fri, 22 Jun 2018 19:41:57 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MJfv7i047670; Fri, 22 Jun 2018 19:41:57 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MJfvRN047667; Fri, 22 Jun 2018 19:41:57 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221941.w5MJfvRN047667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 19:41:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473060 - in head/x11-toolkits/qtermwidget: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/x11-toolkits/qtermwidget: . files X-SVN-Commit-Revision: 473060 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 19:41:58 -0000 Author: swills Date: Fri Jun 22 19:41:56 2018 New Revision: 473060 URL: https://svnweb.freebsd.org/changeset/ports/473060 Log: x11-toolkits/qtermwidget: Update to 0.9.0 PR: 228507 Submitted by: Jesper Schmitz Mouridsen (maintainer) Deleted: head/x11-toolkits/qtermwidget/files/ Modified: head/x11-toolkits/qtermwidget/Makefile (contents, props changed) head/x11-toolkits/qtermwidget/distinfo (contents, props changed) head/x11-toolkits/qtermwidget/pkg-plist (contents, props changed) Modified: head/x11-toolkits/qtermwidget/Makefile ============================================================================== --- head/x11-toolkits/qtermwidget/Makefile Fri Jun 22 19:15:54 2018 (r473059) +++ head/x11-toolkits/qtermwidget/Makefile Fri Jun 22 19:41:56 2018 (r473060) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qtermwidget -PORTVERSION= 0.8.0 +PORTVERSION= 0.9.0 CATEGORIES= x11-toolkits MASTER_SITES= LXQT @@ -20,5 +20,5 @@ USES= cmake:outsource compiler:c++11-lang gettext-runt USE_LDCONFIG= yes USE_QT5= buildtools_build core gui qmake_build linguisttools widgets USE_LXQT= buildtools - +CMAKE_ARGS+= -DQTERMWIDGET_USE_UTEMPTER=ON .include Modified: head/x11-toolkits/qtermwidget/distinfo ============================================================================== --- head/x11-toolkits/qtermwidget/distinfo Fri Jun 22 19:15:54 2018 (r473059) +++ head/x11-toolkits/qtermwidget/distinfo Fri Jun 22 19:41:56 2018 (r473060) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508769806 -SHA256 (lxqt/qtermwidget-0.8.0.tar.xz) = ef01c2a2bedff008578b65efd47b3fff8e542dfcdf9779b547533c9c75825169 -SIZE (lxqt/qtermwidget-0.8.0.tar.xz) = 160904 +TIMESTAMP = 1527343100 +SHA256 (lxqt/qtermwidget-0.9.0.tar.xz) = e39ce62fec18112634630654f41f08f4be4638bcf0bebbc89d71c9aefdfa38b0 +SIZE (lxqt/qtermwidget-0.9.0.tar.xz) = 166976 Modified: head/x11-toolkits/qtermwidget/pkg-plist ============================================================================== --- head/x11-toolkits/qtermwidget/pkg-plist Fri Jun 22 19:15:54 2018 (r473059) +++ head/x11-toolkits/qtermwidget/pkg-plist Fri Jun 22 19:41:56 2018 (r473060) @@ -2,14 +2,14 @@ include/qtermwidget5/Emulation.h include/qtermwidget5/Filter.h include/qtermwidget5/qtermwidget.h include/qtermwidget5/qtermwidget_export.h +lib/cmake/qtermwidget5/qtermwidget5-config-version.cmake +lib/cmake/qtermwidget5/qtermwidget5-config.cmake +lib/cmake/qtermwidget5/qtermwidget5-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/qtermwidget5/qtermwidget5-targets.cmake lib/libqtermwidget5.so lib/libqtermwidget5.so.0 lib/libqtermwidget5.so.%%VERSION%% libdata/pkgconfig/qtermwidget5.pc -share/cmake/qtermwidget5/qtermwidget5-config-version.cmake -share/cmake/qtermwidget5/qtermwidget5-config.cmake -share/cmake/qtermwidget5/qtermwidget5-targets-%%CMAKE_BUILD_TYPE%%.cmake -share/cmake/qtermwidget5/qtermwidget5-targets.cmake %%DATADIR%%5/color-schemes/BlackOnLightYellow.schema %%DATADIR%%5/color-schemes/BlackOnRandomLight.colorscheme %%DATADIR%%5/color-schemes/BlackOnWhite.schema @@ -19,6 +19,8 @@ share/cmake/qtermwidget5/qtermwidget5-targets.cmake %%DATADIR%%5/color-schemes/Linux.colorscheme %%DATADIR%%5/color-schemes/Solarized.colorscheme %%DATADIR%%5/color-schemes/SolarizedLight.colorscheme +%%DATADIR%%5/color-schemes/Tango.colorscheme +%%DATADIR%%5/color-schemes/Ubuntu.colorscheme %%DATADIR%%5/color-schemes/WhiteOnBlack.schema %%DATADIR%%5/color-schemes/historic/BlackOnLightColor.schema %%DATADIR%%5/color-schemes/historic/DarkPicture.schema From owner-svn-ports-head@freebsd.org Fri Jun 22 19:51:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9049910257B5; Fri, 22 Jun 2018 19:51:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 313B97E403; Fri, 22 Jun 2018 19:51:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 140AA252E1; Fri, 22 Jun 2018 19:51:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MJpHbE053847; Fri, 22 Jun 2018 19:51:17 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MJpH2s053846; Fri, 22 Jun 2018 19:51:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806221951.w5MJpH2s053846@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 19:51:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473061 - head/x11/qterminal X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11/qterminal X-SVN-Commit-Revision: 473061 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 19:51:18 -0000 Author: swills Date: Fri Jun 22 19:51:17 2018 New Revision: 473061 URL: https://svnweb.freebsd.org/changeset/ports/473061 Log: x11/qterminal: Update to 0.9.0 PR: 228508 Submitted by: Jesper Schmitz Mouridsen (maintainer) Modified: head/x11/qterminal/Makefile (contents, props changed) head/x11/qterminal/distinfo (contents, props changed) Modified: head/x11/qterminal/Makefile ============================================================================== --- head/x11/qterminal/Makefile Fri Jun 22 19:41:56 2018 (r473060) +++ head/x11/qterminal/Makefile Fri Jun 22 19:51:17 2018 (r473061) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qterminal -PORTVERSION= 0.8.0 +PORTVERSION= 0.9.0 CATEGORIES= x11 MASTER_SITES= LXQT Modified: head/x11/qterminal/distinfo ============================================================================== --- head/x11/qterminal/distinfo Fri Jun 22 19:41:56 2018 (r473060) +++ head/x11/qterminal/distinfo Fri Jun 22 19:51:17 2018 (r473061) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508780118 -SHA256 (lxqt/qterminal-0.8.0.tar.xz) = a741a8688e696537c3bb2dfaa632b9dcc11f3672b9c6a031354b465de5fd987a -SIZE (lxqt/qterminal-0.8.0.tar.xz) = 104780 +TIMESTAMP = 1527343085 +SHA256 (lxqt/qterminal-0.9.0.tar.xz) = 4157980356af4e05cfe5fa3badecba6e25715a35e2b7f9a830da87bcca519fee +SIZE (lxqt/qterminal-0.9.0.tar.xz) = 107072 From owner-svn-ports-head@freebsd.org Fri Jun 22 19:59:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EDE41025962; Fri, 22 Jun 2018 19:59:47 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 077F27E764; Fri, 22 Jun 2018 19:59:47 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D1A5025434; Fri, 22 Jun 2018 19:59:46 +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 w5MJxkaX058733; Fri, 22 Jun 2018 19:59:46 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MJxfwd058706; Fri, 22 Jun 2018 19:59:41 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806221959.w5MJxfwd058706@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 22 Jun 2018 19:59:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473062 - in head: . irc/hexchat multimedia/libquvi09 net net/glib-networking net/libproxy net/libproxy-gnome net/libproxy-gnome2 net/libproxy-gnome3 net/libproxy-kde net/libproxy-mozjs... X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: . irc/hexchat multimedia/libquvi09 net net/glib-networking net/libproxy net/libproxy-gnome net/libproxy-gnome2 net/libproxy-gnome3 net/libproxy-kde net/libproxy-mozjs net/libproxy-perl net/li... X-SVN-Commit-Revision: 473062 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 19:59:47 -0000 Author: tcberner Date: Fri Jun 22 19:59:41 2018 New Revision: 473062 URL: https://svnweb.freebsd.org/changeset/ports/473062 Log: Update net/libproxy to 0.4.15 * this release switched the build system to cmake * move libproxy-gnome to libproxy-gnome2 for consistency * add new slave libproxy-webkit3 * try to simplify the whole thing * bump revisions in the dependencies Reviewed by: gnome (kwm), mat Differential Revision: https://reviews.freebsd.org/D15655 Added: head/net/libproxy-gnome2/ - copied from r473061, head/net/libproxy-gnome/ head/net/libproxy-webkit3/ - copied from r471366, head/net/libproxy-webkit/ head/net/libproxy/files/patch-CMakeLists.txt (contents, props changed) head/net/libproxy/files/patch-bindings_CMakeLists.txt (contents, props changed) head/net/libproxy/files/patch-bindings_perl_t_CMakeLists.txt (contents, props changed) head/net/libproxy/files/patch-libproxy_cmake_pxmodule.cmk (contents, props changed) head/net/libproxy/files/patch-utils_CMakeLists.txt (contents, props changed) Deleted: head/net/libproxy-gnome/ head/net/libproxy/files/patch-libproxy_cmake_modules.cmk head/net/libproxy/files/patch-libproxy_cmake_modules_config__kde.cmk Modified: head/MOVED head/irc/hexchat/Makefile head/multimedia/libquvi09/Makefile head/net/Makefile head/net/glib-networking/Makefile head/net/libproxy-gnome2/Makefile head/net/libproxy-gnome3/Makefile head/net/libproxy-kde/Makefile head/net/libproxy-mozjs/Makefile head/net/libproxy-perl/Makefile head/net/libproxy-python/Makefile head/net/libproxy-webkit/Makefile head/net/libproxy-webkit3/Makefile head/net/libproxy/Makefile head/net/libproxy/distinfo head/net/libproxy/files/patch-bindings_perl_src_CMakeLists.txt head/net/libproxy/files/patch-libproxy_CMakeLists.txt head/net/libproxy/files/patch-libproxy_test_get-pac-test.cpp head/sysutils/signon-ui/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jun 22 19:51:17 2018 (r473061) +++ head/MOVED Fri Jun 22 19:59:41 2018 (r473062) @@ -10288,3 +10288,4 @@ multimedia/qt5-phonon4|multimedia/phonon@qt5|2018-06-2 multimedia/qt5-phonon4-designerplugin|multimedia/phonon-designerplugin@qt5|2018-06-21|Moved to a flavored version multimedia/qt5-phonon4-gstreamer|multimedia/phonon-gstreamer@qt5|2018-06-21|Moved to a flavored version multimedia/qt5-phonon4-vlc|multimedia/phonon-vlc@qt5|2018-06-21|Moved to a flavored version +net/libproxy-gnome|net/libproxy-gnome2|2018-07-22|Renamed to make slave names consistent Modified: head/irc/hexchat/Makefile ============================================================================== --- head/irc/hexchat/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/irc/hexchat/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -4,6 +4,7 @@ PORTNAME= hexchat PORTVERSION= 2.14.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= irc gnome ipv6 MAINTAINER= pkubaj@anongoth.pl Modified: head/multimedia/libquvi09/Makefile ============================================================================== --- head/multimedia/libquvi09/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/multimedia/libquvi09/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -3,7 +3,7 @@ PORTNAME= libquvi PORTVERSION= 0.9.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia devel MASTER_SITES= SF/quvi/${PORTVERSION:R}/${PORTNAME}/ \ LOCAL/sunpoet Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -410,13 +410,14 @@ SUBDIR += libpcap SUBDIR += libpcapnav SUBDIR += libproxy - SUBDIR += libproxy-gnome + SUBDIR += libproxy-gnome2 SUBDIR += libproxy-gnome3 SUBDIR += libproxy-kde SUBDIR += libproxy-mozjs SUBDIR += libproxy-perl SUBDIR += libproxy-python SUBDIR += libproxy-webkit + SUBDIR += libproxy-webkit3 SUBDIR += librdkafka SUBDIR += librouteros SUBDIR += librsync2 Modified: head/net/glib-networking/Makefile ============================================================================== --- head/net/glib-networking/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/glib-networking/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -3,6 +3,7 @@ PORTNAME= glib-networking PORTVERSION= 2.50.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Modified: head/net/libproxy-gnome2/Makefile ============================================================================== --- head/net/libproxy-gnome/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-gnome2/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,31 +1,15 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/net/libproxy-gnome/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ PORTREVISION= 0 CATEGORIES= net devel -PKGNAMESUFFIX= -gnome +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org COMMENT= GConf-based plug-in for libproxy -LIB_DEPENDS= libproxy.so:net/libproxy - -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -ALL_TARGET= config_gnome pxgconf USE_GNOME= gconf2 glib20 -USES= pkgconfig -LIBPROXY_SLAVE= gnome - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ - ${INSTALL_LIB} ${BUILD_WRKSRC}/libproxy/config_gnome.so \ - ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/libproxy/pxgconf \ - ${STAGEDIR}${PREFIX}/libexec/ +LIBPROXY_SLAVE= gnome2 +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy-gnome3/Makefile ============================================================================== --- head/net/libproxy-gnome3/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-gnome3/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -2,28 +2,13 @@ PORTREVISION= 0 CATEGORIES= net devel -PKGNAMESUFFIX= -gnome3 +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org COMMENT= GSettings-based configuration plug-in for libproxy -LIB_DEPENDS= libproxy.so:net/libproxy - -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -ALL_TARGET= config_gnome3 pxgsettings USE_GNOME= glib20 -USES= pkgconfig LIBPROXY_SLAVE= gnome3 - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ - ${INSTALL_LIB} ${BUILD_WRKSRC}/libproxy/config_gnome3.so \ - ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/libproxy/pxgsettings \ - ${STAGEDIR}${PREFIX}/libexec/ +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy-kde/Makefile ============================================================================== --- head/net/libproxy-kde/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-kde/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,29 +1,16 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/net/libproxy-kde/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ -PORTREVISION= 2 +PORTREVISION= 0 CATEGORIES= net devel -PKGNAMESUFFIX= -kde +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org COMMENT= KDE plug-in for libproxy -LIB_DEPENDS= libproxy.so:net/libproxy - -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -ALL_TARGET= config_kde +USES= kde:4 USE_KDE= runtime -USES+= kde:4 LIBPROXY_SLAVE= kde - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ - ${INSTALL_LIB} ${BUILD_WRKSRC}/libproxy/config_kde.so \ - ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy-mozjs/Makefile ============================================================================== --- head/net/libproxy-mozjs/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-mozjs/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,29 +1,18 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/net/libproxy-mozjs/Makefile,v 1.5 2011/01/12 13:10:53 kwm Exp $ PORTREVISION= 0 CATEGORIES= net www -PKGNAMESUFFIX= -mozjs +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org + COMMENT= Mozilla JavaScript plug-in for libproxy -LIB_DEPENDS= libmozjs185.so:lang/spidermonkey185 \ - libproxy.so:net/libproxy +USES= compiler:c++11-lib +USE_CXXSTD= gnu++11 +LIB_DEPENDS= libmozjs-38.so:lang/spidermonkey38 -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -ALL_TARGET= pacrunner_mozjs -USES= pkgconfig - LIBPROXY_SLAVE= mozjs - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${PORTVERSION}/modules/ - ${INSTALL_LIB} ${BUILD_WRKSRC}/libproxy/pacrunner_mozjs.so \ - ${STAGEDIR}${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy-perl/Makefile ============================================================================== --- head/net/libproxy-perl/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-perl/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,24 +1,17 @@ # Created by: Koop Mast # $FreeBSD$ -# $MCom: ports/net/libproxy-perl/Makefile,v 1.1 2011/01/12 13:10:53 kwm Exp $ PORTREVISION= 0 CATEGORIES= net lang -PKGNAMESUFFIX= -perl +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org COMMENT= Perl binding for libproxy -LIB_DEPENDS= libproxy.so:net/libproxy - -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -BUILD_WRKSRC= ${CONFIGURE_WRKSRC}/bindings/perl -INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}/bindings/perl USES= perl5 +CMAKE_ON= PERL_VENDORINSTALL PERL_LINK_LIBPERL +CMAKE_ARGS= -DPX_PERL_ARCH=${SITE_ARCH} LIBPROXY_SLAVE= perl +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy-python/Makefile ============================================================================== --- head/net/libproxy-python/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-python/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,26 +1,18 @@ # Created by: Koop Mast # $FreeBSD$ -# $MCom: ports/net/libproxy-python/Makefile,v 1.1 2011/01/12 13:10:54 kwm Exp $ PORTREVISION= 0 CATEGORIES= net lang -PKGNAMESUFFIX= -python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org -COMMENT= python binding for libproxy +COMMENT= Python binding for libproxy -RUN_DEPENDS= libproxy>=${PORTVERSION}:net/libproxy +USES= python +USE_PYTHON= flavors py3kplist -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}/bindings/python -NO_ARCH= yes -NO_BUILD= yes -USES= python:2.7 - LIBPROXY_SLAVE= python +MASTERDIR= ${.CURDIR}/../libproxy post-install: ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ Modified: head/net/libproxy-webkit/Makefile ============================================================================== --- head/net/libproxy-webkit/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy-webkit/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,29 +1,16 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/net/libproxy-webkit/Makefile,v 1.13 2011/03/06 23:12:41 kwm Exp $ PORTREVISION= 0 CATEGORIES= net www -PKGNAMESUFFIX= -webkit +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org + COMMENT= WebKit JavaScript plug-in for libproxy -LIB_DEPENDS= libjavascriptcoregtk-3.0.so:www/webkit-gtk3 \ - libproxy.so:net/libproxy +LIB_DEPENDS= libwebkitgtk-1.0.so:www/webkit-gtk2 -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist - -ALL_TARGET= pacrunner_webkit -USES= pkgconfig - LIBPROXY_SLAVE= webkit - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ - ${INSTALL_LIB} ${BUILD_WRKSRC}/libproxy/pacrunner_webkit.so \ - ${STAGEDIR}${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy-webkit3/Makefile ============================================================================== --- head/net/libproxy-webkit/Makefile Sat Jun 2 11:46:33 2018 (r471366) +++ head/net/libproxy-webkit3/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,29 +1,18 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/net/libproxy-webkit/Makefile,v 1.13 2011/03/06 23:12:41 kwm Exp $ PORTREVISION= 0 CATEGORIES= net www -PKGNAMESUFFIX= -webkit +PKGNAMESUFFIX= -${LIBPROXY_SLAVE} -MAINTAINER= gnome@FreeBSD.org COMMENT= WebKit JavaScript plug-in for libproxy -LIB_DEPENDS= libjavascriptcoregtk-3.0.so:www/webkit-gtk3 \ - libproxy.so:net/libproxy +LIB_DEPENDS= libjavascriptcoregtk-4.0.so:www/webkit2-gtk3 -MASTERDIR= ${.CURDIR}/../libproxy -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist +USES= gettext-runtime +USE_GNOME= glib20 -ALL_TARGET= pacrunner_webkit -USES= pkgconfig - -LIBPROXY_SLAVE= webkit - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ - ${INSTALL_LIB} ${BUILD_WRKSRC}/libproxy/pacrunner_webkit.so \ - ${STAGEDIR}${PREFIX}/lib/libproxy/${PORTVERSION}/modules/ +LIBPROXY_SLAVE= webkit3 +MASTERDIR= ${.CURDIR}/../libproxy .include "${MASTERDIR}/Makefile" Modified: head/net/libproxy/Makefile ============================================================================== --- head/net/libproxy/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -1,9 +1,8 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/net/libproxy/Makefile,v 1.1 2011/01/12 13:10:52 kwm Exp $ PORTNAME= libproxy -PORTVERSION= 0.4.12 +PORTVERSION= 0.4.15 PORTREVISION?= 0 CATEGORIES?= net devel @@ -13,71 +12,54 @@ COMMENT?= Library that provides automatic proxy config LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -CPE_VENDOR= libproxy_project +USES+= cmake:outsource cpe pathfix pkgconfig +CPE_VENDOR= libproxy_project PATHFIX_CMAKELISTSTXT= devfiles.cmk -USE_GITHUB= yes -USES+= cmake:outsource cpe pathfix +USE_GITHUB= yes -PLIST_SUB+= VERSION=${PORTVERSION} +CMAKE_ON+= WITH_VALA +CMAKE_OFF+= BIPR WITH_DOTNET WITH_NATUS WITH_NM WITH_NMold -CMAKE_ARGS= -DBIPR:BOOL=OFF -DWITH_DOTNET:BOOL=OFF \ - -DWITH_NATUS:BOOL=OFF -DWITH_NM:BOOL=OFF \ - -DWITH_VALA:BOOL=ON +# Slave ports. +LIBPROXY_SLAVES= library gnome2 gnome3 kde mozjs python perl webkit webkit3 -.if !defined(LIBPROXY_SLAVE) -USE_LDCONFIG= yes -CMAKE_ARGS+= -DWITH_PYTHON:BOOL=OFF -DWITH_PERL:BOOL=OFF \ - -DWITH_GNOME2:BOOL=OFF -DWITH_GNOME3:BOOL=OFF \ - -DWITH_KDE:BOOL=OFF -DWITH_MOZJS:BOOL=OFF \ - -DWITH_WEBKIT:BOOL=OFF -DWITH_WEBKIT3:BOOL=OFF -.else -PORTSCOUT= ignore:1 +# If nothing is set, we're building the library, i.e. this port. +LIBPROXY_SLAVE?= library -# Libproxy is build for the slave ports, since I haven't been able to find -# out how to only build optional code with cmake. -# Patches for this problem are welcome. +PLIST_SUB+= VERSION=${PORTVERSION} -. if ${LIBPROXY_SLAVE}=="python" -CMAKE_ARGS+= -DWITH_PYTHON:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_PYTHON:BOOL=OFF -. endif +# Activate the wanted module, and deactivate the others +CMAKE_ON+= WITH_${LIBPROXY_SLAVE:tu} +CMAKE_OFF+= ${LIBPROXY_SLAVES:N${LIBPROXY_SLAVE}:tu:S/^/WITH_/} -. if ${LIBPROXY_SLAVE}=="perl" -CMAKE_ARGS+= -DWITH_PERL:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_PERL:BOOL=OFF -. endif +# Setup slave ports. +.if ${LIBPROXY_SLAVE:Nlibrary} +USES+= localbase +LIB_DEPENDS+= libproxy.so:net/libproxy +DESCR= ${.CURDIR:H}/${PORTNAME}-${LIBPROXY_SLAVE}/pkg-descr +PLIST= ${.CURDIR:H}/${PORTNAME}-${LIBPROXY_SLAVE}/pkg-plist +.endif -. if ${LIBPROXY_SLAVE}=="gnome" -CMAKE_ARGS+= -DWITH_GNOME2:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_GNOME2:BOOL=OFF -. endif +.if ${LIBPROXY_SLAVE:Mwebkit3} +# Additionally to WITH_WEBKIT3 also WITH_WEBKIT is required. +CMAKE_ON+= WITH_WEBKIT +CMAKE_OFF:= ${CMAKE_OFF:C/WITH_WEBKIT//} +.endif -. if ${LIBPROXY_SLAVE}=="gnome3" -CMAKE_ARGS+= -DWITH_GNOME3:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_GNOME3:BOOL=OFF -. endif +.include -. if ${LIBPROXY_SLAVE}=="kde" -CMAKE_ARGS+= -DWITH_KDE:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_KDE:BOOL=OFF -. endif - -. if ${LIBPROXY_SLAVE}=="webkit" -CMAKE_ARGS+= -DWITH_WEBKIT3:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_WEBKIT3:BOOL=OFF -DWITH_WEBKIT:BOOL=OFF -. endif - -. if ${LIBPROXY_SLAVE}=="mozjs" -CMAKE_ARGS+= -DWITH_MOZJS:BOOL=ON -. else -CMAKE_ARGS+= -DWITH_MOZJS:BOOL=OFF -. endif +# Hackery for the to python backends. +.if ${LIBPROXY_SLAVE:Mpython} +. if ${PYTHON_MAJOR_VER} == 2 +CMAKE_ON+= WITH_PYTHON2 +CMAKE_OFF+= WITH_PYTHON3 +CMAKE_ARGS+= -DPYTHON2_EXECUTABLE:FILEPATH=${PYTHON_CMD} +. else +CMAKE_ON+= WITH_PYTHON3 +CMAKE_OFF+= WITH_PYTHON2 +. endif +.else +CMAKE_OFF+= WITH_PYTHON2 WITH_PYTHON3 .endif -.include +.include Modified: head/net/libproxy/distinfo ============================================================================== --- head/net/libproxy/distinfo Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy/distinfo Fri Jun 22 19:59:41 2018 (r473062) @@ -1,2 +1,3 @@ -SHA256 (libproxy-libproxy-0.4.12_GH0.tar.gz) = add9c5e30767c17b00f842f6280d818ece1eb23ab92e1fc68661204c95d7e22b -SIZE (libproxy-libproxy-0.4.12_GH0.tar.gz) = 87765 +TIMESTAMP = 1499371033 +SHA256 (libproxy-libproxy-0.4.15_GH0.tar.gz) = 18f58b0a0043b6881774187427ead158d310127fc46a1c668ad6d207fb28b4e0 +SIZE (libproxy-libproxy-0.4.15_GH0.tar.gz) = 93084 Added: head/net/libproxy/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libproxy/files/patch-CMakeLists.txt Fri Jun 22 19:59:41 2018 (r473062) @@ -0,0 +1,31 @@ +As the library is only built in the master port, and therfore missing in the +build directory for the slave ports, find it via pkg-config and link against it, +when building a slave. + +--- CMakeLists.txt.orig 2017-05-11 09:33:33 UTC ++++ CMakeLists.txt +@@ -23,6 +23,15 @@ else() + set(CMAKE_INSTALL_CONFIG_NAME ${CMAKE_BUILD_TYPE}) + endif() + ++# Make building the library optional. ++option(WITH_LIBRARY "Build libproxy.so" ON) ++ ++if (NOT WITH_LIBRARY) ++ # For the other ports provide an easy way to link against libproxy.so via PkgConfig::LIBPROXY. ++ find_package(PkgConfig) ++ pkg_check_modules(LIBPROXY libproxy-1.0 REQUIRED IMPORTED_TARGET) ++endif () ++ + include(cmake/cpack.cmk) + include(cmake/ctest.cmk) + include(cmake/paths.cmk) +@@ -56,5 +65,7 @@ endif() + + # Always build these + add_subdirectory(libproxy) +-add_subdirectory(utils) ++if (WITH_LIBRARY) ++ add_subdirectory(utils) ++endif() + Added: head/net/libproxy/files/patch-bindings_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libproxy/files/patch-bindings_CMakeLists.txt Fri Jun 22 19:59:41 2018 (r473062) @@ -0,0 +1,18 @@ +Only build the library in the master port. + +--- bindings/CMakeLists.txt.orig 2017-05-11 09:33:33 UTC ++++ bindings/CMakeLists.txt +@@ -20,6 +20,7 @@ if (WITH_PERL) + endif() + + # Install Vala bindings / Install only when -DWITH_VALA is passed to cmake. ++if (WITH_LIBRARY) + option(WITH_VALA "Enables Vala bindings" OFF) + if(WITH_VALA) + if (NOT VAPI_DIR) +@@ -27,4 +28,5 @@ if(WITH_VALA) + endif() + install(FILES vala/libproxy-1.0.vapi DESTINATION ${VAPI_DIR}) + set(VAPI_DIR ${VAPI_DIR} CACHE PATH "Vala API directory") ++endif() + endif() Modified: head/net/libproxy/files/patch-bindings_perl_src_CMakeLists.txt ============================================================================== --- head/net/libproxy/files/patch-bindings_perl_src_CMakeLists.txt Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy/files/patch-bindings_perl_src_CMakeLists.txt Fri Jun 22 19:59:41 2018 (r473062) @@ -1,21 +1,24 @@ -* Explicitly against libperl.so.x.y. - This is being discussed in https://github.com/libproxy/libproxy/pull/7. - We need this for `make stage-qa' to pass, as the Libproxy.so binding uses - libperl symbols and thus should link against it. +As the library is only built in the master port, and therfore missing in the +build directory for the slave ports, find it via pkg-config and link against it, +when building a slave. -* Set RPATH in Libproxy.so. - We do not install libperl.so into ${LOCALBASE}/lib, so the Libproxy.so ELF - binary must be told the non-default location where it should look for - libperl.so.x.y. ---- bindings/perl/src/CMakeLists.txt.orig 2016-01-12 16:41:07 UTC +--- bindings/perl/src/CMakeLists.txt.orig 2018-06-03 17:39:41 UTC +++ bindings/perl/src/CMakeLists.txt -@@ -12,7 +12,8 @@ set(Libproxy_LIB_SRCS Libproxy.c) +@@ -4,7 +4,7 @@ include_directories( ${PERL_INCLUDE_PATH} ${CMAKE_SOUR + add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/Libproxy.c + COMMAND ${PERL_EXECUTABLE} ARGS ${CMAKE_CURRENT_SOURCE_DIR}/doxsubpp.pl + ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/Libproxy.xs ${CMAKE_CURRENT_BINARY_DIR}/Libproxy.c +- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/Libproxy.xs libproxy ++ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/Libproxy.xs + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + set(Libproxy_LIB_SRCS Libproxy.c) +@@ -12,7 +12,7 @@ set(Libproxy_LIB_SRCS Libproxy.c) set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/perl/blib/arch/auto/Net) add_library(PLlibproxy SHARED ${Libproxy_LIB_SRCS}) --target_link_libraries(PLlibproxy libproxy pthread) -+target_link_libraries(PLlibproxy ${PERL_LIBRARY} libproxy pthread) -+set_target_properties(PLlibproxy PROPERTIES INSTALL_RPATH "${PERL_INCLUDE_DIR}") - set_target_properties(PLlibproxy PROPERTIES OUTPUT_NAME "Libproxy") - set_target_properties(PLlibproxy PROPERTIES PREFIX "") - +-set(PLlibproxy_LIB_DEPENDENCIES libproxy pthread) ++set(PLlibproxy_LIB_DEPENDENCIES PkgConfig::LIBPROXY pthread) + if(PERL_LINK_LIBPERL) + set(PLlibproxy_LIB_DEPENDENCIES ${PERL_LIBRARY} ${PLlibproxy_LIB_DEPENDENCIES}) + endif() Added: head/net/libproxy/files/patch-bindings_perl_t_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libproxy/files/patch-bindings_perl_t_CMakeLists.txt Fri Jun 22 19:59:41 2018 (r473062) @@ -0,0 +1,5 @@ +--- bindings/perl/t/CMakeLists.txt.orig 2017-05-11 09:33:33 UTC ++++ bindings/perl/t/CMakeLists.txt +@@ -1 +1 @@ +-add_custom_target(test prove -b ${CMAKE_CURRENT_SOURCE_DIR}) ++add_custom_target(test_perl prove -b ${CMAKE_CURRENT_SOURCE_DIR}) Modified: head/net/libproxy/files/patch-libproxy_CMakeLists.txt ============================================================================== --- head/net/libproxy/files/patch-libproxy_CMakeLists.txt Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy/files/patch-libproxy_CMakeLists.txt Fri Jun 22 19:59:41 2018 (r473062) @@ -16,9 +16,9 @@ In file included from /usr/include/c++/v1/ios:216: /usr/include/c++/v1/__locale:569:19: error: use of undeclared identifier 'isascii' if (!(isascii(*__low) && (__tab_[static_cast(*__low)] & __m))) ^ ---- libproxy/CMakeLists.txt.orig 2016-01-12 16:41:07 UTC +--- libproxy/CMakeLists.txt.orig 2017-05-11 09:33:33 UTC +++ libproxy/CMakeLists.txt -@@ -6,7 +6,6 @@ set_project_version(0 4 12) +@@ -6,18 +6,19 @@ set_project_version(0 4 15) if (WIN32) add_definitions(-D_CRT_SECURE_NO_WARNINGS=1) else(WIN32) @@ -26,3 +26,20 @@ In file included from /usr/include/c++/v1/ios:216: set(CMAKE_CXX_FLAGS "-fvisibility=hidden ${CMAKE_CXX_FLAGS}") endif(WIN32) + ### Modules + include(cmake/modules.cmk) + +-### Dev files +-include(cmake/devfiles.cmk) ++if(WITH_LIBRARY) ++ ### Dev files ++ include(cmake/devfiles.cmk) + +-### Main library +-include(cmake/libproxy.cmk) ++ ### Main library ++ include(cmake/libproxy.cmk) ++endif() + + ### Tests + add_testdirectory(test) Added: head/net/libproxy/files/patch-libproxy_cmake_pxmodule.cmk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libproxy/files/patch-libproxy_cmake_pxmodule.cmk Fri Jun 22 19:59:41 2018 (r473062) @@ -0,0 +1,20 @@ +As the library is only built in the master port, and therfore missing in the +build directory for the slave ports, find it via pkg-config and link against it, +when building a slave. + +--- libproxy/cmake/pxmodule.cmk.orig 2017-05-11 09:33:33 UTC ++++ libproxy/cmake/pxmodule.cmk +@@ -18,7 +18,12 @@ function(px_module name build builtin) + set(built "m") + set_property(SOURCE modules/${name}.cpp PROPERTY COMPILE_DEFINITIONS LIBEXECDIR="${LIBEXECDIR}") + add_library(${name} MODULE modules/${name}.cpp) +- target_link_libraries(${name} libproxy) ++ link_directories(${CMAKE_INSTALL_PREFIX}/lib) ++ if (WITH_LIBRARY) ++ target_link_libraries(${name} proxy) ++ else () ++ target_link_libraries(${name} PkgConfig::LIBPROXY) ++ endif () + set_target_properties(${name} PROPERTIES PREFIX "") + install(TARGETS ${name} LIBRARY DESTINATION ${MODULE_INSTALL_DIR}) + if(${ARGC} GREATER 3) Modified: head/net/libproxy/files/patch-libproxy_test_get-pac-test.cpp ============================================================================== --- head/net/libproxy/files/patch-libproxy_test_get-pac-test.cpp Fri Jun 22 19:51:17 2018 (r473061) +++ head/net/libproxy/files/patch-libproxy_test_get-pac-test.cpp Fri Jun 22 19:59:41 2018 (r473062) @@ -1,12 +1,15 @@ +First hunk: libc++ doesn't like "using namespace std" in C++11 libproxy/test/get-pac-test.cpp:48:10: error: assigning to 'int' from incompatible type '__bind' ret = bind(m_sock, (sockaddr*)&addr, sizeof (struct sockaddr_in)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Second hunk: +Fix typo. ---- libproxy/test/get-pac-test.cpp.orig 2016-01-12 16:41:07 UTC -+++ libproxy/test/get-pac-test.cpp -@@ -45,7 +45,7 @@ class TestServer { +--- libproxy/test/get-pac-test.cpp.orig 2017-05-11 11:33:33.000000000 +0200 ++++ libproxy/test/get-pac-test.cpp 2018-06-02 14:32:22.796000000 +0200 +@@ -52,7 +52,7 @@ setsockopt(m_sock, SOL_SOCKET, SO_REUSEADDR, &i, sizeof(i)); @@ -15,3 +18,12 @@ libproxy/test/get-pac-test.cpp:48:10: error: assigning assert(!ret); ret = listen(m_sock, 1); +@@ -130,7 +130,7 @@ + + #ifdef SO_NOSIGPIPE + int i = 1; +- setsockopt(c_sock, SOL_SOCKET, SO_NOSIGPIPE, &i, sizeof(i)); ++ setsockopt(csock, SOL_SOCKET, SO_NOSIGPIPE, &i, sizeof(i)); + #endif + + // Read request Added: head/net/libproxy/files/patch-utils_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libproxy/files/patch-utils_CMakeLists.txt Fri Jun 22 19:59:41 2018 (r473062) @@ -0,0 +1,17 @@ +As the library is only built in the master port, and therfore missing in the +build directory for the slave ports, find it via pkg-config and link against it, +when building a slave. + +--- utils/CMakeLists.txt.orig 2017-05-11 09:33:33 UTC ++++ utils/CMakeLists.txt +@@ -1,5 +1,9 @@ + include_directories("../libproxy") + + add_executable(proxy proxy.c) +-target_link_libraries(proxy libproxy) ++if (WITH_LIBRARY) ++ target_link_libraries(proxy libproxy) ++else () ++ target_link_libraries(proxy PkgConfig::LIBPROXY) ++endif () + install(TARGETS proxy RUNTIME DESTINATION ${BIN_INSTALL_DIR}) Modified: head/sysutils/signon-ui/Makefile ============================================================================== --- head/sysutils/signon-ui/Makefile Fri Jun 22 19:51:17 2018 (r473061) +++ head/sysutils/signon-ui/Makefile Fri Jun 22 19:59:41 2018 (r473062) @@ -2,6 +2,7 @@ PORTNAME= signon-ui PORTVERSION= 0.17 +PORTREVISION= 1 CATEGORIES= sysutils kde DIST_SUBDIR= KDE/${GL_ACCOUNT} From owner-svn-ports-head@freebsd.org Fri Jun 22 20:11:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB1AC1025CE8; Fri, 22 Jun 2018 20:11:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5827E7F407; Fri, 22 Jun 2018 20:11:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A3F425608; Fri, 22 Jun 2018 20:11:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKBEcw064604; Fri, 22 Jun 2018 20:11:14 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKBDj4064603; Fri, 22 Jun 2018 20:11:13 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806222011.w5MKBDj4064603@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 22 Jun 2018 20:11:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473063 - head/devel/py-IBMQuantumExperience X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-IBMQuantumExperience X-SVN-Commit-Revision: 473063 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:11:14 -0000 Author: yuri Date: Fri Jun 22 20:11:13 2018 New Revision: 473063 URL: https://svnweb.freebsd.org/changeset/ports/473063 Log: devel/py-IBMQuantumExperience: Update 1.9.5 -> 1.9.6 Reported by: portscout Modified: head/devel/py-IBMQuantumExperience/Makefile head/devel/py-IBMQuantumExperience/distinfo Modified: head/devel/py-IBMQuantumExperience/Makefile ============================================================================== --- head/devel/py-IBMQuantumExperience/Makefile Fri Jun 22 19:59:41 2018 (r473062) +++ head/devel/py-IBMQuantumExperience/Makefile Fri Jun 22 20:11:13 2018 (r473063) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= IBMQuantumExperience -DISTVERSION= 1.9.5 +DISTVERSION= 1.9.6 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-IBMQuantumExperience/distinfo ============================================================================== --- head/devel/py-IBMQuantumExperience/distinfo Fri Jun 22 19:59:41 2018 (r473062) +++ head/devel/py-IBMQuantumExperience/distinfo Fri Jun 22 20:11:13 2018 (r473063) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529558287 -SHA256 (IBMQuantumExperience-1.9.5.tar.gz) = 882231f1cfcbb398802b2e9be500562e4d2cf7a45fd2592e487f0f50beee4a47 -SIZE (IBMQuantumExperience-1.9.5.tar.gz) = 13128 +TIMESTAMP = 1529698033 +SHA256 (IBMQuantumExperience-1.9.6.tar.gz) = 83baa3c88979df67e7be929b147d253cffe45a7f7f5657f87fbe945819e9ce24 +SIZE (IBMQuantumExperience-1.9.6.tar.gz) = 13093 From owner-svn-ports-head@freebsd.org Fri Jun 22 20:18:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3582B1025F8B; Fri, 22 Jun 2018 20:18:42 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D87007F77A; Fri, 22 Jun 2018 20:18:41 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B5CC025773; Fri, 22 Jun 2018 20:18:41 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKIfJF068646; Fri, 22 Jun 2018 20:18:41 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKIfAm068644; Fri, 22 Jun 2018 20:18:41 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222018.w5MKIfAm068644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 20:18:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473064 - head/x11/libfm-qt X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11/libfm-qt X-SVN-Commit-Revision: 473064 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:18:42 -0000 Author: swills Date: Fri Jun 22 20:18:40 2018 New Revision: 473064 URL: https://svnweb.freebsd.org/changeset/ports/473064 Log: x11/libfm-qt: Update to 0.13.0 PR: 228511 Submitted by: Jesper Schmitz Mouridsen Approved by: Marco Beishuizen (maintainer) Modified: head/x11/libfm-qt/Makefile (contents, props changed) head/x11/libfm-qt/distinfo (contents, props changed) head/x11/libfm-qt/pkg-plist (contents, props changed) Modified: head/x11/libfm-qt/Makefile ============================================================================== --- head/x11/libfm-qt/Makefile Fri Jun 22 20:11:13 2018 (r473063) +++ head/x11/libfm-qt/Makefile Fri Jun 22 20:18:40 2018 (r473064) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libfm-qt -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= x11 MASTER_SITES= LXQT Modified: head/x11/libfm-qt/distinfo ============================================================================== --- head/x11/libfm-qt/distinfo Fri Jun 22 20:11:13 2018 (r473063) +++ head/x11/libfm-qt/distinfo Fri Jun 22 20:18:40 2018 (r473064) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508756298 -SHA256 (lxqt/libfm-qt-0.12.0.tar.xz) = a2cc4fc811aff6a83507e41770152cb01ea564668a33f4c878c7132a42b4f693 -SIZE (lxqt/libfm-qt-0.12.0.tar.xz) = 181924 +TIMESTAMP = 1527341871 +SHA256 (lxqt/libfm-qt-0.13.0.tar.xz) = 8725a8d50ad071ca43ad6af6464c08e85bdb197e49db202b1adef6df61c23b8c +SIZE (lxqt/libfm-qt-0.13.0.tar.xz) = 191848 Modified: head/x11/libfm-qt/pkg-plist ============================================================================== --- head/x11/libfm-qt/pkg-plist Fri Jun 22 20:11:13 2018 (r473063) +++ head/x11/libfm-qt/pkg-plist Fri Jun 22 20:18:40 2018 (r473064) @@ -3,14 +3,13 @@ include/libfm-qt/appchooserdialog.h include/libfm-qt/applaunchcontext.h include/libfm-qt/appmenuview.h include/libfm-qt/appmenuview_p.h -include/libfm-qt/archiver.h include/libfm-qt/bookmarkaction.h include/libfm-qt/browsehistory.h include/libfm-qt/cachedfoldermodel.h include/libfm-qt/colorbutton.h +include/libfm-qt/core/archiver.h +include/libfm-qt/core/basicfilelauncher.h include/libfm-qt/core/bookmarks.h -include/libfm-qt/core/compat_p.h -include/libfm-qt/core/copyjob.h include/libfm-qt/core/cstrptr.h include/libfm-qt/core/deletejob.h include/libfm-qt/core/dirlistjob.h @@ -23,6 +22,7 @@ include/libfm-qt/core/filemonitor.h include/libfm-qt/core/fileoperationjob.h include/libfm-qt/core/filepath.h include/libfm-qt/core/filesysteminfojob.h +include/libfm-qt/core/filetransferjob.h include/libfm-qt/core/folder.h include/libfm-qt/core/gioptrs.h include/libfm-qt/core/gobjectptr.h @@ -31,6 +31,7 @@ include/libfm-qt/core/iconinfo_p.h include/libfm-qt/core/job.h include/libfm-qt/core/job_p.h include/libfm-qt/core/mimetype.h +include/libfm-qt/core/templates.h include/libfm-qt/core/terminal.h include/libfm-qt/core/thumbnailer.h include/libfm-qt/core/thumbnailjob.h @@ -57,6 +58,7 @@ include/libfm-qt/filemenu.h include/libfm-qt/filemenu_p.h include/libfm-qt/fileoperation.h include/libfm-qt/fileoperationdialog.h +include/libfm-qt/fileoperationdialog_p.h include/libfm-qt/filepropsdialog.h include/libfm-qt/filesearchdialog.h include/libfm-qt/fm-qt_export.h @@ -69,13 +71,11 @@ include/libfm-qt/foldermodelitem.h include/libfm-qt/folderview.h include/libfm-qt/folderview_p.h include/libfm-qt/fontbutton.h -include/libfm-qt/icontheme.h include/libfm-qt/libfmqt.h include/libfm-qt/libfmqtglobals.h include/libfm-qt/mountoperation.h include/libfm-qt/mountoperationpassworddialog_p.h include/libfm-qt/mountoperationquestiondialog_p.h -include/libfm-qt/path.h include/libfm-qt/pathbar.h include/libfm-qt/pathbar_p.h include/libfm-qt/pathedit.h @@ -86,14 +86,13 @@ include/libfm-qt/placesview.h include/libfm-qt/proxyfoldermodel.h include/libfm-qt/renamedialog.h include/libfm-qt/sidepane.h -include/libfm-qt/templates.h include/libfm-qt/utilities.h include/libfm-qt/utilities_p.h include/libfm-qt/utils.h include/libfm-qt/xdndworkaround.h lib/libfm-qt.so -lib/libfm-qt.so.3 -lib/libfm-qt.so.3.1.0 +lib/libfm-qt.so.5 +lib/libfm-qt.so.5.0.0 libdata/pkgconfig/libfm-qt.pc share/cmake/fm-qt/fm-qt-config-version.cmake share/cmake/fm-qt/fm-qt-config.cmake From owner-svn-ports-head@freebsd.org Fri Jun 22 20:22:35 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29AC310261CC; Fri, 22 Jun 2018 20:22:35 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B0DC07FD48; Fri, 22 Jun 2018 20:22:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4F71025900; Fri, 22 Jun 2018 20:22:34 +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 w5MKMYF6074305; Fri, 22 Jun 2018 20:22:34 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKMX2q074300; Fri, 22 Jun 2018 20:22:33 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806222022.w5MKMX2q074300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 22 Jun 2018 20:22:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473065 - in head: Mk audio/soundkonverter multimedia/kmplayer-kde4 x11/kde-workspace-kde4 x11/libkonq-kde4 X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: Mk audio/soundkonverter multimedia/kmplayer-kde4 x11/kde-workspace-kde4 x11/libkonq-kde4 X-SVN-Commit-Revision: 473065 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:22:35 -0000 Author: tcberner Date: Fri Jun 22 20:22:32 2018 New Revision: 473065 URL: https://svnweb.freebsd.org/changeset/ports/473065 Log: Make flavors explicit for phonon. Reported by: VVD (via irc) Modified: head/Mk/bsd.qt.mk head/audio/soundkonverter/Makefile head/multimedia/kmplayer-kde4/Makefile head/x11/kde-workspace-kde4/Makefile head/x11/libkonq-kde4/Makefile Modified: head/Mk/bsd.qt.mk ============================================================================== --- head/Mk/bsd.qt.mk Fri Jun 22 20:18:40 2018 (r473064) +++ head/Mk/bsd.qt.mk Fri Jun 22 20:22:32 2018 (r473065) @@ -475,13 +475,13 @@ paths_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtpaths pixeltool_PORT= graphics/${_QT_RELNAME}-pixeltool pixeltool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/pixeltool -phonon_PORT= multimedia/phonon +phonon_PORT= multimedia/phonon@${_QT_RELNAME} phonon_LIB= libphonon.so phonon4_PORT= multimedia/phonon@${_QT_RELNAME} phonon4_LIB= libphonon4${_QT_RELNAME}.so -phonon-gst_PORT= multimedia/phonon-gstreamer +phonon-gst_PORT= multimedia/phonon-gstreamer@${_QT_RELNAME} phonon-gst_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/phonon_backend/libphonon_gstreamer.so plugininfo_PORT= sysutils/${_QT_RELNAME}-qtplugininfo Modified: head/audio/soundkonverter/Makefile ============================================================================== --- head/audio/soundkonverter/Makefile Fri Jun 22 20:18:40 2018 (r473064) +++ head/audio/soundkonverter/Makefile Fri Jun 22 20:22:32 2018 (r473065) @@ -14,7 +14,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libtag.so:audio/taglib \ libcdda_paranoia.so:audio/cdparanoia \ - libphonon.so:multimedia/phonon + libphonon.so:multimedia/phonon@qt4 GH_ACCOUNT= HessiJames USES= cmake compiler:c++11-lang kde:4 Modified: head/multimedia/kmplayer-kde4/Makefile ============================================================================== --- head/multimedia/kmplayer-kde4/Makefile Fri Jun 22 20:18:40 2018 (r473064) +++ head/multimedia/kmplayer-kde4/Makefile Fri Jun 22 20:22:32 2018 (r473065) @@ -19,7 +19,7 @@ NOT_FOR_ARCHS_REASON= prcpucfg.h:764:2: error: "Unknow LIB_DEPENDS= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ - libphonon.so:multimedia/phonon \ + libphonon.so:multimedia/phonon@qt4 \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= mplayer:multimedia/mplayer Modified: head/x11/kde-workspace-kde4/Makefile ============================================================================== --- head/x11/kde-workspace-kde4/Makefile Fri Jun 22 20:18:40 2018 (r473064) +++ head/x11/kde-workspace-kde4/Makefile Fri Jun 22 20:22:32 2018 (r473065) @@ -105,7 +105,7 @@ UPOWER_DESC= Power management via UPower UPOWER_RUN_DEPENDS= ${LOCALBASE}/libexec/upowerd:sysutils/upower VLC_DESC= Multimedia via Phonon-VLC -VLC_RUN_DEPENDS= ${KDE_PREFIX}/lib/kde4/plugins/phonon_backend/phonon_vlc.so:multimedia/phonon-vlc +VLC_RUN_DEPENDS= ${KDE_PREFIX}/lib/kde4/plugins/phonon_backend/phonon_vlc.so:multimedia/phonon-vlc@qt4 WALLPAPERS_DESC= Install official KDE wallpapers WALLPAPERS_RUN_DEPENDS= ${KDE_PREFIX}/share/wallpapers/Horos/metadata.desktop:x11-themes/kde-wallpapers-kde4 \ Modified: head/x11/libkonq-kde4/Makefile ============================================================================== --- head/x11/libkonq-kde4/Makefile Fri Jun 22 20:18:40 2018 (r473064) +++ head/x11/libkonq-kde4/Makefile Fri Jun 22 20:22:32 2018 (r473065) @@ -9,7 +9,7 @@ DISTNAME= kde-baseapps-${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Core library for Konqueror -LIB_DEPENDS= libphonon.so:multimedia/phonon +LIB_DEPENDS= libphonon.so:multimedia/phonon@qt4 USES= cmake:outsource kde:4 tar:xz USE_KDE= kdelibs automoc4 soprano From owner-svn-ports-head@freebsd.org Fri Jun 22 20:31:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D71A410265A3; Fri, 22 Jun 2018 20:31:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8BED2802E5; Fri, 22 Jun 2018 20:31:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6DB2325A61; Fri, 22 Jun 2018 20:31:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKVj3S078560; Fri, 22 Jun 2018 20:31:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKVj2V078559; Fri, 22 Jun 2018 20:31:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222031.w5MKVj2V078559@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 20:31:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473066 - head/games/legesmotus X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/legesmotus X-SVN-Commit-Revision: 473066 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:31:46 -0000 Author: amdmi3 Date: Fri Jun 22 20:31:45 2018 New Revision: 473066 URL: https://svnweb.freebsd.org/changeset/ports/473066 Log: - Fix build with clang 6 Modified: head/games/legesmotus/Makefile Modified: head/games/legesmotus/Makefile ============================================================================== --- head/games/legesmotus/Makefile Fri Jun 22 20:22:32 2018 (r473065) +++ head/games/legesmotus/Makefile Fri Jun 22 20:31:45 2018 (r473066) @@ -21,6 +21,8 @@ CONFIGURE_ARGS= --prefix="${PREFIX}" \ USES= gmake MAKE_ENV= XDIR=${LOCALBASE} +CXXFLAGS+= -Wno-c++11-narrowing + PORTDATA= * OPTIONS_MULTI= COMPONENTS From owner-svn-ports-head@freebsd.org Fri Jun 22 20:32:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C01C10266AD; Fri, 22 Jun 2018 20:32:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 054A1805E4; Fri, 22 Jun 2018 20:32:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DAC5C25AA4; Fri, 22 Jun 2018 20:32:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKWZhM079403; Fri, 22 Jun 2018 20:32:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKWZox079401; Fri, 22 Jun 2018 20:32:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222032.w5MKWZox079401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 20:32:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473067 - in head/games/diameter: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/diameter: . files X-SVN-Commit-Revision: 473067 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:32:36 -0000 Author: amdmi3 Date: Fri Jun 22 20:32:35 2018 New Revision: 473067 URL: https://svnweb.freebsd.org/changeset/ports/473067 Log: - Fix build with clang 6 - Add missing dependency Added: head/games/diameter/files/patch-src_res_3dsloader.cpp (contents, props changed) Modified: head/games/diameter/Makefile Modified: head/games/diameter/Makefile ============================================================================== --- head/games/diameter/Makefile Fri Jun 22 20:31:45 2018 (r473066) +++ head/games/diameter/Makefile Fri Jun 22 20:32:35 2018 (r473067) @@ -16,15 +16,18 @@ BROKEN_armv7= fails to compile: res/3dsloader.cpp:77: LIB_DEPENDS= libpng.so:graphics/png \ libguichan.so:devel/guichan -USES= tar:bzip2 gmake pkgconfig python:2.7 +USES= dos2unix tar:bzip2 gmake pkgconfig python:2.7 +DOS2UNIX_FILES= src/res/3dsloader.cpp GNU_CONFIGURE= yes -USE_GL= gl +USE_GL= gl glu USE_SDL= sdl mixer image WRKSRC= ${WRKDIR}/gamediameter CPPFLAGS+= `${SDL_CONFIG} --cflags` -I${LOCALBASE}/include LDFLAGS+= `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib + +CXXFLAGS+= -Wno-static-float-init DATADIR= ${PREFIX}/share/gamediameter Added: head/games/diameter/files/patch-src_res_3dsloader.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/diameter/files/patch-src_res_3dsloader.cpp Fri Jun 22 20:32:35 2018 (r473067) @@ -0,0 +1,11 @@ +--- src/res/3dsloader.cpp.orig 2008-07-31 11:22:38 UTC ++++ src/res/3dsloader.cpp +@@ -74,7 +74,7 @@ for (i=0; i Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43B421026860; Fri, 22 Jun 2018 20:33:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D6982807B4; Fri, 22 Jun 2018 20:33:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8CE825AA6; Fri, 22 Jun 2018 20:33:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKXtan079613; Fri, 22 Jun 2018 20:33:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKXtOu079612; Fri, 22 Jun 2018 20:33:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222033.w5MKXtOu079612@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 20:33:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473068 - in head/games/numptyphysics: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/numptyphysics: . files X-SVN-Commit-Revision: 473068 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:33:56 -0000 Author: amdmi3 Date: Fri Jun 22 20:33:55 2018 New Revision: 473068 URL: https://svnweb.freebsd.org/changeset/ports/473068 Log: - Add missing dependency - Fix build with clang 6 Added: head/games/numptyphysics/files/patch-Game.cpp (contents, props changed) Modified: head/games/numptyphysics/Makefile Modified: head/games/numptyphysics/Makefile ============================================================================== --- head/games/numptyphysics/Makefile Fri Jun 22 20:32:35 2018 (r473067) +++ head/games/numptyphysics/Makefile Fri Jun 22 20:33:55 2018 (r473068) @@ -16,12 +16,15 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= tar:bzip2 desktop-file-utils GNU_CONFIGURE= yes USE_SDL= sdl image +USE_XORG= x11 INSTALLS_ICONS= yes CONFIGURE_ENV= AUTOMAKE="${TRUE}" ACLOCAL="${TRUE}" MISSING="${TRUE}" LDFLAGS+= -L${LOCALBASE}/lib -lpthread CPPFLAGS+= -I${LOCALBASE}/include -DINSTALL_BASE_PATH=\"\\\"${DATADIR}\\\"\" +CXXFLAGS+= -Wno-c++11-narrowing + WRKSRC= ${WRKDIR}/${PORTNAME} OPTIONS_DEFINE= MOREFPS @@ -41,6 +44,6 @@ post-patch-MOREFPS-on: ${WRKSRC}/Config.h post-build: - ${STRIP_CMD} ${WRKSRC}/${PORTNAME} + @${STRIP_CMD} ${WRKSRC}/${PORTNAME} .include Added: head/games/numptyphysics/files/patch-Game.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/numptyphysics/files/patch-Game.cpp Fri Jun 22 20:33:55 2018 (r473068) @@ -0,0 +1,11 @@ +--- Game.cpp.orig 2008-11-11 16:54:38 UTC ++++ Game.cpp +@@ -1495,7 +1495,7 @@ void init( bool useDummyVideo=false ) + throw "Couldn't initialize SDL"; + } + +- if ( mkdir( (string(getenv("HOME"))+"/"USER_BASE_PATH).c_str(), ++ if ( mkdir( (string(getenv("HOME"))+"/" USER_BASE_PATH).c_str(), + 0755)==0 ) { + printf("created user dir\n"); + } else if ( errno==EEXIST ){ From owner-svn-ports-head@freebsd.org Fri Jun 22 20:34:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE2E4102689E; Fri, 22 Jun 2018 20:34:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9FE4D80893; Fri, 22 Jun 2018 20:34:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 80CCB25AA7; Fri, 22 Jun 2018 20:34:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKY6mF079729; Fri, 22 Jun 2018 20:34:06 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKY6Hm079728; Fri, 22 Jun 2018 20:34:06 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222034.w5MKY6Hm079728@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 20:34:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473069 - head/games/chapping X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/chapping X-SVN-Commit-Revision: 473069 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:34:07 -0000 Author: amdmi3 Date: Fri Jun 22 20:34:06 2018 New Revision: 473069 URL: https://svnweb.freebsd.org/changeset/ports/473069 Log: - Fix build with clang 6 Modified: head/games/chapping/Makefile Modified: head/games/chapping/Makefile ============================================================================== --- head/games/chapping/Makefile Fri Jun 22 20:33:55 2018 (r473068) +++ head/games/chapping/Makefile Fri Jun 22 20:34:06 2018 (r473069) @@ -18,6 +18,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gmake tar:bzip2 USE_SDL= sdl image gfx ttf +CXXFLAGS+= -Wno-c++11-narrowing + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-source ALL_TARGET= linux From owner-svn-ports-head@freebsd.org Fri Jun 22 20:41:39 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 667721026A55; Fri, 22 Jun 2018 20:41:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 13F8780B66; Fri, 22 Jun 2018 20:41:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EAD5B25AFD; Fri, 22 Jun 2018 20:41:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKfcU0082438; Fri, 22 Jun 2018 20:41:38 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKfclT082432; Fri, 22 Jun 2018 20:41:38 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222041.w5MKfclT082432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 20:41:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473070 - in head/x11-fm/pcmanfm-qt: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/x11-fm/pcmanfm-qt: . files X-SVN-Commit-Revision: 473070 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:41:39 -0000 Author: swills Date: Fri Jun 22 20:41:37 2018 New Revision: 473070 URL: https://svnweb.freebsd.org/changeset/ports/473070 Log: x11-fm/pcmanfm-qt: Update to 0.13.0 PR: 228512 Submitted by: Jesper Schmitz Mouridsen Approved by: Marco Beishuizen (maintainer) Modified: head/x11-fm/pcmanfm-qt/Makefile (contents, props changed) head/x11-fm/pcmanfm-qt/distinfo (contents, props changed) head/x11-fm/pcmanfm-qt/files/patch-config_CMakeLists.txt (contents, props changed) head/x11-fm/pcmanfm-qt/pkg-plist (contents, props changed) Modified: head/x11-fm/pcmanfm-qt/Makefile ============================================================================== --- head/x11-fm/pcmanfm-qt/Makefile Fri Jun 22 20:34:06 2018 (r473069) +++ head/x11-fm/pcmanfm-qt/Makefile Fri Jun 22 20:41:37 2018 (r473070) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcmanfm-qt -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= x11-fm MASTER_SITES= LXQT Modified: head/x11-fm/pcmanfm-qt/distinfo ============================================================================== --- head/x11-fm/pcmanfm-qt/distinfo Fri Jun 22 20:34:06 2018 (r473069) +++ head/x11-fm/pcmanfm-qt/distinfo Fri Jun 22 20:41:37 2018 (r473070) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508768826 -SHA256 (lxqt/pcmanfm-qt-0.12.0.tar.xz) = 1fa187e304217b7c2d06f0600a1eebf1d5c6e825c3132e884f7ab3a605fe76f7 -SIZE (lxqt/pcmanfm-qt-0.12.0.tar.xz) = 100636 +TIMESTAMP = 1527328596 +SHA256 (lxqt/pcmanfm-qt-0.13.0.tar.xz) = bf961a6d91a50a3e7e69ae4b249d41b11f01d70142759a3019f30a33e7cc5722 +SIZE (lxqt/pcmanfm-qt-0.13.0.tar.xz) = 104864 Modified: head/x11-fm/pcmanfm-qt/files/patch-config_CMakeLists.txt ============================================================================== --- head/x11-fm/pcmanfm-qt/files/patch-config_CMakeLists.txt Fri Jun 22 20:34:06 2018 (r473069) +++ head/x11-fm/pcmanfm-qt/files/patch-config_CMakeLists.txt Fri Jun 22 20:41:37 2018 (r473070) @@ -1,4 +1,4 @@ ---- config/CMakeLists.txt.orig 2017-10-21 19:42:34 UTC +--- config/CMakeLists.txt.orig 2018-05-21 19:14:54 UTC +++ config/CMakeLists.txt @@ -1,8 +1,8 @@ # install default config files to /etc/xdg @@ -8,6 +8,6 @@ install(FILES - "${CMAKE_CURRENT_BINARY_DIR}/pcmanfm-qt/lxqt/settings.conf" + "${CMAKE_CURRENT_BINARY_DIR}/pcmanfm-qt/lxqt/settings.conf.sample" - DESTINATION "${LXQT_ETC_XDG_DIR}/pcmanfm-qt/lxqt" + DESTINATION "${CMAKE_INSTALL_DATADIR}/pcmanfm-qt/lxqt" COMPONENT Runtime ) Modified: head/x11-fm/pcmanfm-qt/pkg-plist ============================================================================== --- head/x11-fm/pcmanfm-qt/pkg-plist Fri Jun 22 20:34:06 2018 (r473069) +++ head/x11-fm/pcmanfm-qt/pkg-plist Fri Jun 22 20:41:37 2018 (r473070) @@ -1,6 +1,6 @@ bin/pcmanfm-qt etc/xdg/autostart/lxqt-desktop.desktop -@sample etc/xdg/pcmanfm-qt/lxqt/settings.conf.sample man/man1/pcmanfm-qt.1.gz share/applications/pcmanfm-qt-desktop-pref.desktop share/applications/pcmanfm-qt.desktop +@sample %%DATADIR%%/lxqt/settings.conf.sample From owner-svn-ports-head@freebsd.org Fri Jun 22 20:50:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2484A1026F9A; Fri, 22 Jun 2018 20:50:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CB50A813D2; Fri, 22 Jun 2018 20:50:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC6F425C56; Fri, 22 Jun 2018 20:50:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKoRjx085262; Fri, 22 Jun 2018 20:50:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKoRci085260; Fri, 22 Jun 2018 20:50:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222050.w5MKoRci085260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 20:50:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473071 - in head/games/nimuh: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/nimuh: . files X-SVN-Commit-Revision: 473071 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:50:28 -0000 Author: amdmi3 Date: Fri Jun 22 20:50:27 2018 New Revision: 473071 URL: https://svnweb.freebsd.org/changeset/ports/473071 Log: - Add LICENSE - Switch to USES=localbase - Add missing depend - Fix build with clang 6 Added: head/games/nimuh/files/ head/games/nimuh/files/patch-src_elements.cpp (contents, props changed) Modified: head/games/nimuh/Makefile Modified: head/games/nimuh/Makefile ============================================================================== --- head/games/nimuh/Makefile Fri Jun 22 20:41:37 2018 (r473070) +++ head/games/nimuh/Makefile Fri Jun 22 20:50:27 2018 (r473071) @@ -11,15 +11,16 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${PORTNAME}-data MAINTAINER= amdmi3@FreeBSD.org COMMENT= Puzzle game destined to improve the knowledge of Andalusia +LICENSE= CC-BY-NC-SA-2.0 + LIB_DEPENDS= libexpat.so:textproc/expat2 GNU_CONFIGURE= yes -USES= gmake +USES= gmake localbase USE_SDL= sdl image mixer -USE_GL= gl +USE_GL= gl glu -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CXXFLAGS+= -Wno-c++11-narrowing DATA_WRKSRC= ${WRKDIR}/${PORTNAME}-data-${PORTVERSION} Added: head/games/nimuh/files/patch-src_elements.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/nimuh/files/patch-src_elements.cpp Fri Jun 22 20:50:27 2018 (r473071) @@ -0,0 +1,11 @@ +--- src/elements.cpp.orig 2007-12-26 16:33:04 UTC ++++ src/elements.cpp +@@ -773,7 +773,7 @@ namespace Martian { + + void Frame::unLoad() { + glDeleteTextures( 1, &texture ); +- glBindTexture(GL_TEXTURE_2D,NULL); ++ glBindTexture(GL_TEXTURE_2D,0); + } + + From owner-svn-ports-head@freebsd.org Fri Jun 22 20:55:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB7B310272DF; Fri, 22 Jun 2018 20:55:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 788AF81A12; Fri, 22 Jun 2018 20:55:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 594F525DF8; Fri, 22 Jun 2018 20:55:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MKtDUv090224; Fri, 22 Jun 2018 20:55:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MKtD72090223; Fri, 22 Jun 2018 20:55:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222055.w5MKtD72090223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 20:55:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473072 - head/games/hex-a-hop X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/hex-a-hop X-SVN-Commit-Revision: 473072 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 20:55:14 -0000 Author: amdmi3 Date: Fri Jun 22 20:55:12 2018 New Revision: 473072 URL: https://svnweb.freebsd.org/changeset/ports/473072 Log: - Add LICENSE - Switch to USES=localbase - Fix build with clang 6 Modified: head/games/hex-a-hop/Makefile Modified: head/games/hex-a-hop/Makefile ============================================================================== --- head/games/hex-a-hop/Makefile Fri Jun 22 20:50:27 2018 (r473071) +++ head/games/hex-a-hop/Makefile Fri Jun 22 20:55:12 2018 (r473072) @@ -10,13 +10,14 @@ MASTER_SITES= SF/${PORTNAME:S/-//g}/${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Puzzle game based on hexagonal tiles -USES= iconv +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= iconv localbase USE_SDL= sdl GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CXXFLAGS+= -Wno-c++11-narrowing OPTIONS_DEFINE= PANGO SOUND NLS DEBUG OPTIONS_DEFAULT= SOUND @@ -42,6 +43,6 @@ DESKTOP_ENTRIES="Hex-a-Hop" "${COMMENT}" \ "hex-a-hop" "LogicGame;Game;" false post-patch: - ${REINPLACE_CMD} -E '/CFLAGS|CXXFLAGS/s/-g//' ${WRKSRC}/configure + @${REINPLACE_CMD} -E '/CFLAGS|CXXFLAGS/s/-g//' ${WRKSRC}/configure .include From owner-svn-ports-head@freebsd.org Fri Jun 22 21:00:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8522B1027540; Fri, 22 Jun 2018 21:00:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39BE281E63; Fri, 22 Jun 2018 21:00:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1ADED25DFD; Fri, 22 Jun 2018 21:00: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 w5ML0Ta9090648; Fri, 22 Jun 2018 21:00:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ML0TIX090647; Fri, 22 Jun 2018 21:00:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222100.w5ML0TIX090647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 21:00:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473073 - head/games/kartofel X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/kartofel X-SVN-Commit-Revision: 473073 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:00:30 -0000 Author: amdmi3 Date: Fri Jun 22 21:00:29 2018 New Revision: 473073 URL: https://svnweb.freebsd.org/changeset/ports/473073 Log: - Fix build with clang 6 - Cosmetic fixes Modified: head/games/kartofel/Makefile Modified: head/games/kartofel/Makefile ============================================================================== --- head/games/kartofel/Makefile Fri Jun 22 20:55:12 2018 (r473072) +++ head/games/kartofel/Makefile Fri Jun 22 21:00:29 2018 (r473073) @@ -18,6 +18,8 @@ USE_SDL= sdl gfx mixer image ttf ALL_TARGET= default +CXXFLAGS+= -Wno-c++11-narrowing + DATA_DIRS= sounds fonts music images levels PLIST_FILES= bin/${PORTNAME} @@ -39,7 +41,7 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/kartofel ${STAGEDIR}${PREFIX}/bin - ${MKDIR} ${STAGEDIR}${DATADIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} "${DATA_DIRS}" ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} "${DATA_DIRS}" ${STAGEDIR}${DATADIR} .include From owner-svn-ports-head@freebsd.org Fri Jun 22 21:04:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C650010277C7; Fri, 22 Jun 2018 21:04:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C3FA822DE; Fri, 22 Jun 2018 21:04:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4948225F87; Fri, 22 Jun 2018 21:04:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5ML4Nx7095931; Fri, 22 Jun 2018 21:04:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5ML4MfS095925; Fri, 22 Jun 2018 21:04:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222104.w5ML4MfS095925@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 21:04:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473074 - in head/games/stormbaancoureur: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/stormbaancoureur: . files X-SVN-Commit-Revision: 473074 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:04:24 -0000 Author: amdmi3 Date: Fri Jun 22 21:04:21 2018 New Revision: 473074 URL: https://svnweb.freebsd.org/changeset/ports/473074 Log: - Add LICENSE - Add missing gl depends - Fix build with clang 6 - Regenerate patches Modified: head/games/stormbaancoureur/Makefile head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.cxx head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.h head/games/stormbaancoureur/files/patch-src-stormbaancoureur-Makefile head/games/stormbaancoureur/files/patch-src-stormbaancoureur-controllerpad.cxx head/games/stormbaancoureur/files/patch-src-stormbaancoureur-main.cxx Modified: head/games/stormbaancoureur/Makefile ============================================================================== --- head/games/stormbaancoureur/Makefile Fri Jun 22 21:00:29 2018 (r473073) +++ head/games/stormbaancoureur/Makefile Fri Jun 22 21:04:21 2018 (r473074) @@ -11,12 +11,16 @@ MASTER_SITES= http://www.stolk.org/stormbaancoureur/do MAINTAINER= amdmi3@FreeBSD.org COMMENT= Simulated obstacle course for automobiles +LICENSE= GPLv3 + BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ ${LOCALBASE}/lib/libode.a:devel/ode -USE_GL= glut +USE_GL= gl glu glut MAKE_ENV= DATADIR="${DATADIR}" + +CXXFLAGS+= -Wno-c++11-narrowing BUILD_WRKSRC= ${WRKSRC}/src-stormbaancoureur INSTALL_WRKSRC= ${WRKSRC}/src-stormbaancoureur Modified: head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.cxx ============================================================================== --- head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.cxx Fri Jun 22 21:00:29 2018 (r473073) +++ head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.cxx Fri Jun 22 21:04:21 2018 (r473074) @@ -1,6 +1,6 @@ ---- src-common/soundenginealsa.cxx.orig 2008-03-22 21:45:22.000000000 +0300 -+++ src-common/soundenginealsa.cxx 2008-03-30 17:58:09.000000000 +0400 -@@ -38,219 +38,46 @@ +--- src-common/soundenginealsa.cxx.orig 2008-06-18 01:36:34 UTC ++++ src-common/soundenginealsa.cxx +@@ -38,219 +38,46 @@ SoundEngineAlsa::SoundEngineAlsa(int lag complexfeed(0), enginefeed(0), activefeed(0), Modified: head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.h ============================================================================== --- head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.h Fri Jun 22 21:00:29 2018 (r473073) +++ head/games/stormbaancoureur/files/extra-patch-src-common-soundenginealsa.h Fri Jun 22 21:04:21 2018 (r473074) @@ -1,15 +1,15 @@ ---- src-common/soundenginealsa.h.orig 2008-01-03 07:29:23.000000000 +0300 -+++ src-common/soundenginealsa.h 2008-02-09 00:52:09.000000000 +0300 -@@ -2,8 +2,6 @@ - #ifndef SOUNDENGINE_ALSA_H - #define SOUNDENGINE_ALSA_H +--- src-common/soundenginealsa.h.orig 2008-04-20 16:00:03 UTC ++++ src-common/soundenginealsa.h +@@ -4,8 +4,6 @@ + #include + -#include - class SoundClip; class SoundFeed; class SoundFeedSimple; -@@ -29,9 +27,6 @@ +@@ -31,9 +29,6 @@ class SoundEngineAlsa SoundFeedModulated *modulatedfeed; SoundFeedEngine *enginefeed; SoundFeed *activefeed; Modified: head/games/stormbaancoureur/files/patch-src-stormbaancoureur-Makefile ============================================================================== --- head/games/stormbaancoureur/files/patch-src-stormbaancoureur-Makefile Fri Jun 22 21:00:29 2018 (r473073) +++ head/games/stormbaancoureur/files/patch-src-stormbaancoureur-Makefile Fri Jun 22 21:04:21 2018 (r473074) @@ -1,6 +1,6 @@ ---- src-stormbaancoureur/Makefile.orig 2008-06-11 18:12:01.000000000 +0400 -+++ src-stormbaancoureur/Makefile 2013-09-30 06:14:07.576519380 +0400 -@@ -5,23 +5,20 @@ +--- src-stormbaancoureur/Makefile.orig 2009-12-01 03:23:51 UTC ++++ src-stormbaancoureur/Makefile +@@ -5,23 +5,20 @@ VERSION=2.1.6-generic GLPREFIX=/usr PLIBPREFIX=/usr ODEPREFIX=/usr @@ -29,7 +29,7 @@ OBJS=\ -@@ -39,15 +36,15 @@ +@@ -39,15 +36,15 @@ OBJS=\ LIBS=\ @@ -48,7 +48,7 @@ $(CXX) -o stormbaancoureur $(OBJS) $(LFLAGS) $(LIBS) staticworldobject.o: ../src-common/staticworldobject.cxx ../src-common/staticworldobject.h ../src-common/worldobject.h -@@ -92,16 +89,15 @@ +@@ -92,16 +89,15 @@ run: stormbaancoureur clean: rm -f *.o stormbaancoureur Modified: head/games/stormbaancoureur/files/patch-src-stormbaancoureur-controllerpad.cxx ============================================================================== --- head/games/stormbaancoureur/files/patch-src-stormbaancoureur-controllerpad.cxx Fri Jun 22 21:00:29 2018 (r473073) +++ head/games/stormbaancoureur/files/patch-src-stormbaancoureur-controllerpad.cxx Fri Jun 22 21:04:21 2018 (r473074) @@ -1,6 +1,6 @@ ---- src-stormbaancoureur/controllerpad.cxx.orig Mon Jul 17 00:26:08 2006 -+++ src-stormbaancoureur/controllerpad.cxx Mon Jul 17 00:28:23 2006 -@@ -14,7 +14,6 @@ +--- src-stormbaancoureur/controllerpad.cxx.orig 2008-04-20 15:56:35 UTC ++++ src-stormbaancoureur/controllerpad.cxx +@@ -15,7 +15,6 @@ #include #include #else @@ -8,7 +8,7 @@ #include // for ioctl() #include // for close() #include // for perror() -@@ -81,100 +80,7 @@ +@@ -82,100 +81,7 @@ action_button(-1), accel_axis(-1), accel_button(-1) { @@ -110,7 +110,7 @@ } -@@ -194,80 +100,6 @@ +@@ -195,80 +101,6 @@ ControllerPad::~ControllerPad() void ControllerPad::Sustain(float dt) { Modified: head/games/stormbaancoureur/files/patch-src-stormbaancoureur-main.cxx ============================================================================== --- head/games/stormbaancoureur/files/patch-src-stormbaancoureur-main.cxx Fri Jun 22 21:00:29 2018 (r473073) +++ head/games/stormbaancoureur/files/patch-src-stormbaancoureur-main.cxx Fri Jun 22 21:04:21 2018 (r473074) @@ -1,6 +1,6 @@ ---- src-stormbaancoureur/main.cxx.orig 2007-12-28 23:09:41.000000000 +0300 -+++ src-stormbaancoureur/main.cxx 2007-12-31 16:48:41.000000000 +0300 -@@ -1176,12 +1176,7 @@ +--- src-stormbaancoureur/main.cxx.orig 2008-04-20 15:58:29 UTC ++++ src-stormbaancoureur/main.cxx +@@ -837,12 +837,7 @@ int main(int argc, char *argv[]) fprintf(stderr,"OpenDE is (c) by Russel L. Smith\n"); char *bindirname = dirname(argv[0]); From owner-svn-ports-head@freebsd.org Fri Jun 22 21:14:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 197E51027B84; Fri, 22 Jun 2018 21:14:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFE15828F4; Fri, 22 Jun 2018 21:14:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A111226120; Fri, 22 Jun 2018 21:14:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLEj1w001044; Fri, 22 Jun 2018 21:14:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLEjcr001042; Fri, 22 Jun 2018 21:14:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222114.w5MLEjcr001042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:14:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473075 - head/graphics/lximage-qt X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/graphics/lximage-qt X-SVN-Commit-Revision: 473075 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:14:46 -0000 Author: swills Date: Fri Jun 22 21:14:44 2018 New Revision: 473075 URL: https://svnweb.freebsd.org/changeset/ports/473075 Log: graphics/lximage-qt: Update to 0.7.0 While here, pass maintainership to submitter. PR: 228510 Submitted by: Jesper Schmitz Mouridsen Modified: head/graphics/lximage-qt/Makefile (contents, props changed) head/graphics/lximage-qt/distinfo (contents, props changed) Modified: head/graphics/lximage-qt/Makefile ============================================================================== --- head/graphics/lximage-qt/Makefile Fri Jun 22 21:04:21 2018 (r473074) +++ head/graphics/lximage-qt/Makefile Fri Jun 22 21:14:44 2018 (r473075) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= lximage-qt -PORTVERSION= 0.6.0 +PORTVERSION= 0.7.0 CATEGORIES= graphics MASTER_SITES= LXQT -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jesper@schmitz.computer COMMENT= Image viewer and screenshot tool LICENSE= GPLv2 Modified: head/graphics/lximage-qt/distinfo ============================================================================== --- head/graphics/lximage-qt/distinfo Fri Jun 22 21:04:21 2018 (r473074) +++ head/graphics/lximage-qt/distinfo Fri Jun 22 21:14:44 2018 (r473075) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508765391 -SHA256 (lxqt/lximage-qt-0.6.0.tar.xz) = d560d0d47de64975d3f1712faa267a7eda117b9e2f5773ba30b359703d2149e1 -SIZE (lxqt/lximage-qt-0.6.0.tar.xz) = 41576 +TIMESTAMP = 1527343539 +SHA256 (lxqt/lximage-qt-0.7.0.tar.xz) = 1cac20e51db395eaba1c137d578f68a676a271a173a9aaad4ed92b99a98192d7 +SIZE (lxqt/lximage-qt-0.7.0.tar.xz) = 41560 From owner-svn-ports-head@freebsd.org Fri Jun 22 21:15:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9C321027C0F; Fri, 22 Jun 2018 21:15:53 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A53782A29; Fri, 22 Jun 2018 21:15: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6B6A426123; Fri, 22 Jun 2018 21:15: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 w5MLFrmw001293; Fri, 22 Jun 2018 21:15:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLFqgn001290; Fri, 22 Jun 2018 21:15:52 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806222115.w5MLFqgn001290@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 22 Jun 2018 21:15:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473076 - in head/www: firefox firefox-i18n X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www: firefox firefox-i18n X-SVN-Commit-Revision: 473076 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:15:54 -0000 Author: jbeich Date: Fri Jun 22 21:15:52 2018 New Revision: 473076 URL: https://svnweb.freebsd.org/changeset/ports/473076 Log: www/firefox: switch to rc3 Changes: https://hg.mozilla.org/releases/mozilla-release/pushloghtml?startdate=2018-06-19&enddate=2018-06-22 Security: see upstream bug 1464039 and bug 1458048 Modified: head/www/firefox-i18n/Makefile (contents, props changed) head/www/firefox-i18n/distinfo (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/distinfo (contents, props changed) Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Fri Jun 22 21:14:44 2018 (r473075) +++ head/www/firefox-i18n/Makefile Fri Jun 22 21:15:52 2018 (r473076) @@ -3,9 +3,10 @@ PORTNAME= firefox-i18n PORTVERSION= 61.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build3/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: head/www/firefox-i18n/distinfo ============================================================================== --- head/www/firefox-i18n/distinfo Fri Jun 22 21:14:44 2018 (r473075) +++ head/www/firefox-i18n/distinfo Fri Jun 22 21:15:52 2018 (r473076) @@ -1,197 +1,197 @@ -TIMESTAMP = 1529363060 -SHA256 (xpi/firefox-i18n-61.0/ach.xpi) = 4ff0f07119bb1a8f53293b82760d23bd001a957a6c8c21241a79f20ea689ea54 -SIZE (xpi/firefox-i18n-61.0/ach.xpi) = 468315 -SHA256 (xpi/firefox-i18n-61.0/af.xpi) = a575a9b471c911de70eba83dca6a36177b2c8d93a0820d2ce719e91c439b2166 -SIZE (xpi/firefox-i18n-61.0/af.xpi) = 458282 -SHA256 (xpi/firefox-i18n-61.0/an.xpi) = 2f2e969cbcdf8e0ffeb1446ec0d9e4399061c8a9044334f1cc91599de0579693 -SIZE (xpi/firefox-i18n-61.0/an.xpi) = 492776 -SHA256 (xpi/firefox-i18n-61.0/ar.xpi) = d1f69c6e645d4d1e2d05d4cb5613e83f77234c2c1f48a58053ebe9043ee12d3d -SIZE (xpi/firefox-i18n-61.0/ar.xpi) = 514909 -SHA256 (xpi/firefox-i18n-61.0/as.xpi) = ebb0bc6249193cf503947c536fdf66d7777538f3328476947d9eaf5b3a505c97 -SIZE (xpi/firefox-i18n-61.0/as.xpi) = 498325 -SHA256 (xpi/firefox-i18n-61.0/ast.xpi) = 0031dde4c27ae3c097a65757a97e2a418236243bd6520dd4aa13b182eb63d606 +TIMESTAMP = 1529611471 +SHA256 (xpi/firefox-i18n-61.0/ach.xpi) = 81376263077a639a0df7dc4f160354043298590782ea7d70c42a789df50f1a32 +SIZE (xpi/firefox-i18n-61.0/ach.xpi) = 468310 +SHA256 (xpi/firefox-i18n-61.0/af.xpi) = 84340ef11e67bae138d932fdcce967affa5966a0c5ab01f2cc03d6f68298f2aa +SIZE (xpi/firefox-i18n-61.0/af.xpi) = 458272 +SHA256 (xpi/firefox-i18n-61.0/an.xpi) = 7493be648f7def011e18f6c75290c6def9fac3f3ab4950b4b12b588e212f4a77 +SIZE (xpi/firefox-i18n-61.0/an.xpi) = 492775 +SHA256 (xpi/firefox-i18n-61.0/ar.xpi) = ea4596b8811ae7e7f59f501cb3227232812bd53f3def103ad2bf549cb79d2abb +SIZE (xpi/firefox-i18n-61.0/ar.xpi) = 514910 +SHA256 (xpi/firefox-i18n-61.0/as.xpi) = 4540af01013705c0aea6741a0e213f4874afcb14e34e90a150b19c94e38bfe0a +SIZE (xpi/firefox-i18n-61.0/as.xpi) = 498320 +SHA256 (xpi/firefox-i18n-61.0/ast.xpi) = 6d18813b2e05fe16f66f9f0c82a8e08a3a6fa2890be393c80c301110dd81d800 SIZE (xpi/firefox-i18n-61.0/ast.xpi) = 478587 -SHA256 (xpi/firefox-i18n-61.0/az.xpi) = f3665e6cbc8872a917511b1de28792df8d2358e27ea48be61699b02ceb9dac30 -SIZE (xpi/firefox-i18n-61.0/az.xpi) = 494285 -SHA256 (xpi/firefox-i18n-61.0/be.xpi) = 621c76bb5412097875f8b8435a59b81f39bdcc009fdf743296a59da0884b9cb0 +SHA256 (xpi/firefox-i18n-61.0/az.xpi) = e7c42a5364a722e5f6f2351a038ff8c6d70742da71669019810d5537d36f0e39 +SIZE (xpi/firefox-i18n-61.0/az.xpi) = 494290 +SHA256 (xpi/firefox-i18n-61.0/be.xpi) = 0ebf8acad8a81680c135a3c5e2a323cba2207e13edeff400305e492f2c24fe05 SIZE (xpi/firefox-i18n-61.0/be.xpi) = 550840 -SHA256 (xpi/firefox-i18n-61.0/bg.xpi) = 967921d5d1d6d1538572cab57c732fa2aa136baf9f5ef771f5cb6e7af3b882df -SIZE (xpi/firefox-i18n-61.0/bg.xpi) = 541818 -SHA256 (xpi/firefox-i18n-61.0/bn-BD.xpi) = 299397a1c23b1ff0c00db81beef7c911908dadece988b21c06ca2677ab656f01 -SIZE (xpi/firefox-i18n-61.0/bn-BD.xpi) = 556530 -SHA256 (xpi/firefox-i18n-61.0/bn-IN.xpi) = ac7b4891cfc627fbadebaff5a968a5507ede126641ac954dbaed415887d14ee8 -SIZE (xpi/firefox-i18n-61.0/bn-IN.xpi) = 535413 -SHA256 (xpi/firefox-i18n-61.0/br.xpi) = e7320413b5314c86d50b8303fb6811d655521fc7ead452dba14fd49a583398f9 -SIZE (xpi/firefox-i18n-61.0/br.xpi) = 486575 -SHA256 (xpi/firefox-i18n-61.0/bs.xpi) = 3fc348bfd1f84ae9fddc437e47568a7d45b55ca7a66d30ca2af2632f91d054e5 -SIZE (xpi/firefox-i18n-61.0/bs.xpi) = 489126 -SHA256 (xpi/firefox-i18n-61.0/ca.xpi) = 27de4ea1d34c3f8168d4a7cecb7d231e1b7b87e89bb4038df27cfc7ef5050efd -SIZE (xpi/firefox-i18n-61.0/ca.xpi) = 497516 -SHA256 (xpi/firefox-i18n-61.0/cak.xpi) = 4816243359dfb7f583f93b36c2834c605ca0f2d45b9cbbd6a8dfdccc5e486b20 -SIZE (xpi/firefox-i18n-61.0/cak.xpi) = 509333 -SHA256 (xpi/firefox-i18n-61.0/cs.xpi) = 770ed446a0085c965d9892ac6b0ad8084972e06064fd4d198b1b099648ab29ee -SIZE (xpi/firefox-i18n-61.0/cs.xpi) = 502595 -SHA256 (xpi/firefox-i18n-61.0/cy.xpi) = bb66b94fe6187b4972d4961e62f597da5df64b5da066b6b845df9fa3d5c4ba16 -SIZE (xpi/firefox-i18n-61.0/cy.xpi) = 490414 -SHA256 (xpi/firefox-i18n-61.0/da.xpi) = 35b316521b48446779c1f2745947361bb703c822ee67fe6a74e86223e85bb67e +SHA256 (xpi/firefox-i18n-61.0/bg.xpi) = 4ece264c89c8255c74bf65c6a5d25a44af37609e25cc64217c21179accdeaffc +SIZE (xpi/firefox-i18n-61.0/bg.xpi) = 541823 +SHA256 (xpi/firefox-i18n-61.0/bn-BD.xpi) = 8357eee0afe8a67521b2273ef931bf216b06aa3b47add5a11534727080b8cbea +SIZE (xpi/firefox-i18n-61.0/bn-BD.xpi) = 556536 +SHA256 (xpi/firefox-i18n-61.0/bn-IN.xpi) = dce2996cd26162637f4f9a7a8bca61e8d4b8499175231da3580a482c66b91b4c +SIZE (xpi/firefox-i18n-61.0/bn-IN.xpi) = 535412 +SHA256 (xpi/firefox-i18n-61.0/br.xpi) = 338862ca53012668fd5da30e81ae15f4f9255731110ef3c844154b71e3e8931b +SIZE (xpi/firefox-i18n-61.0/br.xpi) = 486576 +SHA256 (xpi/firefox-i18n-61.0/bs.xpi) = da9600f62ef968b429a5d437e48f84308ced217516a3b80949e396b09bd155d5 +SIZE (xpi/firefox-i18n-61.0/bs.xpi) = 489134 +SHA256 (xpi/firefox-i18n-61.0/ca.xpi) = 2afdf45e104400f8c154aeaef8b6099f06fa1ee00cd77353422b8782c80493d5 +SIZE (xpi/firefox-i18n-61.0/ca.xpi) = 497520 +SHA256 (xpi/firefox-i18n-61.0/cak.xpi) = 2dae7c9fbff7b95e02246020518f044c97efdb25264523041fc305bc515dd787 +SIZE (xpi/firefox-i18n-61.0/cak.xpi) = 509328 +SHA256 (xpi/firefox-i18n-61.0/cs.xpi) = 859aeb9a8927fb6dbc5a29a91492989bc5a60204fbc3f8f01ad2009f89d636f9 +SIZE (xpi/firefox-i18n-61.0/cs.xpi) = 502598 +SHA256 (xpi/firefox-i18n-61.0/cy.xpi) = 6769521271903468ecd9065b418646c32cb36b617b4f628bcbd6d6e72081b879 +SIZE (xpi/firefox-i18n-61.0/cy.xpi) = 490416 +SHA256 (xpi/firefox-i18n-61.0/da.xpi) = da9c71cc15f0fbbb272500aba824ac485fcde321e969b50e533dd71b2c5f89d6 SIZE (xpi/firefox-i18n-61.0/da.xpi) = 483618 -SHA256 (xpi/firefox-i18n-61.0/de.xpi) = 6aadc1264f5fd8efb3694ff08a5efb75297fc294f0a680203aae74cc070f35b8 +SHA256 (xpi/firefox-i18n-61.0/de.xpi) = da95616a965a18506033d090ea51cd5875114523ba66587ea8d9e4ca06182e1a SIZE (xpi/firefox-i18n-61.0/de.xpi) = 502283 -SHA256 (xpi/firefox-i18n-61.0/dsb.xpi) = ccbff842b6764116b47385d2287461963fb5ac7b78f1f2aae4a8e18aed78458d -SIZE (xpi/firefox-i18n-61.0/dsb.xpi) = 512450 -SHA256 (xpi/firefox-i18n-61.0/el.xpi) = edd6f8dde4981106bf737717229a03ba651f34dc425d5840837d40070e843c8b -SIZE (xpi/firefox-i18n-61.0/el.xpi) = 559690 -SHA256 (xpi/firefox-i18n-61.0/en-GB.xpi) = 9afdfac520fc213693673987a6b051822935915ad887c77119328a3e18ae8d20 -SIZE (xpi/firefox-i18n-61.0/en-GB.xpi) = 464877 -SHA256 (xpi/firefox-i18n-61.0/en-US.xpi) = 36de1f6d998c18f3bcf3ea5e7f14aaa355311fa9218a3fb4a6954f8d5dea04d4 -SIZE (xpi/firefox-i18n-61.0/en-US.xpi) = 456416 -SHA256 (xpi/firefox-i18n-61.0/en-ZA.xpi) = 1a8d3d838a06d6ed4a92c7c9a20bdeb3daa51b277b579d7d54f84cb9dc4a50f0 -SIZE (xpi/firefox-i18n-61.0/en-ZA.xpi) = 446645 -SHA256 (xpi/firefox-i18n-61.0/eo.xpi) = 3f709d3f28be0ed4cd8248a7237fcb98080a32a5f9926dc1cac1dd0e8cd2036f -SIZE (xpi/firefox-i18n-61.0/eo.xpi) = 484761 -SHA256 (xpi/firefox-i18n-61.0/es-AR.xpi) = 9e98d6f9c26ff5b9c493f1358311a61ea0b1d7bfc347acb92a0fc1a30a330268 -SIZE (xpi/firefox-i18n-61.0/es-AR.xpi) = 498194 -SHA256 (xpi/firefox-i18n-61.0/es-CL.xpi) = 772f0f0b1c819cdad977a1cc1eeb45a7e20b4cd13e565b3c009101612783647a -SIZE (xpi/firefox-i18n-61.0/es-CL.xpi) = 500856 -SHA256 (xpi/firefox-i18n-61.0/es-ES.xpi) = 478ac6255f1a78eccc84ae147ec20a04dc8b2b81da14531614f1fb5e84a53824 -SIZE (xpi/firefox-i18n-61.0/es-ES.xpi) = 435906 -SHA256 (xpi/firefox-i18n-61.0/es-MX.xpi) = ab8875565143f143c6be267f4f2ac27d93518eaacfb36207ed3a25a43bd43cc5 -SIZE (xpi/firefox-i18n-61.0/es-MX.xpi) = 500944 -SHA256 (xpi/firefox-i18n-61.0/et.xpi) = 7472975fc121194c15c5fa30374eafbced8a284cd05d1ea32f83f6b8483caf63 -SIZE (xpi/firefox-i18n-61.0/et.xpi) = 477542 -SHA256 (xpi/firefox-i18n-61.0/eu.xpi) = 5f69e9bbd37ff36807a5d70f5c8180a1776201f666ef6475fd265aad7c5c53be +SHA256 (xpi/firefox-i18n-61.0/dsb.xpi) = 4522ccd3e85a2a6c8d823ff598c4d2cf1161ad3e51d15fd93b0a5d114eec5b45 +SIZE (xpi/firefox-i18n-61.0/dsb.xpi) = 512451 +SHA256 (xpi/firefox-i18n-61.0/el.xpi) = b87c388daaac4a811a82ff1e1318f4655e9ba80798ba82c00bc5eb813ace1556 +SIZE (xpi/firefox-i18n-61.0/el.xpi) = 559691 +SHA256 (xpi/firefox-i18n-61.0/en-GB.xpi) = c4dde8f507afcbd75466d1d16049227b5b8889e5713607c728f1ba914b0a808e +SIZE (xpi/firefox-i18n-61.0/en-GB.xpi) = 464875 +SHA256 (xpi/firefox-i18n-61.0/en-US.xpi) = ca833b1e4bf09a9876394daa81a49f3b314accd9a0491266beefed7c61479be7 +SIZE (xpi/firefox-i18n-61.0/en-US.xpi) = 456419 +SHA256 (xpi/firefox-i18n-61.0/en-ZA.xpi) = f703ceee50033cbabaad718fbb0740e569e73f61ddc1df6394a458e084864fb2 +SIZE (xpi/firefox-i18n-61.0/en-ZA.xpi) = 446640 +SHA256 (xpi/firefox-i18n-61.0/eo.xpi) = df73ab6175e45dc0b17b735ce299bcb6702b1b61aa3fdf5f37b59394ef171447 +SIZE (xpi/firefox-i18n-61.0/eo.xpi) = 484754 +SHA256 (xpi/firefox-i18n-61.0/es-AR.xpi) = d1724db8da185cad11a8809f3ef77876818eef8ad3231e84018461ef1b874134 +SIZE (xpi/firefox-i18n-61.0/es-AR.xpi) = 498191 +SHA256 (xpi/firefox-i18n-61.0/es-CL.xpi) = d1cf80c4cf7a1acd1f5cdac6ebb9510e23653370bea12e1db6e5c5e60bb41605 +SIZE (xpi/firefox-i18n-61.0/es-CL.xpi) = 500855 +SHA256 (xpi/firefox-i18n-61.0/es-ES.xpi) = a0ab6bc595321debd89c552873d02ffbe52da1e2e23fb0bf9e7ed6c78bf03054 +SIZE (xpi/firefox-i18n-61.0/es-ES.xpi) = 435902 +SHA256 (xpi/firefox-i18n-61.0/es-MX.xpi) = 22b801bc0b8a9df2da8db24a631927f1a7811c39fa20d2f8411312c3e302e566 +SIZE (xpi/firefox-i18n-61.0/es-MX.xpi) = 500950 +SHA256 (xpi/firefox-i18n-61.0/et.xpi) = e4475907568d860b7a22c9e5bac2cb0b8eccb554969dc0302999b2bd3ccc51ea +SIZE (xpi/firefox-i18n-61.0/et.xpi) = 477548 +SHA256 (xpi/firefox-i18n-61.0/eu.xpi) = 0c4571b60b88b12f61fdc05f14b6f1b8f45b52287cb9eac8ab963562a7d958ef SIZE (xpi/firefox-i18n-61.0/eu.xpi) = 488816 -SHA256 (xpi/firefox-i18n-61.0/fa.xpi) = 5fa1d36c12de82753062850b8a34366f237b9083a1ed029e64bbbf3fe9ef530d -SIZE (xpi/firefox-i18n-61.0/fa.xpi) = 537573 -SHA256 (xpi/firefox-i18n-61.0/ff.xpi) = 12dcc07546d56a193bed1c221f738ca5c6bf33a65de2e35bd9deeb950955c205 -SIZE (xpi/firefox-i18n-61.0/ff.xpi) = 483852 -SHA256 (xpi/firefox-i18n-61.0/fi.xpi) = de825d8efd96d3be1143d4c3c38c086303ae99b6ae6016c06743327fb53c6573 -SIZE (xpi/firefox-i18n-61.0/fi.xpi) = 479926 -SHA256 (xpi/firefox-i18n-61.0/fr.xpi) = 5a412bcb07eb0f6cc18ad261cbdb70d591bc9203ba90f9f31b82f27eb821c19e -SIZE (xpi/firefox-i18n-61.0/fr.xpi) = 507142 -SHA256 (xpi/firefox-i18n-61.0/fy-NL.xpi) = f704a7071efbec6f224eb218117caa892e3b9b7cf3e1a95059f8f8f6138b5886 -SIZE (xpi/firefox-i18n-61.0/fy-NL.xpi) = 497982 -SHA256 (xpi/firefox-i18n-61.0/ga-IE.xpi) = a1cd760b5e516c2ce49ea486abd5255134ac807b59778f6e6aa624433b9b87fc -SIZE (xpi/firefox-i18n-61.0/ga-IE.xpi) = 495805 -SHA256 (xpi/firefox-i18n-61.0/gd.xpi) = 71e64d95918a8e709fd985a2c459797529b556209b79453f3e379a1f4a8cd534 -SIZE (xpi/firefox-i18n-61.0/gd.xpi) = 497605 -SHA256 (xpi/firefox-i18n-61.0/gl.xpi) = 3f11ddedb54e3c51b9d49f931770599be7b10e7455001f84b813f156803415b2 -SIZE (xpi/firefox-i18n-61.0/gl.xpi) = 471912 -SHA256 (xpi/firefox-i18n-61.0/gn.xpi) = bfb61578ba13e7866aa952d93e2218a4efc9d8042d6eab90efef3194505bc06b -SIZE (xpi/firefox-i18n-61.0/gn.xpi) = 506407 -SHA256 (xpi/firefox-i18n-61.0/gu-IN.xpi) = 54ab192252fa174aa514c61fe2358be1c8c5be22e1c244d062eddf6ccd6046d3 -SIZE (xpi/firefox-i18n-61.0/gu-IN.xpi) = 557297 -SHA256 (xpi/firefox-i18n-61.0/he.xpi) = a8274869e11dc27b1733e9598ab316f900075aeba606ae027edfdd8047027729 -SIZE (xpi/firefox-i18n-61.0/he.xpi) = 505556 -SHA256 (xpi/firefox-i18n-61.0/hi-IN.xpi) = 4d10b16402ca6e5112ef3aa0392a695d0237450a3c2dd7a2693e6415a39f7cf5 +SHA256 (xpi/firefox-i18n-61.0/fa.xpi) = 01facb4effc8c42f898f0e1f76c2ca73e04b4ec506f6837a4572df0195de54fc +SIZE (xpi/firefox-i18n-61.0/fa.xpi) = 537569 +SHA256 (xpi/firefox-i18n-61.0/ff.xpi) = cbb3fbd66dd978a48e206b8c346b04ad444f67afb596846295057d21e36282cd +SIZE (xpi/firefox-i18n-61.0/ff.xpi) = 483849 +SHA256 (xpi/firefox-i18n-61.0/fi.xpi) = 1276c23a9a6f10b7c4aac59c9e491970e195df109a5de36ebc60cf94915e2780 +SIZE (xpi/firefox-i18n-61.0/fi.xpi) = 479928 +SHA256 (xpi/firefox-i18n-61.0/fr.xpi) = db066b4e73c962aaeb3c8756d30e929d333b1aa67c313c9851e09b841895835e +SIZE (xpi/firefox-i18n-61.0/fr.xpi) = 507141 +SHA256 (xpi/firefox-i18n-61.0/fy-NL.xpi) = 05cd67ee6422fe7ed089541d90f73a3baf88fa8e9653bf2eb1de4f60d3442112 +SIZE (xpi/firefox-i18n-61.0/fy-NL.xpi) = 497986 +SHA256 (xpi/firefox-i18n-61.0/ga-IE.xpi) = 54438b167939fcf94622f98190d13c8a3fd77aec22cbf087223b434452315e7f +SIZE (xpi/firefox-i18n-61.0/ga-IE.xpi) = 495804 +SHA256 (xpi/firefox-i18n-61.0/gd.xpi) = 392b336d0494d5e364c31e12042eda32627ef40b77930602de4c1d306a1aa0d3 +SIZE (xpi/firefox-i18n-61.0/gd.xpi) = 497600 +SHA256 (xpi/firefox-i18n-61.0/gl.xpi) = ce90b2726134c1f4de19e0238dc23b110ad20065f216a33498f282c94657ec12 +SIZE (xpi/firefox-i18n-61.0/gl.xpi) = 471910 +SHA256 (xpi/firefox-i18n-61.0/gn.xpi) = c21270be60c8300c5975bea228d5941504cc8d81757b5392d11b90c0ca353750 +SIZE (xpi/firefox-i18n-61.0/gn.xpi) = 506405 +SHA256 (xpi/firefox-i18n-61.0/gu-IN.xpi) = ef4d075fc8b462b1fd7a0aee53432614e521421f52cd0e90cbbe88ea8e39421b +SIZE (xpi/firefox-i18n-61.0/gu-IN.xpi) = 557292 +SHA256 (xpi/firefox-i18n-61.0/he.xpi) = dce20732f2e5dfba243a9bf96c1956c3a0449fd81f4cacc43c350db32fabc96f +SIZE (xpi/firefox-i18n-61.0/he.xpi) = 505560 +SHA256 (xpi/firefox-i18n-61.0/hi-IN.xpi) = 1b8d7033480b6c2bffec3ce76c073a85142eca8ee6f9ede547207ca33d8f55a9 SIZE (xpi/firefox-i18n-61.0/hi-IN.xpi) = 559344 -SHA256 (xpi/firefox-i18n-61.0/hr.xpi) = f8a9f1bdce13901a7932fbbef0d54004f5f222e4a0c7372b48f1f3454c8aa178 -SIZE (xpi/firefox-i18n-61.0/hr.xpi) = 486045 -SHA256 (xpi/firefox-i18n-61.0/hsb.xpi) = 84082c615cbb27ab990d2e5a9c18b2ac69750ffc1bcc9b715ee91d3188c786ff -SIZE (xpi/firefox-i18n-61.0/hsb.xpi) = 510217 -SHA256 (xpi/firefox-i18n-61.0/hu.xpi) = 47d2be51c52714acc9caedfc378f5d8170bf0eb94a680d60f9d338cd0ff39e6e -SIZE (xpi/firefox-i18n-61.0/hu.xpi) = 511138 -SHA256 (xpi/firefox-i18n-61.0/hy-AM.xpi) = e0f5638f4f61781ffbdb7c2f500993f7236860a152dc0febc155417f063ddbd6 -SIZE (xpi/firefox-i18n-61.0/hy-AM.xpi) = 537823 -SHA256 (xpi/firefox-i18n-61.0/ia.xpi) = 4aa0ed2456fa982b00b6906c03f36a7de8c17f342a9fbe2a3cdaa275f7ddd7f2 +SHA256 (xpi/firefox-i18n-61.0/hr.xpi) = a8a99bd1415e01764e4f317701f4e09377276da6db93e10e6e0ed9fb4885a7b1 +SIZE (xpi/firefox-i18n-61.0/hr.xpi) = 486049 +SHA256 (xpi/firefox-i18n-61.0/hsb.xpi) = ed9b9e3792757ef4ff7422e946bc78e84c9a0f1f8e69db03bb242c8c970de163 +SIZE (xpi/firefox-i18n-61.0/hsb.xpi) = 510213 +SHA256 (xpi/firefox-i18n-61.0/hu.xpi) = fd4018acb9730d98d1f3023539b6d00bde237eb9ea303cb311e88775821c8068 +SIZE (xpi/firefox-i18n-61.0/hu.xpi) = 511142 +SHA256 (xpi/firefox-i18n-61.0/hy-AM.xpi) = 4b4f55569b4f0b521365ed18edff1aa6ca06470c4abe5ef93b33956d1d9748de +SIZE (xpi/firefox-i18n-61.0/hy-AM.xpi) = 537817 +SHA256 (xpi/firefox-i18n-61.0/ia.xpi) = 16bae2d1c4cba9467a7d1845617f085ab5954db4ac813d18eb480ddcf8305074 SIZE (xpi/firefox-i18n-61.0/ia.xpi) = 483841 -SHA256 (xpi/firefox-i18n-61.0/id.xpi) = b1b4f6a9d5bd4b048508973c2f2bc89cf6ec6ffc9216736eba2210281eadba8b -SIZE (xpi/firefox-i18n-61.0/id.xpi) = 476106 -SHA256 (xpi/firefox-i18n-61.0/is.xpi) = 6c72add7fa50eed39dfd3a01bba517804cac7365de4d58c40f1565c0480fb576 -SIZE (xpi/firefox-i18n-61.0/is.xpi) = 482669 -SHA256 (xpi/firefox-i18n-61.0/it.xpi) = d90b3b8da4ae296f8989ebc38a7cbdaf8a7a5bfdb996c867b99accb75c317b46 +SHA256 (xpi/firefox-i18n-61.0/id.xpi) = 8cd75a88cb666e0fa816211dfb943b1c3d0bd71f1fae997b6b8e4021f9ebd43b +SIZE (xpi/firefox-i18n-61.0/id.xpi) = 476114 +SHA256 (xpi/firefox-i18n-61.0/is.xpi) = f2592d68efd9f0ed4b030b326233d777016916be9b9f61f7feaf47f29e58c427 +SIZE (xpi/firefox-i18n-61.0/is.xpi) = 482660 +SHA256 (xpi/firefox-i18n-61.0/it.xpi) = 2439855ef019a354d3dd2506a4b26603b622bc35d4fae982906285f4227cd9b2 SIZE (xpi/firefox-i18n-61.0/it.xpi) = 372491 -SHA256 (xpi/firefox-i18n-61.0/ja.xpi) = bce9e2fc73293dd74f230936df6529cbc3cde88cbb8da4f1caa47ff8b2298bbd -SIZE (xpi/firefox-i18n-61.0/ja.xpi) = 538258 -SHA256 (xpi/firefox-i18n-61.0/ka.xpi) = c4a88b5e33ab3e81334b4f75a4a3582f1b68b0ff6a6ce316f7d6aef20ff3f1d5 -SIZE (xpi/firefox-i18n-61.0/ka.xpi) = 525910 -SHA256 (xpi/firefox-i18n-61.0/kab.xpi) = dd94ef81e523077cf0f4eda7906b124d1aa8931cb4397115c36db6f7c6ecb391 -SIZE (xpi/firefox-i18n-61.0/kab.xpi) = 495569 -SHA256 (xpi/firefox-i18n-61.0/kk.xpi) = c0ae9c06aa45f3a21a97ae1474a8916de9caf64a9ea712e0c09bf48ad35c15d8 -SIZE (xpi/firefox-i18n-61.0/kk.xpi) = 553684 -SHA256 (xpi/firefox-i18n-61.0/km.xpi) = 3faa01bc4800bb5bd02a6c6dc1a22169de2e22838fbf6e8e0375dc7bf6614713 -SIZE (xpi/firefox-i18n-61.0/km.xpi) = 547198 -SHA256 (xpi/firefox-i18n-61.0/kn.xpi) = 0ee074666999e6df54324587ca5db10804d678a17b04691fecb6ad15ad19e37b -SIZE (xpi/firefox-i18n-61.0/kn.xpi) = 552594 -SHA256 (xpi/firefox-i18n-61.0/ko.xpi) = 83909986b09d95772edba3ec8dfe00ffc5e89d4efbd65e2e32b39fa530c71643 -SIZE (xpi/firefox-i18n-61.0/ko.xpi) = 519812 -SHA256 (xpi/firefox-i18n-61.0/lij.xpi) = e6b77c22576bfa8004deb1d5a0d061fe63329cededc3cfb90a52a154120841da -SIZE (xpi/firefox-i18n-61.0/lij.xpi) = 486945 -SHA256 (xpi/firefox-i18n-61.0/lt.xpi) = 7e09fe7d6558758bf0ac7f3e267f8c2b4a2cf298bde35d0f78a8de3a1db3fa65 -SIZE (xpi/firefox-i18n-61.0/lt.xpi) = 509390 -SHA256 (xpi/firefox-i18n-61.0/lv.xpi) = 2372a664eeccf2f6ec098ec77e66324bf78960987cf54a1b9c5da35806c059c1 -SIZE (xpi/firefox-i18n-61.0/lv.xpi) = 497552 -SHA256 (xpi/firefox-i18n-61.0/mai.xpi) = 248610a2c8b97b47d506ae28a182fcd39433fcf9bd8877c02b6d48b06fd05411 -SIZE (xpi/firefox-i18n-61.0/mai.xpi) = 518899 -SHA256 (xpi/firefox-i18n-61.0/mk.xpi) = d6536015b53676148a1ae7c8e486755e434c91e0943ce684619f885418847e2b -SIZE (xpi/firefox-i18n-61.0/mk.xpi) = 480669 -SHA256 (xpi/firefox-i18n-61.0/ml.xpi) = f8fe34b1a8f0644764d1be18961cf67b9e6903929453db3555af96e6b678aef1 -SIZE (xpi/firefox-i18n-61.0/ml.xpi) = 562449 -SHA256 (xpi/firefox-i18n-61.0/mr.xpi) = 9c85c36fab015a00ac8a37967e244732331a93337c819667b55931b148d77e1d -SIZE (xpi/firefox-i18n-61.0/mr.xpi) = 547457 -SHA256 (xpi/firefox-i18n-61.0/ms.xpi) = a30b9825ca7989dec5c79db7b37b71edf3a4a5dcb59841fa67ed23c54cc81d2c -SIZE (xpi/firefox-i18n-61.0/ms.xpi) = 483495 -SHA256 (xpi/firefox-i18n-61.0/my.xpi) = 0c40918cc7753227be7368975be8c3adc22737111c3b70182546ab2d63d85e7f -SIZE (xpi/firefox-i18n-61.0/my.xpi) = 536701 -SHA256 (xpi/firefox-i18n-61.0/nb-NO.xpi) = f8cb8b6085304b4fb71d00bb35b0def3992ef118593d45116167cdd198f9a8b0 -SIZE (xpi/firefox-i18n-61.0/nb-NO.xpi) = 483524 -SHA256 (xpi/firefox-i18n-61.0/ne-NP.xpi) = 9b7b57cb0f43f079f1c8cfe9512c9008d224685dafe2ea6a31315f9e65f58cfa -SIZE (xpi/firefox-i18n-61.0/ne-NP.xpi) = 523515 -SHA256 (xpi/firefox-i18n-61.0/nl.xpi) = 732f670ac95ccea8e723d2ffe45bba10061f577dbf6b0799a54641cd5118def6 -SIZE (xpi/firefox-i18n-61.0/nl.xpi) = 489007 -SHA256 (xpi/firefox-i18n-61.0/nn-NO.xpi) = ca0a7a0134a00bb4c2a7148ed4345f1a631151fed763e25c98507189765eb1dd -SIZE (xpi/firefox-i18n-61.0/nn-NO.xpi) = 483559 -SHA256 (xpi/firefox-i18n-61.0/oc.xpi) = f8430be11eb4327899ef6d512f1bc7fa98ba2db9bb2c042bc2f2cda7ca820924 -SIZE (xpi/firefox-i18n-61.0/oc.xpi) = 499696 -SHA256 (xpi/firefox-i18n-61.0/or.xpi) = 815d53ba74a731711dd851485844c64ab06c76ebb845f593dc915e34b6cd0ec9 -SIZE (xpi/firefox-i18n-61.0/or.xpi) = 508184 -SHA256 (xpi/firefox-i18n-61.0/pa-IN.xpi) = 26fe1b7f2338644ecacc4fa79b58c9695f81268e436927b9632eb3b98fb6b2a7 -SIZE (xpi/firefox-i18n-61.0/pa-IN.xpi) = 524502 -SHA256 (xpi/firefox-i18n-61.0/pl.xpi) = 42774f47652e3b8da96aac130d0b4d7ab4e47d080d1931fa0286ad24e6de7fdd +SHA256 (xpi/firefox-i18n-61.0/ja.xpi) = c62496c7da43cfd521cba7a243baba3b8d8e45515cf1729a8c757168ab37ee26 +SIZE (xpi/firefox-i18n-61.0/ja.xpi) = 538255 +SHA256 (xpi/firefox-i18n-61.0/ka.xpi) = 6beeb507141d9d39a947044dcd7d0ee3e7adb9e1d4a556b0477a16bfa8863d54 +SIZE (xpi/firefox-i18n-61.0/ka.xpi) = 525917 +SHA256 (xpi/firefox-i18n-61.0/kab.xpi) = c588f1f693a12e51f47ede13dcdb392d1fa8f64f0644848f06b1fd7c6859b1bd +SIZE (xpi/firefox-i18n-61.0/kab.xpi) = 495572 +SHA256 (xpi/firefox-i18n-61.0/kk.xpi) = b2baab1a55bc5b3340ae6155deed01448aae08136427fdf210356f27dc42cc97 +SIZE (xpi/firefox-i18n-61.0/kk.xpi) = 553678 +SHA256 (xpi/firefox-i18n-61.0/km.xpi) = fd1a3292d73db55c3f8021188c687a6f0a90fef05305f5ad917b55ff0c189be1 +SIZE (xpi/firefox-i18n-61.0/km.xpi) = 547196 +SHA256 (xpi/firefox-i18n-61.0/kn.xpi) = d8c0e96648022e617dd8cd21a053bfa45c56ec23cc7ab6fbfdbbfb80a5f1dce0 +SIZE (xpi/firefox-i18n-61.0/kn.xpi) = 552584 +SHA256 (xpi/firefox-i18n-61.0/ko.xpi) = cc0b42757564e1b80aa46c296d9ad55aac50a730ec66a76c2b9ca7be9e77b3cf +SIZE (xpi/firefox-i18n-61.0/ko.xpi) = 519815 +SHA256 (xpi/firefox-i18n-61.0/lij.xpi) = d5b731cf3a145b590d16af59ea08bcc27438adda449df0cf1ac468ea55e1fee3 +SIZE (xpi/firefox-i18n-61.0/lij.xpi) = 486946 +SHA256 (xpi/firefox-i18n-61.0/lt.xpi) = c823dfbed5d34e1e296b698e66843be873f292db54e8748ce28e36d54bceed49 +SIZE (xpi/firefox-i18n-61.0/lt.xpi) = 509389 +SHA256 (xpi/firefox-i18n-61.0/lv.xpi) = e01c5cc2770dfbe0b4b0d35dc8ee2062907a0597a94555a7b93e9164f57b9ed7 +SIZE (xpi/firefox-i18n-61.0/lv.xpi) = 497550 +SHA256 (xpi/firefox-i18n-61.0/mai.xpi) = 74bea0ab796797620a6e121513dc2f32114dd23969d57cf3298f10a3f471a0fa +SIZE (xpi/firefox-i18n-61.0/mai.xpi) = 518902 +SHA256 (xpi/firefox-i18n-61.0/mk.xpi) = 5b1e3a476a683378e6d1af350761435219398c6c9dc7f0bfc52efb6836e6996d +SIZE (xpi/firefox-i18n-61.0/mk.xpi) = 480671 +SHA256 (xpi/firefox-i18n-61.0/ml.xpi) = e691c980d0bf89a99e445d7f726e4d5d1242aae16f940405331f8d8d48de42bc +SIZE (xpi/firefox-i18n-61.0/ml.xpi) = 562458 +SHA256 (xpi/firefox-i18n-61.0/mr.xpi) = 70c37eeddb05e6503fe381118bfb488a1368e18240125e2b947617c8a9d4c108 +SIZE (xpi/firefox-i18n-61.0/mr.xpi) = 547455 +SHA256 (xpi/firefox-i18n-61.0/ms.xpi) = f18d1a9224486c1952119f882460fbf6d32606c69afcac862c9069a4f9fdfc38 +SIZE (xpi/firefox-i18n-61.0/ms.xpi) = 483502 +SHA256 (xpi/firefox-i18n-61.0/my.xpi) = 725958f542984c594e783fd151306e8340fbacfd05a7795ae8ce346704a89829 +SIZE (xpi/firefox-i18n-61.0/my.xpi) = 536699 +SHA256 (xpi/firefox-i18n-61.0/nb-NO.xpi) = 144367fb12f0b92d46854c8b8add994be91069df2f8e05ee1287c1c57f9315be +SIZE (xpi/firefox-i18n-61.0/nb-NO.xpi) = 483523 +SHA256 (xpi/firefox-i18n-61.0/ne-NP.xpi) = 3fa7706969e2a0ee3a3c6531714a3c085157ca0f1c19964519de4c974add261c +SIZE (xpi/firefox-i18n-61.0/ne-NP.xpi) = 523520 +SHA256 (xpi/firefox-i18n-61.0/nl.xpi) = f313dd641aab012f93f06278f8da94a70cf42b84e8d2a4ba827d663a960f4126 +SIZE (xpi/firefox-i18n-61.0/nl.xpi) = 489004 +SHA256 (xpi/firefox-i18n-61.0/nn-NO.xpi) = ec35e052f38863addfdca5a4b5a4b25f78f6ac59e9655b03f53b9b9741778a27 +SIZE (xpi/firefox-i18n-61.0/nn-NO.xpi) = 483561 +SHA256 (xpi/firefox-i18n-61.0/oc.xpi) = 659e90d2d1b02a91dab2fd33e531ca35a8ae0d3d37f1e6c53fe7e109f85571a5 +SIZE (xpi/firefox-i18n-61.0/oc.xpi) = 499691 +SHA256 (xpi/firefox-i18n-61.0/or.xpi) = e3c0ce3575adcb20ef60d44abb4051e23d560f2994b0a337a9bec0dbb50b9b45 +SIZE (xpi/firefox-i18n-61.0/or.xpi) = 508181 +SHA256 (xpi/firefox-i18n-61.0/pa-IN.xpi) = 534701f536ce6d665a38152cb9e0209e67383e1cedc71e28e953aa878325b96c +SIZE (xpi/firefox-i18n-61.0/pa-IN.xpi) = 524500 +SHA256 (xpi/firefox-i18n-61.0/pl.xpi) = e97e4800c799baf4f176807e2892995c7c684672e660c5277158b1467589a9d6 SIZE (xpi/firefox-i18n-61.0/pl.xpi) = 390903 -SHA256 (xpi/firefox-i18n-61.0/pt-BR.xpi) = bc6b9aa57bdf0e87add7b07215fc9f60c811c9a3063c25b030daebc802b76448 -SIZE (xpi/firefox-i18n-61.0/pt-BR.xpi) = 486001 -SHA256 (xpi/firefox-i18n-61.0/pt-PT.xpi) = a8e55d09ba0049dd83e80307ad6529d4e1e829b7f4e13af009bafa8058340e0b -SIZE (xpi/firefox-i18n-61.0/pt-PT.xpi) = 492103 -SHA256 (xpi/firefox-i18n-61.0/rm.xpi) = 55566c7c5bcb72192033153e41dd046fbe58460d2791240b0d7e84c7c021b3e7 -SIZE (xpi/firefox-i18n-61.0/rm.xpi) = 483850 -SHA256 (xpi/firefox-i18n-61.0/ro.xpi) = 663d073e8e9a1fffe74db40ae3a4c1d8960bc9f70b752c6659c40bb0efd53a0e -SIZE (xpi/firefox-i18n-61.0/ro.xpi) = 486750 -SHA256 (xpi/firefox-i18n-61.0/ru.xpi) = 5914d162d9bc0973268035defa38b2720d94961e0f2abc919964d8e6b6f3cc03 -SIZE (xpi/firefox-i18n-61.0/ru.xpi) = 561624 -SHA256 (xpi/firefox-i18n-61.0/si.xpi) = 3a46f3546f82d97bfe31e95068c827781f0e0d88ee1e083ae87266f722e1fae3 -SIZE (xpi/firefox-i18n-61.0/si.xpi) = 511505 -SHA256 (xpi/firefox-i18n-61.0/sk.xpi) = cf9fd3be1bcbbab92982013f96f8a0bec42f80609f9a4620f550ad7f47c182e0 -SIZE (xpi/firefox-i18n-61.0/sk.xpi) = 514224 -SHA256 (xpi/firefox-i18n-61.0/sl.xpi) = 1ca4a44c6e96e7d7359edebf35cf22808acf45bea206e0d48c834bcc5b391b75 -SIZE (xpi/firefox-i18n-61.0/sl.xpi) = 490321 -SHA256 (xpi/firefox-i18n-61.0/son.xpi) = 8766423e4748facd423ec7026a0f7aee3917ec86ddcecd149e069f9c14ea1990 +SHA256 (xpi/firefox-i18n-61.0/pt-BR.xpi) = 76afbe14524ca84c6af851fe1567434237cde207f4f3ab138e8078677f00ce9c +SIZE (xpi/firefox-i18n-61.0/pt-BR.xpi) = 485997 +SHA256 (xpi/firefox-i18n-61.0/pt-PT.xpi) = 7402fa24d7cd719e917e5ff07d88ab955c65960e085440b553c45aa178821e86 +SIZE (xpi/firefox-i18n-61.0/pt-PT.xpi) = 492101 +SHA256 (xpi/firefox-i18n-61.0/rm.xpi) = 3fb1389619e3e0efd2882507434c5683f04abd3aaa54d5f8113240aed3de86bf +SIZE (xpi/firefox-i18n-61.0/rm.xpi) = 483856 +SHA256 (xpi/firefox-i18n-61.0/ro.xpi) = 365dfa4198bbb355706ab405473a350ec971efaed324049f230cdf631c9c9d39 +SIZE (xpi/firefox-i18n-61.0/ro.xpi) = 486748 +SHA256 (xpi/firefox-i18n-61.0/ru.xpi) = 8c2fbba9144750e55791792c8d17d248ade6a3d6a61c727cfe4f4c69c698102b +SIZE (xpi/firefox-i18n-61.0/ru.xpi) = 561631 +SHA256 (xpi/firefox-i18n-61.0/si.xpi) = 7ba7ee23ee35aabf8068024f7198522ac8bf3780720d63444a9fc3f4919754b9 +SIZE (xpi/firefox-i18n-61.0/si.xpi) = 511499 +SHA256 (xpi/firefox-i18n-61.0/sk.xpi) = 47f6258d2051edfb85e698169ccb646a009eee52c44c7f11240c7f7e68be0c48 +SIZE (xpi/firefox-i18n-61.0/sk.xpi) = 514226 +SHA256 (xpi/firefox-i18n-61.0/sl.xpi) = 2c1cf7d3dd8c8db029d06ec63d3a2d1c58f4747ae2dcdc55d1d44cf2e5f2ebb9 +SIZE (xpi/firefox-i18n-61.0/sl.xpi) = 490324 +SHA256 (xpi/firefox-i18n-61.0/son.xpi) = c9fa033ea4bcd3aca38807dc4f52cef7820ebc1e918b30d195491889eb6a4e6c SIZE (xpi/firefox-i18n-61.0/son.xpi) = 468634 -SHA256 (xpi/firefox-i18n-61.0/sq.xpi) = 67309f9cc1841b3e9108d7975385127724450ca6c7d79b787c68393d24f4fb72 -SIZE (xpi/firefox-i18n-61.0/sq.xpi) = 496574 -SHA256 (xpi/firefox-i18n-61.0/sr.xpi) = 56cb274163b620e7e662ebe2936c5540dc17ab59038178d887cd36b673b617be -SIZE (xpi/firefox-i18n-61.0/sr.xpi) = 519557 -SHA256 (xpi/firefox-i18n-61.0/sv-SE.xpi) = be9d00b7bc5cd208e30816e3cee6cdfce61b2d9e438a2ae0d11b0583ab5104f6 -SIZE (xpi/firefox-i18n-61.0/sv-SE.xpi) = 491597 -SHA256 (xpi/firefox-i18n-61.0/ta.xpi) = 490ec1b7b8978c07e442e9e57fa3a1ad7d453d670ab5cd2968077cf1c0b7c325 -SIZE (xpi/firefox-i18n-61.0/ta.xpi) = 541874 -SHA256 (xpi/firefox-i18n-61.0/te.xpi) = 7e893fcee8c031a035f8dcd5cdb903b946f83aa5c577f1cb0911fff9753a12ad -SIZE (xpi/firefox-i18n-61.0/te.xpi) = 558639 -SHA256 (xpi/firefox-i18n-61.0/th.xpi) = 86b389a1de8921b158b6bc3fcb090cc1917c07205014089c9ee12a43bccadb08 -SIZE (xpi/firefox-i18n-61.0/th.xpi) = 531116 -SHA256 (xpi/firefox-i18n-61.0/tr.xpi) = e4e2c85df418ce35abb5de49d18abea8f923440c06a88efa5c0e61ffdf7b59da -SIZE (xpi/firefox-i18n-61.0/tr.xpi) = 498510 -SHA256 (xpi/firefox-i18n-61.0/uk.xpi) = a45318b8c3905e0357f6f222f861f14c69b9f9f496ffe3bd99d1b289f97d7f5c -SIZE (xpi/firefox-i18n-61.0/uk.xpi) = 553597 -SHA256 (xpi/firefox-i18n-61.0/ur.xpi) = 6986874021a8e79f46db9695faccf53d99c939ca6d3ea22ec35a07c973836fa8 -SIZE (xpi/firefox-i18n-61.0/ur.xpi) = 531618 -SHA256 (xpi/firefox-i18n-61.0/uz.xpi) = 3dcfb7f9fb9e90578d0c5c56b6494664bcd16da378a81a30443bbe9297434bb6 -SIZE (xpi/firefox-i18n-61.0/uz.xpi) = 482052 -SHA256 (xpi/firefox-i18n-61.0/vi.xpi) = 27f856dd839b20a05b66c37653be78c6bb7a461bba3f25340ad6d007a9500211 -SIZE (xpi/firefox-i18n-61.0/vi.xpi) = 500411 -SHA256 (xpi/firefox-i18n-61.0/xh.xpi) = 553074aefd3b5c747246683754a3f3586734d61654211c6111dc1cc65a7b2793 -SIZE (xpi/firefox-i18n-61.0/xh.xpi) = 481790 -SHA256 (xpi/firefox-i18n-61.0/zh-CN.xpi) = 47de4388fbb67520d95b86dd1daaebb4a3f7fb7877c703c1d4c5b4d08d61614f -SIZE (xpi/firefox-i18n-61.0/zh-CN.xpi) = 514399 -SHA256 (xpi/firefox-i18n-61.0/zh-TW.xpi) = 3b33af36adb7c7c070d066b81203e0ada3bef549db74c06e0d41301a47a2448f -SIZE (xpi/firefox-i18n-61.0/zh-TW.xpi) = 513546 +SHA256 (xpi/firefox-i18n-61.0/sq.xpi) = 4ba0eab56da8a68961dfb8d333dc26f6253d8fa9b5ef773f11396a16ba7cad7a +SIZE (xpi/firefox-i18n-61.0/sq.xpi) = 496569 +SHA256 (xpi/firefox-i18n-61.0/sr.xpi) = 03b2bf62131a59bf6064a9d2190e7d1c14bac55f92e33e48335913acc6cfcd75 +SIZE (xpi/firefox-i18n-61.0/sr.xpi) = 519559 +SHA256 (xpi/firefox-i18n-61.0/sv-SE.xpi) = 6dc7695eed1cdf0e02064560675a30b6e9cca2caad290f7b46d00f3078a99993 +SIZE (xpi/firefox-i18n-61.0/sv-SE.xpi) = 491596 +SHA256 (xpi/firefox-i18n-61.0/ta.xpi) = 72d64bcbc53d2e437c2872f26659c64a82139a7303504b9bdac3ac01ebde1df7 +SIZE (xpi/firefox-i18n-61.0/ta.xpi) = 541866 +SHA256 (xpi/firefox-i18n-61.0/te.xpi) = d1a2e661a450680e56bc07a6dc9bf9502558a66b6689cd0841b8fc8ad37fe457 +SIZE (xpi/firefox-i18n-61.0/te.xpi) = 558635 +SHA256 (xpi/firefox-i18n-61.0/th.xpi) = d219719dd56d23e702bb4e6fc589b50f5f18734722b857ebbd44f49b14f2f99f +SIZE (xpi/firefox-i18n-61.0/th.xpi) = 531112 +SHA256 (xpi/firefox-i18n-61.0/tr.xpi) = 07a4d63c033e8234e07e29be35ebf3f9ab8ac8e376e7f8882f8e5fd2eb8c9b9d +SIZE (xpi/firefox-i18n-61.0/tr.xpi) = 498506 +SHA256 (xpi/firefox-i18n-61.0/uk.xpi) = 4b44592b37c40e12dc636af6422d16327697074fcb74cee3e9bd0f631506a3e5 +SIZE (xpi/firefox-i18n-61.0/uk.xpi) = 553596 +SHA256 (xpi/firefox-i18n-61.0/ur.xpi) = 076380f4698146423286e9f2f742fbbaead2a225651335b0b8bb86c31ef135bc +SIZE (xpi/firefox-i18n-61.0/ur.xpi) = 531611 +SHA256 (xpi/firefox-i18n-61.0/uz.xpi) = fc8da974458213e019261281def322df32f225f4e3099cad5aff38bdc0e77e27 +SIZE (xpi/firefox-i18n-61.0/uz.xpi) = 482058 +SHA256 (xpi/firefox-i18n-61.0/vi.xpi) = b38ee1b09a1f539f9e5eb73ba2a01f99fb98b8896d70295bd90b442a78d8a546 +SIZE (xpi/firefox-i18n-61.0/vi.xpi) = 500409 +SHA256 (xpi/firefox-i18n-61.0/xh.xpi) = e88fea87214959b23a2cb79f2775bb82c8d5d72dd045298ca66b46a698c06e61 +SIZE (xpi/firefox-i18n-61.0/xh.xpi) = 481792 +SHA256 (xpi/firefox-i18n-61.0/zh-CN.xpi) = 3b39e97e9837005e58584101e8048137f2580bd4bcab4688232d75c2f5d9a992 +SIZE (xpi/firefox-i18n-61.0/zh-CN.xpi) = 514392 +SHA256 (xpi/firefox-i18n-61.0/zh-TW.xpi) = 9e3ec5dff511c992c84b6961f77f65428bbe60e6999c4c85aea778eb815984e5 +SIZE (xpi/firefox-i18n-61.0/zh-TW.xpi) = 513542 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Fri Jun 22 21:14:44 2018 (r473075) +++ head/www/firefox/Makefile Fri Jun 22 21:15:52 2018 (r473076) @@ -3,10 +3,11 @@ PORTNAME= firefox DISTVERSION= 61.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Fri Jun 22 21:14:44 2018 (r473075) +++ head/www/firefox/distinfo Fri Jun 22 21:15:52 2018 (r473076) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529363060 -SHA256 (firefox-61.0.source.tar.xz) = d1219830af3b8b64eace38cc9844bb04bf06537909e9aa1dd7682cb1b2099721 -SIZE (firefox-61.0.source.tar.xz) = 266279484 +TIMESTAMP = 1529611471 +SHA256 (firefox-61.0.source.tar.xz) = 3453e8ac7c602390bda0d34a4a636e0d65fd89d9ae69f7aa1740926715c42268 +SIZE (firefox-61.0.source.tar.xz) = 266932956 From owner-svn-ports-head@freebsd.org Fri Jun 22 21:16:08 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 740D01027C3F; Fri, 22 Jun 2018 21:16:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2424282AFF; Fri, 22 Jun 2018 21:16:08 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 054BC26124; Fri, 22 Jun 2018 21:16:08 +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 w5MLG8eu001473; Fri, 22 Jun 2018 21:16:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLG7TB001469; Fri, 22 Jun 2018 21:16:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806222116.w5MLG7TB001469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 22 Jun 2018 21:16:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473077 - in head/www: firefox-esr firefox-esr-i18n X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www: firefox-esr firefox-esr-i18n X-SVN-Commit-Revision: 473077 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:16:08 -0000 Author: jbeich Date: Fri Jun 22 21:16:06 2018 New Revision: 473077 URL: https://svnweb.freebsd.org/changeset/ports/473077 Log: www/firefox-esr: switch to rc2 Changes: https://hg.mozilla.org/releases/mozilla-esr60/pushloghtml?startdate=2018-06-20&enddate=2018-06-22 Security: see upstream bug 1458048 Modified: head/www/firefox-esr-i18n/Makefile (contents, props changed) head/www/firefox-esr-i18n/distinfo (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox-esr/distinfo (contents, props changed) Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-esr-i18n/Makefile Fri Jun 22 21:15:52 2018 (r473076) +++ head/www/firefox-esr-i18n/Makefile Fri Jun 22 21:16:06 2018 (r473077) @@ -3,9 +3,10 @@ PORTNAME= firefox PORTVERSION= 60.1.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build2/linux-i686/xpi PKGNAMEPREFIX= PKGNAMESUFFIX= -esr-i18n DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} Modified: head/www/firefox-esr-i18n/distinfo ============================================================================== --- head/www/firefox-esr-i18n/distinfo Fri Jun 22 21:15:52 2018 (r473076) +++ head/www/firefox-esr-i18n/distinfo Fri Jun 22 21:16:06 2018 (r473077) @@ -1,197 +1,197 @@ -TIMESTAMP = 1529440553 -SHA256 (xpi/firefox-60.1.0/ach.xpi) = 5e26041e4a6bf3d602b00c5990238676d5747f3265dac5552b71859c61bc272c -SIZE (xpi/firefox-60.1.0/ach.xpi) = 496061 -SHA256 (xpi/firefox-60.1.0/af.xpi) = c9f675656e0934c4459c86556debf08b1c9306f8466593713875e5c30e67428f -SIZE (xpi/firefox-60.1.0/af.xpi) = 486533 -SHA256 (xpi/firefox-60.1.0/an.xpi) = d645b169c68c3cd34d1cd33dd84912c8f0bb46ed3650434b092a250a8e97f547 -SIZE (xpi/firefox-60.1.0/an.xpi) = 519726 -SHA256 (xpi/firefox-60.1.0/ar.xpi) = 15e4f2833734bcab82a9b7421bfc87b424f7b40e8f05caf98f0122988e13d97a -SIZE (xpi/firefox-60.1.0/ar.xpi) = 546953 -SHA256 (xpi/firefox-60.1.0/as.xpi) = 34a5908ce9bedb219cf89bbca86585f11a8c6260ee74253be8d7cbc8c9646ece -SIZE (xpi/firefox-60.1.0/as.xpi) = 529944 -SHA256 (xpi/firefox-60.1.0/ast.xpi) = 93b838cf4dfeebaffdea93a66f86932d94c1550cee00770dcaaefb567618e880 -SIZE (xpi/firefox-60.1.0/ast.xpi) = 507869 -SHA256 (xpi/firefox-60.1.0/az.xpi) = 7056cbeb3d7eda3aa42fc0217257ad897daf729f5e04708b695cebb53f7fbee0 -SIZE (xpi/firefox-60.1.0/az.xpi) = 523969 -SHA256 (xpi/firefox-60.1.0/be.xpi) = ad5ab678b7b6ac74a93b6dc4aef25fb2f7583966808569fb2cda7833cef1e603 -SIZE (xpi/firefox-60.1.0/be.xpi) = 579949 -SHA256 (xpi/firefox-60.1.0/bg.xpi) = c8f43529614faf19faf331d154bd1ffe25fb2b896b82d99cd4597bfdfa33b1b4 -SIZE (xpi/firefox-60.1.0/bg.xpi) = 573074 -SHA256 (xpi/firefox-60.1.0/bn-BD.xpi) = 1626e73b4dab81a13b5b11c1820396077bca065f45a7bb0cc6d4f8593f6410e3 -SIZE (xpi/firefox-60.1.0/bn-BD.xpi) = 589631 -SHA256 (xpi/firefox-60.1.0/bn-IN.xpi) = dfc6431a6a2ea504abe26dbf73bd889507ba351afcf51d7384119514b4ad5bd3 -SIZE (xpi/firefox-60.1.0/bn-IN.xpi) = 570077 -SHA256 (xpi/firefox-60.1.0/br.xpi) = cf7635d6456286ee278c60818a9ffe195f104010e36d1ce83e0b47a6df4fc718 -SIZE (xpi/firefox-60.1.0/br.xpi) = 511254 -SHA256 (xpi/firefox-60.1.0/bs.xpi) = 2916fd5b52f39ca7efcecdaed7f9769abbb1a196d982837351d0f9522860b1b6 -SIZE (xpi/firefox-60.1.0/bs.xpi) = 513932 -SHA256 (xpi/firefox-60.1.0/ca.xpi) = 2986fd0d15201d6ac3e1d84d0b8e80e600d6039e0b4c3495138083011ad038e3 -SIZE (xpi/firefox-60.1.0/ca.xpi) = 524475 -SHA256 (xpi/firefox-60.1.0/cak.xpi) = f02921d89d2b77d03ed20ca9573ab7a203fd6f2eb098313d84b65475b5e27278 -SIZE (xpi/firefox-60.1.0/cak.xpi) = 535514 -SHA256 (xpi/firefox-60.1.0/cs.xpi) = e7a6a9a75599fd90fa3c556c820cad7bda7472b21c7bbbff3474abe196dd3fd6 -SIZE (xpi/firefox-60.1.0/cs.xpi) = 531022 -SHA256 (xpi/firefox-60.1.0/cy.xpi) = 93d722576846a2bf49250fc3ef7fef2111dbf34d3b7d946b3946da9add85706c -SIZE (xpi/firefox-60.1.0/cy.xpi) = 515862 -SHA256 (xpi/firefox-60.1.0/da.xpi) = d74f2f8727e0b899c769778bf9364e9afe3c314d17c3a71d35c6eb48519f1ac6 +TIMESTAMP = 1529608108 +SHA256 (xpi/firefox-60.1.0/ach.xpi) = 867c8917c20bd264ec7388438468c861b0684980640ee9f2d35e90ffc78bc48c +SIZE (xpi/firefox-60.1.0/ach.xpi) = 496056 +SHA256 (xpi/firefox-60.1.0/af.xpi) = c632cda90a84f2513615758af6590ab9a742d0cc8118cd15a463482663ec7100 +SIZE (xpi/firefox-60.1.0/af.xpi) = 486532 +SHA256 (xpi/firefox-60.1.0/an.xpi) = 2bda3e03f74015d7d7e8af3b437c8c11bbc6f6d6ad915871c8f9fbeae3dd6863 +SIZE (xpi/firefox-60.1.0/an.xpi) = 519731 +SHA256 (xpi/firefox-60.1.0/ar.xpi) = db903ff36e7e4636b7042f166003e17d797d613248e4e5f5a17eeceba89218f5 +SIZE (xpi/firefox-60.1.0/ar.xpi) = 546955 +SHA256 (xpi/firefox-60.1.0/as.xpi) = efc5fc41c22d96e1e3827d997e418277cf1e3de453aec02734ba513639543eb0 +SIZE (xpi/firefox-60.1.0/as.xpi) = 529943 +SHA256 (xpi/firefox-60.1.0/ast.xpi) = b573efa4c86ad03c2750c17cdd1733fff0ef648578331ee669abf060cefecbad +SIZE (xpi/firefox-60.1.0/ast.xpi) = 507872 +SHA256 (xpi/firefox-60.1.0/az.xpi) = e7eeea07d9dbc66d403b4b1d6dab762002efbfd94db8c609896e43c746090aa8 +SIZE (xpi/firefox-60.1.0/az.xpi) = 523973 +SHA256 (xpi/firefox-60.1.0/be.xpi) = ea085d7a701c447167b1e7928631f2023da9a83c682609bc9ebc1a59511092a0 +SIZE (xpi/firefox-60.1.0/be.xpi) = 579941 +SHA256 (xpi/firefox-60.1.0/bg.xpi) = 8ae009506eeafbece65b118a237df7c91039be5debf7c513625d735f2677780d +SIZE (xpi/firefox-60.1.0/bg.xpi) = 573071 +SHA256 (xpi/firefox-60.1.0/bn-BD.xpi) = 8b579f446ef0521b83448cf2b284a8bfdb64e024c690929049916c018566064f +SIZE (xpi/firefox-60.1.0/bn-BD.xpi) = 589634 +SHA256 (xpi/firefox-60.1.0/bn-IN.xpi) = 544db0c07e39c402c09c69e485697305234cdcdb3a8cda100c411f063ab845d6 +SIZE (xpi/firefox-60.1.0/bn-IN.xpi) = 570084 +SHA256 (xpi/firefox-60.1.0/br.xpi) = 8ba1ce2937b77409c4021a97587b1766de8df07123eb76f33c01085a97d25014 +SIZE (xpi/firefox-60.1.0/br.xpi) = 511250 +SHA256 (xpi/firefox-60.1.0/bs.xpi) = 4ff6cc7c2ce855bdc5adb81c182c07c20f857e78b89a8202ec6c82f7e987f9f1 +SIZE (xpi/firefox-60.1.0/bs.xpi) = 513934 +SHA256 (xpi/firefox-60.1.0/ca.xpi) = 0d6dcfeec6ce9e4dba40d9dc0aa0d8e0f5d47949693efedc426d59c051da20da +SIZE (xpi/firefox-60.1.0/ca.xpi) = 524480 +SHA256 (xpi/firefox-60.1.0/cak.xpi) = 52122df2048402996e66704a58f6ca49059f75eccc945a4ba189dcbfc013411c +SIZE (xpi/firefox-60.1.0/cak.xpi) = 535513 +SHA256 (xpi/firefox-60.1.0/cs.xpi) = f4fa1c7bb1e276c7220f0c33a5968c660f00fb5aa2c412c033034355fcba9934 +SIZE (xpi/firefox-60.1.0/cs.xpi) = 531018 +SHA256 (xpi/firefox-60.1.0/cy.xpi) = a122b18fce6809d68f6ccfe94c4f6d8d84a709036fe5d4ff50f679eed87c4577 +SIZE (xpi/firefox-60.1.0/cy.xpi) = 515867 +SHA256 (xpi/firefox-60.1.0/da.xpi) = 72ed880f72b10526259c4843ebc6ebb92184548de645f409b397949a50fe4b5e SIZE (xpi/firefox-60.1.0/da.xpi) = 509980 -SHA256 (xpi/firefox-60.1.0/de.xpi) = 771d8320cae87d125b924dccb6d77a2a44e02a380b52553fca9b989b46419e2c +SHA256 (xpi/firefox-60.1.0/de.xpi) = 9938e29a27ce91c3a9349a04848acc39107283b47c4c01a4517b3cbcfbb31bf7 SIZE (xpi/firefox-60.1.0/de.xpi) = 525695 -SHA256 (xpi/firefox-60.1.0/dsb.xpi) = cb1c6d535f741a73b0325e4581b4ef1b9d390b38dacd0a202499ff80a8d58b47 -SIZE (xpi/firefox-60.1.0/dsb.xpi) = 538750 -SHA256 (xpi/firefox-60.1.0/el.xpi) = a67d8ecefb33ed4dcb7a455e05a46bc2675fda1c9068001ec1e8184d528198d0 -SIZE (xpi/firefox-60.1.0/el.xpi) = 592912 -SHA256 (xpi/firefox-60.1.0/en-GB.xpi) = 7254855553747f27a7521249980a740ad528f305fdb5a2951d5b5cc95d5c55d3 -SIZE (xpi/firefox-60.1.0/en-GB.xpi) = 490906 -SHA256 (xpi/firefox-60.1.0/en-US.xpi) = 2b5ef8252b9a773eddc891a58b9ddd192f641380924615a0b6fd5077dc48e6f6 -SIZE (xpi/firefox-60.1.0/en-US.xpi) = 472388 -SHA256 (xpi/firefox-60.1.0/en-ZA.xpi) = 8bad395bccc349070da0817dabe381b30a1be380f5a19d76312ef62e3a8e68e6 -SIZE (xpi/firefox-60.1.0/en-ZA.xpi) = 473899 -SHA256 (xpi/firefox-60.1.0/eo.xpi) = b332eb5f1f7cb4a24ad0cc034672b5ad0d723c6a0e5b1e416af22311dc92a9e4 -SIZE (xpi/firefox-60.1.0/eo.xpi) = 510489 -SHA256 (xpi/firefox-60.1.0/es-AR.xpi) = 0d00f6d5ef54660eb5670e08dd2a87ae43e6d98ce7e0b2f60f5b3b2661cca6f4 -SIZE (xpi/firefox-60.1.0/es-AR.xpi) = 523825 -SHA256 (xpi/firefox-60.1.0/es-CL.xpi) = c7f5d24bb145cbe79bb1edcb7691f0d60d2bf127b683da11d05b48dc1fb2d0bd -SIZE (xpi/firefox-60.1.0/es-CL.xpi) = 526509 -SHA256 (xpi/firefox-60.1.0/es-ES.xpi) = d94773baa6ad16cd833a568502ca2b0130caed03ae4c6e653597d29e1a7da82c -SIZE (xpi/firefox-60.1.0/es-ES.xpi) = 459139 -SHA256 (xpi/firefox-60.1.0/es-MX.xpi) = 5587089caa97dbbbcf7e30831df73c17db157f5172fb82ba82722f4d92db27aa -SIZE (xpi/firefox-60.1.0/es-MX.xpi) = 527842 -SHA256 (xpi/firefox-60.1.0/et.xpi) = 99cbab52e159b5b5ff7ec3569968a89d369727095a247f0a5fd089c0dcf1b401 -SIZE (xpi/firefox-60.1.0/et.xpi) = 504172 -SHA256 (xpi/firefox-60.1.0/eu.xpi) = 718212dfd3c6d4efd63afc7bca0eadb6b72f23e026a86b7f4fe6f6f27dded0d1 -SIZE (xpi/firefox-60.1.0/eu.xpi) = 510938 -SHA256 (xpi/firefox-60.1.0/fa.xpi) = a106e50ac0139d7d5aea786a98f55ea4f8fb2aeadd06106447b97470a51b9c19 +SHA256 (xpi/firefox-60.1.0/dsb.xpi) = c95156a1857a6169851f56961b1b4eed0b5b5315ebb653a2f2d8196f8f3bfdd1 +SIZE (xpi/firefox-60.1.0/dsb.xpi) = 538748 +SHA256 (xpi/firefox-60.1.0/el.xpi) = 911f062ff50c4a5e4f4a7a7683fd6cd5b269e1522a09ae3af3afe76e4717862a +SIZE (xpi/firefox-60.1.0/el.xpi) = 592917 +SHA256 (xpi/firefox-60.1.0/en-GB.xpi) = 3e5c1015b2b12cd6dd65010a6ef41eef040b2d2ecad38528ad36be900b2a0c24 +SIZE (xpi/firefox-60.1.0/en-GB.xpi) = 490907 +SHA256 (xpi/firefox-60.1.0/en-US.xpi) = 596cd31176824b06aa3819b71fe3884fef381c4278a3d924390f2590e6f46994 +SIZE (xpi/firefox-60.1.0/en-US.xpi) = 472382 +SHA256 (xpi/firefox-60.1.0/en-ZA.xpi) = 39fb0edef74f72e6fbe5bbacb75c65200f3b4da2e34f48a0dc11d21bc665f4b1 +SIZE (xpi/firefox-60.1.0/en-ZA.xpi) = 473893 +SHA256 (xpi/firefox-60.1.0/eo.xpi) = 1a061117b9bd79025fb68af98133cab976865a937d27a490a57232515e3aca84 +SIZE (xpi/firefox-60.1.0/eo.xpi) = 510492 +SHA256 (xpi/firefox-60.1.0/es-AR.xpi) = 327de0739ee552e9f64c9029babe9962dedc1d794073639fb1383c61945b3b8c +SIZE (xpi/firefox-60.1.0/es-AR.xpi) = 523820 +SHA256 (xpi/firefox-60.1.0/es-CL.xpi) = 32db21eb540dd077d20033a80d21a8b0a0256ad53cefa38963d48e64bd251645 +SIZE (xpi/firefox-60.1.0/es-CL.xpi) = 526508 +SHA256 (xpi/firefox-60.1.0/es-ES.xpi) = 79321aef66f784670f44078baf2d001284325e6cb3b6e00a1787efbe4fbc12e3 +SIZE (xpi/firefox-60.1.0/es-ES.xpi) = 459134 +SHA256 (xpi/firefox-60.1.0/es-MX.xpi) = 459efa11399edb4fdb07c8834cdac4d9efda227c118178400a46b17a52897e19 +SIZE (xpi/firefox-60.1.0/es-MX.xpi) = 527839 +SHA256 (xpi/firefox-60.1.0/et.xpi) = 95db9f64700f99f0d8a28ea709dbda62a4d9d5ef9c0acb5f224447c779118151 +SIZE (xpi/firefox-60.1.0/et.xpi) = 504171 +SHA256 (xpi/firefox-60.1.0/eu.xpi) = 3800f915928f8355ffac255f5b9ee84e798f5963ae4ff99edf59b8fba5475838 +SIZE (xpi/firefox-60.1.0/eu.xpi) = 510930 +SHA256 (xpi/firefox-60.1.0/fa.xpi) = aac7e55a8f0394600861ce51bbdec6917ef6edf2de67846c308caaa64a7a0f53 SIZE (xpi/firefox-60.1.0/fa.xpi) = 565490 -SHA256 (xpi/firefox-60.1.0/ff.xpi) = 748fe1a9c451097656cd85a190e9d355afb3243333e31fbc4bb8d607d506dba9 -SIZE (xpi/firefox-60.1.0/ff.xpi) = 511435 -SHA256 (xpi/firefox-60.1.0/fi.xpi) = f8f17d3c181efdeb363b2d055bd8c0d9ca41fdc4cd0ea773e5841b0cb23e4f71 -SIZE (xpi/firefox-60.1.0/fi.xpi) = 505409 -SHA256 (xpi/firefox-60.1.0/fr.xpi) = 2e436b9daa98a28705a4b4d8ce760da70ca13e53bc39fedc0ab125d99075d90f -SIZE (xpi/firefox-60.1.0/fr.xpi) = 535234 -SHA256 (xpi/firefox-60.1.0/fy-NL.xpi) = 886c528e010fc6b0f800d13de7e55adebb3ced580e4f94d911f0340d26011039 -SIZE (xpi/firefox-60.1.0/fy-NL.xpi) = 523740 -SHA256 (xpi/firefox-60.1.0/ga-IE.xpi) = b18291cca9f22bec9acc063a827226d6f08d5adc94bfc0b49d3153decb87d53b +SHA256 (xpi/firefox-60.1.0/ff.xpi) = 707c33ac13d7b62b3b255729e35781c3380a38023ca2ae2807e0a9b3fe8ef9b0 +SIZE (xpi/firefox-60.1.0/ff.xpi) = 511431 +SHA256 (xpi/firefox-60.1.0/fi.xpi) = 3a4624873bc81c5c021e120ff9ecaa24b60dd6173070dd9016e692deabc1b7a0 +SIZE (xpi/firefox-60.1.0/fi.xpi) = 505404 +SHA256 (xpi/firefox-60.1.0/fr.xpi) = 73c6707f04764aa79b55c95d817751cfeac5ed01d08140234e6cdc78e277e4af +SIZE (xpi/firefox-60.1.0/fr.xpi) = 535235 +SHA256 (xpi/firefox-60.1.0/fy-NL.xpi) = 90b2d857414f4931745cabf1faa2893510d0e409b8c425389ffff19863cb69fa +SIZE (xpi/firefox-60.1.0/fy-NL.xpi) = 523736 +SHA256 (xpi/firefox-60.1.0/ga-IE.xpi) = dd56b6c4de66e4b6f6f6db56e5b2fa157add2d71faf3b41c7dbd2465a649a98d SIZE (xpi/firefox-60.1.0/ga-IE.xpi) = 526204 -SHA256 (xpi/firefox-60.1.0/gd.xpi) = db77b0608fc6e0f0b749ff92ef0907d42753e3932c90cce94fca51a4679cbfec -SIZE (xpi/firefox-60.1.0/gd.xpi) = 520093 -SHA256 (xpi/firefox-60.1.0/gl.xpi) = 6dd68657f6f37e8ed369cd0ec5f7b3436ca97b15ed31c00d203274b5a111ceeb -SIZE (xpi/firefox-60.1.0/gl.xpi) = 496589 -SHA256 (xpi/firefox-60.1.0/gn.xpi) = 25c8af49d1142db5b1aee183d82781f087c8abcc0e0cc94d58491d79b8ee3e9a +SHA256 (xpi/firefox-60.1.0/gd.xpi) = 8cac6a092e724249fc691964d297a208a02a7b22f561099296328acc515f38cb +SIZE (xpi/firefox-60.1.0/gd.xpi) = 520090 +SHA256 (xpi/firefox-60.1.0/gl.xpi) = eca1eb8aaa5ce2a1545117213776ccb3033efa63719490937d635e00f4e8d118 +SIZE (xpi/firefox-60.1.0/gl.xpi) = 496591 +SHA256 (xpi/firefox-60.1.0/gn.xpi) = 5670ef65c7597a8928389c2a318073dcf4e20857bf476233047763cedb73fa39 SIZE (xpi/firefox-60.1.0/gn.xpi) = 532446 -SHA256 (xpi/firefox-60.1.0/gu-IN.xpi) = 635d57fb3e1735953f77e79b8444f453eb12b36ddc07f18350ebd36e3e793c4e +SHA256 (xpi/firefox-60.1.0/gu-IN.xpi) = d8ab0f6ec310078fa7dac47a38cc8ede907080c75485a890df593063bfc698c0 SIZE (xpi/firefox-60.1.0/gu-IN.xpi) = 589482 -SHA256 (xpi/firefox-60.1.0/he.xpi) = 7c9c15653d4a30099c7039e6a66c126934a8b7fc30e70aee93b4e3f090e01d69 -SIZE (xpi/firefox-60.1.0/he.xpi) = 535210 -SHA256 (xpi/firefox-60.1.0/hi-IN.xpi) = 173eab4fed5d24f0c2f997dc7ad6ef8eb4f1b08ecfb60559c91d621336ef848c -SIZE (xpi/firefox-60.1.0/hi-IN.xpi) = 590079 -SHA256 (xpi/firefox-60.1.0/hr.xpi) = 3ec839fae3bb316f54cdc59d7ccf81f6ed74a2722c6b00ca92c6e0a307065f7d -SIZE (xpi/firefox-60.1.0/hr.xpi) = 515188 -SHA256 (xpi/firefox-60.1.0/hsb.xpi) = 7436c701e004a6b720bd997a096f19072f98a9320ea91511cf45c540caa2c902 -SIZE (xpi/firefox-60.1.0/hsb.xpi) = 536281 -SHA256 (xpi/firefox-60.1.0/hu.xpi) = 60b0363b5c9070b8225077badae42db0097c9bd02015ee073e740be0d1845ee8 -SIZE (xpi/firefox-60.1.0/hu.xpi) = 537576 -SHA256 (xpi/firefox-60.1.0/hy-AM.xpi) = 6a447a0fd2f6e15ba87596cbb1a9469932e3e6a2a2f9f8625dc3b566a9dda8bd -SIZE (xpi/firefox-60.1.0/hy-AM.xpi) = 568635 -SHA256 (xpi/firefox-60.1.0/ia.xpi) = ebc8bc6af5aa3c0ac5203c8b3539ac814d7187b5b14b2d1ac238dc4e4c55f3e9 -SIZE (xpi/firefox-60.1.0/ia.xpi) = 509960 -SHA256 (xpi/firefox-60.1.0/id.xpi) = b2ce847635a01a3f3270fc3803146e1846e74377d0b769f82b0637339236968f -SIZE (xpi/firefox-60.1.0/id.xpi) = 501445 -SHA256 (xpi/firefox-60.1.0/is.xpi) = 377a3b6e10c95a94764c0ee61616a5a2508c67aacde6c6e320b4a1006cb03c78 -SIZE (xpi/firefox-60.1.0/is.xpi) = 512502 -SHA256 (xpi/firefox-60.1.0/it.xpi) = 3e7b55c2b4a99ba900730c072c668f4de3b95e05cf4bb78414648e7239a13f68 -SIZE (xpi/firefox-60.1.0/it.xpi) = 398261 -SHA256 (xpi/firefox-60.1.0/ja.xpi) = 103d545d2f279ffdedf074027511ed0ad36fcce396224f90851333b522d7fdde -SIZE (xpi/firefox-60.1.0/ja.xpi) = 571240 -SHA256 (xpi/firefox-60.1.0/ka.xpi) = f3cb7cccee49a2d444226b6ecb1962c4c67ce075bb573dfb31fa0378a3713221 -SIZE (xpi/firefox-60.1.0/ka.xpi) = 556073 -SHA256 (xpi/firefox-60.1.0/kab.xpi) = 721c28ce53f174e084ebc9fe2bb0c01d6118dc4a6f0c01f8c373e2979ad89c3d +SHA256 (xpi/firefox-60.1.0/he.xpi) = f2f99a9f9b83a47add002c969a29de98e51f5d7030bec80b16c61afc2a813738 +SIZE (xpi/firefox-60.1.0/he.xpi) = 535206 +SHA256 (xpi/firefox-60.1.0/hi-IN.xpi) = 0c7189bbf9989583754c63705d724b6968e5f56c598705943c30febb4a4f798f +SIZE (xpi/firefox-60.1.0/hi-IN.xpi) = 590073 +SHA256 (xpi/firefox-60.1.0/hr.xpi) = c144c9859ad2e11b444093d7c1634c391e4e9f69c20e979bceccf5c90ef0d505 +SIZE (xpi/firefox-60.1.0/hr.xpi) = 515184 +SHA256 (xpi/firefox-60.1.0/hsb.xpi) = 8e4e534ed9559639a49d4dfb671305c7fb9601afcc786f204ebcb8fa34912684 +SIZE (xpi/firefox-60.1.0/hsb.xpi) = 536275 +SHA256 (xpi/firefox-60.1.0/hu.xpi) = c46a58b003016b1b5b313299030d2182a7bc30c36d0a164a035753f1c4ce5bda +SIZE (xpi/firefox-60.1.0/hu.xpi) = 537588 +SHA256 (xpi/firefox-60.1.0/hy-AM.xpi) = cea3206f2fd2a5019fe93217ad28bd16ffd119db1ed566e834426a7277090de9 +SIZE (xpi/firefox-60.1.0/hy-AM.xpi) = 568631 +SHA256 (xpi/firefox-60.1.0/ia.xpi) = 2544ca94fedde308cfa81e62c8ab95f106989a3098b0793716789cc18778e3db +SIZE (xpi/firefox-60.1.0/ia.xpi) = 509957 +SHA256 (xpi/firefox-60.1.0/id.xpi) = 7e84c521512bcd7f5eafb633b064f3f93c32cf3d5db6fb3e6f4f743fe8314436 +SIZE (xpi/firefox-60.1.0/id.xpi) = 501440 +SHA256 (xpi/firefox-60.1.0/is.xpi) = e2ae0ea323ed926b232c52cd78923b06dc50cb5acabac108b91d2a7acd95d863 +SIZE (xpi/firefox-60.1.0/is.xpi) = 512503 +SHA256 (xpi/firefox-60.1.0/it.xpi) = a118b8799c1916c3b6bf211ba926842e5e8d92943429d8079d382a29bf39643a +SIZE (xpi/firefox-60.1.0/it.xpi) = 398250 +SHA256 (xpi/firefox-60.1.0/ja.xpi) = 57fa2f696578a662b9487b542612ea9397df55d0ca4c42f05d438fbbbffb10f0 +SIZE (xpi/firefox-60.1.0/ja.xpi) = 571243 +SHA256 (xpi/firefox-60.1.0/ka.xpi) = 4cb58c6ede9b14304e74c190aca55d9350509699596711a7cdc7ef93fc558a70 +SIZE (xpi/firefox-60.1.0/ka.xpi) = 556074 +SHA256 (xpi/firefox-60.1.0/kab.xpi) = 56f19ec2f09e6371cb499e2ccfdb0593cba6ddc4bf4aa38b76a5ad4f72c1ab06 SIZE (xpi/firefox-60.1.0/kab.xpi) = 519626 -SHA256 (xpi/firefox-60.1.0/kk.xpi) = 13486d47e84d6da4e21edf699c9eefa0a918f7f3c9cedb17e4a29502e92014eb -SIZE (xpi/firefox-60.1.0/kk.xpi) = 582205 -SHA256 (xpi/firefox-60.1.0/km.xpi) = 2f2ff12d12cfdf6cbe916fcfe2961f17c5e03f7215f8e3e6c3da120078f5a252 -SIZE (xpi/firefox-60.1.0/km.xpi) = 582334 -SHA256 (xpi/firefox-60.1.0/kn.xpi) = 06b1d0665ca39ba00a9623142b749713cc8706dc2174e6457d56d212b5cc1cb7 +SHA256 (xpi/firefox-60.1.0/kk.xpi) = 40d120c25c473d423a20ba8c677b27cbdc15fa4efae85b3d7df9a4b83abfec6c +SIZE (xpi/firefox-60.1.0/kk.xpi) = 582197 +SHA256 (xpi/firefox-60.1.0/km.xpi) = 56815cacf17ed91600da39673454726fbf617b6dc68bbe7e07134bcb5053252c +SIZE (xpi/firefox-60.1.0/km.xpi) = 582331 +SHA256 (xpi/firefox-60.1.0/kn.xpi) = 3721d0e7cb25f2b7b094b51a661f5dc673878b5b16cfac199b295cf77043f953 SIZE (xpi/firefox-60.1.0/kn.xpi) = 585096 -SHA256 (xpi/firefox-60.1.0/ko.xpi) = 6b4e294f09726deb59ba00a0b3fdcda7257ae10159d1bf1cace532042840b543 -SIZE (xpi/firefox-60.1.0/ko.xpi) = 547046 -SHA256 (xpi/firefox-60.1.0/lij.xpi) = db4ad9772cf45751f26d9366a530a861998f294a225ee978b7fd95d86df81b57 -SIZE (xpi/firefox-60.1.0/lij.xpi) = 512399 -SHA256 (xpi/firefox-60.1.0/lt.xpi) = 302b586fcf05cd5cf927eb7083d10b9a81b9ca8f0bf96dfef5a6099f344e40cb +SHA256 (xpi/firefox-60.1.0/ko.xpi) = 861c9a887de3e2ef71eaa96c4b1d63018a854cacd94ce7cb9d7ef77fdea3557a +SIZE (xpi/firefox-60.1.0/ko.xpi) = 547054 +SHA256 (xpi/firefox-60.1.0/lij.xpi) = 6e630bf5a66379abce2f9067fd8d9fa8633f714ece5e2ccc26a5164865a69137 +SIZE (xpi/firefox-60.1.0/lij.xpi) = 512394 +SHA256 (xpi/firefox-60.1.0/lt.xpi) = a86a2e5af7483520191be81878c3db2a984cbf64e84ff76f0bd203d5a041942d SIZE (xpi/firefox-60.1.0/lt.xpi) = 535630 -SHA256 (xpi/firefox-60.1.0/lv.xpi) = eb6714574cea1c2cab5de1c0a39edc8d66ccbb4e8c1d984c63adfd4e4ba5c04a +SHA256 (xpi/firefox-60.1.0/lv.xpi) = 5edbfe26bfe997991aac3e5b949bd36de286502b8fe1fbfffaade6e4366aebe5 SIZE (xpi/firefox-60.1.0/lv.xpi) = 525645 -SHA256 (xpi/firefox-60.1.0/mai.xpi) = 0dc6b4f64f6f70c68bc02f64849092570e85cc98e2e34db5fea37283030caeaa -SIZE (xpi/firefox-60.1.0/mai.xpi) = 548474 -SHA256 (xpi/firefox-60.1.0/mk.xpi) = ad906c47ec3d50cd443a776dbaf8c3b365a8c1c01d9e9b64f4960398229f9ea0 -SIZE (xpi/firefox-60.1.0/mk.xpi) = 513026 -SHA256 (xpi/firefox-60.1.0/ml.xpi) = 1eaf9ec1b5a47b57f716d27ebd358117e5f71a324e8b731c68d1510d9f6a0a92 -SIZE (xpi/firefox-60.1.0/ml.xpi) = 598192 -SHA256 (xpi/firefox-60.1.0/mr.xpi) = 91539ad08fad6c5d8201bbee618f251a7f224d145539c36c16003d1ab9129e7a -SIZE (xpi/firefox-60.1.0/mr.xpi) = 578342 -SHA256 (xpi/firefox-60.1.0/ms.xpi) = 84993cd8a3343c9c0acca15b53efda6bda19d25cf69b6c6eedcbd4d19d6464f4 -SIZE (xpi/firefox-60.1.0/ms.xpi) = 508780 -SHA256 (xpi/firefox-60.1.0/my.xpi) = d0210c2480d51cfb6af0f169aa9fd6a8c241e23cb8f3c28bb5405ff2f217236b -SIZE (xpi/firefox-60.1.0/my.xpi) = 569574 -SHA256 (xpi/firefox-60.1.0/nb-NO.xpi) = f171fd05cd390091122cb4f36e80e933deb9f7d8580963878740bddda1be4071 -SIZE (xpi/firefox-60.1.0/nb-NO.xpi) = 509103 -SHA256 (xpi/firefox-60.1.0/ne-NP.xpi) = 5c285fbfff385942b2b5d220fe86840cf25511c9d9cd9e9d2b583a02b965704d -SIZE (xpi/firefox-60.1.0/ne-NP.xpi) = 554585 -SHA256 (xpi/firefox-60.1.0/nl.xpi) = accbcb416a44cf7294b2ad3549f5519dfa813ba1eb957eefb93b129c5f06c3f8 -SIZE (xpi/firefox-60.1.0/nl.xpi) = 516658 -SHA256 (xpi/firefox-60.1.0/nn-NO.xpi) = e12b6c982fdc46ac80a00e323e1cf4cbd9a4b9439d66461a75a7f9bb8a18dafd -SIZE (xpi/firefox-60.1.0/nn-NO.xpi) = 510615 -SHA256 (xpi/firefox-60.1.0/oc.xpi) = 19e77dbaba2134edcfe715651e78cd161c4aee08d5b3099387e3a561dd4c5bb5 -SIZE (xpi/firefox-60.1.0/oc.xpi) = 526210 -SHA256 (xpi/firefox-60.1.0/or.xpi) = 93767d4e45b297adec5419c4a105764c32154b56c0c7a2a6ef1212a3d74ffd4f +SHA256 (xpi/firefox-60.1.0/mai.xpi) = 645562039d5017658db4bfe0ba09334a239a78ff8fc6a6b39307ee3e1e5affdc +SIZE (xpi/firefox-60.1.0/mai.xpi) = 548472 +SHA256 (xpi/firefox-60.1.0/mk.xpi) = b377a9a7bb7b1a8e121cfee605d6038655a9688417c6665e4259df74039d89e5 +SIZE (xpi/firefox-60.1.0/mk.xpi) = 513030 +SHA256 (xpi/firefox-60.1.0/ml.xpi) = 2f3dcc166342d083a5bc072ad4425e38782696e7c6e1bf96d254b3208b263676 +SIZE (xpi/firefox-60.1.0/ml.xpi) = 598201 +SHA256 (xpi/firefox-60.1.0/mr.xpi) = 735f3c8e1338943b4a44a6726a15ea79353ba4abd65cd490794708f5b196c5b6 +SIZE (xpi/firefox-60.1.0/mr.xpi) = 578334 +SHA256 (xpi/firefox-60.1.0/ms.xpi) = 8c02f34b99bad15972ec2e0b1c418d83a8f698a1f15a095a570f20dd7d2631c9 +SIZE (xpi/firefox-60.1.0/ms.xpi) = 508785 +SHA256 (xpi/firefox-60.1.0/my.xpi) = a939894ef7cc7a2c07e210c248b6204500d732a117bca1e445b64114ee65a875 +SIZE (xpi/firefox-60.1.0/my.xpi) = 569571 +SHA256 (xpi/firefox-60.1.0/nb-NO.xpi) = b2a32401c5820bed992520fe2d5d80ee6131d28437be1169d54b090a9fd4309b +SIZE (xpi/firefox-60.1.0/nb-NO.xpi) = 509101 +SHA256 (xpi/firefox-60.1.0/ne-NP.xpi) = 8346fef354b1a6604ebbf7092ea0d6819591b3e1414b905ff0718b1e2e8b3769 +SIZE (xpi/firefox-60.1.0/ne-NP.xpi) = 554579 +SHA256 (xpi/firefox-60.1.0/nl.xpi) = 3750f9cff8cb57112ed31984c13e4955dd632ff84751da65631e111cfb76811d +SIZE (xpi/firefox-60.1.0/nl.xpi) = 516660 +SHA256 (xpi/firefox-60.1.0/nn-NO.xpi) = 09ab53e8ebcc306fe8fbe93c30fb2109be09f0428fb402145a970e9b5159b787 +SIZE (xpi/firefox-60.1.0/nn-NO.xpi) = 510623 +SHA256 (xpi/firefox-60.1.0/oc.xpi) = 6b80a0cbd8cefd5878c261cf0a63d7eec37e3596f24132a40c6c94d5d5e21914 +SIZE (xpi/firefox-60.1.0/oc.xpi) = 526212 +SHA256 (xpi/firefox-60.1.0/or.xpi) = a174968efac5d26097b9c301df671fbfc441debb6120bdcc137e1159d324219e SIZE (xpi/firefox-60.1.0/or.xpi) = 540091 -SHA256 (xpi/firefox-60.1.0/pa-IN.xpi) = 0b560eb40d9f8321a9423b97418b3d459287db012238fdbf656e7aadfcfc0875 -SIZE (xpi/firefox-60.1.0/pa-IN.xpi) = 557084 -SHA256 (xpi/firefox-60.1.0/pl.xpi) = 7b037320a9fd035a2a82018cddfb91d5101eb8af507089e47b2b1f85b9ae1387 -SIZE (xpi/firefox-60.1.0/pl.xpi) = 418199 -SHA256 (xpi/firefox-60.1.0/pt-BR.xpi) = df1cb8f6dccae58889b36e09b9bd203c772bd4c6aa9d9c21d2aa2acd355af9a1 -SIZE (xpi/firefox-60.1.0/pt-BR.xpi) = 513939 -SHA256 (xpi/firefox-60.1.0/pt-PT.xpi) = 417b825da5d7228f9d0d6555f5194f8fe43b9cf066430a62e25304220a43c0a1 -SIZE (xpi/firefox-60.1.0/pt-PT.xpi) = 518536 -SHA256 (xpi/firefox-60.1.0/rm.xpi) = d577804b30fe636159d14ec3d4072ee2a383691b3684b37dccacc4d74432ceae -SIZE (xpi/firefox-60.1.0/rm.xpi) = 505264 -SHA256 (xpi/firefox-60.1.0/ro.xpi) = 7fa2d7db5bbdb7a39e855628cb8303d8633a67fae136c43ebf07d3264375d70b +SHA256 (xpi/firefox-60.1.0/pa-IN.xpi) = 167b90a854723e0e90bc2d1275068b2fba456dbc75ee5bad7b7f9f0b6a3925da +SIZE (xpi/firefox-60.1.0/pa-IN.xpi) = 557091 +SHA256 (xpi/firefox-60.1.0/pl.xpi) = 922e3ef88c349620ca5569fd1fc88ec7eb3d89aa17a01453044f8addf98493c7 +SIZE (xpi/firefox-60.1.0/pl.xpi) = 418193 +SHA256 (xpi/firefox-60.1.0/pt-BR.xpi) = 17cff077070827b9eec55fc95fd26ceae58477b73b56b6943232ff87a235809c +SIZE (xpi/firefox-60.1.0/pt-BR.xpi) = 513937 +SHA256 (xpi/firefox-60.1.0/pt-PT.xpi) = 9671b66431047b3c4425893557018cf01a3d07b081f74201d05832312a08ad01 +SIZE (xpi/firefox-60.1.0/pt-PT.xpi) = 518541 +SHA256 (xpi/firefox-60.1.0/rm.xpi) = 0946d1b3960095b92d91c3bebafc05b4bbc2eab6024ca8c0a1aa8eed105228c0 +SIZE (xpi/firefox-60.1.0/rm.xpi) = 505263 +SHA256 (xpi/firefox-60.1.0/ro.xpi) = a780f52650fc9f88543bc27e51ab8aa2ffb5462415076ffcb36ee60d5e9d74f0 SIZE (xpi/firefox-60.1.0/ro.xpi) = 513284 -SHA256 (xpi/firefox-60.1.0/ru.xpi) = a045fa459b42020cb681175517405d9426e609b73959f9ec9b0ddd98578e6e15 -SIZE (xpi/firefox-60.1.0/ru.xpi) = 590513 -SHA256 (xpi/firefox-60.1.0/si.xpi) = 155a453ea78cbdf6c7be75a5bbc78a84a4208d5bc010b65f9621546056d8ecf6 -SIZE (xpi/firefox-60.1.0/si.xpi) = 544796 -SHA256 (xpi/firefox-60.1.0/sk.xpi) = 8e782b3bb378c11c36758d8645ea365ca92091a1b1b055bc2c086606b109219f -SIZE (xpi/firefox-60.1.0/sk.xpi) = 540926 -SHA256 (xpi/firefox-60.1.0/sl.xpi) = f94d25e47191b76cbe73a0a97143e1dfb07ed77aff45ce007216dd95e6b270cf -SIZE (xpi/firefox-60.1.0/sl.xpi) = 518579 -SHA256 (xpi/firefox-60.1.0/son.xpi) = a34bbaad893cd4f829c712d8cdb564a38f76a3c8f0ee0231e928dd2827ea5015 -SIZE (xpi/firefox-60.1.0/son.xpi) = 496920 -SHA256 (xpi/firefox-60.1.0/sq.xpi) = 16a852e9119d8d0fa97ee6c35ca94b669b049347e732eea12ddb474155dbd697 -SIZE (xpi/firefox-60.1.0/sq.xpi) = 520486 -SHA256 (xpi/firefox-60.1.0/sr.xpi) = f90e67c38f43d12aa7702a03ee36fc51f54c3493095d6e47907e1639ae3b7a6c -SIZE (xpi/firefox-60.1.0/sr.xpi) = 547997 -SHA256 (xpi/firefox-60.1.0/sv-SE.xpi) = a622eaba072867ccf67f63ab1e18f1ff9fc9846e5bbe30fb6746789c3ece5e7d -SIZE (xpi/firefox-60.1.0/sv-SE.xpi) = 517849 -SHA256 (xpi/firefox-60.1.0/ta.xpi) = 75edb2dcf5a9f9b0db4312460b4e877b675f47e165df67b3452ac307fec8c8d1 -SIZE (xpi/firefox-60.1.0/ta.xpi) = 577139 -SHA256 (xpi/firefox-60.1.0/te.xpi) = f3e390f930fdfade07cc51b3f3748b249377248a812a61b1e7426f545e4527c6 +SHA256 (xpi/firefox-60.1.0/ru.xpi) = 069546e9323807c299ff5a50bcf397268fdcb475d0c5f4530d62449cffec6b3a +SIZE (xpi/firefox-60.1.0/ru.xpi) = 590514 +SHA256 (xpi/firefox-60.1.0/si.xpi) = eb1945549347a5aaca3512e21cad000160c1893adb5c1056c10fbf5981dc9056 +SIZE (xpi/firefox-60.1.0/si.xpi) = 544798 +SHA256 (xpi/firefox-60.1.0/sk.xpi) = 516f5142ea7515a127e0937e545d30b7658790319dd3bb6f9a6da8b1e2a210d1 +SIZE (xpi/firefox-60.1.0/sk.xpi) = 540938 +SHA256 (xpi/firefox-60.1.0/sl.xpi) = 519c321370b2e917be768f14288cee260c299472d3c443f618c3352df5dd470b +SIZE (xpi/firefox-60.1.0/sl.xpi) = 518570 +SHA256 (xpi/firefox-60.1.0/son.xpi) = 0141ddad70db4b227464a34450eff3fc4266c7849e9ec242ac7b8fcd7e87a5d6 +SIZE (xpi/firefox-60.1.0/son.xpi) = 496918 +SHA256 (xpi/firefox-60.1.0/sq.xpi) = ebd86328ce004157fb66fbeacc887d446f82df6b56da874a266d5bd83431dca6 +SIZE (xpi/firefox-60.1.0/sq.xpi) = 520488 +SHA256 (xpi/firefox-60.1.0/sr.xpi) = 0c4afb5b094808579f61a75d8393d06af2a3138f5c73edcf0954105997363ed0 +SIZE (xpi/firefox-60.1.0/sr.xpi) = 547998 +SHA256 (xpi/firefox-60.1.0/sv-SE.xpi) = 32525901fffdf3f61d6e3654276e61245174435b53382d87d5d8d2448e52341d +SIZE (xpi/firefox-60.1.0/sv-SE.xpi) = 517852 +SHA256 (xpi/firefox-60.1.0/ta.xpi) = 4ed55b788c30e1e2113ff6ccc02777149f1d036781dd87a810d1d759fbe09438 +SIZE (xpi/firefox-60.1.0/ta.xpi) = 577147 +SHA256 (xpi/firefox-60.1.0/te.xpi) = 0e302c329d42ccc38b91a71e14eb9e10efd570455b026d8782c8b941998054cd SIZE (xpi/firefox-60.1.0/te.xpi) = 590183 -SHA256 (xpi/firefox-60.1.0/th.xpi) = 22085314a0cbc7af8a0da02c09dceec1e9d1ed390ea8d6ef994f0f95d603bc92 -SIZE (xpi/firefox-60.1.0/th.xpi) = 562043 -SHA256 (xpi/firefox-60.1.0/tr.xpi) = 29a9b015b9ad77105839e99209d4ce9762e6a8fad46bf557bb0b8cee01a5ab4c -SIZE (xpi/firefox-60.1.0/tr.xpi) = 525041 -SHA256 (xpi/firefox-60.1.0/uk.xpi) = 9b6e64d61d540f267ea786a5cf7e87d19c702aff9e8e538870a19d72996ff93e -SIZE (xpi/firefox-60.1.0/uk.xpi) = 580142 -SHA256 (xpi/firefox-60.1.0/ur.xpi) = 6feaabb90c30e04001981e68a3b218f2da325200555e78bdc2c9d8850e2fc69f -SIZE (xpi/firefox-60.1.0/ur.xpi) = 562606 -SHA256 (xpi/firefox-60.1.0/uz.xpi) = e1356213b3d2af00e873b4e9d2e625f037d98687f04eaff3bd53f8b7cc15fda2 -SIZE (xpi/firefox-60.1.0/uz.xpi) = 512905 -SHA256 (xpi/firefox-60.1.0/vi.xpi) = 9226d9d530fa40a4ed6217e335508d7f67ff7cbbe8cfcba31c4a0f8d21614a8b +SHA256 (xpi/firefox-60.1.0/th.xpi) = 21dec21431a0675c3e60bf0650a5f3aa7791c9d519c5e89ee5ce5ac574e84675 +SIZE (xpi/firefox-60.1.0/th.xpi) = 562041 +SHA256 (xpi/firefox-60.1.0/tr.xpi) = 0236a1135483a6dc90c4b059f73a6c549b5f1d466c8dd7c934f7d18c76fa1c2e +SIZE (xpi/firefox-60.1.0/tr.xpi) = 525042 +SHA256 (xpi/firefox-60.1.0/uk.xpi) = db131538fe253ba19739288f96f290dafbee8280f13d85476e00b9735c4d1745 +SIZE (xpi/firefox-60.1.0/uk.xpi) = 580148 +SHA256 (xpi/firefox-60.1.0/ur.xpi) = 6c03522bc04ebb7f4dfc0dc433d5b37c82af0be2941d3166fb8e2cbd9fbba3a4 +SIZE (xpi/firefox-60.1.0/ur.xpi) = 562607 +SHA256 (xpi/firefox-60.1.0/uz.xpi) = c662124bdbbe1984015ea7f1e460cf19152e5faa996959b0bbf78eb2ac69f8ba +SIZE (xpi/firefox-60.1.0/uz.xpi) = 512906 +SHA256 (xpi/firefox-60.1.0/vi.xpi) = c2503cfc42092643837ffd3c58c637157bdda76c63a3f5d209e5e251eef0feba SIZE (xpi/firefox-60.1.0/vi.xpi) = 527416 -SHA256 (xpi/firefox-60.1.0/xh.xpi) = bb867d93d090f6ae7ff8ce860fb3ff49cc70766dfd6116ed05048eb9cf493072 -SIZE (xpi/firefox-60.1.0/xh.xpi) = 511083 -SHA256 (xpi/firefox-60.1.0/zh-CN.xpi) = b22b63acf29357ed765523715ba4f0c2371767c075e922638f80eae52799715f -SIZE (xpi/firefox-60.1.0/zh-CN.xpi) = 542803 -SHA256 (xpi/firefox-60.1.0/zh-TW.xpi) = c39e4d114603e95b815755aee4713081d4262a7fee96ba55f0321d15584ff30a -SIZE (xpi/firefox-60.1.0/zh-TW.xpi) = 541120 +SHA256 (xpi/firefox-60.1.0/xh.xpi) = f45cced5035fcaadc04c119a332e8358d17fafea8feae8cd159ff314117e3028 +SIZE (xpi/firefox-60.1.0/xh.xpi) = 511079 +SHA256 (xpi/firefox-60.1.0/zh-CN.xpi) = efc811e67abb016227c73a56163d7db0877f0b3ab09c3c02382baad19a87981f +SIZE (xpi/firefox-60.1.0/zh-CN.xpi) = 542800 +SHA256 (xpi/firefox-60.1.0/zh-TW.xpi) = 81269be88130b77836e55744f7b287d4664fdb1f40940568a31cdb3e024857a4 +SIZE (xpi/firefox-60.1.0/zh-TW.xpi) = 541124 Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Fri Jun 22 21:15:52 2018 (r473076) +++ head/www/firefox-esr/Makefile Fri Jun 22 21:16:06 2018 (r473077) @@ -3,10 +3,11 @@ PORTNAME= firefox DISTVERSION= 60.1.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build2/source PKGNAMESUFFIX= -esr DISTFILES= ${DISTNAME}esr.source${EXTRACT_SUFX} Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Fri Jun 22 21:15:52 2018 (r473076) +++ head/www/firefox-esr/distinfo Fri Jun 22 21:16:06 2018 (r473077) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529440553 -SHA256 (firefox-60.1.0esr.source.tar.xz) = 6c6247b6fd63b4b08b85d3a7a536ce9238c3ce84de6c62ca0a5fdd2643d0cd1b -SIZE (firefox-60.1.0esr.source.tar.xz) = 267439036 +TIMESTAMP = 1529608108 +SHA256 (firefox-60.1.0esr.source.tar.xz) = a4e7bb80e7ebab19769b2b8940966349136a99aabd497034662cffa54ea30e40 +SIZE (firefox-60.1.0esr.source.tar.xz) = 268770652 From owner-svn-ports-head@freebsd.org Fri Jun 22 21:19:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 843F41027D7C; Fri, 22 Jun 2018 21:19:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3055982CDB; Fri, 22 Jun 2018 21:19: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EB0CB2613A; Fri, 22 Jun 2018 21:19:42 +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 w5MLJgti001777; Fri, 22 Jun 2018 21:19:42 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLJgkn001775; Fri, 22 Jun 2018 21:19:42 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222119.w5MLJgkn001775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 21:19:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473078 - in head/games/wop: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/wop: . files X-SVN-Commit-Revision: 473078 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:19:43 -0000 Author: amdmi3 Date: Fri Jun 22 21:19:42 2018 New Revision: 473078 URL: https://svnweb.freebsd.org/changeset/ports/473078 Log: - Fix build with clang 6 - Cosmetic fixes - Regenerate patches Modified: head/games/wop/Makefile head/games/wop/files/patch-src-serverlistwindow.cpp head/games/wop/files/patch-src-spriteset.cpp Modified: head/games/wop/Makefile ============================================================================== --- head/games/wop/Makefile Fri Jun 22 21:16:06 2018 (r473077) +++ head/games/wop/Makefile Fri Jun 22 21:19:42 2018 (r473078) @@ -21,6 +21,10 @@ BUILD_DEPENDS= makedepend:devel/makedepend USES= tar:bzip2 gmake USE_SDL= sdl net mixer ttf image +MAKE_JOBS_UNSAFE= yes + +CXXFLAGS+= -Wno-c++11-narrowing + DATAVERSION= 2005-12-21 DESKTOP_ENTRIES="Worms of Prey" \ "Real-time Worms game" \ @@ -46,12 +50,12 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/wop ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/woprc ${STAGEDIR}${PREFIX}/etc/woprc.sample - ${MKDIR} ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKDIR}/${PORTNAME}data-${DATAVERSION} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ do-install-DOCS-on: - ${MKDIR} ${STAGEDIR}${DOCSDIR} -.for f in AUTHORS COPYING ChangeLog README README-COMMAND-LINE-OPTIONS.txt + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in AUTHORS ChangeLog README README-COMMAND-LINE-OPTIONS.txt ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ .endfor Modified: head/games/wop/files/patch-src-serverlistwindow.cpp ============================================================================== --- head/games/wop/files/patch-src-serverlistwindow.cpp Fri Jun 22 21:16:06 2018 (r473077) +++ head/games/wop/files/patch-src-serverlistwindow.cpp Fri Jun 22 21:19:42 2018 (r473078) @@ -1,6 +1,6 @@ ---- src/serverlistwindow.cpp.orig 2005-07-17 21:27:31.000000000 +0400 -+++ src/serverlistwindow.cpp 2013-05-30 22:08:15.521112163 +0400 -@@ -94,7 +94,6 @@ +--- src/serverlistwindow.cpp.orig 2005-07-17 17:27:31 UTC ++++ src/serverlistwindow.cpp +@@ -94,7 +94,6 @@ ServerListWindow::ServerListWindow( Uint } ServerListWindow::~ServerListWindow() { Modified: head/games/wop/files/patch-src-spriteset.cpp ============================================================================== --- head/games/wop/files/patch-src-spriteset.cpp Fri Jun 22 21:16:06 2018 (r473077) +++ head/games/wop/files/patch-src-spriteset.cpp Fri Jun 22 21:19:42 2018 (r473078) @@ -1,6 +1,6 @@ ---- src/spriteset.cpp.orig 2006-03-27 14:27:53.000000000 +0400 -+++ src/spriteset.cpp 2013-09-12 04:56:04.339229318 +0400 -@@ -618,3 +618,5 @@ +--- src/spriteset.cpp.orig 2006-03-27 10:27:53 UTC ++++ src/spriteset.cpp +@@ -618,3 +618,5 @@ void SpriteSet::getSubdirConf( Settin } /**********************************************************/ From owner-svn-ports-head@freebsd.org Fri Jun 22 21:28:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B9911027FE8; Fri, 22 Jun 2018 21:28:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 278EF832DC; Fri, 22 Jun 2018 21:28:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 031CE262E0; Fri, 22 Jun 2018 21:28:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLSrOd007174; Fri, 22 Jun 2018 21:28:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLSq2O007169; Fri, 22 Jun 2018 21:28:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222128.w5MLSq2O007169@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 21:28:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473080 - in head/games/ivan: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/ivan: . files X-SVN-Commit-Revision: 473080 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:28:54 -0000 Author: amdmi3 Date: Fri Jun 22 21:28:52 2018 New Revision: 473080 URL: https://svnweb.freebsd.org/changeset/ports/473080 Log: - Pet portlint - Fix build with clang 6 - Regenerate patches Added: head/games/ivan/files/patch-Makefile.in - copied, changed from r473079, head/games/ivan/files/patch-configure Deleted: head/games/ivan/files/patch-configure Modified: head/games/ivan/Makefile head/games/ivan/files/patch-FeLib-Include-festring.h head/games/ivan/files/patch-FeLib-Source-bitmap.cpp head/games/ivan/files/patch-FeLib-Source-festring.cpp Modified: head/games/ivan/Makefile ============================================================================== --- head/games/ivan/Makefile Fri Jun 22 21:24:25 2018 (r473079) +++ head/games/ivan/Makefile Fri Jun 22 21:28:52 2018 (r473080) @@ -16,9 +16,11 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_armv6= fails to compile: use of overloaded operator '<<' is ambiguous BROKEN_armv7= fails to compile: use of overloaded operator '<<' is ambiguous -USE_SDL= sdl USES= gmake +USE_SDL= sdl GNU_CONFIGURE= yes + +CXXFLAGS+= -Wno-c++11-narrowing CONFIGURE_ARGS= --localstatedir=/var/games Modified: head/games/ivan/files/patch-FeLib-Include-festring.h ============================================================================== --- head/games/ivan/files/patch-FeLib-Include-festring.h Fri Jun 22 21:24:25 2018 (r473079) +++ head/games/ivan/files/patch-FeLib-Include-festring.h Fri Jun 22 21:28:52 2018 (r473080) @@ -1,6 +1,6 @@ ---- FeLib/Include/festring.h.orig 2004-10-26 23:35:44.000000000 +0400 -+++ FeLib/Include/festring.h 2013-11-08 16:54:09.080772415 +0400 -@@ -142,7 +142,7 @@ +--- FeLib/Include/festring.h.orig 2004-10-26 19:35:44 UTC ++++ FeLib/Include/festring.h +@@ -142,7 +142,7 @@ inline festring::festring(const festring inline festring::festring(sizetype N) : Size(N), OwnsData(true), Reserved(N|FESTRING_PAGE) { @@ -9,7 +9,7 @@ REFS(Ptr) = 0; Data = Ptr; } -@@ -150,7 +150,7 @@ +@@ -150,7 +150,7 @@ inline festring::festring(sizetype N) inline festring::festring(sizetype N, char C) : Size(N), OwnsData(true), Reserved(N|FESTRING_PAGE) { Modified: head/games/ivan/files/patch-FeLib-Source-bitmap.cpp ============================================================================== --- head/games/ivan/files/patch-FeLib-Source-bitmap.cpp Fri Jun 22 21:24:25 2018 (r473079) +++ head/games/ivan/files/patch-FeLib-Source-bitmap.cpp Fri Jun 22 21:28:52 2018 (r473080) @@ -1,6 +1,6 @@ ---- FeLib/Source/bitmap.cpp.orig 2004-10-26 23:35:47.000000000 +0400 -+++ FeLib/Source/bitmap.cpp 2013-05-30 22:23:14.349113259 +0400 -@@ -873,12 +873,12 @@ +--- FeLib/Source/bitmap.cpp.orig 2004-10-26 19:35:47 UTC ++++ FeLib/Source/bitmap.cpp +@@ -873,12 +873,12 @@ void bitmap::DrawLine(int OrigFromX, int static const int PointY[] = { 0, -1, 0, 0, 1 }; const int Times = Wide ? 5 : 1; Modified: head/games/ivan/files/patch-FeLib-Source-festring.cpp ============================================================================== --- head/games/ivan/files/patch-FeLib-Source-festring.cpp Fri Jun 22 21:24:25 2018 (r473079) +++ head/games/ivan/files/patch-FeLib-Source-festring.cpp Fri Jun 22 21:28:52 2018 (r473080) @@ -1,5 +1,5 @@ ---- FeLib/Source/festring.cpp.orig 2004-11-11 20:27:44.000000000 +0300 -+++ FeLib/Source/festring.cpp 2013-11-08 16:54:46.925772448 +0400 +--- FeLib/Source/festring.cpp.orig 2004-11-11 17:27:44 UTC ++++ FeLib/Source/festring.cpp @@ -11,6 +11,7 @@ */ @@ -8,7 +8,7 @@ #include "festring.h" #include "allocate.h" -@@ -116,7 +117,7 @@ +@@ -116,7 +117,7 @@ void festring::CreateOwnData(const char* { Size = N; Reserved = N|FESTRING_PAGE; @@ -17,7 +17,7 @@ REFS(Ptr) = 0; Data = Ptr; memcpy(Ptr, CStr, N); -@@ -137,7 +138,7 @@ +@@ -137,7 +138,7 @@ void festring::SlowAppend(char Char) DeletePtr = &REFS(OldPtr); Reserved = NewSize|FESTRING_PAGE; @@ -26,7 +26,7 @@ REFS(NewPtr) = 0; Data = NewPtr; memcpy(NewPtr, OldPtr, OldSize); -@@ -150,7 +151,7 @@ +@@ -150,7 +151,7 @@ void festring::SlowAppend(char Char) { Size = 1; Reserved = FESTRING_PAGE; @@ -35,7 +35,7 @@ REFS(Ptr) = 0; Ptr[0] = Char; Data = Ptr; -@@ -174,7 +175,7 @@ +@@ -174,7 +175,7 @@ void festring::SlowAppend(const char* CS DeletePtr = &REFS(OldPtr); Reserved = NewSize|FESTRING_PAGE; @@ -44,7 +44,7 @@ REFS(NewPtr) = 0; Data = NewPtr; memcpy(NewPtr, OldPtr, OldSize); -@@ -205,7 +206,7 @@ +@@ -205,7 +206,7 @@ void festring::Assign(sizetype N, char C } Reserved = N|FESTRING_PAGE; @@ -53,7 +53,7 @@ REFS(Ptr) = 0; Data = Ptr; memset(Ptr, C, N); -@@ -240,7 +241,7 @@ +@@ -240,7 +241,7 @@ void festring::Resize(sizetype N, char C } Reserved = N|FESTRING_PAGE; @@ -62,7 +62,7 @@ REFS(NewPtr) = 0; Data = NewPtr; memcpy(NewPtr, OldPtr, OldSize); -@@ -259,7 +260,7 @@ +@@ -259,7 +260,7 @@ void festring::Resize(sizetype N, char C --REFS(OldPtr); Reserved = N|FESTRING_PAGE; @@ -71,7 +71,7 @@ REFS(NewPtr) = 0; Data = NewPtr; memcpy(NewPtr, OldPtr, N); -@@ -362,7 +363,7 @@ +@@ -362,7 +363,7 @@ void festring::Erase(sizetype Pos, sizet sizetype NewSize = MoveReq ? OldSize - Length : Pos; Size = NewSize; Reserved = NewSize|FESTRING_PAGE; @@ -80,7 +80,7 @@ REFS(Ptr) = 0; Data = Ptr; OwnsData = true; -@@ -411,7 +412,7 @@ +@@ -411,7 +412,7 @@ void festring::Insert(sizetype Pos, cons } Reserved = NewSize|FESTRING_PAGE; Copied and modified: head/games/ivan/files/patch-Makefile.in (from r473079, head/games/ivan/files/patch-configure) ============================================================================== --- head/games/ivan/files/patch-configure Fri Jun 22 21:24:25 2018 (r473079, copy source) +++ head/games/ivan/files/patch-Makefile.in Fri Jun 22 21:28:52 2018 (r473080) @@ -1,6 +1,6 @@ ---- Makefile.in.orig Thu Nov 3 04:38:15 2005 -+++ Makefile.in Thu Nov 3 04:38:57 2005 -@@ -338,16 +338,6 @@ +--- Makefile.in.orig 2004-12-10 21:34:29 UTC ++++ Makefile.in +@@ -338,16 +338,6 @@ maintainer-clean-generic clean mostlycle install-data-local: From owner-svn-ports-head@freebsd.org Fri Jun 22 21:29:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1675E1000021; Fri, 22 Jun 2018 21:29:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B4CE4833B5; Fri, 22 Jun 2018 21:29:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 947EB262E1; Fri, 22 Jun 2018 21:29:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLTMUU007331; Fri, 22 Jun 2018 21:29:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLTLmQ007328; Fri, 22 Jun 2018 21:29:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806222129.w5MLTLmQ007328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 22 Jun 2018 21:29:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473081 - in head/games/linwarrior: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/linwarrior: . files X-SVN-Commit-Revision: 473081 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:29:23 -0000 Author: amdmi3 Date: Fri Jun 22 21:29:21 2018 New Revision: 473081 URL: https://svnweb.freebsd.org/changeset/ports/473081 Log: - Fix build with clang 6 - Pet portlint - Regenerate patches Added: head/games/linwarrior/files/patch-source_cController.cpp (contents, props changed) Modified: head/games/linwarrior/Makefile head/games/linwarrior/files/patch-Makefile Modified: head/games/linwarrior/Makefile ============================================================================== --- head/games/linwarrior/Makefile Fri Jun 22 21:28:52 2018 (r473080) +++ head/games/linwarrior/Makefile Fri Jun 22 21:29:21 2018 (r473081) @@ -16,6 +16,8 @@ USES= gmake openal:al,alut USE_GL= gl glu USE_SDL= sdl +CFLAGS+= -Wno-c++11-narrowing + WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/${PORTNAME} @@ -29,8 +31,8 @@ DESKTOP_ENTRIES="LinWarrior 3D" \ false post-extract: - @${FIND} ${WRKSRC} -type d -exec chmod a+rx {} \; - @${FIND} ${WRKSRC} -type f -exec chmod a+r {} \; + @${FIND} ${WRKSRC} -type d -exec ${CHMOD} a+rx {} \; + @${FIND} ${WRKSRC} -type f -exec ${CHMOD} a+r {} \; post-patch: @${REINPLACE_CMD} -e '/hash_set/ d' ${WRKSRC}/source/cAlert.h Modified: head/games/linwarrior/files/patch-Makefile ============================================================================== --- head/games/linwarrior/files/patch-Makefile Fri Jun 22 21:28:52 2018 (r473080) +++ head/games/linwarrior/files/patch-Makefile Fri Jun 22 21:29:21 2018 (r473081) @@ -1,5 +1,5 @@ ---- Makefile.orig 2010-02-05 22:50:30.000000000 +0300 -+++ Makefile 2010-04-04 06:18:24.000000000 +0400 +--- Makefile.orig 2010-02-05 19:50:30 UTC ++++ Makefile @@ -2,7 +2,7 @@ # Makefile with auto-dependency generation @@ -9,7 +9,7 @@ # Automatic searching for source files. # Objects to compile are all sources (cpp) and put the .o below build-dir. -@@ -20,18 +20,17 @@ +@@ -20,18 +20,17 @@ ifneq (,$(findstring Win,$(OS))) LIMITER=$(dir \file) CFLAGS+= -static-libgcc else @@ -30,7 +30,7 @@ # Print warnings when compiling. CFLAGS += -Wall -@@ -40,7 +39,6 @@ +@@ -40,7 +39,6 @@ CFLAGS += -Wall CFLAGS += $(INCLUDES) # Optimizations. Added: head/games/linwarrior/files/patch-source_cController.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/linwarrior/files/patch-source_cController.cpp Fri Jun 22 21:29:21 2018 (r473081) @@ -0,0 +1,22 @@ +--- source/cController.cpp.orig 2018-06-22 20:39:57 UTC ++++ source/cController.cpp +@@ -182,16 +182,16 @@ void cController::attackEnemy() { + + cObject* target = cWorld::instance->mIndex[entity]; + if (mDevice->inTargetRange() < 0.01) { +- mDevice->do_aimFor(NULL); ++ mDevice->do_aimFor(0); + pop(); + return; + } + if (target == NULL) { // Target disappeared +- mDevice->do_aimFor(NULL); ++ mDevice->do_aimFor(0); + pop(); + return; + } else if (target->hasRole(DEAD)) { +- mDevice->do_aimFor(NULL); ++ mDevice->do_aimFor(0); + pop(); + return; + } From owner-svn-ports-head@freebsd.org Fri Jun 22 21:39:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9AE010002C6; Fri, 22 Jun 2018 21:39:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 85D948393E; Fri, 22 Jun 2018 21:39:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 646862648D; Fri, 22 Jun 2018 21:39:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLdh4s012671; Fri, 22 Jun 2018 21:39:43 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLdhBc012670; Fri, 22 Jun 2018 21:39:43 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222139.w5MLdhBc012670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:39:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473082 - head/x11/qterminal-l10n X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11/qterminal-l10n X-SVN-Commit-Revision: 473082 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:39:44 -0000 Author: swills Date: Fri Jun 22 21:39:42 2018 New Revision: 473082 URL: https://svnweb.freebsd.org/changeset/ports/473082 Log: x11/qterminal-l10n: Update to 0.13.0 PR: 228517 Submitted by: Jesper Schmitz Mouridsen Modified: head/x11/qterminal-l10n/Makefile (contents, props changed) Modified: head/x11/qterminal-l10n/Makefile ============================================================================== --- head/x11/qterminal-l10n/Makefile Fri Jun 22 21:29:21 2018 (r473081) +++ head/x11/qterminal-l10n/Makefile Fri Jun 22 21:39:42 2018 (r473082) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qterminal-l10n -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= x11 MASTER_SITES= LXQT/lxqt-l10n DISTNAME= lxqt-l10n-${DISTVERSION} From owner-svn-ports-head@freebsd.org Fri Jun 22 21:40:04 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A74010002FD; Fri, 22 Jun 2018 21:40:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D13C283A1E; Fri, 22 Jun 2018 21:40:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B37A526492; Fri, 22 Jun 2018 21:40:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLe3lr012839; Fri, 22 Jun 2018 21:40:03 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLe38v012838; Fri, 22 Jun 2018 21:40:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222140.w5MLe38v012838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:40:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473083 - head/graphics/lximageqt-l10n X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/graphics/lximageqt-l10n X-SVN-Commit-Revision: 473083 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:40:04 -0000 Author: swills Date: Fri Jun 22 21:40:03 2018 New Revision: 473083 URL: https://svnweb.freebsd.org/changeset/ports/473083 Log: graphics/lximageqt-l10n: Update to 0.13.0 PR: 228516 Submitted by: Jesper Schmitz Mouridsen Modified: head/graphics/lximageqt-l10n/Makefile (contents, props changed) Modified: head/graphics/lximageqt-l10n/Makefile ============================================================================== --- head/graphics/lximageqt-l10n/Makefile Fri Jun 22 21:39:42 2018 (r473082) +++ head/graphics/lximageqt-l10n/Makefile Fri Jun 22 21:40:03 2018 (r473083) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lximageqt-l10n -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= graphics MASTER_SITES= LXQT/lxqt-l10n DISTNAME= lxqt-l10n-${DISTVERSION} From owner-svn-ports-head@freebsd.org Fri Jun 22 21:40:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 328741000339; Fri, 22 Jun 2018 21:40:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D9F5383B11; Fri, 22 Jun 2018 21:40:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BAD7726494; Fri, 22 Jun 2018 21:40:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLeNtc012990; Fri, 22 Jun 2018 21:40:23 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLeNYv012988; Fri, 22 Jun 2018 21:40:23 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222140.w5MLeNYv012988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473084 - head/x11-fm/pcmanfmqt-l10n X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11-fm/pcmanfmqt-l10n X-SVN-Commit-Revision: 473084 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:40:24 -0000 Author: swills Date: Fri Jun 22 21:40:23 2018 New Revision: 473084 URL: https://svnweb.freebsd.org/changeset/ports/473084 Log: x11-fm/pcmanfmqt-l10n: Update to 0.13.0 PR: 228515 Submitted by: Jesper Schmitz Mouridsen Modified: head/x11-fm/pcmanfmqt-l10n/Makefile (contents, props changed) head/x11-fm/pcmanfmqt-l10n/pkg-plist (contents, props changed) Modified: head/x11-fm/pcmanfmqt-l10n/Makefile ============================================================================== --- head/x11-fm/pcmanfmqt-l10n/Makefile Fri Jun 22 21:40:03 2018 (r473083) +++ head/x11-fm/pcmanfmqt-l10n/Makefile Fri Jun 22 21:40:23 2018 (r473084) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcmanfmqt-l10n -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= x11-fm MASTER_SITES= LXQT/lxqt-l10n DISTNAME= lxqt-l10n-${DISTVERSION} Modified: head/x11-fm/pcmanfmqt-l10n/pkg-plist ============================================================================== --- head/x11-fm/pcmanfmqt-l10n/pkg-plist Fri Jun 22 21:40:03 2018 (r473083) +++ head/x11-fm/pcmanfmqt-l10n/pkg-plist Fri Jun 22 21:40:23 2018 (r473084) @@ -8,6 +8,7 @@ share/pcmanfm-qt/translations/pcmanfm-qt_es.qm share/pcmanfm-qt/translations/pcmanfm-qt_fr.qm share/pcmanfm-qt/translations/pcmanfm-qt_gl.qm share/pcmanfm-qt/translations/pcmanfm-qt_hu.qm +share/pcmanfm-qt/translations/pcmanfm-qt_id.qm share/pcmanfm-qt/translations/pcmanfm-qt_it.qm share/pcmanfm-qt/translations/pcmanfm-qt_ja.qm share/pcmanfm-qt/translations/pcmanfm-qt_lt.qm @@ -18,4 +19,5 @@ share/pcmanfm-qt/translations/pcmanfm-qt_pt_BR.qm share/pcmanfm-qt/translations/pcmanfm-qt_ru.qm share/pcmanfm-qt/translations/pcmanfm-qt_tr.qm share/pcmanfm-qt/translations/pcmanfm-qt_uk.qm +share/pcmanfm-qt/translations/pcmanfm-qt_zh_CN.qm share/pcmanfm-qt/translations/pcmanfm-qt_zh_TW.qm From owner-svn-ports-head@freebsd.org Fri Jun 22 21:40:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F34BD100035F; Fri, 22 Jun 2018 21:40:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A6A7583CFF; Fri, 22 Jun 2018 21:40:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 892F82649B; Fri, 22 Jun 2018 21:40:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLeZhR013130; Fri, 22 Jun 2018 21:40:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLeZO4013127; Fri, 22 Jun 2018 21:40:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222140.w5MLeZO4013127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:40:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473085 - head/x11/libfmqt-l10n X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11/libfmqt-l10n X-SVN-Commit-Revision: 473085 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:40:36 -0000 Author: swills Date: Fri Jun 22 21:40:34 2018 New Revision: 473085 URL: https://svnweb.freebsd.org/changeset/ports/473085 Log: x11/libfmqt-l10n: Update to 0.13.0 PR: 228514 Submitted by: Jesper Schmitz Mouridsen Modified: head/x11/libfmqt-l10n/Makefile (contents, props changed) head/x11/libfmqt-l10n/pkg-plist (contents, props changed) Modified: head/x11/libfmqt-l10n/Makefile ============================================================================== --- head/x11/libfmqt-l10n/Makefile Fri Jun 22 21:40:23 2018 (r473084) +++ head/x11/libfmqt-l10n/Makefile Fri Jun 22 21:40:34 2018 (r473085) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libfmqt-l10n -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= x11 MASTER_SITES= LXQT/lxqt-l10n DISTNAME= lxqt-l10n-${DISTVERSION} Modified: head/x11/libfmqt-l10n/pkg-plist ============================================================================== --- head/x11/libfmqt-l10n/pkg-plist Fri Jun 22 21:40:23 2018 (r473084) +++ head/x11/libfmqt-l10n/pkg-plist Fri Jun 22 21:40:34 2018 (r473085) @@ -18,4 +18,5 @@ share/libfm-qt/translations/libfm-qt_pt.qm share/libfm-qt/translations/libfm-qt_ru.qm share/libfm-qt/translations/libfm-qt_tr.qm share/libfm-qt/translations/libfm-qt_uk.qm +share/libfm-qt/translations/libfm-qt_zh_CN.qm share/libfm-qt/translations/libfm-qt_zh_TW.qm From owner-svn-ports-head@freebsd.org Fri Jun 22 21:40:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59FD91000399; Fri, 22 Jun 2018 21:40:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0D26283E12; Fri, 22 Jun 2018 21:40:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CA692264B0; Fri, 22 Jun 2018 21:40:53 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLerso014742; Fri, 22 Jun 2018 21:40:53 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLer9g014741; Fri, 22 Jun 2018 21:40:53 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222140.w5MLer9g014741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473086 - head/devel/liblxqt-l10n X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/liblxqt-l10n X-SVN-Commit-Revision: 473086 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:40:54 -0000 Author: swills Date: Fri Jun 22 21:40:53 2018 New Revision: 473086 URL: https://svnweb.freebsd.org/changeset/ports/473086 Log: devel/liblxqt-l10n: Update to 0.13.0 PR: 228703 Submitted by: Jesper Schmitz Mouridsen Modified: head/devel/liblxqt-l10n/Makefile (contents, props changed) Modified: head/devel/liblxqt-l10n/Makefile ============================================================================== --- head/devel/liblxqt-l10n/Makefile Fri Jun 22 21:40:34 2018 (r473085) +++ head/devel/liblxqt-l10n/Makefile Fri Jun 22 21:40:53 2018 (r473086) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= liblxqt-l10n -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= devel MASTER_SITES= LXQT/lxqt-l10n DISTNAME= lxqt-l10n-${DISTVERSION} @@ -14,33 +14,33 @@ LICENSE= LGPL21+ MASTERDIR= ${.CURDIR}/../../x11/lxqt-l10n DISTINFO_FILE= ${MASTERDIR}/distinfo -DESCR= ${MASTERDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist +DESCR= ${MASTERDIR}/pkg-descr +PLIST= ${.CURDIR}/pkg-plist -USES= cmake:outsource lxqt pkgconfig tar:xz +USES= cmake:outsource lxqt pkgconfig tar:xz USE_QT5= buildtools_build qmake_build linguisttools USE_LXQT= buildtools CMAKE_ARGS+= -DWITH_COMPTON_CONF:BOOL=OFF \ - -DWITH_LIBFM_QT:BOOL=OFF \ - -DWITH_LIBLXQT:BOOL=ON \ - -DWITH_LXIMAGE_QT:BOOL=OFF \ - -DWITH_LXQT_ABOUT:BOOL=OFF \ - -DWITH_LXQT_ADMIN:BOOL=OFF \ - -DWITH_LXQT_CONFIG:BOOL=OFF \ - -DWITH_LXQT_GLOBALKEYS:BOOL=OFF \ - -DWITH_LXQT_NOTIFICATIOND:BOOL=OFF \ - -DWITH_LXQT_OPENSSH_ASKPASS:BOOL=OFF \ - -DWITH_LXQT_PANEL:BOOL=OFF \ - -DWITH_LXQT_POLICYKIT:BOOL=OFF \ - -DWITH_LXQT_POWERMANAGEMENT:BOOL=OFF \ - -DWITH_LXQT_RUNNER:BOOL=OFF \ - -DWITH_LXQT_SESSION:BOOL=OFF \ - -DWITH_LXQT_SUDO:BOOL=OFF \ - -DWITH_OBCONF_QT:BOOL=OFF \ - -DWITH_PCMANFM_QT:BOOL=OFF \ - -DWITH_QTERMINAL:BOOL=OFF \ - -DWITH_QTERMWIDGET:BOOL=OFF \ - -DWITH_PAVUCONTROL_QT:BOOL=OFF + -DWITH_LIBFM_QT:BOOL=OFF \ + -DWITH_LIBLXQT:BOOL=ON \ + -DWITH_LXIMAGE_QT:BOOL=OFF \ + -DWITH_LXQT_ABOUT:BOOL=OFF \ + -DWITH_LXQT_ADMIN:BOOL=OFF \ + -DWITH_LXQT_CONFIG:BOOL=OFF \ + -DWITH_LXQT_GLOBALKEYS:BOOL=OFF \ + -DWITH_LXQT_NOTIFICATIOND:BOOL=OFF \ + -DWITH_LXQT_OPENSSH_ASKPASS:BOOL=OFF \ + -DWITH_LXQT_PANEL:BOOL=OFF \ + -DWITH_LXQT_POLICYKIT:BOOL=OFF \ + -DWITH_LXQT_POWERMANAGEMENT:BOOL=OFF \ + -DWITH_LXQT_RUNNER:BOOL=OFF \ + -DWITH_LXQT_SESSION:BOOL=OFF \ + -DWITH_LXQT_SUDO:BOOL=OFF \ + -DWITH_OBCONF_QT:BOOL=OFF \ + -DWITH_PCMANFM_QT:BOOL=OFF \ + -DWITH_QTERMINAL:BOOL=OFF \ + -DWITH_QTERMWIDGET:BOOL=OFF \ + -DWITH_PAVUCONTROL_QT:BOOL=OFF .include From owner-svn-ports-head@freebsd.org Fri Jun 22 21:40:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7AB6710003BC; Fri, 22 Jun 2018 21:40:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 108B283E3D; Fri, 22 Jun 2018 21:40:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D263F264B9; Fri, 22 Jun 2018 21:40:57 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MLevc9014878; Fri, 22 Jun 2018 21:40:57 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MLeveA014876; Fri, 22 Jun 2018 21:40:57 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806222140.w5MLeveA014876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 22 Jun 2018 21:40:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473087 - head/x11/lxqt-l10n X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/x11/lxqt-l10n X-SVN-Commit-Revision: 473087 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 21:40:58 -0000 Author: swills Date: Fri Jun 22 21:40:57 2018 New Revision: 473087 URL: https://svnweb.freebsd.org/changeset/ports/473087 Log: x11/lxqt-l10n: Update to 0.13.0 PR: 228513 Submitted by: Jesper Schmitz Mouridsen (maintainer) Modified: head/x11/lxqt-l10n/Makefile (contents, props changed) head/x11/lxqt-l10n/distinfo (contents, props changed) Modified: head/x11/lxqt-l10n/Makefile ============================================================================== --- head/x11/lxqt-l10n/Makefile Fri Jun 22 21:40:53 2018 (r473086) +++ head/x11/lxqt-l10n/Makefile Fri Jun 22 21:40:57 2018 (r473087) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lxqt-l10n -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= x11 MAINTAINER= jesper@schmitz.computer @@ -10,11 +10,11 @@ COMMENT= Translations of LXQt components LICENSE= LGPL21+ -RUN_DEPENDS= liblxqt-l10n>=0.12:devel/liblxqt-l10n \ - lximageqt-l10n>=0.12:graphics/lximageqt-l10n \ - libfmqt-l10n>=0.12:x11/libfmqt-l10n \ - pcmanfmqt-l10n>=0.12:x11-fm/pcmanfmqt-l10n +RUN_DEPENDS= liblxqt-l10n>=0.13:devel/liblxqt-l10n \ + lximageqt-l10n>=0.13:graphics/lximageqt-l10n \ + libfmqt-l10n>=0.13:x11/libfmqt-l10n \ + pcmanfmqt-l10n>=0.13:x11-fm/pcmanfmqt-l10n -USES= metaport +USES= metaport .include Modified: head/x11/lxqt-l10n/distinfo ============================================================================== --- head/x11/lxqt-l10n/distinfo Fri Jun 22 21:40:53 2018 (r473086) +++ head/x11/lxqt-l10n/distinfo Fri Jun 22 21:40:57 2018 (r473087) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508830829 -SHA256 (lxqt/lxqt-l10n-0.12.0.tar.xz) = 62ef5183d209f84a238f040cd155182e0b5c00631368918a5a6bdedfcb27d02b -SIZE (lxqt/lxqt-l10n-0.12.0.tar.xz) = 695368 +TIMESTAMP = 1527345943 +SHA256 (lxqt/lxqt-l10n-0.13.0.tar.xz) = 8706415a89ba2808c67dd5f8c9479743acb11b1afc2fe331d0330fccbe9ac5aa +SIZE (lxqt/lxqt-l10n-0.13.0.tar.xz) = 758588 From owner-svn-ports-head@freebsd.org Fri Jun 22 22:08:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4770E10013E3; Fri, 22 Jun 2018 22:08:34 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D5BF584EB2; Fri, 22 Jun 2018 22:08:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B31AB26956; Fri, 22 Jun 2018 22:08:33 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MM8XTx028628; Fri, 22 Jun 2018 22:08:33 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MM8X00028626; Fri, 22 Jun 2018 22:08:33 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806222208.w5MM8X00028626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 22 Jun 2018 22:08:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473088 - in head: . www www/npapi-vlc X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head: . www www/npapi-vlc X-SVN-Commit-Revision: 473088 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 22:08:34 -0000 Author: rene Date: Fri Jun 22 22:08:33 2018 New Revision: 473088 URL: https://svnweb.freebsd.org/changeset/ports/473088 Log: Remove www/npapi-vlc, it depends on expired www/libxul. Deleted: head/www/npapi-vlc/ Modified: head/MOVED head/www/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jun 22 21:40:57 2018 (r473087) +++ head/MOVED Fri Jun 22 22:08:33 2018 (r473088) @@ -10289,3 +10289,4 @@ multimedia/qt5-phonon4-designerplugin|multimedia/phono multimedia/qt5-phonon4-gstreamer|multimedia/phonon-gstreamer@qt5|2018-06-21|Moved to a flavored version multimedia/qt5-phonon4-vlc|multimedia/phonon-vlc@qt5|2018-06-21|Moved to a flavored version net/libproxy-gnome|net/libproxy-gnome2|2018-07-22|Renamed to make slave names consistent +www/npapi-vlc||2018-06-22|Removed, depends on expired www/libxul Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 22 21:40:57 2018 (r473087) +++ head/www/Makefile Fri Jun 22 22:08:33 2018 (r473088) @@ -530,7 +530,6 @@ SUBDIR += nostromo SUBDIR += novnc SUBDIR += novnc-websockify - SUBDIR += npapi-vlc SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm From owner-svn-ports-head@freebsd.org Fri Jun 22 22:10:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4909210014B0; Fri, 22 Jun 2018 22:10:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EFA4885107; Fri, 22 Jun 2018 22:10:46 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D1B2026966; Fri, 22 Jun 2018 22:10:46 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MMAkQa028862; Fri, 22 Jun 2018 22:10:46 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MMAk4g028861; Fri, 22 Jun 2018 22:10:46 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806222210.w5MMAk4g028861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 22 Jun 2018 22:10:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473089 - head/graphics/gnash X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/graphics/gnash X-SVN-Commit-Revision: 473089 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 22:10:47 -0000 Author: rene Date: Fri Jun 22 22:10:46 2018 New Revision: 473089 URL: https://svnweb.freebsd.org/changeset/ports/473089 Log: graphics/gnash: remove optional dependency on expired www/libxul This mean the PLUGIN option is dropped. Bump PORTREVISION Modified: head/graphics/gnash/Makefile head/graphics/gnash/pkg-plist Modified: head/graphics/gnash/Makefile ============================================================================== --- head/graphics/gnash/Makefile Fri Jun 22 22:08:33 2018 (r473088) +++ head/graphics/gnash/Makefile Fri Jun 22 22:10:46 2018 (r473089) @@ -3,7 +3,7 @@ PORTNAME= gnash PORTVERSION= 0.8.10 -PORTREVISION= 35 +PORTREVISION= 36 CATEGORIES= graphics MASTER_SITES= http://git.savannah.gnu.org/cgit/gnash.git/snapshot/ DISTNAME= gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880 @@ -56,16 +56,15 @@ PLIST_SUB+= GNASHVER="${GNASHVER}" USE_LDCONFIG= ${PREFIX}/lib/gnash -OPTIONS_DEFINE= PLUGIN CYGNAL VAAPI DOCS +OPTIONS_DEFINE= CYGNAL VAAPI DOCS OPTIONS_SINGLE= MEDIA GUI RENDERER OPTIONS_SINGLE_MEDIA= FFMPEG GSTREAMER OPTIONS_SINGLE_GUI= GTK2 KDE4 OPTIONS_SINGLE_RENDERER=AGG OPENGL CAIRO -OPTIONS_DEFAULT=GTK2 PLUGIN AGG FFMPEG VAAPI +OPTIONS_DEFAULT=GTK2 AGG FFMPEG VAAPI NO_OPTIONS_SORT=yes OPTIONS_SUB= yes -PLUGIN_DESC= browser plugin CYGNAL_DESC= Cygnal media server AGG_DESC= AGG renderer OPENGL_DESC= OpenGL renderer (experimental) @@ -93,31 +92,9 @@ CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .endif -# -# Plugin configuration -# -.if ${PORT_OPTIONS:MGTK2} && ${PORT_OPTIONS:MPLUGIN} -USES+= webplugin:native -WEBPLUGIN_NAME= gnash -WEBPLUGIN_FILES= libgnashplugin.so -WEBPLUGIN_DIR=${_WEBPLUGIN_LIBDIR:S,^${LOCALBASE}/,${PREFIX}/,}/${WEBPLUGIN_NAME} -PLIST_SUB+= NPAPI="" -CONFIGURE_ARGS+=--with-npapi-plugindir="${WEBPLUGIN_DIR}" -BUILD_DEPENDS+= ${LOCALBASE}/bin/xulrunner:www/libxul -RUN_DEPENDS+= ${LOCALBASE}/bin/xulrunner:www/libxul -.else -PLIST_SUB+= NPAPI="@comment " CONFIGURE_ARGS+= --disable-npapi -.endif -.if ${PORT_OPTIONS:MKDE4} && ${PORT_OPTIONS:MPLUGIN} -PLIST_SUB+= KPARTS4="${KDE_PREFIX}" -CONFIGURE_ARGS+= --with-kde4_prefix=${KDE_PREFIX} \ - --with-kde-appsdatadir=${KDE_PREFIX}/share/apps/klash -.else -PLIST_SUB+= KPARTS4="@comment " CONFIGURE_ARGS+= --disable-kparts4 -.endif # # GUI options processing @@ -232,15 +209,5 @@ post-install: .for conf in ${CONFIG_FILES} ${MV} ${STAGEDIR}/${SYSCONFIGDIR}/${conf} ${STAGEDIR}${SYSCONFIGDIR}/${conf}.dist .endfor -.if ${PORT_OPTIONS:MPLUGIN} -.if ${PORT_OPTIONS:MGTK2} - cd ${INSTALL_WRKSRC}/plugin && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install-plugin -.endif -.if ${PORT_OPTIONS:MKDE4} - cd ${INSTALL_WRKSRC}/plugin/klash4 && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install-plugin -.endif -.endif .include Modified: head/graphics/gnash/pkg-plist ============================================================================== --- head/graphics/gnash/pkg-plist Fri Jun 22 22:08:33 2018 (r473088) +++ head/graphics/gnash/pkg-plist Fri Jun 22 22:10:46 2018 (r473089) @@ -11,7 +11,6 @@ bin/rtmpget %%CYGNAL%%bin/cygnal %%CYGNAL%%bin/flvdumper %%CYGNAL%%bin/soldumper -%%NPAPI%%%%WEBPLUGIN_DIR%%/libgnashplugin.so %%CYGNAL%%@sample etc/cygnalrc.dist etc/cygnalrc @sample etc/gnashpluginrc.dist etc/gnashpluginrc @sample etc/gnashrc.dist etc/gnashrc @@ -181,10 +180,6 @@ include/gnash/vm/SafeStack.h include/gnash/vm/VM.h include/gnash/vm/fn_call.h include/gnash/zlib_adapter.h -%%KPARTS4%%/share/apps/klash/pluginsinfo -%%KPARTS4%%/share/apps/klash/klashpartui.rc -%%KPARTS4%%/share/kde4/services/klash_part.desktop -%%KPARTS4%%/lib/kde4/libklashpart.so %%CYGNAL%%lib/cygnal/plugins/echo.so %%CYGNAL%%lib/cygnal/plugins/oflaDemo.so %%CYGNAL%%lib/gnash/libgnashamf-%%GNASHVER%%.so From owner-svn-ports-head@freebsd.org Fri Jun 22 22:18:55 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18825100174A; Fri, 22 Jun 2018 22:18:55 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B30E885402; Fri, 22 Jun 2018 22:18:54 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8E9B426AE8; Fri, 22 Jun 2018 22:18:54 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MMIsbN033825; Fri, 22 Jun 2018 22:18:54 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MMIsA7033824; Fri, 22 Jun 2018 22:18:54 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806222218.w5MMIsA7033824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 22 Jun 2018 22:18:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473090 - head/java/icedtea-web X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/java/icedtea-web X-SVN-Commit-Revision: 473090 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 22:18:55 -0000 Author: rene Date: Fri Jun 22 22:18:53 2018 New Revision: 473090 URL: https://svnweb.freebsd.org/changeset/ports/473090 Log: java/icedtea-web: remove optional support for expired www/libxul. This means the PLUGIN option is removed. Bump PORTREVISION Modified: head/java/icedtea-web/Makefile head/java/icedtea-web/pkg-plist Modified: head/java/icedtea-web/Makefile ============================================================================== --- head/java/icedtea-web/Makefile Fri Jun 22 22:10:46 2018 (r473089) +++ head/java/icedtea-web/Makefile Fri Jun 22 22:18:53 2018 (r473090) @@ -2,7 +2,7 @@ PORTNAME= icedtea-web PORTVERSION= 1.6.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= java www MASTER_SITES= http://icedtea.wildebeest.org/download/source/ \ http://icedtea.classpath.org/download/source/ @@ -42,11 +42,9 @@ CONFIGURE_SHELL= ${bash_CMD} TEST_TARGET= check -OPTIONS_DEFINE= DOCS PLUGIN RHINO TAGSOUP -OPTIONS_DEFAULT=PLUGIN +OPTIONS_DEFINE= DOCS RHINO TAGSOUP OPTIONS_SUB= yes -PLUGIN_DESC= Enable the browser plug-in RHINO_DESC= Add support for Proxy Auto Config files TAGSOUP_DESC= Enable cleaning up of malformed JNLP files @@ -62,15 +60,6 @@ TAGSOUP_BUILD_DEPENDS= ${JAVALIBDIR}/tagsoup.jar:textp TAGSOUP_RUN_DEPENDS= ${TAGSOUP_BUILD_DEPENDS} TAGSOUP_VARS= TAGSOUP_JAR="${JAVALIBDIR}/tagsoup.jar" TAGSOUP_VARS_OFF= TAGSOUP_JAR=no - -PLUGIN_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/libxul.pc:www/libxul -PLUGIN_CONFIGURE_ENABLE=plugin -PLUGIN_PORTDOCS= plugin -PLUGIN_TEST_TARGET= plugin-tests -PLUGIN_USE= GNOME=glib20 -PLUGIN_USES= webplugin:native -PLUGIN_VARS= WEBPLUGIN_DIR=${PREFIX}/lib -PLUGIN_VARS+= WEBPLUGIN_FILES=IcedTeaPlugin.so HAMCREST_JAR= ${JAVALIBDIR}/hamcrest.jar JUNIT_JAR= ${JAVALIBDIR}/junit.jar Modified: head/java/icedtea-web/pkg-plist ============================================================================== --- head/java/icedtea-web/pkg-plist Fri Jun 22 22:10:46 2018 (r473089) +++ head/java/icedtea-web/pkg-plist Fri Jun 22 22:18:53 2018 (r473090) @@ -1,7 +1,6 @@ bin/itweb-javaws bin/itweb-policyeditor bin/itweb-settings -%%PLUGIN%%%%WEBPLUGIN_DIR%%/IcedTeaPlugin.so man/cs/man1/icedtea-web-plugin.1.gz man/cs/man1/icedtea-web.1.gz man/cs/man1/itweb-javaws.1.gz @@ -27,5 +26,4 @@ share/applications/itweb-policyeditor.desktop share/applications/itweb-settings.desktop %%DATADIR%%/javaws_splash.png %%DATADIR%%/netx.jar -%%PLUGIN%%%%DATADIR%%/plugin.jar share/pixmaps/itweb-javaws.png From owner-svn-ports-head@freebsd.org Fri Jun 22 22:21:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C73E100184D; Fri, 22 Jun 2018 22:21:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 12508858FE; Fri, 22 Jun 2018 22:21:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8FF426B47; Fri, 22 Jun 2018 22:21:29 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MMLT1Q036471; Fri, 22 Jun 2018 22:21:29 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MMLTXJ036469; Fri, 22 Jun 2018 22:21:29 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806222221.w5MMLTXJ036469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 22 Jun 2018 22:21:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473091 - in head/Mk: . Uses X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/Mk: . Uses X-SVN-Commit-Revision: 473091 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 22:21:30 -0000 Author: rene Date: Fri Jun 22 22:21:29 2018 New Revision: 473091 URL: https://svnweb.freebsd.org/changeset/ports/473091 Log: bsd.gecko.mk / USES=gecko : remove expired libxul support. Tested with "make index" Modified: head/Mk/Uses/gecko.mk head/Mk/bsd.gecko.mk Modified: head/Mk/Uses/gecko.mk ============================================================================== --- head/Mk/Uses/gecko.mk Fri Jun 22 22:18:53 2018 (r473090) +++ head/Mk/Uses/gecko.mk Fri Jun 22 22:21:29 2018 (r473091) @@ -6,8 +6,7 @@ # # Feature: gecko # Usage: USES=gecko or USES=gecko:ARGS -# Valid ARGS: libxul, firefox, seamonkey, thunderbird -# in case the first argument is not libxul +# Valid ARGS: firefox, seamonkey, thunderbird # The following arguments are available # - build: also add the dependency as a build # dependency @@ -18,24 +17,10 @@ .if !defined(_INCLUDE_USES_GECKO_MK) _INCLUDE_USES_GECKO_MK= yes -.if empty(gecko_ARGS) -gecko_ARGS= libxul -.endif - _GECKO_VERSION= ${gecko_ARGS:M[0-9][0-9]*} -.if ${gecko_ARGS:Mlibxul} -# Compat with older versions -GECKO= libxul -GECKO_CONFING?= ${LOCALBASE}/bin/${GECKO}-config -XPIDL?= ${LOCALBASE}/lib/${GECKO}/xpidl -XPIDL_INCL?= `${GECKO_CONFIG} --idlflags` +.if ${gecko_ARGS:Mfirefox} -BUILD_DEPENDS+= libxul>=45:www/libxul -RUN_DEPENDS+= libxul>=45:www/libxul - -.elif ${gecko_ARGS:Mfirefox} - _GECKO_DEFAULT_VERSION= 60 _GECKO_VERSIONS= 60 61 _GECKO_TYPE= firefox @@ -78,7 +63,7 @@ _GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/\..*// 52_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:mail/thunderbird .else -IGNORE= Unknown type of gecko dependency you may specify either libxul, firefox, seamonkey or thunderbird +IGNORE= Unknown type of gecko dependency you may specify either firefox, seamonkey or thunderbird .endif .if defined(_GECKO_TYPE) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Fri Jun 22 22:18:53 2018 (r473090) +++ head/Mk/bsd.gecko.mk Fri Jun 22 22:21:29 2018 (r473091) @@ -89,9 +89,7 @@ USE_XORG= x11 xcomposite xdamage xext xfixes xrender x HAS_CONFIGURE= yes CONFIGURE_OUTSOURCE= yes -.if ${MOZILLA} != "libxul" BUNDLE_LIBS= yes -.endif .if ${MOZILLA_VER:R:R} >= 49 USES+= compiler:c++14-lang From owner-svn-ports-head@freebsd.org Fri Jun 22 22:36:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 555F01001D3C; Fri, 22 Jun 2018 22:36:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 040F485EDB; Fri, 22 Jun 2018 22:36:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D29FD26E31; Fri, 22 Jun 2018 22:36:46 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MMaktV043873; Fri, 22 Jun 2018 22:36:46 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MMakfh043871; Fri, 22 Jun 2018 22:36:46 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806222236.w5MMakfh043871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 22 Jun 2018 22:36:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473092 - in head: . www www/libxul X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head: . www www/libxul X-SVN-Commit-Revision: 473092 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 22:36:47 -0000 Author: rene Date: Fri Jun 22 22:36:46 2018 New Revision: 473092 URL: https://svnweb.freebsd.org/changeset/ports/473092 Log: Remove expired port: 2018-06-20 www/libxul: NPAPI are no longer supported Deleted: head/www/libxul/ Modified: head/MOVED head/www/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jun 22 22:21:29 2018 (r473091) +++ head/MOVED Fri Jun 22 22:36:46 2018 (r473092) @@ -10290,3 +10290,4 @@ multimedia/qt5-phonon4-gstreamer|multimedia/phonon-gst multimedia/qt5-phonon4-vlc|multimedia/phonon-vlc@qt5|2018-06-21|Moved to a flavored version net/libproxy-gnome|net/libproxy-gnome2|2018-07-22|Renamed to make slave names consistent www/npapi-vlc||2018-06-22|Removed, depends on expired www/libxul +www/libxul||2018-06-22|Has expired: NPAPI are no longer supported Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 22 22:21:29 2018 (r473091) +++ head/www/Makefile Fri Jun 22 22:36:46 2018 (r473092) @@ -360,7 +360,6 @@ SUBDIR += libresonic-standalone SUBDIR += libsocialweb SUBDIR += libwww - SUBDIR += libxul SUBDIR += lightsquid SUBDIR += lighttpd SUBDIR += lighttpd-mod_h264_streaming From owner-svn-ports-head@freebsd.org Fri Jun 22 22:51:41 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2B67100243D; Fri, 22 Jun 2018 22:51:40 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (unknown [IPv6:2607:f440::d144:242]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7CF086811; Fri, 22 Jun 2018 22:51:40 +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 B049F125459; Fri, 22 Jun 2018 18:51:33 -0400 (EDT) Received: from anthias.microfocus.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 F17B25C1BE; Fri, 22 Jun 2018 18:51:32 -0400 (EDT) Date: Sat, 23 Jun 2018 00:51:31 +0200 (CEST) From: Gerald Pfeifer To: Lars Engels , Michael Danilov cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r472962 - head/net-mgmt/aircrack-ng In-Reply-To: <201806210759.w5L7x2cJ042398@repo.freebsd.org> Message-ID: References: <201806210759.w5L7x2cJ042398@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.26 Precedence: list List-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, 22 Jun 2018 22:51:41 -0000 Hi Lars and Michael, On Thu, 21 Jun 2018, Lars Engels wrote: > - Set required GCC version to 6+, so that the default gcc version is chosen. > GCC isn't needed to successfully building the port, but according to upstream > > PR: 228747 > Submitted by: Michael Danilov > -USE_GCC= 7+ > +USE_GCC= 6+ in that case, the canonical way to state that is USE_GCC= yes which has the advantage that it'll do what you are aiming for, without a need to adjust as the default version moves (or if some user changes the default via Mk/bsd.default-versions.mk). I'll be happy to make this change if you agree. Gerald From owner-svn-ports-head@freebsd.org Fri Jun 22 22:54:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E09CD1002679; Fri, 22 Jun 2018 22:54:01 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8FA0086A46; Fri, 22 Jun 2018 22: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 708BF27161; Fri, 22 Jun 2018 22: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 w5MMs162054281; Fri, 22 Jun 2018 22:54:01 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MMs1L8054279; Fri, 22 Jun 2018 22:54:01 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201806222254.w5MMs1L8054279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 22 Jun 2018 22:54:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473093 - head/databases/pg_citus X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/databases/pg_citus X-SVN-Commit-Revision: 473093 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 22:54:02 -0000 Author: matthew Date: Fri Jun 22 22:54:00 2018 New Revision: 473093 URL: https://svnweb.freebsd.org/changeset/ports/473093 Log: Update to 7.4.1 ChangeLog: https://github.com/citusdata/citus/blob/master/CHANGELOG.md Modified: head/databases/pg_citus/Makefile head/databases/pg_citus/distinfo Modified: head/databases/pg_citus/Makefile ============================================================================== --- head/databases/pg_citus/Makefile Fri Jun 22 22:36:46 2018 (r473092) +++ head/databases/pg_citus/Makefile Fri Jun 22 22:54:00 2018 (r473093) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= citus -PORTVERSION= 7.4.0 +PORTVERSION= 7.4.1 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= pg_ Modified: head/databases/pg_citus/distinfo ============================================================================== --- head/databases/pg_citus/distinfo Fri Jun 22 22:36:46 2018 (r473092) +++ head/databases/pg_citus/distinfo Fri Jun 22 22:54:00 2018 (r473093) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526537354 -SHA256 (citusdata-citus-v7.4.0_GH0.tar.gz) = 731f22b67e323ece5c9ba30972deb5d3ac11467c0fe8b874ebc1aa734dd05d07 -SIZE (citusdata-citus-v7.4.0_GH0.tar.gz) = 2554068 +TIMESTAMP = 1529707122 +SHA256 (citusdata-citus-v7.4.1_GH0.tar.gz) = 6590b88cd5fc1334a7a4ff35dcb698cd576c3c0c1d58b73c09ccdf347a4e8e08 +SIZE (citusdata-citus-v7.4.1_GH0.tar.gz) = 2554024 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:16:02 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 513B410031A1; Fri, 22 Jun 2018 23:16:02 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F2E338762D; Fri, 22 Jun 2018 23:16: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CFF632749B; Fri, 22 Jun 2018 23:16: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 w5MNG1AW064610; Fri, 22 Jun 2018 23:16:01 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNG1FX064609; Fri, 22 Jun 2018 23:16:01 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201806222316.w5MNG1FX064609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 22 Jun 2018 23:16:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473094 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 473094 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:16:02 -0000 Author: matthew Date: Fri Jun 22 23:16:01 2018 New Revision: 473094 URL: https://svnweb.freebsd.org/changeset/ports/473094 Log: Docuement the latest phpMyAdmin vulnerabilities Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Jun 22 22:54:00 2018 (r473093) +++ head/security/vuxml/vuln.xml Fri Jun 22 23:16:01 2018 (r473094) @@ -58,6 +58,69 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + phpmyadmin -- remote code inclusion and XSS scripting + + + phpmyadmin + 4.8.2 + + + + +

The phpMyAdmin development team reports:

+
+

Summary

+

XSS in Designer feature

+

Description

+

A Cross-Site Scripting vulnerability was found in the + Designer feature, where an attacker can deliver a + payload to a user through a specially-crafted database + name.

+

Severity

+

We consider this attack to be of moderate severity.

+
+
+

Summary

+

File inclusion and remote code execution attack

+

Description

+

A flaw has been discovered where an attacker can include + (view and potentially execute) files on the server.

+

The vulnerability comes from a portion of code where + pages are redirected and loaded within phpMyAdmin, and an + improper test for whitelisted pages.

+

An attacker must be authenticated, except in these + situations:

+
    +
  • $cfg['AllowArbitraryServer'] = true: attacker can + specify any host he/she is already in control of, and + execute arbitrary code on phpMyAdmin
  • +
  • $cfg['ServerDefault'] = 0: this bypasses the login and + runs the vulnerable code without any authentication
  • +
+

Severity

+

We consider this to be severe.

Mitigation + factor

Configuring PHP with a restrictive + `open_basedir` can greatly restrict an attacker's ability to + view files on the server. Vulnerable systems should not be + run with the phpMyAdmin directives + $cfg['AllowArbitraryServer'] = true or $cfg['ServerDefault'] + = 0

+
+ +
+ + https://www.phpmyadmin.net/security/PMASA-2018-3/ + https://www.phpmyadmin.net/security/PMASA-2018-4/ + CVE-2018-12581 + CVE-2018-12613 + + + 2018-06-21 + 2018-06-22 + +
+ FreeBSD -- Lazy FPU State Restore Information Disclosure From owner-svn-ports-head@freebsd.org Fri Jun 22 23:21:10 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FCC81003614; Fri, 22 Jun 2018 23:21:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 349E288239; Fri, 22 Jun 2018 23:21: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 16234274CE; Fri, 22 Jun 2018 23:21: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 w5MNL97L066552; Fri, 22 Jun 2018 23:21:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNL9xD066551; Fri, 22 Jun 2018 23:21:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806222321.w5MNL9xD066551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 22 Jun 2018 23:21:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473095 - in head/www/waterfox: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/www/waterfox: . files X-SVN-Commit-Revision: 473095 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:21:10 -0000 Author: jbeich Date: Fri Jun 22 23:21:09 2018 New Revision: 473095 URL: https://svnweb.freebsd.org/changeset/ports/473095 Log: www/waterfox: apply some FF61 fix Added: head/www/waterfox/files/patch-bug1458048 (contents, props changed) Modified: head/www/waterfox/Makefile (contents, props changed) Modified: head/www/waterfox/Makefile ============================================================================== --- head/www/waterfox/Makefile Fri Jun 22 23:16:01 2018 (r473094) +++ head/www/waterfox/Makefile Fri Jun 22 23:21:09 2018 (r473095) @@ -3,7 +3,7 @@ PORTNAME= waterfox DISTVERSION= 56.2.1-19 DISTVERSIONSUFFIX= -gff88ad0b627dc -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www ipv6 MAINTAINER= jbeich@FreeBSD.org Added: head/www/waterfox/files/patch-bug1458048 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/waterfox/files/patch-bug1458048 Fri Jun 22 23:21:09 2018 (r473095) @@ -0,0 +1,40 @@ +commit 66dfec8053be +Author: Daniel Minor +Date: Wed Jun 20 21:18:50 2018 -0400 + + Bug 1458048 - Cherry pick usersctp rev 8789a6da02e2c7c03522bc6f275b302f6ef977fe; r=drno, a=RyanVM + + --HG-- + extra : source : 492697e43fb4abf3cca014249bc35797f3312236 + extra : amend_source : 2a960ee15610dd344ceffd22dab70994cbf52198 +--- + netwerk/sctp/src/netinet/sctp_auth.c | 4 +++- + netwerk/sctp/src/netinet/sctp_pcb.c | 4 +++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +diff --git netwerk/sctp/src/netinet/sctp_auth.c netwerk/sctp/src/netinet/sctp_auth.c +index 50432ad8a5954..ee5ca36ce37b1 100755 +--- netwerk/sctp/src/netinet/sctp_auth.c ++++ netwerk/sctp/src/netinet/sctp_auth.c +@@ -1525,6 +1525,8 @@ sctp_auth_get_cookie_params(struct sctp_tcb *stcb, struct mbuf *m, + if (p_random != NULL) { + keylen = sizeof(*p_random) + random_len; + bcopy(p_random, new_key->key, keylen); ++ } else { ++ keylen = 0; + } + /* append in the AUTH chunks */ + if (chunks != NULL) { +diff --git netwerk/sctp/src/netinet/sctp_pcb.c netwerk/sctp/src/netinet/sctp_pcb.c +index 2970970250a2a..58c164f5039c7 100755 +--- netwerk/sctp/src/netinet/sctp_pcb.c ++++ netwerk/sctp/src/netinet/sctp_pcb.c +@@ -7688,6 +7688,8 @@ sctp_load_addresses_from_init(struct sctp_tcb *stcb, struct mbuf *m, + if (p_random != NULL) { + keylen = sizeof(*p_random) + random_len; + bcopy(p_random, new_key->key, keylen); ++ } else { ++ keylen = 0; + } + /* append in the AUTH chunks */ + if (chunks != NULL) { From owner-svn-ports-head@freebsd.org Fri Jun 22 23:44:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C679F1004253; Fri, 22 Jun 2018 23:44:14 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 72CFB88C70; Fri, 22 Jun 2018 23:44:14 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 419D627966; Fri, 22 Jun 2018 23:44:14 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5MNiEgx079603; Fri, 22 Jun 2018 23:44:14 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNiDis079599; Fri, 22 Jun 2018 23:44:13 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201806222344.w5MNiDis079599@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 22 Jun 2018 23:44:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473096 - head/databases/phpmyadmin X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/databases/phpmyadmin X-SVN-Commit-Revision: 473096 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:44:15 -0000 Author: matthew Date: Fri Jun 22 23:44:13 2018 New Revision: 473096 URL: https://svnweb.freebsd.org/changeset/ports/473096 Log: Security update to 4.8.2 ChangeLog: https://www.phpmyadmin.net/files/4.8.2/ MFH: 2018Q2 Security: 17cb6ff3-7670-11e8-8854-6805ca0b3d42 Modified: head/databases/phpmyadmin/Makefile head/databases/phpmyadmin/distinfo Modified: head/databases/phpmyadmin/Makefile ============================================================================== --- head/databases/phpmyadmin/Makefile Fri Jun 22 23:21:09 2018 (r473095) +++ head/databases/phpmyadmin/Makefile Fri Jun 22 23:44:13 2018 (r473096) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpMyAdmin -DISTVERSION= 4.8.1 +DISTVERSION= 4.8.2 CATEGORIES= databases www MASTER_SITES= https://files.phpmyadmin.net/${PORTNAME}/${DISTVERSION}/ DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages Modified: head/databases/phpmyadmin/distinfo ============================================================================== --- head/databases/phpmyadmin/distinfo Fri Jun 22 23:21:09 2018 (r473095) +++ head/databases/phpmyadmin/distinfo Fri Jun 22 23:44:13 2018 (r473096) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527231309 -SHA256 (phpMyAdmin-4.8.1-all-languages.tar.xz) = 3bf228f026899acc0c016446501317bfb58938d6bd3816fe90a702e3f401f913 -SIZE (phpMyAdmin-4.8.1-all-languages.tar.xz) = 5916536 +TIMESTAMP = 1529708065 +SHA256 (phpMyAdmin-4.8.2-all-languages.tar.xz) = 2b42e75274ab078a0c2ca3aff767f45d1d81849f9f762a2ed0674819f061ba1d +SIZE (phpMyAdmin-4.8.2-all-languages.tar.xz) = 5914400 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:54:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41634100471E; Fri, 22 Jun 2018 23:54:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E63BA89232; Fri, 22 Jun 2018 23:54: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C750A27AF8; Fri, 22 Jun 2018 23:54: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 w5MNsGi9085167; Fri, 22 Jun 2018 23:54:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNsGSo085164; Fri, 22 Jun 2018 23:54:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806222354.w5MNsGSo085164@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, 22 Jun 2018 23:54:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473097 - head/archivers/p5-Archive-Tar-Wrapper X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/archivers/p5-Archive-Tar-Wrapper X-SVN-Commit-Revision: 473097 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:54:17 -0000 Author: sunpoet Date: Fri Jun 22 23:54:16 2018 New Revision: 473097 URL: https://svnweb.freebsd.org/changeset/ports/473097 Log: Update to 0.28 - Update LICENSE - Add LICENSE_FILE Changes: https://metacpan.org/changes/distribution/Archive-Tar-Wrapper Modified: head/archivers/p5-Archive-Tar-Wrapper/Makefile head/archivers/p5-Archive-Tar-Wrapper/distinfo Modified: head/archivers/p5-Archive-Tar-Wrapper/Makefile ============================================================================== --- head/archivers/p5-Archive-Tar-Wrapper/Makefile Fri Jun 22 23:44:13 2018 (r473096) +++ head/archivers/p5-Archive-Tar-Wrapper/Makefile Fri Jun 22 23:54:16 2018 (r473097) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Archive-Tar-Wrapper -PORTVERSION= 0.27 +PORTVERSION= 0.28 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,8 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= API wrapper around the 'tar' utility -LICENSE= ART10 GPLv1+ -LICENSE_COMB= dual +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= p5-File-Which>=0:sysutils/p5-File-Which \ p5-IPC-Run>=0:devel/p5-IPC-Run \ Modified: head/archivers/p5-Archive-Tar-Wrapper/distinfo ============================================================================== --- head/archivers/p5-Archive-Tar-Wrapper/distinfo Fri Jun 22 23:44:13 2018 (r473096) +++ head/archivers/p5-Archive-Tar-Wrapper/distinfo Fri Jun 22 23:54:16 2018 (r473097) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529351324 -SHA256 (Archive-Tar-Wrapper-0.27.tar.gz) = 93b10a48e7de258ac924737cde2c053abb215904c6a9e9934fcb93023dba8052 -SIZE (Archive-Tar-Wrapper-0.27.tar.gz) = 32729 +TIMESTAMP = 1529610492 +SHA256 (Archive-Tar-Wrapper-0.28.tar.gz) = 5e87baa48548846d302483557f758e5e919bc375b469a1bf9d417c9f569f9bfb +SIZE (Archive-Tar-Wrapper-0.28.tar.gz) = 31925 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:54:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC8031004741; Fri, 22 Jun 2018 23:54:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 69755892C4; Fri, 22 Jun 2018 23:54: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 78C4227AFA; Fri, 22 Jun 2018 23:54: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 w5MNsMXf085293; Fri, 22 Jun 2018 23:54:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNsLch085291; Fri, 22 Jun 2018 23:54:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806222354.w5MNsLch085291@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, 22 Jun 2018 23:54:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473098 - head/databases/p5-BSON X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/p5-BSON X-SVN-Commit-Revision: 473098 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:54:24 -0000 Author: sunpoet Date: Fri Jun 22 23:54:21 2018 New Revision: 473098 URL: https://svnweb.freebsd.org/changeset/ports/473098 Log: Update to 1.6.5 Changes: https://metacpan.org/changes/distribution/BSON Modified: head/databases/p5-BSON/Makefile head/databases/p5-BSON/distinfo Modified: head/databases/p5-BSON/Makefile ============================================================================== --- head/databases/p5-BSON/Makefile Fri Jun 22 23:54:16 2018 (r473097) +++ head/databases/p5-BSON/Makefile Fri Jun 22 23:54:21 2018 (r473098) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= BSON -PORTVERSION= 1.6.4 +PORTVERSION= 1.6.5 DISTVERSIONPREFIX= v CATEGORIES= databases perl5 MASTER_SITES= CPAN Modified: head/databases/p5-BSON/distinfo ============================================================================== --- head/databases/p5-BSON/distinfo Fri Jun 22 23:54:16 2018 (r473097) +++ head/databases/p5-BSON/distinfo Fri Jun 22 23:54:21 2018 (r473098) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529352863 -SHA256 (BSON-v1.6.4.tar.gz) = c410c1b634811f956e176c34446728d34729a4e87593a47bae8968203558ad18 -SIZE (BSON-v1.6.4.tar.gz) = 104047 +TIMESTAMP = 1529610514 +SHA256 (BSON-v1.6.5.tar.gz) = 8059dd3dd0a87623b8e50862be20b582cfbd0548263ebee7fb321961d60c15b6 +SIZE (BSON-v1.6.5.tar.gz) = 104246 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:54:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19CA3100475F; Fri, 22 Jun 2018 23:54:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C071F89304; Fri, 22 Jun 2018 23:54: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A21B327AFB; Fri, 22 Jun 2018 23:54: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 w5MNsRpV085418; Fri, 22 Jun 2018 23:54:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNsRGg085416; Fri, 22 Jun 2018 23:54:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806222354.w5MNsRGg085416@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, 22 Jun 2018 23:54:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473099 - head/devel/p5-CPAN-Perl-Releases X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-CPAN-Perl-Releases X-SVN-Commit-Revision: 473099 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:54:28 -0000 Author: sunpoet Date: Fri Jun 22 23:54:26 2018 New Revision: 473099 URL: https://svnweb.freebsd.org/changeset/ports/473099 Log: Update to 3.64 Changes: https://metacpan.org/changes/distribution/CPAN-Perl-Releases Modified: head/devel/p5-CPAN-Perl-Releases/Makefile head/devel/p5-CPAN-Perl-Releases/distinfo Modified: head/devel/p5-CPAN-Perl-Releases/Makefile ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/Makefile Fri Jun 22 23:54:21 2018 (r473098) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Fri Jun 22 23:54:26 2018 (r473099) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 3.60 +PORTVERSION= 3.64 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Fri Jun 22 23:54:21 2018 (r473098) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Fri Jun 22 23:54:26 2018 (r473099) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529352854 -SHA256 (CPAN-Perl-Releases-3.60.tar.gz) = 04489ae7168aba29c5af07df345276434c2a9f0ffe49aed4301deace6af0aaa9 -SIZE (CPAN-Perl-Releases-3.60.tar.gz) = 24464 +TIMESTAMP = 1529610530 +SHA256 (CPAN-Perl-Releases-3.64.tar.gz) = 7c560351c5ce3ce7c79caa435186f1fdfa90f33724a285b9aed670ea37fc9603 +SIZE (CPAN-Perl-Releases-3.64.tar.gz) = 24546 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:54:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C2D6100478D; Fri, 22 Jun 2018 23:54:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8800893D4; Fri, 22 Jun 2018 23:54: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C988327AFC; Fri, 22 Jun 2018 23:54: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 w5MNsWr8085545; Fri, 22 Jun 2018 23:54:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNsWS7085543; Fri, 22 Jun 2018 23:54:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806222354.w5MNsWS7085543@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, 22 Jun 2018 23:54:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473100 - head/misc/p5-Geo-Coder-OpenCage X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/misc/p5-Geo-Coder-OpenCage X-SVN-Commit-Revision: 473100 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:54:33 -0000 Author: sunpoet Date: Fri Jun 22 23:54:32 2018 New Revision: 473100 URL: https://svnweb.freebsd.org/changeset/ports/473100 Log: Update to 0.15 Changes: https://metacpan.org/changes/distribution/Geo-Coder-OpenCage Modified: head/misc/p5-Geo-Coder-OpenCage/Makefile head/misc/p5-Geo-Coder-OpenCage/distinfo Modified: head/misc/p5-Geo-Coder-OpenCage/Makefile ============================================================================== --- head/misc/p5-Geo-Coder-OpenCage/Makefile Fri Jun 22 23:54:26 2018 (r473099) +++ head/misc/p5-Geo-Coder-OpenCage/Makefile Fri Jun 22 23:54:32 2018 (r473100) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-Coder-OpenCage -PORTVERSION= 0.14 +PORTVERSION= 0.15 CATEGORIES= misc geography perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/misc/p5-Geo-Coder-OpenCage/distinfo ============================================================================== --- head/misc/p5-Geo-Coder-OpenCage/distinfo Fri Jun 22 23:54:26 2018 (r473099) +++ head/misc/p5-Geo-Coder-OpenCage/distinfo Fri Jun 22 23:54:32 2018 (r473100) @@ -1,3 +1,3 @@ -TIMESTAMP = 1507048852 -SHA256 (Geo-Coder-OpenCage-0.14.tar.gz) = fae14ef46dad00e7a1a797ec303a38fa3ed6acbbbf0e1d1eec2e33258fb4a8b7 -SIZE (Geo-Coder-OpenCage-0.14.tar.gz) = 13297 +TIMESTAMP = 1529610550 +SHA256 (Geo-Coder-OpenCage-0.15.tar.gz) = 667225f072e5e377e2b144d3a3604d5401a597b3c12e2bb0f4678db0f28fa7c4 +SIZE (Geo-Coder-OpenCage-0.15.tar.gz) = 13424 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:58:50 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FB101004A7E; Fri, 22 Jun 2018 23:58:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 053E9895FC; Fri, 22 Jun 2018 23:58: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CDA0B27B0B; Fri, 22 Jun 2018 23:58: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 w5MNwn9L085860; Fri, 22 Jun 2018 23:58:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNwn73085858; Fri, 22 Jun 2018 23:58:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806222358.w5MNwn73085858@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, 22 Jun 2018 23:58:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473101 - head/devel/byacc X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/byacc X-SVN-Commit-Revision: 473101 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:58:50 -0000 Author: sunpoet Date: Fri Jun 22 23:58:48 2018 New Revision: 473101 URL: https://svnweb.freebsd.org/changeset/ports/473101 Log: Update to 20180609 Changes: https://invisible-island.net/byacc/CHANGES.html Modified: head/devel/byacc/Makefile head/devel/byacc/distinfo Modified: head/devel/byacc/Makefile ============================================================================== --- head/devel/byacc/Makefile Fri Jun 22 23:54:32 2018 (r473100) +++ head/devel/byacc/Makefile Fri Jun 22 23:58:48 2018 (r473101) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= byacc -PORTVERSION= 20180525 +PORTVERSION= 20180609 CATEGORIES= devel MASTER_SITES= https://invisible-mirror.net/archives/byacc/ \ LOCAL/sunpoet Modified: head/devel/byacc/distinfo ============================================================================== --- head/devel/byacc/distinfo Fri Jun 22 23:54:32 2018 (r473100) +++ head/devel/byacc/distinfo Fri Jun 22 23:58:48 2018 (r473101) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527334245 -SHA256 (byacc-20180525.tgz) = 129b8d8be35c2cecb89e4ef434dc512402c0243f485334c5733ddf1e267c2de6 -SIZE (byacc-20180525.tgz) = 745273 +TIMESTAMP = 1529610365 +SHA256 (byacc-20180609.tgz) = 5bbb0b3ec3da5981a2488383b652499d6c1e0236b47d8bac5fcdfa12954f749c +SIZE (byacc-20180609.tgz) = 745317 From owner-svn-ports-head@freebsd.org Fri Jun 22 23:58:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 839991004AA3; Fri, 22 Jun 2018 23:58:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B35AE8968F; Fri, 22 Jun 2018 23:58: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D134627B0C; Fri, 22 Jun 2018 23:58: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 w5MNwtWL085999; Fri, 22 Jun 2018 23:58:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5MNwt2r085997; Fri, 22 Jun 2018 23:58:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806222358.w5MNwt2r085997@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, 22 Jun 2018 23:58:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473102 - head/sysutils/container-diff X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/sysutils/container-diff X-SVN-Commit-Revision: 473102 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 22 Jun 2018 23:58:58 -0000 Author: sunpoet Date: Fri Jun 22 23:58:55 2018 New Revision: 473102 URL: https://svnweb.freebsd.org/changeset/ports/473102 Log: Update to 0.10.0 - Update MASTER_SITES - Update WWW Changes: https://github.com/GoogleContainerTools/container-diff/releases Modified: head/sysutils/container-diff/Makefile head/sysutils/container-diff/distinfo head/sysutils/container-diff/pkg-descr Modified: head/sysutils/container-diff/Makefile ============================================================================== --- head/sysutils/container-diff/Makefile Fri Jun 22 23:58:48 2018 (r473101) +++ head/sysutils/container-diff/Makefile Fri Jun 22 23:58:55 2018 (r473102) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= container-diff -PORTVERSION= 0.9.0 +PORTVERSION= 0.10.0 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -17,7 +17,7 @@ USES= go PLIST_FILES= bin/container-diff -GH_ACCOUNT= GoogleCloudPlatform +GH_ACCOUNT= GoogleContainerTools USE_GITHUB= yes do-install: Modified: head/sysutils/container-diff/distinfo ============================================================================== --- head/sysutils/container-diff/distinfo Fri Jun 22 23:58:48 2018 (r473101) +++ head/sysutils/container-diff/distinfo Fri Jun 22 23:58:55 2018 (r473102) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523459554 -SHA256 (GoogleCloudPlatform-container-diff-v0.9.0_GH0.tar.gz) = cf5957fd9c583030283982dafab0b70608c739408d036444d9acc0a867e7472f -SIZE (GoogleCloudPlatform-container-diff-v0.9.0_GH0.tar.gz) = 2431735 +TIMESTAMP = 1529614679 +SHA256 (GoogleContainerTools-container-diff-v0.10.0_GH0.tar.gz) = 55b62ee0081b9ef5bf5778a6ea30b61f2ee6ee16bfaa7b26bae793455486cc2c +SIZE (GoogleContainerTools-container-diff-v0.10.0_GH0.tar.gz) = 2312389 Modified: head/sysutils/container-diff/pkg-descr ============================================================================== --- head/sysutils/container-diff/pkg-descr Fri Jun 22 23:58:48 2018 (r473101) +++ head/sysutils/container-diff/pkg-descr Fri Jun 22 23:58:55 2018 (r473102) @@ -12,4 +12,4 @@ two images to compare. The tool can help users better changing inside their images, and give them a better look at what their images contain. -WWW: https://github.com/GoogleCloudPlatform/container-diff +WWW: https://github.com/GoogleContainerTools/container-diff From owner-svn-ports-head@freebsd.org Sat Jun 23 00:02:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F009B1004D37; Sat, 23 Jun 2018 00:02:16 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A2C1E89A68; Sat, 23 Jun 2018 00:02:16 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6BFB427C8D; Sat, 23 Jun 2018 00:02:16 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N02GZJ090004; Sat, 23 Jun 2018 00:02:16 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N02GRS089998; Sat, 23 Jun 2018 00:02:16 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201806230002.w5N02GRS089998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Sat, 23 Jun 2018 00:02:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473103 - head/emulators/qemu-sbruno X-SVN-Group: ports-head X-SVN-Commit-Author: sbruno X-SVN-Commit-Paths: head/emulators/qemu-sbruno X-SVN-Commit-Revision: 473103 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 00:02:17 -0000 Author: sbruno Date: Sat Jun 23 00:02:15 2018 New Revision: 473103 URL: https://svnweb.freebsd.org/changeset/ports/473103 Log: qemu-user-static update: - Increase user stack when emulating aarch64. Submitted by: Mikael Urankar Modified: head/emulators/qemu-sbruno/Makefile head/emulators/qemu-sbruno/distinfo Modified: head/emulators/qemu-sbruno/Makefile ============================================================================== --- head/emulators/qemu-sbruno/Makefile Fri Jun 22 23:58:55 2018 (r473102) +++ head/emulators/qemu-sbruno/Makefile Sat Jun 23 00:02:15 2018 (r473103) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qemu -PORTVERSION= 2.11.50.g20180501 +PORTVERSION= 2.11.50.g20180622 CATEGORIES= emulators MASTER_SITES= GH PKGNAMESUFFIX?= -sbruno @@ -13,7 +13,7 @@ COMMENT?= QEMU CPU Emulator - github bsd-user branch LICENSE= GPLv2 USE_GITHUB= yes -GH_TUPLE= seanbruno:qemu-bsd-user:ea8d0ac \ +GH_TUPLE= seanbruno:qemu-bsd-user:495fb3a \ qemu:keycodemapdb:10739aa:keycodemapdb/ui/keycodemapdb HAS_CONFIGURE= yes USES= gmake pkgconfig bison perl5 python:2.7,build Modified: head/emulators/qemu-sbruno/distinfo ============================================================================== --- head/emulators/qemu-sbruno/distinfo Fri Jun 22 23:58:55 2018 (r473102) +++ head/emulators/qemu-sbruno/distinfo Sat Jun 23 00:02:15 2018 (r473103) @@ -1,5 +1,5 @@ -TIMESTAMP = 1525213346 -SHA256 (qemu/2.11.50.g20180501/seanbruno-qemu-bsd-user-2.11.50.g20180501-ea8d0ac_GH0.tar.gz) = 80aba7d0d0602df06c5f1da172077c574d1a373a911e1870f2f2ed9f890c3c86 -SIZE (qemu/2.11.50.g20180501/seanbruno-qemu-bsd-user-2.11.50.g20180501-ea8d0ac_GH0.tar.gz) = 15503644 -SHA256 (qemu/2.11.50.g20180501/qemu-keycodemapdb-10739aa_GH0.tar.gz) = ae43fb1e2b07b78be88a7882306b6e71383eb77472a35d7d78fed21e345d134a -SIZE (qemu/2.11.50.g20180501/qemu-keycodemapdb-10739aa_GH0.tar.gz) = 47895 +TIMESTAMP = 1529686626 +SHA256 (qemu/2.11.50.g20180622/seanbruno-qemu-bsd-user-2.11.50.g20180622-495fb3a_GH0.tar.gz) = 92dcd13d572bc5b0bec97dc95bbad6880766937bac388dd677cd52e45e8c2766 +SIZE (qemu/2.11.50.g20180622/seanbruno-qemu-bsd-user-2.11.50.g20180622-495fb3a_GH0.tar.gz) = 15502588 +SHA256 (qemu/2.11.50.g20180622/qemu-keycodemapdb-10739aa_GH0.tar.gz) = ae43fb1e2b07b78be88a7882306b6e71383eb77472a35d7d78fed21e345d134a +SIZE (qemu/2.11.50.g20180622/qemu-keycodemapdb-10739aa_GH0.tar.gz) = 47895 From owner-svn-ports-head@freebsd.org Sat Jun 23 00:04:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAB6E1004FAA; Sat, 23 Jun 2018 00:04:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 98AD989C3E; Sat, 23 Jun 2018 00:04: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7603327CA2; Sat, 23 Jun 2018 00:04: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 w5N04qsi091149; Sat, 23 Jun 2018 00:04:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N04qan091147; Sat, 23 Jun 2018 00:04:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806230004.w5N04qan091147@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, 23 Jun 2018 00:04:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473104 - head/security/kbfs X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/kbfs X-SVN-Commit-Revision: 473104 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 00:04:53 -0000 Author: sunpoet Date: Sat Jun 23 00:04:51 2018 New Revision: 473104 URL: https://svnweb.freebsd.org/changeset/ports/473104 Log: Update to 2.1.0 Changes: https://github.com/keybase/kbfs/commits/master Modified: head/security/kbfs/Makefile head/security/kbfs/distinfo Modified: head/security/kbfs/Makefile ============================================================================== --- head/security/kbfs/Makefile Sat Jun 23 00:02:15 2018 (r473103) +++ head/security/kbfs/Makefile Sat Jun 23 00:04:51 2018 (r473104) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= kbfs -PORTVERSION= 2.0.0 +PORTVERSION= 2.1.0 DISTVERSIONPREFIX= v CATEGORIES= security Modified: head/security/kbfs/distinfo ============================================================================== --- head/security/kbfs/distinfo Sat Jun 23 00:02:15 2018 (r473103) +++ head/security/kbfs/distinfo Sat Jun 23 00:04:51 2018 (r473104) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527784852 -SHA256 (keybase-kbfs-v2.0.0_GH0.tar.gz) = c76eb98e84bff607425cf1fe5e7cf8687264ba2dd2becc56bd214eaddf87b2be -SIZE (keybase-kbfs-v2.0.0_GH0.tar.gz) = 5673354 +TIMESTAMP = 1529610381 +SHA256 (keybase-kbfs-v2.1.0_GH0.tar.gz) = 3afeb8d8844f8d2a787fe4a5c2cb21e3efa96527f9d5dbe71dff8b8cbb0c4899 +SIZE (keybase-kbfs-v2.1.0_GH0.tar.gz) = 5703221 From owner-svn-ports-head@freebsd.org Sat Jun 23 00:04:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 993121004FE8; Sat, 23 Jun 2018 00:04:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0013489CEA; Sat, 23 Jun 2018 00:04: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E658927CA3; Sat, 23 Jun 2018 00:04: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 w5N04vdp091274; Sat, 23 Jun 2018 00:04:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N04vwl091273; Sat, 23 Jun 2018 00:04:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806230004.w5N04vwl091273@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, 23 Jun 2018 00:04:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473105 - head/security/keybase X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/keybase X-SVN-Commit-Revision: 473105 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 00:04:59 -0000 Author: sunpoet Date: Sat Jun 23 00:04:56 2018 New Revision: 473105 URL: https://svnweb.freebsd.org/changeset/ports/473105 Log: Update to 2.1.0 Changes: https://github.com/keybase/client/releases https://github.com/keybase/client/commits/master Modified: head/security/keybase/Makefile head/security/keybase/distinfo Modified: head/security/keybase/Makefile ============================================================================== --- head/security/keybase/Makefile Sat Jun 23 00:04:51 2018 (r473104) +++ head/security/keybase/Makefile Sat Jun 23 00:04:56 2018 (r473105) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= keybase -PORTVERSION= 2.0.0 +PORTVERSION= 2.1.0 DISTVERSIONPREFIX= v CATEGORIES= security Modified: head/security/keybase/distinfo ============================================================================== --- head/security/keybase/distinfo Sat Jun 23 00:04:51 2018 (r473104) +++ head/security/keybase/distinfo Sat Jun 23 00:04:56 2018 (r473105) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527784878 -SHA256 (keybase-client-v2.0.0_GH0.tar.gz) = c21413b4a0fded15f6db66ddbe5cf4cd18c2b7c5b5a09a1a253c33c66f38b413 -SIZE (keybase-client-v2.0.0_GH0.tar.gz) = 34324505 +TIMESTAMP = 1529610406 +SHA256 (keybase-client-v2.1.0_GH0.tar.gz) = 8708936cb8a36a54c006d4000308adde4f5176f1b19fba0ee042a978bc56981c +SIZE (keybase-client-v2.1.0_GH0.tar.gz) = 34444571 From owner-svn-ports-head@freebsd.org Sat Jun 23 00:16:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E77991005380; Sat, 23 Jun 2018 00:16:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 974598A15B; Sat, 23 Jun 2018 00:16: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A1A327E3C; Sat, 23 Jun 2018 00:16:18 +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 w5N0GIJ6096287; Sat, 23 Jun 2018 00:16:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N0GIQG096285; Sat, 23 Jun 2018 00:16:18 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806230016.w5N0GIQG096285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 23 Jun 2018 00:16:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473106 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 473106 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 00:16:19 -0000 Author: jbeich Date: Sat Jun 23 00:16:17 2018 New Revision: 473106 URL: https://svnweb.freebsd.org/changeset/ports/473106 Log: emulators/rpcs3: update to 0.0.5.530 Changes: https://github.com/RPCS3/rpcs3/compare/c776ff502...78ef205b4 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 23 00:04:56 2018 (r473105) +++ head/emulators/rpcs3/Makefile Sat Jun 23 00:16:17 2018 (r473106) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.5-516 -DISTVERSIONSUFFIX= -gc776ff502 +DISTVERSION= 0.0.5-530 +DISTVERSIONSUFFIX= -g78ef205b4 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Sat Jun 23 00:04:56 2018 (r473105) +++ head/emulators/rpcs3/distinfo Sat Jun 23 00:16:17 2018 (r473106) @@ -1,6 +1,6 @@ -TIMESTAMP = 1529434689 -SHA256 (RPCS3-rpcs3-v0.0.5-516-gc776ff502_GH0.tar.gz) = 73f16a0f11665747e42cd799101f71c49458c745e8b8f9a2a0d678b694c18613 -SIZE (RPCS3-rpcs3-v0.0.5-516-gc776ff502_GH0.tar.gz) = 4970619 +TIMESTAMP = 1529692202 +SHA256 (RPCS3-rpcs3-v0.0.5-530-g78ef205b4_GH0.tar.gz) = 018e77d4308b7b6123a32ba00b25118263b3573efae5217d9462dbf046d1e5c6 +SIZE (RPCS3-rpcs3-v0.0.5-530-g78ef205b4_GH0.tar.gz) = 4976266 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = e50e4f4e9035e891e16867e995f44aac87ce734a9dde169f02fc9719b2ce3642 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-25-gca39ce8_GH0.tar.gz) = 105623 SHA256 (RPCS3-llvm-17ec6d78a73_GH0.tar.gz) = 4567d1d946429ce55d6c0480fad3b82874aad22c2b1928ac4d4ba5ba40338604 From owner-svn-ports-head@freebsd.org Sat Jun 23 00:16:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45A7010053B2; Sat, 23 Jun 2018 00:16:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D936D8A228; Sat, 23 Jun 2018 00:16:27 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BBD1F27E3D; Sat, 23 Jun 2018 00:16:27 +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 w5N0GRHF096425; Sat, 23 Jun 2018 00:16:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N0GRSg096424; Sat, 23 Jun 2018 00:16:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806230016.w5N0GRSg096424@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 23 Jun 2018 00:16:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473107 - head/emulators/citra X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/citra X-SVN-Commit-Revision: 473107 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 00:16:28 -0000 Author: jbeich Date: Sat Jun 23 00:16:27 2018 New Revision: 473107 URL: https://svnweb.freebsd.org/changeset/ports/473107 Log: emulators/citra: update to s20180622 Changes: https://github.com/citra-emu/citra/compare/964602dfc...f50e505a5 Modified: head/emulators/citra/Makefile (contents, props changed) head/emulators/citra/distinfo (contents, props changed) Modified: head/emulators/citra/Makefile ============================================================================== --- head/emulators/citra/Makefile Sat Jun 23 00:16:17 2018 (r473106) +++ head/emulators/citra/Makefile Sat Jun 23 00:16:27 2018 (r473107) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20180620 +PORTVERSION= s20180622 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 964602dfc +GH_TAGNAME= f50e505a5 GH_TUPLE= citra-emu:ext-libressl-portable:cbb1dca:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-2-g4b350a3:dynarmic/externals/dynarmic \ Modified: head/emulators/citra/distinfo ============================================================================== --- head/emulators/citra/distinfo Sat Jun 23 00:16:17 2018 (r473106) +++ head/emulators/citra/distinfo Sat Jun 23 00:16:27 2018 (r473107) @@ -1,6 +1,6 @@ -TIMESTAMP = 1529491145 -SHA256 (citra-emu-citra-s20180620-964602dfc_GH0.tar.gz) = 493bfac0bd8a9fd98f71d51117bda5388afbf20ea715077cc3d18d180ef8c9d1 -SIZE (citra-emu-citra-s20180620-964602dfc_GH0.tar.gz) = 2230380 +TIMESTAMP = 1529678829 +SHA256 (citra-emu-citra-s20180622-f50e505a5_GH0.tar.gz) = ed21af34fbb9128478b7d8ee4b169c24a821c6498e3000a3b5c7d2fb1b04c756 +SIZE (citra-emu-citra-s20180622-f50e505a5_GH0.tar.gz) = 2233354 SHA256 (citra-emu-ext-libressl-portable-cbb1dca_GH0.tar.gz) = f3741a3bb480d9f8a817f032f59d1908e659620cbb93c0fe8289cfb46d2ab89c SIZE (citra-emu-ext-libressl-portable-cbb1dca_GH0.tar.gz) = 1761962 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c From owner-svn-ports-head@freebsd.org Sat Jun 23 00:37:03 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7876B1005C50; Sat, 23 Jun 2018 00:37:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EABD8AC58; Sat, 23 Jun 2018 00:37:03 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE3801B2; Sat, 23 Jun 2018 00:37: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 w5N0b2uL007177; Sat, 23 Jun 2018 00:37:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N0b2KA007176; Sat, 23 Jun 2018 00:37:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806230037.w5N0b2KA007176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 23 Jun 2018 00:37:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473110 - head/www/py-flexget X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/py-flexget X-SVN-Commit-Revision: 473110 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 00:37:03 -0000 Author: jbeich Date: Sat Jun 23 00:37:02 2018 New Revision: 473110 URL: https://svnweb.freebsd.org/changeset/ports/473110 Log: www/py-flexget: update to 2.13.24 Changes: https://github.com/Flexget/Flexget/compare/2.13.22...2.13.24 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 Sat Jun 23 00:35:23 2018 (r473109) +++ head/www/py-flexget/Makefile Sat Jun 23 00:37:02 2018 (r473110) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.13.22 +PORTVERSION= 2.13.24 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-flexget/distinfo ============================================================================== --- head/www/py-flexget/distinfo Sat Jun 23 00:35:23 2018 (r473109) +++ head/www/py-flexget/distinfo Sat Jun 23 00:37:02 2018 (r473110) @@ -1,3 +1,3 @@ TIMESTAMP = 1529287463 -SHA256 (flexget-Flexget-2.13.22_GH0.tar.gz) = 17e1541528356532e2ab147afa632b93c099c4ef3505a1ad01d72099c9b03d58 -SIZE (flexget-Flexget-2.13.22_GH0.tar.gz) = 7173342 +SHA256 (flexget-Flexget-2.13.24_GH0.tar.gz) = e869946fbf46b72cb746123baafc6ed9523bd6453cdac9cfb7d6054d761fc963 +SIZE (flexget-Flexget-2.13.24_GH0.tar.gz) = 7173388 From owner-svn-ports-head@freebsd.org Sat Jun 23 01:27:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 154FA1007810; Sat, 23 Jun 2018 01:27:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B67848C53E; Sat, 23 Jun 2018 01:27:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98BBF9E0; Sat, 23 Jun 2018 01:27:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N1RXf6032605; Sat, 23 Jun 2018 01:27:33 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N1RXvL032604; Sat, 23 Jun 2018 01:27:33 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806230127.w5N1RXvL032604@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Jun 2018 01:27:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473111 - head/security/vault X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/security/vault X-SVN-Commit-Revision: 473111 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 01:27:34 -0000 Author: swills Date: Sat Jun 23 01:27:32 2018 New Revision: 473111 URL: https://svnweb.freebsd.org/changeset/ports/473111 Log: security/vault: update to 0.10.3 Modified: head/security/vault/Makefile (contents, props changed) head/security/vault/distinfo (contents, props changed) Modified: head/security/vault/Makefile ============================================================================== --- head/security/vault/Makefile Sat Jun 23 00:37:02 2018 (r473110) +++ head/security/vault/Makefile Sat Jun 23 01:27:32 2018 (r473111) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= vault -PORTVERSION= 0.10.2 +PORTVERSION= 0.10.3 DISTVERSIONPREFIX= v CATEGORIES= security Modified: head/security/vault/distinfo ============================================================================== --- head/security/vault/distinfo Sat Jun 23 00:37:02 2018 (r473110) +++ head/security/vault/distinfo Sat Jun 23 01:27:32 2018 (r473111) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528475611 -SHA256 (hashicorp-vault-v0.10.2_GH0.tar.gz) = 10b33b3a464966049caf20d9957e2fc216fe80dd19b2808cefd7dbe76ab4603e -SIZE (hashicorp-vault-v0.10.2_GH0.tar.gz) = 15861571 +TIMESTAMP = 1529704812 +SHA256 (hashicorp-vault-v0.10.3_GH0.tar.gz) = 3792e9d4c8e97031d79ad03a0e281a14bdd33817ac5ccfc9bf64c12ba480b55f +SIZE (hashicorp-vault-v0.10.3_GH0.tar.gz) = 15902247 From owner-svn-ports-head@freebsd.org Sat Jun 23 03:56:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 326321010224; Sat, 23 Jun 2018 03:56:20 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CB93572454; Sat, 23 Jun 2018 03:56:19 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A6C952466; Sat, 23 Jun 2018 03:56:19 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N3uJfN009839; Sat, 23 Jun 2018 03:56:19 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N3uIvT009836; Sat, 23 Jun 2018 03:56:18 GMT (envelope-from cem@FreeBSD.org) Message-Id: <201806230356.w5N3uIvT009836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: Conrad Meyer Date: Sat, 23 Jun 2018 03:56:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473112 - in head/devel/elfutils: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cem X-SVN-Commit-Paths: in head/devel/elfutils: . files X-SVN-Commit-Revision: 473112 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 03:56:20 -0000 Author: cem (src committer) Date: Sat Jun 23 03:56:18 2018 New Revision: 473112 URL: https://svnweb.freebsd.org/changeset/ports/473112 Log: Update devel/elfutils to 0.172 - Sparc patch no longer applies cleanly and was dropped. - Other patches updated to apply to 0.172. - stable/10 and 11.0 lack needed ELF header types; and 10 is closed. Skip building on these (PR). - gnulib handling was reverted to pre-r454110 style to allow using pkg. PR: 228478 Reported by: portscout Deleted: head/devel/elfutils/files/patch-backends_sparc__initreg.c Modified: head/devel/elfutils/Makefile head/devel/elfutils/distinfo head/devel/elfutils/files/patch-lib_Makefile.am head/devel/elfutils/files/patch-tests_Makefile.am Modified: head/devel/elfutils/Makefile ============================================================================== --- head/devel/elfutils/Makefile Sat Jun 23 01:27:32 2018 (r473111) +++ head/devel/elfutils/Makefile Sat Jun 23 03:56:18 2018 (r473112) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= elfutils -PORTVERSION= 0.170 -PORTREVISION= 1 +PORTVERSION= 0.172 CATEGORIES= devel MASTER_SITES= https://sourceware.org/elfutils/ftp/${PORTVERSION}/ @@ -16,12 +15,15 @@ LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING-GPLV2 LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING-LGPLV3 +IGNORE_FreeBSD_11= stable/10 and 11.0 base libelf.h lack needed ELF types + BROKEN_aarch64= fails to build: fatal error: linux/uio.h: No such file or directory BROKEN_armv6= fails to build: fails to compile i386_disasm.c BROKEN_armv7= fails to build: fails to compile i386_disasm.c +BROKEN_sparc64= sparc patch does not apply cleanly to 0.172 LIB_DEPENDS= libargp.so:devel/argp-standalone -PATCH_DEPENDS= ${NONEXISTENT}:devel/gnulib:extract +PATCH_DEPENDS= gnulib>=0:devel/gnulib:extract PLIST_SUB= VERSION=${PORTVERSION} @@ -37,7 +39,7 @@ USE_GCC= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes -CFLAGS+= -Wno-null-dereference +CFLAGS+= -Wno-null-dereference -Wno-unused-value # Give i386 a prayer of building, and we can fix the warnings later: CFLAGS_i386+= -Wno-error @@ -45,11 +47,10 @@ CFLAGS_i386+= -Wno-error CONFIGURE_ARGS+= --program-prefix=eu- post-patch: - @${LN} -s `${MAKE} -C ${PORTSDIR}/devel/gnulib -V WRKSRC` ${WRKDIR}/gnulib @${CP} -a \ - ${WRKDIR}/gnulib/lib/obstack.c \ - ${WRKDIR}/gnulib/lib/obstack.h \ - ${WRKDIR}/gnulib/lib/obstack_printf.c \ + ${LOCALBASE}/share/gnulib/lib/obstack.c \ + ${LOCALBASE}/share/gnulib/lib/obstack.h \ + ${LOCALBASE}/share/gnulib/lib/obstack_printf.c \ ${WRKSRC}/lib .include Modified: head/devel/elfutils/distinfo ============================================================================== --- head/devel/elfutils/distinfo Sat Jun 23 01:27:32 2018 (r473111) +++ head/devel/elfutils/distinfo Sat Jun 23 03:56:18 2018 (r473112) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510265200 -SHA256 (elfutils-0.170.tar.bz2) = 1f844775576b79bdc9f9c717a50058d08620323c1e935458223a12f249c9e066 -SIZE (elfutils-0.170.tar.bz2) = 8358001 +TIMESTAMP = 1528748700 +SHA256 (elfutils-0.172.tar.bz2) = 779c99e6344c4982bbab60b8d276cec3d468151c758905f9a44ba6b6edaa0e24 +SIZE (elfutils-0.172.tar.bz2) = 8601066 Modified: head/devel/elfutils/files/patch-lib_Makefile.am ============================================================================== --- head/devel/elfutils/files/patch-lib_Makefile.am Sat Jun 23 01:27:32 2018 (r473111) +++ head/devel/elfutils/files/patch-lib_Makefile.am Sat Jun 23 03:56:18 2018 (r473112) @@ -1,12 +1,12 @@ ---- lib/Makefile.am.orig 2017-08-02 12:06:25 UTC +--- lib/Makefile.am.orig 2017-11-22 03:44:22.000000000 -0800 +++ lib/Makefile.am -@@ -35,7 +35,8 @@ noinst_LIBRARIES = libeu.a +@@ -35,7 +35,8 @@ libeu_a_SOURCES = xstrdup.c xstrndup.c xmalloc.c next_prime.c \ - crc32.c crc32_file.c md5.c sha1.c \ + crc32.c crc32_file.c \ - color.c printversion.c -+ color.c printversion.c error.c obstack.c \ -+ obstack_printf.c ++ color.c printversion.c \ ++ error.c obstack.c obstack_printf.c noinst_HEADERS = fixedsizehash.h libeu.h system.h dynamicsizehash.h list.h \ - md5.h sha1.h eu-config.h color.h printversion.h bpf.h + eu-config.h color.h printversion.h bpf.h Modified: head/devel/elfutils/files/patch-tests_Makefile.am ============================================================================== --- head/devel/elfutils/files/patch-tests_Makefile.am Sat Jun 23 01:27:32 2018 (r473111) +++ head/devel/elfutils/files/patch-tests_Makefile.am Sat Jun 23 03:56:18 2018 (r473112) @@ -1,6 +1,6 @@ ---- tests/Makefile.am.orig 2017-08-02 12:06:25 UTC +--- tests/Makefile.am.orig 2018-06-01 07:42:27.000000000 -0700 +++ tests/Makefile.am -@@ -396,7 +396,7 @@ libasm = -lasm +@@ -432,7 +432,7 @@ libebl = -lebl else !STANDALONE if BUILD_STATIC @@ -9,7 +9,7 @@ libelf = ../libelf/libelf.a -lz libasm = ../libasm/libasm.a else -@@ -411,16 +411,16 @@ endif !STANDALONE +@@ -447,16 +447,16 @@ arextract_LDADD = $(libelf) arsymtest_LDADD = $(libelf) newfile_LDADD = $(libelf) @@ -30,7 +30,7 @@ update1_LDADD = $(libelf) update2_LDADD = $(libelf) update3_LDADD = $(libdw) $(libelf) -@@ -432,34 +432,34 @@ get_lines_LDADD = $(libdw) $(libelf) +@@ -468,34 +468,34 @@ get_files_LDADD = $(libdw) $(libelf) get_aranges_LDADD = $(libdw) $(libelf) allfcts_LDADD = $(libdw) $(libelf) @@ -88,7 +88,7 @@ test_flag_nobits_LDADD = $(libelf) rerequest_tag_LDADD = $(libdw) alldts_LDADD = $(libdw) $(libelf) -@@ -469,9 +469,9 @@ typeiter2_LDADD = $(libdw) $(libelf) +@@ -504,9 +504,9 @@ low_high_pc_LDADD = $(libdw) $(libelf) $(argp_LDADD) test_elf_cntl_gelf_getshdr_LDADD = $(libelf) dwflsyms_LDADD = $(libdw) $(libelf) $(argp_LDADD) @@ -100,8 +100,8 @@ +varlocs_LDADD = $(libeu) $(libdw) $(libelf) $(argp_LDADD) backtrace_LDADD = $(libdw) $(libelf) $(argp_LDADD) # backtrace-child-biarch also uses those *_CFLAGS and *_LDLAGS variables: - backtrace_child_CFLAGS = -fPIE -@@ -480,23 +480,23 @@ backtrace_child_biarch_SOURCES = backtra + backtrace_child_CFLAGS = $(fpie_CFLAGS) +@@ -515,23 +515,23 @@ backtrace_data_LDADD = $(libdw) $(libelf) backtrace_dwarf_CFLAGS = -Wno-unused-parameter backtrace_dwarf_LDADD = $(libdw) $(libelf) @@ -112,8 +112,8 @@ +debugaltlink_LDADD = $(libeu) $(libdw) $(libelf) +buildid_LDADD = $(libeu) $(libdw) $(libelf) deleted_LDADD = ./deleted-lib.so - deleted_lib_so_LDFLAGS = -shared -rdynamic - deleted_lib_so_CFLAGS = -fPIC -fasynchronous-unwind-tables + deleted_lib_so_LDFLAGS = -shared + deleted_lib_so_CFLAGS = $(fpic_CFLAGS) -fasynchronous-unwind-tables aggregate_size_LDADD = $(libdw) $(libelf) $(argp_LDADD) peel_type_LDADD = $(libdw) $(libelf) $(argp_LDADD) vdsosyms_LDADD = $(libdw) $(libelf) From owner-svn-ports-head@freebsd.org Sat Jun 23 07:39:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48A4C1016658; Sat, 23 Jun 2018 07:39:40 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E107678538; Sat, 23 Jun 2018 07:39:39 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B42394D24; Sat, 23 Jun 2018 07:39:39 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N7ddb9022014; Sat, 23 Jun 2018 07:39:39 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N7ddSA022013; Sat, 23 Jun 2018 07:39:39 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806230739.w5N7ddSA022013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Sat, 23 Jun 2018 07:39:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473113 - head/math/freemat/files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/math/freemat/files X-SVN-Commit-Revision: 473113 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 07:39:40 -0000 Author: adridg Date: Sat Jun 23 07:39:39 2018 New Revision: 473113 URL: https://svnweb.freebsd.org/changeset/ports/473113 Log: Fix math/freemat with Clang6. Noticed by CMake 3.12 fallout. Fixed the C++ issues before I noticed that the port was marked DEPRECATED. Porting FreeMat to llvm60 is doable, but probably not worth it given the state of upstream. For reference: - s/llvm33/llvm60/ in the Makefile - OwningPtr -> std::unique_ptr - Some Clang includes have moved around - The real issue is dealing with how the JIT changed between llvm33 and later versions. No PORTREVISION bump, since (a) deprecated (b) compile fix for a platform it didn't work on before and no code change where it did compile. Added: head/math/freemat/files/patch-libs_libMatC_CArray.cpp (contents, props changed) Added: head/math/freemat/files/patch-libs_libMatC_CArray.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/freemat/files/patch-libs_libMatC_CArray.cpp Sat Jun 23 07:39:39 2018 (r473113) @@ -0,0 +1,20 @@ +--- libs/libMatC/CArray.cpp.orig 2018-06-22 09:05:35 UTC ++++ libs/libMatC/CArray.cpp +@@ -534,7 +534,7 @@ void* carray_get_aa(void* interp, void* arg, void* rnd + extern "C" EXPORT + double carray_get_ss(void* interp, void* arg, double row, double col, bool *flag) + { +- if (*flag) return NULL; ++ if (*flag) return 0.0L; + try + { + CArray *cp = cast(arg); +@@ -569,7 +569,7 @@ double carray_get_ss(void* interp, void* arg, double r + extern "C" EXPORT + double carray_get_s(void* interp, void* arg, double row, bool *flag) + { +- if (*flag) return NULL; ++ if (*flag) return 0.0L; + try + { + CArray *cp = cast(arg); From owner-svn-ports-head@freebsd.org Sat Jun 23 07:45:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1883310169F6; Sat, 23 Jun 2018 07:45:33 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA77678D83; Sat, 23 Jun 2018 07:45:32 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 930884EB2; Sat, 23 Jun 2018 07:45:32 +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 w5N7jWBd026785; Sat, 23 Jun 2018 07:45:32 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N7jWYM026783; Sat, 23 Jun 2018 07:45:32 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201806230745.w5N7jWYM026783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sat, 23 Jun 2018 07:45:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473114 - head/devel/phpunit7 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/phpunit7 X-SVN-Commit-Revision: 473114 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 07:45:33 -0000 Author: joneum Date: Sat Jun 23 07:45:31 2018 New Revision: 473114 URL: https://svnweb.freebsd.org/changeset/ports/473114 Log: Update to 7.2.6 Changelog: https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.2.md Modified: head/devel/phpunit7/Makefile head/devel/phpunit7/distinfo Modified: head/devel/phpunit7/Makefile ============================================================================== --- head/devel/phpunit7/Makefile Sat Jun 23 07:39:39 2018 (r473113) +++ head/devel/phpunit7/Makefile Sat Jun 23 07:45:31 2018 (r473114) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= phpunit -DISTVERSION= 7.2.2 +DISTVERSION= 7.2.6 CATEGORIES= devel www MASTER_SITES= https://phar.phpunit.de/ PKGNAMESUFFIX= 7${PHP_PKGNAMESUFFIX} Modified: head/devel/phpunit7/distinfo ============================================================================== --- head/devel/phpunit7/distinfo Sat Jun 23 07:39:39 2018 (r473113) +++ head/devel/phpunit7/distinfo Sat Jun 23 07:45:31 2018 (r473114) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527957470 -SHA256 (phpunit-7.2.2.phar) = da8ee7b6d60618576f66f02421704db7678e8120e5773a336fbceef79c38f8bd -SIZE (phpunit-7.2.2.phar) = 2809303 +TIMESTAMP = 1529739884 +SHA256 (phpunit-7.2.6.phar) = 273f39142935c4a76b62869f6035e67aed0664d416a4ad32659d19b5ba0f4304 +SIZE (phpunit-7.2.6.phar) = 2784751 From owner-svn-ports-head@freebsd.org Sat Jun 23 08:23:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F38D0101777D; Sat, 23 Jun 2018 08:23:16 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 93A6D79C44; Sat, 23 Jun 2018 08:23:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FA3B550E; Sat, 23 Jun 2018 08:23: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 w5N8NGcD047147; Sat, 23 Jun 2018 08:23:16 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N8NGnC047146; Sat, 23 Jun 2018 08:23:16 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201806230823.w5N8NGnC047146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sat, 23 Jun 2018 08:23:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473115 - head/devel/pear-File_Iterator X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pear-File_Iterator X-SVN-Commit-Revision: 473115 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 08:23:17 -0000 Author: joneum Date: Sat Jun 23 08:23:15 2018 New Revision: 473115 URL: https://svnweb.freebsd.org/changeset/ports/473115 Log: Update to 2.0.1 Modified: head/devel/pear-File_Iterator/Makefile head/devel/pear-File_Iterator/distinfo Modified: head/devel/pear-File_Iterator/Makefile ============================================================================== --- head/devel/pear-File_Iterator/Makefile Sat Jun 23 07:45:31 2018 (r473114) +++ head/devel/pear-File_Iterator/Makefile Sat Jun 23 08:23:15 2018 (r473115) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= File_Iterator -DISTVERSION= 2.0.0 +DISTVERSION= 2.0.1 CATEGORIES= devel www pear PKGNAMEPREFIX= ${PEAR_PKGNAMEPREFIX} Modified: head/devel/pear-File_Iterator/distinfo ============================================================================== --- head/devel/pear-File_Iterator/distinfo Sat Jun 23 07:45:31 2018 (r473114) +++ head/devel/pear-File_Iterator/distinfo Sat Jun 23 08:23:15 2018 (r473115) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527789104 -SHA256 (sebastianbergmann-php-file-iterator-2.0.0_GH0.tar.gz) = c177af14dacca345130fd6486eba4e2f37a6f3decab304bf8565021088ca6199 -SIZE (sebastianbergmann-php-file-iterator-2.0.0_GH0.tar.gz) = 6062 +TIMESTAMP = 1529742107 +SHA256 (sebastianbergmann-php-file-iterator-2.0.1_GH0.tar.gz) = d7d60c33ed3b5b6176f99ff2098b5b9daf24d6a46d60708d08e25115434330e2 +SIZE (sebastianbergmann-php-file-iterator-2.0.1_GH0.tar.gz) = 6211 From owner-svn-ports-head@freebsd.org Sat Jun 23 08:27:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E0A61017850; Sat, 23 Jun 2018 08:27:25 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E06DB79D45; Sat, 23 Jun 2018 08:27:24 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BBE5A5511; Sat, 23 Jun 2018 08:27:24 +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 w5N8ROxY048453; Sat, 23 Jun 2018 08:27:24 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N8REtY048400; Sat, 23 Jun 2018 08:27:14 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806230827.w5N8REtY048400@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 23 Jun 2018 08:27:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473116 - in head: astro/siril audio/snd benchmarks/flowgrind biology/bcftools comms/gnuradio graphics/amide graphics/enblend graphics/inkscape graphics/krita graphics/luminance graphic... X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: astro/siril audio/snd benchmarks/flowgrind biology/bcftools comms/gnuradio graphics/amide graphics/enblend graphics/inkscape graphics/krita graphics/luminance graphics/luminance-qt5 graphics/... X-SVN-Commit-Revision: 473116 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 08:27:25 -0000 Author: tcberner Date: Sat Jun 23 08:27:13 2018 New Revision: 473116 URL: https://svnweb.freebsd.org/changeset/ports/473116 Log: Update math/gsl to 2.5 PR: 229067 Modified: head/astro/siril/Makefile head/audio/snd/Makefile head/benchmarks/flowgrind/Makefile head/biology/bcftools/Makefile head/comms/gnuradio/Makefile head/graphics/amide/Makefile head/graphics/enblend/Makefile head/graphics/inkscape/Makefile head/graphics/krita/Makefile head/graphics/luminance-qt5/Makefile head/graphics/luminance/Makefile head/graphics/nip2/Makefile head/graphics/pfstools/Makefile head/graphics/qgis/Makefile head/graphics/xaos/Makefile head/lang/algol68g/Makefile head/mail/bogofilter-sqlite/Makefile head/mail/bogofilter-tc/Makefile head/mail/bogofilter/Makefile head/math/asymptote/Makefile head/math/dieharder/Makefile head/math/fflas-ffpack/Makefile head/math/giacxcas/Makefile head/math/gsl/Makefile head/math/gsl/distinfo head/math/gsl/pkg-plist head/math/labplot/Makefile head/math/mathgl/Makefile head/math/ocamlgsl/Makefile head/math/octave-forge-gsl/Makefile head/math/orpie/Makefile head/math/p5-Math-GSL/Makefile head/math/pspp/Makefile head/math/py-pygsl/Makefile head/math/qtiplot/Makefile head/math/rubygem-rb-gsl/Makefile head/science/MOOSE-neural-simulator/Makefile head/science/afni/Makefile head/science/antioch/Makefile head/science/fisicalab/Makefile head/science/getdp/Makefile head/science/gnudatalanguage/Makefile head/science/kst2/Makefile head/science/meep/Makefile head/science/py-mlpy/Makefile head/science/step-kde4/Makefile head/science/step/Makefile Modified: head/astro/siril/Makefile ============================================================================== --- head/astro/siril/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/astro/siril/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,6 +2,7 @@ PORTNAME= siril DISTVERSION= 0.9.9 +PORTREVISION= 1 CATEGORIES= astro graphics MASTER_SITES= https://free-astro.org/download/ Modified: head/audio/snd/Makefile ============================================================================== --- head/audio/snd/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/audio/snd/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= snd PORTVERSION= 15.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= ftp://ccrma-ftp.stanford.edu/pub/Lisp/ \ SF Modified: head/benchmarks/flowgrind/Makefile ============================================================================== --- head/benchmarks/flowgrind/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/benchmarks/flowgrind/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -4,7 +4,7 @@ PORTNAME= flowgrind PORTVERSION= 0.8.0 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= benchmarks MAINTAINER= dbaio@FreeBSD.org Modified: head/biology/bcftools/Makefile ============================================================================== --- head/biology/bcftools/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/biology/bcftools/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,6 +3,7 @@ PORTNAME= bcftools PORTVERSION= 1.6 +PORTREVISION= 1 CATEGORIES= biology MAINTAINER= cartwright@asu.edu Modified: head/comms/gnuradio/Makefile ============================================================================== --- head/comms/gnuradio/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/comms/gnuradio/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,6 +2,7 @@ PORTNAME= gnuradio PORTVERSION= 3.7.13.3 +PORTREVISION= 1 CATEGORIES= comms astro hamradio MASTER_SITES= http://gnuradio.org/releases/gnuradio/ \ LOCAL/db Modified: head/graphics/amide/Makefile ============================================================================== --- head/graphics/amide/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/amide/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ PORTNAME= amide PORTVERSION= 1.0.5 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= graphics MASTER_SITES= SF Modified: head/graphics/enblend/Makefile ============================================================================== --- head/graphics/enblend/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/enblend/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= enblend PORTVERSION= 4.1.4 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= graphics MASTER_SITES= SF/enblend/enblend-enfuse/enblend-enfuse-${PORTVERSION:R} DISTNAME= enblend-enfuse-${PORTVERSION} Modified: head/graphics/inkscape/Makefile ============================================================================== --- head/graphics/inkscape/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/inkscape/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= inkscape PORTVERSION= 0.92.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics gnome MASTER_SITES= https://launchpadlibrarian.net/332184472/ \ https://inkscape.org/en/gallery/item/11254/ \ Modified: head/graphics/krita/Makefile ============================================================================== --- head/graphics/krita/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/krita/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,6 +2,7 @@ PORTNAME= krita DISTVERSION= 4.0.4 +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} DIST_SUBDIR= KDE/${PORTNAME} Modified: head/graphics/luminance-qt5/Makefile ============================================================================== --- head/graphics/luminance-qt5/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/luminance-qt5/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= luminance-hdr DISTVERSION= 2.4.0 -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= graphics MASTER_SITES= SF/qtpfsgui/luminance/${DISTVERSION} PKGNAMESUFFIX= -qt5 Modified: head/graphics/luminance/Makefile ============================================================================== --- head/graphics/luminance/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/luminance/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= luminance-hdr DISTVERSION= 2.3.1 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= graphics MASTER_SITES= SF/qtpfsgui/luminance/${DISTVERSION} Modified: head/graphics/nip2/Makefile ============================================================================== --- head/graphics/nip2/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/nip2/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= nip2 PORTVERSION= 8.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/releases/download/v${PORTVERSION}/ Modified: head/graphics/pfstools/Makefile ============================================================================== --- head/graphics/pfstools/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/pfstools/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,6 +3,7 @@ PORTNAME= pfstools DISTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF Modified: head/graphics/qgis/Makefile ============================================================================== --- head/graphics/qgis/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/qgis/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -4,7 +4,7 @@ PORTNAME= qgis DISTVERSIONPREFIX= final- DISTVERSION= 2_18_17 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics geography MAINTAINER= rhurlin@gwdg.de Modified: head/graphics/xaos/Makefile ============================================================================== --- head/graphics/xaos/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/graphics/xaos/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= xaos PORTVERSION= 3.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics math MASTER_SITES= SF/${PORTNAME}/XaoS/${PORTVERSION} Modified: head/lang/algol68g/Makefile ============================================================================== --- head/lang/algol68g/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/lang/algol68g/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ PORTNAME= algol68g PORTVERSION= 2.8.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= http://jmvdveer.home.xs4all.nl/ Modified: head/mail/bogofilter-sqlite/Makefile ============================================================================== --- head/mail/bogofilter-sqlite/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/mail/bogofilter-sqlite/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bogofilter -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail PKGNAMESUFFIX= -sqlite Modified: head/mail/bogofilter-tc/Makefile ============================================================================== --- head/mail/bogofilter-tc/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/mail/bogofilter-tc/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bogofilter -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail PKGNAMESUFFIX= -tc Modified: head/mail/bogofilter/Makefile ============================================================================== --- head/mail/bogofilter/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/mail/bogofilter/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= bogofilter PORTVERSION= 1.2.4 -PORTREVISION?= 7 +PORTREVISION?= 8 CATEGORIES?= mail MASTER_SITES= SF/bogofilter/bogofilter-current/bogofilter-${PORTVERSION} Modified: head/math/asymptote/Makefile ============================================================================== --- head/math/asymptote/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/asymptote/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,6 +3,7 @@ PORTNAME= asymptote PORTVERSION= 2.44 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}.src Modified: head/math/dieharder/Makefile ============================================================================== --- head/math/dieharder/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/dieharder/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= dieharder PORTVERSION= 3.31.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math MASTER_SITES= http://www.phy.duke.edu/~rgb/General/dieharder/ LOCAL/bf Modified: head/math/fflas-ffpack/Makefile ============================================================================== --- head/math/fflas-ffpack/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/fflas-ffpack/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= fflas-ffpack PORTVERSION= 1.4.3 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MASTER_SITES= http://linalg.org/ LOCAL/bf Modified: head/math/giacxcas/Makefile ============================================================================== --- head/math/giacxcas/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/giacxcas/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= giacxcas DISTVERSION= 1.4.9-59 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/:giac \ http://www-fourier.ujf-grenoble.fr/~parisse/giac/freebsd/ Modified: head/math/gsl/Makefile ============================================================================== --- head/math/gsl/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/gsl/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gsl -PORTVERSION= 2.4 +PORTVERSION= 2.5 CATEGORIES= math MASTER_SITES= GNU Modified: head/math/gsl/distinfo ============================================================================== --- head/math/gsl/distinfo Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/gsl/distinfo Sat Jun 23 08:27:13 2018 (r473116) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497949836 -SHA256 (gsl-2.4.tar.gz) = 4d46d07b946e7b31c19bbf33dda6204d7bedc2f5462a1bae1d4013426cd1ce9b -SIZE (gsl-2.4.tar.gz) = 5916715 +TIMESTAMP = 1529158403 +SHA256 (gsl-2.5.tar.gz) = 0460ad7c2542caaddc6729762952d345374784100223995eb14d614861f2258d +SIZE (gsl-2.5.tar.gz) = 7303881 Modified: head/math/gsl/pkg-plist ============================================================================== --- head/math/gsl/pkg-plist Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/gsl/pkg-plist Sat Jun 23 08:27:13 2018 (r473116) @@ -46,6 +46,7 @@ include/gsl/gsl_fft_halfcomplex.h include/gsl/gsl_fft_halfcomplex_float.h include/gsl/gsl_fft_real.h include/gsl/gsl_fft_real_float.h +include/gsl/gsl_filter.h include/gsl/gsl_fit.h include/gsl/gsl_heapsort.h include/gsl/gsl_histogram.h @@ -81,6 +82,7 @@ include/gsl/gsl_monte.h include/gsl/gsl_monte_miser.h include/gsl/gsl_monte_plain.h include/gsl/gsl_monte_vegas.h +include/gsl/gsl_movstat.h include/gsl/gsl_multifit.h include/gsl/gsl_multifit_nlin.h include/gsl/gsl_multifit_nlinear.h @@ -175,6 +177,7 @@ include/gsl/gsl_sf_mathieu.h include/gsl/gsl_sf_pow_int.h include/gsl/gsl_sf_psi.h include/gsl/gsl_sf_result.h +include/gsl/gsl_sf_sincos_pi.h include/gsl/gsl_sf_synchrotron.h include/gsl/gsl_sf_transport.h include/gsl/gsl_sf_trig.h @@ -248,7 +251,7 @@ include/gsl/gsl_wavelet2d.h lib/libgsl.a lib/libgsl.so lib/libgsl.so.23 -lib/libgsl.so.23.0.0 +lib/libgsl.so.23.1.0 lib/libgslcblas.a lib/libgslcblas.so lib/libgslcblas.so.0 Modified: head/math/labplot/Makefile ============================================================================== --- head/math/labplot/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/labplot/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= labplot PORTVERSION= 2.4.0 -PORTREVISION= 4 +PORTREVISION= 5 DISTVERSIONSUFFIX=-kf5 CATEGORIES= math kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} Modified: head/math/mathgl/Makefile ============================================================================== --- head/math/mathgl/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/mathgl/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,6 +2,7 @@ PORTNAME= mathgl DISTVERSION= 2.4.2.1 +PORTREVISION= 1 CATEGORIES= math graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION:R} Modified: head/math/ocamlgsl/Makefile ============================================================================== --- head/math/ocamlgsl/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/ocamlgsl/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -4,7 +4,7 @@ PORTNAME= ocaml-gsl DISTVERSIONPREFIX=v DISTVERSION= 1.19.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MAINTAINER= michipili@gmail.com Modified: head/math/octave-forge-gsl/Makefile ============================================================================== --- head/math/octave-forge-gsl/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/octave-forge-gsl/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= octave-forge-gsl PORTVERSION= 2.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/orpie/Makefile ============================================================================== --- head/math/orpie/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/orpie/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= orpie PORTVERSION= 1.5.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES+= math MASTER_SITES= http://pessimization.com/software/orpie/ Modified: head/math/p5-Math-GSL/Makefile ============================================================================== --- head/math/p5-Math-GSL/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/p5-Math-GSL/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= Math-GSL PORTVERSION= 0.39 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/math/pspp/Makefile ============================================================================== --- head/math/pspp/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/pspp/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= pspp PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= GNU Modified: head/math/py-pygsl/Makefile ============================================================================== --- head/math/py-pygsl/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/py-pygsl/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= pygsl PORTVERSION= 2.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math python MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/math/qtiplot/Makefile ============================================================================== --- head/math/qtiplot/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/qtiplot/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= qtiplot DISTVERSION= 0.9.8.9 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= math science MASTER_SITES= BERLIOS http://soft.proindependent.com/src/ Modified: head/math/rubygem-rb-gsl/Makefile ============================================================================== --- head/math/rubygem-rb-gsl/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/math/rubygem-rb-gsl/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= gsl PORTVERSION= 2.1.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem-rb- Modified: head/science/MOOSE-neural-simulator/Makefile ============================================================================== --- head/science/MOOSE-neural-simulator/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/MOOSE-neural-simulator/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= MOOSE-neural-simulator DISTVERSION= 3.1.2 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -382-gc93d23a CATEGORIES= science biology Modified: head/science/afni/Makefile ============================================================================== --- head/science/afni/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/afni/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -10,7 +10,7 @@ PORTNAME= afni PORTVERSION= 2015.11.13 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= science biology graphics MASTER_SITES= http://www.acadix.biz/Ports/distfiles/ Modified: head/science/antioch/Makefile ============================================================================== --- head/science/antioch/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/antioch/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -4,6 +4,7 @@ PORTNAME= antioch DISTVERSIONPREFIX= v DISTVERSION= 0.4.0-156 DISTVERSIONSUFFIX= -g90ffa43 +PORTREVISION= 1 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org Modified: head/science/fisicalab/Makefile ============================================================================== --- head/science/fisicalab/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/fisicalab/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ PORTNAME= fisicalab PORTVERSION= 0.3.3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= science gnustep MASTER_SITES= SAVANNAH Modified: head/science/getdp/Makefile ============================================================================== --- head/science/getdp/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/getdp/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,6 +3,7 @@ PORTNAME= getdp PORTVERSION= 2.11.3 +PORTREVISION= 1 CATEGORIES= science MASTER_SITES= http://www.geuz.org/getdp/src/ DISTNAME= ${PORTNAME}-${PORTVERSION}-source Modified: head/science/gnudatalanguage/Makefile ============================================================================== --- head/science/gnudatalanguage/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/gnudatalanguage/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,6 +3,7 @@ PORTNAME= gnudatalanguage DISTVERSION= 0.9.8 +PORTREVISION= 1 CATEGORIES= science lang MASTER_SITES= SF/${PORTNAME}/gdl/${PORTVERSION} .if defined(BUILD_PYTHON_MODULE) Modified: head/science/kst2/Makefile ============================================================================== --- head/science/kst2/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/kst2/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,6 +3,7 @@ PORTNAME= kst DISTVERSION= ${KST_VERSION}.${KST_DATE} +PORTREVISION= 1 CATEGORIES= science kde MAINTAINER= makc@FreeBSD.org Modified: head/science/meep/Makefile ============================================================================== --- head/science/meep/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/meep/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= meep PORTVERSION= 1.2.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= science MASTER_SITES= http://ab-initio.mit.edu/meep/ Modified: head/science/py-mlpy/Makefile ============================================================================== --- head/science/py-mlpy/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/py-mlpy/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -3,7 +3,7 @@ PORTNAME= mlpy PORTVERSION= 3.5.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science python MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/science/step-kde4/Makefile ============================================================================== --- head/science/step-kde4/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/step-kde4/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,7 +2,7 @@ PORTNAME= step PORTVERSION= ${KDE4_VERSION} -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= science kde kde-kde4 MAINTAINER= kde@FreeBSD.org Modified: head/science/step/Makefile ============================================================================== --- head/science/step/Makefile Sat Jun 23 08:23:15 2018 (r473115) +++ head/science/step/Makefile Sat Jun 23 08:27:13 2018 (r473116) @@ -2,6 +2,7 @@ PORTNAME= step DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= science kde kde-applications MAINTAINER= kde@FreeBSD.org From owner-svn-ports-head@freebsd.org Sat Jun 23 08:37:19 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB07D1017BB0; Sat, 23 Jun 2018 08:37:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 56BD37A136; Sat, 23 Jun 2018 08:37:19 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 37FD256AA; Sat, 23 Jun 2018 08:37:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N8bJi1053574; Sat, 23 Jun 2018 08:37:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N8bJ8e053573; Sat, 23 Jun 2018 08:37:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806230837.w5N8bJ8e053573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 23 Jun 2018 08:37:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473117 - head/devel/api-sanity-autotest X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/api-sanity-autotest X-SVN-Commit-Revision: 473117 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 08:37:19 -0000 Author: amdmi3 Date: Sat Jun 23 08:37:18 2018 New Revision: 473117 URL: https://svnweb.freebsd.org/changeset/ports/473117 Log: - Add LICENSE_FILE - Switch to new test framework Modified: head/devel/api-sanity-autotest/Makefile Modified: head/devel/api-sanity-autotest/Makefile ============================================================================== --- head/devel/api-sanity-autotest/Makefile Sat Jun 23 08:27:13 2018 (r473116) +++ head/devel/api-sanity-autotest/Makefile Sat Jun 23 08:37:18 2018 (r473117) @@ -12,6 +12,7 @@ COMMENT= Quickly generate sanity tests for the API of LICENSE= LGPL20 GPLv2 LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/bin/abi-compliance-checker.pl:devel/abi-compliance-checker @@ -58,13 +59,13 @@ post-patch: do-install: @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/bin -.if defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING) -check regression-test test: build - cd ${WRKSRC}; ${PERL} ./${PORTNAME}.pl -test -.endif -post-install-DOCS-on: +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR} + +# XXX: tests fail: ERROR: can't find GCC>=3.0 in PATH +do-test: + cd ${WRKSRC} && ${PERL} ./${PORTNAME}.pl -test .include From owner-svn-ports-head@freebsd.org Sat Jun 23 09:07:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63B4510189BD; Sat, 23 Jun 2018 09:07:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 007EF7AC9B; Sat, 23 Jun 2018 09:07:20 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D01F35BA0; Sat, 23 Jun 2018 09:07:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N97JtU069164; Sat, 23 Jun 2018 09:07:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N97JOG069163; Sat, 23 Jun 2018 09:07:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806230907.w5N97JOG069163@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 23 Jun 2018 09:07:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473118 - head/www/p5-Plack-Middleware-ReverseProxy X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/www/p5-Plack-Middleware-ReverseProxy X-SVN-Commit-Revision: 473118 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 09:07:20 -0000 Author: amdmi3 Date: Sat Jun 23 09:07:19 2018 New Revision: 473118 URL: https://svnweb.freebsd.org/changeset/ports/473118 Log: - Add LICENSE - Style fix - Add NO_ARCH Approved by: portmgr blanket Modified: head/www/p5-Plack-Middleware-ReverseProxy/Makefile Modified: head/www/p5-Plack-Middleware-ReverseProxy/Makefile ============================================================================== --- head/www/p5-Plack-Middleware-ReverseProxy/Makefile Sat Jun 23 08:37:18 2018 (r473117) +++ head/www/p5-Plack-Middleware-ReverseProxy/Makefile Sat Jun 23 09:07:19 2018 (r473118) @@ -10,11 +10,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to support app to run as a reverse proxy backend -RUN_DEPENDS= \ - p5-Plack>=0.9988:www/p5-Plack +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Plack>=0.9988:www/p5-Plack BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include From owner-svn-ports-head@freebsd.org Sat Jun 23 09:32:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A8661019845; Sat, 23 Jun 2018 09:32:11 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D14B97BA47; Sat, 23 Jun 2018 09:32:10 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2D066082; Sat, 23 Jun 2018 09:32:10 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5N9WAEj084850; Sat, 23 Jun 2018 09:32:10 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N9WAiP084849; Sat, 23 Jun 2018 09:32:10 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806230932.w5N9WAiP084849@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 23 Jun 2018 09:32:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473120 - head/www/gecko-mediaplayer X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/www/gecko-mediaplayer X-SVN-Commit-Revision: 473120 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 09:32:11 -0000 Author: rene Date: Sat Jun 23 09:32:10 2018 New Revision: 473120 URL: https://svnweb.freebsd.org/changeset/ports/473120 Log: www/gecko-mediaplayer: mark as BROKEN, it does not specify a gecko type to use. It defaulted to libxul before the removal of www/libxul, so it must now either specify firefox, seamonkey or thunderbird. Modified: head/www/gecko-mediaplayer/Makefile Modified: head/www/gecko-mediaplayer/Makefile ============================================================================== --- head/www/gecko-mediaplayer/Makefile Sat Jun 23 09:19:21 2018 (r473119) +++ head/www/gecko-mediaplayer/Makefile Sat Jun 23 09:32:10 2018 (r473120) @@ -12,6 +12,8 @@ COMMENT= Multimedia browser plugin for Gecko based bro LICENSE= GPLv2 +BROKEN= Does not specify gecko type to use + LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \ libnspr4.so:devel/nspr \ libcurl.so:ftp/curl \ From owner-svn-ports-head@freebsd.org Sat Jun 23 09:37:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC6BD1019A59; Sat, 23 Jun 2018 09:37:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 580987BC53; Sat, 23 Jun 2018 09:37:14 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3959160AF; Sat, 23 Jun 2018 09:37:14 +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 w5N9bE1i085205; Sat, 23 Jun 2018 09:37:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5N9bDtx085204; Sat, 23 Jun 2018 09:37:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806230937.w5N9bDtx085204@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 23 Jun 2018 09:37:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473121 - head/ftp/horde-gollem X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/ftp/horde-gollem X-SVN-Commit-Revision: 473121 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 09:37:14 -0000 Author: amdmi3 Date: Sat Jun 23 09:37:13 2018 New Revision: 473121 URL: https://svnweb.freebsd.org/changeset/ports/473121 Log: - Whitespace fix - Update WWW Approved by: portmgr blanket Modified: head/ftp/horde-gollem/Makefile head/ftp/horde-gollem/pkg-descr Modified: head/ftp/horde-gollem/Makefile ============================================================================== --- head/ftp/horde-gollem/Makefile Sat Jun 23 09:32:10 2018 (r473120) +++ head/ftp/horde-gollem/Makefile Sat Jun 23 09:37:13 2018 (r473121) @@ -12,7 +12,7 @@ COMMENT= Horde Web-based File Manager LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= horde cpe +USES= horde cpe USE_PHP= gettext json USE_HORDE_BUILD= Horde_Role USE_HORDE_RUN= Horde_Role \ Modified: head/ftp/horde-gollem/pkg-descr ============================================================================== --- head/ftp/horde-gollem/pkg-descr Sat Jun 23 09:32:10 2018 (r473120) +++ head/ftp/horde-gollem/pkg-descr Sat Jun 23 09:37:13 2018 (r473121) @@ -2,4 +2,4 @@ Gollem is a web-based File Manager, providing the abil a hierarchical file system stored in a variety of backends such as a SQL database, as part of a real filesystem, or on FTP, Samba or SSH servers. -WWW: http://www.horde.org/apps/gollem/ +WWW: https://www.horde.org/apps/gollem/ From owner-svn-ports-head@freebsd.org Sat Jun 23 10:36:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E91B7101B8C3; Sat, 23 Jun 2018 10:36:37 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9DFE27D520; Sat, 23 Jun 2018 10:36:37 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 808226AAE; Sat, 23 Jun 2018 10:36:37 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NAabQx015502; Sat, 23 Jun 2018 10:36:37 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NAabfk015501; Sat, 23 Jun 2018 10:36:37 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806231036.w5NAabfk015501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 23 Jun 2018 10:36:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473122 - head/editors/morla X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/editors/morla X-SVN-Commit-Revision: 473122 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 10:36:38 -0000 Author: rene Date: Sat Jun 23 10:36:36 2018 New Revision: 473122 URL: https://svnweb.freebsd.org/changeset/ports/473122 Log: editors/morla: mark BROKEN if the XULRUNNER option is chosen Modified: head/editors/morla/Makefile Modified: head/editors/morla/Makefile ============================================================================== --- head/editors/morla/Makefile Sat Jun 23 09:37:13 2018 (r473121) +++ head/editors/morla/Makefile Sat Jun 23 10:36:36 2018 (r473122) @@ -36,6 +36,7 @@ DESKTOP_ENTRIES="morla" \ "WebDevelopment;" \ true +XULRUNNER_BROKEN=No gecko type specified (firefox, seamonkey, thunderbird) XULRUNNER_USES= gecko XULRUNNER_CONFIGURE_ON= --with-javascript=xulrunner XULRUNNER_CONFIGURE_OFF= --with-javascript=none From owner-svn-ports-head@freebsd.org Sat Jun 23 10:41:06 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1D5F101BA75; Sat, 23 Jun 2018 10:41:05 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 93ED87D6D2; Sat, 23 Jun 2018 10:41:05 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 753856AE6; Sat, 23 Jun 2018 10:41:05 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NAf5Dk019133; Sat, 23 Jun 2018 10:41:05 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NAf5fQ019132; Sat, 23 Jun 2018 10:41:05 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806231041.w5NAf5fQ019132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 23 Jun 2018 10:41:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473123 - head/science/gchemutils X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/science/gchemutils X-SVN-Commit-Revision: 473123 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 10:41:06 -0000 Author: rene Date: Sat Jun 23 10:41:05 2018 New Revision: 473123 URL: https://svnweb.freebsd.org/changeset/ports/473123 Log: science/gchemutils: mark BROKEN if XUL option is chosen Modified: head/science/gchemutils/Makefile Modified: head/science/gchemutils/Makefile ============================================================================== --- head/science/gchemutils/Makefile Sat Jun 23 10:36:36 2018 (r473122) +++ head/science/gchemutils/Makefile Sat Jun 23 10:41:05 2018 (r473123) @@ -47,6 +47,7 @@ OPTIONS_SUB= yes GNUMERIC_DESC= Build gnumeric plugin XUL_DESC= Build browser plugin (requires libxul) +XUL_BROKEN= No gecko type specified (firefox, seamonkey, thunderbird) XUL_USES= gecko XUL_CONFIGURE_ON=--enable-mozilla-plugin \ --with-mozilla-libdir=${PREFIX}/lib/xulrunner From owner-svn-ports-head@freebsd.org Sat Jun 23 10:43:59 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED1CB101BCDC; Sat, 23 Jun 2018 10:43:58 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 912857DB27; Sat, 23 Jun 2018 10:43:58 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C9C66C51; Sat, 23 Jun 2018 10:43:58 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NAhwbY020865; Sat, 23 Jun 2018 10:43:58 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NAhwUR020864; Sat, 23 Jun 2018 10:43:58 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806231043.w5NAhwUR020864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 23 Jun 2018 10:43:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473124 - head/www/xpi-conkeror X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/www/xpi-conkeror X-SVN-Commit-Revision: 473124 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 10:43:59 -0000 Author: rene Date: Sat Jun 23 10:43:57 2018 New Revision: 473124 URL: https://svnweb.freebsd.org/changeset/ports/473124 Log: www/xpi-conkeror: always use xulrunner from Firefox Modified: head/www/xpi-conkeror/Makefile Modified: head/www/xpi-conkeror/Makefile ============================================================================== --- head/www/xpi-conkeror/Makefile Sat Jun 23 10:41:05 2018 (r473123) +++ head/www/xpi-conkeror/Makefile Sat Jun 23 10:43:57 2018 (r473124) @@ -3,7 +3,7 @@ PORTNAME= conkeror PORTVERSION= 20150730 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://distfiles.pirateparty.in/ashish/ \ LOCAL/ashish @@ -14,15 +14,8 @@ COMMENT= Keyboard-oriented, customizable web browser b LICENSE= GPLv1 GPLv2 MPL11 LICENSE_COMB= multi -OPTIONS_SINGLE+= XULRUNNER -OPTIONS_SINGLE_XULRUNNER= FIREFOX LIBXUL -FIREFOX_DESC?= Use XULRunner from Firefox port -LIBXUL_DESC?= Use XULRunner from LibXUL port -OPTIONS_DEFAULT+= LIBXUL - USES= desktop-file-utils tar:xz gmake -LIBXUL_USES= gecko FIREFOX_USES= gecko:firefox,32+ ALL_TARGET= # empty @@ -43,7 +36,6 @@ post-patch: content-policy.manifest share ${REINPLACE_CMD} -e "s,%%DATADIR%%,${DATADIR},g" ${WRKSRC}/conkeror -post-patch-FIREFOX-on: ${REINPLACE_CMD} -e "s/xulrunner/firefox/g" ${WRKSRC}/conkeror ${REINPLACE_CMD} -e "s/XULRUNNER/FIREFOX/g" ${WRKSRC}/conkeror ${REINPLACE_CMD} -e 's/exec $${FIREFOX}/exec $${FIREFOX} -app/' ${WRKSRC}/conkeror From owner-svn-ports-head@freebsd.org Sat Jun 23 11:15:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFC6C101CB19; Sat, 23 Jun 2018 11:15:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 727207E7D3; Sat, 23 Jun 2018 11:15:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5365D7143; Sat, 23 Jun 2018 11:15:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NBFpfw036333; Sat, 23 Jun 2018 11:15:51 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NBFpkW036332; Sat, 23 Jun 2018 11:15:51 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806231115.w5NBFpkW036332@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 23 Jun 2018 11:15:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473125 - head/java/icedtea-web X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/java/icedtea-web X-SVN-Commit-Revision: 473125 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 11:15:51 -0000 Author: rene Date: Sat Jun 23 11:15:50 2018 New Revision: 473125 URL: https://svnweb.freebsd.org/changeset/ports/473125 Log: java/icedtea-web: mark as BROKEN after www/libxul removal Modified: head/java/icedtea-web/Makefile Modified: head/java/icedtea-web/Makefile ============================================================================== --- head/java/icedtea-web/Makefile Sat Jun 23 10:43:57 2018 (r473124) +++ head/java/icedtea-web/Makefile Sat Jun 23 11:15:50 2018 (r473125) @@ -12,6 +12,7 @@ COMMENT= Free Java plug-in and Java Web Start for Open LICENSE= GPLv2 +BROKEN= Does not configure: "Package 'mozilla-plugin', required by 'virtual:world', not found" BUILD_DEPENDS= zip:archivers/zip \ bash:shells/bash \ gsed:textproc/gsed From owner-svn-ports-head@freebsd.org Sat Jun 23 11:40:41 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23694101D563; Sat, 23 Jun 2018 11:40:41 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C8ED97F625; Sat, 23 Jun 2018 11:40:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A0D5074A0; Sat, 23 Jun 2018 11:40:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NBeeGd046365; Sat, 23 Jun 2018 11:40:40 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NBee5V046364; Sat, 23 Jun 2018 11:40:40 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201806231140.w5NBee5V046364@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 23 Jun 2018 11:40:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473126 - head/databases/py-fakeredis X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/databases/py-fakeredis X-SVN-Commit-Revision: 473126 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 11:40:41 -0000 Author: rene Date: Sat Jun 23 11:40:40 2018 New Revision: 473126 URL: https://svnweb.freebsd.org/changeset/ports/473126 Log: databases/py-fakeredis: update to 0.11.0 Reported by: portscout Modified: head/databases/py-fakeredis/Makefile head/databases/py-fakeredis/distinfo Modified: head/databases/py-fakeredis/Makefile ============================================================================== --- head/databases/py-fakeredis/Makefile Sat Jun 23 11:15:50 2018 (r473125) +++ head/databases/py-fakeredis/Makefile Sat Jun 23 11:40:40 2018 (r473126) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= fakeredis -PORTVERSION= 0.10.3 +PORTVERSION= 0.11.0 CATEGORIES= databases MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-fakeredis/distinfo ============================================================================== --- head/databases/py-fakeredis/distinfo Sat Jun 23 11:15:50 2018 (r473125) +++ head/databases/py-fakeredis/distinfo Sat Jun 23 11:40:40 2018 (r473126) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526118061 -SHA256 (fakeredis-0.10.3.tar.gz) = 488e6654ec57ef96f7f24227196602bac227d838b4a28407f113525ec0449310 -SIZE (fakeredis-0.10.3.tar.gz) = 28461 +TIMESTAMP = 1529752611 +SHA256 (fakeredis-0.11.0.tar.gz) = f9f486f724bcf9db64eacf6ec805abaeb48d96a6e7baf7c87721ddb71622b76f +SIZE (fakeredis-0.11.0.tar.gz) = 26455 From owner-svn-ports-head@freebsd.org Sat Jun 23 12:44:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 497B9101FE1F; Sat, 23 Jun 2018 12:44:52 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DEE1F813D0; Sat, 23 Jun 2018 12:44: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BA9A77FFF; Sat, 23 Jun 2018 12:44:51 +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 w5NCipfQ081411; Sat, 23 Jun 2018 12:44:51 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NCipvS081409; Sat, 23 Jun 2018 12:44:51 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201806231244.w5NCipvS081409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 23 Jun 2018 12:44:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473127 - head/textproc/py-parsimonious X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/textproc/py-parsimonious X-SVN-Commit-Revision: 473127 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 12:44:52 -0000 Author: dbaio Date: Sat Jun 23 12:44:51 2018 New Revision: 473127 URL: https://svnweb.freebsd.org/changeset/ports/473127 Log: textproc/py-parsimonious: Update to 0.8.1, Add test target - Switch to a function-style print in the benchmark tests so we work cleanly as a dependency on Python 3. (Edward Betts) Modified: head/textproc/py-parsimonious/Makefile head/textproc/py-parsimonious/distinfo Modified: head/textproc/py-parsimonious/Makefile ============================================================================== --- head/textproc/py-parsimonious/Makefile Sat Jun 23 11:40:40 2018 (r473126) +++ head/textproc/py-parsimonious/Makefile Sat Jun 23 12:44:51 2018 (r473127) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= parsimonious -PORTVERSION= 0.8.0 +PORTVERSION= 0.8.1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,9 +13,13 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: head/textproc/py-parsimonious/distinfo ============================================================================== --- head/textproc/py-parsimonious/distinfo Sat Jun 23 11:40:40 2018 (r473126) +++ head/textproc/py-parsimonious/distinfo Sat Jun 23 12:44:51 2018 (r473127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502235833 -SHA256 (parsimonious-0.8.0.tar.gz) = ae0869d72a6e57703f24313a5f5748e73ebff836e6fe8b3ddf34ea0dc00d086b -SIZE (parsimonious-0.8.0.tar.gz) = 38730 +TIMESTAMP = 1529756047 +SHA256 (parsimonious-0.8.1.tar.gz) = 3add338892d580e0cb3b1a39e4a1b427ff9f687858fdd61097053742391a9f6b +SIZE (parsimonious-0.8.1.tar.gz) = 45057 From owner-svn-ports-head@freebsd.org Sat Jun 23 12:45:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88F14101FE56; Sat, 23 Jun 2018 12:45:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 33151814AF; Sat, 23 Jun 2018 12:45:31 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 114688000; Sat, 23 Jun 2018 12:45:31 +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 w5NCjUIp081568; Sat, 23 Jun 2018 12:45:30 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NCjUxR081566; Sat, 23 Jun 2018 12:45:30 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201806231245.w5NCjUxR081566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 23 Jun 2018 12:45:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473128 - head/textproc/py-texttable X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/textproc/py-texttable X-SVN-Commit-Revision: 473128 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 12:45:31 -0000 Author: dbaio Date: Sat Jun 23 12:45:30 2018 New Revision: 473128 URL: https://svnweb.freebsd.org/changeset/ports/473128 Log: textproc/py-texttable: Update to 1.4.0 - Add set_header_align() method Modified: head/textproc/py-texttable/Makefile head/textproc/py-texttable/distinfo Modified: head/textproc/py-texttable/Makefile ============================================================================== --- head/textproc/py-texttable/Makefile Sat Jun 23 12:44:51 2018 (r473127) +++ head/textproc/py-texttable/Makefile Sat Jun 23 12:45:30 2018 (r473128) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= texttable -PORTVERSION= 1.3.1 +PORTVERSION= 1.4.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-texttable/distinfo ============================================================================== --- head/textproc/py-texttable/distinfo Sat Jun 23 12:44:51 2018 (r473127) +++ head/textproc/py-texttable/distinfo Sat Jun 23 12:45:30 2018 (r473128) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528931871 -SHA256 (texttable-1.3.1.tar.gz) = 0f75f5838b775bddc19f72c5bf50eb74be3815eb505ed3084e4666ce2e6c3259 -SIZE (texttable-1.3.1.tar.gz) = 12234 +TIMESTAMP = 1529755957 +SHA256 (texttable-1.4.0.tar.gz) = 95e8cfe85f8395a7eacdfbc8f09d885b9ef3a6ac6ead0364ea721de1127aa36b +SIZE (texttable-1.4.0.tar.gz) = 12274 From owner-svn-ports-head@freebsd.org Sat Jun 23 13:23:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B3391020FF9; Sat, 23 Jun 2018 13:23:18 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B606282569; Sat, 23 Jun 2018 13:23:17 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93A9610695; Sat, 23 Jun 2018 13:23:17 +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 w5NDNHoY001731; Sat, 23 Jun 2018 13:23:17 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NDNHEX001729; Sat, 23 Jun 2018 13:23:17 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201806231323.w5NDNHEX001729@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 23 Jun 2018 13:23:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473129 - head/security/p5-Crypt-Perl X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/security/p5-Crypt-Perl X-SVN-Commit-Revision: 473129 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 13:23:18 -0000 Author: pi Date: Sat Jun 23 13:23:16 2018 New Revision: 473129 URL: https://svnweb.freebsd.org/changeset/ports/473129 Log: security/p5-Crypt-Perl: 0.19 -> 0.22 Relnotes: https://metacpan.org/changes/distribution/Crypt-Perl Modified: head/security/p5-Crypt-Perl/Makefile head/security/p5-Crypt-Perl/distinfo Modified: head/security/p5-Crypt-Perl/Makefile ============================================================================== --- head/security/p5-Crypt-Perl/Makefile Sat Jun 23 12:45:30 2018 (r473128) +++ head/security/p5-Crypt-Perl/Makefile Sat Jun 23 13:23:16 2018 (r473129) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Crypt-Perl -PORTVERSION= 0.19 +PORTVERSION= 0.22 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -21,6 +21,7 @@ BUILD_DEPENDS= p5-Test-Class>=0.4:devel/p5-Test-Class p5-File-Which>=0:sysutils/p5-File-Which \ p5-Test-Deep>=0:devel/p5-Test-Deep \ p5-Test-Exception>=0:devel/p5-Test-Exception \ + p5-Test-NoWarnings>=0:devel/p5-Test-NoWarnings \ p5-Try-Tiny>=0:lang/p5-Try-Tiny \ p5-Bytes-Random-Secure-Tiny>=1.008:security/p5-Bytes-Random-Secure-Tiny \ p5-Math-ProvablePrime>=0.043:math/p5-Math-ProvablePrime \ Modified: head/security/p5-Crypt-Perl/distinfo ============================================================================== --- head/security/p5-Crypt-Perl/distinfo Sat Jun 23 12:45:30 2018 (r473128) +++ head/security/p5-Crypt-Perl/distinfo Sat Jun 23 13:23:16 2018 (r473129) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529394156 -SHA256 (Crypt-Perl-0.19.tar.gz) = e14583b52d94e72c5e99756acef9156c13e9dc0acca93a451262663095d59c5f -SIZE (Crypt-Perl-0.19.tar.gz) = 308012 +TIMESTAMP = 1529757232 +SHA256 (Crypt-Perl-0.22.tar.gz) = 44791a439edacafc7c94e04a4d8bf1d580ea5ce667af9af24202da0574ba52b2 +SIZE (Crypt-Perl-0.22.tar.gz) = 309467 From owner-svn-ports-head@freebsd.org Sat Jun 23 14:07:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C1E31022598; Sat, 23 Jun 2018 14:07:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C125E837E7; Sat, 23 Jun 2018 14:07:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 88A5610D21; Sat, 23 Jun 2018 14:07:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NE7Vgj022249; Sat, 23 Jun 2018 14:07:31 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NE7Ub2022247; Sat, 23 Jun 2018 14:07:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806231407.w5NE7Ub2022247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 14:07:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473130 - in head/graphics/gmic: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics/gmic: . files X-SVN-Commit-Revision: 473130 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:07:32 -0000 Author: yuri Date: Sat Jun 23 14:07:30 2018 New Revision: 473130 URL: https://svnweb.freebsd.org/changeset/ports/473130 Log: graphics/gmic: Update 2.2.3 -> 2.3.0 Reported by: portscout Modified: head/graphics/gmic/Makefile head/graphics/gmic/distinfo head/graphics/gmic/files/patch-CMakeLists.txt Modified: head/graphics/gmic/Makefile ============================================================================== --- head/graphics/gmic/Makefile Sat Jun 23 13:23:16 2018 (r473129) +++ head/graphics/gmic/Makefile Sat Jun 23 14:07:30 2018 (r473130) @@ -2,8 +2,7 @@ PORTNAME= gmic DISTVERSIONPREFIX= v. -DISTVERSION= 2.2.3 -PORTREVISION= 1 +DISTVERSION= 2.3.0 CATEGORIES= graphics MASTER_SITES= http://gmic.eu/:gmic_stdlib DISTFILES= gmic_stdlib.h:gmic_stdlib Modified: head/graphics/gmic/distinfo ============================================================================== --- head/graphics/gmic/distinfo Sat Jun 23 13:23:16 2018 (r473129) +++ head/graphics/gmic/distinfo Sat Jun 23 14:07:30 2018 (r473130) @@ -1,5 +1,5 @@ -TIMESTAMP = 1527752198 -SHA256 (gmic-v.2.2.3/gmic_stdlib.h) = edd24f2dbfbcff9f6b5156fe966c79a78c82df09fa0da12f31c170b85171de15 -SIZE (gmic-v.2.2.3/gmic_stdlib.h) = 1821356 -SHA256 (gmic-v.2.2.3/dtschump-gmic-v.2.2.3_GH0.tar.gz) = 1ed4f938ec9896223140c39062338780a35c52be53cbad44cf09b78de1b18bbc -SIZE (gmic-v.2.2.3/dtschump-gmic-v.2.2.3_GH0.tar.gz) = 39079198 +TIMESTAMP = 1529698344 +SHA256 (gmic-v.2.3.0/gmic_stdlib.h) = c5cd704cf5ecaa06e978a2b2ace0e82198ab909cbdd5b2789c454a120295c066 +SIZE (gmic-v.2.3.0/gmic_stdlib.h) = 1840883 +SHA256 (gmic-v.2.3.0/dtschump-gmic-v.2.3.0_GH0.tar.gz) = 8ce373454665266417ecca39576e10f53b349b1cd2622667782ea9360aec8926 +SIZE (gmic-v.2.3.0/dtschump-gmic-v.2.3.0_GH0.tar.gz) = 39069330 Modified: head/graphics/gmic/files/patch-CMakeLists.txt ============================================================================== --- head/graphics/gmic/files/patch-CMakeLists.txt Sat Jun 23 13:23:16 2018 (r473129) +++ head/graphics/gmic/files/patch-CMakeLists.txt Sat Jun 23 14:07:30 2018 (r473130) @@ -1,4 +1,4 @@ ---- CMakeLists.txt.orig 2018-05-16 12:26:13 UTC +--- CMakeLists.txt.orig 2018-06-21 07:32:48 UTC +++ CMakeLists.txt @@ -108,7 +108,7 @@ set(COMPILE_FLAGS "-Dgmic_build -Dcimg_u if(APPLE) @@ -9,13 +9,14 @@ endif() if(NOT "${PRERELEASE_TAG}" STREQUAL "") -@@ -235,8 +235,8 @@ endif() +@@ -235,8 +235,9 @@ endif() # CImg.h header if(NOT EXISTS ${CMAKE_SOURCE_DIR}/src/CImg.h) -- file(DOWNLOAD https://github.com/dtschump/CImg/raw/master/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) +- file(DOWNLOAD https://framagit.org/dtschump/CImg/raw/master/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) - execute_process(COMMAND touch ${CMAKE_SOURCE_DIR}/src/CImg.h) -+ #file(DOWNLOAD https://github.com/dtschump/CImg/raw/master/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) ++ #file(DOWNLOAD https://framagit.org/dtschump/CImg/raw/master/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) ++ #execute_process(COMMAND touch ${CMAKE_SOURCE_DIR}/src/CImg.h) + execute_process(COMMAND ln -s ${CMAKE_INSTALL_PREFIX}/include/CImg.h ${CMAKE_SOURCE_DIR}/src/CImg.h) endif() From owner-svn-ports-head@freebsd.org Sat Jun 23 14:13:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4908510227FC; Sat, 23 Jun 2018 14:13:05 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EC1AB83B9E; Sat, 23 Jun 2018 14:13:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CC93610EB2; Sat, 23 Jun 2018 14:13:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NED4ox027555; Sat, 23 Jun 2018 14:13:04 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NED4Ss027554; Sat, 23 Jun 2018 14:13:04 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806231413.w5NED4Ss027554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Jun 2018 14:13:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473131 - head/net/google-cloud-sdk X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/net/google-cloud-sdk X-SVN-Commit-Revision: 473131 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:13:05 -0000 Author: swills Date: Sat Jun 23 14:13:04 2018 New Revision: 473131 URL: https://svnweb.freebsd.org/changeset/ports/473131 Log: net/google-cloud-sdk: update to 206.0.0 Modified: head/net/google-cloud-sdk/Makefile (contents, props changed) head/net/google-cloud-sdk/distinfo (contents, props changed) Modified: head/net/google-cloud-sdk/Makefile ============================================================================== --- head/net/google-cloud-sdk/Makefile Sat Jun 23 14:07:30 2018 (r473130) +++ head/net/google-cloud-sdk/Makefile Sat Jun 23 14:13:04 2018 (r473131) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-cloud-sdk -PORTVERSION= 205.0.0 +PORTVERSION= 206.0.0 CATEGORIES= net MASTER_SITES= https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/ DISTNAME= google-cloud-sdk-${PORTVERSION}-linux-x86_64 Modified: head/net/google-cloud-sdk/distinfo ============================================================================== --- head/net/google-cloud-sdk/distinfo Sat Jun 23 14:07:30 2018 (r473130) +++ head/net/google-cloud-sdk/distinfo Sat Jun 23 14:13:04 2018 (r473131) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529020254 -SHA256 (google-cloud-sdk-205.0.0-linux-x86_64.tar.gz) = 38154c19a317a45ea839d96c55da104f7cfddfa0a4aebbe8aafd9d67c067d1f5 -SIZE (google-cloud-sdk-205.0.0-linux-x86_64.tar.gz) = 20055033 +TIMESTAMP = 1529762034 +SHA256 (google-cloud-sdk-206.0.0-linux-x86_64.tar.gz) = d39293914b2e969bfe18dd19eb77ba96d283995f8cf1e5d7ba6ac712a3c9479a +SIZE (google-cloud-sdk-206.0.0-linux-x86_64.tar.gz) = 20070992 From owner-svn-ports-head@freebsd.org Sat Jun 23 14:33:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 186C91022E3D; Sat, 23 Jun 2018 14:33:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C04A384324; Sat, 23 Jun 2018 14:33:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A163F11217; Sat, 23 Jun 2018 14:33:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NEX6EP037275; Sat, 23 Jun 2018 14:33:06 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NEX69a037273; Sat, 23 Jun 2018 14:33:06 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806231433.w5NEX69a037273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Jun 2018 14:33:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473132 - head/devel/p5-Term-Title X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/p5-Term-Title X-SVN-Commit-Revision: 473132 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:33:07 -0000 Author: swills Date: Sat Jun 23 14:33:05 2018 New Revision: 473132 URL: https://svnweb.freebsd.org/changeset/ports/473132 Log: devel/p5-Term-Title: update to 0.09 Modified: head/devel/p5-Term-Title/Makefile (contents, props changed) head/devel/p5-Term-Title/distinfo (contents, props changed) Modified: head/devel/p5-Term-Title/Makefile ============================================================================== --- head/devel/p5-Term-Title/Makefile Sat Jun 23 14:13:04 2018 (r473131) +++ head/devel/p5-Term-Title/Makefile Sat Jun 23 14:33:05 2018 (r473132) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Term-Title -PORTVERSION= 0.08 -PORTREVISION= 1 +PORTVERSION= 0.09 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DAGOLDEN Modified: head/devel/p5-Term-Title/distinfo ============================================================================== --- head/devel/p5-Term-Title/distinfo Sat Jun 23 14:13:04 2018 (r473131) +++ head/devel/p5-Term-Title/distinfo Sat Jun 23 14:33:05 2018 (r473132) @@ -1,2 +1,3 @@ -SHA256 (Term-Title-0.08.tar.gz) = 6a64650a690c48e02760136f8d02f603f6d0882eb664a198e4266419f8c2ec2e -SIZE (Term-Title-0.08.tar.gz) = 14638 +TIMESTAMP = 1529764202 +SHA256 (Term-Title-0.09.tar.gz) = dbcdfa34eecc12394320aeacd460f08e71891fe9bb861952266aa500f963dfd4 +SIZE (Term-Title-0.09.tar.gz) = 15565 From owner-svn-ports-head@freebsd.org Sat Jun 23 14:42:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9F2010233E5; Sat, 23 Jun 2018 14:42:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A079E84921; Sat, 23 Jun 2018 14:42:33 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 81B3C113B1; Sat, 23 Jun 2018 14:42:33 +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 w5NEgXf1042644; Sat, 23 Jun 2018 14:42:33 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NEgX1R042642; Sat, 23 Jun 2018 14:42:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201806231442.w5NEgX1R042642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 23 Jun 2018 14:42:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473133 - head/devel/git-cinnabar X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/devel/git-cinnabar X-SVN-Commit-Revision: 473133 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:42:34 -0000 Author: jbeich Date: Sat Jun 23 14:42:32 2018 New Revision: 473133 URL: https://svnweb.freebsd.org/changeset/ports/473133 Log: devel/git-cinnabar: unbreak after r473036 ./helper/cinnabar-fast-import.c:127:10: warning: implicit declaration of function 'pool_calloc' is invalid in C99 [-Wimplicit-function-declaration] marks = pool_calloc(1, sizeof(struct mark_set)); ^ ./helper/cinnabar-fast-import.c:127:8: warning: incompatible integer to pointer conversion assigning to 'struct mark_set *' from 'int' [-Wint-conversion] marks = pool_calloc(1, sizeof(struct mark_set)); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./helper/cinnabar-fast-import.c:131:12: warning: implicit declaration of function 'pool_alloc' is invalid in C99 [-Wimplicit-function-declaration] rc_free = pool_alloc(cmd_save * sizeof(*rc_free)); ^ ./helper/cinnabar-fast-import.c:131:10: warning: incompatible integer to pointer conversion assigning to 'struct recent_command *' from 'int' [-Wint-conversion] rc_free = pool_alloc(cmd_save * sizeof(*rc_free)); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./helper/cinnabar-fast-import.c:136:2: warning: implicit declaration of function 'prepare_packed_git' is invalid in C99 [-Wimplicit-function-declaration] prepare_packed_git(); ^ ./helper/cinnabar-fast-import.c:138:30: error: too few arguments to function call, expected 2, have 1 install_packed_git(pack_data); ~~~~~~~~~~~~~~~~~~ ^ ./packfile.h:38:1: note: 'install_packed_git' declared here extern void install_packed_git(struct repository *r, struct packed_git *pack); ^ ./helper/cinnabar-fast-import.c:139:34: error: use of undeclared identifier 'packed_git_mru' list_add_tail(&pack_data->mru, &packed_git_mru); ^ ./helper/cinnabar-fast-import.c:155:23: error: too few arguments to function call, single argument 'r' was not specified reprepare_packed_git(); ~~~~~~~~~~~~~~~~~~~~ ^ ./packfile.h:37:1: note: 'reprepare_packed_git' declared here extern void reprepare_packed_git(struct repository *r); ^ ./helper/cinnabar-fast-import.c:194:28: error: use of undeclared identifier 'packed_git' for (prev = NULL, pack = packed_git; pack; ^ ./helper/cinnabar-fast-import.c:201:5: error: must use 'struct' tag to refer to type 'packed_git' packed_git = pack->next; ^ struct ./helper/cinnabar-fast-import.c:201:5: error: expected expression ./helper/cinnabar-fast-import.c:239:24: warning: incompatible pointer types passing 'unsigned char const[20]' to parameter of type 'const struct object_id *' [-Wincompatible-pointer-types] if (!get_tree_entry(note->hash, path, oid.hash, &mode)) ^~~~~~~~~~ ./tree-walk.h:82:44: note: passing argument to parameter here int get_tree_entry(const struct object_id *, const char *, struct object_id *, unsigned *); ^ ./helper/cinnabar-fast-import.c:239:42: warning: incompatible pointer types passing 'unsigned char [20]' to parameter of type 'struct object_id *' [-Wincompatible-pointer-types] if (!get_tree_entry(note->hash, path, oid.hash, &mode)) ^~~~~~~~ ./tree-walk.h:82:78: note: passing argument to parameter here int get_tree_entry(const struct object_id *, const char *, struct object_id *, unsigned *); ^ ./helper/cinnabar-fast-import.c:250:13: warning: implicit declaration of function 'sha1_object_info' is invalid in C99 [-Wimplicit-function-declaration] e->type = sha1_object_info(note->hash, NULL); ^ ./helper/cinnabar-fast-import.c:411:19: warning: implicit declaration of function 'read_sha1_file_extended' is invalid in C99 [-Wimplicit-function-declaration] char *content = read_sha1_file_extended(note->hash, &type, &len, 0); ^ ./helper/cinnabar-fast-import.c:411:9: warning: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion] char *content = read_sha1_file_extended(note->hash, &type, &len, 0); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./helper/cinnabar-fast-import.c:423:12: warning: incompatible integer to pointer conversion assigning to 'char *' from 'int' [-Wint-conversion] content = read_sha1_file_extended(git_id->hash, &type, ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./helper/cinnabar-fast-import.c:489:13: warning: implicit declaration of function 'sha1_object_info' is invalid in C99 [-Wimplicit-function-declaration] } else if (sha1_object_info(git_id.hash, NULL) != type) { ^ ./helper/cinnabar-fast-import.c:513:10: warning: implicit declaration of function 'sha1_object_info' is invalid in C99 [-Wimplicit-function-declaration] switch (sha1_object_info(note_oid->hash, NULL)) { ^ 13 warnings and 6 errors generated. Changes: https://github.com/glandium/git-cinnabar/compare/0.5.0b3...aaabee0 Reported by: pkg-fallout Modified: head/devel/git-cinnabar/Makefile (contents, props changed) head/devel/git-cinnabar/distinfo (contents, props changed) Modified: head/devel/git-cinnabar/Makefile ============================================================================== --- head/devel/git-cinnabar/Makefile Sat Jun 23 14:33:05 2018 (r473132) +++ head/devel/git-cinnabar/Makefile Sat Jun 23 14:42:32 2018 (r473133) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= git-cinnabar -DISTVERSION= 0.5.0b3 -PORTREVISION= 1 +DISTVERSION= 0.5.0b3-2 +DISTVERSIONSUFFIX= -gaaabee0 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org Modified: head/devel/git-cinnabar/distinfo ============================================================================== --- head/devel/git-cinnabar/distinfo Sat Jun 23 14:33:05 2018 (r473132) +++ head/devel/git-cinnabar/distinfo Sat Jun 23 14:42:32 2018 (r473133) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526703254 -SHA256 (glandium-git-cinnabar-0.5.0b3_GH0.tar.gz) = 23e8e26b53c0d3698d3c1a9fb512b49edf7321c4b77c4a09900b85e164ed0fcc -SIZE (glandium-git-cinnabar-0.5.0b3_GH0.tar.gz) = 120153 +TIMESTAMP = 1529764737 +SHA256 (glandium-git-cinnabar-0.5.0b3-2-gaaabee0_GH0.tar.gz) = 65a73d4d9e89a3ccc0466e421954d8774c62ad6425485ac0525081bbb791f162 +SIZE (glandium-git-cinnabar-0.5.0b3-2-gaaabee0_GH0.tar.gz) = 120188 From owner-svn-ports-head@freebsd.org Sat Jun 23 14:46:21 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4AE910238A3; Sat, 23 Jun 2018 14:46:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 798EC84C34; Sat, 23 Jun 2018 14:46:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 54D68113BD; Sat, 23 Jun 2018 14:46:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NEkLJ5042944; Sat, 23 Jun 2018 14:46:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NEkKAP042940; Sat, 23 Jun 2018 14:46:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806231446.w5NEkKAP042940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 14:46:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473134 - head/devel/raylib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/raylib X-SVN-Commit-Revision: 473134 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:46:22 -0000 Author: yuri Date: Sat Jun 23 14:46:20 2018 New Revision: 473134 URL: https://svnweb.freebsd.org/changeset/ports/473134 Log: devel/raylib: Update 1.9.7-dev -> 2.0.0-dev Port changes: * Add USES=localbase:ldflags * Backport the pull request for glfw selection in cmake scripts PR: 229234 Submitted by: Martin Filla (maintainer) Modified: head/devel/raylib/Makefile head/devel/raylib/distinfo Modified: head/devel/raylib/Makefile ============================================================================== --- head/devel/raylib/Makefile Sat Jun 23 14:42:32 2018 (r473133) +++ head/devel/raylib/Makefile Sat Jun 23 14:46:20 2018 (r473134) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= raylib -DISTVERSION= 1.9.7 +DISTVERSION= 2.0.0 DISTVERSIONSUFFIX= -dev -PORTREVISION= 1 CATEGORIES= devel MAINTAINER= martinfilla@post.cz @@ -14,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libglfw.so:graphics/glfw -USES= cmake:outsource +USES= cmake:outsource localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= raysan5 USE_LDCONFIG= yes @@ -29,6 +28,9 @@ PLIST_FILES= include/raylib.h \ lib/libraylib.so.1 \ lib/libraylib.so.${DISTVERSION} \ libdata/pkgconfig/raylib.pc + +post-patch: # the equivalent of https://github.com/raysan5/raylib/pull/558 for the -dev branch + @${REINPLACE_CMD} -e 's|if(NOT glfw3_FOUND)|if(NOT glfw3_FOUND AND NOT USE_EXTERNAL_GLFW)|' ${WRKSRC}/src/CMakeLists.txt post-extract: # remove bundled files @${RM} -r ${WRKSRC}/src/external/glfw ${WRKSRC}/src/external/include ${WRKSRC}/src/rglfw.c Modified: head/devel/raylib/distinfo ============================================================================== --- head/devel/raylib/distinfo Sat Jun 23 14:42:32 2018 (r473133) +++ head/devel/raylib/distinfo Sat Jun 23 14:46:20 2018 (r473134) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523722385 -SHA256 (raysan5-raylib-1.9.7-dev_GH0.tar.gz) = 2be745bf1a132e3de2dd14c9b2f8a596499fb2569ceb00c82c2e9dd95d76f062 -SIZE (raysan5-raylib-1.9.7-dev_GH0.tar.gz) = 95336821 +TIMESTAMP = 1529673142 +SHA256 (raysan5-raylib-2.0.0-dev_GH0.tar.gz) = e0aec21da642b4f373e9a6b628877dcc02a22a1267a7d6eace3ad5eb1ab33b5d +SIZE (raysan5-raylib-2.0.0-dev_GH0.tar.gz) = 95683544 From owner-svn-ports-head@freebsd.org Sat Jun 23 14:54:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9559C1023CD1; Sat, 23 Jun 2018 14:54:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BE31850FE; Sat, 23 Jun 2018 14:54:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 18B061156C; Sat, 23 Jun 2018 14:54:45 +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 w5NEsi9B048150; Sat, 23 Jun 2018 14:54:44 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NEsioJ048149; Sat, 23 Jun 2018 14:54:44 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806231454.w5NEsioJ048149@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sat, 23 Jun 2018 14:54:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473135 - head/devel/p5-Test-Warn X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/devel/p5-Test-Warn X-SVN-Commit-Revision: 473135 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:54:45 -0000 Author: wen Date: Sat Jun 23 14:54:44 2018 New Revision: 473135 URL: https://svnweb.freebsd.org/changeset/ports/473135 Log: - Update to 0.36 Changes: https://metacpan.org/changes/distribution/Test-Warn Modified: head/devel/p5-Test-Warn/Makefile head/devel/p5-Test-Warn/distinfo Modified: head/devel/p5-Test-Warn/Makefile ============================================================================== --- head/devel/p5-Test-Warn/Makefile Sat Jun 23 14:46:20 2018 (r473134) +++ head/devel/p5-Test-Warn/Makefile Sat Jun 23 14:54:44 2018 (r473135) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Warn -PORTVERSION= 0.35 +PORTVERSION= 0.36 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Warn/distinfo ============================================================================== --- head/devel/p5-Test-Warn/distinfo Sat Jun 23 14:46:20 2018 (r473134) +++ head/devel/p5-Test-Warn/distinfo Sat Jun 23 14:54:44 2018 (r473135) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529277355 -SHA256 (Test-Warn-0.35.tar.gz) = 24e410963cc8a3bf76851f475e322e1d232ea93d73d700f6b9e7888201b354c5 -SIZE (Test-Warn-0.35.tar.gz) = 12230 +TIMESTAMP = 1529765352 +SHA256 (Test-Warn-0.36.tar.gz) = ecbca346d379cef8d3c0e4ac0c8eb3b2613d737ffaaeae52271c38d7bf3c6cda +SIZE (Test-Warn-0.36.tar.gz) = 12333 From owner-svn-ports-head@freebsd.org Sat Jun 23 14:58:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADB231023EAE; Sat, 23 Jun 2018 14:58:14 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 35F83853B1; Sat, 23 Jun 2018 14:58:13 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id w5NEw6Iu000438 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Sat, 23 Jun 2018 07:58:07 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-24-4-131-132.hsd1.ca.comcast.net [24.4.131.132] claimed to be yv.noip.me Subject: Re: svn commit: r472283 - in head/chinese: . ibus-table-chinese To: Xin LI , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201806130457.w5D4vtbH071783@repo.freebsd.org> From: Yuri Message-ID: Date: Sat, 23 Jun 2018 07:58:05 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <201806130457.w5D4vtbH071783@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 14:58:14 -0000 On 06/12/18 21:57, Xin LI wrote: > Readd ibus-table-chinese with github source. Re-adding should be done by repo-copying. It was deleted before: r439826 | ler | 2017-04-30 08:47:51 -0700 (Sun, 30 Apr 2017) | 121 lines Changed paths:    M /head/MOVED    ...    D /head/chinese/ibus-table-chinese    ... Yuri From owner-svn-ports-head@freebsd.org Sat Jun 23 15:47:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCA321025A22; Sat, 23 Jun 2018 15:47:53 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8137F881C9; Sat, 23 Jun 2018 15:47: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6229111D93; Sat, 23 Jun 2018 15:47: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 w5NFlrh1073408; Sat, 23 Jun 2018 15:47:53 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NFlqDm073406; Sat, 23 Jun 2018 15:47:52 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201806231547.w5NFlqDm073406@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 23 Jun 2018 15:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473136 - head/math/octave-forge-gsl X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: head/math/octave-forge-gsl X-SVN-Commit-Revision: 473136 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 15:47:54 -0000 Author: stephen Date: Sat Jun 23 15:47:52 2018 New Revision: 473136 URL: https://svnweb.freebsd.org/changeset/ports/473136 Log: - Update to 2.1.1. Modified: head/math/octave-forge-gsl/Makefile head/math/octave-forge-gsl/distinfo Modified: head/math/octave-forge-gsl/Makefile ============================================================================== --- head/math/octave-forge-gsl/Makefile Sat Jun 23 14:54:44 2018 (r473135) +++ head/math/octave-forge-gsl/Makefile Sat Jun 23 15:47:52 2018 (r473136) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-gsl -PORTVERSION= 2.1.0 -PORTREVISION= 4 +PORTVERSION= 2.1.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-gsl/distinfo ============================================================================== --- head/math/octave-forge-gsl/distinfo Sat Jun 23 14:54:44 2018 (r473135) +++ head/math/octave-forge-gsl/distinfo Sat Jun 23 15:47:52 2018 (r473136) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508897264 -SHA256 (octave-forge/gsl-2.1.0.tar.gz) = 940142b7d655d9196e1ec5197b4176388c69671e03ba8da717782d9f040fcedb -SIZE (octave-forge/gsl-2.1.0.tar.gz) = 117838 +TIMESTAMP = 1529768576 +SHA256 (octave-forge/gsl-2.1.1.tar.gz) = d028c52579e251c3f21ebfdf065dffab3ad7893434efda33b501225ef1ea6ed3 +SIZE (octave-forge/gsl-2.1.1.tar.gz) = 122003 From owner-svn-ports-head@freebsd.org Sat Jun 23 15:48:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 129DA1025A95; Sat, 23 Jun 2018 15:48:23 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BAEDF882B3; Sat, 23 Jun 2018 15:48: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9C54011D96; Sat, 23 Jun 2018 15:48:22 +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 w5NFmMk1073549; Sat, 23 Jun 2018 15:48:22 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NFmMAo073547; Sat, 23 Jun 2018 15:48:22 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201806231548.w5NFmMAo073547@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 23 Jun 2018 15:48:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473137 - head/math/octave-forge-ltfat X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: head/math/octave-forge-ltfat X-SVN-Commit-Revision: 473137 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 15:48:23 -0000 Author: stephen Date: Sat Jun 23 15:48:21 2018 New Revision: 473137 URL: https://svnweb.freebsd.org/changeset/ports/473137 Log: - Update to 2.3.1. Modified: head/math/octave-forge-ltfat/Makefile head/math/octave-forge-ltfat/distinfo Modified: head/math/octave-forge-ltfat/Makefile ============================================================================== --- head/math/octave-forge-ltfat/Makefile Sat Jun 23 15:47:52 2018 (r473136) +++ head/math/octave-forge-ltfat/Makefile Sat Jun 23 15:48:21 2018 (r473137) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-ltfat -PORTVERSION= 2.3.0 +PORTVERSION= 2.3.1 PORTEPOCH= 1 CATEGORIES= math Modified: head/math/octave-forge-ltfat/distinfo ============================================================================== --- head/math/octave-forge-ltfat/distinfo Sat Jun 23 15:47:52 2018 (r473136) +++ head/math/octave-forge-ltfat/distinfo Sat Jun 23 15:48:21 2018 (r473137) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526090340 -SHA256 (octave-forge/ltfat-2.3.0.tar.gz) = 57207cd922a7a52725fc9e3a24e651c2407d288265b93e43040f33821e23212a -SIZE (octave-forge/ltfat-2.3.0.tar.gz) = 3210028 +TIMESTAMP = 1529768625 +SHA256 (octave-forge/ltfat-2.3.1.tar.gz) = 3063eced0aa185162f3049e37c2ca8076985b76b7173738e7389184e5481f03d +SIZE (octave-forge/ltfat-2.3.1.tar.gz) = 3236417 From owner-svn-ports-head@freebsd.org Sat Jun 23 15:53:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 138501026002; Sat, 23 Jun 2018 15:53:56 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B015588933; Sat, 23 Jun 2018 15:53:55 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90B6C11F25; Sat, 23 Jun 2018 15:53:55 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NFrt2T078306; Sat, 23 Jun 2018 15:53:55 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NFrt2L078304; Sat, 23 Jun 2018 15:53:55 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201806231553.w5NFrt2L078304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Sat, 23 Jun 2018 15:53:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473138 - head/biology/phyml X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/biology/phyml X-SVN-Commit-Revision: 473138 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 15:53:56 -0000 Author: fernape Date: Sat Jun 23 15:53:54 2018 New Revision: 473138 URL: https://svnweb.freebsd.org/changeset/ports/473138 Log: biology/phyml: update to v3.3.20180621 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D15967 Modified: head/biology/phyml/Makefile head/biology/phyml/distinfo Modified: head/biology/phyml/Makefile ============================================================================== --- head/biology/phyml/Makefile Sat Jun 23 15:48:21 2018 (r473137) +++ head/biology/phyml/Makefile Sat Jun 23 15:53:54 2018 (r473138) @@ -3,7 +3,7 @@ PORTNAME= phyml DISTVERSIONPREFIX= v -DISTVERSION= 3.3.20180214 +DISTVERSION= 3.3.20180621 PORTEPOCH= 1 CATEGORIES= biology @@ -13,10 +13,11 @@ COMMENT= Simple, fast, and accurate algorithm to estim LICENSE= GPLv2 #LICENSE_FILE= ${WRKSRC}/COPYING +USES= autoreconf libtool pkgconfig + USE_GITHUB= yes GH_ACCOUNT= stephaneguindon -USES= autoreconf libtool pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-beagle Modified: head/biology/phyml/distinfo ============================================================================== --- head/biology/phyml/distinfo Sat Jun 23 15:48:21 2018 (r473137) +++ head/biology/phyml/distinfo Sat Jun 23 15:53:54 2018 (r473138) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526382421 -SHA256 (stephaneguindon-phyml-v3.3.20180214_GH0.tar.gz) = ec059e3662874be3fdf1a9dc6d71fe4d568d987f66da9495f154f8f49c6d153e -SIZE (stephaneguindon-phyml-v3.3.20180214_GH0.tar.gz) = 2466457 +TIMESTAMP = 1529676287 +SHA256 (stephaneguindon-phyml-v3.3.20180621_GH0.tar.gz) = a66c1c5758408578c34a17733f92db11a67aa572a06a9b5e3046009ee8bed0d3 +SIZE (stephaneguindon-phyml-v3.3.20180621_GH0.tar.gz) = 2306290 From owner-svn-ports-head@freebsd.org Sat Jun 23 16:26:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49D521026B09; Sat, 23 Jun 2018 16:26:24 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EAA9789691; Sat, 23 Jun 2018 16:26:23 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CBEF21240B; Sat, 23 Jun 2018 16:26:23 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NGQNZn093813; Sat, 23 Jun 2018 16:26:23 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NGQNr3093809; Sat, 23 Jun 2018 16:26:23 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201806231626.w5NGQNr3093809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Sat, 23 Jun 2018 16:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473139 - in head/textproc/groonga: . files X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: in head/textproc/groonga: . files X-SVN-Commit-Revision: 473139 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 16:26:24 -0000 Author: bofh Date: Sat Jun 23 16:26:22 2018 New Revision: 473139 URL: https://svnweb.freebsd.org/changeset/ports/473139 Log: textproc/groonga: Update version 8.0.1=>8.0.3 Relnotes: http://groonga.org/en/blog/2018/05/29/groonga-8.0.3.html Modified: head/textproc/groonga/Makefile head/textproc/groonga/distinfo head/textproc/groonga/files/patch-src_httpd_configure (contents, props changed) head/textproc/groonga/pkg-plist Modified: head/textproc/groonga/Makefile ============================================================================== --- head/textproc/groonga/Makefile Sat Jun 23 15:53:54 2018 (r473138) +++ head/textproc/groonga/Makefile Sat Jun 23 16:26:22 2018 (r473139) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= groonga -PORTVERSION= 8.0.1 +PORTVERSION= 8.0.3 CATEGORIES= textproc MASTER_SITES= http://packages.groonga.org/source/groonga/ @@ -57,7 +57,7 @@ post-patch: '/NGX_PID_PATH/s|mkdir|${TRUE}| ; \ /NGX_HTTP_LOG_PATH/s|mkdir|${TRUE}| ; \ /NGX_ERROR_LOG_PATH/s|mkdir|${TRUE}|' \ - ${WRKSRC}/vendor/nginx-1.13.10/auto/install + ${WRKSRC}/vendor/nginx-1.14.0/auto/install post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/groonga-httpd Modified: head/textproc/groonga/distinfo ============================================================================== --- head/textproc/groonga/distinfo Sat Jun 23 15:53:54 2018 (r473138) +++ head/textproc/groonga/distinfo Sat Jun 23 16:26:22 2018 (r473139) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524408583 -SHA256 (groonga-8.0.1.tar.gz) = 0f5ebd71aee8613bb5fefa57ed23007375769d8f681dab4ccd8886cd5a38991c -SIZE (groonga-8.0.1.tar.gz) = 14098028 +TIMESTAMP = 1529750037 +SHA256 (groonga-8.0.3.tar.gz) = ce21d831cbababc22b9b663ddf1c95939a3d90b125a5506553f5698449b221a3 +SIZE (groonga-8.0.3.tar.gz) = 15148097 Modified: head/textproc/groonga/files/patch-src_httpd_configure ============================================================================== --- head/textproc/groonga/files/patch-src_httpd_configure Sat Jun 23 15:53:54 2018 (r473138) +++ head/textproc/groonga/files/patch-src_httpd_configure Sat Jun 23 16:26:22 2018 (r473139) @@ -1,11 +1,11 @@ ---- src/httpd/configure.orig 2017-02-01 03:41:52 UTC +--- src/httpd/configure.orig 2018-04-20 00:31:00 UTC +++ src/httpd/configure -@@ -97,7 +97,7 @@ if [ "${GROONGA_HTTPD_WITH_MRUBY}" = "ye - ./configure --with-ngx-src-root=${nginx_directory} \ +@@ -115,7 +115,7 @@ if [ "${GROONGA_HTTPD_WITH_MRUBY}" = "yes" -a \ + --with-ngx-src-root=${nginx_directory} \ --with-mruby-incdir="${mruby_directory}/src ${mruby_directory}/include" \ --with-mruby-libdir=${libmruby_directory} - make generate_gems_config + gmake generate_gems_config - configure_args="${configure_args} --add-module=${nginx_mruby_directory}/dependence/ngx_devel_kit --add-module=${nginx_mruby_directory}" + configure_args="${configure_args} --add-module=${nginx_mruby_directory}/dependence/ngx_devel_kit" + configure_args="${configure_args} --add-module=${nginx_mruby_directory_in_build_directory}" fi - Modified: head/textproc/groonga/pkg-plist ============================================================================== --- head/textproc/groonga/pkg-plist Sat Jun 23 15:53:54 2018 (r473138) +++ head/textproc/groonga/pkg-plist Sat Jun 23 16:26:22 2018 (r473139) @@ -42,12 +42,15 @@ include/groonga/groonga/file_reader.h include/groonga/groonga/geo.h include/groonga/groonga/groonga.h include/groonga/groonga/hash.h +include/groonga/groonga/highlighter.h include/groonga/groonga/id.h include/groonga/groonga/ii.h +include/groonga/groonga/msgpack.h include/groonga/groonga/nfkc.h include/groonga/groonga/normalizer.h include/groonga/groonga/obj.h include/groonga/groonga/operator.h +include/groonga/groonga/option.h include/groonga/groonga/output.h include/groonga/groonga/pat.h include/groonga/groonga/plugin.h @@ -55,14 +58,17 @@ include/groonga/groonga/portability.h include/groonga/groonga/request_canceler.h include/groonga/groonga/request_timer.h include/groonga/groonga/scorer.h +include/groonga/groonga/string.h include/groonga/groonga/table.h include/groonga/groonga/thread.h include/groonga/groonga/time.h include/groonga/groonga/token.h include/groonga/groonga/token_filter.h include/groonga/groonga/tokenizer.h +include/groonga/groonga/tokenizer_query_deprecated.h include/groonga/groonga/type.h include/groonga/groonga/util.h +include/groonga/groonga/vector.h include/groonga/groonga/windows.h include/groonga/groonga/windows_event_logger.h include/groonga/groonga/window_function.h From owner-svn-ports-head@freebsd.org Sat Jun 23 16:40:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 219B91026EBE; Sat, 23 Jun 2018 16:40:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C3B1889BFB; Sat, 23 Jun 2018 16:40:33 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A0F9D125B8; Sat, 23 Jun 2018 16:40:33 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NGeXBe099403; Sat, 23 Jun 2018 16:40:33 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NGeWVv099398; Sat, 23 Jun 2018 16:40:32 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806231640.w5NGeWVv099398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 16:40:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473140 - in head/math/xtensor: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math/xtensor: . files X-SVN-Commit-Revision: 473140 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 16:40:34 -0000 Author: yuri Date: Sat Jun 23 16:40:32 2018 New Revision: 473140 URL: https://svnweb.freebsd.org/changeset/ports/473140 Log: math/xtensor: Update 0.16.3 -> 0.16.4 Reported by: portscout Modified: head/math/xtensor/Makefile head/math/xtensor/distinfo head/math/xtensor/files/patch-CMakeLists.txt head/math/xtensor/files/patch-test_CMakeLists.txt head/math/xtensor/pkg-plist Modified: head/math/xtensor/Makefile ============================================================================== --- head/math/xtensor/Makefile Sat Jun 23 16:26:22 2018 (r473139) +++ head/math/xtensor/Makefile Sat Jun 23 16:40:32 2018 (r473140) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xtensor -DISTVERSION= 0.16.3 +DISTVERSION= 0.16.4 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org Modified: head/math/xtensor/distinfo ============================================================================== --- head/math/xtensor/distinfo Sat Jun 23 16:26:22 2018 (r473139) +++ head/math/xtensor/distinfo Sat Jun 23 16:40:32 2018 (r473140) @@ -1,5 +1,5 @@ -TIMESTAMP = 1528516496 -SHA256 (QuantStack-xtensor-0.16.3_GH0.tar.gz) = 42167bae716ee1a897e616b5b143dab9a58167abc6f19b12008add6632437ff7 -SIZE (QuantStack-xtensor-0.16.3_GH0.tar.gz) = 762095 +TIMESTAMP = 1529768354 +SHA256 (QuantStack-xtensor-0.16.4_GH0.tar.gz) = 9a0d9ec254383c1721473fb391e10f082eeceec4d0a7bf29fce9356c68949e74 +SIZE (QuantStack-xtensor-0.16.4_GH0.tar.gz) = 777228 SHA256 (QuantStack-xtl-0.4.9_GH0.tar.gz) = 587251bb7787b7dd05a2d432712bb2a7f05411155c61a9bc4a0f69c7b4e85dc3 SIZE (QuantStack-xtl-0.4.9_GH0.tar.gz) = 81044 Modified: head/math/xtensor/files/patch-CMakeLists.txt ============================================================================== --- head/math/xtensor/files/patch-CMakeLists.txt Sat Jun 23 16:26:22 2018 (r473139) +++ head/math/xtensor/files/patch-CMakeLists.txt Sat Jun 23 16:40:32 2018 (r473140) @@ -1,11 +1,11 @@ ---- CMakeLists.txt.orig 2018-05-16 08:49:00 UTC +--- CMakeLists.txt.orig 2018-06-23 15:40:12 UTC +++ CMakeLists.txt @@ -28,9 +28,9 @@ message(STATUS "Building xtensor v${${PR # Dependencies # ============ -find_package(xtl 0.4.9 REQUIRED) -+#find_package(xtl 0.4.1 REQUIRED) ++#find_package(xtl 0.4.9 REQUIRED) -message(STATUS "Found xtl: ${xtl_INCLUDE_DIRS}/xtl") +message(STATUS "Found xtl: xtl/include") Modified: head/math/xtensor/files/patch-test_CMakeLists.txt ============================================================================== --- head/math/xtensor/files/patch-test_CMakeLists.txt Sat Jun 23 16:26:22 2018 (r473139) +++ head/math/xtensor/files/patch-test_CMakeLists.txt Sat Jun 23 16:40:32 2018 (r473140) @@ -1,4 +1,4 @@ ---- test/CMakeLists.txt.orig 2018-03-13 17:07:19 UTC +--- test/CMakeLists.txt.orig 2018-06-22 15:12:37 UTC +++ test/CMakeLists.txt @@ -8,12 +8,13 @@ @@ -19,7 +19,7 @@ message(STATUS "Forcing tests build type to Release") set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE) -@@ -158,7 +158,7 @@ endforeach() +@@ -174,7 +175,7 @@ add_custom_target( foreach(filename IN LISTS XTENSOR_TESTS) string(REPLACE ".cpp" "" targetname ${filename}) add_executable(${targetname} ${COMMON_BASE} ${filename} ${XTENSOR_HEADERS}) @@ -28,7 +28,7 @@ if(DOWNLOAD_GTEST OR GTEST_SRC_DIR) add_dependencies(${targetname} gtest_main) endif() -@@ -169,7 +169,7 @@ add_executable(${XTENSOR_TARGET} ${COMMO +@@ -188,6 +189,6 @@ add_executable(${XTENSOR_TARGET} ${COMMO if(DOWNLOAD_GTEST OR GTEST_SRC_DIR) add_dependencies(${XTENSOR_TARGET} gtest_main) endif() @@ -36,4 +36,3 @@ +target_link_libraries(${XTENSOR_TARGET} ${GTEST_BOTH_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT}) add_custom_target(xtest COMMAND ${XTENSOR_TARGET} DEPENDS ${XTENSOR_TARGET}) - Modified: head/math/xtensor/pkg-plist ============================================================================== --- head/math/xtensor/pkg-plist Sat Jun 23 16:26:22 2018 (r473139) +++ head/math/xtensor/pkg-plist Sat Jun 23 16:40:32 2018 (r473140) @@ -33,6 +33,7 @@ include/xtensor/xoperation.hpp include/xtensor/xoptional.hpp include/xtensor/xoptional_assembly.hpp include/xtensor/xoptional_assembly_base.hpp +include/xtensor/xoptional_assembly_storage.hpp include/xtensor/xrandom.hpp include/xtensor/xreducer.hpp include/xtensor/xscalar.hpp @@ -42,6 +43,7 @@ include/xtensor/xslice.hpp include/xtensor/xsort.hpp include/xtensor/xstorage.hpp include/xtensor/xstrided_view.hpp +include/xtensor/xstrided_view_base.hpp include/xtensor/xstrides.hpp include/xtensor/xtensor.hpp include/xtensor/xtensor_config.hpp From owner-svn-ports-head@freebsd.org Sat Jun 23 16:42:01 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 146361027089; Sat, 23 Jun 2018 16:42:01 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA3E589F91; Sat, 23 Jun 2018 16:42:00 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 81FB912728; Sat, 23 Jun 2018 16:42:00 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NGg04Q002229; Sat, 23 Jun 2018 16:42:00 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NGfxmD002222; Sat, 23 Jun 2018 16:41:59 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201806231641.w5NGfxmD002222@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Sat, 23 Jun 2018 16:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473141 - head/net-mgmt/netdisco X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: head/net-mgmt/netdisco X-SVN-Commit-Revision: 473141 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 16:42:01 -0000 Author: krion Date: Sat Jun 23 16:41:59 2018 New Revision: 473141 URL: https://svnweb.freebsd.org/changeset/ports/473141 Log: Update to 2.039031 PR: 229251 Submitted by: maintainer Modified: head/net-mgmt/netdisco/Makefile head/net-mgmt/netdisco/distinfo head/net-mgmt/netdisco/pkg-plist Modified: head/net-mgmt/netdisco/Makefile ============================================================================== --- head/net-mgmt/netdisco/Makefile Sat Jun 23 16:40:32 2018 (r473140) +++ head/net-mgmt/netdisco/Makefile Sat Jun 23 16:41:59 2018 (r473141) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= netdisco -DISTVERSION= 2.039024 +DISTVERSION= 2.039031 CATEGORIES= net-mgmt perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:OLIVER Modified: head/net-mgmt/netdisco/distinfo ============================================================================== --- head/net-mgmt/netdisco/distinfo Sat Jun 23 16:40:32 2018 (r473140) +++ head/net-mgmt/netdisco/distinfo Sat Jun 23 16:41:59 2018 (r473141) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524778248 -SHA256 (App-Netdisco-2.039024.tar.gz) = e0e73e55520edf1c7aafe67a30ae7c3eea4f138cd85b093828058dac49e1efad -SIZE (App-Netdisco-2.039024.tar.gz) = 955689 +TIMESTAMP = 1529756936 +SHA256 (App-Netdisco-2.039031.tar.gz) = 3f7e367cea3dbdf8ca3e6a9ddda5e24406d3636b5b3b068b6a7d81477b0db483 +SIZE (App-Netdisco-2.039031.tar.gz) = 957401 Modified: head/net-mgmt/netdisco/pkg-plist ============================================================================== --- head/net-mgmt/netdisco/pkg-plist Sat Jun 23 16:40:32 2018 (r473140) +++ head/net-mgmt/netdisco/pkg-plist Sat Jun 23 16:41:59 2018 (r473141) @@ -90,6 +90,7 @@ bin/netdisco-web-fg %%SITE_PERL%%/App/Netdisco/DB/ResultSet/NodeNbt.pm %%SITE_PERL%%/App/Netdisco/DB/ResultSet/NodeWireless.pm %%SITE_PERL%%/App/Netdisco/DB/ResultSet/Subnet.pm +%%SITE_PERL%%/App/Netdisco/DB/SchemaVersioned.pm %%SITE_PERL%%/App/Netdisco/DB/SetOperations.pm %%SITE_PERL%%/App/Netdisco/Environment.pm %%SITE_PERL%%/App/Netdisco/GenericDB.pm @@ -360,6 +361,7 @@ bin/netdisco-web-fg %%SITE_PERL%%/auto/share/dist/App-Netdisco/schema_versions/App-Netdisco-DB-49-50-PostgreSQL.sql %%SITE_PERL%%/auto/share/dist/App-Netdisco/schema_versions/App-Netdisco-DB-50-51-PostgreSQL.sql %%SITE_PERL%%/auto/share/dist/App-Netdisco/schema_versions/App-Netdisco-DB-51-52-PostgreSQL.sql +%%SITE_PERL%%/auto/share/dist/App-Netdisco/schema_versions/App-Netdisco-DB-52-53-PostgreSQL.sql %%SITE_PERL%%/auto/share/dist/App-Netdisco/views/admintask.tt %%SITE_PERL%%/auto/share/dist/App-Netdisco/views/ajax/admintask/duplicatedevices.tt %%SITE_PERL%%/auto/share/dist/App-Netdisco/views/ajax/admintask/jobqueue.tt From owner-svn-ports-head@freebsd.org Sat Jun 23 16:48:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 085601027262; Sat, 23 Jun 2018 16:48:36 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A62CC8A224; Sat, 23 Jun 2018 16:48:35 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7B76D1275A; Sat, 23 Jun 2018 16:48:35 +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 w5NGmZkn004856; Sat, 23 Jun 2018 16:48:35 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NGmYjA004852; Sat, 23 Jun 2018 16:48:34 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201806231648.w5NGmYjA004852@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 23 Jun 2018 16:48:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473142 - head/devel/libuv X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/devel/libuv X-SVN-Commit-Revision: 473142 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 16:48:36 -0000 Author: thierry Date: Sat Jun 23 16:48:34 2018 New Revision: 473142 URL: https://svnweb.freebsd.org/changeset/ports/473142 Log: Upgrade to v1.21.0. Release notes at . Modified: head/devel/libuv/Makefile head/devel/libuv/distinfo head/devel/libuv/pkg-plist Modified: head/devel/libuv/Makefile ============================================================================== --- head/devel/libuv/Makefile Sat Jun 23 16:41:59 2018 (r473141) +++ head/devel/libuv/Makefile Sat Jun 23 16:48:34 2018 (r473142) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libuv -PORTVERSION= 1.20.3 +PORTVERSION= 1.21.0 DISTVERSIONPREFIX= v CATEGORIES= devel #MASTER_SITES= http://dist.libuv.org/dist/v${PORTVERSION}/ @@ -15,7 +15,7 @@ LICENSE_NAME= NODE LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -TEST_DEPENDS= gyp:devel/py-gyp \ +TEST_DEPENDS= gyp:devel/py-gyp \ gmake:devel/gmake USE_GITHUB= yes Modified: head/devel/libuv/distinfo ============================================================================== --- head/devel/libuv/distinfo Sat Jun 23 16:41:59 2018 (r473141) +++ head/devel/libuv/distinfo Sat Jun 23 16:48:34 2018 (r473142) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525785513 -SHA256 (libuv-libuv-v1.20.3_GH0.tar.gz) = 43a388687194a15d5f3cc1980d53c405020a3586254c620e5f3c4d241bb9da05 -SIZE (libuv-libuv-v1.20.3_GH0.tar.gz) = 1181741 +TIMESTAMP = 1529771607 +SHA256 (libuv-libuv-v1.21.0_GH0.tar.gz) = c6f53e4a75d2601db8efe0e837839969de7667d36569110429a0bc8f8229bf59 +SIZE (libuv-libuv-v1.21.0_GH0.tar.gz) = 1187827 Modified: head/devel/libuv/pkg-plist ============================================================================== --- head/devel/libuv/pkg-plist Sat Jun 23 16:41:59 2018 (r473141) +++ head/devel/libuv/pkg-plist Sat Jun 23 16:48:34 2018 (r473142) @@ -1,9 +1,9 @@ -include/uv-bsd.h -include/uv-errno.h -include/uv-threadpool.h -include/uv-unix.h -include/uv-version.h include/uv.h +include/uv/bsd.h +include/uv/errno.h +include/uv/threadpool.h +include/uv/unix.h +include/uv/version.h lib/libuv.a lib/libuv.so lib/libuv.so.1 From owner-svn-ports-head@freebsd.org Sat Jun 23 17:11:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6960B1027A4A; Sat, 23 Jun 2018 17:11:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1BE448ACE1; Sat, 23 Jun 2018 17:11:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2E1312ABF; Sat, 23 Jun 2018 17:11:11 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NHBBlB017408; Sat, 23 Jun 2018 17:11:11 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NHBBJG017405; Sat, 23 Jun 2018 17:11:11 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806231711.w5NHBBJG017405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 17:11:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473143 - head/japanese/libskk X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/japanese/libskk X-SVN-Commit-Revision: 473143 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 17:11:12 -0000 Author: yuri Date: Sat Jun 23 17:11:11 2018 New Revision: 473143 URL: https://svnweb.freebsd.org/changeset/ports/473143 Log: japanese/libskk: Update 1.0.1 -> 1.0.3 PR: 227039 Submitted by: Ryo ONODERA Approved by: hiroto.kagotani@gmail.com (maintauner timeout; 80 days) Modified: head/japanese/libskk/Makefile head/japanese/libskk/distinfo head/japanese/libskk/pkg-plist Modified: head/japanese/libskk/Makefile ============================================================================== --- head/japanese/libskk/Makefile Sat Jun 23 16:48:34 2018 (r473142) +++ head/japanese/libskk/Makefile Sat Jun 23 17:11:11 2018 (r473143) @@ -2,30 +2,28 @@ # $FreeBSD$ PORTNAME= libskk -PORTVERSION= 1.0.1 -PORTREVISION= 2 +DISTVERSION= 1.0.3 CATEGORIES= japanese -MASTER_SITES= https://bitbucket.org/libskk/libskk/downloads/ MAINTAINER= hiroto.kagotani@gmail.com COMMENT= Library to deal with Japanese Kana-to-Kanji conversion method LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= valac:lang/vala \ p5-XML-Parser>=0:textproc/p5-XML-Parser -LIB_DEPENDS= libgee.so:devel/libgee06 \ +LIB_DEPENDS= libgee-0.8.so:devel/libgee \ libjson-glib-1.0.so:devel/json-glib +USES= autoreconf gmake libtool pathfix pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= ueno GNU_CONFIGURE= yes -INSTALL_TARGET= install-strip -USES= gmake libtool pathfix pkgconfig USE_GNOME= intlhack introspection:build USE_LDCONFIG= yes +INSTALL_TARGET= install-strip -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib - PORTDOCS= ChangeLog NEWS README OPTIONS_DEFINE= DOCS NLS @@ -35,7 +33,7 @@ NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext NLS_USES_OFF= gettext-tools -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} Modified: head/japanese/libskk/distinfo ============================================================================== --- head/japanese/libskk/distinfo Sat Jun 23 16:48:34 2018 (r473142) +++ head/japanese/libskk/distinfo Sat Jun 23 17:11:11 2018 (r473143) @@ -1,2 +1,3 @@ -SHA256 (libskk-1.0.1.tar.gz) = 37bb7859deffd038319a8bc7f9c7d3b207d7dce6afea5e3da519381d7a05388c -SIZE (libskk-1.0.1.tar.gz) = 860453 +TIMESTAMP = 1522998074 +SHA256 (ueno-libskk-1.0.3_GH0.tar.gz) = 9c1fe5f426608cf81dc6db11741c7e07d3cc6264b225455aff361ed408df3887 +SIZE (ueno-libskk-1.0.3_GH0.tar.gz) = 186070 Modified: head/japanese/libskk/pkg-plist ============================================================================== --- head/japanese/libskk/pkg-plist Sat Jun 23 16:48:34 2018 (r473142) +++ head/japanese/libskk/pkg-plist Sat Jun 23 17:11:11 2018 (r473143) @@ -16,6 +16,14 @@ share/gir-1.0/Skk-1.0.gir %%DATADIR%%/rules/act/keymap/wide-latin.json %%DATADIR%%/rules/act/metadata.json %%DATADIR%%/rules/act/rom-kana/default.json +%%DATADIR%%/rules/act09/keymap/default.json +%%DATADIR%%/rules/act09/keymap/hankaku-katakana.json +%%DATADIR%%/rules/act09/keymap/hiragana.json +%%DATADIR%%/rules/act09/keymap/katakana.json +%%DATADIR%%/rules/act09/keymap/latin.json +%%DATADIR%%/rules/act09/keymap/wide-latin.json +%%DATADIR%%/rules/act09/metadata.json +%%DATADIR%%/rules/act09/rom-kana/default.json %%DATADIR%%/rules/azik/keymap/common.json %%DATADIR%%/rules/azik/keymap/default.json %%DATADIR%%/rules/azik/keymap/hankaku-katakana.json @@ -33,6 +41,7 @@ share/gir-1.0/Skk-1.0.gir %%DATADIR%%/rules/default/keymap/wide-latin.json %%DATADIR%%/rules/default/metadata.json %%DATADIR%%/rules/default/rom-kana/default.json +%%DATADIR%%/rules/kzik/keymap/common.json %%DATADIR%%/rules/kzik/keymap/default.json %%DATADIR%%/rules/kzik/keymap/hankaku-katakana.json %%DATADIR%%/rules/kzik/keymap/hiragana.json From owner-svn-ports-head@freebsd.org Sat Jun 23 17:25:32 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12CD91000086; Sat, 23 Jun 2018 17:25:32 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B2CC38B6A2; Sat, 23 Jun 2018 17:25:31 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91FCE12DC0; Sat, 23 Jun 2018 17:25:31 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NHPVQe025059; Sat, 23 Jun 2018 17:25:31 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NHPVXP025057; Sat, 23 Jun 2018 17:25:31 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201806231725.w5NHPVXP025057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Sat, 23 Jun 2018 17:25:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473144 - head/japanese/migemo.el X-SVN-Group: ports-head X-SVN-Commit-Author: nobutaka X-SVN-Commit-Paths: head/japanese/migemo.el X-SVN-Commit-Revision: 473144 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 17:25:32 -0000 Author: nobutaka Date: Sat Jun 23 17:25:30 2018 New Revision: 473144 URL: https://svnweb.freebsd.org/changeset/ports/473144 Log: Update to the latest snapshot on 2016/09/24. Modified: head/japanese/migemo.el/Makefile head/japanese/migemo.el/distinfo Modified: head/japanese/migemo.el/Makefile ============================================================================== --- head/japanese/migemo.el/Makefile Sat Jun 23 17:11:11 2018 (r473143) +++ head/japanese/migemo.el/Makefile Sat Jun 23 17:25:30 2018 (r473144) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= migemo.el -PORTVERSION= 1.9.1 -PORTREVISION= 3 +PORTVERSION= 1.9.1.20160924 CATEGORIES= japanese elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} @@ -18,6 +17,7 @@ USES= emacs USE_GITHUB= yes GH_ACCOUNT= emacs-jp GH_PROJECT= migemo +GH_TAGNAME= e4744ef CONFLICTS= ja-migemo-emacs NO_ARCH= yes Modified: head/japanese/migemo.el/distinfo ============================================================================== --- head/japanese/migemo.el/distinfo Sat Jun 23 17:11:11 2018 (r473143) +++ head/japanese/migemo.el/distinfo Sat Jun 23 17:25:30 2018 (r473144) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464776244 -SHA256 (emacs-jp-migemo-1.9.1_GH0.tar.gz) = e366a89587e83142fa55dfd0edd6aa743105172f78d5891ad4b8bbe809288915 -SIZE (emacs-jp-migemo-1.9.1_GH0.tar.gz) = 59468 +TIMESTAMP = 1529769662 +SHA256 (emacs-jp-migemo-1.9.1.20160924-e4744ef_GH0.tar.gz) = 06c99b90ad609673dd4d794f8ac9ec5b9da9ead6a966a0d73a3003099aab549a +SIZE (emacs-jp-migemo-1.9.1.20160924-e4744ef_GH0.tar.gz) = 59639 From owner-svn-ports-head@freebsd.org Sat Jun 23 17:32:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8A1A100041B; Sat, 23 Jun 2018 17:32:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68EA18BBAD; Sat, 23 Jun 2018 17:32:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2FDD112F4C; Sat, 23 Jun 2018 17:32:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NHWakG030090; Sat, 23 Jun 2018 17:32:36 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NHWaw6030087; Sat, 23 Jun 2018 17:32:36 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806231732.w5NHWaw6030087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 17:32:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473145 - head/japanese/ibus-skk X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/japanese/ibus-skk X-SVN-Commit-Revision: 473145 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 17:32:38 -0000 Author: yuri Date: Sat Jun 23 17:32:36 2018 New Revision: 473145 URL: https://svnweb.freebsd.org/changeset/ports/473145 Log: japanese/ibus-skk: Update 1.4.1 -> 1.4.3 Port changes: * Add LICENSE/LICENSE_FILE * Add to RUN_DEPENDS * Add USE_GNOME * Add BUILD_DEPENDS for vala * Update the 'preferences' patch PR: 227283 Submitted by: Ryo ONODERA Modified: head/japanese/ibus-skk/Makefile head/japanese/ibus-skk/distinfo head/japanese/ibus-skk/pkg-plist Modified: head/japanese/ibus-skk/Makefile ============================================================================== --- head/japanese/ibus-skk/Makefile Sat Jun 23 17:25:30 2018 (r473144) +++ head/japanese/ibus-skk/Makefile Sat Jun 23 17:32:36 2018 (r473145) @@ -2,31 +2,35 @@ # $FreeBSD$ PORTNAME= ibus-skk -PORTVERSION= 1.4.1 -PORTREVISION= 4 +DISTVERSIONPREFIX= ibus-skk- +DISTVERSION= 1.4.3 CATEGORIES= japanese -MASTER_SITES= GHC MAINTAINER= ports@FreeBSD.org COMMENT= Japanese SKK input engine for IBus +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= valac:lang/vala RUN_DEPENDS= ${LOCALBASE}/share/skk/SKK-JISYO.L:japanese/skk-jisyo -LIB_DEPENDS= libskk.so:japanese/libskk \ - libibus-1.0.so:textproc/ibus +LIB_DEPENDS= libgee-0.8.so:devel/libgee \ + libibus-1.0.so:textproc/ibus \ + libskk.so:japanese/libskk -USES= gettext gmake pkgconfig python -USE_GNOME= intltool +USES= autoreconf gettext gmake libtool pkgconfig python +GNU_CONFIGURE= yes +CONFIGURE_ENV= DATADIRNAME=share USE_GITHUB= yes GH_ACCOUNT= ueno -GNU_CONFIGURE= yes -CONFIGURE_ENV+= DATADIRNAME=share +USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool pango CPPFLAGS+= -I${LOCALBASE}/include OPTIONS_DEFINE= NLS post-patch: - @${REINPLACE_CMD} -e 's|/usr/share/skk/SKK-JISYO.L|${LOCALBASE}/share/skk/SKK-JISYO.L|' ${WRKSRC}/src/preferences.c + @${REINPLACE_CMD} -e 's|/usr/share/skk/SKK-JISYO.L|${LOCALBASE}/share/skk/SKK-JISYO.L|' ${WRKSRC}/src/preferences.vala .include Modified: head/japanese/ibus-skk/distinfo ============================================================================== --- head/japanese/ibus-skk/distinfo Sat Jun 23 17:25:30 2018 (r473144) +++ head/japanese/ibus-skk/distinfo Sat Jun 23 17:32:36 2018 (r473145) @@ -1,2 +1,3 @@ -SHA256 (ibus-skk-1.4.1.tar.gz) = 368b114a07f03d5d91cf333215f9429995efbbea73ee7efe2e37fb3bbc6d81de -SIZE (ibus-skk-1.4.1.tar.gz) = 478018 +TIMESTAMP = 1522997396 +SHA256 (ueno-ibus-skk-ibus-skk-1.4.3_GH0.tar.gz) = a5eb5fd47072dc4854a241bfa3d2394723839aea3a3474ac66fff59171e91e09 +SIZE (ueno-ibus-skk-ibus-skk-1.4.3_GH0.tar.gz) = 54844 Modified: head/japanese/ibus-skk/pkg-plist ============================================================================== --- head/japanese/ibus-skk/pkg-plist Sat Jun 23 17:25:30 2018 (r473144) +++ head/japanese/ibus-skk/pkg-plist Sat Jun 23 17:32:36 2018 (r473145) @@ -3,4 +3,5 @@ libexec/ibus-setup-skk %%NLS%%share/locale/ja/LC_MESSAGES/ibus-skk.mo %%DATADIR%%/setup/ibus-skk-preferences.ui %%DATADIR%%/icons/ibus-skk.svg +share/applications/ibus-setup-skk.desktop share/ibus/component/skk.xml From owner-svn-ports-head@freebsd.org Sat Jun 23 17:48:53 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D193F10007F1; Sat, 23 Jun 2018 17:48:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 79F208C094; Sat, 23 Jun 2018 17:48:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 57705130F6; Sat, 23 Jun 2018 17:48:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NHmrBc035646; Sat, 23 Jun 2018 17:48:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NHmqJd035644; Sat, 23 Jun 2018 17:48:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806231748.w5NHmqJd035644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 17:48:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473146 - head/textproc/flex X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/textproc/flex X-SVN-Commit-Revision: 473146 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 17:48:54 -0000 Author: yuri Date: Sat Jun 23 17:48:52 2018 New Revision: 473146 URL: https://svnweb.freebsd.org/changeset/ports/473146 Log: textproc/flex: Update 2.6.1 -> 2.6.4 Changelog: https://github.com/westes/flex/releases/tag/v2.6.4 PR: 226546 Approved by: johans@FreeBSD.org (maintainer timeout; 103 days) Modified: head/textproc/flex/Makefile head/textproc/flex/distinfo head/textproc/flex/pkg-plist Modified: head/textproc/flex/Makefile ============================================================================== --- head/textproc/flex/Makefile Sat Jun 23 17:32:36 2018 (r473145) +++ head/textproc/flex/Makefile Sat Jun 23 17:48:52 2018 (r473146) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= flex -PORTVERSION= 2.6.1 +PORTVERSION= 2.6.4 CATEGORIES= textproc MASTER_SITES= https://github.com/westes/flex/releases/download/v${PORTVERSION}/ @@ -15,7 +15,7 @@ BUILD_DEPENDS= help2man:misc/help2man \ gm4:devel/m4 RUN_DEPENDS= gm4:devel/m4 -USES= bison gmake libtool makeinfo tar:xz +USES= bison gmake libtool makeinfo GNU_CONFIGURE= yes # install flex header to its own dir to avoid conflict with system flex. CONFIGURE_ARGS= --includedir=${PREFIX}/include/flex --disable-shared Modified: head/textproc/flex/distinfo ============================================================================== --- head/textproc/flex/distinfo Sat Jun 23 17:32:36 2018 (r473145) +++ head/textproc/flex/distinfo Sat Jun 23 17:48:52 2018 (r473146) @@ -1,2 +1,3 @@ -SHA256 (flex-2.6.1.tar.xz) = 2c7a412c1640e094cb058d9b2fe39d450186e09574bebb7aa28f783e3799103f -SIZE (flex-2.6.1.tar.xz) = 835048 +TIMESTAMP = 1529775608 +SHA256 (flex-2.6.4.tar.gz) = e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995 +SIZE (flex-2.6.4.tar.gz) = 1419096 Modified: head/textproc/flex/pkg-plist ============================================================================== --- head/textproc/flex/pkg-plist Sat Jun 23 17:32:36 2018 (r473145) +++ head/textproc/flex/pkg-plist Sat Jun 23 17:48:52 2018 (r473146) @@ -2,7 +2,6 @@ bin/flex bin/flex++ include/flex/FlexLexer.h lib/libfl.a -lib/libfl_pic.a man/man1/flex.1.gz %%NLS%%share/locale/ca/LC_MESSAGES/flex.mo %%NLS%%share/locale/da/LC_MESSAGES/flex.mo From owner-svn-ports-head@freebsd.org Sat Jun 23 18:09:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53FC21000E5D; Sat, 23 Jun 2018 18:09:56 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 013028C899; Sat, 23 Jun 2018 18:09:56 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D70BA1342B; Sat, 23 Jun 2018 18:09:55 +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 w5NI9teJ045899; Sat, 23 Jun 2018 18:09:55 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NI9tYn045896; Sat, 23 Jun 2018 18:09:55 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201806231809.w5NI9tYn045896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 23 Jun 2018 18:09:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473147 - head/www/rt42 X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/www/rt42 X-SVN-Commit-Revision: 473147 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 18:09:56 -0000 Author: matthew Date: Sat Jun 23 18:09:54 2018 New Revision: 473147 URL: https://svnweb.freebsd.org/changeset/ports/473147 Log: Update to 4.2.15 ChangeLog: https://docs.bestpractical.com/release-notes/rt/4.2.15 Modified: head/www/rt42/Makefile head/www/rt42/distinfo head/www/rt42/pkg-plist Modified: head/www/rt42/Makefile ============================================================================== --- head/www/rt42/Makefile Sat Jun 23 17:48:52 2018 (r473146) +++ head/www/rt42/Makefile Sat Jun 23 18:09:54 2018 (r473147) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rt -DISTVERSION= 4.2.14 +DISTVERSION= 4.2.15 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 42 Modified: head/www/rt42/distinfo ============================================================================== --- head/www/rt42/distinfo Sat Jun 23 17:48:52 2018 (r473146) +++ head/www/rt42/distinfo Sat Jun 23 18:09:54 2018 (r473147) @@ -1,3 +1,3 @@ -TIMESTAMP = 1501153692 -SHA256 (rt-4.2.14.tar.gz) = b3ee51d284001fe6938f879754a03866073aa48992fdd1709b1a54a1e6c6e614 -SIZE (rt-4.2.14.tar.gz) = 7715286 +TIMESTAMP = 1529748202 +SHA256 (rt-4.2.15.tar.gz) = 3752a12eff67c640e577d2b5feda01c9f07e3b2e227eabf50089086e98038bba +SIZE (rt-4.2.15.tar.gz) = 7780692 Modified: head/www/rt42/pkg-plist ============================================================================== --- head/www/rt42/pkg-plist Sat Jun 23 17:48:52 2018 (r473146) +++ head/www/rt42/pkg-plist Sat Jun 23 18:09:54 2018 (r473147) @@ -98,6 +98,7 @@ bin/rt-mailgate %%SITE_PERL%%/RT/Groups.pm %%SITE_PERL%%/RT/Handle.pm %%SITE_PERL%%/RT/I18N.pm +%%SITE_PERL%%/RT/I18N/Extract.pm %%SITE_PERL%%/RT/I18N/cs.pm %%SITE_PERL%%/RT/I18N/de.pm %%SITE_PERL%%/RT/I18N/fr.pm From owner-svn-ports-head@freebsd.org Sat Jun 23 18:21:43 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 958B310018FF; Sat, 23 Jun 2018 18:21:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46CD78D29C; Sat, 23 Jun 2018 18:21:43 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2872F1371B; Sat, 23 Jun 2018 18:21:43 +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 w5NILhXX054128; Sat, 23 Jun 2018 18:21:43 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NILgr4054126; Sat, 23 Jun 2018 18:21:42 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201806231821.w5NILgr4054126@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sat, 23 Jun 2018 18:21:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473148 - head/devel/awless X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/awless X-SVN-Commit-Revision: 473148 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 18:21:43 -0000 Author: joneum Date: Sat Jun 23 18:21:42 2018 New Revision: 473148 URL: https://svnweb.freebsd.org/changeset/ports/473148 Log: Update to 0.1.11 Changelog: https://github.com/wallix/awless/releases/tag/v0.1.11 PR: 229252 Submitted by: Dmitri Goutnik (maintainer) Modified: head/devel/awless/Makefile head/devel/awless/distinfo Modified: head/devel/awless/Makefile ============================================================================== --- head/devel/awless/Makefile Sat Jun 23 18:09:54 2018 (r473147) +++ head/devel/awless/Makefile Sat Jun 23 18:21:42 2018 (r473148) @@ -2,7 +2,7 @@ PORTNAME= awless DISTVERSIONPREFIX= v -DISTVERSION= 0.1.10 +DISTVERSION= 0.1.11 CATEGORIES= devel MAINTAINER= dg@syrec.org Modified: head/devel/awless/distinfo ============================================================================== --- head/devel/awless/distinfo Sat Jun 23 18:09:54 2018 (r473147) +++ head/devel/awless/distinfo Sat Jun 23 18:21:42 2018 (r473148) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523746222 -SHA256 (wallix-awless-v0.1.10_GH0.tar.gz) = d2e9075e1f16055796a699d165ff2b2dbc1b2fcf408bb644497553e3108a2cf3 -SIZE (wallix-awless-v0.1.10_GH0.tar.gz) = 13101154 +TIMESTAMP = 1529777973 +SHA256 (wallix-awless-v0.1.11_GH0.tar.gz) = 1a78636face8753cb983a5e4c1e3bfc9e1940e7eb932aa01fe2cbded46fd4292 +SIZE (wallix-awless-v0.1.11_GH0.tar.gz) = 11725608 From owner-svn-ports-head@freebsd.org Sat Jun 23 18:41:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D885A100203B; Sat, 23 Jun 2018 18:41:30 +0000 (UTC) (envelope-from tcberner@gmail.com) Received: from mail-qt0-f179.google.com (mail-qt0-f179.google.com [209.85.216.179]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A6928DBD4; Sat, 23 Jun 2018 18:41:30 +0000 (UTC) (envelope-from tcberner@gmail.com) Received: by mail-qt0-f179.google.com with SMTP id x10-v6so2426966qto.1; Sat, 23 Jun 2018 11:41:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=VdgnfmZGmoDgZQFwY+kmUHpc1npFnqTxiSwqnoK4ZEo=; b=G+UqepXOilBqQRyyvBxxwSRmlk9xJSHnk+KrgSt09ONzVUqPlMpPx/9eJDch/FD8d4 ZSGE+KmVGHCUlh2llYJ/T4UrhXeoo7fV+Qty6uLP8x0Cc5/1yUe2A6hl/8fbds2INjD0 DKnm2ZX/ihw2h2tbL1guEVqru80AMJN4qp6NWQi3o5cexmFoaL+SxfYkGnHMv/qb1YBH 7n4HE+e1dq1xLfYk5wLo/+KrMl4oYgLbALxvFvuOK6Mb44DlOm74hINyhNM2Kv+PKGT5 IhasvH/p6zVoWxw1OTyRn1fKqXsdBh9xn3as/dj0kDhMTaCs7/W8r/leyQ18G0I5vgna sNBg== X-Gm-Message-State: APt69E0L7D6mszC5EkXs39s/PwZUED3cj7YGmWNw/cxDHLdQS4T1DmKu UdrYHiDkI9IiVb7i2jfhsSJ+36xo X-Google-Smtp-Source: ADUXVKJP3fALo9X6bfuJkTYuvmiZQhUrlojsgY0Qms3IHH+aoKO0//vKwznsZJUWma/aobqnKpJIVg== X-Received: by 2002:ac8:2ee9:: with SMTP id i38-v6mr5472438qta.159.1529778967236; Sat, 23 Jun 2018 11:36:07 -0700 (PDT) Received: from mail-qt0-f178.google.com (mail-qt0-f178.google.com. [209.85.216.178]) by smtp.gmail.com with ESMTPSA id 43-v6sm3918066qtx.12.2018.06.23.11.36.06 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 23 Jun 2018 11:36:07 -0700 (PDT) Received: by mail-qt0-f178.google.com with SMTP id h5-v6so8754219qtm.13; Sat, 23 Jun 2018 11:36:06 -0700 (PDT) X-Received: by 2002:a0c:9b93:: with SMTP id o19-v6mr5762952qve.89.1529778966591; Sat, 23 Jun 2018 11:36:06 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:ac8:3935:0:0:0:0:0 with HTTP; Sat, 23 Jun 2018 11:36:06 -0700 (PDT) In-Reply-To: <201806231648.w5NGmYjA004852@repo.freebsd.org> References: <201806231648.w5NGmYjA004852@repo.freebsd.org> From: "Tobias C. Berner" Date: Sat, 23 Jun 2018 20:36:06 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r473142 - head/devel/libuv To: Thierry Thomas Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 18:41:31 -0000 Hi there This breaks devel/cmake as reported in 229255. mfg Tobias On 23 June 2018 at 18:48, Thierry Thomas wrote: > Author: thierry > Date: Sat Jun 23 16:48:34 2018 > New Revision: 473142 > URL: https://svnweb.freebsd.org/changeset/ports/473142 > > Log: > Upgrade to v1.21.0. > > Release notes at . > > Modified: > head/devel/libuv/Makefile > head/devel/libuv/distinfo > head/devel/libuv/pkg-plist > > Modified: head/devel/libuv/Makefile > ============================================================ > ================== > --- head/devel/libuv/Makefile Sat Jun 23 16:41:59 2018 (r473141) > +++ head/devel/libuv/Makefile Sat Jun 23 16:48:34 2018 (r473142) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= libuv > -PORTVERSION= 1.20.3 > +PORTVERSION= 1.21.0 > DISTVERSIONPREFIX= v > CATEGORIES= devel > #MASTER_SITES= http://dist.libuv.org/dist/v${PORTVERSION}/ > @@ -15,7 +15,7 @@ LICENSE_NAME= NODE > LICENSE_FILE= ${WRKSRC}/LICENSE > LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept > > -TEST_DEPENDS= gyp:devel/py-gyp \ > +TEST_DEPENDS= gyp:devel/py-gyp \ > gmake:devel/gmake > > USE_GITHUB= yes > > Modified: head/devel/libuv/distinfo > ============================================================ > ================== > --- head/devel/libuv/distinfo Sat Jun 23 16:41:59 2018 (r473141) > +++ head/devel/libuv/distinfo Sat Jun 23 16:48:34 2018 (r473142) > @@ -1,3 +1,3 @@ > -TIMESTAMP = 1525785513 > -SHA256 (libuv-libuv-v1.20.3_GH0.tar.gz) = 43a388687194a15d5f3cc1980d53c4 > 05020a3586254c620e5f3c4d241bb9da05 > -SIZE (libuv-libuv-v1.20.3_GH0.tar.gz) = 1181741 > +TIMESTAMP = 1529771607 > +SHA256 (libuv-libuv-v1.21.0_GH0.tar.gz) = c6f53e4a75d2601db8efe0e8378399 > 69de7667d36569110429a0bc8f8229bf59 > +SIZE (libuv-libuv-v1.21.0_GH0.tar.gz) = 1187827 > > Modified: head/devel/libuv/pkg-plist > ============================================================ > ================== > --- head/devel/libuv/pkg-plist Sat Jun 23 16:41:59 2018 (r473141) > +++ head/devel/libuv/pkg-plist Sat Jun 23 16:48:34 2018 (r473142) > @@ -1,9 +1,9 @@ > -include/uv-bsd.h > -include/uv-errno.h > -include/uv-threadpool.h > -include/uv-unix.h > -include/uv-version.h > include/uv.h > +include/uv/bsd.h > +include/uv/errno.h > +include/uv/threadpool.h > +include/uv/unix.h > +include/uv/version.h > lib/libuv.a > lib/libuv.so > lib/libuv.so.1 > > From owner-svn-ports-head@freebsd.org Sat Jun 23 18:51:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41F1A1002518; Sat, 23 Jun 2018 18:51:49 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E831C8DFC3; Sat, 23 Jun 2018 18:51:48 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C94FF13C02; Sat, 23 Jun 2018 18:51:48 +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 w5NIpmHr070008; Sat, 23 Jun 2018 18:51:48 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NIpmNu070007; Sat, 23 Jun 2018 18:51:48 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201806231851.w5NIpmNu070007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 23 Jun 2018 18:51:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473149 - head/devel/cmake/files X-SVN-Group: ports-head X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: head/devel/cmake/files X-SVN-Commit-Revision: 473149 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 18:51:49 -0000 Author: rakuco Date: Sat Jun 23 18:51:48 2018 New Revision: 473149 URL: https://svnweb.freebsd.org/changeset/ports/473149 Log: Add a patch to unbreak `make configure' with libuv 1.21.0. r473142 updated libuv and broke CMake. The new release moved internal headers to the uv/ directory, and CMake needs to be taught about it. Not bumping PORTREVISION as FindLibUV.cmake is not installed and no builds with the new libuv could have worked before. PR: 229255 Added: head/devel/cmake/files/patch-Source_Modules_FindLibUV.cmake (contents, props changed) Added: head/devel/cmake/files/patch-Source_Modules_FindLibUV.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cmake/files/patch-Source_Modules_FindLibUV.cmake Sat Jun 23 18:51:48 2018 (r473149) @@ -0,0 +1,24 @@ +Sent upstream: https://gitlab.kitware.com/cmake/cmake/merge_requests/2169 + +commit 6ad09a5d14ef497cca653d303c3849f83aa0aca3 +Author: Raphael Kubo da Costa +Date: Sat Jun 23 20:30:07 2018 +0200 + + FindLibUV: Also check uv/version.h for version detection + + Starting with libuv 1.21.0, libuv's headers were moved into a uv/ directory. + Make FindLibUV aware of the file's new location for configuration to work. + + Upstream change: https://github.com/libuv/libuv/pull/1429 + +--- Source/Modules/FindLibUV.cmake ++++ Source/Modules/FindLibUV.cmake +@@ -63,6 +63,8 @@ mark_as_advanced(LibUV_INCLUDE_DIR) + set(_LibUV_H_REGEX "#[ \t]*define[ \t]+UV_VERSION_(MAJOR|MINOR|PATCH)[ \t]+[0-9]+") + if(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv-version.h") + file(STRINGS "${LibUV_INCLUDE_DIR}/uv-version.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") ++elseif(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv/version.h") ++ file(STRINGS "${LibUV_INCLUDE_DIR}/uv/version.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") + elseif(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv.h") + file(STRINGS "${LibUV_INCLUDE_DIR}/uv.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") + else() From owner-svn-ports-head@freebsd.org Sat Jun 23 19:01:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EF311002A64; Sat, 23 Jun 2018 19:01:51 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C96158E864; Sat, 23 Jun 2018 19:01:50 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAE1613CE5; Sat, 23 Jun 2018 19:01:50 +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 w5NJ1o4g072354; Sat, 23 Jun 2018 19:01:50 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJ1o4W072352; Sat, 23 Jun 2018 19:01:50 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201806231901.w5NJ1o4W072352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 23 Jun 2018 19:01:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473150 - head/math/octave-forge-image X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: head/math/octave-forge-image X-SVN-Commit-Revision: 473150 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:01:51 -0000 Author: stephen Date: Sat Jun 23 19:01:49 2018 New Revision: 473150 URL: https://svnweb.freebsd.org/changeset/ports/473150 Log: - Update to 2.8.0. Modified: head/math/octave-forge-image/Makefile head/math/octave-forge-image/distinfo Modified: head/math/octave-forge-image/Makefile ============================================================================== --- head/math/octave-forge-image/Makefile Sat Jun 23 18:51:48 2018 (r473149) +++ head/math/octave-forge-image/Makefile Sat Jun 23 19:01:49 2018 (r473150) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-image -PORTVERSION= 2.6.2 -PORTREVISION= 2 +PORTVERSION= 2.8.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -14,16 +13,15 @@ LICENSE_NAME= Many different licenses LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN= does not build with octave 4.4.0 - # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src -USES= compiler:c++0x +USES= compiler:c++14-lang GNU_CONFIGURE= yes +CXXFLAGS+= -fPIC .include "${.CURDIR}/../../Mk/bsd.octave.mk" Modified: head/math/octave-forge-image/distinfo ============================================================================== --- head/math/octave-forge-image/distinfo Sat Jun 23 18:51:48 2018 (r473149) +++ head/math/octave-forge-image/distinfo Sat Jun 23 19:01:49 2018 (r473150) @@ -1,3 +1,3 @@ -TIMESTAMP = 1510427462 -SHA256 (octave-forge/image-2.6.2.tar.gz) = fe01e0683dd55de985662bd86eefcf4cd0dc46c53050fd15e65d17370b2833d9 -SIZE (octave-forge/image-2.6.2.tar.gz) = 369553 +TIMESTAMP = 1529780012 +SHA256 (octave-forge/image-2.8.0.tar.gz) = 977be1fe7cf395aab556a95091895a690ecf074f4c32d73fc4a0cd12ca640302 +SIZE (octave-forge/image-2.8.0.tar.gz) = 397368 From owner-svn-ports-head@freebsd.org Sat Jun 23 19:15:20 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E94B100315F; Sat, 23 Jun 2018 19:15:20 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 395CA8F0B2; Sat, 23 Jun 2018 19:15:20 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 18D2113FBB; Sat, 23 Jun 2018 19:15:20 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NJFJLR081845; Sat, 23 Jun 2018 19:15:19 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJFJwc081841; Sat, 23 Jun 2018 19:15:19 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806231915.w5NJFJwc081841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Sat, 23 Jun 2018 19:15:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473152 - head/graphics/ampasACES-container X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/graphics/ampasACES-container X-SVN-Commit-Revision: 473152 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:15:20 -0000 Author: adridg Date: Sat Jun 23 19:15:19 2018 New Revision: 473152 URL: https://svnweb.freebsd.org/changeset/ports/473152 Log: Update graphics/ampasACES-container to the actual 1.0.2 version. Previous commit updated PORTREVISION, but left GH_TAGNAME the same, leading to a port version called 1.0.2, compiling the 1.0.1 code. See, e.g., https://github.com/ampas/aces_container/releases Modified: head/graphics/ampasACES-container/Makefile head/graphics/ampasACES-container/distinfo Modified: head/graphics/ampasACES-container/Makefile ============================================================================== --- head/graphics/ampasACES-container/Makefile Sat Jun 23 19:08:05 2018 (r473151) +++ head/graphics/ampasACES-container/Makefile Sat Jun 23 19:15:19 2018 (r473152) @@ -3,6 +3,7 @@ PORTNAME= ampasACES-container PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= graphics devel MAINTAINER= ports@FreeBSD.org @@ -16,7 +17,7 @@ LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-se USE_GITHUB= yes GH_ACCOUNT= ampas GH_PROJECT= aces_container -GH_TAGNAME= 4c7375b +GH_TAGNAME= 7a4e21e USES= cmake pathfix pkgconfig USE_LDCONFIG= yes Modified: head/graphics/ampasACES-container/distinfo ============================================================================== --- head/graphics/ampasACES-container/distinfo Sat Jun 23 19:08:05 2018 (r473151) +++ head/graphics/ampasACES-container/distinfo Sat Jun 23 19:15:19 2018 (r473152) @@ -1,3 +1,3 @@ -TIMESTAMP = 1509803518 -SHA256 (ampas-aces_container-1.0.2-4c7375b_GH0.tar.gz) = 09141aa406536f4ba40c8817d68d3173a215dd85be0035ab13f65f87ed11be5b -SIZE (ampas-aces_container-1.0.2-4c7375b_GH0.tar.gz) = 26526 +TIMESTAMP = 1529780817 +SHA256 (ampas-aces_container-1.0.2-7a4e21e_GH0.tar.gz) = 2560bf54d307a026456053bad747fb5e0643004c887fe7751246acb4055ba096 +SIZE (ampas-aces_container-1.0.2-7a4e21e_GH0.tar.gz) = 27112 From owner-svn-ports-head@freebsd.org Sat Jun 23 19:15:34 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AE681003193; Sat, 23 Jun 2018 19:15:34 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E7B58F18D; Sat, 23 Jun 2018 19:15:34 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F32BE13FBC; Sat, 23 Jun 2018 19:15:33 +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 w5NJFX3i082004; Sat, 23 Jun 2018 19:15:33 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJFXRr082001; Sat, 23 Jun 2018 19:15:33 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201806231915.w5NJFXRr082001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 23 Jun 2018 19:15:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473153 - in head/math/octave-forge-sparsersb: . files X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: in head/math/octave-forge-sparsersb: . files X-SVN-Commit-Revision: 473153 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:15:34 -0000 Author: stephen Date: Sat Jun 23 19:15:33 2018 New Revision: 473153 URL: https://svnweb.freebsd.org/changeset/ports/473153 Log: - Update to 1.0.6. - Unbreak. Added: head/math/octave-forge-sparsersb/files/ head/math/octave-forge-sparsersb/files/patch-sparsersb.cc (contents, props changed) 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 Sat Jun 23 19:15:19 2018 (r473152) +++ head/math/octave-forge-sparsersb/Makefile Sat Jun 23 19:15:33 2018 (r473153) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-sparsersb -PORTVERSION= 1.0.5 -PORTREVISION= 4 +PORTVERSION= 1.0.6 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -11,8 +10,6 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME} LICENSE= GPLv3 LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING - -BROKEN= does not build with octave version >= 4.4.0 LIB_DEPENDS= librsb.so:math/librsb Modified: head/math/octave-forge-sparsersb/distinfo ============================================================================== --- head/math/octave-forge-sparsersb/distinfo Sat Jun 23 19:15:19 2018 (r473152) +++ head/math/octave-forge-sparsersb/distinfo Sat Jun 23 19:15:33 2018 (r473153) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497931798 -SHA256 (octave-forge/sparsersb-1.0.5.tar.gz) = 888c1f4f6ebf8fb6e09c1bf2ae647dc902bee860d91ecb0c82ef875d16412d17 -SIZE (octave-forge/sparsersb-1.0.5.tar.gz) = 90522 +TIMESTAMP = 1529780613 +SHA256 (octave-forge/sparsersb-1.0.6.tar.gz) = 56fd7baf282c3e16096560f0d51e3597070941b3ef7f98509df8777e1418d7a3 +SIZE (octave-forge/sparsersb-1.0.6.tar.gz) = 91369 Added: head/math/octave-forge-sparsersb/files/patch-sparsersb.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-sparsersb/files/patch-sparsersb.cc Sat Jun 23 19:15:33 2018 (r473153) @@ -0,0 +1,11 @@ +--- sparsersb.cc.orig 2018-06-23 19:12:49 UTC ++++ sparsersb.cc +@@ -97,7 +97,7 @@ + #define RSBOI_WARN( MSG ) + #endif + #define RSBOI_TODO( MSG ) RSBOI_WARN( MSG )/* new */ +-#define RSBOI_FIXME( MSG ) RSBOI_WARN( "FIXME: "MSG )/* new */ ++#define RSBOI_FIXME( MSG ) RSBOI_WARN( "FIXME: " MSG )/* new */ + + #define RSBOI_PRINTF( ... ) printf( __VA_ARGS__ ) + #if RSBOI_VERBOSE From owner-svn-ports-head@freebsd.org Sat Jun 23 19:16:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6F2B10031EB; Sat, 23 Jun 2018 19:16:17 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CF858F282; Sat, 23 Jun 2018 19:16:17 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 291F313FBD; Sat, 23 Jun 2018 19:16:17 +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 w5NJGG5P082139; Sat, 23 Jun 2018 19:16:16 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJGG3d082138; Sat, 23 Jun 2018 19:16:16 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201806231916.w5NJGG3d082138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sat, 23 Jun 2018 19:16:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473154 - head/math/octave-forge X-SVN-Group: ports-head X-SVN-Commit-Author: stephen X-SVN-Commit-Paths: head/math/octave-forge X-SVN-Commit-Revision: 473154 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:16:17 -0000 Author: stephen Date: Sat Jun 23 19:16:16 2018 New Revision: 473154 URL: https://svnweb.freebsd.org/changeset/ports/473154 Log: - Set option image to default to on. - Bump portrevision. Modified: head/math/octave-forge/Makefile Modified: head/math/octave-forge/Makefile ============================================================================== --- head/math/octave-forge/Makefile Sat Jun 23 19:15:33 2018 (r473153) +++ head/math/octave-forge/Makefile Sat Jun 23 19:16:16 2018 (r473154) @@ -3,7 +3,7 @@ PORTNAME= octave-forge PORTVERSION= 20180409 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -28,7 +28,7 @@ OPTIONS_DEFINE= ACTUARIAL AUDIO BENCHMARK BIM BIOINFO STRUCT SYMBAND SYMBOLIC TCL_OCTAVE TISEAN TSA VIDEO \ ZENITY ZEROMQ -OPTIONS_DEFAULT= ${OPTIONS_DEFINE:NAUDIO:NENGINE:NFL_CORE:NIMAGE:NPDB} +OPTIONS_DEFAULT= ${OPTIONS_DEFINE:NAUDIO:NENGINE:NFL_CORE:NPDB} TARBALLS_DIR= ${LOCALBASE}/share/octave/tarballs From owner-svn-ports-head@freebsd.org Sat Jun 23 19:36:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA91A1003C87; Sat, 23 Jun 2018 19:36:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6002E8FD9D; Sat, 23 Jun 2018 19:36:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 337CB142ED; Sat, 23 Jun 2018 19:36:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NJaPWD092386; Sat, 23 Jun 2018 19:36:25 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJaPbe092385; Sat, 23 Jun 2018 19:36:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806231936.w5NJaPbe092385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 23 Jun 2018 19:36:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473155 - head/devel/elfutils X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/devel/elfutils X-SVN-Commit-Revision: 473155 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:36:26 -0000 Author: antoine Date: Sat Jun 23 19:36:25 2018 New Revision: 473155 URL: https://svnweb.freebsd.org/changeset/ports/473155 Log: Unbreak make patch Modified: head/devel/elfutils/Makefile Modified: head/devel/elfutils/Makefile ============================================================================== --- head/devel/elfutils/Makefile Sat Jun 23 19:16:16 2018 (r473154) +++ head/devel/elfutils/Makefile Sat Jun 23 19:36:25 2018 (r473155) @@ -23,7 +23,7 @@ BROKEN_armv7= fails to build: fails to compile i386_d BROKEN_sparc64= sparc patch does not apply cleanly to 0.172 LIB_DEPENDS= libargp.so:devel/argp-standalone -PATCH_DEPENDS= gnulib>=0:devel/gnulib:extract +PATCH_DEPENDS= ${NONEXISTENT}:devel/gnulib:extract PLIST_SUB= VERSION=${PORTVERSION} @@ -47,10 +47,11 @@ CFLAGS_i386+= -Wno-error CONFIGURE_ARGS+= --program-prefix=eu- post-patch: + @${LN} -s `${MAKE} -C ${PORTSDIR}/devel/gnulib -V WRKSRC` ${WRKDIR}/gnulib @${CP} -a \ - ${LOCALBASE}/share/gnulib/lib/obstack.c \ - ${LOCALBASE}/share/gnulib/lib/obstack.h \ - ${LOCALBASE}/share/gnulib/lib/obstack_printf.c \ + ${WRKDIR}/gnulib/lib/obstack.c \ + ${WRKDIR}/gnulib/lib/obstack.h \ + ${WRKDIR}/gnulib/lib/obstack_printf.c \ ${WRKSRC}/lib .include From owner-svn-ports-head@freebsd.org Sat Jun 23 19:43:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE0DA1003EFA; Sat, 23 Jun 2018 19:43:25 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6121A9014C; Sat, 23 Jun 2018 19:43:25 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2446B14499; Sat, 23 Jun 2018 19:43:25 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NJhPp6097518; Sat, 23 Jun 2018 19:43:25 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJhOCQ097516; Sat, 23 Jun 2018 19:43:24 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201806231943.w5NJhOCQ097516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Sat, 23 Jun 2018 19:43:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473156 - head/databases/mroonga X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: head/databases/mroonga X-SVN-Commit-Revision: 473156 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:43:26 -0000 Author: bofh Date: Sat Jun 23 19:43:24 2018 New Revision: 473156 URL: https://svnweb.freebsd.org/changeset/ports/473156 Log: databases/mroonga: Update version 8.01=>8.03 Relnotes: http://mroonga.org/docs/news.html#release-8-03 Modified: head/databases/mroonga/Makefile head/databases/mroonga/distinfo head/databases/mroonga/pkg-plist Modified: head/databases/mroonga/Makefile ============================================================================== --- head/databases/mroonga/Makefile Sat Jun 23 19:36:25 2018 (r473155) +++ head/databases/mroonga/Makefile Sat Jun 23 19:43:24 2018 (r473156) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mroonga -PORTVERSION= 8.01 +PORTVERSION= 8.03 CATEGORIES= databases textproc MASTER_SITES= http://packages.groonga.org/source/mroonga/ Modified: head/databases/mroonga/distinfo ============================================================================== --- head/databases/mroonga/distinfo Sat Jun 23 19:36:25 2018 (r473155) +++ head/databases/mroonga/distinfo Sat Jun 23 19:43:24 2018 (r473156) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524414906 -SHA256 (mroonga-8.01.tar.gz) = ce4131d20fd05cdb0847e9a5e7efea4d10a215b4ee67272badedcc3e44268afa -SIZE (mroonga-8.01.tar.gz) = 2622228 +TIMESTAMP = 1529768911 +SHA256 (mroonga-8.03.tar.gz) = 80cc93c424a02dcf08fc9160879cb49b30cd195f5162e3fc7917df3fed2d87e6 +SIZE (mroonga-8.03.tar.gz) = 2653439 Modified: head/databases/mroonga/pkg-plist ============================================================================== --- head/databases/mroonga/pkg-plist Sat Jun 23 19:36:25 2018 (r473155) +++ head/databases/mroonga/pkg-plist Sat Jun 23 19:43:24 2018 (r473156) @@ -12,11 +12,12 @@ man/man1/mroonga.1.gz %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/comment-close.png %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/comment.png %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/doctools.js +%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/documentation_options.js %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/down-pressed.png %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/down.png %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/favicon.ico %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/file.png -%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/jquery-3.1.0.js +%%PORTDOCS%%%%DOCSDIR%%/en/html/_static/jquery-3.2.1.js %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/jquery.js %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/logo.png %%PORTDOCS%%%%DOCSDIR%%/en/html/_static/minus.png @@ -93,11 +94,12 @@ man/man1/mroonga.1.gz %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/comment-close.png %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/comment.png %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/doctools.js +%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/documentation_options.js %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/down-pressed.png %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/down.png %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/favicon.ico %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/file.png -%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/jquery-3.1.0.js +%%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/jquery-3.2.1.js %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/jquery.js %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/logo.png %%PORTDOCS%%%%DOCSDIR%%/ja/html/_static/minus.png From owner-svn-ports-head@freebsd.org Sat Jun 23 19:51:40 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B85EB1004035; Sat, 23 Jun 2018 19:51:40 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D53790383; Sat, 23 Jun 2018 19:51:40 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E51A14500; Sat, 23 Jun 2018 19:51:40 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NJpeWS098697; Sat, 23 Jun 2018 19:51:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NJpe8e098696; Sat, 23 Jun 2018 19:51:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806231951.w5NJpe8e098696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 23 Jun 2018 19:51:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473157 - head/devel/elfutils X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/devel/elfutils X-SVN-Commit-Revision: 473157 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 19:51:40 -0000 Author: antoine Date: Sat Jun 23 19:51:39 2018 New Revision: 473157 URL: https://svnweb.freebsd.org/changeset/ports/473157 Log: Fix incorrect IGNORE Modified: head/devel/elfutils/Makefile Modified: head/devel/elfutils/Makefile ============================================================================== --- head/devel/elfutils/Makefile Sat Jun 23 19:43:24 2018 (r473156) +++ head/devel/elfutils/Makefile Sat Jun 23 19:51:39 2018 (r473157) @@ -15,7 +15,7 @@ LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING-GPLV2 LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING-LGPLV3 -IGNORE_FreeBSD_11= stable/10 and 11.0 base libelf.h lack needed ELF types +IGNORE_FreeBSD_10= stable/10 base libelf.h lacks needed ELF types BROKEN_aarch64= fails to build: fatal error: linux/uio.h: No such file or directory BROKEN_armv6= fails to build: fails to compile i386_disasm.c From owner-svn-ports-head@freebsd.org Sat Jun 23 20:00:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E43A1004294; Sat, 23 Jun 2018 20:00:29 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F288D906A3; Sat, 23 Jun 2018 20:00:28 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CE71014644; Sat, 23 Jun 2018 20:00:28 +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 w5NK0SmO003025; Sat, 23 Jun 2018 20:00:28 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NK0SMl003024; Sat, 23 Jun 2018 20:00:28 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201806232000.w5NK0SMl003024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 23 Jun 2018 20:00:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473158 - head/databases/cassandra-cpp-driver/files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/databases/cassandra-cpp-driver/files X-SVN-Commit-Revision: 473158 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 20:00:29 -0000 Author: tcberner Date: Sat Jun 23 20:00:28 2018 New Revision: 473158 URL: https://svnweb.freebsd.org/changeset/ports/473158 Log: databases/cassandra-cpp-driver: fix build with libuv-1.21.0 * The version header file was moved to uv/version.h, make cmake look for it Added: head/databases/cassandra-cpp-driver/files/ head/databases/cassandra-cpp-driver/files/patch-cmake_modules_CppDriver.cmake (contents, props changed) Added: head/databases/cassandra-cpp-driver/files/patch-cmake_modules_CppDriver.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/cassandra-cpp-driver/files/patch-cmake_modules_CppDriver.cmake Sat Jun 23 20:00:28 2018 (r473158) @@ -0,0 +1,11 @@ +--- cmake/modules/CppDriver.cmake.orig 2018-06-23 19:55:39 UTC ++++ cmake/modules/CppDriver.cmake +@@ -372,6 +372,8 @@ macro(CassUseLibuv) + + if (EXISTS "${LIBUV_INCLUDE_DIR}/uv-version.h") + set(LIBUV_VERSION_HEADER_FILE "${LIBUV_INCLUDE_DIR}/uv-version.h") ++ elseif (EXISTS "${LIBUV_INCLUDE_DIR}/uv/version.h") ++ set(LIBUV_VERSION_HEADER_FILE "${LIBUV_INCLUDE_DIR}/uv/version.h") + else() + set(LIBUV_VERSION_HEADER_FILE "${LIBUV_INCLUDE_DIR}/uv.h") + endif() From owner-svn-ports-head@freebsd.org Sat Jun 23 20:03:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2740D1004491; Sat, 23 Jun 2018 20:03:42 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CD486909F5; Sat, 23 Jun 2018 20:03: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE92A147D0; Sat, 23 Jun 2018 20:03:41 +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 w5NK3fsm007845; Sat, 23 Jun 2018 20:03:41 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NK3fKQ007843; Sat, 23 Jun 2018 20:03:41 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201806232003.w5NK3fKQ007843@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, 23 Jun 2018 20:03:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473159 - head/devel/codesearch-py X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: head/devel/codesearch-py X-SVN-Commit-Revision: 473159 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 20:03:42 -0000 Author: cpm Date: Sat Jun 23 20:03:41 2018 New Revision: 473159 URL: https://svnweb.freebsd.org/changeset/ports/473159 Log: - Update to latest commit Modified: head/devel/codesearch-py/Makefile head/devel/codesearch-py/distinfo Modified: head/devel/codesearch-py/Makefile ============================================================================== --- head/devel/codesearch-py/Makefile Sat Jun 23 20:00:28 2018 (r473158) +++ head/devel/codesearch-py/Makefile Sat Jun 23 20:03:41 2018 (r473159) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= codesearch-py -DISTVERSION= g20180614 +DISTVERSION= g20180623 PORTEPOCH= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +18,7 @@ USE_PYTHON= autoplist concurrent distutils USE_GITHUB= yes GH_ACCOUNT= chromium -GH_TAGNAME= fbd64d8 +GH_TAGNAME= 49bcab5 NO_ARCH= yes Modified: head/devel/codesearch-py/distinfo ============================================================================== --- head/devel/codesearch-py/distinfo Sat Jun 23 20:00:28 2018 (r473158) +++ head/devel/codesearch-py/distinfo Sat Jun 23 20:03:41 2018 (r473159) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528992870 -SHA256 (chromium-codesearch-py-g20180614-fbd64d8_GH0.tar.gz) = 2403c3fb53ff8d7a0602e28f4614cdca28df911b55b1453f3602f353b784baf3 -SIZE (chromium-codesearch-py-g20180614-fbd64d8_GH0.tar.gz) = 903318 +TIMESTAMP = 1529784080 +SHA256 (chromium-codesearch-py-g20180623-49bcab5_GH0.tar.gz) = eeb5840732355d678bd76e5218f4a4a8220b99de43b133ec740d2c9f791add8c +SIZE (chromium-codesearch-py-g20180623-49bcab5_GH0.tar.gz) = 905829 From owner-svn-ports-head@freebsd.org Sat Jun 23 20:03:57 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1BC810044C9; Sat, 23 Jun 2018 20:03:56 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F2F190ACD; Sat, 23 Jun 2018 20:03:56 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 805A1147D2; Sat, 23 Jun 2018 20:03:56 +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 w5NK3uEZ007966; Sat, 23 Jun 2018 20:03:56 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NK3utG007965; Sat, 23 Jun 2018 20:03:56 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201806232003.w5NK3utG007965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 23 Jun 2018 20:03:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473160 - head/devel/cmake-gui/files X-SVN-Group: ports-head X-SVN-Commit-Author: rakuco X-SVN-Commit-Paths: head/devel/cmake-gui/files X-SVN-Commit-Revision: 473160 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 20:03:57 -0000 Author: rakuco Date: Sat Jun 23 20:03:56 2018 New Revision: 473160 URL: https://svnweb.freebsd.org/changeset/ports/473160 Log: Copy devel/cmake patch from r473149. devel/cmake-gui also needs this in order to build after r473142. PR: 229255 Reported by: tcberner Added: head/devel/cmake-gui/files/ head/devel/cmake-gui/files/patch-Source_Modules_FindLibUV.cmake - copied unchanged from r473149, head/devel/cmake/files/patch-Source_Modules_FindLibUV.cmake Copied: head/devel/cmake-gui/files/patch-Source_Modules_FindLibUV.cmake (from r473149, head/devel/cmake/files/patch-Source_Modules_FindLibUV.cmake) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cmake-gui/files/patch-Source_Modules_FindLibUV.cmake Sat Jun 23 20:03:56 2018 (r473160, copy of r473149, head/devel/cmake/files/patch-Source_Modules_FindLibUV.cmake) @@ -0,0 +1,24 @@ +Sent upstream: https://gitlab.kitware.com/cmake/cmake/merge_requests/2169 + +commit 6ad09a5d14ef497cca653d303c3849f83aa0aca3 +Author: Raphael Kubo da Costa +Date: Sat Jun 23 20:30:07 2018 +0200 + + FindLibUV: Also check uv/version.h for version detection + + Starting with libuv 1.21.0, libuv's headers were moved into a uv/ directory. + Make FindLibUV aware of the file's new location for configuration to work. + + Upstream change: https://github.com/libuv/libuv/pull/1429 + +--- Source/Modules/FindLibUV.cmake ++++ Source/Modules/FindLibUV.cmake +@@ -63,6 +63,8 @@ mark_as_advanced(LibUV_INCLUDE_DIR) + set(_LibUV_H_REGEX "#[ \t]*define[ \t]+UV_VERSION_(MAJOR|MINOR|PATCH)[ \t]+[0-9]+") + if(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv-version.h") + file(STRINGS "${LibUV_INCLUDE_DIR}/uv-version.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") ++elseif(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv/version.h") ++ file(STRINGS "${LibUV_INCLUDE_DIR}/uv/version.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") + elseif(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv.h") + file(STRINGS "${LibUV_INCLUDE_DIR}/uv.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") + else() From owner-svn-ports-head@freebsd.org Sat Jun 23 20:04:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 812B21004529; Sat, 23 Jun 2018 20:04:28 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3347190BFE; Sat, 23 Jun 2018 20:04:28 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 144B9147D4; Sat, 23 Jun 2018 20:04:28 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NK4RmR008118; Sat, 23 Jun 2018 20:04:27 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NK4RBi008117; Sat, 23 Jun 2018 20:04:27 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201806232004.w5NK4RBi008117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Sat, 23 Jun 2018 20:04:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473161 - head/graphics/ampasACES-container/files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/graphics/ampasACES-container/files X-SVN-Commit-Revision: 473161 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 20:04:28 -0000 Author: adridg Date: Sat Jun 23 20:04:27 2018 New Revision: 473161 URL: https://svnweb.freebsd.org/changeset/ports/473161 Log: Fix graphics/ampasACES-container with Clang6. aces_formatter.cpp:255:24: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'int32' (aka 'int') in initializer list [-Wc++11-narrowing] scanLineHeader sh = { yMin + row, scanLineSize }; Reported upstream as well. Not bumping PORTREVISION since this is just a compile fix. Added: head/graphics/ampasACES-container/files/ head/graphics/ampasACES-container/files/patch-aces__formatter.cpp (contents, props changed) Added: head/graphics/ampasACES-container/files/patch-aces__formatter.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ampasACES-container/files/patch-aces__formatter.cpp Sat Jun 23 20:04:27 2018 (r473161) @@ -0,0 +1,13 @@ +--- aces_formatter.cpp.orig 2018-06-23 19:34:29 UTC ++++ aces_formatter.cpp +@@ -107,8 +107,8 @@ + #include + + struct scanLineHeader { +- int32 yCoordinate; +- int32 pixelDataSize; ++ uint32 yCoordinate; ++ uint32 pixelDataSize; + }; + + From owner-svn-ports-head@freebsd.org Sat Jun 23 20:24:31 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FC8A1004D45; Sat, 23 Jun 2018 20:24:31 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1350F91739; Sat, 23 Jun 2018 20:24:31 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E578B14B2F; Sat, 23 Jun 2018 20:24:30 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NKOUE8018515; Sat, 23 Jun 2018 20:24:30 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NKOUWw018513; Sat, 23 Jun 2018 20:24:30 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806232024.w5NKOUWw018513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Jun 2018 20:24:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473162 - head/www/minio X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/www/minio X-SVN-Commit-Revision: 473162 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 20:24:31 -0000 Author: swills Date: Sat Jun 23 20:24:30 2018 New Revision: 473162 URL: https://svnweb.freebsd.org/changeset/ports/473162 Log: www/minio: update to 2018.06.22.23.48.46 Modified: head/www/minio/Makefile (contents, props changed) head/www/minio/distinfo (contents, props changed) Modified: head/www/minio/Makefile ============================================================================== --- head/www/minio/Makefile Sat Jun 23 20:04:27 2018 (r473161) +++ head/www/minio/Makefile Sat Jun 23 20:24:30 2018 (r473162) @@ -14,9 +14,9 @@ BUILD_DEPENDS= go>=1.9.4:lang/go USES= compiler USE_GITHUB= yes -GH_TAGNAME= RELEASE.2018-06-09T03-43-35Z +GH_TAGNAME= RELEASE.2018-06-22T23-48-46Z GH_SUBDIR= src/github.com/${PORTNAME}/${PORTNAME} -COMMIT_ID= 371349787f0e324f072b03ed5a7842229d6b3174 +COMMIT_ID= 6005dbf01f31a2bffbc3b16d8a8d29885073b2b5 PLIST_FILES= bin/minio Modified: head/www/minio/distinfo ============================================================================== --- head/www/minio/distinfo Sat Jun 23 20:04:27 2018 (r473161) +++ head/www/minio/distinfo Sat Jun 23 20:24:30 2018 (r473162) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528726456 -SHA256 (minio-minio-2018.06.09.03.43.35-RELEASE.2018-06-09T03-43-35Z_GH0.tar.gz) = b37d23501bf8a34f6fc72a27421b6bfc9242ca4ee95037880b8035d76a91f173 -SIZE (minio-minio-2018.06.09.03.43.35-RELEASE.2018-06-09T03-43-35Z_GH0.tar.gz) = 8166426 +TIMESTAMP = 1529765955 +SHA256 (minio-minio-2018.06.22.23.48.46-RELEASE.2018-06-22T23-48-46Z_GH0.tar.gz) = 4fdcfaff5979e24c3a7e5c8f580bcf36acc8c87d903534d59c773ee0b6b0ec7a +SIZE (minio-minio-2018.06.22.23.48.46-RELEASE.2018-06-22T23-48-46Z_GH0.tar.gz) = 8198058 From owner-svn-ports-head@freebsd.org Sat Jun 23 21:15:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0794C100641F; Sat, 23 Jun 2018 21:15:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A8AA592DEC; Sat, 23 Jun 2018 21:15:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 897CF15325; Sat, 23 Jun 2018 21:15:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NLFHMZ043667; Sat, 23 Jun 2018 21:15:17 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NLFG77043663; Sat, 23 Jun 2018 21:15:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806232115.w5NLFG77043663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 23 Jun 2018 21:15:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473163 - in head/games/allacrost: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/games/allacrost: . files X-SVN-Commit-Revision: 473163 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 21:15:18 -0000 Author: amdmi3 Date: Sat Jun 23 21:15:16 2018 New Revision: 473163 URL: https://svnweb.freebsd.org/changeset/ports/473163 Log: - Add missing depends - Fix build with clang 6 Added: head/games/allacrost/files/patch-src_common_gui_option.cpp (contents, props changed) head/games/allacrost/files/patch-src_engine_system.cpp (contents, props changed) head/games/allacrost/files/patch-src_engine_video_video.cpp (contents, props changed) Modified: head/games/allacrost/Makefile Modified: head/games/allacrost/Makefile ============================================================================== --- head/games/allacrost/Makefile Sat Jun 23 20:24:30 2018 (r473162) +++ head/games/allacrost/Makefile Sat Jun 23 21:15:16 2018 (r473163) @@ -22,12 +22,14 @@ LIB_DEPENDS= libpng.so:graphics/png \ GNU_CONFIGURE= yes USES= gettext gmake iconv jpeg lua:51 openal:al USE_SDL= sdl ttf net -USE_GL= yes +USE_GL= gl glu +USE_XORG= x11 QT_NONSTANDARD= yes # used when EDITOR enabled CONFIGURE_ARGS= --datadir=${DATADIR} CPPFLAGS+= -I${LOCALBASE}/include -I${LUA_INCDIR} LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR} +CXXFLAGS+= -Wno-c++11-narrowing LLD_UNSAFE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} Added: head/games/allacrost/files/patch-src_common_gui_option.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/allacrost/files/patch-src_common_gui_option.cpp Sat Jun 23 21:15:16 2018 (r473163) @@ -0,0 +1,11 @@ +--- src/common/gui/option.cpp.orig 2010-05-16 23:38:35 UTC ++++ src/common/gui/option.cpp +@@ -527,7 +527,7 @@ bool OptionBox::IsEnabled(uint32 index) + StillImage* OptionBox::GetEmbeddedImage(uint32 index) const { + if (index >= GetNumberOptions()) { + IF_PRINT_WARNING(VIDEO_DEBUG) << "argument index was invalid: " << index << endl; +- return false; ++ return nullptr; + } + + return _options[index].image; Added: head/games/allacrost/files/patch-src_engine_system.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/allacrost/files/patch-src_engine_system.cpp Sat Jun 23 21:15:16 2018 (r473163) @@ -0,0 +1,11 @@ +--- src/engine/system.cpp.orig 2010-05-16 23:38:27 UTC ++++ src/engine/system.cpp +@@ -271,7 +271,7 @@ bool SystemEngine::SingletonInitialize() + #elif (defined(__linux__) || defined(__FreeBSD__)) && !defined(RELEASE_BUILD) + // Look for translation files in LOCALEDIR only if they are not available in the + // current directory. +- if (ifstream("dat/config/settings.lua") == NULL) { ++ if (!ifstream("dat/config/settings.lua")) { + bindtextdomain(PACKAGE, LOCALEDIR); + bind_textdomain_codeset(PACKAGE, "UTF-8"); + textdomain(PACKAGE); Added: head/games/allacrost/files/patch-src_engine_video_video.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/allacrost/files/patch-src_engine_video_video.cpp Sat Jun 23 21:15:16 2018 (r473163) @@ -0,0 +1,20 @@ +--- src/engine/video/video.cpp.orig 2010-05-16 23:38:27 UTC ++++ src/engine/video/video.cpp +@@ -470,7 +470,7 @@ bool VideoEngine::ApplySettings() { + SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 4); + SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 1); + +- if (SDL_SetVideoMode(_temp_width, _temp_height, 0, flags) == false) { ++ if (SDL_SetVideoMode(_temp_width, _temp_height, 0, flags) == nullptr) { + // RGB values of 1 for each and 8 for depth seemed to be sufficient. + // 565 and 16 here because it works with them on this computer. + // NOTE from prophile: this ought to be changed to 5558 +@@ -483,7 +483,7 @@ bool VideoEngine::ApplySettings() { + SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 0); + SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 1); + +- if (SDL_SetVideoMode(_temp_width, _temp_height, 0, flags) == false) { ++ if (SDL_SetVideoMode(_temp_width, _temp_height, 0, flags) == nullptr) { + IF_PRINT_WARNING(VIDEO_DEBUG) << "SDL_SetVideoMode() failed with error: " << SDL_GetError() << endl; + + _temp_fullscreen = _fullscreen; From owner-svn-ports-head@freebsd.org Sat Jun 23 21:16:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED0101006482; Sat, 23 Jun 2018 21:16:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C0B992EDE; Sat, 23 Jun 2018 21:16:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7B76515326; Sat, 23 Jun 2018 21:16:13 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NLGDB2043820; Sat, 23 Jun 2018 21:16:13 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NLGDhT043818; Sat, 23 Jun 2018 21:16:13 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201806232116.w5NLGDhT043818@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 23 Jun 2018 21:16:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473164 - head/graphics/tesseract X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/graphics/tesseract X-SVN-Commit-Revision: 473164 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 21:16:14 -0000 Author: swills Date: Sat Jun 23 21:16:12 2018 New Revision: 473164 URL: https://svnweb.freebsd.org/changeset/ports/473164 Log: graphics/tesseract: update to 3.05.02 PR: 229257 Submitted by: Piotr Kubaj (maintainer) Modified: head/graphics/tesseract/Makefile (contents, props changed) head/graphics/tesseract/distinfo (contents, props changed) Modified: head/graphics/tesseract/Makefile ============================================================================== --- head/graphics/tesseract/Makefile Sat Jun 23 21:15:16 2018 (r473163) +++ head/graphics/tesseract/Makefile Sat Jun 23 21:16:12 2018 (r473164) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tesseract -PORTVERSION= 3.05.01 -PORTREVISION= 4 +PORTVERSION= 3.05.02 CATEGORIES= graphics MAINTAINER= pkubaj@anongoth.pl Modified: head/graphics/tesseract/distinfo ============================================================================== --- head/graphics/tesseract/distinfo Sat Jun 23 21:15:16 2018 (r473163) +++ head/graphics/tesseract/distinfo Sat Jun 23 21:16:12 2018 (r473164) @@ -1,3 +1,3 @@ -TIMESTAMP = 1497959938 -SHA256 (tesseract-ocr-tesseract-3.05.01_GH0.tar.gz) = 05898f93c5d057fada49b9a116fc86ad9310ff1726a0f499c3e5211b3af47ec1 -SIZE (tesseract-ocr-tesseract-3.05.01_GH0.tar.gz) = 3574810 +TIMESTAMP = 1529694939 +SHA256 (tesseract-ocr-tesseract-3.05.02_GH0.tar.gz) = 494d64ffa7069498a97b909a0e65a35a213989e0184f1ea15332933a90d43445 +SIZE (tesseract-ocr-tesseract-3.05.02_GH0.tar.gz) = 3571750 From owner-svn-ports-head@freebsd.org Sat Jun 23 21:18:22 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6804710064E8; Sat, 23 Jun 2018 21:18:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 19C3792FF1; Sat, 23 Jun 2018 21:18:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EF0EA15329; Sat, 23 Jun 2018 21:18:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NLILxh044114; Sat, 23 Jun 2018 21:18:21 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NLIKS2044108; Sat, 23 Jun 2018 21:18:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806232118.w5NLIKS2044108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 23 Jun 2018 21:18:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473165 - in head/devel/godot: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/devel/godot: . files X-SVN-Commit-Revision: 473165 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 21:18:22 -0000 Author: amdmi3 Date: Sat Jun 23 21:18:20 2018 New Revision: 473165 URL: https://svnweb.freebsd.org/changeset/ports/473165 Log: - Update to 3.0.3 - Fix conflicts for some system libraries due to incorrect include path order - Pet portlint - Fix openssl detection PR: 228764 Submitted by: FreeBSD@ShaneWare.Biz (maintainer) Added: head/devel/godot/files/patch-modules_enet_SCsub (contents, props changed) head/devel/godot/files/patch-modules_squish_SCsub (contents, props changed) head/devel/godot/files/patch-thirdparty_zstd_SCsub (contents, props changed) Deleted: head/devel/godot/files/patch-drivers_unix_os__unix.cpp head/devel/godot/files/patch-scene_gui_rich__text__label.cpp Modified: head/devel/godot/Makefile head/devel/godot/distinfo head/devel/godot/files/patch-platform_x11_detect.py Modified: head/devel/godot/Makefile ============================================================================== --- head/devel/godot/Makefile Sat Jun 23 21:16:12 2018 (r473164) +++ head/devel/godot/Makefile Sat Jun 23 21:18:20 2018 (r473165) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= godot -PORTVERSION= 3.0.2 +PORTVERSION= 3.0.3 DISTVERSIONSUFFIX= -stable CATEGORIES= devel games @@ -25,14 +25,14 @@ RUN_DEPENDS= xdg-user-dir:devel/xdg-user-dirs \ xdg-open:devel/xdg-utils \ xmessage:x11/xmessage -USE_GITHUB= yes -GH_ACCOUNT= godotengine - # on 10.4 using clang34 fails - so we want to use clang60 # gl already needs clang60 so this shouldn't add any overhead USES= compiler:c++14-lang pkgconfig scons ssl USE_XORG= x11 xcursor xi xinerama xrandr USE_GL= gl glew glu + +USE_GITHUB= yes +GH_ACCOUNT= godotengine MAKE_ARGS+= platform=x11 builtin_libpng=False builtin_openssl=False verbose=True MAKE_ARGS+= ${MAKE_ARGS_${CHOSEN_COMPILER_TYPE}} Modified: head/devel/godot/distinfo ============================================================================== --- head/devel/godot/distinfo Sat Jun 23 21:16:12 2018 (r473164) +++ head/devel/godot/distinfo Sat Jun 23 21:18:20 2018 (r473165) @@ -1,5 +1,5 @@ -TIMESTAMP = 1520319042 -SHA256 (godotengine-godot-3.0.2-stable_GH0.tar.gz) = 15bc91dcbc92fe49624118678fcab119ff332dc295b25f4921700a4ee498b651 -SIZE (godotengine-godot-3.0.2-stable_GH0.tar.gz) = 18812660 +TIMESTAMP = 1529204518 +SHA256 (godotengine-godot-3.0.3-stable_GH0.tar.gz) = db6bf2a2cee8e058254fc0b43c38c68a5226b18315b852e266cb3b95e23618c1 +SIZE (godotengine-godot-3.0.3-stable_GH0.tar.gz) = 18929162 SHA256 (godotengine-godot-demo-projects-d69cc10a0b8a_GH0.tar.gz) = b798d0bb56a643fdb175df463990904523495dd5546bc00bbe762e0645b7c94a SIZE (godotengine-godot-demo-projects-d69cc10a0b8a_GH0.tar.gz) = 140126782 Added: head/devel/godot/files/patch-modules_enet_SCsub ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/godot/files/patch-modules_enet_SCsub Sat Jun 23 21:18:20 2018 (r473165) @@ -0,0 +1,11 @@ +--- modules/enet/SCsub.orig 2018-06-13 11:43:18 UTC ++++ modules/enet/SCsub +@@ -22,7 +22,7 @@ if env['builtin_enet']: + thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] + + env_enet.add_source_files(env.modules_sources, thirdparty_sources) +- env_enet.Append(CPPPATH=[thirdparty_dir]) ++ env_enet.Prepend(CPPPATH=[thirdparty_dir]) + env_enet.Append(CPPFLAGS=["-DGODOT_ENET"]) + + env_enet.add_source_files(env.modules_sources, "*.cpp") Added: head/devel/godot/files/patch-modules_squish_SCsub ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/godot/files/patch-modules_squish_SCsub Sat Jun 23 21:18:20 2018 (r473165) @@ -0,0 +1,11 @@ +--- modules/squish/SCsub.orig 2018-06-13 12:02:27 UTC ++++ modules/squish/SCsub +@@ -23,7 +23,7 @@ if env['builtin_squish']: + thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] + + env_squish.add_source_files(env.modules_sources, thirdparty_sources) +- env_squish.Append(CPPPATH=[thirdparty_dir]) ++ env_squish.Prepend(CPPPATH=[thirdparty_dir]) + + # Godot source files + env_squish.add_source_files(env.modules_sources, "*.cpp") Modified: head/devel/godot/files/patch-platform_x11_detect.py ============================================================================== --- head/devel/godot/files/patch-platform_x11_detect.py Sat Jun 23 21:16:12 2018 (r473164) +++ head/devel/godot/files/patch-platform_x11_detect.py Sat Jun 23 21:18:20 2018 (r473165) @@ -1,7 +1,7 @@ ---- platform/x11/detect.py.orig 2017-12-28 05:14:45 UTC +--- platform/x11/detect.py.orig 2018-03-04 00:52:04 UTC +++ platform/x11/detect.py @@ -52,7 +52,9 @@ def get_opts(): - BoolVariable('use_static_cpp', 'Link stdc++ statically', False), + BoolVariable('use_static_cpp', 'Link libgcc and libstdc++ statically for better portability', False), BoolVariable('use_sanitizer', 'Use LLVM compiler address sanitizer', False), BoolVariable('use_leak_sanitizer', 'Use LLVM compiler memory leaks sanitizer (implies use_sanitizer)', False), - BoolVariable('pulseaudio', 'Detect & use pulseaudio', True), @@ -11,16 +11,21 @@ BoolVariable('udev', 'Use udev for gamepad connection callbacks', False), EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')), BoolVariable('separate_debug_symbols', 'Create a separate file with the debug symbols', False), -@@ -154,7 +156,7 @@ def configure(env): +@@ -154,7 +156,12 @@ def configure(env): # FIXME: Check for existence of the libs before parsing their flags with pkg-config if not env['builtin_openssl']: - env.ParseConfig('pkg-config openssl --cflags --libs') -+ env.ParseConfig('echo -lssl -lcrypto') ++ try: ++ # try to find a port installed openssl ++ env.ParseConfig('pkg-config openssl --cflags --libs') ++ except: ++ # if none found use base system openssl ++ env.ParseConfig('echo -lssl -lcrypto') if not env['builtin_libwebp']: env.ParseConfig('pkg-config libwebp --cflags --libs') -@@ -226,12 +228,18 @@ def configure(env): +@@ -226,12 +233,18 @@ def configure(env): ## Flags Added: head/devel/godot/files/patch-thirdparty_zstd_SCsub ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/godot/files/patch-thirdparty_zstd_SCsub Sat Jun 23 21:18:20 2018 (r473165) @@ -0,0 +1,9 @@ +--- thirdparty/zstd/SCsub.orig 2018-06-13 11:53:45 UTC ++++ thirdparty/zstd/SCsub +@@ -25,5 +25,5 @@ thirdparty_zstd_sources = [ + ] + thirdparty_zstd_sources = [thirdparty_zstd_dir + file for file in thirdparty_zstd_sources] + env.add_source_files(env.core_sources, thirdparty_zstd_sources) +-env.Append(CPPPATH=["#thirdparty/zstd", "#thirdparty/zstd/common"]) ++env.Prepend(CPPPATH=["#thirdparty/zstd", "#thirdparty/zstd/common"]) + env.Append(CCFLAGS="-DZSTD_STATIC_LINKING_ONLY") From owner-svn-ports-head@freebsd.org Sat Jun 23 21:18:29 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6B711006511; Sat, 23 Jun 2018 21:18:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D282930B1; Sat, 23 Jun 2018 21:18: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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4A0531532B; Sat, 23 Jun 2018 21:18:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NLIQoI044266; Sat, 23 Jun 2018 21:18:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NLIQ5V044263; Sat, 23 Jun 2018 21:18:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201806232118.w5NLIQ5V044263@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 23 Jun 2018 21:18:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473166 - in head/devel/godot2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: in head/devel/godot2: . files X-SVN-Commit-Revision: 473166 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 21:18:30 -0000 Author: amdmi3 Date: Sat Jun 23 21:18:26 2018 New Revision: 473166 URL: https://svnweb.freebsd.org/changeset/ports/473166 Log: - Fix conflicts for some system libraries due to incorrect include path order - Pet portlint - Fix openssl detection PR: 228764 Submitted by: FreeBSD@ShaneWare.Biz (maintainer) Added: head/devel/godot2/files/patch-modules_squish_SCsub (contents, props changed) Modified: head/devel/godot2/Makefile head/devel/godot2/files/patch-platform_x11_detect.py Modified: head/devel/godot2/Makefile ============================================================================== --- head/devel/godot2/Makefile Sat Jun 23 21:18:20 2018 (r473165) +++ head/devel/godot2/Makefile Sat Jun 23 21:18:26 2018 (r473166) @@ -4,7 +4,7 @@ PORTNAME= godot PORTVERSION= 2.1.4 DISTVERSIONSUFFIX= -stable -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel games PKGNAMESUFFIX?= 2 @@ -24,12 +24,12 @@ RUN_DEPENDS= xdg-user-dir:devel/xdg-user-dirs \ xdg-open:devel/xdg-utils \ xmessage:x11/xmessage -USE_GITHUB= yes -GH_ACCOUNT= godotengine - USES= compiler:c++11-lib pkgconfig scons ssl USE_XORG= x11 xcursor xinerama xrandr USE_GL= gl glu + +USE_GITHUB= yes +GH_ACCOUNT= godotengine MAKE_ARGS+= platform=x11 builtin_speex=no builtin_libmpcdec=no MAKE_ARGS+= ${MAKE_ARGS_${CHOSEN_COMPILER_TYPE}} Added: head/devel/godot2/files/patch-modules_squish_SCsub ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/godot2/files/patch-modules_squish_SCsub Sat Jun 23 21:18:26 2018 (r473166) @@ -0,0 +1,11 @@ +--- modules/squish/SCsub.orig 2018-06-13 13:01:57 UTC ++++ modules/squish/SCsub +@@ -23,7 +23,7 @@ if (env['builtin_squish'] != 'no'): + thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] + + env_squish.add_source_files(env.modules_sources, thirdparty_sources) +- env_squish.Append(CPPPATH=[thirdparty_dir]) ++ env_squish.Prepend(CPPPATH=[thirdparty_dir]) + + # Godot source files + env_squish.add_source_files(env.modules_sources, "*.cpp") Modified: head/devel/godot2/files/patch-platform_x11_detect.py ============================================================================== --- head/devel/godot2/files/patch-platform_x11_detect.py Sat Jun 23 21:18:20 2018 (r473165) +++ head/devel/godot2/files/patch-platform_x11_detect.py Sat Jun 23 21:18:26 2018 (r473166) @@ -1,5 +1,5 @@ ---- ./platform/x11/detect.py.orig 2017-08-27 16:25:12 UTC -+++ ./platform/x11/detect.py +--- platform/x11/detect.py.orig 2017-08-28 01:55:12 UTC ++++ platform/x11/detect.py @@ -56,7 +56,9 @@ def get_opts(): ('use_sanitizer', 'Use llvm compiler sanitize address', 'no'), ('use_leak_sanitizer', 'Use llvm compiler sanitize memory leaks', 'no'), @@ -46,24 +46,32 @@ env.ParseConfig('pkg-config x11 --cflags --libs') env.ParseConfig('pkg-config xinerama --cflags --libs') -@@ -148,13 +143,14 @@ def configure(env): +@@ -148,13 +143,22 @@ def configure(env): # Currently not compatible with OpenSSL 1.1.0+ # https://github.com/godotengine/godot/issues/8624 import subprocess - openssl_version = subprocess.check_output(['pkg-config', 'openssl', '--modversion']).strip('\n') -+ openssl_version = '1.0.2' #subprocess.check_output(['pkg-config', 'openssl', '--modversion']).strip('\n') ++ try: ++ openssl_version = subprocess.check_output(['pkg-config', 'openssl', '--modversion']).strip('\n') ++ except: ++ # approx base openssl version ++ openssl_version = '1.0.2' if (openssl_version >= "1.1.0"): print("Error: Found system-installed OpenSSL %s, currently only supporting version 1.0.x." % openssl_version) print("Aborting.. You can compile with 'builtin_openssl=yes' to use the bundled version.\n") sys.exit(255) - env.ParseConfig('pkg-config openssl --cflags --libs') -+ #env.ParseConfig('pkg-config openssl --cflags --libs') -+ env.ParseConfig('echo -lssl -lcrypto') ++ try: ++ # try to find a port installed openssl ++ env.ParseConfig('pkg-config openssl --cflags --libs') ++ except: ++ # if none found use base system openssl ++ env.ParseConfig('echo -lssl -lcrypto') if (env['builtin_libwebp'] == 'no'): env.ParseConfig('pkg-config libwebp --cflags --libs') -@@ -199,12 +195,13 @@ def configure(env): +@@ -199,12 +203,13 @@ def configure(env): if (env['builtin_glew'] == 'no'): env.ParseConfig('pkg-config glew --cflags --libs') @@ -83,7 +91,7 @@ if (platform.system() == "Linux"): env.Append(CPPFLAGS=["-DJOYDEV_ENABLED"]) -@@ -219,6 +216,11 @@ def configure(env): +@@ -219,6 +224,11 @@ def configure(env): else: print("libudev development libraries not found, disabling udev support") From owner-svn-ports-head@freebsd.org Sat Jun 23 23:44:13 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE732100AB46; Sat, 23 Jun 2018 23:44:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 73B9B96C4E; Sat, 23 Jun 2018 23:44:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4A31816B24; Sat, 23 Jun 2018 23:44:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5NNiDpn019879; Sat, 23 Jun 2018 23:44:13 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5NNiD2E019878; Sat, 23 Jun 2018 23:44:13 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806232344.w5NNiD2E019878@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 23 Jun 2018 23:44:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473167 - head/misc/py-SoapySDR X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/py-SoapySDR X-SVN-Commit-Revision: 473167 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-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, 23 Jun 2018 23:44:14 -0000 Author: yuri Date: Sat Jun 23 23:44:12 2018 New Revision: 473167 URL: https://svnweb.freebsd.org/changeset/ports/473167 Log: misc/py-SoapySDR: Label as broken on i386 until the python binding is properly implemented Currently it is combined with the cmake-based project for C library, and this doesn't work great: it breaks on i386, and rebuilds the whole C library with python binding. Modified: head/misc/py-SoapySDR/Makefile Modified: head/misc/py-SoapySDR/Makefile ============================================================================== --- head/misc/py-SoapySDR/Makefile Sat Jun 23 21:18:26 2018 (r473166) +++ head/misc/py-SoapySDR/Makefile Sat Jun 23 23:44:12 2018 (r473167) @@ -13,7 +13,7 @@ COMMENT= Vendor and platform neutral SDR support libra LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt -BROKEN_FreeBSD_10= error: redefinition of 'swig::traits' +BROKEN_i386= error: redefinition of 'swig::traits', pending fix of https://github.com/pothosware/SoapySDR/issues/169 BUILD_DEPENDS= swig3.0:devel/swig30 LIB_DEPENDS= libSoapySDR.so:misc/soapysdr